label {
    font-size: 1.3em;
    color: #4e4e4e;
}

span {
    color: #681102;
}

.warning-title {
    color: #681102;
    margin-bottom: 2em;
    margin-top: 1em;
}

.warning-messenge {
    color: #681102;
}

.success-message {
    height: 10em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4em;
    color: #863B32;
}

.error-message {
    background-color: #681102;
    padding: 1em;
    border-radius: 4px;
    color: white;
    margin-bottom: 2em;
}
.spinner-border{
    color: white;
    margin-bottom: 0.25em;
}
.warning-title i, .warning-messenge i {
    font-size: .8em;
}

.fas.fa-check {
    font-size: 2em;
    margin-right: 1em;
    color: #681102;
}

.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #681102 !important;
    background-color: #681102 !important;
}

.link-address, .link-address:hover {
    color: #333333;
    text-decoration: none;
    font-size: 1.1em;
    line-height: 1.7em;
}

input[type=checkbox]:after {
    content: " ";
    background-color: #681102;
    display: inline-block;
    visibility: visible;
    color: white;
    height: 15px;
    line-height: 1em;
    border-radius: 4px;
}

input[type=checkbox]:checked:after {
    content: "\2714";
}

input[type=checkbox]:checked {
    visibility: hidden;
}

.error {
    color: red;
    font-size: 1em;
}

/* Botão WhatsApp */
.whats-content{
    position: fixed;
    z-index: 12;
    bottom: 1.5em;
    right: 1.5em;
}

.whats-content-text{
    position: fixed;
    z-index: 12;
    bottom: 4.5em;
    right: 0.5em;
}

.whats-text{
    background-color: #FFF0DF;
    border-radius: 20px;
    padding: 8px;
    color: #300903;
}
.whats-text i {
    color: #DF9877;
}

.whats-button{
    height: 3.5em;
    border-radius: 30px;
    border: unset;
    width: 3.5em;
    background-color: #009622;
    transition: background-color .3s;
    transform: scale(1);
    animation: pulse 2s infinite;
}
.whats-button .fa-whatsapp{
    font-size: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.7em;
    color: white;
}
.whats-button:hover{
    background-color: #01711a;
}
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(1, 113, 26, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}
