/*********************************
* ************* BOOT *************
******************************** */
* {
    font-family: 'Inter', sans-serif;
}

body {
    background: #FFFFFF;
}

/*********************************
* ******** REUTILIZÁVEIS *********
******************************** */
/* Forms */
.form_label_box{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
}

.form_label{
    flex-basis: 100%;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.form_label_margin{
    margin-bottom: 0;
}

.form_label:last-child{
    margin-bottom: 0;
}

.form_label_two{
    flex-basis: calc(50% - 10px);
}

.form_text{
    font-size: var(--textSize14);
    color: var(--colorText_90);
    display: block;
    padding-bottom: 10px;
    width: 100%;
}

.form_text_info{
    font-size: var(--textSize13);
    color: var(--colorText_60);
    display: block;
    padding-top: 2px;
}

.form_input{
    width: 100%;
    font-size: var(--textSize16);
    height: 54px;
    color: var(--colorText_90);
    padding: 0 20px;
    border: 1px solid var(--colorBorder);
    outline: none;
    resize: none;
    border-radius: var(--borderRadius);
    -moz-border-radius: var(--borderRadius);
    -webkit-border-radius: var(--borderRadius);
    background: #FFFFFF;
}

/* Buttons */
.btn{
    display: inline-block;
    border: none;
    text-decoration: none;
    font-size: var(--textSize15);
    color: var(--colorWhite);
    border-radius: var(--borderRadius);
    padding: 0 30px;
    height: 54px;
    line-height: 48px;
    font-weight: bold;
    cursor: pointer;
    outline: none;
}

.btn-default{
    background: var(--colorSecondary);
    color: var(--colorPrimary);
}

.btn-default:hover{
    background: var(--colorSecondaryDark);
}

/* Loading */
.mask_load{
    background: rgba(23, 2, 55, 0.8) !important;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9999999999999999999999999;
    display: none;
}

.mask_load img{
    margin: auto;
    height: 90px;
}

/*********************************
* *********** CONTEÚDO ***********
******************************** */
/** Header **/
.header{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    width: 100%;
    background: var(--colorPrimary);
    padding: 42px 0;
}

.header .container{
    justify-content: center;
}

/* Content */
.content{
    width: 100%;
}

.content .container{
    padding: 90px 0;
    justify-content: center;
}

.content .title{
    width: 620px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.content .title h1{
    font-size: var(--textSize34);
    color: var(--colorPrimary);
    font-weight: 600;
    text-align: center;
    padding-bottom: 16px;
}

.content .title span{
    font-size: var(--textSize16);
    line-height: 22px;
    color: var(--colorText_80);
    text-align: center;
}

/* Forms */
.forms{
    width: 90%;
    max-width: 620px;
    position: relative;
    border-radius: 10px;
    padding: 40px;
    border: 1px solid var(--colorBorder);
}

.form_label_radios{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.form_label_radios.date_radio .form_label_radio{
    width: calc(33.33% - 15px);
    display: flex;
}

.form_label_radio{
    width: calc(50% - 12px);
    display: flex;
}

.form_label_radio_box{
    width: 100%;
    border: 1px solid var(--colorBorder);
    padding: 15px 20px;
    border-radius: var(--borderRadius);
    font-size: var(--textSize16);
    color: var(--colorText_70);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form_label_radio_box span{
    margin-right: 7px;
    margin-top: -1px;
}

.form_label_radio_box.active,
.form_label_radio_box:hover{
    border: 2px solid var(--colorSecondary);
    color: var(--colorPrimary);
}

.form_label.name_companion{
    display: none;
}

.form_label .btn{
    width: 100%;
}

/* Media Queries */
/* 1200 */
@media (max-width: 1200px) {

}

/* 991 */
@media (max-width: 991px) {
    
}

/* 560 */
@media(max-width: 560px){  
    .header .container img{
        height: 20px;
    }
    
    .content .container{
        padding: 40px 0;
    }

    .content .title{
        margin-bottom: 30px;
    }

    .content .title h1{
        font-size: var(--textSize28);
    }

    .content .title span{
        font-size: var(--textSize14);
    }

    .forms{
        width: 100%;
        max-width: 100%;
        padding: 25px;
    }

    .form_label_radio{
        width: 100% !important;
        margin-bottom: 10px;
    }
}