.btn-base {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    width: 100%;
    height: 40px;
    border-radius: 10px;
    transition: all 0.2s ease-in-out;
}

    .btn-base p {
        color: white !important;
        font-weight: 400;
    }

.btnRemover {
    border-radius: 8px;
    color: white;
    background: var(--remove-color);
    padding: 10px 24px;
    transition: all 0.2s ease-in-out;
}

    .btnRemover:hover {
        background: #A52528;
        color: white;
    }

.btnCancel {
    border: 1px solid grey;
    border-radius: 8px;
    color: grey;
    background: none;
    padding: 10px 24px;
    transition: all 0.2s ease-in-out;
}

    .btnCancel:hover {
        background: grey;
        color: var(--color-white);
    }

.btn-azul {
    background-color: #273F4F;
    cursor: pointer;
}

    .btn-azul:hover {
        background-color: #1f3240;
    }

.btnCursoProgress {
    width: fit-content;
    background: none;
    padding: 10px 18px;
    margin: 0 !important;
    color: var(--primary-color);
    display: grid !important;
    border: 1px solid var(--primary-color);
    border-radius: 6px !important;
    justify-content: center !important;
    align-items: center !important;
    transition: all 0.2s ease-in-out !important;
}

    .btnCursoProgress:hover {
        background: var(--primary-color);
        color: var(--color-white);
    }

.btnAcao {
    border-radius: 8px;
    box-shadow: none;
}

    .btnAcao:hover {
        box-shadow: none !important;
    }

.btnInfoUser {
    border-radius: 8px;
    width: 40px;
    height: 40px;
    box-shadow: none;
    background: var(--info-color) !important;
    color: var(--color-white) !important;
}

    .btnInfoUser:hover {
        background: #4A4A75 !important;
        box-shadow: none !important;
    }

.btn {
    background-color: var(--primary-color);
    border-radius: 6px;
    width: 120px;
    color: white;
    padding: 10px 24px;
}

    .btn:hover {
        color: white;
        background-color: var(--hover-color);
    }

.btn-adicionar {
    display: flex;
    gap: 12px;
    height: 100%;
    width: 100%;
    cursor: pointer;
    justify-content: center;
    align-items: flex-end;
    background-color: #4da153;
    border-radius: 8px;
    padding: 10px 20px;
    color: white;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
}

    .btn-adicionar:hover {
        background-color: #2C6B30;
    }

.btn-iconAdd {
    height: 44px !important;
    background: #4da153;
    padding: 0 !important;
    margin: 0 !important;
    color: var(--color-white) !important;
    display: grid !important;
    border-radius: 6px !important;
    justify-content: center !important;
    align-items: center !important;
    transition: all 0.2s ease-in-out !important;
}

    .btn-iconAdd:hover {
        background: #2C6B30;
    }

.btnAdd-Page {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

    .btnAdd-Page .btn-adicionar {
        align-items: center;
        font-size: 15px;
        height: 40px;
    }

.btn-padrao {
    width: 140px;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    background-color: var(--btn-color);
}

    .btn-padrao:hover {
        background-color: #44535D;
    }

.btn-offBg {
    border-radius: 8px;
    color: white;
    width: 92px;
    padding: 10px 24px;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
    background-color: transparent;
}

    .btn-offBg:hover {
        background-color: rgba(255, 255, 255, 0.14);
    }

.btn-custom-width {
    width: 120px !important;
    border-radius: 10px;
}

.btn-orange {
    background-color: var(--primary-color);
    font-weight: bold;
    color: var(--text-color);
}

.btn-fechar i {
    padding: 10px;
    font-size: 30px;
}

.btn-homeVideo {
    background-color: #2999DF;
}

    .btn-homeVideo:hover {
        background-color: #1D80BE;
    }

.btn-ConcluidoVideo {
    background-color: #09B823;
}

    .btn-ConcluidoVideo:hover {
        background-color: #09831B;
    }

.btn-ProgressoConcluidoVideo {
    width: 220px;
    background-color: #09B823;
}

    .btn-ProgressoConcluidoVideo:hover {
        background-color: #09831B;
    }

.btn-ProgressoAzul {
    width: 220px;
    background-color: #2999DF;
}

    .btn-ProgressoAzul:hover {
        background-color: #1D80BE;
    }

.btn-verde {
    background-color: #09B823;
    color: white;
}

    .btn-verde:hover {
        background-color: #09831B;
    }

input[type="checkbox"] {
    display: none !important;
}

.btn-assinantes {
    width: 260px;
    background-color: #1D80BE;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

    .btn-assinantes:hover {
        background-color: #273F4F;
    }

input[type="checkbox"]:checked + .btn-assinantes {
    background-color: var(--checkbox-field);
    width: 100%;
    color: white;
}

.btn-assinantes .text-concluido {
    color: white;
}

.btn-assinantes:active {
    transform: scale(0.90);
}

@media (min-width: 1024px) {
    .btn-verde {
        width: 160px;
        height: 42px;
        border-radius: 8px;
    }

    .btn-adicionar {
        width: 120px;
    }
}
