/* FUENTES DE LA WEB */

@font-face {
    font-family: 'Avenir LT Std';
    src: url('../fonts/AvenirLTStd-Black.woff2') format('woff2'), url('../AvenirLTStd-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir LT Std Light';
    src: url('../fonts/AvenirLTStd-Light.woff2') format('woff2'), url('../AvenirLTStd-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


/* LOADER */

.row_loader_consulta {
    display: none;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 99999999;
    text-align: center;
}

.row_loader_consulta .col_loader_consulta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

a {
    cursor: pointer;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgb(0 0 0 / 17%);
    width: 92%;
}

.transition-form {
    transition: ease-in-out 0.4s!important;
}

.morado {
    background-color: #763085 !important;
    background: -webkit-gradient(linear, left top, right top, from(#651480), color-stop(50%, #8b34b0), to(#651480));
    background: linear-gradient(90deg, #651480 0%, #8b34b0 50%, #651480 100%)!important;
}

.naranja {
    background-color: #db7d1e!important;
    background: -webkit-gradient(linear, left top, right top, from(#ef9a1c), color-stop(50%, #ff7900), to(#ef9a1c));
    background: linear-gradient(90deg, #ef9a1c 0%, #ff7900 50%, #ef9a1c 100%)!important;
    border: none !important;
}

.naranja:hover,
.morado:hover
{
    background-position: 400px !important;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.header_seguros {
    justify-content: center;
    align-items: center;
    margin: 1em 0 2em 1em;
    --background-color: #ffffff;
}

.header_seguros a {
    color: #939393;
    font-family: 'Avenir LT Std Light';
    text-decoration: none;
    cursor: pointer;
    display: flex;
    display: -webkit-flex;
    align-items: center;
}

.logo_header_seguros {
    border-right: 1px solid;
    color: #7d7172;
}

.icono_cancelar {
    width: 30px;
    height: auto;
    margin: 15px;
}

html,
body {
    height: 100%;
    background-color: #EFEFEF;
    color: #7d7172;
    line-height: 2.0;
}

.required-field {
    color: #D32F2F;
    font-size: 13px;
    font-weight: bold;
}


/* Modal de seguros -> sirve para todos */

.modal-seguros {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    left: 0;
    text-align: left;
    background: rgba(0, 0, 0, .61);
    transition: opacity .25s ease;
}

.trigger {
    display: none;
}

.trigger:checked+.modal-seguros {
    opacity: 1;
    visibility: visible;
}

.trigger:checked+.modal-seguros .modal-container {
    top: 0;
}

.modal-container {
    transition: top .25s ease;
    position: absolute;
    top: -20%;
    right: 0;
    bottom: 0;
    left: 0;
    width: 35%;
    margin: auto;
    overflow: auto;
    background: #fff;
    border-radius: 10px;
    padding: 1em 2em;
    height: 400px;
}

.close-modal-seguros {
    position: absolute;
    right: 0em;
    top: -2em;
    width: 1.1em;
    height: 1.1em;
    cursor: pointer;
}

.close-modal-seguros:after,
.close-modal-seguros:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 1.5em;
    background: #ccc;
    display: block;
    transform: rotate(45deg);
    left: 50%;
    margin: -3px 0 0 -1px;
    top: 0;
}

.close-modal-seguros:hover:after,
.close-modal-seguros:hover:before {
    background: #aaa;
}

.close-modal-seguros:before {
    transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
    .modal-container {
        width: 84%;
        height: 65%;
        box-sizing: border-box;
    }
}
/**/
.modal-seguros-benef {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    left: 0;
    text-align: left;
    background: rgba(0, 0, 0, .61);
    transition: opacity .25s ease;
}

.trigger {
    display: none;
}

.trigger:checked+.modal-seguros-benef {
    opacity: 1;
    visibility: visible;
}

.trigger:checked+.modal-seguros-benef .modal-container-benef {
    top: 0;
}

.modal-container-benef {
    transition: top .25s ease;
    position: absolute;
    top: -20%;
    right: 0;
    bottom: 0;
    left: 0;
    width: 50%;
    margin: auto;
    overflow: auto;
    background: #fff;
    border-radius: 10px;
    padding: 1em 2em;
    height: 40%;
}

.close-modal-seguros-benef {
    position: absolute;
    right: 0em;
    top: -2em;
    width: 1.1em;
    height: 1.1em;
    cursor: pointer;
}

.close-modal-seguros-benef:after,
.close-modal-seguros-benef:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 1.5em;
    background: #ccc;
    display: block;
    transform: rotate(45deg);
    left: 50%;
    margin: -3px 0 0 -1px;
    top: 0;
}

.close-modal-seguros-benef:hover:after,
.close-modal-seguros-benef:hover:before {
    background: #aaa;
}

.close-modal-seguros-benef:before {
    transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
    .modal-container-benef {
        width: 84%;
        height: 65%;
        box-sizing: border-box;
    }
}


/* Modal de seguros -> sirve para todos */

.card-white {
    background: white;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, .125);
    padding: 50px 10px 80px 10px;
    max-height: 1000px;
}

.left-info {
    border-right: 1px solid rgba(0, 0, 0, .125);
}

.purple-text {
    color: #763085;
    font-weight: bold;
}

.form-style {
    padding: 5px;
}

.form-style-viajero {
    padding: 20px;
}

.form-style select,
.form-style-viajero select,
.form-style input,
.form-style-viajero input {
    border: 1px solid #763082;
    border-radius: 20px;
    padding: 5px 0px 5px 20px;
    width: 100%;
    display: block;
}

.form-style input::-webkit-outer-spin-button,
.form-style input::-webkit-inner-spin-button,
.form-style-viajero input::-webkit-outer-spin-button,
.form-style-viajero input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-style input[type=number],
.form-style-viajero input[type=number] {
    -moz-appearance: textfield;
}

.form-style label,
.form-style-viajero label {
    text-align: left;
    font-size: 15px;
    color: #763082;
    font-weight: 200;
}

.orange_bg {
    background: -webkit-gradient(linear, left top, right top, from(#ff7900), color-stop(50%, #ff7900), to(#ff7900));
    background: linear-gradient(90deg, #ff7900 0%, #ff7900 50%, #ff7900 100%);
    color: #ffffff;
    font-family: 'Avenir LT Std';
}

.purple_bg {
    background: -webkit-gradient(linear, left top, right top, from(#652480), color-stop(50%, #652480), to(#8b34b0));
    background: linear-gradient(90deg, #652480 0%, #652480 50%, #8b34b0 100%);
    color: #ffffff;
    font-family: 'Avenir LT Std';
}

.orange-btn {
    background: -webkit-gradient(linear, left top, right top, from(#ff7900), color-stop(50%, #ff7900), to(#ff7900));
    background: linear-gradient(90deg, #ff7900 0%, #ff7900 50%, #ff7900 100%);
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 20px;
    text-decoration: none;
    padding: 5px 1px;
    display: inline-block;
    width: 75%;
    transition: all .3s;
    text-align: center;
    margin-top: 20px;
}

.purple-btn {
    background: linear-gradient(90deg, #652480 0%, #652480 50%, #8b34b0 100%);
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 20px;
    text-decoration: none;
    padding: 5px 1px;
    display: inline-block;
    width: 75%;
    transition: all .3s;
    text-align: center;
    margin-top: 20px;
}

.orange-btn:hover {
    background-position: 400px !important;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    color: #ffffff;
}

.purple-btn:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    color: #ffffff;
}

.rounded {
    border-radius: 25px !important;
}

.card {
    text-align: left;
}

.rounded .card-header {
    border-radius: 25px 25px 0px 0px !important;
    height: 75px !important;
    font-size: 20px;
    text-align: center !important;
    justify-content: center;
    align-items: center;
    display: flex;
    display: -webkit-flex;
}

p {
    font-weight: 200;
    font-size: 18px;
}

.orange-sm-btn-no-bg {
    color: #ff7900;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 30px;
    text-decoration: none;
    padding: 5px 1px;
    display: inline-block;
    width: 75%;
    transition: all .3s;
    border: 2px solid #ff7900;
    width: 30%;
    text-align: center;
}

.orange-sm-btn-no-bg:hover {
    background-position: 400px !important;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    color: #ff7900;
}

.purple-back-sm-btn {
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 30px;
    text-decoration: none;
    padding: 5px 1px;
    display: inline-block;
    transition: all .3s;
    width: 100%;
    background-color: #763085 !important;
    background: #763085;
    text-align: center;
    background: -webkit-gradient(linear, left top, right top, from(#651480), color-stop(50%, #8b34b0), to(#651480));
    background: linear-gradient( 90deg, #651480 0%, #8b34b0 50%, #651480 100%);
    margin-top: 20px;
}

.purple-back-sm-btn:hover {
    background-position: 400px !important;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    color: #ffffff;
}

.hidden {
    display: none;
}

.check-icon {
    width: 40px;
}

.beneficiarios-icons {
    width: 30px;
}

p {
    margin: 0px;
}


/* Viajeros */

.seguro-viajero {
    padding: 20px;
}

.seguro-viajero .tipos-header {
    border-radius: 41px;
    height: 54px !important;
    font-size: 20px;
    text-align: center !important;
    justify-content: center;
    align-items: center;
    display: flex;
    display: -webkit-flex;
}

.seguro-viajero .gris {
    background: #F2F2F2;
    border-radius: 30px;
    /* padding: 6px 15px; */
    line-height: 28px;
}

tr td:first-child {
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
}

tr td:last-child {
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
}

.tipos div {
    height: 54px !important;
    font-size: 17px;
    text-align: center !important;
    justify-content: center;
    align-items: center;
    display: flex;
    display: -webkit-flex;
    padding-left: 10px;
    padding-right: 10px;
}

.tipos {
    margin-top: 100px;
}

.cobertura-covid {
    display: none;
    padding: 15px 0px;
    background-color: #F2F2F2;
    margin: 20px;
    border-radius: 10px;
    background-size: contain;
    background-image: url(/wp-content/uploads/2021/10/protection.png);
    background-repeat: no-repeat;
    background-position: right;
}

.plan {
    padding: 6px;
    background-color: #763085;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #763085;
    border-radius: 38px 38px 38px 38px;
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
}

.header-rangos th {
    padding-left: 2px !important;
    padding-right: 2px !important;
}

.bg-ran {
    background-color: #763085B8;
    border-radius: 025px 025px 0px 0px;
    padding-left: 4px;
    padding-right: 4px;
    color: white;
    font-weight: 100;
    border: none !important;
}

.table td,
.table th {
    border: none !important;
}

.table tbody td {
    color: #7d7172 !important;
}

.paddind-select {
    padding: 20px 42px 36px;
}

.padding-col-6 {
    padding: 14px 20px;
}

.detalle-pago {
    width: 100%;
    padding-top: 10px;
    margin: 0px;
    display: flex;
    align-items: center;
}

.monto_seguro {
    color: #ff7900;
    font-size: 25px;
}

.interfaz-precio {
    background-color: #F2F2F2;
    margin: 10px 10px 10px -10px;
    border-radius: 10px;
    background-size: contain;
    background-image: url(/wp-content/uploads/2021/09/coins.svg);
    background-repeat: no-repeat;
    background-position: right;
}

.titulo-h3 {
    position: inherit;
    display: flex;
    display: -webkit-flex;
    margin: auto;
}

select {
    border: 1px solid #ccc;
    background: URL(/wp-content/uploads/2021/05/flecha-morada.png) no-repeat 98% 4px #fff !important;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.calendar_input {
    position: relative;
}

.calendar_input_img {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
}

@media (max-width: 376px) {
    .individual .position_mobile {
        /* position: absolute; */
        top: 0em !important;
        /* padding-bottom: 5em; */
    }


}


/* Extra small devices (phones, 600px and down) */

@media (max-width: 600px) {
    #align-check{
        display: flex;
        align-items: baseline;
    }

    .costos_detalle {
        padding: 5px 30px;
    }
    .logo_header_seguros {
        border-right: 0px solid;
    }
    .header_seguros {
        justify-content: center;
        align-items: center;
        margin: 1em 0 2em 1em;
        text-align: center;
    }
    .header_seguros a {
        color: #939393;
        font-family: 'Avenir LT Std Light';
        text-decoration: none;
        cursor: pointer;
        display: block;
        align-items: center;
        margin-top: 20px;
    }
    .logo_header_seguros img {
        width: 46%;
        margin: auto;
        display: flex;
        display: -webkit-flex
    }
    .logo_header_seguros {
        border-right: 0px solid !important;
    }
    .header_seguros {
        margin: 1em 0 1em 1em;
    }
    .left-info {
        border-right: 0px solid !important;
    }
    .card {
        margin-bottom: 25px;
    }
    #form-fam-tomador .h-100 {
        height: 74%!important;
    }
    #form-fam-pago img {
        width: 100%
    }
    .padding-col-6 {
        padding: 0 20px !important;
    }
    .hidden .container {
        width: 100%;
        padding-right: 10px;
        padding-left: 10px;
    }
    .individual .costos_detalle {
        padding-top: 0px;
        margin-bottom: 48px;
    }
    .individual .position_mobile {
        /* position: absolute; */
        /* top: 103em; */
        /* padding-bottom: 5em; */
    }
    .card-white {
        padding: 0 20px !important;
        max-height: 0 !important;
        height: 0 !important;
        background: white;
        border-radius: none;
        border: none;
    }
    html,
    body {
        background: white;
    }
    .individual,
    .familiar {
        padding-right: 26px;
        padding-left: 26px;
    }
    .familiar .position_mobile-familiar {
        position: absolute;
        top: 114em;
        padding-bottom: 5em;
    }
    .familiar .costos_detalle {
        padding-top: 0px;
        margin-bottom: 48px;
    }
    #plan-Autoexpedible-salud-ahora-pf-basico,
    #plan-Autoexpedible-salud-ahora-pf-basico-mascota,
    .form-dat-tomador2 {
        padding-bottom: 40px;
    }
    .familiar #plan-Autoexpedible-salud-ahora-pf-basico,
    .familiar #plan-Autoexpedible-salud-ahora-pf-basico-mascota,
    #sa-tabla-beneficiarios-mascota {
        padding-bottom: 76px;
    }
    #form-fam-tomador-mascota .h-100,
    #form-dat-tomador-basico .h-100 {
        height: 60%!important;
    }
    .btn-ind-toma {
        position: absolute;
        top: 35em;
        padding-bottom: 5em;
        width: 100%;
    }
    .btn-ind-toma2 {
        top: 107em;
        position: absolute;
        padding-bottom: 5em;
        width: 100%;
    }
    .img-pago {
        width: 100%;
    }
    .btn-ind-dependiente {
        position: absolute;
        top: 74em;
        padding-bottom: 5em;
        width: 100%;
    }
    .btn-ind-pago {
        position: absolute;
        top: 72em;
        padding-bottom: 5em;
        width: 100%;
    }
    .btn-ahora {
        position: absolute;
        top: 41em;
        padding-bottom: 5em;
        width: 100%;
    }
    .btn-bene {
        position: absolute;
        top: 22em;
        padding-bottom: 5em;
        width: 100%;
    }
    .btn-agregar {
        position: absolute;
        top: 14em;
        padding-bottom: 5em;
        width: 100%;
    }
    .btn-continuar {
        position: absolute;
        top: 19em;
        padding-bottom: 5em;
        width: 100%;
    }
}

@media (max-width: 500px) {
    .individual .position_mobile {
        /* position: absolute; */
        /* top: 70em; */
        /* padding-bottom: 5em; */
    }
    .btn-ind-pago {
        position: absolute;
        top: 68em;
        padding-bottom: 5em;
        width: 100%;
    }
    .btn-ind-toma {
        position: absolute;
        top: 36em;
        padding-bottom: 5em;
        width: 100%;
    }
    .btn-ind-dependiente {
        position: absolute;
        top: 85em;
        padding-bottom: 5em;
        width: 100%;
    }
}

@media (max-width: 375px) {
    .btn-ind-pago,
    .btn-ind-toma,
    .btn-ind-pago,
    .btn-ahora,
    .btn-bene,
    .btn-agregar,
    .btn-continuar {
        top: 40em;
    }
    .individual .position_mobile {
        top: 129em;
    }
    .btn-ind-toma2 {
        top: 113em;
    }
    .btn-ind-dependiente {
        top: 90em;
    }
    .btn-ind-pago {
        top: 70em;
    }
}

@media (max-width: 400px) {
    .btn-ind-pago {
        position: absolute;
        top: 66em;
        padding-bottom: 5em;
        width: 100%;
    }
}

@media (max-width: 920px) {
    html,
    body {
        background: white;
    }
    .container {
        max-width: 900px !important;
    }
    .left-info {
        border-right: 0px solid !important;
    }
}

@media (max-width: 990px) {
    html,
    body {
        background: white;
    }
    .container {
        max-width: 890px !important;
    }
}

/* ================================================================= */
/* LOADER */
.sk-circle {
    margin: 100px auto;
    width: 100px;
    height: 100px;
    position: relative;
  }
  .sk-circle .sk-child {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
  .sk-circle .sk-child:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
            animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
  }
  .sk-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
            transform: rotate(30deg); }
  .sk-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
            transform: rotate(60deg); }
  .sk-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg); }
  .sk-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
        -ms-transform: rotate(120deg);
            transform: rotate(120deg); }
  .sk-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
        -ms-transform: rotate(150deg);
            transform: rotate(150deg); }
  .sk-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
  .sk-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
        -ms-transform: rotate(210deg);
            transform: rotate(210deg); }
  .sk-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
        -ms-transform: rotate(240deg);
            transform: rotate(240deg); }
  .sk-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
            transform: rotate(270deg); }
  .sk-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
        -ms-transform: rotate(300deg);
            transform: rotate(300deg); }
  .sk-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
        -ms-transform: rotate(330deg);
            transform: rotate(330deg); }
  .sk-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
            animation-delay: -1.1s; }
  .sk-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
            animation-delay: -1s; }
  .sk-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
            animation-delay: -0.9s; }
  .sk-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
            animation-delay: -0.8s; }
  .sk-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
            animation-delay: -0.7s; }
  .sk-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
            animation-delay: -0.6s; }
  .sk-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
            animation-delay: -0.5s; }
  .sk-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
            animation-delay: -0.4s; }
  .sk-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
            animation-delay: -0.3s; }
  .sk-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
            animation-delay: -0.2s; }
  .sk-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
            animation-delay: -0.1s; }

  @-webkit-keyframes sk-circleBounceDelay {
    0%, 80%, 100% {
      -webkit-transform: scale(0);
              transform: scale(0);
    } 40% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }

  @keyframes sk-circleBounceDelay {
    0%, 80%, 100% {
      -webkit-transform: scale(0);
              transform: scale(0);
    } 40% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
/* ================================================================= */
