button,
input[type="submit"] {
    padding: 10px 30px;
    border-radius: 15px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    border: 0px;
}

.btn-ok {
    background-color: var(--sucess-color);
}

.btn-icon-small {
    width: 20px;
    cursor: pointer;
}

.btn-icon {
    width: 30px;
    cursor: pointer;
}

.btn-selecionar {
    padding-left: 20px;
    padding-right: 20px;
}

button:hover,
.btn-trash:hover,
.btn-edit:hover,
.btn-icon-small:hover,
input[type="submit"]:hover {
    opacity: 0.7;
    cursor: pointer;
    color: #fff;
    box-shadow: 10px 10px 100px 2px var(--contrast-color);
    background-color: var(--secondary-color);
}

button:disabled {
    background-color: var(--destaque-color);
}


.btn-icon:hover,
.btn-voltar:hover {
    opacity: 0.5;
}

.btn-cancelar {
    background-color: var(--destaque-color);
    color: #fff;
    padding-left: 15px;
    padding-right: 15px;
}

.btn-close,
.btn-remove {
    position: absolute;
    padding-bottom: 4px;
    padding-top: 2px;
    padding-left: 7px;
    padding-right: 7px;
    text-align: center;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.btn-main,
.btn-main-lg {
    width: 90%;
    height: 38px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 15px;
    font-weight: 400;
    background-color: var(--contrast-high-color);

}

@media (min-width: 650px) {
    .btn-main-lg {
        width: 300px;
    }
    .btn-main {
        width: 200px;
    }
}


.btn-remove {
    top: 25%;
    right: 10px;
}



.btn-trash,
.btn-edit {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 40px;

    display: flex;

    justify-content: center;
    align-items: center;


    cursor: pointer;
}

.btn-sm {
    font-size: 11px;
}

.btn-trash {
    background-color: #ad0000;
}

.btn-edit {
    background-color: #a35f00;
}

/**/

.btn-edit::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 7px;
    width: 15px;
    height: 17px;
    background-image: url(../img/editar.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.btn-edit:hover::before {
    transform: scale(1.1) rotate(-36deg);
}

/* Cover */

.btn-trash:hover::before {
    transform: rotate(-20deg);
    left: 6px;
    top: 3px;
}

.btn-trash::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 6px;
    width: 14px;
    height: 6px;
    background-image: url("../img/icons-interface/icon-trash-cover.png");
    background-size: contain;
    background-repeat: no-repeat;
}

.btn-trash::after {
    content: "";
    position: absolute;
    left: 9px;
    top: 12px;
    width: 12px;
    height: 12px;
    background-image: url("../img/icons-interface/icon-trash-basket.png");
    background-size: contain;
    background-repeat: no-repeat;
}

.btn-voltar {
    height: 30px;
    cursor: pointer;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.btn-voltar::before {
    content: "";
    background-image: url(../img/voltar.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    transform: rotate(90deg);
}

@keyframes rotate-icon {
    0% {
        transform: rotate(360deg);
    }
}

.btn-icon.rotate {
    animation: rotate-icon forwards 2s infinite;
    animation-timing-function: linear;
}