body {
    background-color: #DFEBFF;
    display: flex;
    flex-direction: column;
    font-family: "Quicksand";
    margin: 0;
    align-items: center;
}
.margin_sides {
    max-width: 600px;
    width: calc(100% - 16px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

#header {
    text-align: center;
}

#header h4 {
    font-size: 20px;
    color: #000000;
    margin-bottom: 0;
}

#header h1 {
    color: #4388FF;
    font-size: 40px;
    font-weight: 900;
    margin: 0;
}

#body .targeta {
    background-color: white;
    box-shadow: 0 3px 20px 0 #BAD3FF;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: stretch;
    border-radius: 10px;
    padding: 30px 30px 50px;
    gap: 25px;
}
.icono_estado {
    background-color: #4388FF;
    color: white;
    height: 210px;
    width: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    border-radius: 50%;
    margin: 0 auto;
}

.cont_ayuda {
    color: white;
    background-color: #4388FF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-radius: 10px;
    padding: 26px;
}

.cont_ayuda i {
    background-color: #50EB93;
    height: 69px;
    width: 69px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    border-radius: 50%;
    box-shadow: 0 0 20px 0 #265FC2;
}

.cont_ayuda p {
    font-size: 18px;
}

#boton_ingresar {
    color: white;
    font-size: 40px;
    background: linear-gradient(90deg, #50EB93, #4388FF);
    border-radius: 50px;
    /*padding: 25px 65px;*/
    padding: 25px 2%;
    display: block;
    text-align: center;
    cursor: pointer;
    font-weight: 900;
    border: none;
    width: 100%;
    margin-top: 1rem;
}
#boton_ingresar:hover {
    background: #4388FF;
}

.cont_fields {
    display: flex;
    flex-direction: column;
}

.cont_fields span {
    color: #4388FF;
    font-size: 20px;
    font-weight: 600;
}

#input_rut {
    background-color: #EEF4FF;
    border: none;
    padding: 20px;
    border-radius: 5px;
    color: #4388FF;
    font-size: 30px;
}

#input_rut::placeholder {
    opacity: 1;
    color: #BAD3FF;
}

#input_rut::placeholder {
    color: #BAD3FF;
}
.icono_contacto a {
    text-decoration: none;
    color: white;
}
.icono_contacto a:hover {
    color: #4388ff;
}

#response_mensaje {
    background-color: #4389fe38;
    padding: 25px;
    border-radius: 10px;
}

#response_mensaje.alerta {
    background-color: #ffb80040;
}
.fa-spinner {
    position: absolute;
    /*top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    margin:-60px 0 0 -60px;*/
    -webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
}
@-moz-keyframes spin { 
    100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}

div#modal_background {
    backdrop-filter: blur(20px);
    background-color: #00000047;
    position: absolute;
    z-index: 99;
    height: calc(100% - 16px);
    width: calc(100% - 16px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

div#modal {
    background-color: white;
    box-shadow: 0 3px 20px 0 #0000003B;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icono_modal {
    background-color: #FF4874;
    height: 87px;
    width: 87px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
    font-size: 50px;
    margin-top: -70px;
}

#modal.OK .icono_modal {
    background-color: #4388ff;
}

div#cerrar_modal {
    color: white;
    background-color: #FF4874;
    border-radius: 60px;
    padding: 16px;
    font-size: 25px;
    font-weight: 600;
    min-width: 200px;
    margin-top: 25px;
    text-align: center;
    cursor: pointer;
}

#modal.OK div#cerrar_modal {
    background-color: #4388ff;
    display: none;
}

#modal .cont_ayuda {
    padding: 15px;
}

#modal.OK .cont_ayuda {
    display: none;
}

#response_title {
    color: #FF4874;
    font-size: 30px;
}

#modal.OK #response_title {
    color: #4388ff;
}
p#response_text {
    font-size: 20px;
    font-weight: 600;
}