@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/monstserrat/static/Montserrat-Regular.ttf') format('truetype');      
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/monstserrat/static/Montserrat-Bold.ttf') format('truetype');      
    font-weight: 600;
    font-style: normal;
}

/* Common styles */
body{
    background-color: transparent;
}
.form-group {
    margin-bottom: 0.4rem;
}
.custom-control {
    position: relative;
    display: block;
    min-height: 1.1rem;
    padding-left: 2.2rem;
}
.col-12{
    padding:0;
}
.col-6{
    padding:0 4px;
}
.row{
    margin:0
}
.iti.iti--allow-dropdown{
    width:100%
}
.itiFlag::placeholder{
    color: #8d8d8d;
    font-size: 14px
}
.error_msg {
    color: #e90101;
    font-size: 13px;
    font-style: oblique;
    display: none;
}

/* Styles contA */
#contA{
    box-sizing: border-box;
    background-color: #33333380;
    border-radius: 21px;
    padding: 21px;
}
.contA_title{
    font-family: 'Montserrat';
    text-align: center;
    color: #ffffff
}
#contA form{
    background: #363636;
    padding: 40px 30px 20px 30px;
    border-radius: 15px !important;
    text-align: center;
    width: 100%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(89px);
}
#contA form .form-group label{
    color: #ffffff;
    float: left;
    font-size: 13px;
    margin: 0
}
#contA form .form-group label>span{
    color: #ff0000;
}
#contA form .form-group input, #contA form .form-group select{
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-size: 15px;
    color: white;
    border-radius: 99px;
    width: 100% !important;
}
#contA form .form-group select option{
    color:black
}
#contA form .form-group input:not(.itiFlag){
    padding: 10px 13px;
}
#contA form .form-group input:focus{
    background-color: #ffffff;
    color: #333333
}
#contA form #btnSubmit{
    background-color: #0998aa;
    color: #ffffff;
    font-family: "Source Code Pro";
    font-size: 16px;
    border: none;
    border-radius: 99px;
    padding: 8px 13px;
    cursor: pointer;
}
.modal-footer .closeModal{
    background-color: #0998aa;
}
#contA form #radioButton{
    width: 40px;
}

#formRadio{
    color:#008694    
}
.formP{
    font-weight: bold;
}
.contA_legalDisclaimer{
    margin-bottom: 0;
    font-size:13px;
    color: #ffffff;
}
.contA_legalDisclaimer a{
    color:#ffffff;
    text-decoration: underline;
}
.contA_legalDisclaimer a:hover{
    color:#ffffff;
}

@media (max-width: 460px){ 
    .col-6{
        width: 100%;
        max-width: 100%;
    }
    #formLanding{
        display: inline-block;
    }
    #contA #formLanding #btnSubmit{
        width: 100%;
    }

}

/* Estilos del Loader al enviar el formulario */
.enviando{ border: 5px solid #f3f3f3!important; border-radius: 50%!important; border-top: 5px solid #FF0000!important; width: 40px!important; height: 40px!important;
	-webkit-animation: spin 2s linear infinite; /* <- Safari */ animation: spin 2s linear infinite;
}
/* Safari -> */@-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); }}
@keyframes spin { 0% { transform:  rotate(0deg); } 100% { transform:  rotate(360deg); }
}