/* ------------------
GENERAL STYLE 
-------------------*/

* {
    font-family: "Nunito Sans", sans-serif;
}

body, p, a, span, div, label, input, button, select, textarea {
    font-size: 13px;
}

.fill-icon {
    font-variation-settings: 'FILL' 1;
}

.card-smart {
    background-color: #FFFF;
    border-radius: 1rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    padding: 1rem;
    margin: 15px;
}

.text-smart {
    color: #6702B4 !important;
}

.bg-smart {
    background-color: #6702B4 !important;
}

.bg-smart-subtle {
    background-color: #031633 !important;
}

.fs-6 {
    font-size: 13px !important;
}

.fs-7 {
    font-size: 10px;
}

/* ------------------
BUTTONS STYLE 
-------------------*/
.btn {
    border-radius: 2em !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-smart {
    background-color: #6702B4 !important;
    padding: 0px 30px !important;
    max-width: 250px;
    color: #FFFF !important;
    font-weight: 600;
    border-radius: 2em !important;
    font-size: 14px !important;
    border: 0 !important;
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 35px;
    justify-content: center;
}

.btn-smart-sm {
    padding: 0px 15px !important;
    color: #6702B4 !important;
    font-weight: 600;
    border-radius: 2em !important;
    font-size: 12px !important;
    border: 1px  solid #6702B4;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.btn-smart:hover {
    background-color: #6702B4 !important;
}

.btn-smart-sm:hover {
    background-color: #6702B4 !important;
    color: #FFFF !important;
}


.accordion-button::after {
    filter: invert(1);

}


/* ------------------
FORMS STYLE 
-------------------*/

.btn {
    font-size: 14px !important;
}

label {
    color: #000;
    /* Cor do texto */
    font-size: 14px !important;
    /* Tamanho da fonte */
    font-weight: 500;
    /* Peso da fonte */
    display: block;
}

input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #c0c0c0;
    border-radius: 0.2em;
    background-color: #FFFF;
    display: block;
    font-size: 14px !important;
}

input:focus {
    border-color: #EDEDED;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* ------------------
RESPONSIVE
-------------------*/

@media screen and (max-width: 450px) {
    .display-none-small-screen {
        display: none;
    }
}