/* Minification failed. Returning unminified contents.
(13137,2): run-time error CSS1030: Expected identifier, found '.'
(13137,2): run-time error CSS1019: Unexpected token, found '.'
 */
@charset "UTF-8";
/* agregar aquí todos los archivos sass parciales ej: "_archivo_parcial.sass" */
/* para revisar estilos desde el inspector del navegador, se debe generar un archivo .map
 * que ayuda a identificar en qué lineas de un archivo .sass están los estilos*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

blockquote, q {
    quotes: none;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, caption, tfoot, thead, th,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
}

    a:focus {
        outline: 0px dotted !important;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.table thead > tr > th,
.table tbody > tr > th,
.table tfoot > tr > th,
.table thead > tr > td,
.table tbody > tr > td,
.table tfoot > tr > td {
  padding: 8px;
  line-height: 1.428571429;
  vertical-align: top;
  border-top: 1px solid #dddddd;
}


.table tbody + tbody {
  border-top: 2px solid #dddddd;
}

.table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }

.table-bordered {
  border: 1px solid #dddddd;
}

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #dddddd;
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}




body {
    line-height: 1;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: "";
    content: none;
}

ol, ul {
    list-style: none;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

/* Para utilizar las variables basta con reemplazar el atributo por el nombre de la variable en nuestro código ej: "color: $chv_azul" */
/* al modificar el atributo de cualquier variable afectará a todos los selectores donde se utilizó */
/* para utilizar los mixins llamarlos de la siguiente forma en el código sass: @include nombre_mixin */
/* para utilizar los mixins llamarlos de la siguiente forma en el código sass: @mixin nombre_mixin */
/* para utilizar los mixins llamarlos de la siguiente forma en el código sass: @include nombre_mixin */
/* para utilizar mixins variables llamar de la siguiente forma: @include nombre_mixin(variable1, variable2, ...) */
.swiper-button-next {
    background-image: url("ecert/imag/v1/icon/arrow_r.png") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 21px !important;
    z-index: 1 !important;
    width: 50px !important;
    height: 50px !important;
    right: 0px !important;
    outline: none !important;
}

@media (max-width: 425px) {
    .swiper-button-next {
        background-size: 12px !important;
        width: 20px !important;
        height: 20px !important;
    }
}

.swiper-button-prev {
    background-image: url("ecert/imag/v1/icon/arrow_l.png") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 21px !important;
    z-index: 1 !important;
    width: 50px !important;
    height: 50px !important;
    left: 0px !important;
    outline: none !important;
}

@media (max-width: 425px) {
    .swiper-button-prev {
        background-size: 12px !important;
        width: 20px !important;
        height: 20px !important;
    }
}

.swiper-button-disabled {
    opacity: 1 !important;
}

.cont-btn {
    padding: 30px 0;
    text-align: center;
}

.btn-main {
    display: inline-block;
    font-size: 0.8125rem;
    color: #ffffff;
    padding: 10px 45px;
    background-color: #eba021;
    border-radius: 30px;
    letter-spacing: 0.2px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

@media (max-width: 425px) {
    .btn-main {
        font-size: 0.75rem !important;
        padding: 12px 20px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .btn-main {
        font-size: 0.75rem !important;
        padding: 12px 20px;
    }
}

.btn-main:hover {
    background-color: #eba021;
    transition: 0.3s all ease;
}

.btn-main.more {
    color: #808285;
    border-bottom: 4px solid #808285;
    margin-left: 20px;
}

#return-to-top {
    position: fixed;
    border: 1px solid rgba(255, 255, 255, 0.3);
    bottom: 20px;
    right: 2%;
    background: #0055b8;
    width: 50px;
    height: 50px;
    z-index: 50;
    cursor: pointer;
    text-decoration: none;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    #return-to-top img {
        width: 25px;
        margin: 0 auto;
        top: calc(50% - 10px);
        vertical-align: middle;
        position: relative;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    #return-to-top:hover {
        background-color: #eba021;
    }

        #return-to-top:hover img {
            top: 10px;
        }

.markers {
    text-align: center;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 0 0 20px;
}

@media (min-width: 426px) and (max-width: 767px) {
    .markers {
        -webkit-box-orient: block-axis;
        -webkit-box-orient: vertical;
        -moz-box-orient: block-axis;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
}

.markers .car_sel:hover {
    transform: translateY(-3px);
    transition: 0.3s all ease;
    background-color: #4F2B83;
    border-color: #0055b8;
    border-radius: 10px;
}

    .markers .car_sel:hover p, .markers .car_sel:hover .text_marker, .markers .car_sel:hover h3 {
        color: #ffffff !important;
        transition: 0.3s all ease;
    }

    .markers .car_sel:hover .img_wrap {
        background-image: url("../Content/ecert/imag/v1/icon/ic_check_white.png");
    }

.markers .car_sel .img_wrap {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    background-image: url("../Content/ecert/imag/v1/icon/ic_check_blue.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.markers .car_sel p {
    line-height: 1.4;
    font-size: 0.875rem;
    color: #595959;
}

.markers .car_sel img {
    width: 100%;
}

.markers .text_marker {
    color: #373737;
    font-size: 1rem;
    text-transform: uppercase;
    margin-top: 14px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    line-height: 1.2;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.marker {
    display: none;
}

    .marker + .car_sel {
        max-width: 240px;
        flex-shrink: 1;
        position: relative;
        height: auto;
        min-height: 135px;
        width: 100%;
        margin: 5px 10px;
        padding: 30px 20px;
        background-color: #ffffff;
        border: 1px solid #bacbd8;
        border-radius: 10px;
        cursor: pointer;
    }

@media (max-width: 425px) {
    .marker + .car_sel {
        padding: 20px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .marker + .car_sel {
        padding: 20px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .marker + .car_sel {
        max-width: 225px;
    }
}

.marker + .car_sel:before {
    display: inline-block;
    content: "";
}

.marker:checked + .car_sel {
    background-color: #00b069;
    border-color: #00b069;
    color: #ffffff !important;
    transform: none;
}

    .marker:checked + .car_sel .text_marker {
        color: #ffffff !important;
        transition: 0.1s all ease;
    }

    .marker:checked + .car_sel .img_wrap {
        background-image: url("../Content/ecert/imag/v1/icon/ic_check_white.png");
    }

    .marker:checked + .car_sel p {
        color: #ffffff !important;
    }

    .marker:checked + .car_sel:before {
        left: 0;
        content: "";
    }

.enc-nav .auxi {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

    .enc-nav .auxi .cont-btn a {
        display: inline-block;
        position: relative;
        font-size: 0.8125rem;
        color: #58595b;
        padding: 8px 40px 8px 50px;
        background-color: #ffffff;
        border: 1px solid #bacbd8;
        border-radius: 30px;
        letter-spacing: 0.2px;
        font-family: "Roboto", sans-serif;
        font-weight: 700;
    }

@media (max-width: 425px) {
    .enc-nav .auxi .cont-btn a {
        font-size: 0.75rem;
        padding: 6px 25px 6px 36px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .enc-nav .auxi .cont-btn a {
        font-size: 0.75rem;
        padding: 6px 30px 6px 40px;
    }
}

.enc-nav .auxi .cont-btn a:before {
    content: "";
    position: absolute;
    background-image: url("../Content/ecert/imag/v1/icon/chevron_gris.png");
    background-repeat: no-repeat;
    background-position: 0;
    background-size: 100%;
    left: 15px;
    width: 13px;
    height: 13px;
    transform: rotate(90deg);
}

.enc-main .auxi {
    text-align: center;
    padding-bottom: 20px;
}

    .enc-main .auxi p {
        font-size: 1.125rem;
        line-height: 1.4;
        color: #595959;
    }

    .enc-main .auxi h1 {
        padding-top: 10px;
        font-size: 2.1875rem;
        font-family: "Roboto", sans-serif;
        font-weight: 700;
    }

@media (max-width: 425px) {
    .enc-main .auxi h1 {
        font-size: 2rem;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .enc-main .auxi h1 {
        font-size: 2rem;
    }
}

.enc-bg {
    position: relative;
}

    .enc-bg:before {
        content: "";
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        position: absolute;
        background: #0055b8;
        background: -moz-linear-gradient(45deg, #0055b8 0%, rgba(1, 140, 207, 0.5) 67%);
        background: -webkit-linear-gradient(45deg, #0055b8 0%, rgba(1, 140, 207, 0.5) 67%);
        background: linear-gradient(45deg, #0055b8 0%, rgba(1, 140, 207, 0.5) 67%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0055b8",endColorstr="#018ccf",GradientType=1);
    }

    .enc-bg .breadcrumb, .enc-bg .breadcrumb a {
        color: #ffffff !important;
    }

        .enc-bg .breadcrumb:after, .enc-bg .breadcrumb a:after {
            color: #ffffff !important;
        }

    .enc-bg .enc-nav .cont-btn a {
        border: none;
    }

    .enc-bg .enc-main {
        z-index: 2;
        position: relative;
        overflow: hidden;
        padding: 40px 0;
    }

@media (max-width: 425px) {
    .enc-bg .enc-main {
        padding: 20px 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .enc-bg .enc-main {
        padding: 20px 0;
    }
}

.enc-bg .enc-main p {
    padding-top: 15px;
    line-height: 1.4;
    font-size: 1.125rem;
    color: #ffffff;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.enc-bg .enc-main h1 {
    font-size: 2.1875rem;
    color: #ffffff;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.enc-txt .breadcrumbs {
    text-align: left;
}

.enc-txt .auxi {
    text-align: center;
    padding-bottom: 0;
}

    .enc-txt .auxi p {
        font-size: 1.125rem;
        line-height: 1.4;
        color: #595959;
    }

    .enc-txt .auxi h1 {
        padding-top: 10px;
        font-size: 2.1875rem;
        font-family: "Roboto", sans-serif;
        font-weight: 700;
    }

.cont-tit {
    text-align: center;
    padding: 12px 18px;
    margin-bottom: 20px;
}

.cont-tit2 {
  margin-bottom: 20px;
  margin: 0 auto;
  line-height: 1.6;
  letter-spacing: .3px;
  font-size: 1rem;
  color: #808285;
}

@media (max-width: 425px) {
    .cont-tit {
        padding-bottom: 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .cont-tit {
        padding-bottom: 0;
    }
}

.cont-tit .tit {
    font-size: 2.1875rem;
    color: #0055b8;
    margin-bottom: 15px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

@media (max-width: 425px) {
    .cont-tit .tit {
        font-size: 1.25rem;
        text-align: center;
        width: 100%;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .cont-tit .tit {
        font-size: 1.25rem;
        text-align: center;
        width: 100%;
    }
}

.cont-tit .tit:after {
    content: "";
    position: relative;
    display: block;
    margin: 15px auto;
    width: 90px;
    height: 3px;
    background-color: #bacbd8;
}

.cont-tit .baj {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    letter-spacing: 0.3px;
    font-size: 1.125rem;
    color: #808285;
}

@media (max-width: 425px) {
    .cont-tit .baj {
        display: none;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .cont-tit .baj {
        display: none;
    }
}

.box-dest {
    padding: 20px 40px;
    background-color: #ffffff;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1);
}

@media (max-width: 425px) {
    .box-dest {
        padding: 25px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .box-dest {
        padding: 25px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .box-dest {
        padding: 25px;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .box-dest {
        padding: 25px;
    }
}

.box-dest .content {
    padding: 30px;
}

.box-dest h1, .box-dest h2 {
    color: #0055b8;
    font-size: 2.1875rem;
    line-height: 1.3;
    letter-spacing: 0.3px;
    padding-bottom: 20px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

@media (max-width: 425px) {
    .box-dest h1, .box-dest h2 {
        font-size: 1.5rem;
        padding-bottom: 15px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .box-dest h1, .box-dest h2 {
        font-size: 1.5rem;
        padding-bottom: 15px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .box-dest h1, .box-dest h2 {
        font-size: 1.25rem;
        padding-bottom: 15px;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .box-dest h1, .box-dest h2 {
        font-size: 1.5rem;
        padding-bottom: 15px;
    }
}

.box-dest h1:after, .box-dest h2:after {
    content: "";
    position: relative;
    display: block;
    margin-top: 14px;
    width: 75px;
    height: 3px;
    background-color: #bacbd8;
}

.box-dest .dcto {
    padding: 10px 0;
    color: #58595b;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

@media (max-width: 425px) {
    .box-dest .dcto {
        font-size: 0.875rem;
        padding-bottom: 15px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .box-dest .dcto {
        font-size: 0.875rem;
        padding-bottom: 15px;
    }
}

.box-dest .baj {
    line-height: 1.5;
    color: #808285;
    font-size: 1.0625rem;
    padding-bottom: 20px;
    max-width: 280px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

@media (max-width: 425px) {
    .box-dest .baj {
        font-size: 0.8125rem;
        padding-bottom: 15px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .box-dest .baj {
        font-size: 0.8125rem;
        padding-bottom: 15px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .box-dest .baj {
        font-size: 0.875rem;
        padding-bottom: 10px;
    }
}

.box-dest .precio {
    padding: 10px 0;
    font-size: 1.5625rem;
    text-align: left;
    color: #0055b8;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

@media (min-width: 768px) and (max-width: 991px) {
    .box-dest .precio {
        font-size: 1.125rem;
    }
}

.box-dest .precio .pref {
    color: #595959;
    font-size: 1.0625rem;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

@media (min-width: 768px) and (max-width: 991px) {
    .box-dest .precio .pref {
        font-size: 0.875rem;
    }
}

.box-dest .precio .iva {
    color: #595959;
    font-size: 0.8125rem;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

.box-dest .cont-btn {
    padding-bottom: 15px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

    .box-dest .cont-btn .cont-btn {
        padding: 30px 0;
        text-align: center;
    }

    .box-dest .cont-btn .btn-main {
        display: inline-block;
        font-size: 0.8125rem;
        color: #ffffff;
        padding: 12px 40px;
        background-color: #eba021;
        border-radius: 30px;
        letter-spacing: 0.2px;
        font-family: "Roboto", sans-serif;
        font-weight: 700;
    }

@media (max-width: 425px) {
    .box-dest .cont-btn .btn-main {
        font-size: 0.75rem !important;
        padding: 12px 20px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .box-dest .cont-btn .btn-main {
        font-size: 0.75rem !important;
        padding: 12px 20px;
    }
}

.box-dest .cont-btn .btn-main:hover {
    background-color: #eba021;
    transition: 0.3s all ease;
}

.box-dest .cont-btn .btn-main.more {
    color: #808285;
    border-bottom: 4px solid #808285;
    margin-left: 20px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .box-dest .cont-btn {
        font-size: 0.75rem;
        padding-top: 20px;
        padding-bottom: 0;
    }
}

.box-dest .cont-btn .btn-main {
    font-size: 0.875rem;
    line-height: 1.5;
}

@media (min-width: 768px) and (max-width: 991px) {
    .box-dest .cont-btn .btn-main {
        font-size: 0.75rem;
        padding: 8px 30px 8px 20px;
    }
}

.box-dest .cont-btn .btn-sec {
    display: inline-block;
    font-size: 0.875rem;
    color: #58595b;
    padding: 10px 45px;
    line-height: 1.5;
    background-color: #ffffff;
    border: 1px solid #bacbd8;
    margin-right: 20px;
    border-radius: 30px;
    letter-spacing: 0.2px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

@media (max-width: 425px) {
    .box-dest .cont-btn .btn-sec {
        font-size: 0.75rem !important;
        padding: 9px 20px !important;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .box-dest .cont-btn .btn-sec {
        font-size: 0.75rem !important;
        padding: 9px 20px !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .box-dest .cont-btn .btn-sec {
        font-size: 0.75rem !important;
        padding: 8px 15px !important;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .box-dest .cont-btn .btn-sec {
        padding: 10px 25px !important;
    }
}

.box-dest .cont-btn .dropdown-m {
    position: relative;
}

.box-dest .cont-btn .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

@media (max-width: 425px) {
    .box-dest .cont-btn .dropdown-content {
        right: 0;
        bottom: 45px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .box-dest .cont-btn .dropdown-content {
        right: 0;
        bottom: 45px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .box-dest .cont-btn .dropdown-content {
        right: 0;
        bottom: 45px;
    }
}

.box-dest .cont-btn .dropdown-content li {
    text-decoration: none;
    display: block;
    cursor: pointer;
    min-width: 200px;
    background: none !important;
    padding: 0 !important;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

    .box-dest .cont-btn .dropdown-content li:hover {
        transition: 0.3s all ease;
        background-color: #f9f9f9 !important;
    }

    .box-dest .cont-btn .dropdown-content li a {
        display: block;
        width: 100%;
        text-align: left;
        font-size: 0.875rem;
        color: #58595b !important;
        padding: 13px 20px;
        border-bottom: 1px solid #e4e4e4;
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }

        .box-dest .cont-btn .dropdown-content li a .precio {
            font-size: 0.875rem !important;
            padding: 0 !important;
        }

.box-dest .cont-btn .dropdown {
    position: relative;
    display: inline-block;
}

@media (max-width: 425px) {
    .box-dest .cont-btn .dropdown {
        width: 100%;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .box-dest .cont-btn .dropdown {
        width: 100%;
    }
}

.box-dest .cont-btn .dropbtn-m {
    background-color: #eba021;
    color: white;
    border: none;
    cursor: pointer;
    background-image: url("../Content/ecert/imag/v1/icon/chevron_w_d.png");
    background-repeat: no-repeat;
    background-position: 88% 53%;
    background-size: 13px;
}

.box-dest .cont-btn .dropbtn:hover, .box-dest .cont-btn .dropbtn:focus {
    background-color: #0055b8;
}

.box-dest .cont-btn .active {
    display: block;
}

.box-sec {
    padding: 20px;
    margin-bottom: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1);
}

@media (max-width: 425px) {
    .box-sec {
        font-size: 0.75rem;
        padding: 30px 20px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .box-sec {
        font-size: 0.75rem;
        padding: 30px 20px;
    }
}

.box-sec h2, .box-sec a {
    padding-top: 8px;
    font-size: 0.875rem;
    color: #373737;
    line-height: 1.3;
    letter-spacing: 0.3px;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}

.box-sec .cont-tit {
    padding: 0;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

@media (max-width: 425px) {
    .box-sec .cont-tit {
        margin-bottom: 0;
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-orient: block-axis;
        -webkit-box-orient: vertical;
        -moz-box-orient: block-axis;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .box-sec .cont-tit {
        margin-bottom: 0;
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-orient: block-axis;
        -webkit-box-orient: vertical;
        -moz-box-orient: block-axis;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}

.box-sec .cont-tit h3 {
    text-align: left;
    line-height: 1.2;
    font-size: 1.1875rem;
    color: #0055b8;
}

@media (max-width: 425px) {
    .box-sec .cont-tit h3 {
        margin-top: 15px;
        text-align: center;
        -ms-flex-order: 2;
        -webkit-order: 2;
        order: 2;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .box-sec .cont-tit h3 {
        margin-top: 15px;
        text-align: center;
        -ms-flex-order: 2;
        -webkit-order: 2;
        order: 2;
    }
}

.box-sec .img-wrap img {
    width: 41px;
    margin: 0 auto;
}

.box-sec .cont-btn {
    text-align: center;
    padding: 10px 0 0;
}

    .box-sec .cont-btn .btn-sec {
        display: inline-block;
        font-size: 0.8125rem !important;
        color: #58595b;
        padding: 10px 20px 0;
        border: 1px solid #ffffff;
        border-radius: 30px;
        letter-spacing: 0.2px;
        font-family: "Roboto", sans-serif;
        font-weight: 700;
    }

.box-sec .btn-more {
    text-align: center;
    padding: 80px 0 30px;
}

@media (max-width: 425px) {
    .box-sec .btn-more {
        padding: 20px 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .box-sec .btn-more {
        padding: 20px 0;
    }
}

.box-sec .btn-more .btn {
    display: inline-block;
    font-size: 0.875rem !important;
    color: #58595b;
    padding: 13px 50px;
    border: 1px solid #ffffff;
    border-radius: 30px;
    letter-spacing: 0.2px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

@media (max-width: 425px) {
    .box-sec .btn-more .btn {
        padding: 8px 20px;
        font-size: 0.75rem !important;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .box-sec .btn-more .btn {
        padding: 8px 20px;
        font-size: 0.75rem !important;
    }
}

.box-sec .cont-txt p {
    font-size: 0.8125rem;
    color: #808285;
    line-height: 1.5;
    letter-spacing: 0.3px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

@media (max-width: 425px) {
    .box-sec .cont-txt p {
        display: none;
    }
}

.lateral_bar {
    position: fixed;
    right: 0;
    z-index: 40;
    top: 21.8%;
    right: 9%;
}

    .lateral_bar .pref {
        background-color: #ffffff;
        color: #eba021;
        padding: 13px 20px;
        font-family: "Roboto", sans-serif;
        font-weight: 700;
    }

    .lateral_bar li {
        text-align: right;
        font-size: 0.8125rem;
        margin-bottom: 5px;
    }

        .lateral_bar li:hover a {
            background-color: #eba021 !important;
            background: #eba021 !important;
            transition: 0.3s all ease;
        }

        .lateral_bar li:first-child a {
            background-color: #1877f2;
        }

        .lateral_bar li:nth-child(2) a {
            background-color: #1da1f2;
        }

        .lateral_bar li:nth-child(3) a {
            background-color: #cc0000;
        }

        .lateral_bar li:nth-child(4) a {
            background: #b900b4;
            background: -moz-linear-gradient(45deg, #b900b4 0%, #f50000 100%);
            background: -webkit-linear-gradient(45deg, #b900b4 0%, #f50000 100%);
            background: linear-gradient(45deg, #b900b4 0%, #f50000 100%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b900b4",endColorstr="#f50000",GradientType=1);
        }

    .lateral_bar img {
        width: 25px;
        display: block;
        vertical-align: middle;
    }

    .lateral_bar a {
        padding: 5px;
        display: block;
    }

.menu_bar {
    display: none;
    position: fixed;
    bottom: 0;
    background-color: #eba021;
    width: 100%;
    text-align: center;
    z-index: 11;
    padding: 5px 10px 0;
}

    .menu_bar ul {
        max-width: 350px;
        margin: 0 auto;
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -webkit-justify-content: space-around;
        justify-content: space-around;
    }

    .menu_bar li a {
        display: block;
    }

    .menu_bar li span {
        display: block;
        color: #ffffff;
        font-size: 9px;
        padding: 12px 10px 10px;
    }

    .menu_bar li img {
        width: 25px;
        display: block;
        margin: 0 auto;
    }

.list-tabs {
    padding: 50px 0;
}

@media (max-width: 425px) {
    .list-tabs {
        padding: 30px 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .list-tabs {
        padding: 30px 0;
    }
}

.list-tabs .row {
    overflow: hidden;
    max-height: 100%;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
}

@media (max-width: 425px) {
    .list-tabs .row {
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        overflow: visible;
        max-height: 100%;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .list-tabs .row {
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        overflow: visible;
        max-height: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .list-tabs .row {
        margin-left: -20px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .list-tabs .row .col {
        border-left-width: 20px;
    }
}

@media (max-width: 425px) {
    .list-tabs .row .cont-tabs {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .list-tabs .row .cont-tabs {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .list-tabs .row .cont-tabs {
        -webkit-flex: 1 0 35%;
        flex: 1 0 35%;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .list-tabs .row .cont-tabs {
        -webkit-flex: 1 0 30%;
        flex: 1 0 30%;
    }
}

@media (max-width: 425px) {
    .list-tabs .row .cont-tabs ul {
        overflow-x: scroll;
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -ms-flex-align: stretch;
        -moz-box-align: stretch;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        align-items: stretch;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .list-tabs .row .cont-tabs ul {
        overflow-x: scroll;
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -ms-flex-align: stretch;
        -moz-box-align: stretch;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        align-items: stretch;
    }
}

.list-tabs .row .cont-tabs ul li {
    display: block;
}

@media (max-width: 425px) {
    .list-tabs .row .cont-tabs ul li {
        -webkit-flex: 1 0 220px;
        flex: 1 0 220px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .list-tabs .row .cont-tabs ul li {
        -webkit-flex: 1 0 220px;
        flex: 1 0 220px;
    }
}

.list-tabs .row .cont-tabs ul li a {
    background-color: #ffffff;
    display: block;
    padding: 20px;
    font-size: 0.875rem;
    color: #373737;
    line-height: 1.3;
    cursor: pointer;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

@media (max-width: 425px) {
    .list-tabs .row .cont-tabs ul li a {
        font-size: 0.8125rem;
        line-height: 1.3;
        letter-spacing: 0.5px;
        padding: 15px;
        height: 100%;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .list-tabs .row .cont-tabs ul li a {
        font-size: 0.8125rem;
        line-height: 1.3;
        letter-spacing: 0.5px;
        padding: 15px;
        height: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .list-tabs .row .cont-tabs ul li a {
        padding: 15px 25px;
        font-size: 0.8125rem;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .list-tabs .row .cont-tabs ul li a {
        padding: 20px 25px;
    }
}

.list-tabs .row .cont-tabs ul li a:not(.inactive) {
    background-color: #eba021;
    color: #ffffff;
}

@media (max-width: 425px) {
    .list-tabs .row .cont-tabs ul li a:not(.inactive) {
        background: none;
        border-bottom: 5px solid #0055b8;
        color: #000000;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .list-tabs .row .cont-tabs ul li a:not(.inactive) {
        background: none;
        border-bottom: 5px solid #0055b8;
        color: #000000;
    }
}

.list-tabs .row .content {
    padding: 0 15px 30px 30px;
    background-color: #ffffff;
}

@media (max-width: 425px) {
    .list-tabs .row .content {
        padding: 0 0 20px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .list-tabs .row .content {
        padding: 0 0 20px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .list-tabs .row .content {
        padding: 0px 15px 30px 30px;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .list-tabs .row .content {
        padding: 0px 15px 30px 30px;
    }
}

.list-tabs .row .content .cont-txt {
    padding-right: 20px;
    display: block;
    margin: 0 auto;
    max-height: 470px;
    overflow-y: scroll;
    scrollbar-color: #eba021 #ffffff;
    scrollbar-width: thin;
}

@media (max-width: 425px) {
    .list-tabs .row .content .cont-txt {
        padding: 0;
        padding-right: 0;
        overflow-y: visible;
        max-height: 100%;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .list-tabs .row .content .cont-txt {
        padding: 0;
        padding-right: 0;
        overflow-y: visible;
        max-height: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .list-tabs .row .content .cont-txt {
        padding: 0;
        padding-right: 0;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .list-tabs .row .content .cont-txt {
        padding: 0 30px;
    }
}

.list-tabs .row .content .cont-txt::-webkit-scrollbar {
    width: 8px;
}

.list-tabs .row .content .cont-txt::-webkit-scrollbar-track {
    background: rgba(0, 60, 158, 0.2);
    border-radius: 5px;
}

.list-tabs .row .content .cont-txt::-webkit-scrollbar-thumb {
    background: #0055b8;
    border-radius: 5px;
}

.list-tabs .row .content .cont-txt h3 {
    color: #373737;
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 90%;
    line-height: 1.3;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.list-tabs .row .content .cont-txt p {
    font-size: 0.875rem;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #373737;
}

.list-tabs .row .content .cont-txt ul {
    margin-top: 0;
    margin-left: 30px;
    font-size: 0.875rem;
    color: #000000;
    line-height: 1.4;
}

    .list-tabs .row .content .cont-txt ul li {
        list-style-type: disc;
        font-size: 0.875rem;
        color: #000000;
        margin: 0 0 10px 0;
        line-height: 1.5;
    }

        .list-tabs .row .content .cont-txt ul li:first-child a {
            margin-top: 0;
        }

.list-tabs .row .content .cont-txt ol {
    margin-top: 8px;
    margin-left: 30px;
    font-size: 0.875rem;
    color: #000000;
    line-height: 1.4;
}

    .list-tabs .row .content .cont-txt ol li {
        list-style-type: decimal;
        font-size: 0.875rem;
        color: #000000;
        margin: 0 0 10px 0;
        line-height: 1.5;
    }

.list-tabs .row .content .cont-txt .bold {
    margin-bottom: 30px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.list-tabs .row .content .tab-pane {
    display: none;
}

    .list-tabs .row .content .tab-pane.active {
        display: block;
        -webkit-animation: opacidad 1s ease;
        -moz-animation: opacidad 1s ease;
        -o-animation: opacidad 1s ease;
        animation: opacidad 1s ease;
    }

@-webkit-keyframes opacidad {
    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
    }
}

@-moz-keyframes opacidad {
    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
    }
}

@-o-keyframes opacidad {
    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
    }
}

@keyframes opacidad {
    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
    }
}

.list-tabs .cont-btn {
    padding: 30px 0;
    text-align: center;
}

.list-tabs .btn-main {
    display: inline-block;
    font-size: 0.8125rem;
    color: #ffffff;
    padding: 10px 20px;
    background-color: #0055b8;
    border-radius: 30px;
    letter-spacing: 0.2px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

@media (max-width: 425px) {
    .list-tabs .btn-main {
        font-size: 0.75rem !important;
        padding: 12px 20px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .list-tabs .btn-main {
        font-size: 0.75rem !important;
        padding: 12px 20px;
    }
}

.list-tabs .btn-main:hover {
    background-color: #eba021;
    transition: 0.3s all ease;
}

.list-tabs .btn-main.more {
    color: #808285;
    border-bottom: 4px solid #808285;
    margin-left: 20px;
}

html {
    -webkit-text-size-adjust: none;
}

body {
    background: #ffffff;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

* {
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

    *:after, *:before {
        box-sizing: border-box;
    }

a {
    text-decoration: none;
    outline: none;
    color: #000000;
}

input, select, .select, textarea {
    padding: 10px;
    border: 1px solid #bacbd8 !important;
    background: none;
}

    input:focus, select:focus, .select:focus, textarea:focus {
        transition: 0.5s all ease;
        border-color: #0055b8 !important;
        background-color: #f2f2f4;
    }

select {
    -webkit-border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border: none;
    background-image: url("../Content/ecert/imag/v1/icon/chevron_gris.png");
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) 20px;
    background-size: 15px;
}

textarea {
    resize: none;
}

button, input {
    border: none;
    background: none;
    outline: none;
}

button {
    cursor: pointer;
}

img {
    display: block;
    width: 100%;
    -ms-flex-item-align: center;
    -webkit-align-self: center;
    align-self: center;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
}

.img-wrap img {
    -ms-flex-item-align: center;
    -webkit-align-self: center;
    align-self: center;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
}

iframe {
    width: 100%;
}

.separa {
    width: 100%;
    clear: both;
    height: 0;
    display: block;
    margin: 0;
    padding: 0;
}

.hide {
    display: none !important;
}

.aleft {
    float: left;
}

.text-center {
    text-align: center !important;
}

.container {
    width: 100%;
    background-color: #FAFAFA;
    min-height:74vh;
}

.auxi {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 425px) {
    .auxi {
        padding: 0 10px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .auxi {
        padding: 0 15px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .auxi {
        padding: 0 15px;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .auxi {
        padding: 0 15px;
    }
}

@media (min-width: 1400px) {
    .auxi {
        max-width: 1350px;
    }
}

.responsive {
    display: none;
}

.access1 {
    height: 0;
    width: 100%;
    color: rgba(255, 255, 255, 0);
    overflow: hidden;
}

@media (max-width: 425px) {
    .desktop {
        display: none !important;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .desktop {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .desktop {
        display: block;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .desktop {
        display: block;
    }
}

@media (min-width: 1278px) and (max-width: 1399px) {
    .desktop {
        display: block;
    }
}

@media (min-width: 1400px) {
    .desktop {
        display: block;
    }
}

@media (max-width: 425px) {
    .mobile {
        display: block;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .mobile {
        display: block;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .mobile {
        display: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .mobile {
        display: none !important;
    }
}

@media (min-width: 1278px) and (max-width: 1399px) {
    .mobile {
        display: none !important;
    }
}

@media (min-width: 1400px) {
    .mobile {
        display: none !important;
    }
}

.bg-azul {
    background-color: #0055b8;
}

.bg-naranjo {
    background-color: #eba021;
}

.bg-gris {
    background-color: #bacbd8;
}

.bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.art-row article {
    margin-bottom: 0;
}

body.contraste *, body.contraste article.sitios, body.contraste section, body.contraste .form-group .form-control, body.contraste, body.contraste #advSearch .form-group .form-control,
body.contraste .destacado .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #000000 !important;
    color: #ffffff !important;
}

    body.contraste .header .nav .nav_cont .cont_social img, body.contraste .menu_responsive .menu-btn:checked ~ .menu-icon .navicon,
    body.contraste.home .header .auxi, body.contraste.home .cont-access, body.contraste.home .menu-btn,
    body.contraste.home .principal .main-content .logo img,
    body.contraste .principal .main-content, body.contraste .auxi, body.contraste .destacado .swiper-pagination-bullet {
        background: none !important;
    }

    body.contraste .header .nav .nav_cont .search-cont .search-wrapper .close:before,
    body.contraste .menu_responsive .menu-icon .navicon, body.contraste .menu_responsive .menu-icon .navicon:before,
    body.contraste .menu_responsive .menu-icon .navicon:after, body.contraste .swiper-pagination-bullet-active, body.contraste .faq .row .cont-tabs ul li a:not(.inactive),
    body.contraste .swiper-button-prev, body.contraste .swiper-button-next, body.contraste #filtro-links .nav-tabs li a:not(.inactive), body.contraste.pregado-d #becas .filter .nav-tabs a:not(.inactive),
    body.contraste .header .sec-navbar .cont-access li {
        background-color: #ffffff !important;
    }

    body.contraste a, body.contraste p, body.contraste h1, body.contraste h2, body.contraste h3, body.contraste h4, body.contraste input::placeholder {
        color: #ffffff !important;
    }

    body.contraste .header .sec-navbar .cont-links .cont-search input, body.contraste .lateral_bar, body.contraste .bloq-2 .container .cont-txt,
    body.contraste .art-3 .swiper-pagination .swiper-pagination-bullet, body.contraste .links-interes article a, body.contraste .formulario .auxi .cont-form form .form-group input,
    body.contraste .formulario .auxi .cont-form form .form-group select, body.contraste .preguntas .cont-select .auxi .form-group select,
    body.contraste.calendario .actividades .results .swiper-pagination .swiper-pagination-bullet, body.contraste .cont-select .auxi form select {
        border: 1px solid #ffffff !important;
    }

    body.contraste .destacado .swiper-pagination .swiper-pagination-bullet {
        border: 1px solid #000000 !important;
    }

    body.contraste .header .sec-navbar .cont-links .cont-search button, body.contraste .bloq-2 .swiper-pagination, body.contraste .menu-responsive .menu-btn:checked ~ .menu-icon .navicon,
    body.contraste .breadcrumbs, body.contraste .destacado .box-full.swiper-slide .cont-txt, body.contraste .destacado .swiper-pagination, body.contraste.calendario .dest-calendario .box-full .cont-tag,
    body.contraste .header .sec-navbar .cont-access li a {
        background-color: initial !important;
    }

    body.contraste.inter .item.destacado .cont-txt {
        border: none !important;
    }

    body.contraste .faq .row .cont-tabs ul li a:not(.inactive), body.contraste #filtro-links .nav-tabs li a:not(.inactive), body.contraste.pregado-d #becas .filter .nav-tabs a:not(.inactive) {
        color: #000000 !important;
    }

    body.contraste .scroll-downs .mousey .scroller {
        background-color: rgba(255, 255, 255, 0.6) !important;
    }

    body.contraste .menu-responsive, body.contraste .menu-sec, body.contraste.pregado-d .filt-table .content .cont-table .table-pond .thead,
    body.contraste .header.sticky, body.contraste.calendario .dest-calendario .box-full > .auxi, body.contraste.calendario .actividades .results .swiper-pagination .swiper-pagination-bullet-active {
        border-bottom: 1px solid #ffffff;
    }

    body.contraste .footer, body.contraste .menu_bar {
        border-top: 1px solid #ffffff;
    }

    body.contraste.inter .item:hover .cont-btn .tag {
        color: #808285 !important;
    }

    body.contraste .header .nav .nav_cont .menu_nav .desp.sec > a {
        background-image: url("../Content/ecert/imag/v1/icon/arrow_w_up.png") !important;
    }

    body.contraste .header .nav .nav_cont .menu_nav .desp.sec:hover > a, body.contraste .menu_mov .menu-programa:after {
        background-image: url("../Content/ecert/imag/v1/icon/arrow_w_down.png") !important;
    }

.wp-pagenavi {
    font-size: 0.9375rem;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    margin: 17px auto 0;
    padding: 10px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

    .wp-pagenavi a {
        padding: 8px 4px;
        margin-right: 17px;
        display: block;
        color: #595959;
    }

        .wp-pagenavi a:hover {
            text-decoration: underline;
        }

        .wp-pagenavi a.page {
            margin-right: 17px;
            border-bottom: 6px solid #808285;
        }

    .wp-pagenavi span {
        display: block;
        padding: 8px;
        margin-right: 15px;
    }

        .wp-pagenavi span.pag_actual, .wp-pagenavi span.actual {
            color: #0055b8;
            font-family: "Roboto", sans-serif;
            font-weight: 700;
            border-bottom: 3px solid #0055b8;
        }

.menujq > ul > li > ul {
    display: none;
}

.breadcrumbs {
    padding: 15px 0;
    position: relative;
    z-index: 2;
}

    .breadcrumbs .breadcrumb {
        color: #595959;
        font-size: 0.8125rem;
        font-family: "Roboto", sans-serif;
        font-weight: 400;
    }

        .breadcrumbs .breadcrumb:after {
            content: "|";
            color: #595959;
            position: relative;
            display: inline-block;
            padding: 0 5px;
        }

        .breadcrumbs .breadcrumb:last-child:after {
            content: none;
        }

        .breadcrumbs .breadcrumb a {
            color: #595959;
        }

            .breadcrumbs .breadcrumb a:hover {
                color: #0055b8;
            }

.main {
    background-color: #FAFAFA;
}

@media (max-width: 425px) {
    .main {
        margin-top: 40px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .main {
        margin-top: 40px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .main {
        margin-top: 40px;
    }
}

.inv {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.desplegado + .btn-more .show {
    display: none !important;
}

.desplegado + .btn-more .hide {
    display: inline-block !important;
}

.wrap-car {
    position: relative;
}

    .wrap-car .swiper-5 {
        margin: 0 50px;
        position: initial;
    }

@media (max-width: 425px) {
    .wrap-car .swiper-5 {
        margin: 0 20px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .wrap-car .swiper-5 {
        margin: 0 20px;
    }
}

.wrap-car .swiper-5 .swiper-slide {
    width: 220px;
    height: inherit !important;
}

.wrap-car .swiper-5 .swiper-button-prev, .wrap-car .swiper-5 .swiper-button-next {
    top: calc(50% - 35px);
}

.swiper-container {
    padding: 24px 0;
}

@media (max-width: 425px) {
    .swiper-container {
        padding: 0 !important;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .swiper-container {
        padding: 0 !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .swiper-container {
        padding: 0 !important;
    }
}

.swiper-wrapper {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -ms-flex-align: stretch;
    -moz-box-align: stretch;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
}

.swiper-slide {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: stretch;
    -moz-box-align: stretch;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    height: auto !important;
}

    .swiper-slide .cont-txt {
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -webkit-box-orient: block-axis;
        -webkit-box-orient: vertical;
        -moz-box-orient: block-axis;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-flex: 1 1 0%;
        flex: 1 1 0%;
    }

.swiper-button-next, .swiper-button-prev {
    outline: none;
}

.form-group.cedula.cedula input {
    -webkit-flex: 0 1 61%;
    flex: 0 1 61%;
}

.form-group.cedula.cedula .input-cont .flex-cont {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

@media (max-width: 425px) {
    .form-group.cedula.cedula .input-cont .flex-cont {
        -webkit-box-orient: block-axis;
        -webkit-box-orient: vertical;
        -moz-box-orient: block-axis;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .form-group.cedula.cedula .input-cont .flex-cont {
        -webkit-box-orient: block-axis;
        -webkit-box-orient: vertical;
        -moz-box-orient: block-axis;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}

.form-group.cedula.cedula .input-cont input {
    -webkit-flex: 0 1 80%;
    flex: 0 1 80%;
}

.form-group.cedula.cedula .input-cont .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 290px;
    right: 0;
    overflow: auto;
    margin-top: 10px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

@media (max-width: 425px) {
    .form-group.cedula.cedula .input-cont .dropdown-content {
        right: -85%;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .form-group.cedula.cedula .input-cont .dropdown-content {
        right: -85%;
    }
}

.form-group.cedula.cedula .input-cont .dropdown-content .cont-tit {
    margin-bottom: 0;
}

    .form-group.cedula.cedula .input-cont .dropdown-content .cont-tit h4 {
        font-size: 0.875rem;
        color: #58595b;
    }

.form-group.cedula.cedula .input-cont .dropdown-content .img-wrap {
    padding: 0 20px 20px;
}

    .form-group.cedula.cedula .input-cont .dropdown-content .img-wrap img {
        width: 226px;
        margin: 0 auto;
    }

.form-group.cedula.cedula .input-cont .dropdown-m {
    padding-left: 15px;
    position: relative;
    display: inline-block;
}

.form-group.cedula.cedula .input-cont .dropbtn-m {
    background: none;
    font-size: 0.875rem;
    color: #0055b8;
    text-decoration: underline;
    border: none;
    cursor: pointer;
    margin-right: 0;
}

    .form-group.cedula.cedula .input-cont .dropbtn-m:hover, .form-group.cedula.cedula .input-cont .dropbtn-m:focus {
        color: #eba021;
        transition: 0.3s all ease;
    }

.form-group.cedula.cedula .input-cont .active {
    display: block;
}

.envio .header, .pago .header, .results .header, .taxport .header {
    -webkit-box-shadow: 0px 3px 5px -3px rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 0px 3px 5px -3px rgba(0, 0, 0, 0.14);
    box-shadow: 0px 3px 5px -3px rgba(0, 0, 0, 0.14);
}

.header {
    padding: 13px 0;
    background-color: rgba(255, 255, 255, 0.95);
    transition: 0.2s all ease;
    position: relative;
    z-index: 1000;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
    .header .desktop {
        display: none !important;
    }
}

.header.sticky {
    position: fixed;
    background-color: #ffffff;
    transition: 0.2s all ease;
    -webkit-box-shadow: 0px 3px 5px -3px rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 0px 3px 5px -3px rgba(0, 0, 0, 0.14);
    box-shadow: 0px 3px 5px -3px rgba(0, 0, 0, 0.14);
}

.header .main-navbar {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

    .header .main-navbar .cont-logo {
        -webkit-flex: 0 1 15.6%;
        flex: 0 1 15.6%;
    }

@media (min-width: 992px) and (max-width: 1277px) {
    .header .main-navbar .cont-logo {
        margin-right: 40px;
    }
}

.header .main-navbar .navbar {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: end;
    -moz-box-align: end;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

    .header .main-navbar .navbar .cont-btn {
        padding-top: 0 !important;
        padding-bottom: 12px !important;
    }

    .header .main-navbar .navbar .cont-btn {
        padding: 30px 0;
        text-align: center;
    }

    .header .main-navbar .navbar .btn-main {
        display: inline-block;
        font-size: 0.8125rem;
        color: #ffffff;
        padding: 9px 18px;
        background-color: #0055b8;
        border-radius: 30px;
        letter-spacing: 0.2px;
        font-family: "Roboto", sans-serif;
        font-weight: 700;
    }

@media (max-width: 425px) {
    .header .main-navbar .navbar .btn-main {
        font-size: 0.75rem !important;
        padding: 12px 20px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .header .main-navbar .navbar .btn-main {
        font-size: 0.75rem !important;
        padding: 12px 20px;
    }
}

.header .main-navbar .navbar .btn-main:hover {
    background-color: #eba021;
    transition: 0.3s all ease;
}

.header .main-navbar .navbar .btn-main.more {
    color: #808285;
    border-bottom: 4px solid #808285;
    margin-left: 20px;
}

.header .main-navbar .navbar .btn-main {
    font-size: 0.75rem;
}

.header .main-navbar .navbar .cont-navbar {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex: 0 1 80%;
    flex: 0 1 80%;
}

    .header .main-navbar .navbar .cont-navbar .cont-links {
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -ms-flex-align: center;
        -moz-box-align: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-flex: 1 0 50%;
        flex: 1 0 50%;
        padding-right: 50px;
    }

@media (min-width: 992px) and (max-width: 1277px) {
    .header .main-navbar .navbar .cont-navbar .cont-links {
        padding-right: 35px;
    }
}

.header .main-navbar .navbar .cont-navbar .cont-links li {
    position: relative;
}

    .header .main-navbar .navbar .cont-navbar .cont-links li:hover .sub-menu {
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
    }

    .header .main-navbar .navbar .cont-navbar .cont-links li.desp > a {
        padding-right: 20px;
        background-image: url("../Content/ecert/imag/v1/icon/menu_arrow.png");
        background-repeat: no-repeat;
        background-position: 100%;
        background-size: 11px;
    }

    .header .main-navbar .navbar .cont-navbar .cont-links li:last-child a {
        margin-right: 0;
    }

    .header .main-navbar .navbar .cont-navbar .cont-links li a {
        display: block;
        color: #58595b;
        font-size: 0.8125rem;
        text-transform: uppercase;
        letter-spacing: 0.4px;
        margin-right: 22px;
        font-family: "Roboto", sans-serif;
        font-weight: 400;
    }

@media (min-width: 992px) and (max-width: 1277px) {
    .header .main-navbar .navbar .cont-navbar .cont-links li a {
        font-size: 0.75rem;
    }
}

.header .main-navbar .navbar .cont-navbar .cont-links li a.selected {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #0055b8;
}

.header .main-navbar .navbar .cont-navbar .cont-links li:nth-last-child(-n+2) .sub-menu {
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.header .main-navbar .navbar .cont-navbar .cont-links li .sub-menu {
    display: none;
    position: absolute;
    z-index: 30;
    min-width: 200px;
    max-width: 350px;
    width: 100%;
    padding-top: 20px;
}

    .header .main-navbar .navbar .cont-navbar .cont-links li .sub-menu ul {
        padding: 10px;
        background-color: #0055b8;
        -webkit-flex: 1 0 240px;
        flex: 1 0 240px;
    }

        .header .main-navbar .navbar .cont-navbar .cont-links li .sub-menu ul li a {
            padding: 12px 15px;
            color: #ffffff;
            text-align: left;
            border: none;
            font-size: 0.75rem;
            line-height: 1.2;
            display: block;
            text-transform: none;
            margin-right: 0;
            font-family: "Roboto", sans-serif;
            font-weight: 600;
        }

            .header .main-navbar .navbar .cont-navbar .cont-links li .sub-menu ul li a:hover {
                background-color: #ffffff;
                transition: 0.3s all ease;
                color: #0055b8;
            }

.header .main-navbar .navbar .cont-navbar .links-sec {
    padding-right: 30px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

@media (min-width: 992px) and (max-width: 1277px) {
    .header .main-navbar .navbar .cont-navbar .links-sec {
        padding-right: 20px;
    }
}

.header .main-navbar .navbar .cont-navbar .links-sec li:last-child a {
    padding-right: 0;
}

.header .main-navbar .navbar .cont-navbar .links-sec li a {
    display: block;
    color: #939598;
    font-size: 0.8125rem;
    letter-spacing: 0.2px;
    padding-right: 20px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

@media (min-width: 992px) and (max-width: 1277px) {
    .header .main-navbar .navbar .cont-navbar .links-sec li a {
        padding-right: 10px;
    }
}

.header .main-navbar .navbar .cont-navbar .cont-access {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
}

    .header .main-navbar .navbar .cont-navbar .cont-access li {
        margin-right: 5px;
        width: 23px;
        height: 23px;
    }

        .header .main-navbar .navbar .cont-navbar .cont-access li:first-child a {
            background-image: url("../Content/ecert/imag/v1/icon/ic_text_l.png");
        }

        .header .main-navbar .navbar .cont-navbar .cont-access li:nth-child(2) a {
            background-image: url("../Content/ecert/imag/v1/icon/ic_text_s.png");
        }

        .header .main-navbar .navbar .cont-navbar .cont-access li:nth-child(3) a {
            background-image: url("../Content/ecert/imag/v1/icon/ic_contrast.png");
            background-size: 18px;
        }

        .header .main-navbar .navbar .cont-navbar .cont-access li:hover a {
            opacity: 0.8;
        }

        .header .main-navbar .navbar .cont-navbar .cont-access li a {
            display: block;
            transition: 0.2s all ease;
            background-repeat: no-repeat;
            background-position: center;
            background-size: 20px;
            width: 20px;
            height: 20px;
        }

.header .main-navbar .navbar .cont-navbar .search-cont {
    display: inline-block;
    position: relative;
    width: 25px;
    height: 25px;
    margin-left: 10px;
}

    .header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper {
        position: absolute;
        transform: translate(-7%, -50%);
        top: 50%;
        right: 0;
    }

        .header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper.active .close {
            right: -23px;
            opacity: 1;
            transform: rotate(45deg);
            transition: all 0.6s cubic-bezier(0, 0.105, 0.035, 1.57);
            transition-delay: 0.5s;
        }

        .header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper.active .input-holder {
            width: 410px;
            background-color: #ffffff;
            border-radius: 20px;
            transition: all 0.5s cubic-bezier(0, 0.105, 0.035, 1.57);
        }

            .header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper.active .input-holder .search-input {
                opacity: 1;
                padding: 5px 15px;
                outline: none;
                color: #58595b;
            }

            .header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper.active .input-holder .search-icon {
                width: 30px;
                height: 30px;
                border-radius: 30px;
                border: none;
            }

                .header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper.active .input-holder .search-icon span::before {
                    background-color: #0055b8;
                }

                .header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper.active .input-holder .search-icon span::after {
                    border-color: #0055b8;
                }

                .header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper.active .input-holder .search-icon.btn {
                    display: block;
                }

                .header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper.active .input-holder .search-icon.ic {
                    display: none;
                }

        .header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper .close {
            position: absolute;
            z-index: 0;
            opacity: 0;
            top: 7px;
            right: 10px;
            width: 16px;
            height: 16px;
            cursor: pointer;
            transform: rotate(-180deg);
            transition: all 0.3s cubic-bezier(0.285, -0.45, 0.935, 0.11);
            transition-delay: 0.2s;
        }

            .header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper .close::before {
                width: 2px;
                height: 16px;
                left: 7px;
                top: 0;
            }

            .header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper .close::after {
                width: 16px;
                height: 2px;
                left: 0px;
                top: 7px;
            }

        .header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper .input-holder {
            height: 32px;
            width: 32px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0);
            position: relative;
            transition: all 0.3s ease-in-out;
            z-index: 2;
        }

            .header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper .input-holder .search-input {
                width: 100%;
                opacity: 0;
                position: absolute;
                background: transparent;
                border: none;
                outline: none;
                font-size: 13px;
                font-weight: 400;
                line-height: 20px;
                border-radius: 20px;
                color: #ffffff;
                transition: all 0.3s cubic-bezier(0, 0.105, 0.035, 1.57);
                transition-delay: 0.3s;
            }

            .header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper .input-holder .search-icon {
                width: 30px;
                height: 30px;
                top: 2px;
                right: 3px;
                border: none;
                border-radius: 6px;
                padding: 0px;
                outline: none;
                position: relative;
                z-index: 2;
                float: right;
                cursor: pointer;
                transition: all 0.3s ease-in-out;
            }

                .header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper .input-holder .search-icon span {
                    width: 22px;
                    height: 22px;
                    display: inline-block;
                    vertical-align: middle;
                    position: relative;
                    transform: rotate(-45deg);
                    transition: all 0.4s cubic-bezier(0.65, -0.6, 0.24, 1.65);
                }

                    .header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper .input-holder .search-icon span::before {
                        width: 2px;
                        height: 6px;
                        left: 9px;
                        top: 13px;
                        border-radius: 2px;
                        background: #76777a;
                    }

                    .header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper .input-holder .search-icon span::after {
                        width: 14px;
                        height: 14px;
                        left: 3px;
                        top: 0px;
                        border-radius: 16px;
                        border: 2px solid #76777a;
                    }

                    .header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper .input-holder .search-icon span:before, .header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper .input-holder .search-icon span:after {
                        position: absolute;
                        content: "";
                    }

        .header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper .close:before, .header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper .close:after {
            position: absolute;
            content: "";
            background: #76777a;
        }

    .header .main-navbar .navbar .cont-navbar .search-cont .search-icon.btn {
        display: none;
    }

    .header .main-navbar .navbar .cont-navbar .search-cont .search-icon.ic {
        text-align: center;
    }

        .header .main-navbar .navbar .cont-navbar .search-cont .search-icon.ic span {
            top: 4px;
        }

.header .main-navbar .navbar .mail {
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    width: 20px;
    height: 20px;
    background-image: url("../Content/ecert/imag/v1/icon/ic_mail.png");
}

    .header .main-navbar .navbar .mail:hover {
        background-image: url("../Content/ecert/imag/v1/icon/ic_mail_b.png");
    }

.sticky .menu-responsive {
    -webkit-box-shadow: 0px 3px 5px -3px rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 0px 3px 5px -3px rgba(0, 0, 0, 0.14);
    box-shadow: 0px 3px 5px -3px rgba(0, 0, 0, 0.14);
}

.menu-responsive {
    position: fixed;
    top: 0;
    padding: 7px 20px;
    overflow: hidden;
    background-color: #018ccf;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    width: 100%;
    z-index: 100;
}

@media (min-width: 768px) and (max-width: 991px) {
    .menu-responsive {
        display: block !important;
    }
}

.menu-responsive .cont-logo {
    display: inline-block;
}

    .menu-responsive .cont-logo img {
        width: 130px;
    }

.menu-responsive .cont-search {
    margin-top: 20px;
    position: relative;
    width: 100%;
}

    .menu-responsive .cont-search input {
        width: 100%;
        padding: 12px 15px 12px 60px;
        position: relative;
        font-size: 0.8125rem;
        background-color: #ffffff;
    }

    .menu-responsive .cont-search button {
        position: absolute;
        top: 5px;
        left: 9px;
        padding: 8px;
        padding-left: 12px;
    }

        .menu-responsive .cont-search button img {
            width: 19px;
        }

.menu-responsive .menu {
    clear: both;
    padding: 0 15px;
    max-height: 0;
    width: 100%;
    transition: max-height 0.3s ease-in-out;
    margin: 0;
    list-style: none;
    overflow: hidden;
}

    .menu-responsive .menu ul {
        padding: 25px 0;
        max-width: 300px;
        margin: 0 auto;
    }

@media (min-width: 768px) and (max-width: 991px) {
    .menu-responsive .menu ul {
        margin: 0;
    }
}

.menu-responsive .menu li {
    position: relative;
    float: none;
}

    .menu-responsive .menu li a {
        display: block;
        color: #ffffff;
        padding: 0;
        text-decoration: none;
        padding: 10px;
        font-size: 0.8125rem;
        font-family: "Roboto", sans-serif;
        font-weight: 600;
    }

.menu-responsive .menu .menu-sec-m {
    padding-top: 0;
}

    .menu-responsive .menu .menu-sec-m a {
        color: #0055b8;
    }

.menu-responsive .menu .btn-renovar {
    font-size: 0.75rem;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 6px 20px;
    border-radius: 16px;
}

.menu-responsive .cont-redes {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
}

    .menu-responsive .cont-redes img {
        width: 20px;
    }

.menu-responsive .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 25px 0;
    position: relative;
    user-select: none;
}

    .menu-responsive .menu-icon .navicon {
        background: #ffffff;
        display: block;
        height: 2px;
        position: relative;
        transition: background 0.2s ease-out;
        width: 28px;
    }

        .menu-responsive .menu-icon .navicon:before, .menu-responsive .menu-icon .navicon:after {
            background: #ffffff;
            content: "";
            display: block;
            height: 100%;
            position: absolute;
            transition: all 0.2s ease-out;
            width: 100%;
        }

        .menu-responsive .menu-icon .navicon:before {
            top: 7px;
        }

        .menu-responsive .menu-icon .navicon:after {
            top: -7px;
        }

.menu-responsive .menu-btn {
    display: none;
}

    .menu-responsive .menu-btn:checked ~ .menu {
        max-height: 90vh;
        height: 90vh;
    }

    .menu-responsive .menu-btn:checked ~ .menu-icon .navicon {
        background: transparent;
    }

        .menu-responsive .menu-btn:checked ~ .menu-icon .navicon:before {
            transform: rotate(-45deg);
            top: 0;
        }

        .menu-responsive .menu-btn:checked ~ .menu-icon .navicon:after {
            transform: rotate(45deg);
            top: 0;
        }

        .menu-responsive .menu-btn:checked ~ .menu-icon .navicon:not(.steps) .navicon:before {
            top: 0;
        }

        .menu-responsive .menu-btn:checked ~ .menu-icon .navicon:not(.steps) .navicon:after {
            top: 0;
        }

.menu-responsive .accordionItemContent {
    border-bottom: 1px solid #f2f2f4;
}

    .menu-responsive .accordionItemContent li a {
        padding: 10px 20px;
        text-transform: none;
    }

.menu-responsive .accordionItemHeading {
    width: auto;
    position: relative;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

    .menu-responsive .accordionItemHeading figure {
        position: absolute;
        right: 10px;
        top: calc(50% - 5px);
    }

    .menu-responsive .accordionItemHeading img {
        width: 13px;
        transition: 0.2s all ease;
    }

    .menu-responsive .accordionItemHeading .hide {
        display: none !important;
    }

    .menu-responsive .accordionItemHeading .show {
        display: block !important;
    }

.menu-responsive .open .main-link {
    background-color: #0055b8;
    color: #ffffff;
    transition: 0.2s all ease;
}

.menu-responsive .open .accordionItemHeading img {
    transform: rotate(180deg);
}

.menu-responsive .open .accordionItemHeading .hide {
    display: block !important;
}

.menu-responsive .open .accordionItemHeading .show {
    display: none !important;
}

.menu-responsive .open .accordionItemContent {
    width: 100%;
    display: block;
    -webkit-transform: scaleY(1);
    -o-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: top;
    -o-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: -webkit-transform 0.4s ease-out;
    -o-transition: -o-transform 0.4s ease;
    -ms-transition: -ms-transform 0.4s ease;
    transition: transform 0.4s ease;
    box-sizing: border-box;
}

.menu-responsive .close .accordionItemContent {
    height: 0px;
    transition: height 1s ease-out;
    -webkit-transform: scaleY(0);
    -o-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    display: block;
    padding: 0;
}

.footer {
    background-color: red;
    padding: 30px 100px 15px 100px;
}

@media (max-width: 425px) {
    .footer {
        padding: 20px 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .footer {
        padding: 20px 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer {
        padding: 20px 20px 30px;
    }
}

@media (max-width: 425px) {
    .footer .auxi {
        padding: 0 18px 20px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .footer .auxi {
        padding: 0 18px 20px;
    }
}

.footer .auxi > .row {
    overflow: hidden;
    margin-bottom: 30px;
}

@media (max-width: 425px) {
    .footer .cont-logos {
        margin-bottom: 30px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .footer .cont-logos {
        margin-bottom: 30px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer .cont-logos {
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .footer .cont-logos {
        width: 25%;
    }
}

.footer .cont-logos a {
    display: block;
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer .cont-logos a {
        padding: 10px;
    }
}

.footer .cont-logos .logo {
    width: 250px;
}

@media (max-width: 425px) {
    .footer .cont-logos .logo {
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        padding-bottom: 20px;
        width: 100%;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .footer .cont-logos .logo {
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        padding-bottom: 20px;
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer .cont-logos .logo {
        padding-bottom: 50px;
    }
}

@media (max-width: 425px) {
    .footer .cont-logos .logo img {
        width: 182px;
        margin: 0 auto;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .footer .cont-logos .logo img {
        width: 182px;
        margin: 0 auto;
    }
}

@media (min-width: 992px) and (max-width: 1040px) {
    .footer .cont-logos .logo img {
        width: 200px;
    }
}

.footer .cont-logos img {
    width: 100%;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .footer .cont-links {
        width: 75%;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .footer .cont-links {
        width: 75%;
    }
}

.footer .cont-links .row {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
}

@media (max-width: 425px) {
    .footer .cont-links .row {
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        max-width: 270px;
        margin: 0 auto;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .footer .cont-links .row {
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        max-width: 270px;
        margin: 0 auto;
    }
}

.footer .cont-links .row .lg-4:first-child {
    border-left-width: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer .cont-links .row .lg-4:first-child {
        max-width: 40%;
    }
}

@media (min-width: 992px) and (max-width: 1040px) {
    .footer .cont-links .row .lg-4:first-child {
        width: 38%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer .cont-links .row .lg-4:nth-child(2) {
        max-width: 30%;
    }
}

.footer .cont-links .row .lg-4:last-child {
    -ms-flex-item-align: end;
    -webkit-align-self: flex-end;
    align-self: flex-end;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer .cont-links .row .lg-4:last-child {
        max-width: 30%;
    }
}

@media (min-width: 992px) and (max-width: 1040px) {
    .footer .cont-links .row .lg-4:last-child {
        max-width: 30%;
    }
}

.footer .cont-links .row .lg-4:last-child .contact {
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

@media (max-width: 425px) {
    .footer .cont-links .row .lg-4:last-child .contact {
        -webkit-box-pack: start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        padding-bottom: 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .footer .cont-links .row .lg-4:last-child .contact {
        -webkit-box-pack: start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        padding-bottom: 0;
    }
}

.footer .cont-links .row .lg-4:last-child .contact img {
    top: 0;
}

.footer .cont-links .row .lg-4:last-child .contact .contact-txt {
    font-size: 1.25rem;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

@media (max-width: 425px) {
    .footer .cont-links .row .lg-4:last-child .contact .contact-txt {
        font-size: 1.125rem;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .footer .cont-links .row .lg-4:last-child .contact .contact-txt {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) and (max-width: 1040px) {
    .footer .cont-links .row .lg-4:last-child .contact .contact-txt a {
        font-size: 1.125rem;
    }
}

.footer .contact {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -ms-flex-align: end;
    -moz-box-align: end;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

@media (max-width: 425px) {
    .footer .contact {
        padding-bottom: 30px;
        -webkit-box-pack: start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .footer .contact {
        padding-bottom: 30px;
        -webkit-box-pack: start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }
}

.footer .contact p, .footer .contact a {
    color: #ffffff;
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer .contact p, .footer .contact a {
        font-size: 0.75rem;
    }
}

@media (min-width: 992px) and (max-width: 1040px) {
    .footer .contact p, .footer .contact a {
        font-size: 0.75rem;
    }
}

.footer .contact p.pref, .footer .contact a.pref {
    font-size: 0.875rem;
    padding-bottom: 10px;
    letter-spacing: 0.3px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

@media (max-width: 425px) {
    .footer .contact p.pref, .footer .contact a.pref {
        font-size: 0.75rem;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .footer .contact p.pref, .footer .contact a.pref {
        font-size: 0.75rem;
    }
}

.footer .contact p.phone, .footer .contact a.phone {
    font-size: 1.5rem;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}

@media (max-width: 425px) {
    .footer .contact p.phone, .footer .contact a.phone {
        font-size: 1.125rem;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .footer .contact p.phone, .footer .contact a.phone {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer .contact p.phone, .footer .contact a.phone {
        font-size: 1.125rem;
    }
}

@media (min-width: 992px) and (max-width: 1040px) {
    .footer .contact p.phone, .footer .contact a.phone {
        font-size: 1.125rem;
    }
}

.footer .contact img {
    top: 4px;
    position: relative;
    width: 33px;
    margin-right: 13px;
}

.footer .sub-footer {
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

    .footer .sub-footer .cont-social {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -ms-flex-align: center;
        -moz-box-align: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
    }

@media (max-width: 425px) {
    .footer .sub-footer .cont-social {
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .footer .sub-footer .cont-social {
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer .sub-footer .cont-social {
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
}

.footer .sub-footer .cont-social p {
    padding-right: 30px;
    font-size: 1.125rem;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

@media (max-width: 425px) {
    .footer .sub-footer .cont-social p {
        display: none;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .footer .sub-footer .cont-social p {
        display: none;
    }
}

.footer .sub-footer .cont-social li {
    padding-bottom: 0;
    padding-left: 30px;
}

@media (max-width: 425px) {
    .footer .sub-footer .cont-social li {
        padding: 0 15px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .footer .sub-footer .cont-social li {
        padding: 0 15px;
    }
}

.footer .sub-footer .cont-social li:first-child {
    padding-left: 0;
}

@media (max-width: 425px) {
    .footer .sub-footer .cont-social li:first-child {
        display: none;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .footer .sub-footer .cont-social li:first-child {
        display: none;
    }
}

.footer .sub-footer .cont-social li a {
    display: block;
}

    .footer .sub-footer .cont-social li a:hover img {
        opacity: 0.7;
        transition: 0.2s all ease;
    }

    .footer .sub-footer .cont-social li a img {
        width: 39px;
    }

@media (max-width: 425px) {
    .footer .sub-footer .cont-social li a img {
        width: 30px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .footer .sub-footer .cont-social li a img {
        width: 30px;
    }
}

.footer .sub-footer .direccion {
    padding-left: 20px;
    color: #ffffff;
}

.footer .cont-legal {
    padding: 30px 0 0;
    text-align: center;
}

    .footer .cont-legal a {
        font-size: 17px;
        padding-right: 8px;
        color: #ffffff;
    }

@media (max-width: 425px) {
    .footer .cont-legal a {
        font-size: 0.8125rem;
        display: block;
        padding-bottom: 7px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .footer .cont-legal a {
        font-size: 0.8125rem;
        display: block;
        padding-bottom: 7px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer .cont-legal a {
        font-size: 0.875rem;
    }
}

.footer .cont-legal a:after {
    content: "-";
    padding-left: 8px;
    position: relative;
    display: inline-block;
}

@media (max-width: 425px) {
    .footer .cont-legal a:after {
        content: none;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .footer .cont-legal a:after {
        content: none;
    }
}

.footer .cont-legal a:last-child {
    padding-right: 0;
}

    .footer .cont-legal a:last-child:after {
        content: none;
    }

.home .header {
    top: 0;
}

.home .main {
    padding-top: 0;
}

.home .dest-main {
    position: relative;
}

    .home .dest-main.box-min .auxi {
        padding-top: 15px !important;
    }

@media (min-width: 768px) and (max-width: 991px) {
    .home .dest-main.box-min .swiper-slide .img-wrap {
        overflow: hidden;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .home .dest-main.box-min .swiper-slide .img-wrap {
        overflow: hidden;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .home .dest-main.box-min .swiper-slide .img-wrap img {
        height: 310px;
        width: auto;
        z-index: 0;
        left: -50%;
        position: relative;
    }
}

@media (min-width: 900px) and (max-width: 991px) {
    .home .dest-main.box-min .swiper-slide .img-wrap img {
        left: -30%;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .home .dest-main.box-min .swiper-slide .img-wrap img {
        height: 310px;
        width: auto;
        z-index: 0;
        left: -20%;
        position: relative;
    }
}

@media (min-width: 1200px) and (max-width: 1278px) {
    .home .dest-main.box-min .swiper-slide .img-wrap img {
        left: 0;
    }
}

.home .dest-main.box-min .swiper-slide .img-wrap:before {
    z-index: 2;
}

.home .dest-main.box-min .swiper-slide .card-pack {
    max-width: 39%;
    width: 100%;
}

@media (max-width: 425px) {
    .home .dest-main.box-min .swiper-slide .card-pack {
        max-width: 100%;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home .dest-main.box-min .swiper-slide .card-pack {
        max-width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .home .dest-main.box-min .swiper-slide .card-pack {
        max-width: 60%;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .home .dest-main.box-min .swiper-slide .card-pack {
        max-width: 50%;
    }
}

@media (min-width: 1200px) and (max-width: 1278px) {
    .home .dest-main.box-min .swiper-slide .card-pack {
        max-width: 45%;
    }
}

.home .dest-main.box-min .swiper-slide .card-pack h1, .home .dest-main.box-min .swiper-slide .card-pack h2 {
    font-size: 24px;
    padding-bottom: 10px;
}

    .home .dest-main.box-min .swiper-slide .card-pack h1:after, .home .dest-main.box-min .swiper-slide .card-pack h2:after {
        content: none;
    }

.home .dest-main.box-min .swiper-slide .card-pack .baj {
    max-width: 100%;
    font-size: 0.875rem;
    padding-bottom: 10px;
}

.home .dest-main.box-min .swiper-slide .card-pack .dcto {
    font-size: 0.875rem;
    padding: 5px 0;
}

.home .dest-main.box-min .swiper-slide .card-pack .precio {
    padding: 0 0 5px;
    font-size: 18px;
}

    .home .dest-main.box-min .swiper-slide .card-pack .precio .pref {
        font-size: 0.875rem;
    }

    .home .dest-main.box-min .swiper-slide .card-pack .precio .iva {
        font-size: 12px;
    }

.home .dest-main.box-min .swiper-slide .card-pack .cont-btn {
    padding-top: 20px;
    padding-bottom: 0;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

    .home .dest-main.box-min .swiper-slide .card-pack .cont-btn .dropdown-content {
        bottom: 0;
        left: 100%;
    }

@media (max-width: 425px) {
    .home .dest-main.box-min .swiper-slide .card-pack .cont-btn .dropdown-content {
        bottom: 50px;
        left: 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home .dest-main.box-min .swiper-slide .card-pack .cont-btn .dropdown-content {
        bottom: 50px;
        left: 0;
    }
}

.home .dest-main.box-min .swiper-slide .card-pack .cont-btn .btn-sec, .home .dest-main.box-min .swiper-slide .card-pack .cont-btn .btn-main {
    padding: 9px 32px;
    font-size: 13px;
    background-size: 10px;
}

.home .dest-main.box-min .swiper-slide .card-pack .cont-btn .btn-sec {
    margin-right: 10px;
}

@media (max-width: 425px) {
    .home .dest-main .swiper-wrapper {
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -ms-flex-align: stretch;
        -moz-box-align: stretch;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        align-items: stretch;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home .dest-main .swiper-wrapper {
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -ms-flex-align: stretch;
        -moz-box-align: stretch;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        align-items: stretch;
    }
}

.home .dest-main .swiper-slide {
    position: relative;
}

@media (max-width: 425px) {
    .home .dest-main .swiper-slide {
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home .dest-main .swiper-slide {
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
    }
}

.home .dest-main .swiper-slide .img-wrap {
    position: relative;
}

    .home .dest-main .swiper-slide .img-wrap:before {
        content: "";
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        position: absolute;
        background: #0055b8;
        background: -moz-linear-gradient(45deg, #0055b8 0%, rgba(1, 140, 207, 0.5) 67%);
        background: -webkit-linear-gradient(45deg, #0055b8 0%, rgba(1, 140, 207, 0.5) 67%);
        background: linear-gradient(45deg, #0055b8 0%, rgba(1, 140, 207, 0.5) 67%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0055b8",endColorstr="#018ccf",GradientType=1);
    }

@media (max-width: 425px) {
    .home .dest-main .swiper-slide .img-wrap {
        display: none;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home .dest-main .swiper-slide .img-wrap {
        display: none;
    }
}

.home .dest-main .swiper-slide .auxi {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding-top: 50px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

@media (max-width: 425px) {
    .home .dest-main .swiper-slide .auxi {
        position: relative;
        padding: 20px;
        background-color: #018ccf;
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -webkit-box-orient: block-axis;
        -webkit-box-orient: vertical;
        -moz-box-orient: block-axis;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-flex: 1 0 100%;
        flex: 1 0 100%;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home .dest-main .swiper-slide .auxi {
        position: relative;
        padding: 20px;
        background-color: #018ccf;
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -webkit-box-orient: block-axis;
        -webkit-box-orient: vertical;
        -moz-box-orient: block-axis;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-flex: 1 0 100%;
        flex: 1 0 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .home .dest-main .swiper-slide .auxi {
        padding-left: 45px;
        padding-right: 45px;
        padding-top: 30px;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .home .dest-main .swiper-slide .auxi {
        padding-left: 45px;
        padding-right: 45px;
    }
}

@media (min-width: 1400px) {
    .home .dest-main .swiper-slide .auxi {
        padding-top: 0;
        -ms-flex-align: center;
        -moz-box-align: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
    }
}

.home .dest-main .swiper-slide .card-pack {
    background-color: #ffffff;
    max-width: 35%;
}

@media (max-width: 425px) {
    .home .dest-main .swiper-slide .card-pack {
        max-width: 100%;
        -webkit-flex: 1 0 auto;
        flex: 1 0 auto;
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -webkit-box-orient: block-axis;
        -webkit-box-orient: vertical;
        -moz-box-orient: block-axis;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home .dest-main .swiper-slide .card-pack {
        max-width: 100%;
        -webkit-flex: 1 0 auto;
        flex: 1 0 auto;
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -webkit-box-orient: block-axis;
        -webkit-box-orient: vertical;
        -moz-box-orient: block-axis;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .home .dest-main .swiper-slide .card-pack {
        max-width: 45%;
    }
}

.home .dest-main .swiper-slide .card-pack .cont-btn {
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.home .dest-main .scroll-downs {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    margin: 50px auto 60px;
    width: 29px;
    height: 65px;
    cursor: pointer;
    display: block;
    background-image: url("../Content/ecert/imag/v1/icon/chevron_w_d.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 15px;
}

@media (max-width: 425px) {
    .home .dest-main .scroll-downs {
        display: none !important;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home .dest-main .scroll-downs {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .home .dest-main .scroll-downs {
        display: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .home .dest-main .scroll-downs {
        display: none !important;
    }
}

@media (min-width: 1278px) and (max-width: 1399px) {
    .home .dest-main .scroll-downs {
        display: block;
    }
}

@media (min-width: 1400px) {
    .home .dest-main .scroll-downs {
        display: block;
    }
}

@media (min-width: 1278px) and (max-width: 1399px) {
    .home .dest-main .scroll-downs {
        margin: 0 auto 60px;
        bottom: 90px;
    }
}

.home .dest-main .scroll-downs .mousey {
    width: 3px;
    padding: 10px 11px;
    height: 21px;
    border: 2px solid #ffffff;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
}

    .home .dest-main .scroll-downs .mousey .scroller {
        width: 2px;
        height: 9px;
        border-radius: 25%;
        background-color: #ffffff;
        animation-name: scroll;
        animation-duration: 2.2s;
        animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
        animation-iteration-count: infinite;
    }

@keyframes scroll {
    0% {
        opacity: 0;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }

    10% {
        transform: translateY(0);
        opacity: 1;
    }
}

.home .productos {
    padding: 60px 0 20px;
}

@media (max-width: 425px) {
    .home .productos {
        padding: 30px 0 10px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home .productos {
        padding: 30px 0 10px;
    }
}

.home .productos .auxi {
    max-width: 1340px;
}

@media (max-width: 425px) {
    .home .productos .auxi {
        padding: 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home .productos .auxi {
        padding: 0;
    }
}

@media (min-width: 1180px) and (max-width: 1300px) {
    .home .productos .auxi {
        padding: 0;
    }
}

.home .productos .prod-content {
    max-width: 940px;
    margin: 20px auto;
    position: relative;
}

    .home .productos .prod-content.box-4 {
        max-width: 100%;
    }

@media (min-width: 992px) and (max-width: 1277px) {
    .home .productos .prod-content.box-4 {
        max-width: 100%;
    }
}

.home .productos .prod-content.box-4 .swiper-container {
    margin: 0 65px;
    padding: 30px 10px;
    position: initial;
}

@media (max-width: 425px) {
    .home .productos .prod-content.box-4 .swiper-container {
        margin: 0 12px;
        padding: 20px 0 !important;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home .productos .prod-content.box-4 .swiper-container {
        margin: 0 20px;
        padding: 30px 0 !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .home .productos .prod-content.box-4 .swiper-container {
        margin: 0 55px;
        padding: 30px 10px !important;
    }
}

@media (min-width: 1180px) and (max-width: 1300px) {
    .home .productos .prod-content.box-4 .swiper-container {
        margin: 0 30px;
    }
}

@media (max-width: 425px) {
    .home .productos .prod-content.box-4 .swiper-container .swiper-slide {
        padding: 0 8px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home .productos .prod-content.box-4 .swiper-container .swiper-slide {
        padding: 0 8px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .home .productos .prod-content.box-4 .swiper-container .swiper-slide {
        padding: 0 10px;
    }
}

.home .productos .prod-content.box-4 .swiper-container .swiper-button-prev {
    background-image: url(../Content/ecert/imag/v1/icon/arrow_l_g.png) !important;
    left: 10px !important;
}

@media (max-width: 425px) {
    .home .productos .prod-content.box-4 .swiper-container .swiper-button-prev {
        left: 0 !important;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home .productos .prod-content.box-4 .swiper-container .swiper-button-prev {
        left: 0 !important;
    }
}

@media (min-width: 1180px) and (max-width: 1300px) {
    .home .productos .prod-content.box-4 .swiper-container .swiper-button-prev {
        left: 0 !important;
        width: 35px;
        height: 35px;
    }
}

.home .productos .prod-content.box-4 .swiper-container .swiper-button-next {
    background-image: url(../Content/ecert/imag/v1/icon/arrow_r_g.png) !important;
    right: 10px !important;
}

@media (max-width: 425px) {
    .home .productos .prod-content.box-4 .swiper-container .swiper-button-next {
        right: 0 !important;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home .productos .prod-content.box-4 .swiper-container .swiper-button-next {
        right: 0 !important;
    }
}

@media (min-width: 1180px) and (max-width: 1300px) {
    .home .productos .prod-content.box-4 .swiper-container .swiper-button-next {
        right: 0 !important;
        width: 35px;
        height: 35px;
    }
}

.home .productos .prod-content.box-4 .row {
    margin-left: -30px;
}

.home .productos .prod-content.box-4 .col {
    border-left-width: 30px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .home .productos .prod-content.box-4 .col {
        max-width: 50%;
        margin-bottom: 20px;
        border-left-width: 20px;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .home .productos .prod-content.box-4 .col {
        max-width: 50%;
        width: 50%;
        margin-bottom: 20px;
        border-left-width: 20px;
    }
}

@media (min-width: 1278px) and (max-width: 1399px) {
    .home .productos .prod-content.box-4 .col {
        max-width: 25%;
    }
}

@media (min-width: 1400px) {
    .home .productos .prod-content.box-4 .col {
        max-width: 25%;
    }
}

.home .productos .row {
    margin-left: -35px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .home .productos .row {
        margin-left: -20px;
    }
}

.home .productos .col {
    border-left-width: 35px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .home .productos .col {
        max-width: 33.3333333333%;
        border-left-width: 20px;
    }
}

.home .productos .box-dest {
    padding: 0;
    text-align: center;
    position: relative;
    -webkit-box-shadow: 0px 1px 18px -7px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 1px 18px -7px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 1px 18px -7px rgba(0, 0, 0, 0.3);
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
}

@media (max-width: 425px) {
    .home .productos .box-dest {
        margin-bottom: 20px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home .productos .box-dest {
        margin-bottom: 20px;
    }
}

.home .productos .box-dest.azul .img-wrap:after {
    background-color: rgba(0, 85, 184, 0.7);
}

.home .productos .box-dest.azul li {
    background-image: url("../Content/ecert/imag/v1/icon/check_blue.png");
}

.home .productos .box-dest.naranjo .img-wrap:after {
    background-color: rgba(235, 160, 33, 0.7);
}

.home .productos .box-dest.naranjo li {
    background-image: url("../Content/ecert/imag/v1/icon/check_naranjo.png");
}

.home .productos .box-dest.verde .img-wrap:after {
    background-color: rgba(0, 176, 104, 0.7);
}

.home .productos .box-dest.verde li {
    background-image: url("../Content/ecert/imag/v1/icon/check_green.png");
}

.home .productos .box-dest.morado .img-wrap:after {
    background-color: rgba(74, 74, 150, 0.7);
}

.home .productos .box-dest.morado li {
    background-image: url("../Content/ecert/imag/v1/icon/check_purple.png");
}

.home .productos .box-dest.cyan .img-wrap:after {
    background-color: rgba(43, 176, 198, 0.7);
}

.home .productos .box-dest.cyan li {
    background-image: url("../Content/ecert/imag/v1/icon/check_cyan.png");
}

.home .productos .box-dest .enc-card {
    position: relative;
}

    .home .productos .box-dest .enc-card .img-wrap {
        position: relative;
        overflow: hidden;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

        .home .productos .box-dest .enc-card .img-wrap:after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            z-index: 1;
        }

    .home .productos .box-dest .enc-card .cont-txt {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 2;
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -ms-flex-align: center;
        -moz-box-align: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-orient: block-axis;
        -webkit-box-orient: vertical;
        -moz-box-orient: block-axis;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

        .home .productos .box-dest .enc-card .cont-txt h3, .home .productos .box-dest .enc-card .cont-txt p {
            color: #ffffff;
            display: block;
        }

        .home .productos .box-dest .enc-card .cont-txt p {
            font-family: "Roboto", sans-serif;
            font-weight: 400;
            font-style: italic;
        }

        .home .productos .box-dest .enc-card .cont-txt .nuevo {
            font-size: 0.8125rem;
            color: #eba021;
            background-color: #ffffff;
            border-radius: 3px;
            padding: 2px 8px;
            margin-bottom: 5px;
            font-family: "Roboto", sans-serif;
            font-weight: 700;
        }

        .home .productos .box-dest .enc-card .cont-txt h3 {
            padding-top: 5px;
            font-size: 2rem;
            font-family: "Roboto", sans-serif;
            font-weight: 700;
        }

.home .productos .box-dest .content {
    padding: 25px;
    padding-bottom: 80px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
}

@media (min-width: 992px) and (max-width: 1277px) {
    .home .productos .box-dest .content {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.home .productos .box-dest .content ul {
    text-align: left;
}

    .home .productos .box-dest .content ul li {
        color: #808285;
        font-size: 0.8125rem;
        line-height: 1.3;
        padding-bottom: 20px;
        padding-left: 25px;
        background-repeat: no-repeat;
        background-position: left 4px;
        background-size: 15px;
    }

.home .productos .box-dest .content .precio {
    padding: 10px 0;
    font-size: 1.25rem;
}

@media (max-width: 425px) {
    .home .productos .box-dest .content .precio {
        text-align: center;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home .productos .box-dest .content .precio {
        text-align: center;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .home .productos .box-dest .content .precio {
        text-align: center;
        font-size: 1.125rem;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .home .productos .box-dest .content .precio {
        text-align: center;
    }
}

.home .productos .box-dest .content .precio .pref {
    font-size: 0.875rem;
}

.home .productos .box-dest .content .precio .iva {
    font-size: 0.6875rem;
}

.home .productos .box-dest .content .precio-regular {
    font-size: 0.6875rem;
    color: #808285;
    text-decoration: line-through;
    text-align: left;
}

@media (max-width: 425px) {
    .home .productos .box-dest .content .precio-regular {
        text-align: center;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home .productos .box-dest .content .precio-regular {
        text-align: center;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .home .productos .box-dest .content .precio-regular {
        text-align: center;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .home .productos .box-dest .content .precio-regular {
        text-align: center;
    }
}

.home .productos .box-dest .cont-btn {
    padding: 30px 0;
    text-align: center;
}

.home .productos .box-dest .btn-main {
    display: inline-block;
    font-size: 0.8125rem;
    color: #ffffff;
    padding: 8px 30px;
    background-color: #eba021;
    border-radius: 30px;
    letter-spacing: 0.2px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

@media (max-width: 425px) {
    .home .productos .box-dest .btn-main {
        font-size: 0.75rem !important;
        padding: 12px 20px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home .productos .box-dest .btn-main {
        font-size: 0.75rem !important;
        padding: 12px 20px;
    }
}

.home .productos .box-dest .btn-main:hover {
    background-color: #eba021;
    transition: 0.3s all ease;
}

.home .productos .box-dest .btn-main.more {
    color: #808285;
    border-bottom: 4px solid #808285;
    margin-left: 20px;
}

.home .productos .box-dest .cont-btn {
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

    .home .productos .box-dest .cont-btn .btn-main {
        font-size: 0.75rem;
    }

@media (max-width: 425px) {
    .home .productos .box-dest .cont-btn .btn-main {
        padding: 8px 25px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home .productos .box-dest .cont-btn .btn-main {
        padding: 8px 25px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .home .productos .box-dest .cont-btn .btn-main {
        padding: 8px 30px 8px 15px;
    }
}

.home .productos .box-dest .cont-btn .btn-sec {
    font-size: 0.75rem;
    margin-right: 5px;
    padding: 8px 30px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .home .productos .box-dest .cont-btn .btn-sec {
        padding: 8px 10px;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .home .productos .box-dest .cont-btn .btn-sec {
        padding: 7px 25px !important;
    }
}

.home .productos .box-dest .cont-btn .dropbtn-m {
    background-size: 10px;
}

.home .productos .box-dest .cont-btn .dropdown-content {
    bottom: 45px;
    right: 0;
    z-index: 2;
}

.home .servicios {
    padding: 60px 0;
    position: relative;
}

@media (max-width: 425px) {
    .home .servicios {
        padding: 30px 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home .servicios {
        padding: 30px 0;
    }
}

@media (max-width: 425px) {
    .home .servicios {
        background: none !important;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home .servicios {
        background: none !important;
    }
}

.home .servicios .cont-tit h2 {
    color: #ffffff;
}

.home .servicios .cont-tit .baj {
    color: #ffffff;
}

.home .servicios .auxi {
    position: relative;
    max-width: 1200px !important;
    z-index: 2;
}

.home .servicios:before {
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.85);
}

.home .servicios .filt-container {
    padding: 30px 0 50px;
}

@media (max-width: 425px) {
    .home .servicios .filt-container {
        padding: 30px 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home .servicios .filt-container {
        padding: 30px 0;
    }
}

.home .servicios .filt-container .auxi {
    max-width: 700px !important;
}

.home .servicios .filt-container ul {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

@media (max-width: 425px) {
    .home .servicios .filt-container ul {
        overflow-x: scroll;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home .servicios .filt-container ul {
        overflow-x: scroll;
    }
}

.home .servicios .filt-container ul li {
    color: #ffffff;
    cursor: pointer;
    text-align: center;
    padding: 10px 0;
    text-transform: uppercase;
    font-size: 0.8125rem;
    border-bottom: 4px solid rgba(255, 255, 255, 0);
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
}

@media (max-width: 425px) {
    .home .servicios .filt-container ul li {
        padding: 10px;
    }
}

.home .servicios .filt-container ul li.selected {
    border-bottom: 4px solid #018ccf;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.home .servicios .wrap-car {
    padding: 10px 0 70px;
}

@media (max-width: 425px) {
    .home .servicios .wrap-car {
        padding: 10px 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home .servicios .wrap-car {
        padding: 10px 0;
    }
}

.home .servicios .wrap-car .box-sec {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: stretch;
    -moz-box-align: stretch;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
}

.home.prelanding .main {
    margin: 0 !important;
}

.home.prelanding .auxi {
    max-width: 1088px;
}

.home.prelanding .header {
    padding: 0 !important;
    background: none;
    position: absolute;
}

    .home.prelanding .header .img-wrap {
        padding: 30px 0 20px;
        width: 260px;
        background-color: #ffffff;
    }

@media (max-width: 425px) {
    .home.prelanding .header .img-wrap {
        padding: 20px 0 20px;
        width: 200px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home.prelanding .header .img-wrap {
        padding: 20px 0 20px;
        width: 200px;
    }
}

.home.prelanding .header .img-wrap img {
    margin: 0 auto;
    width: 235px;
}

@media (max-width: 425px) {
    .home.prelanding .header .img-wrap img {
        width: 180px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home.prelanding .header .img-wrap img {
        width: 180px;
    }
}

.home.prelanding .dest-full {
    min-height: 643px;
}

@media (max-width: 425px) {
    .home.prelanding .dest-full {
        background-position: 57%;
        min-height: 500px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home.prelanding .dest-full {
        background-position: 57%;
        min-height: 500px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .home.prelanding .dest-full {
        min-height: 580px;
    }
}

.home.prelanding .dest-full .auxi {
    padding-top: 120px;
}

.home.prelanding .art-hide {
    position: relative;
    top: -150px;
    margin-bottom: -100px;
}

@media (max-width: 425px) {
    .home.prelanding .art-hide {
        top: -80px;
        margin-bottom: -60px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home.prelanding .art-hide {
        top: -80px;
        margin-bottom: -60px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .home.prelanding .art-hide {
        top: -90px;
        margin-bottom: -60px;
    }
}

.home.prelanding .art-hide .row {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -ms-flex-align: stretch;
    -moz-box-align: stretch;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.home.prelanding .art-hide .item {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

    .home.prelanding .art-hide .item h3, .home.prelanding .art-hide .item p {
        color: #ffffff;
    }

    .home.prelanding .art-hide .item p {
        font-size: 0.875rem;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        line-height: 1.4;
    }

@media (max-width: 425px) {
    .home.prelanding .art-hide .item p {
        font-size: 0.8125rem;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home.prelanding .art-hide .item p {
        font-size: 0.8125rem;
    }
}

.home.prelanding .art-hide .item h3 {
    padding-bottom: 10px;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

@media (max-width: 425px) {
    .home.prelanding .art-hide .item h3 {
        font-size: 1.125rem;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home.prelanding .art-hide .item h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 425px) {
    .home.prelanding .art-hide .item .cont-btn {
        padding-top: 10px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home.prelanding .art-hide .item .cont-btn {
        padding-top: 10px;
    }
}

.home.prelanding .art-hide .item .cont-btn .btn-main {
    padding: 9px 33px 9px 27px;
    font-size: 0.8125rem;
    background-image: url("../Content/ecert/imag/v1/icon/arrow_r.png") !important;
    background-repeat: no-repeat;
    background-position: 88% 53%;
    background-size: 6px;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}

.home.prelanding .art-hide .item .img-wrap:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    content: "";
    z-index: 0;
    opacity: 0.7;
    background: black;
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, black 100%);
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, black 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, black 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

.home.prelanding .art-hide .item:hover .img-wrap:before {
    opacity: 0.9;
    background: #0055b8;
    background: -moz-linear-gradient(180deg, rgba(0, 85, 184, 0.6) 0%, #0055b8 100%);
    background: -webkit-linear-gradient(180deg, rgba(0, 85, 184, 0.6) 0%, #0055b8 100%);
    background: linear-gradient(180deg, rgba(0, 85, 184, 0.6) 0%, #0055b8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0055b8",endColorstr="#0055b8",GradientType=1);
}

.home.prelanding .art-hide .item:hover .cont-txt {
    top: 0;
}

    .home.prelanding .art-hide .item:hover .cont-txt .baj {
        opacity: 1;
    }

.home.prelanding .art-hide .cont-txt {
    position: absolute;
    transition: 0.3s all ease;
    top: 60%;
    bottom: 40px;
    padding: 30px 30px 25px;
}

@media (max-width: 425px) {
    .home.prelanding .art-hide .cont-txt {
        top: 0;
        padding: 20px 20px 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home.prelanding .art-hide .cont-txt {
        top: 0;
        padding: 20px 20px 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .home.prelanding .art-hide .cont-txt {
        top: 0;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .home.prelanding .art-hide .cont-txt {
        padding: 20px 20px 20px;
    }
}

.home.prelanding .art-hide .cont-txt .baj {
    opacity: 0;
}

@media (max-width: 425px) {
    .home.prelanding .art-hide .cont-txt .baj {
        opacity: 1;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home.prelanding .art-hide .cont-txt .baj {
        opacity: 1;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .home.prelanding .art-hide .cont-txt .baj {
        opacity: 1;
    }
}

.home.prelanding .art-hide .cont-btn {
    padding: 20px 0;
    text-align: left;
}

.home.prelanding .prel-footer .auxi {
    max-width: 1183px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

@media (max-width: 425px) {
    .home.prelanding .prel-footer .auxi {
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home.prelanding .prel-footer .auxi {
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .home.prelanding .prel-footer .auxi {
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .home.prelanding .prel-footer .links {
        margin-bottom: 40px;
    }
}

@media (max-width: 425px) {
    .home.prelanding .prel-footer .links a {
        padding-bottom: 20px;
        display: block;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home.prelanding .prel-footer .links a {
        padding-bottom: 20px;
        display: block;
    }
}

.home.prelanding .prel-footer ul {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
}

@media (max-width: 425px) {
    .home.prelanding .prel-footer ul {
        -webkit-box-orient: block-axis;
        -webkit-box-orient: vertical;
        -moz-box-orient: block-axis;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: start;
        -webkit-box-align: start;
        -moz-box-align: start;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .home.prelanding .prel-footer ul {
        -webkit-box-orient: block-axis;
        -webkit-box-orient: vertical;
        -moz-box-orient: block-axis;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: start;
        -webkit-box-align: start;
        -moz-box-align: start;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }
}

.home.prelanding .prel-footer ul a {
    padding-right: 30px;
    font-size: 0.8125rem;
    color: #ffffff;
    text-transform: uppercase;
}

@media (min-width: 992px) and (max-width: 1277px) {
    .home.prelanding .prel-footer ul a {
        padding-right: 15px;
    }
}

.home.prelanding .prel-footer p.phone, .home.prelanding .prel-footer a.phone {
    font-size: 1.125rem;
}

.home.prelanding .prel-footer .contact {
    margin-right: 40px;
}

@media (min-width: 992px) and (max-width: 1277px) {
    .home.prelanding .prel-footer .contact {
        margin-right: 15px;
    }
}

.home.prelanding .prel-footer .contact:last-child {
    margin-right: 0;
}

.home.prelanding .prel-footer .contact a {
    text-transform: none;
}

.home.prelanding .prel-footer .contact .img-wrap a {
    padding-right: 0;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -ms-flex-align: end;
    -moz-box-align: end;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.pago .main .auxi {
    max-width: 1100px;
}

.pago .paso {
    margin-bottom: 40px;
}

    .pago .paso .auxi {
        border-radius: 5px;
        -webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1);
    }

@media (max-width: 425px) {
    .pago .paso .auxi {
        box-shadow: none;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago .paso .auxi {
        box-shadow: none;
    }
}

.pago .paso .auxi .enc-paso {
    font-size: 1rem;
    background-color: #e0e0e0;
    padding: 20px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

@media (max-width: 425px) {
    .pago .paso .auxi .enc-paso {
        padding: 10px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago .paso .auxi .enc-paso {
        padding: 10px;
    }
}

.pago .paso .auxi .enc-paso.listo {
    background-color: #00b069;
}

    .pago .paso .auxi .enc-paso.listo h2 {
        color: #ffffff;
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -ms-flex-align: center;
        -moz-box-align: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
    }

        .pago .paso .auxi .enc-paso.listo h2:before {
            content: "";
            margin-right: 15px;
            position: relative;
            display: inline-block;
            background-image: url("../Content/ecert/imag/v1/icon/ic_check_white.png");
            background-repeat: no-repeat;
            background-position: 0;
            background-size: 25px;
            width: 25px;
            height: 25px;
        }

    .pago .paso .auxi .enc-paso.listo p {
        color: #ffffff;
    }

.pago .paso .auxi .enc-paso h2 {
    color: #58595b;
    font-size: 1.125rem;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}

@media (max-width: 425px) {
    .pago .paso .auxi .enc-paso h2 {
        font-size: 1rem;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago .paso .auxi .enc-paso h2 {
        font-size: 1rem;
    }
}

.pago .paso .auxi .enc-paso p {
    padding-top: 15px;
    line-height: 1.4;
    font-size: 0.875rem;
    color: #595959;
}

    .pago .paso .auxi .enc-paso p.Producto {
        padding-top: 0;
        color: #373737;
        font-family: "Roboto", sans-serif;
        font-weight: 600;
    }

    .pago .paso .auxi .enc-paso p.subproducto {
        padding-top: 8px;
        font-size: 0.8125rem;
    }

.pago .paso .auxi .enc-paso .precio {
    color: #595959;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

@media (max-width: 425px) {
    .pago .paso .auxi .enc-paso .precio {
        padding-top: 20px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago .paso .auxi .enc-paso .precio {
        padding-top: 20px;
    }
}

.pago .paso .auxi .enc-paso .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 10;
    height: 270px;
    padding-right: 8px;
    overflow-y: scroll;
}

    .pago .paso .auxi .enc-paso .dropdown-content::-webkit-scrollbar {
        width: 5px;
    }

    .pago .paso .auxi .enc-paso .dropdown-content::-webkit-scrollbar-track {
        background: #d4cbcb;
        border-radius: 5px;
    }

    .pago .paso .auxi .enc-paso .dropdown-content::-webkit-scrollbar-thumb {
        background: #969696;
        border-radius: 5px;
    }

@media (max-width: 425px) {
    .pago .paso .auxi .enc-paso .dropdown-content {
        min-width: 100%;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago .paso .auxi .enc-paso .dropdown-content {
        min-width: 100%;
    }
}

.pago .paso .auxi .enc-paso .dropdown-content li {
    color: black;
    padding: 16px 20px;
    text-decoration: none;
    display: block;
    cursor: pointer;
    min-width: 380px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

@media (max-width: 425px) {
    .pago .paso .auxi .enc-paso .dropdown-content li {
        min-width: 100%;
        -webkit-box-orient: block-axis;
        -webkit-box-orient: vertical;
        -moz-box-orient: block-axis;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago .paso .auxi .enc-paso .dropdown-content li {
        min-width: 100%;
        -webkit-box-orient: block-axis;
        -webkit-box-orient: vertical;
        -moz-box-orient: block-axis;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}

.pago .paso .auxi .enc-paso .dropdown-content li:hover {
    transition: 0.3s all ease;
    background-color: #f9f9f9;
}

.pago .paso .auxi .enc-paso .dropdown {
    position: relative;
    display: inline-block;
}

@media (max-width: 425px) {
    .pago .paso .auxi .enc-paso .dropdown {
        width: 100%;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago .paso .auxi .enc-paso .dropdown {
        width: 100%;
    }
}

.pago .paso .auxi .enc-paso .dropbtn {
    background-color: #0055b8;
    color: white;
    padding: 12px 40px 12px 12px;
    width: 300px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    background-image: url("../Content/ecert/imag/v1/icon/chevron_w_d.png");
    background-repeat: no-repeat;
    background-position: 95%;
    background-size: 15px;
}

@media (max-width: 425px) {
    .pago .paso .auxi .enc-paso .dropbtn {
        width: 100%;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago .paso .auxi .enc-paso .dropbtn {
        width: 100%;
    }
}

.pago .paso .auxi .enc-paso .dropbtn:hover, .pago .paso .auxi .enc-paso .dropbtn:focus {
    background-color: #eba021;
}

.pago .paso .auxi .enc-paso .show {
    display: block;
}

@media (max-width: 425px) {
    .pago .paso .auxi .content {
        -webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1);
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago .paso .auxi .content {
        -webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1);
    }
}

.pago .paso .cart-head {
    padding: 15px 20px 0;
    margin-bottom: 20px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

    .pago .paso .cart-head li {
        padding: 0 10px 15px;
        text-align: center;
        border-bottom: 1px solid #bacbd8;
        font-size: 0.875rem;
        color: #595959;
        -webkit-flex: 1 0 12%;
        flex: 1 0 12%;
    }

@media (min-width: 768px) and (max-width: 991px) {
    .pago .paso .cart-head li {
        padding: 0 2px 15px;
    }
}

.pago .paso .cart-head li:first-child {
    text-align: left;
    padding-left: 0;
    -webkit-flex: 1 0 300px;
    flex: 1 0 300px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .pago .paso .cart-head li:first-child {
        -webkit-flex: 1 0 200px;
        flex: 1 0 200px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .pago .paso .cart-head li:last-child {
        -webkit-flex: 1 0 8%;
        flex: 1 0 8%;
    }
}

.pago .paso .product {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-align: stretch;
    -moz-box-align: stretch;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    padding: 20px;
}

@media (max-width: 425px) {
    .pago .paso .product {
        -webkit-box-orient: block-axis;
        -webkit-box-orient: vertical;
        -moz-box-orient: block-axis;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        border-bottom: 1px solid #f2f2f4;
        padding: 20px 15px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago .paso .product {
        -webkit-box-orient: block-axis;
        -webkit-box-orient: vertical;
        -moz-box-orient: block-axis;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        border-bottom: 1px solid #f2f2f4;
        padding: 20px;
    }
}

.pago .paso .product > li {
    text-align: center;
    padding: 0 10px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -ms-flex-align: stretch;
    -moz-box-align: stretch;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 1 0 12%;
    flex: 1 0 12%;
}

@media (max-width: 425px) {
    .pago .paso .product > li {
        margin-bottom: 25px;
        -webkit-flex: 0 1 100%;
        flex: 0 1 100%;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago .paso .product > li {
        margin-bottom: 25px;
        -webkit-flex: 0 1 100%;
        flex: 0 1 100%;
    }
}

.pago .paso .product > li:first-child {
    text-align: left;
    padding-left: 0;
    -webkit-flex: 1 0 300px;
    flex: 1 0 300px;
}

@media (max-width: 425px) {
    .pago .paso .product > li:first-child {
        margin-bottom: 30px;
        -webkit-flex: 0 1 100%;
        flex: 0 1 100%;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago .paso .product > li:first-child {
        margin-bottom: 30px;
        -webkit-flex: 0 1 100%;
        flex: 0 1 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .pago .paso .product > li:first-child {
        -webkit-flex: 1 0 200px;
        flex: 1 0 200px;
    }
}

@media (max-width: 425px) {
    .pago .paso .product > li .borrar {
        padding-top: 15px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago .paso .product > li .borrar {
        padding-top: 15px;
    }
}

.pago .paso .product > li .borrar a {
    display: block;
    text-align: center;
}

    .pago .paso .product > li .borrar a img {
        margin: 0 auto;
        width: 19px;
    }

.pago .paso .product > li .name, .pago .paso .product > li .iva p, .pago .paso .product > li .total p {
    padding-bottom: 9px;
    color: #58595b;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}

@media (max-width: 425px) {
    .pago .paso .product > li .name, .pago .paso .product > li .iva p, .pago .paso .product > li .total p {
        padding-top: 10px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago .paso .product > li .name, .pago .paso .product > li .iva p, .pago .paso .product > li .total p {
        padding-top: 10px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .pago .paso .product > li .name, .pago .paso .product > li .iva p, .pago .paso .product > li .total p {
        font-size: 0.875rem;
        line-height: 1.4;
    }
}

.pago .paso .product > li .garantia {
    color: #58595b;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

.pago .paso .product > li .iva {
    padding-right: 30px;
    text-align: right;
}

@media (max-width: 425px) {
    .pago .paso .product > li .iva {
        text-align: center;
        padding-right: 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago .paso .product > li .iva {
        text-align: center;
        padding-right: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .pago .paso .product > li .iva {
        padding-right: 24px;
    }
}

.pago .paso .product > li .descuento p, .pago .paso .product > li .total p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

@media (max-width: 425px) {
    .pago .paso .product > li .descuento p, .pago .paso .product > li .total p {
        padding-top: 10px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago .paso .product > li .descuento p, .pago .paso .product > li .total p {
        padding-top: 10px;
    }
}

.pago .paso .product > li .info, .pago .paso .product > li .iva .sub-prod {
    font-size: 0.8125rem;
    color: #808285;
    padding-bottom: 6px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

    .pago .paso .product > li .info:last-child, .pago .paso .product > li .iva .sub-prod:last-child {
        padding-bottom: 0;
    }

.pago .paso .product > li p {
    color: #58595b;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

    .pago .paso .product > li p.mobile {
        font-size: 0.8125rem;
    }

.pago .paso .product > li .final {
    color: #58595b;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

@media (max-width: 425px) {
    .pago .paso .product > li .final {
        padding-top: 10px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago .paso .product > li .final {
        padding-top: 10px;
    }
}

.pago .paso .product > li .iva .sub-prod {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

@media (max-width: 425px) {
    .pago .paso .product > li .iva .sub-prod {
        padding-top: 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago .paso .product > li .iva .sub-prod {
        padding-top: 0;
    }
}

.pago .paso .product > li .select {
    font-size: 0.875rem;
    color: #58595b;
    width: 65%;
    height: 32px;
    border: none !important;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}

@media (max-width: 425px) {
    .pago .paso .product > li .select {
        margin-top: 10px;
        margin-bottom: 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago .paso .product > li .select {
        margin-top: 10px;
        margin-bottom: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .pago .paso .product > li .select {
        width: 100%;
    }
}

.pago .paso .product > li .select-styled:active:after, .pago .paso .product > li .select-styled.active:after {
    top: 8px;
    border-color: transparent transparent #595959 transparent;
}

.pago .paso .product > li .select-styled:after {
    border: 5px solid transparent;
    border-color: #595959 transparent transparent transparent;
    top: 13px;
}

.pago .paso .product > li .valor {
    color: #595959;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.pago .ui-menu.ui-widget-content {
    max-width: 800px !important;
    border: none !important;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

.pago .ui-menu .ui-menu-item {
    font-size: 0.8125rem !important;
    color: #808285 !important;
}

.pago .ui-menu .ui-menu-item-wrapper {
    border: none !important;
    padding: 7px 1em 7px 0.8em !important;
    transition: 0.2s all ease;
}

    .pago .ui-menu .ui-menu-item-wrapper.ui-state-active {
        border: none !important;
        background: #0055b8 !important;
    }

.pago.renovacion .product {
    cursor: pointer;
}

    .pago.renovacion .product:hover {
        transition: 0.6s all ease;
        background-color: #f2f2f4;
    }

    .pago.renovacion .product.selected {
        transition: 0.6s all ease;
        background-color: #f2f2f4;
    }

    .pago.renovacion .cart-head li:first-child, .pago.renovacion .product li:first-child {
        -webkit-flex: 1 0 40px;
        flex: 1 0 40px;
    }

@media (max-width: 425px) {
    .pago.renovacion .cart-head li:first-child, .pago.renovacion .product li:first-child {
        -webkit-flex: 1 0 20px;
        flex: 1 0 20px;
        margin-bottom: 10px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago.renovacion .cart-head li:first-child, .pago.renovacion .product li:first-child {
        -webkit-flex: 1 0 20px;
        flex: 1 0 20px;
        margin-bottom: 10px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .pago.renovacion .cart-head li:first-child, .pago.renovacion .product li:first-child {
        -webkit-flex: 1 0 20px;
        flex: 1 0 20px;
    }
}

.pago.renovacion .cart-head li:nth-child(2), .pago.renovacion .product li:nth-child(2) {
    text-align: left;
    -webkit-flex: 1 0 270px;
    flex: 1 0 270px;
}

@media (max-width: 425px) {
    .pago.renovacion .cart-head li:nth-child(2), .pago.renovacion .product li:nth-child(2) {
        -webkit-flex: 1 0 auto;
        flex: 1 0 auto;
        padding: 0;
        margin-bottom: 10px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago.renovacion .cart-head li:nth-child(2), .pago.renovacion .product li:nth-child(2) {
        -webkit-flex: 1 0 auto;
        flex: 1 0 auto;
        margin-bottom: 10px;
        padding: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .pago.renovacion .cart-head li:nth-child(2), .pago.renovacion .product li:nth-child(2) {
        -webkit-flex: 1 0 200px;
        flex: 1 0 200px;
    }
}

.pago.renovacion .cart-head li:nth-child(3) p:not(.mobile), .pago.renovacion .product li:nth-child(3) p:not(.mobile) {
    padding-top: 10px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .pago.renovacion .cart-head li .product > li, .pago.renovacion .product li .product > li {
        padding: 0 2px;
    }
}

@media (max-width: 425px) {
    .pago.renovacion .product-name {
        padding: 0;
        padding-bottom: 15px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago.renovacion .product-name {
        padding: 0;
        padding-bottom: 15px;
    }
}

.pago.renovacion .msj-vacio {
    padding: 30px 0;
}

    .pago.renovacion .msj-vacio p {
        font-size: 1.125rem;
        color: #58595b;
        line-height: 1.4;
        text-align: center;
    }

@media (max-width: 425px) {
    .pago.renovacion .msj-vacio p {
        font-size: 1rem;
        padding: 0 15px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago.renovacion .msj-vacio p {
        font-size: 1rem;
        padding: 0 20px;
    }
}

.pago.renovacion .menujq ul > li > a {
    margin-right: 0;
}

.pago .total {
    margin-bottom: 30px;
}

@media (max-width: 425px) {
    .pago .total {
        margin-bottom: 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago .total {
        margin-bottom: 0;
    }
}

.pago .total .auxi {
    padding: 0 20px;
}

.pago .total li {
    padding-bottom: 10px;
    padding-right: 20px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

    .pago .total li p:not(.pref) {
        font-size: 1.125rem;
        color: #58595b;
        text-align: right;
        -webkit-flex: 0 1 120px;
        flex: 0 1 120px;
        font-family: "Roboto", sans-serif;
        font-weight: 700;
    }

    .pago .total li .pref {
        font-size: 0.875rem;
        color: #595959;
    }

    .pago .total li.Total {
        border-top: 1px solid #f2f2f4;
        padding-top: 15px;
        margin-top: 15px;
    }

        .pago .total li.Total .pref {
            text-transform: uppercase;
            color: #595959;
            font-size: 1.125rem;
            font-family: "Roboto", sans-serif;
            font-weight: 600;
        }

        .pago .total li.Total p:not(.pref) {
            font-size: 1.5rem;
            color: #0055b8;
        }

.pago .cont-btn .auxi {
    box-shadow: none;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

    .pago .cont-btn .auxi .btn-sec {
        display: inline-block;
        font-size: 0.875rem;
        color: #4F2B83;
        padding: 10px 45px;
        background-color: #ffffff;
        border: 1px solid #4F2B83;
        margin-right: 20px;
        border-radius: 30px;
        letter-spacing: 0.2px;
        font-family: "Roboto", sans-serif;
        font-weight: 700;
    }

    .pago .cont-btn .auxi .cont-btn {
        padding: 30px 0;
        text-align: center;
    }

    .pago .cont-btn .auxi .btn-main {
        display: inline-block;
        font-size: 0.8125rem;
        color: #ffffff;
        padding: 12px 40px;
        background-color: #eba021;
        border-radius: 30px;
        letter-spacing: 0.2px;
        font-family: "Roboto", sans-serif;
        font-weight: 700;
    }

@media (max-width: 425px) {
    .pago .cont-btn .auxi .btn-main {
        font-size: 0.75rem !important;
        padding: 12px 20px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago .cont-btn .auxi .btn-main {
        font-size: 0.75rem !important;
        padding: 12px 20px;
    }
}

.pago .cont-btn .auxi .btn-main:hover {
    background-color: #eba021;
    transition: 0.3s all ease;
}

.pago .cont-btn .auxi .btn-main.more {
    color: #808285;
    border-bottom: 4px solid #808285;
    margin-left: 20px;
}

.pago .menujq .desplegable ul {
    margin-left: 0 !important;
}

.pago .menujq li {
    position: relative;
}

    .pago .menujq li.error > a {
        color: #ffffff;
        background-color: #de482f;
    }

        .pago .menujq li.error > a:after {
            content: "";
            background-image: url("../Content/ecert/imag/v1/icon/chevron_w_d.png");
        }

        .pago .menujq li.error > a .ic-error {
            width: 25px;
            height: 25px;
            position: relative;
            display: inline-block;
            vertical-align: middle;
            bottom: 2px;
            margin-left: 5px;
            background-image: url("../Content/ecert/imag/v1/icon/ic_alert_w.png");
            background-repeat: no-repeat;
            background-position: 50%;
            background-size: 100%;
        }

@media (max-width: 425px) {
    .pago .menujq li.error > a .ic-error {
        width: 20px;
        height: 20px;
        margin-left: 0px;
        margin-top: 5px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago .menujq li.error > a .ic-error {
        width: 20px;
        height: 20px;
        margin-left: 0px;
        margin-top: 5px;
    }
}

.pago .menujq li a {
    position: relative;
    margin-right: 40px;
}

@media (max-width: 425px) {
    .pago .menujq li a {
        margin-right: 30px;
        font-size: 0.875rem;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago .menujq li a {
        margin-right: 30px;
        font-size: 0.875rem;
    }
}

.pago .menujq li .trash {
    position: absolute;
    top: 14px;
    cursor: pointer;
    right: 0;
}

    .pago .menujq li .trash img {
        width: 20px;
    }

.pago form {
    max-width: 800px;
    margin: 25px auto;
}

    .pago form .checkbox-form {
        text-align: right;
        max-width: 97%;
        margin: 30px 0;
    }

        .pago form .checkbox-form label {
            font-size: 0.875rem;
            transition: 0.2s all ease;
            color: #58595b;
            font-family: "Roboto", sans-serif;
            font-weight: 600;
        }

        .pago form .checkbox-form .styled-checkbox {
            position: absolute;
            opacity: 0;
        }

            .pago form .checkbox-form .styled-checkbox + label {
                position: relative;
                cursor: pointer;
                padding: 0;
            }

                .pago form .checkbox-form .styled-checkbox + label:before {
                    content: "";
                    transition: 0.2s all ease;
                    margin-right: 10px;
                    display: inline-block;
                    vertical-align: text-top;
                    width: 20px;
                    height: 20px;
                    background: white;
                    border: 1px solid #0055b8;
                }

            .pago form .checkbox-form .styled-checkbox:hover + label:before {
                background: #0055b8;
            }

            .pago form .checkbox-form .styled-checkbox:focus + label:before {
                border-color: #0055b8;
            }

            .pago form .checkbox-form .styled-checkbox:checked + label:before {
                background: #0055b8;
            }

            .pago form .checkbox-form .styled-checkbox:checked + label {
                color: #0055b8;
            }

            .pago form .checkbox-form .styled-checkbox:disabled + label {
                color: #bacbd8;
                cursor: auto;
            }

                .pago form .checkbox-form .styled-checkbox:disabled + label:before {
                    box-shadow: none;
                    background: #bacbd8;
                }

            .pago form .checkbox-form .styled-checkbox:checked + label:after {
                content: "";
                position: absolute;
                left: 5px;
                top: 9px;
                background: white;
                width: 2px;
                height: 2px;
                box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
                transform: rotate(45deg);
            }

    .pago form .form-group {
        margin: 15px 0;
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -ms-flex-align: center;
        -moz-box-align: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
    }

@media (max-width: 425px) {
    .pago form .form-group {
        -webkit-box-orient: block-axis;
        -webkit-box-orient: vertical;
        -moz-box-orient: block-axis;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago form .form-group {
        -webkit-box-orient: block-axis;
        -webkit-box-orient: vertical;
        -moz-box-orient: block-axis;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}

.pago form .form-group label, .pago form .form-group h3 {
    font-size: 0.875rem;
    color: #595959;
    line-height: 1.4;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    -webkit-flex: 0 1 20%;
    flex: 0 1 20%;
}

@media (max-width: 425px) {
    .pago form .form-group label, .pago form .form-group h3 {
        text-align: left;
        width: 95%;
        margin-bottom: 10px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago form .form-group label, .pago form .form-group h3 {
        text-align: left;
        width: 95%;
        margin-bottom: 10px;
    }
}

.pago form .form-group .adv {
    display: block;
}

.pago form .form-group .input-cont {
    margin-left: 10px;
    -webkit-flex: 0 1 76%;
    flex: 0 1 76%;
}

.pago form .form-group .input-cont-left {
    margin-left: 10px;
    -webkit-flex: 0 1 76%;
    flex: 0 1 76%;
}

@media (max-width: 425px) {
    .pago form .form-group .input-cont {
        width: 95%;
        margin-left: 0;
        -webkit-flex: 1 0 100%;
        flex: 1 0 100%;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago form .form-group .input-cont {
        width: 95%;
        margin-left: 0;
        -webkit-flex: 1 0 100%;
        flex: 1 0 100%;
    }
}

.pago form .form-group .input-cont input {
    margin-left: 0;
    width: 100%;
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
}

.pago form .form-group .input-cont .adv {
    font-size: 0.875rem;
    color: #de482f;
    padding-top: 10px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.pago form .form-group .input-cont-left .adv {
    font-size: 0.875rem;
    color: #de482f;
    padding-top: 10px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.pago form .form-group .input-cont .adv.adv-g {
    color: #808285;
    font-size: 0.8125rem;
    line-height: 1.4;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.pago form .form-group input, .pago form .form-group select, .pago form .form-group .select {
    margin-left: 10px;
    -webkit-flex: 0 1 76%;
    flex: 0 1 76%;
}

@media (max-width: 425px) {
    .pago form .form-group input, .pago form .form-group select, .pago form .form-group .select {
        -webkit-flex: 1 0 100%;
        flex: 1 0 100%;
        margin-left: 0;
        width: 95%;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago form .form-group input, .pago form .form-group select, .pago form .form-group .select {
        -webkit-flex: 1 0 100%;
        flex: 1 0 100%;
        margin-left: 0;
        width: 95%;
    }
}

.pago form .form-group .select-styled, .pago form .form-group select {
    background: none;
    color: #595959;
    font-size: 0.875rem;
    padding: 10px;
    background-image: url("../Content/ecert/imag/v1/icon/chevron_gris.png");
    background-repeat: no-repeat;
    background-position: 98%;
    background-size: 15px;
}

.pago form .form-group .input-cont select {
    margin-left: 0 !important;
    width: 100% !important;
}

.pago form .form-group .select-styled:active:after, .pago form .form-group .select-styled.active:after {
    border-color: transparent transparent #595959 transparent;
}

.pago form .form-group.actividad h3 {
    margin-top: 10px;
    -ms-flex-item-align: start;
    -webkit-align-self: flex-start;
    align-self: flex-start;
}

@media (max-width: 425px) {
    .pago form .form-group.actividad h3 {
        -ms-flex-item-align: center;
        -webkit-align-self: center;
        align-self: center;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago form .form-group.actividad h3 {
        -ms-flex-item-align: center;
        -webkit-align-self: center;
        align-self: center;
    }
}

.pago form .form-group .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 290px;
    right: 0;
    overflow: auto;
    margin-top: 10px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

@media (max-width: 425px) {
    .pago form .form-group .dropdown-content {
        right: -85%;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago form .form-group .dropdown-content {
        right: -85%;
    }
}

.pago form .form-group .dropdown-content .cont-tit {
    margin-bottom: 0;
}

    .pago form .form-group .dropdown-content .cont-tit h4 {
        font-size: 0.875rem;
        color: #58595b;
    }

.pago form .form-group .dropdown-content .img-wrap {
    padding: 0 20px 20px;
}

    .pago form .form-group .dropdown-content .img-wrap img {
        width: 226px;
        margin: 0 auto;
    }

.pago form .form-group .dropdown-m {
    padding-left: 15px;
    position: relative;
    display: inline-block;
}

.pago form .form-group .dropbtn-m {
    background: none;
    font-size: 0.875rem;
    color: #0055b8;
    text-decoration: underline;
    border: none;
    cursor: pointer;
    margin-right: 0;
}

    .pago form .form-group .dropbtn-m:hover, .pago form .form-group .dropbtn-m:focus {
        color: #eba021;
        transition: 0.3s all ease;
    }

.pago form .form-group .active {
    display: block;
}

.pago #paso-2 .content, .pago #paso-3 .content, .pago #paso-4 .content {
    padding: 20px 40px;
}

@media (max-width: 425px) {
    .pago #paso-2 .content, .pago #paso-3 .content, .pago #paso-4 .content {
        padding: 20px 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago #paso-2 .content, .pago #paso-3 .content, .pago #paso-4 .content {
        padding: 20px 0;
    }
}

.pago #paso-4 .img_wrap {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    background-image: url("../Content/ecert/imag/v1/icon/ic_check_blue.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

@media (max-width: 425px) {
    .pago #paso-4 .img_wrap {
        width: 50px;
        height: 50px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago #paso-4 .img_wrap {
        width: 50px;
        height: 50px;
    }
}

.pago #paso-4 .car_sel:hover .img_wrap {
    background-image: url("../Content/ecert/imag/v1/icon/ic_check_white.png");
}

.pago #paso-4 .marker:checked + .car_sel .img_wrap {
    background-image: url("../Content/ecert/imag/v1/icon/ic_check_white.png");
}

.pago .select-styled {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #f2f2f4;
    padding: 8px 15px;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

    .pago .select-styled:after {
        content: "";
        width: 0;
        height: 0;
        border: 7px solid transparent;
        border-color: #595959 transparent transparent transparent;
        position: absolute;
        top: 16px;
        right: 10px;
    }

    .pago .select-styled:hover {
        background-color: #f2f2f4;
    }

.pago .select-options {
    display: none;
    margin-left: 0 !important;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #f2f2f4;
}

    .pago .select-options li[rel=hide] {
        display: none;
    }

    .pago .select-options li {
        margin: 0;
        padding: 12px;
        -moz-transition: all 0.15s ease-in;
        -o-transition: all 0.15s ease-in;
        -webkit-transition: all 0.15s ease-in;
        transition: all 0.15s ease-in;
    }

        .pago .select-options li:hover {
            color: #ffffff;
            background: #eba021;
        }

.pago .select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px;
}

.pago .select-styled:active:after, .pago .select-styled.active:after {
    top: 9px;
    border-color: transparent transparent #ffffff transparent;
}

.pago .select-styled:active, .pago .select-styled.active {
    background-color: #eba021;
    color: #ffffff;
}

.pago .select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 16px;
    color: #595959;
    width: 100%;
    height: 40px;
}

.pago .legal {
    padding-bottom: 40px;
}

    .pago .legal .auxi {
        max-width: 900px;
        box-shadow: none !important;
        -webkit-box-shadow: none !important;
        -moz-box-shadow: none !important;
    }

    .pago .legal p {
        color: #595959;
        line-height: 1.5;
        font-size: 0.875rem;
    }

.pago .paso .legal {
    padding-top: 15px;
}

.pago .legal.condiciones .auxi {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.pago .legal.condiciones h2 {
    margin-bottom: 20px;
    color: #58595b;
    font-size: 1.125rem;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.pago .legal.condiciones .form-group {
    padding-top: 20px;
}

.pago .legal.condiciones label {
    color: #0055b8;
    cursor: pointer;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}

    .pago .legal.condiciones label:hover {
        color: #eba021;
        transition: 0.3s all ease;
    }

.pago .cont-msj {
    padding: 20px 0;
}

    .pago .cont-msj .auxi {
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -ms-flex-align: center;
        -moz-box-align: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
    }

        .pago .cont-msj .auxi .img-wrap {
            margin-right: 20px;
            max-width: 120px;
            -webkit-flex: 0 1 120px;
            flex: 0 1 120px;
        }

        .pago .cont-msj .auxi .cont-txt {
            padding-right: 150px;
            -webkit-flex: 0 1 90%;
            flex: 0 1 90%;
        }

@media (max-width: 425px) {
    .pago .cont-msj .auxi .cont-txt {
        padding-right: 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago .cont-msj .auxi .cont-txt {
        padding-right: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .pago .cont-msj .auxi .cont-txt {
        padding-right: 40px;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .pago .cont-msj .auxi .cont-txt {
        padding-right: 70px;
    }
}

.pago .cont-msj .auxi .cont-txt p {
    font-size: 0.875rem;
    color: #58595b;
    line-height: 1.3;
    letter-spacing: 0.3px;
    margin-bottom: 5px;
    font-style: italic;
}

@media (max-width: 425px) {
    .pago .cont-msj .auxi .cont-txt p {
        font-size: 0.75rem;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .pago .cont-msj .auxi .cont-txt p {
        font-size: 0.75rem;
    }
}

.ayuda {
    padding: 60px 0;
    position: relative;
}

@media (max-width: 425px) {
    .ayuda {
        padding: 30px 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .ayuda {
        padding: 30px 0;
    }
}

@media (max-width: 425px) {
    .ayuda {
        background-image: none !important;
        background-color: #4a4a96;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .ayuda {
        background-image: none !important;
        background-color: #4a4a96;
    }
}

@media (max-width: 425px) {
    .ayuda:before {
        content: none !important;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .ayuda:before {
        content: none !important;
    }
}

.ayuda .cont-tit h2 {
    color: #ffffff;
}

.ayuda .cont-tit .baj {
    color: #ffffff;
}

.ayuda .auxi {
    position: relative;
    max-width: 1000px !important;
    z-index: 2;
}

@media (max-width: 425px) {
    .ayuda .auxi {
        padding: 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .ayuda .auxi {
        padding: 0;
    }
}

.ayuda:before {
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    background: #0055b8;
    background: -moz-linear-gradient(45deg, #0055b8 0%, rgba(1, 140, 207, 0.5) 67%);
    background: -webkit-linear-gradient(45deg, #0055b8 0%, rgba(1, 140, 207, 0.5) 67%);
    background: linear-gradient(45deg, #0055b8 0%, rgba(1, 140, 207, 0.5) 67%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0055b8",endColorstr="#018ccf",GradientType=1);
}

.ayuda .content {
    padding-top: 50px;
    text-align: center;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
}

@media (max-width: 425px) {
    .ayuda .content {
        padding-top: 20px;
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .ayuda .content {
        padding-top: 20px;
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.ayuda .content .swiper-container {
    margin: 0 50px;
    position: initial;
}

@media (max-width: 425px) {
    .ayuda .content .swiper-container {
        margin: 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .ayuda .content .swiper-container {
        margin: 0;
    }
}

@media (max-width: 425px) {
    .ayuda .content .swiper-container .swiper-button-prev, .ayuda .content .swiper-container .swiper-button-next {
        display: none;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .ayuda .content .swiper-container .swiper-button-prev, .ayuda .content .swiper-container .swiper-button-next {
        display: none;
    }
}

@media (max-width: 425px) {
    .ayuda .content .swiper-slide {
        max-width: 260px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .ayuda .content .swiper-slide {
        max-width: 260px;
    }
}

.ayuda .content .box-sec {
    margin: 0;
    -webkit-flex: 1 1 33.3333333333%;
    flex: 1 1 33.3333333333%;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

@media (max-width: 425px) {
    .ayuda .content .box-sec {
        margin: 0;
        margin-bottom: 15px;
        padding: 15px;
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -webkit-box-pack: start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        -ms-flex-align: center;
        -moz-box-align: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-flex: 1 0 100%;
        flex: 1 0 100%;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .ayuda .content .box-sec {
        margin: 0;
        margin-bottom: 15px;
        padding: 15px;
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -webkit-box-pack: start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        -ms-flex-align: center;
        -moz-box-align: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-flex: 1 0 100%;
        flex: 1 0 100%;
    }
}

.ayuda .content .box-sec .img-wrap {
    padding-bottom: 20px;
}

@media (max-width: 425px) {
    .ayuda .content .box-sec .img-wrap {
        padding-bottom: 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .ayuda .content .box-sec .img-wrap {
        padding-bottom: 0;
    }
}

.ayuda .content .box-sec .img-wrap img {
    width: 50px;
    margin: 0 auto;
}

.ayuda .content .box-sec .cont-txt {
    padding: 0 10px;
}

@media (max-width: 425px) {
    .ayuda .content .box-sec .cont-txt {
        max-width: 50vw;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .ayuda .content .box-sec .cont-txt {
        max-width: 50vw;
    }
}

.ayuda .content .box-sec .cont-txt h3 {
    margin-bottom: 25px;
    line-height: 1.2;
    font-size: 1.5rem;
    color: #0055b8;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
}

@media (max-width: 425px) {
    .ayuda .content .box-sec .cont-txt h3 {
        margin-bottom: 0;
        text-align: left;
        font-size: 1.125rem;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .ayuda .content .box-sec .cont-txt h3 {
        margin-bottom: 0;
        text-align: left;
        font-size: 1.125rem;
    }
}

.ayuda .content .box-sec .cont-txt p {
    font-size: 0.8125rem;
    color: #808285;
    line-height: 1.3;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

@media (max-width: 425px) {
    .ayuda .content .box-sec .cont-btn {
        text-align: right !important;
        padding-top: 0 !important;
        -webkit-flex: 1 0 auto;
        flex: 1 0 auto;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .ayuda .content .box-sec .cont-btn {
        text-align: right !important;
        padding-top: 0 !important;
        -webkit-flex: 1 0 auto;
        flex: 1 0 auto;
    }
}

@media (max-width: 425px) {
    .ayuda .content .box-sec .cont-btn a.btn-sec {
        font-size: 0 !important;
        padding: 20px 0 !important;
        width: 100%;
        height: 100%;
        text-align: right;
        -webkit-flex: 1 0 auto;
        flex: 1 0 auto;
    }

        .ayuda .content .box-sec .cont-btn a.btn-sec:after {
            content: "";
            background-image: url("../Content/ecert/imag/v1/icon/chevron_gris.png");
            background-repeat: no-repeat;
            background-position: 100%;
            background-size: 100%;
            position: relative;
            display: inline-block;
            width: 15px;
            height: 15px;
            transform: rotate(-90deg);
        }
}

@media (min-width: 426px) and (max-width: 767px) {
    .ayuda .content .box-sec .cont-btn a.btn-sec {
        font-size: 0 !important;
        padding: 20px 0 !important;
        width: 100%;
        height: 100%;
        text-align: right;
        -webkit-flex: 1 0 auto;
        flex: 1 0 auto;
    }

        .ayuda .content .box-sec .cont-btn a.btn-sec:after {
            content: "";
            background-image: url("../Content/ecert/imag/v1/icon/chevron_gris.png");
            background-repeat: no-repeat;
            background-position: 100%;
            background-size: 100%;
            position: relative;
            display: inline-block;
            width: 15px;
            height: 15px;
            transform: rotate(-90deg);
        }
}

.ayuda .content .box-sec .cont-btn {
    text-align: center;
    padding: 10px 0 0;
}

    .ayuda .content .box-sec .cont-btn .btn-sec {
        display: inline-block;
        font-size: 0.8125rem !important;
        color: #58595b;
        padding: 13px 50px;
        border: 1px solid #ffffff;
        border-radius: 30px;
        letter-spacing: 0.2px;
        font-family: "Roboto", sans-serif;
        font-weight: 700;
    }

.ayuda .content .box-sec .btn-more {
    text-align: center;
    padding: 80px 0 30px;
}

@media (max-width: 425px) {
    .ayuda .content .box-sec .btn-more {
        padding: 20px 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .ayuda .content .box-sec .btn-more {
        padding: 20px 0;
    }
}

.ayuda .content .box-sec .btn-more .btn {
    display: inline-block;
    font-size: 0.875rem !important;
    color: #58595b;
    padding: 13px 50px;
    border: 1px solid #ffffff;
    border-radius: 30px;
    letter-spacing: 0.2px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

@media (max-width: 425px) {
    .ayuda .content .box-sec .btn-more .btn {
        padding: 8px 20px;
        font-size: 0.75rem !important;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .ayuda .content .box-sec .btn-more .btn {
        padding: 8px 20px;
        font-size: 0.75rem !important;
    }
}

.ayuda .cont-btn {
    text-align: center;
    padding: 10px 0 0;
}

    .ayuda .cont-btn .btn-sec {
        display: inline-block;
        font-size: 0.875rem !important;
        color: #ffffff;
        padding: 13px 50px;
        border: 1px solid #ffffff;
        border-radius: 30px;
        letter-spacing: 0.2px;
        font-family: "Roboto", sans-serif;
        font-weight: 700;
    }

.ayuda .btn-more {
    text-align: center;
    padding: 80px 0 30px;
}

@media (max-width: 425px) {
    .ayuda .btn-more {
        padding: 20px 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .ayuda .btn-more {
        padding: 20px 0;
    }
}

.ayuda .btn-more .btn {
    display: inline-block;
    font-size: 0.875rem !important;
    color: #ffffff;
    padding: 13px 50px;
    border: 1px solid #ffffff;
    border-radius: 30px;
    letter-spacing: 0.2px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

@media (max-width: 425px) {
    .ayuda .btn-more .btn {
        padding: 8px 20px;
        font-size: 0.75rem !important;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .ayuda .btn-more .btn {
        padding: 8px 20px;
        font-size: 0.75rem !important;
    }
}

.atencion {
    padding: 60px 0;
}

@media (max-width: 425px) {
    .atencion {
        padding: 30px 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .atencion {
        padding: 30px 0;
    }
}

.atencion .cont-tit {
    text-align: left;
}

    .atencion .cont-tit .tit {
        color: #0055b8;
    }

    .atencion .cont-tit .baj {
        color: #808285;
    }

.atencion .auxi {
    max-width: 1200px !important;
}

    .atencion .auxi .row {
        max-width: 1150px;
        margin: 0 auto;
        padding: 0;
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -ms-flex-align: center;
        -moz-box-align: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
    }

@media (max-width: 425px) {
    .atencion .auxi .row {
        -webkit-box-orient: block-axis;
        -webkit-box-orient: vertical;
        -moz-box-orient: block-axis;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .atencion .auxi .row {
        -webkit-box-orient: block-axis;
        -webkit-box-orient: vertical;
        -moz-box-orient: block-axis;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}

@media (max-width: 425px) {
    .atencion .auxi .row .col {
        border-left-width: 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .atencion .auxi .row .col {
        border-left-width: 0;
    }
}

@media (min-width: 1278px) and (max-width: 1399px) {
    .atencion .auxi .lg-3 {
        width: 30%;
    }
}

@media (min-width: 1278px) and (max-width: 1399px) {
    .atencion .auxi .lg-9 {
        width: 70%;
    }
}

.atencion .auxi .cont-tit h2:after {
    margin-left: 0;
}

@media (max-width: 425px) {
    .atencion .auxi .cont-tit h2:after {
        margin-left: auto;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .atencion .auxi .cont-tit h2:after {
        margin-left: auto;
    }
}

.atencion .auxi .form-control {
    padding-left: 30px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

@media (max-width: 425px) {
    .atencion .auxi .form-control {
        padding-left: 0;
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .atencion .auxi .form-control {
        padding-left: 0;
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .atencion .auxi .form-control {
        padding: 0 20px;
        -webkit-box-orient: block-axis;
        -webkit-box-orient: vertical;
        -moz-box-orient: block-axis;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}

.atencion .auxi .form-control .form-group {
    padding-right: 20px;
}

@media (max-width: 425px) {
    .atencion .auxi .form-control .form-group {
        margin-bottom: 20px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .atencion .auxi .form-control .form-group {
        margin-bottom: 20px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .atencion .auxi .form-control .form-group {
        margin-bottom: 20px;
        padding-right: 0;
    }
}

.atencion .auxi .form-control .form-group:first-child {
    -webkit-flex: 1 0 40%;
    flex: 1 0 40%;
}

@media (max-width: 425px) {
    .atencion .auxi .form-control .form-group:first-child {
        -webkit-flex: 1 0 100%;
        flex: 1 0 100%;
        padding-right: 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .atencion .auxi .form-control .form-group:first-child {
        -webkit-flex: 1 0 100%;
        flex: 1 0 100%;
        padding-right: 0;
    }
}

.atencion .auxi .form-control .form-group:nth-child(2) {
    -webkit-flex: 1 0 35%;
    flex: 1 0 35%;
}

@media (max-width: 425px) {
    .atencion .auxi .form-control .form-group:nth-child(2) {
        -webkit-flex: 1 0 100%;
        flex: 1 0 100%;
        padding-right: 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .atencion .auxi .form-control .form-group:nth-child(2) {
        -webkit-flex: 1 0 100%;
        flex: 1 0 100%;
        padding-right: 0;
    }
}

.atencion .auxi .form-control .form-group select {
    width: 100%;
    background-color: #e6e7e8;
    padding: 13px 45px 13px 30px;
    font-size: 1.125rem;
    border-radius: 30px;
    border: none !important;
    background-image: url("../Content/ecert/imag/v1/icon/chevron_gris.png");
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) 20px;
    background-size: 15px;
    color: #808285;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

@media (max-width: 425px) {
    .atencion .auxi .form-control .form-group select {
        font-size: 0.875rem;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .atencion .auxi .form-control .form-group select {
        font-size: 0.875rem;
    }
}

.atencion .auxi .form-control .btn {
    line-height: 1.5;
    background-color: #0055b8;
    color: #ffffff;
    font-size: 0.8125rem;
    text-transform: uppercase;
    padding: 15px;
    border-radius: 30px;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    -webkit-flex: 1 0 20%;
    flex: 1 0 20%;
}

@media (max-width: 425px) {
    .atencion .auxi .form-control .btn {
        width: 200px;
        margin: 0 auto;
        -webkit-flex: 0 1 200px;
        flex: 0 1 200px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .atencion .auxi .form-control .btn {
        width: 200px;
        margin: 0 auto;
        -webkit-flex: 0 1 200px;
        flex: 0 1 200px;
    }
}

.atencion .direccion {
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid #e6e7e8;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

@media (max-width: 425px) {
    .atencion .direccion {
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .atencion .direccion {
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.atencion .direccion .dir {
    color: #808285;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

@media (max-width: 425px) {
    .atencion .direccion .dir {
        margin-bottom: 15px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .atencion .direccion .dir {
        margin-bottom: 15px;
    }
}

.atencion .direccion .dir p {
    font-size: 0.875rem;
}

.atencion .direccion .img-wrap {
    padding-right: 10px;
}

    .atencion .direccion .img-wrap img {
        width: 21px;
    }

.informacion {
    padding: 60px 0;
}

@media (max-width: 425px) {
    .informacion {
        padding: 30px 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .informacion {
        padding: 30px 0;
    }
}

.informacion .row {
    padding-top: 30px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

@media (max-width: 425px) {
    .informacion .row {
        padding: 30px 20px 0;
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .informacion .row {
        padding: 30px 20px 0;
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .informacion .row {
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.informacion .item {
    text-align: center;
    padding: 0 40px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

@media (max-width: 425px) {
    .informacion .item {
        width: 50%;
        padding: 0 10px 15px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .informacion .item {
        width: 50%;
        padding: 0 10px 15px;
    }
}

.informacion .item img {
    width: 80px;
    margin: 0 auto;
}

@media (max-width: 425px) {
    .informacion .item img {
        width: 58px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .informacion .item img {
        width: 58px;
    }
}

.informacion .item .cont-txt {
    padding-top: 20px;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
}

@media (max-width: 425px) {
    .informacion .item .cont-txt {
        padding-top: 10px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .informacion .item .cont-txt {
        padding-top: 10px;
    }
}

@media (min-width: 1400px) {
    .informacion .item .cont-txt {
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -webkit-box-orient: block-axis;
        -webkit-box-orient: vertical;
        -moz-box-orient: block-axis;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-flex: 1 0 auto;
        flex: 1 0 auto;
    }
}

.informacion .item .cont-txt h3 {
    line-height: 1.5;
    color: #231f20;
    font-size: 1.25rem;
    padding: 0 20px;
    margin-bottom: 15px;
    max-height: 58px;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

@media (max-width: 425px) {
    .informacion .item .cont-txt h3 {
        font-size: 0.875rem;
        padding: 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .informacion .item .cont-txt h3 {
        font-size: 0.875rem;
        padding: 0;
    }
}

@media (min-width: 1400px) {
    .informacion .item .cont-txt h3 {
        flex: 0 1 auto;
    }
}

.informacion .item .cont-txt .baj {
    line-height: 1.3;
    color: #808285;
    font-size: 0.8125rem;
    min-height: 80px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

@media (max-width: 425px) {
    .informacion .item .cont-txt .baj {
        display: none;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .informacion .item .cont-txt .baj {
        display: none;
    }
}

.informacion .logos {
    padding: 60px 0;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

@media (max-width: 425px) {
    .informacion .logos {
        padding: 30px 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .informacion .logos {
        padding: 30px 0;
    }
}

.informacion .logos li {
    padding: 0 10px;
}

.arts {
    padding: 60px 0;
}

@media (max-width: 425px) {
    .arts {
        padding: 30px 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .arts {
        padding: 30px 0;
    }
}

.arts .row {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    -moz-box-align: stretch;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

    .arts .row .col {
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -webkit-box-orient: block-axis;
        -webkit-box-orient: vertical;
        -moz-box-orient: block-axis;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

@media (max-width: 425px) {
    .arts .row .col {
        margin-bottom: 20px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .arts .row .col {
        margin-bottom: 20px;
    }
}

.arts .auxi {
    position: relative;
    z-index: 2;
    max-width: 1100px !important;
}

    .arts .auxi article:hover .cont-txt {
        transition: 0.3s all ease;
        background-color: #0055b8;
        color: #ffffff;
    }

        .arts .auxi article:hover .cont-txt h3, .arts .auxi article:hover .cont-txt p, .arts .auxi article:hover .cont-txt a {
            color: #ffffff;
        }

    .arts .auxi article > a {
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -webkit-flex: 1 1 auto;
        flex: 1 1 auto;
    }

    .arts .auxi .cont-txt {
        background-color: #ffffff;
        padding: 15px;
        width: 100%;
    }

        .arts .auxi .cont-txt .fecha {
            padding-bottom: 7px;
            font-size: 0.875rem;
            color: #595959;
        }

        .arts .auxi .cont-txt h3 {
            font-size: 1.125rem;
            color: #0055b8;
            line-height: 1.3;
            padding-bottom: 15px;
            font-family: "Roboto", sans-serif;
            font-weight: 600;
        }

            .arts .auxi .cont-txt h3 a {
                font-size: 1.125rem;
                color: #0055b8;
                line-height: 1.3;
                font-family: "Roboto", sans-serif;
                font-weight: 600;
            }

        .arts .auxi .cont-txt .bajada {
            font-size: 0.875rem;
            color: #808285;
            line-height: 1.5;
            font-family: "Roboto", sans-serif;
            font-weight: 300;
        }

.menujq > ul {
    margin-left: 0 !important;
    list-style: none;
}

    .menujq > ul > li {
        list-style: none !important;
    }

        .menujq > ul > li > a {
            position: relative;
            display: block;
            margin: 10px 0;
            padding: 15px;
            background-color: #f2f2f4;
            color: #595959;
        }

@media (max-width: 425px) {
    .menujq > ul > li > a {
        padding: 15px 25px 15px 15px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .menujq > ul > li > a {
        padding: 15px 25px 15px 15px;
    }
}

.menujq > ul > li > a:after {
    content: "";
    position: absolute;
    right: 0;
    margin-right: 10px;
    width: 21px;
    height: 21px;
    background-image: url("../Content/ecert/imag/v1/icon/ic_arrow_down_blue.png");
    background-repeat: no-repeat;
    background-position: 90%;
    background-size: 100%;
}

@media (max-width: 425px) {
    .menujq > ul > li > a:after {
        width: 15px;
        height: 15px;
        top: calc(50% - 7px);
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .menujq > ul > li > a:after {
        width: 15px;
        height: 15px;
        top: calc(50% - 7px);
    }
}

.menujq > ul > li.active a {
    background-color: #0055b8;
    color: #ffffff;
}

    .menujq > ul > li.active a:after {
        content: "";
        background-image: url("../Content/ecert/imag/v1/icon/chevron_w_d.png");
        background-repeat: no-repeat;
        transform: rotate(180deg);
    }

.menujq > ul > li.active ul a {
    color: #0055b8;
    background: none;
}

    .menujq > ul > li.active ul a:hover {
        color: #eba021;
        transition: 0.2s all ease;
    }

.menujq > ul > li:first-child > ul {
    display: block;
}

.menujq .desplegable ul {
    margin-left: 15px !important;
    list-style: none;
}

    .menujq .desplegable ul li {
        list-style: none !important;
    }

.menujq .list ul {
    padding: 20px 0;
    list-style: none;
    display: block !important;
}

    .menujq .list ul li {
        list-style: none !important;
    }

        .menujq .list ul li a {
            background: none;
            color: #0055b8;
            display: flex;
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-box;
            display: -ms-flexbox;
            -ms-flex-align: center;
            -moz-box-align: center;
            -webkit-box-align: center;
            -webkit-align-items: center;
            align-items: center;
        }

            .menujq .list ul li a:after {
                content: none;
            }

            .menujq .list ul li a img {
                width: 23px;
                margin-right: 8px;
            }

.dest-full {
    position: relative;
    padding: 60px 0;
}

@media (max-width: 425px) {
    .dest-full {
        padding: 20px 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .dest-full {
        padding: 30px 0;
    }
}

.dest-full:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    content: "";
    opacity: 0.61;
    z-index: 0;
    background: #0055b8;
    background: -moz-linear-gradient(180deg, rgba(0, 85, 184, 0.1) 0%, #0055b8 100%);
    background: -webkit-linear-gradient(180deg, rgba(0, 85, 184, 0.1) 0%, #0055b8 100%);
    background: linear-gradient(180deg, rgba(0, 85, 184, 0.1) 0%, #0055b8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0055b8",endColorstr="#0055b8",GradientType=1);
}

.dest-full .auxi {
    z-index: 2;
    position: relative;
}

    .dest-full .auxi .cont-tit {
        text-align: left;
    }

        .dest-full .auxi .cont-tit .tit:after {
            content: none;
        }

    .dest-full .auxi > .tit {
        line-height: 1.3;
        font-size: 3rem;
        max-width: 45%;
        color: #ffffff;
        font-family: "Roboto", sans-serif;
        font-weight: 700;
    }

@media (max-width: 425px) {
    .dest-full .auxi > .tit {
        font-size: 1.5rem;
        max-width: 100%;
        margin-top: 80px !important;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .dest-full .auxi > .tit {
        font-size: 1.5rem;
        max-width: 100%;
        margin-top: 80px !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .dest-full .auxi > .tit {
        max-width: 65%;
    }
}

.dest-full .auxi > .tit:after {
    content: "";
    position: relative;
    display: block;
    margin: 15px 0;
    width: 90px;
    height: 3px;
    background-color: #eba021;
}

.dest-full .auxi > .baj {
    margin-left: 0;
    line-height: 1.5;
    max-width: 45%;
    font-size: 1.125rem;
}

@media (max-width: 425px) {
    .dest-full .auxi > .baj {
        font-size: 0.875rem;
        max-width: 100%;
        margin-top: 8px !important;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .dest-full .auxi > .baj {
        font-size: 0.875rem;
        max-width: 100%;
        margin-top: 8px !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .dest-full .auxi > .baj {
        max-width: 65%;
    }
}

.dest-full .auxi p, .dest-full .auxi h3, .dest-full .auxi h2 {
    color: #ffffff;
}

.CUERPO img.responsive-img, .CUERPO_uno img.responsive-img, .CUERPO_dos img.responsive-img, .CUERPO_tres img.responsive-img, .CUERPO_cuatro img.responsive-img, .CUERPO_cinco img.responsive-img, .CUERPO_seis img.responsive-img, .CUERPO_siete img.responsive-img, .CUERPO_ocho img.responsive-img, .CUERPO_nueve img.responsive-img, .CUERPO_diez img.responsive-img, .CUERPO_once img.responsive-img, .CUERPO_doce img.responsive-img, .CUERPO_trece img.responsive-img, .CUERPO_catorce img.responsive-img, .CUERPO_quince img.responsive-img, .CUERPO_dieciseis img.responsive-img, .CUERPO_diecisiete img.responsive-img, .CUERPO_dieciocho img.responsive-img, .CUERPO_diecinueve img.responsive-img, .CUERPO_veinte img.responsive-img {
    max-width: 100%;
    height: auto !important;
}

.CUERPO img.no-responsive-img, .CUERPO_uno img.no-responsive-img, .CUERPO_dos img.no-responsive-img, .CUERPO_tres img.no-responsive-img, .CUERPO_cuatro img.no-responsive-img, .CUERPO_cinco img.no-responsive-img, .CUERPO_seis img.no-responsive-img, .CUERPO_siete img.no-responsive-img, .CUERPO_ocho img.no-responsive-img, .CUERPO_nueve img.no-responsive-img, .CUERPO_diez img.no-responsive-img, .CUERPO_once img.no-responsive-img, .CUERPO_doce img.no-responsive-img, .CUERPO_trece img.no-responsive-img, .CUERPO_catorce img.no-responsive-img, .CUERPO_quince img.no-responsive-img, .CUERPO_dieciseis img.no-responsive-img, .CUERPO_diecisiete img.no-responsive-img, .CUERPO_dieciocho img.no-responsive-img, .CUERPO_diecinueve img.no-responsive-img, .CUERPO_veinte img.no-responsive-img {
    width: auto !important;
}

.CUERPO iframe, .CUERPO_uno iframe, .CUERPO_dos iframe, .CUERPO_tres iframe, .CUERPO_cuatro iframe, .CUERPO_cinco iframe, .CUERPO_seis iframe, .CUERPO_siete iframe, .CUERPO_ocho iframe, .CUERPO_nueve iframe, .CUERPO_diez iframe, .CUERPO_once iframe, .CUERPO_doce iframe, .CUERPO_trece iframe, .CUERPO_catorce iframe, .CUERPO_quince iframe, .CUERPO_dieciseis iframe, .CUERPO_diecisiete iframe, .CUERPO_dieciocho iframe, .CUERPO_diecinueve iframe, .CUERPO_veinte iframe {
    width: 100%;
}

.articulo .art-content .auxi, .articulo .enc-art .auxi {
    max-width: 550px;
}

.articulo .art-content .auxi {
    margin-bottom: 30px;
}

.articulo .enc-art {
    padding-top: 30px;
}

    .articulo .enc-art .toolbar {
        padding: 20px 0;
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -ms-flex-align: center;
        -moz-box-align: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
    }

        .articulo .enc-art .toolbar .fecha {
            color: #373737;
            font-size: 0.875rem;
            font-family: "Roboto", sans-serif;
            font-weight: 400;
        }

        .articulo .enc-art .toolbar .cont-share {
            display: flex;
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-box;
            display: -ms-flexbox;
            -ms-flex-align: center;
            -moz-box-align: center;
            -webkit-box-align: center;
            -webkit-align-items: center;
            align-items: center;
        }

            .articulo .enc-art .toolbar .cont-share ul {
                display: flex;
                display: -webkit-box;
                display: -webkit-flex;
                display: -moz-box;
                display: -ms-flexbox;
            }

            .articulo .enc-art .toolbar .cont-share li {
                padding-right: 5px;
            }

                .articulo .enc-art .toolbar .cont-share li a {
                    padding: 5px;
                    display: block;
                    border-radius: 50%;
                }

                    .articulo .enc-art .toolbar .cont-share li a:hover {
                        background-color: #eba021 !important;
                        transition: 0.3s all ease;
                    }

                    .articulo .enc-art .toolbar .cont-share li a.link {
                        background-color: #0055b8;
                    }

                    .articulo .enc-art .toolbar .cont-share li a.twitter {
                        background-color: #1da1f2;
                    }

                    .articulo .enc-art .toolbar .cont-share li a.facebook {
                        background-color: #1877f2;
                    }

                    .articulo .enc-art .toolbar .cont-share li a.print {
                        background: none !important;
                    }

                .articulo .enc-art .toolbar .cont-share li img {
                    width: 25px;
                }

.articulo .anclas {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-orient: inline-axis;
    -webkit-box-orient: horizontal;
    -moz-box-orient: inline-axis;
    -moz-box-orient: horizontal;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 30px 0 0;
}

@media (max-width: 425px) {
    .articulo .anclas {
        margin: 10px 10px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .articulo .anclas {
        margin: 10px 10px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .articulo .anclas {
        margin: 10px 20px;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .articulo .anclas {
        margin: 10px 20px;
    }
}

.articulo .anclas .subtitulos {
    font-weight: normal;
}

    .articulo .anclas .subtitulos a {
        display: block;
        font-size: 0.875rem;
        color: #ffffff;
        margin: 0.3rem 2px;
        padding: 10px 20px;
        background-color: #eba021;
    }

        .articulo .anclas .subtitulos a:hover {
            text-decoration: none;
            background-color: #0055b8;
            transition: 0.2s all ease;
        }

.articulo .contsubtit {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-orient: inline-axis;
    -webkit-box-orient: horizontal;
    -moz-box-orient: inline-axis;
    -moz-box-orient: horizontal;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    line-height: 1;
    width: 100%;
    margin: 20px 0;
    padding: 0.8em 0;
    justify-content: center;
}

    .articulo .contsubtit .titsubtit {
        text-decoration: none;
        color: #0055b8;
        font-size: 0.98rem;
        max-width: 90%;
        line-height: 1.3;
        font-family: "Roboto", sans-serif;
        font-weight: 500;
    }

@media (max-width: 425px) {
    .articulo .contsubtit .titsubtit {
        font-size: 1.25rem;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .articulo .contsubtit .titsubtit {
        font-size: 1.25rem;
    }
}

.articulo .contsubtit .linksubtit {
    margin: 0 6px 0 0 !important;
    padding: 3px 10px !important;
    text-align: center !important;
    font-size: 13px;
    color: #ffffff !important;
    background-color: #0055b8 !important;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

@media (max-width: 425px) {
    .articulo .contsubtit .linksubtit {
        font-size: 0.6875rem;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .articulo .contsubtit .linksubtit {
        font-size: 0.6875rem;
    }
}

.articulo .contsubtit .linksubtit a {
    color: #ffffff !important;
}

.articulo .contsubtit .linksubtit:hover {
    background-color: #0055b8;
    transition: 0.2s all ease;
}

.articulo .media {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin: 30px 0;
}

.articulo .cont_video iframe {
    width: 100%;
}

.articulo .media iframe, .articulo .media object, .articulo .media embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.articulo .relacionados .row {
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

    .articulo .relacionados .row article {
        margin-bottom: 20px;
    }

        .articulo .relacionados .row article:last-child {
            margin-bottom: 0;
        }

@media (min-width: 1278px) and (max-width: 1399px) {
    .articulo .relacionados .row article {
        margin-bottom: 0;
    }
}

@media (min-width: 1400px) {
    .articulo .relacionados .row article {
        margin-bottom: 0;
    }
}

.articulo.formulario .enc-main {
    text-align: center;
    color: #ffffff;
}

.articulo.formulario .form-content {
    padding: 50px 0;
}

    .articulo.formulario .form-content .auxi {
        max-width: 800px;
    }

.articulo.formulario form .form-group {
    padding-bottom: 30px;
}

    .articulo.formulario form .form-group label, .articulo.formulario form .form-group h3 {
        padding-bottom: 10px;
        display: block;
        font-family: "Roboto", sans-serif;
        font-weight: 700;
    }

@media (max-width: 425px) {
    .articulo.formulario form .form-group label, .articulo.formulario form .form-group h3 {
        font-size: 0.875rem;
        line-height: 1.4;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .articulo.formulario form .form-group label, .articulo.formulario form .form-group h3 {
        font-size: 0.875rem;
        line-height: 1.4;
    }
}

.articulo.formulario form .form-group input, .articulo.formulario form .form-group select, .articulo.formulario form .form-group textarea {
    width: 100%;
    font-size: 0.875rem;
}

.articulo.formulario form .form-group .adv, .articulo.formulario form .form-group span {
    font-size: 0.875rem;
    color: #de482f;
    padding-top: 10px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.articulo.formulario form .cont-btn {
    padding: 30px 0;
    text-align: center;
}

    .articulo.formulario form .cont-btn .btn .btn-main {
        display: inline-block;
        font-size: 0.8125rem;
        color: #ffffff;
        padding: 12px 50px;
        background-color: #4F2B83;
        border-radius: 30px;
        letter-spacing: 0.2px;
        font-family: "Roboto", sans-serif;
        font-weight: 700;
    }

    .articulo.formulario form .cont-btn .btn .btn-main:hover {
        background-color: #4F2B83;
        transition: 0.3s all ease;
    }

.articulo .downloads {
    margin: 20px 0 40px;
}

@media (max-width: 425px) {
    .articulo .downloads {
        margin: 20px 10px 30px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .articulo .downloads {
        margin: 20px 10px 30px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .articulo .downloads {
        margin: 20px 20px 40px;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .articulo .downloads {
        margin: 20px 20px 40px;
    }
}

.articulo .downloads .auxi {
    padding: 30px 40px;
    background-color: #ffffff;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.31);
    -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.31);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.31);
}

@media (max-width: 425px) {
    .articulo .downloads .auxi {
        padding: 20px 10px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .articulo .downloads .auxi {
        padding: 20px 10px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .articulo .downloads .auxi {
        padding: 30px 20px;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .articulo .downloads .auxi {
        padding: 30px 20px;
    }
}

@media (min-width: 1400px) {
    .articulo .downloads .auxi {
        max-width: 1115px;
    }
}

.articulo .downloads .auxi h2 {
    font-size: 1rem;
    color: #0055b8;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}

.articulo .downloads .auxi ul {
    padding-top: 20px;
}

    .articulo .downloads .auxi ul li {
        margin-bottom: 15px;
    }

        .articulo .downloads .auxi ul li a {
            display: flex;
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-box;
            display: -ms-flexbox;
            -webkit-box-orient: inline-axis;
            -webkit-box-orient: horizontal;
            -moz-box-orient: inline-axis;
            -moz-box-orient: horizontal;
            -ms-flex-direction: row;
            -webkit-flex-direction: row;
            flex-direction: row;
            -ms-flex-align: center;
            -moz-box-align: center;
            -webkit-box-align: center;
            -webkit-align-items: center;
            align-items: center;
        }

@media (max-width: 425px) {
    .articulo .downloads .auxi ul li a {
        -ms-flex-align: start;
        -webkit-box-align: start;
        -moz-box-align: start;
        -webkit-align-items: flex-start;
        align-items: flex-start;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .articulo .downloads .auxi ul li a {
        -ms-flex-align: start;
        -webkit-box-align: start;
        -moz-box-align: start;
        -webkit-align-items: flex-start;
        align-items: flex-start;
    }
}

.articulo .downloads .auxi ul li a h3 {
    font-size: 1rem;
    color: #595959;
    line-height: 1;
    display: inline-block;
}

@media (max-width: 425px) {
    .articulo .downloads .auxi ul li a h3 {
        font-size: 0.8125rem;
        line-height: 1.3;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .articulo .downloads .auxi ul li a h3 {
        font-size: 0.8125rem;
        line-height: 1.3;
    }
}

.articulo .downloads .auxi ul li a h3:hover {
    color: #eba021;
    transition: 0.2s all ease;
}

.articulo .downloads .auxi ul li a p {
    font-size: 0.9rem;
    color: #808285;
    display: inline-block;
    margin-left: 5px;
}

@media (max-width: 425px) {
    .articulo .downloads .auxi ul li a p {
        font-size: 0.59rem;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .articulo .downloads .auxi ul li a p {
        font-size: 0.59rem;
    }
}

.articulo .downloads .auxi ul li a .img {
    margin-right: 10px;
}

@media (max-width: 425px) {
    .articulo .downloads .auxi ul li a .img {
        margin-right: 0;
    }
}

.articulo .downloads .auxi ul li a .img img {
    width: 1.3rem;
}

@media (max-width: 425px) {
    .articulo .downloads .auxi ul li a .img img {
        width: 0.9rem;
        margin-right: 5px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .articulo .downloads .auxi ul li a .img img {
        width: 0.9rem;
        margin-right: 5px;
    }
}

.articulo .tags .auxi {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

@media (max-width: 425px) {
    .articulo .tags .auxi {
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0 10px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .articulo .tags .auxi {
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0 10px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .articulo .tags .auxi {
        padding: 0 20px;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .articulo .tags .auxi {
        padding: 0 20px;
    }
}

@media (min-width: 1400px) {
    .articulo .tags .auxi {
        max-width: 1115px;
    }
}

.articulo .tags .auxi .tags_title {
    display: inline-block;
    font-size: 1rem;
    color: #0055b8;
    text-transform: uppercase;
    margin-right: 10px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

@media (max-width: 425px) {
    .articulo .tags .auxi .tags_title {
        display: block;
        margin-bottom: 10px;
    }
}

.articulo .tags .auxi .tag {
    font-size: 12px;
    margin-right: 5px;
    margin-bottom: 10px;
    display: inline-block;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}

    .articulo .tags .auxi .tag a {
        color: #0055b8;
        background-color: #bacbd8;
        border-radius: 10px;
        display: block;
        padding: 6px 16px;
    }

        .articulo .tags .auxi .tag a:hover {
            background-color: #0055b8;
            color: #ffffff;
            transition: 0.2s all ease;
        }

.articulo .tags .auxi img {
    display: inline-block;
    vertical-align: middle;
    width: 1.3rem;
    margin-right: 5px;
}

@media (min-width: 100px) and (max-width: 1199px) {
    .art-producto .enc-main .md-4, .art-producto .enc-main .md-8 {
        width: 100%;
    }
}

.art-producto .enc-main .cont-tit {
    padding-right: 50px;
    padding-top: 25px;
    padding-left: 0;
    text-align: left;
}

@media (max-width: 425px) {
    .art-producto .enc-main .cont-tit {
        padding-right: 0;
        text-align: center;
        padding-top: 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .art-producto .enc-main .cont-tit {
        padding-right: 0;
        text-align: center;
        padding-top: 0;
    }
}

.art-producto .enc-main .cont-tit h1, .art-producto .enc-main .cont-tit h2 {
    text-align: left;
}

.art-producto .enc-main .cont-tit .tit {
    color: #ffffff;
}

@media (max-width: 425px) {
    .art-producto .enc-main .cont-tit .tit {
        text-align: center !important;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .art-producto .enc-main .cont-tit .tit {
        text-align: center !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .art-producto .enc-main .cont-tit .tit {
        text-align: center !important;
    }
}

@media (min-width: 100px) and (max-width: 1199px) {
    .art-producto .enc-main .cont-tit .tit {
        text-align: center !important;
    }
}

.art-producto .enc-main .cont-tit .tit:after {
    margin-left: 0;
}

@media (max-width: 425px) {
    .art-producto .enc-main .cont-tit .tit:after {
        margin: 10px auto;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .art-producto .enc-main .cont-tit .tit:after {
        margin: 10px auto;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .art-producto .enc-main .cont-tit .tit:after {
        margin: 10px auto;
    }
}

@media (min-width: 100px) and (max-width: 1199px) {
    .art-producto .enc-main .cont-tit .tit:after {
        margin: 10px auto;
    }
}

.art-producto .enc-main .cont-tit p {
    text-align: left;
}

.art-producto .enc-main .cont-radio .subtitle {
    text-align: center;
    color: #ffffff;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

@media (max-width: 425px) {
    .art-producto .enc-main .cont-radio .subtitle {
        font-size: 0.8125rem;
        line-height: 1.3;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .art-producto .enc-main .cont-radio .subtitle {
        font-size: 0.8125rem;
        line-height: 1.3;
    }
}

.art-producto .enc-main .cont-radio .marker + .car_sel {
    margin: 0;
    margin-right: 20px;
}

@media (max-width: 425px) {
    .art-producto .enc-main .cont-radio .marker + .car_sel {
        margin: 0 auto 20px !important;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .art-producto .enc-main .cont-radio .marker + .car_sel {
        margin: 0 auto 20px !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .art-producto .enc-main .cont-radio .marker + .car_sel {
        max-width: 168px;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .art-producto .enc-main .cont-radio .marker + .car_sel {
        max-width: 220px;
    }
}

@media (min-width: 1200px) and (max-width: 1277px) {
    .art-producto .enc-main .cont-radio .marker + .car_sel {
        max-width: 168px;
    }
}

@media (min-width: 1278px) and (max-width: 1399px) {
    .art-producto .enc-main .cont-radio .marker + .car_sel {
        max-width: 180px;
    }
}

@media (min-width: 1400px) {
    .art-producto .enc-main .cont-radio .marker + .car_sel {
        max-width: 180px;
    }
}

.art-producto .enc-main .cont-radio .marker + .car_sel:last-child {
    margin-right: 0;
}

.art-producto .enc-main .cont-radio .precio {
    padding-top: 5px;
    font-size: 1.5625rem;
    color: #0055b8;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.art-producto .enc-main .cont-radio .iva {
    color: #595959;
    font-size: 0.8125rem;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

.art-producto .enc-main .cont-radio p, .art-producto .enc-main .cont-radio h3 {
    color: #595959;
}

.art-producto .enc-main .cont-radio p {
    padding-top: 5px;
}

.art-producto .enc-main .cont-radio .text_marker {
    font-size: 1rem;
    text-transform: none;
    margin-top: 0;
    margin-bottom: 5px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.art-producto .enc-main .cont-radio .year {
    padding-top: 0;
    margin-bottom: 10px;
    line-height: 100%;
    font-size: 2rem;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.art-producto .enc-main .cont-radio .cont-btn {
    padding-bottom: 10px !important;
}

    .art-producto .enc-main .cont-radio .cont-btn .btn-main {
        font-size: 0.875rem;
    }

.art-producto .enc-main .cont-radio .cont-btn {
    padding: 30px 0;
    text-align: center;
}

.art-producto .enc-main .cont-radio .btn-main {
    display: inline-block;
    font-size: 0.8125rem;
    color: #ffffff;
    padding: 12px 40px;
    background-color: #eba021;
    border-radius: 30px;
    letter-spacing: 0.2px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

@media (max-width: 425px) {
    .art-producto .enc-main .cont-radio .btn-main {
        font-size: 0.75rem !important;
        padding: 12px 20px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .art-producto .enc-main .cont-radio .btn-main {
        font-size: 0.75rem !important;
        padding: 12px 20px;
    }
}

.art-producto .enc-main .cont-radio .btn-main:hover {
    background-color: #eba021;
    transition: 0.3s all ease;
}

.art-producto .enc-main .cont-radio .btn-main.more {
    color: #808285;
    border-bottom: 4px solid #808285;
    margin-left: 20px;
}

.art-producto .producto {
    padding: 30px 0;
}

    .art-producto .producto .auxi {
        max-width: 700px;
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -ms-flex-align: center;
        -moz-box-align: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
    }

@media (max-width: 425px) {
    .art-producto .producto .auxi {
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .art-producto .producto .auxi {
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 425px) {
    .art-producto .producto .auxi .img-wrap {
        width: 100%;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .art-producto .producto .auxi .img-wrap {
        width: 100%;
    }
}

@media (max-width: 425px) {
    .art-producto .producto .auxi .img-wrap img {
        max-width: 200px;
        margin: 0 auto;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .art-producto .producto .auxi .img-wrap img {
        max-width: 200px;
        margin: 0 auto;
    }
}

.art-producto .producto .auxi .cont-txt {
    padding-left: 20px;
}

    .art-producto .producto .auxi .cont-txt .tit {
        margin-bottom: 15px;
        line-height: 100%;
        font-size: 2rem;
        font-family: "Roboto", sans-serif;
        font-weight: 700;
    }

@media (max-width: 425px) {
    .art-producto .producto .auxi .cont-txt .tit {
        font-size: 1.25rem;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .art-producto .producto .auxi .cont-txt .tit {
        font-size: 1.25rem;
    }
}

.art-producto .producto .auxi .cont-txt .txt {
    padding-top: 5px;
    font-size: 1rem;
    color: #595959;
    line-height: 1.4;
    padding-right: 40px;
}

@media (max-width: 425px) {
    .art-producto .producto .auxi .cont-txt .txt {
        font-size: 0.875rem;
        padding-right: 20px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .art-producto .producto .auxi .cont-txt .txt {
        font-size: 0.875rem;
        padding-right: 20px;
    }
}

.art-producto .producto .auxi .cont-txt .precio {
    padding-top: 15px;
    padding-bottom: 5px;
    font-size: 1.5625rem;
    color: #0055b8;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.art-producto .producto .auxi .cont-txt .iva {
    color: #595959;
    font-size: 0.8125rem;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

.art-producto .producto .auxi .cont-txt .nota {
    padding-top: 20px;
    font-size: 0.8125rem;
    color: #808285;
    line-height: 1.3;
    letter-spacing: 0.4px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

@media (max-width: 425px) {
    .art-producto .producto .auxi .cont-txt .nota {
        font-size: 0.75rem;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .art-producto .producto .auxi .cont-txt .nota {
        font-size: 0.75rem;
    }
}

.art-producto.promocion .enc-bg .cont-tit .tit {
    text-align: left;
}

.art-producto.promocion .cont-radio .markers {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

@media (max-width: 425px) {
    .art-producto.promocion .cont-radio .markers {
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .art-producto.promocion .cont-radio .markers {
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
}

.art-producto.promocion .cont-radio .markers .marker + .car_sel {
    max-width: 240px;
    margin-right: 0;
    margin-left: 15px;
    margin-bottom: 15px;
}

@media (max-width: 425px) {
    .art-producto.promocion .cont-radio .markers .marker + .car_sel {
        margin-left: 0;
        padding: 20px 30px;
        min-height: auto;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .art-producto.promocion .cont-radio .markers .marker + .car_sel {
        max-width: 50%;
        margin-left: 10px;
        padding: 20px;
    }
}

@media (max-width: 425px) {
    .art-producto.promocion .cont-radio .markers .marker + .car_sel:last-child {
        margin-bottom: 0;
    }
}

.art-producto.promocion .cont-radio .markers .year {
    line-height: 1.3;
    font-size: 1.25rem;
}

@media (max-width: 425px) {
    .art-producto.promocion .cont-radio .markers .year {
        font-size: 0.875rem;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .art-producto.promocion .cont-radio .markers .year {
        font-size: 0.875rem;
    }
}

.art-producto .informacion .item {
    padding: 0 10px;
}

    .art-producto .informacion .item .cont-txt {
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -webkit-box-orient: block-axis;
        -webkit-box-orient: vertical;
        -moz-box-orient: block-axis;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }

        .art-producto .informacion .item .cont-txt h3 {
            padding: 0;
            max-height: 120px;
            -webkit-line-clamp: 4;
            height: auto;
        }

.envio .exito.cont_msj {
    padding-top: 40px;
}

.envio .exito .mensaje {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

    .envio .exito .mensaje .cont_img {
        margin-right: 15px;
    }

    .envio .exito .mensaje .con_txt {
        margin-left: 20px;
        -webkit-flex: 0 1 65%;
        flex: 0 1 65%;
    }

@media (max-width: 425px) {
    .envio .exito .mensaje .con_txt {
        margin-left: 10px;
    }
}

.envio .exito .mensaje .con_txt .main_tit {
    color: #373737;
    margin-top: 0;
    margin-bottom: 13px;
    font-size: 20px;
}

.envio .exito .mensaje .con_txt .txt {
    line-height: 1.4;
    letter-spacing: 0.3px;
    color: #808285;
}

.envio .exito .ico-print {
    margin: 10px auto;
    width: 110px;
    height: 50px;
    background-image: url("../Content/ecert/imag/v1/icon/ic_print.png");
    background-repeat: no-repeat;
    font-size: 13px;
    color: #808285;
    display: block;
    text-align: right;
}

    .envio .exito .ico-print span {
        display: block;
        padding: 20px 0;
    }

.envio .exito .btn-main {
    transition: 0.3s all ease;
    margin-top: 20px;
    padding: 15px 50px 15px 70px;
}

    .envio .exito .btn-main.btn-encuesta {
        background-image: url("../Content/ecert/imag/v1/icon/text-box-check.png");
        background-repeat: no-repeat;
        background-position: 30px;
        background-size: 20px;
    }

    .envio .exito .btn-main:hover {
        background-color: #0055b8;
    }

.envio .cont-img {
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
}

.envio .txt {
    font-size: 16px;
    color: #555555;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

@media (max-width: 425px) {
    .envio .txt {
        font-size: 14px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .envio .txt {
        font-size: 14px;
    }
}

.envio .main_tit {
    margin: 20px 0;
    font-size: 30px;
    text-transform: uppercase;
    color: #242526;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.envio .cont_msj {
    text-align: center;
    padding: 60px 0;
}

.envio .success-checkmark {
    width: 90px;
    height: 90px;
    margin: 0 auto;
}

    .envio .success-checkmark .check-icon {
        width: 80px;
        height: 80px;
        position: relative;
        border-radius: 50%;
        box-sizing: content-box;
        border: 4px solid #00b069;
    }

        .envio .success-checkmark .check-icon .icon-line {
            height: 5px;
            background-color: #00b069 !important;
            display: block;
            border-radius: 2px;
            position: absolute;
            z-index: 8;
        }

            .envio .success-checkmark .check-icon .icon-line.line-long {
                top: 38px;
                right: 8px;
                width: 47px;
                transform: rotate(-45deg);
                animation: icon-line-long 0.75s;
            }

            .envio .success-checkmark .check-icon .icon-line.line-tip {
                top: 46px;
                left: 14px;
                width: 25px;
                transform: rotate(45deg);
                animation: icon-line-tip 0.75s;
            }

        .envio .success-checkmark .check-icon .icon-circle {
            top: -4px;
            left: -4px;
            z-index: 7;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            position: absolute;
            box-sizing: content-box;
            border: rgba(0, 176, 105, 0.8);
        }

        .envio .success-checkmark .check-icon::before, .envio .success-checkmark .check-icon::after {
            content: "";
            height: 100px;
            position: absolute;
            background: #f2f2f2;
            transform: rotate(-45deg);
        }

@keyframes rotate-circle {
    0%, 5% {
        transform: rotate(-45deg);
    }

    12%, 100% {
        transform: rotate(-405deg);
    }
}

@keyframes icon-line-tip {
    0%, 54% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
}

@keyframes icon-line-long {
    0%, 65% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }

    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
}

.envio .sa-error-left {
    left: 17px;
    transform: rotate(45deg);
    animation: animateXLeft 0.75s;
}

.envio .sa-error-fix {
    background-color: #f2f2f2;
    height: 90px;
    left: 28px;
    position: absolute;
    top: 8px;
    transform: rotate(-45deg);
    width: 5px;
    z-index: 1;
}

.envio .sa-error {
    border-radius: 50%;
    border: 4px solid #F27474;
    box-sizing: content-box;
    height: 80px;
    padding: 0;
    position: relative;
    width: 80px;
    animation: animateErrorIcon 0.5s;
}

.envio .sa-error-x {
    display: block;
    position: relative;
    z-index: 2;
}

.envio .sa-error-placeholder {
    border-radius: 50%;
    border: 4px solid rgba(200, 0, 0, 0.2);
    box-sizing: content-box;
    height: 80px;
    left: -4px;
    position: absolute;
    top: -4px;
    width: 80px;
    z-index: 2;
}

.envio .sa-error-right {
    right: 16px;
    transform: rotate(-45deg);
    animation: animateXRight 0.75s;
}

.envio .sa .sa-error-left, .envio .sa .sa-error-right {
    border-radius: 2px;
    display: block;
    height: 5px;
    position: absolute;
    z-index: 2;
    background-color: #F27474 !important;
    top: 37px;
    width: 47px;
}

.envio .sa {
    width: 140px;
    height: 140px;
    padding: 26px;
    margin: 0 auto;
}

@keyframes rotatePlaceholder {
    0%, 5% {
        transform: rotate(-45deg);
    }

    100%, 12% {
        transform: rotate(-405deg);
    }
}

@keyframes animateErrorIcon {
    0% {
        transform: rotateX(100deg);
        opacity: 0;
    }

    100% {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

@keyframes animateXLeft {
    0%, 65% {
        left: 82px;
        top: 95px;
        width: 0;
    }

    100% {
        left: 17px;
        top: 37px;
        width: 47px;
    }

    84% {
        left: 14px;
        top: 33px;
        width: 47px;
    }
}

@keyframes animateXRight {
    0%, 65% {
        right: 82px;
        top: 95px;
        width: 0;
    }

    100% {
        right: 16px;
        top: 37px;
        width: 47px;
    }

    84% {
        right: 14px;
        top: 33px;
        width: 47px;
    }
}

.envio .voucher {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.31);
    -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.31);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.31);
}

@media (max-width: 425px) {
    .envio .voucher {
        padding: 20px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .envio .voucher {
        padding: 20px;
    }
}

.envio .voucher .subtit {
    padding: 20px 0;
    color: #0055b8;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.envio .voucher .cart-head {
    margin-bottom: 20px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

    .envio .voucher .cart-head li {
        padding: 15px 10px 15px;
        text-align: center;
        background-color: rgba(203, 203, 203, 0.4);
        color: #595959;
        font-size: 0.875rem;
        -webkit-flex: 1 0 20%;
        flex: 1 0 20%;
    }

        .envio .voucher .cart-head li:first-child {
            text-align: left;
            padding-left: 20px;
            -webkit-flex: 1 0 80%;
            flex: 1 0 80%;
        }

.envio .voucher .product {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-align: stretch;
    -moz-box-align: stretch;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    padding: 20px 0;
}

@media (max-width: 425px) {
    .envio .voucher .product {
        -webkit-box-orient: block-axis;
        -webkit-box-orient: vertical;
        -moz-box-orient: block-axis;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .envio .voucher .product {
        -webkit-box-orient: block-axis;
        -webkit-box-orient: vertical;
        -moz-box-orient: block-axis;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}

.envio .voucher .product:hover {
    transition: 0.6s all ease;
    background-color: #f2f2f4;
}

.envio .voucher .product > li {
    text-align: center;
    padding: 0 10px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -ms-flex-align: stretch;
    -moz-box-align: stretch;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 1 0 20%;
    flex: 1 0 20%;
}

    .envio .voucher .product > li:first-child {
        text-align: left;
        padding-left: 20px;
        -webkit-flex: 1 0 80%;
        flex: 1 0 80%;
    }

@media (max-width: 425px) {
    .envio .voucher .product > li:first-child {
        padding-left: 10px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .envio .voucher .product > li:first-child {
        padding-left: 10px;
    }
}

.envio .voucher .product > li p.mobile {
    padding-top: 30px;
    padding-bottom: 10px;
    color: #58595b;
}

.envio .voucher .product > li .name {
    padding-bottom: 9px;
    color: #373737;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}

.envio .voucher .product > li .info {
    font-size: 0.8125rem;
    color: #808285;
    padding-bottom: 6px;
}

    .envio .voucher .product > li .info:last-child {
        padding-bottom: 0;
    }

.envio .voucher .product > li .precio-prod {
    color: #595959;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.envio .voucher .total {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #f2f2f4;
}

    .envio .voucher .total .pref {
        font-size: 0.875rem;
        color: #595959;
        padding-bottom: 7px;
        font-family: "Roboto", sans-serif;
        font-weight: 600;
    }

    .envio .voucher .total p {
        color: #0055b8;
        font-size: 1.5rem;
        font-family: "Roboto", sans-serif;
        font-weight: 700;
    }

.envio .voucher .legal {
    padding: 40px 20px 0;
    font-size: 0.75rem;
    color: #808285;
    text-align: left;
    line-height: 1.5;
}

.port-verificacion .verificacion {
    /*background-color: #f2f2f4;*/
    padding: 15px 0;
}

@media (max-width: 425px) {
    .port-verificacion .verificacion {
        padding: 30px 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .port-verificacion .verificacion {
        padding: 30px 0;
    }
}

.port-verificacion .verificacion .box-sec {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: stretch;
    -moz-box-align: stretch;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
}

    .port-verificacion .verificacion .box-sec h3 {
        font-size: 1rem;
    }

.port-verificacion .verificacion .swiper-button-next, .port-verificacion .verificacion .swiper-button-prev {
    background-image: url("../Content/ecert/imag/v1/icon/chevron_gris.png") !important;
    background-size: 30px !important;
    top: calc(50% - 20px);
}

.port-verificacion .verificacion .swiper-button-prev {
    transform: rotate(90deg);
}

.port-verificacion .verificacion .swiper-button-next {
    transform: rotate(-90deg);
}

@media (max-width: 425px) {
    .port-verificacion .content.wrap-car .swiper-slide:first-child {
        display: none;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .port-verificacion .content.wrap-car .swiper-slide:first-child {
        display: none;
    }
}

.port-verificacion .videos {
    position: relative;
}

    .port-verificacion .videos:before {
        content: "";
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 1;
        position: absolute;
        background: rgba(0, 0, 0, 0.85);
    }

    .port-verificacion .videos .auxi {
        max-width: 1200px !important;
    }

    .port-verificacion .videos .cont-tit .tit, .port-verificacion .videos .cont-tit .baj {
        color: #ffffff;
    }

    .port-verificacion .videos .cont-btn {
        text-align: center;
        padding: 10px 0 0;
    }

        .port-verificacion .videos .cont-btn .btn-sec {
            display: inline-block;
            font-size: 0.875rem !important;
            color: #4F2B83;
            padding: 13px 50px;
            border: 1px solid #4F2B83;
            border-radius: 30px;
            letter-spacing: 0.2px;
            font-family: "Roboto", sans-serif;
            font-weight: 700;
        }

    .port-verificacion .videos .btn-more {
        text-align: center;
        padding: 80px 0 30px;
    }

@media (max-width: 425px) {
    .port-verificacion .videos .btn-more {
        padding: 20px 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .port-verificacion .videos .btn-more {
        padding: 20px 0;
    }
}

.port-verificacion .videos .btn-more .btn {
    display: inline-block;
    font-size: 0.875rem !important;
    color: #ffffff;
    padding: 13px 50px;
    border: 1px solid #ffffff;
    border-radius: 30px;
    letter-spacing: 0.2px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

@media (max-width: 425px) {
    .port-verificacion .videos .btn-more .btn {
        padding: 8px 20px;
        font-size: 0.75rem !important;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .port-verificacion .videos .btn-more .btn {
        padding: 8px 20px;
        font-size: 0.75rem !important;
    }
}

.port-verificacion .ayuda-port .main-tabs .nav-tabs {
    padding: 30px 0;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

@media (max-width: 425px) {
    .port-verificacion .ayuda-port .main-tabs .nav-tabs li {
        width: 50%;
        text-align: center;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .port-verificacion .ayuda-port .main-tabs .nav-tabs li {
        width: 50%;
        text-align: center;
    }
}

@media (max-width: 425px) {
    .port-verificacion .ayuda-port .main-tabs .nav-tabs li a:not(.inactive) {
        background-color: #f2f2f4;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .port-verificacion .ayuda-port .main-tabs .nav-tabs li a:not(.inactive) {
        background-color: #f2f2f4;
    }
}

.port-verificacion .ayuda-port .main-tabs .nav-tabs a {
    text-transform: uppercase;
    cursor: pointer;
    display: block;
    padding: 15px;
    font-size: 0.875rem;
    color: #595959;
    border-bottom: 4px solid rgba(255, 255, 255, 0);
}

@media (max-width: 425px) {
    .port-verificacion .ayuda-port .main-tabs .nav-tabs a {
        height: 100%;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .port-verificacion .ayuda-port .main-tabs .nav-tabs a {
        height: 100%;
    }
}

.port-verificacion .ayuda-port .main-tabs .nav-tabs a:not(.inactive) {
    border-color: #0055b8;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

@media (max-width: 425px) {
    .port-verificacion .ayuda-port .cont-tabs a:not(.inactive) {
        background-color: #eba021 !important;
        color: #ffffff !important;
        border-bottom: 0 !important;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .port-verificacion .ayuda-port .cont-tabs a:not(.inactive) {
        background-color: #eba021 !important;
        color: #ffffff !important;
        border-bottom: 0 !important;
    }
}

.port-verificacion .ayuda-port .content {
    min-height: 400px;
}

    .port-verificacion .ayuda-port .content .cont-txt {
        overflow: visible;
        max-height: 100%;
    }

.noticias .noticias-dest {
    padding: 60px 0;
    padding-bottom: 0;
}

@media (max-width: 425px) {
    .noticias .noticias-dest {
        padding: 30px 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .noticias .noticias-dest {
        padding: 30px 0;
    }
}

.noticias .noticias-dest .auxi {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

@media (max-width: 425px) {
    .noticias .noticias-dest .auxi {
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .noticias .noticias-dest .auxi {
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.noticias .noticias-dest .auxi .col-4 {
    margin-right: 18px;
    -webkit-flex: 1 0 32%;
    flex: 1 0 32%;
}

@media (max-width: 425px) {
    .noticias .noticias-dest .auxi .col-4 {
        -webkit-flex: 1 0 100%;
        flex: 1 0 100%;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .noticias .noticias-dest .auxi .col-4 {
        -webkit-flex: 1 0 100%;
        flex: 1 0 100%;
    }
}

.noticias .noticias-dest .auxi .col-4:last-child {
    margin-right: 0;
}

.noticias .noticias-dest .auxi .col-4 .not-big, .noticias .noticias-dest .auxi .col-4 .not-small {
    position: relative;
    margin-bottom: 18px;
}

    .noticias .noticias-dest .auxi .col-4 .not-big:hover .img-wrap:before, .noticias .noticias-dest .auxi .col-4 .not-small:hover .img-wrap:before {
        content: "";
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        position: absolute;
        background: #0055b8;
        background: -moz-linear-gradient(45deg, #0055b8 0%, rgba(1, 140, 207, 0.5) 67%);
        background: -webkit-linear-gradient(45deg, #0055b8 0%, rgba(1, 140, 207, 0.5) 67%);
        background: linear-gradient(45deg, #0055b8 0%, rgba(1, 140, 207, 0.5) 67%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0055b8",endColorstr="#018ccf",GradientType=1);
    }

    .noticias .noticias-dest .auxi .col-4 .not-big .img-wrap, .noticias .noticias-dest .auxi .col-4 .not-small .img-wrap {
        position: relative;
    }

        .noticias .noticias-dest .auxi .col-4 .not-big .img-wrap:before, .noticias .noticias-dest .auxi .col-4 .not-small .img-wrap:before {
            content: "";
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            z-index: 1;
            transition: 0.2s all ease;
            opacity: 0.9;
            position: absolute;
            background: black;
            background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.8) 100%);
            background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.8) 100%);
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.8) 100%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
        }

    .noticias .noticias-dest .auxi .col-4 .not-big .cont-txt, .noticias .noticias-dest .auxi .col-4 .not-small .cont-txt {
        left: 0;
        right: 0;
        bottom: 0;
        position: absolute;
        z-index: 2;
        padding: 30px;
    }

@media (min-width: 768px) and (max-width: 991px) {
    .noticias .noticias-dest .auxi .col-4 .not-big .cont-txt, .noticias .noticias-dest .auxi .col-4 .not-small .cont-txt {
        padding: 20px;
    }
}

.noticias .noticias-dest .auxi .col-4 .not-big .cont-txt h2, .noticias .noticias-dest .auxi .col-4 .not-big .cont-txt p, .noticias .noticias-dest .auxi .col-4 .not-big .cont-txt span, .noticias .noticias-dest .auxi .col-4 .not-small .cont-txt h2, .noticias .noticias-dest .auxi .col-4 .not-small .cont-txt p, .noticias .noticias-dest .auxi .col-4 .not-small .cont-txt span {
    color: #ffffff;
}

.noticias .noticias-dest .auxi .col-4 .not-big .cont-txt .tag, .noticias .noticias-dest .auxi .col-4 .not-small .cont-txt .tag {
    font-size: 0.75rem;
    border: 1px solid #f2f2f4;
    border-radius: 15px;
    padding: 6px 15px;
    margin-bottom: 10px;
    display: inline-block;
    border-color: #00b069;
    background-color: #00b069;
}

.noticias .noticias-dest .auxi .col-4 .not-big h2 {
    line-height: 1.4;
    font-size: 1.5rem;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}

@media (min-width: 768px) and (max-width: 991px) {
    .noticias .noticias-dest .auxi .col-4 .not-big h2 {
        font-size: 1.25rem;
    }
}

.noticias .noticias-dest .auxi .col-4 .not-big .fecha {
    position: relative;
    bottom: 0;
    padding-top: 25px;
    font-size: 0.875rem;
}

.noticias .noticias-dest .auxi .col-4 .not-small .img-wrap {
    overflow: hidden;
}

.noticias .noticias-dest .auxi .col-4 .not-small h2 {
    line-height: 1.3;
    font-size: 1.125rem;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}

@media (min-width: 768px) and (max-width: 991px) {
    .noticias .noticias-dest .auxi .col-4 .not-small h2 {
        font-size: 0.875rem;
        line-height: 1.5;
    }
}

.noticias .noticias-ant .auxi {
    max-width: 1200px !important;
}

    .noticias .noticias-ant .auxi .cont-btn {
        text-align: center;
        padding: 10px 0 0;
    }

        .noticias .noticias-ant .auxi .cont-btn .btn-sec {
            display: inline-block;
            font-size: 0.875rem !important;
            color: #58595b;
            padding: 13px 50px;
            border: 1px solid #bacbd8;
            border-radius: 30px;
            letter-spacing: 0.2px;
            font-family: "Roboto", sans-serif;
            font-weight: 700;
        }

    .noticias .noticias-ant .auxi .btn-more {
        text-align: center;
        padding: 80px 0 30px;
    }

@media (max-width: 425px) {
    .noticias .noticias-ant .auxi .btn-more {
        padding: 20px 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .noticias .noticias-ant .auxi .btn-more {
        padding: 20px 0;
    }
}

.noticias .noticias-ant .auxi .btn-more .btn {
    display: inline-block;
    font-size: 0.875rem !important;
    color: #58595b;
    padding: 13px 50px;
    border: 1px solid #bacbd8;
    border-radius: 30px;
    letter-spacing: 0.2px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

@media (max-width: 425px) {
    .noticias .noticias-ant .auxi .btn-more .btn {
        padding: 8px 20px;
        font-size: 0.75rem !important;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .noticias .noticias-ant .auxi .btn-more .btn {
        padding: 8px 20px;
        font-size: 0.75rem !important;
    }
}

.taxport .taxlist .auxi {
    max-width: 1200px !important;
}

.taxport .taxlist .row {
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.taxport .taxlist article {
    padding-bottom: 20px;
}

.results .search-desp {
    margin-top: 50px;
    padding-left: 20px;
}

@media (max-width: 425px) {
    .results .search-desp {
        padding: 0 10px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .results .search-desp {
        padding: 0 10px;
    }
}

.results .search-desp .auxi {
    max-width: 900px !important;
}

    .results .search-desp .auxi .search-criteria {
        margin-bottom: 10px;
    }

        .results .search-desp .auxi .search-criteria span {
            font-size: 1.25rem;
            color: #373737;
            line-height: 1.4;
        }

@media (max-width: 425px) {
    .results .search-desp .auxi .search-criteria span {
        font-size: 1.125rem !important;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .results .search-desp .auxi .search-criteria span {
        font-size: 1.125rem !important;
    }
}

.results .search-desp .auxi .search-criteria .criterio {
    color: #0055b8;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.results .search-desp .auxi .results-number {
    font-size: 0.875rem;
    color: #595959;
    line-height: 1.4;
}

.results .arts {
    padding-top: 30px;
}

    .results .arts .auxi {
        max-width: 900px !important;
    }

        .results .arts .auxi article {
            padding-bottom: 20px;
            margin-bottom: 20px;
            border-bottom: 1px solid #f2f2f4;
        }

            .results .arts .auxi article .cont-txt {
                border-radius: 10px;
            }

            .results .arts .auxi article .bajada {
                padding-right: 90px;
            }

@media (max-width: 425px) {
    .results .arts .auxi article .bajada {
        padding-right: 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .results .arts .auxi article .bajada {
        padding-right: 0;
    }
}

.results .form-group {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    margin: 10px 0;
    width: 100%;
}

@media (max-width: 425px) {
    .results .form-group {
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .results .form-group {
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.results .container {
    margin: 10px 0;
    border-top: 1px solid #dddddd;
    padding-top: 10px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

@media (max-width: 425px) {
    .results .container {
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .results .container {
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.results .filt-adv {
    display: none;
    overflow: hidden;
    width: 100%;
    margin-top: 40px;
}

@media (max-width: 425px) {
    .results .filt-adv {
        margin-top: 20px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .results .filt-adv {
        margin-top: 20px;
    }
}

.results .filt {
    width: 100%;
}

    .results .filt .form-group input.form-control::placeholder {
        color: #333333 !important;
    }

    .results .filt .form-group input.form-control::-moz-placeholder {
        color: #333333 !important;
    }

    .results .filt .form-group input.form-control:-ms-input-placeholder {
        color: #333333 !important;
    }

    .results .filt .form-group input.form-control:focus {
        outline: none;
        box-shadow: none !important;
        color: #333333;
    }

    .results .filt .form-group input.form-control:-moz-placeholder {
        color: #333333 !important;
    }

    .results .filt .form-group input.form-control:placeholder-shown {
        color: #333333 !important;
    }

    .results .filt .form-group .btn.btn-default {
        z-index: 100;
        background: none;
        border: none;
        cursor: pointer;
        right: 20px;
        position: relative;
    }

        .results .filt .form-group .btn.btn-default .cont-btn {
            padding: 30px 0;
            text-align: center;
        }

        .results .filt .form-group .btn.btn-default .btn-main {
            display: inline-block;
            font-size: 0.8125rem;
            color: #ffffff;
            padding: 10px 45px;
            background-color: #eba021;
            border-radius: 30px;
            letter-spacing: 0.2px;
            font-family: "Roboto", sans-serif;
            font-weight: 700;
        }

@media (max-width: 425px) {
    .results .filt .form-group .btn.btn-default .btn-main {
        font-size: 0.75rem !important;
        padding: 12px 20px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .results .filt .form-group .btn.btn-default .btn-main {
        font-size: 0.75rem !important;
        padding: 12px 20px;
    }
}

.results .filt .form-group .btn.btn-default .btn-main:hover {
    background-color: #eba021;
    transition: 0.3s all ease;
}

.results .filt .form-group .btn.btn-default .btn-main.more {
    color: #808285;
    border-bottom: 4px solid #808285;
    margin-left: 20px;
}

.results .filt .form-group .form-control {
    width: 100%;
    height: 40px;
    padding: 1px 20px 1px 30px;
    font-size: 15px;
    z-index: 2;
    background: none;
    background-color: #ffffff;
    position: relative;
    bottom: 0;
    border-radius: 30px;
}

.results .filt .filter {
    display: block;
    margin: 0 auto;
    max-width: 600px;
}

.results .filt #filtrar {
    outline: none;
    background: none;
    border: none;
    background-color: #0055b8;
    position: relative;
    display: block;
    float: left;
    color: #ffffff;
    padding: 14px 66px;
    cursor: pointer;
    border-radius: 30px;
    font-size: 16px;
    margin-top: 3px;
    margin-left: 10px;
}

    .results .filt #filtrar:hover {
        background-color: #eba021;
        transition: 0.3s all ease;
    }

.results .filt select {
    width: 100%;
    height: 40px;
    padding: 1px 20px 1px 30px;
    font-size: 15px;
    z-index: 2;
    background-color: #ffffff;
    border: 1px solid #cccccc !important;
    position: relative;
    border-radius: 30px;
}

    .results .filt select:focus {
        outline: none;
    }

.results .opt-cont {
    width: 100%;
}

.results .adv-btn {
    position: relative;
    color: #0055b8;
    font-size: 14px;
    letter-spacing: 0.9px;
    padding: 10px 25px;
    background-color: #f2f2f4;
    border-radius: 22px;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}

@media (max-width: 425px) {
    .results .adv-btn {
        margin-top: 20px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .results .adv-btn {
        margin-top: 20px;
    }
}

.results .sub-btn {
    text-align: center;
}

    .results .sub-btn .btn {
        background: none;
        background-color: #0055b8;
        color: #ffffff;
        border-radius: 26px;
        padding: 13px 70px;
        border: none;
        cursor: pointer;
        font-size: 14px;
        margin: 25px 0 0;
    }

        .results .sub-btn .btn:hover {
            background-color: #eba021;
            transition: 0.3s all ease;
        }

.results .control-label {
    min-width: 215px;
    text-align: right;
    color: #595959;
}

@media (max-width: 425px) {
    .results .control-label {
        text-align: left;
        margin-bottom: 10px;
        margin-top: 10px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .results .control-label {
        text-align: left;
        margin-bottom: 10px;
        margin-top: 10px;
    }
}

.results .date {
    position: relative;
    width: 100%;
}

    .results .date .input-group-addon {
        position: absolute;
        right: 0;
        z-index: 2;
        margin-top: 9px;
        margin-right: 20px;
    }

    .results .date img {
        width: 20px;
    }

.sitemap {
    border-top: 1px solid #eeeeee;
}

    .sitemap .content_sitemap {
        background-color: #f2f2f4;
        padding: 60px 0;
    }

@media (max-width: 425px) {
    .sitemap .content_sitemap {
        padding: 20px 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .sitemap .content_sitemap {
        padding: 30px 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .sitemap .content_sitemap {
        padding: 40px 0;
    }
}

.sitemap .cont_tit {
    margin: 80px 0;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

@media (max-width: 425px) {
    .sitemap .cont_tit {
        margin: 40px 10px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .sitemap .cont_tit {
        margin: 40px 10px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .sitemap .cont_tit {
        margin: 40px 20px;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .sitemap .cont_tit {
        margin: 40px 20px;
    }
}

@media (min-width: 1200px) and (max-width: 1278px) {
    .sitemap .cont_tit {
        margin: 40px 20px;
    }
}

.sitemap .cont_tit .tit {
    font-size: 2.1875rem;
}

@media (max-width: 425px) {
    .sitemap .cont_tit .tit {
        font-size: 2rem;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .sitemap .cont_tit .tit {
        font-size: 2rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .sitemap .cont_tit .tit {
        font-size: 2.3rem;
    }
}

.sitemap .cont_tit .baj {
    margin-top: 20px;
    margin-bottom: 10px;
}

.sitemap .cont_tit p {
    font-size: 0.875rem;
    color: #58595b;
    line-height: 1.3;
}

@media (max-width: 425px) {
    .sitemap .cont_tit p {
        font-size: 0.9rem;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .sitemap .cont_tit p {
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .sitemap .cont_tit p {
        font-size: 0.9rem;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .sitemap .lista_sitio {
        padding: 0 20px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .sitemap .lista_sitio {
        padding: 0 20px;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .sitemap .lista_sitio {
        padding: 0 20px;
    }
}

@media (min-width: 1200px) and (max-width: 1278px) {
    .sitemap .lista_sitio {
        padding: 0 20px;
    }
}

.sitemap .lista_sitio .lista_seccion {
    margin-bottom: 30px;
}

@media (max-width: 425px) {
    .sitemap .lista_sitio .lista_seccion {
        margin-left: 0;
        margin-bottom: 10px;
        padding: 15px;
    }
}

.sitemap .lista_sitio .lista_seccion h2 {
    margin-bottom: 15px;
}

    .sitemap .lista_sitio .lista_seccion h2 a {
        color: #0055b8;
        font-size: 1.25rem;
        font-family: "Roboto", sans-serif;
        font-weight: 700;
    }

        .sitemap .lista_sitio .lista_seccion h2 a:hover {
            color: #eba021;
            transition: 0.2s all ease;
        }

.sitemap .lista_sitio .lista_seccion h3 {
    font-size: 0.9rem;
    margin-bottom: 15px;
    padding-left: 10px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

    .sitemap .lista_sitio .lista_seccion h3 a {
        color: #018ccf;
    }

        .sitemap .lista_sitio .lista_seccion h3 a:hover {
            color: #eba021;
            transition: 0.2s all ease;
        }

.sitemap .lista_sitio .lista_seccion ul {
    margin-top: 25px;
    margin-left: 10px;
    border-left: 3px solid #f2f2f4;
}

    .sitemap .lista_sitio .lista_seccion ul li {
        margin: 17px 0 17px 20px;
    }

        .sitemap .lista_sitio .lista_seccion ul li a {
            color: #808285;
            font-size: 0.8125rem;
            font-family: "Roboto", sans-serif;
            font-weight: 400;
        }

            .sitemap .lista_sitio .lista_seccion ul li a:hover {
                color: #eba021;
                transition: 0.2s all ease;
            }

@media (max-width: 425px) {
    .error_404 .cont_msj {
        padding: 30px 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .error_404 .cont_msj {
        padding: 30px 0;
    }
}

.error_404 .voucher {
    max-width: 680px;
    padding: 70px 40px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
}

@media (max-width: 425px) {
    .error_404 .voucher {
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 30px 20px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .error_404 .voucher {
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 30px 20px;
    }
}

.error_404 .voucher .img-wrap {
    -webkit-flex: 0 1 144px;
    flex: 0 1 144px;
}

@media (max-width: 425px) {
    .error_404 .voucher .img-wrap {
        -webkit-flex: 0 1 100px;
        flex: 0 1 100px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .error_404 .voucher .img-wrap {
        -webkit-flex: 0 1 100px;
        flex: 0 1 100px;
    }
}

.error_404 .voucher .cont-txt {
    text-align: left;
    margin-left: 30px;
}

@media (max-width: 425px) {
    .error_404 .voucher .cont-txt {
        margin-left: 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .error_404 .voucher .cont-txt {
        margin-left: 0;
    }
}

.error_404 .voucher .cont-txt .subtit {
    font-size: 2rem;
    padding-bottom: 15px;
}

@media (max-width: 425px) {
    .error_404 .voucher .cont-txt .subtit {
        font-size: 1.5rem;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .error_404 .voucher .cont-txt .subtit {
        font-size: 1.5rem;
    }
}

.error_404 .voucher .cont-txt .baj {
    font-size: 1.125rem;
    color: #58595b;
    line-height: 1.4;
    margin-bottom: 20px;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}

.error_404 .voucher .cont-txt .pref {
    font-size: 0.875rem;
    line-height: 1.4;
    color: #808285;
    padding-right: 60px;
}

@media (max-width: 425px) {
    .error_404 .voucher .cont-txt .pref {
        padding-right: 0;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .error_404 .voucher .cont-txt .pref {
        padding-right: 0;
    }
}

#copy_div {
    background: #ffffff !important;
    background-color: #ffffff !important;
    height: auto !important;
    padding: 12px 15px !important;
    width: auto !important;
    border-radius: 5px;
    color: #0055b8 !important;
    -webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.3);
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}

@media (max-width: 425px) {
    .form-modal {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .form-modal {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .form-modal {
        width: 700px;
    }
}

@media (min-width: 992px) and (max-width: 1277px) {
    .form-modal {
        width: 700px;
    }
}

@media (min-width: 1278px) and (max-width: 1399px) {
    .form-modal {
        width: 700px;
    }
}

@media (min-width: 1400px) {
    .form-modal {
        width: 800px;
    }
}

@media (max-width: 425px) {
    .form-modal .cont-tit {
        padding: 12px 0;
        margin-bottom: 10px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .form-modal .cont-tit {
        padding: 12px 0;
        margin-bottom: 10px;
    }
}

.form-modal .baj {
    display: block !important;
}

@media (max-width: 425px) {
    .form-modal .baj {
        font-size: 1rem;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .form-modal .baj {
        font-size: 1rem;
    }
}

.form-modal .form-content {
    padding: 0 !important;
}

.form-modal .form-group {
    display: block !important;
}

    .form-modal .form-group input, .form-modal .form-group select {
        margin-left: 0 !important;
    }

    .form-modal .form-group .__validator-alert {
        margin-top: 10px;
    }

/*# sourceMappingURL=main.css.map */


.instruccionesFirma {
    color: #808285;
    font-size: 1rem;
    line-height: 1.3;
    padding-bottom: 20px;
    padding-left: 25px;
    text-align: left;
}

    .instruccionesFirma img {
        width: auto;
    }

.main-div {
    width: 200px;
    height: 100px;
    border: 2px solid black;
    margin: 0 auto;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

#the-canvas {
    border: 1px solid black;
    direction: ltr;
}

#recuadroFirma {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #CD6DB1;
    color: white;
    /* Borde redondeado tipo “píldora” */
    border-radius: 9999px;
    padding: 5px 10px;
    touch-action: none;
    user-select: none;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-size: 15px;
}

@media (max-width: 576px) {
    #recuadroFirma {
       font-size: 10px;
    }
}

input[type="file"]#filDocumento {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

label[for="filDocumento"] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    border: 0px;
    border-radius: 50px;
    /*margin-right: 50px;*/
    transition-duration: 0.5s;
    cursor: pointer;
    /*box-shadow: 0 1px 1px 0 rgba(100,100,100,0.5),0 1px 3px 0 rgba(100, 100, 100, 0.5);*/
    transition: all .5s;
    cursor: pointer;
    background-color: #DDDCDE;
    color: #4F2B83;
    width: 120px;
}

.btn-nxt {
    display: inline-block;
    font-size: 0.8125rem;
    color: #ffffff;
    padding: 5px 10px;
    background-color: #eba021;
    border-radius: 30px;
    letter-spacing: 0.2px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.btn-prev {
    display: inline-block;
    font-size: 0.8125rem;
    color: #ffffff;
    padding: 5px 10px;
    background-color: #eba021;
    border-radius: 30px;
    letter-spacing: 0.2px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.errorDocumento {
    font-size: .875rem;
    color: #de482f;
    padding-top: 10px;
    font-family: "Roboto",sans-serif;
    font-weight: 700;
    text-align:left;
    font-weight:bold;
    margin-bottom:10px;
}

.card-ecert {
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #595959;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
    display: inline-block;
    vertical-align: middle;
}

.email-copy-label {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    color: #2F3B4C;
    font-weight: normal;
    margin: 5px 0;
    display: inline-block;
}

.email-copy {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.email-copy input[type="checkbox"] {
    /* Elimina el aspecto nativo del checkbox */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* Ajusta dimensiones, borde y cursor */
    width: 20px;
    height: 20px;
    border: 2px solid #5e2e84;
    border-radius: 4px;
    margin-right: 8px;
    cursor: pointer;
    outline: none;
}

.email-copy input[type="checkbox"]:checked {
    background-color: #5e2e84;
    background-image: url("data:image/svg+xml,\
    %3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10'%3E\
    %3Cpath fill='none' stroke='%23fff' stroke-width='2' d='M1 5l3 3 7-7'/%3E\
    %3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.email-copy input[type="hidden"][name="enviarCorreo"] {
    display: none; /* Oculta el hidden extra de MVC */
}

.container-ecert {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin-right: auto;
    margin-left: auto;
}

@media only screen and (max-width: 1200px) {
    .container-ecert {
        margin-left: 20px;
        margin-right: 20px;
    }
}

#myDropzoneDiv {
    border: 2px dashed #D3A1C9;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    color: #5E2E84;
}

#myDropzoneDiv .dz-message {
    margin: 0;
}

.upload-icon {
    margin-bottom: 10px;
}

.upload-text {
    margin: 10px 0 20px;
    line-height: 1.4;
    font-size: 0.95rem;
    font-weight: 500;
}

.file-text-previewName {
    color: #1B2E56;
    font-weight: 500;
    text-align:left;
    margin-bottom:5px;
}

.file-text-previewSize {
    color: #1B2E56;
    font-weight: 400;
    text-align: left;
    margin-bottom: 15px;
    font-size: small;
}

.upload-btn {
    background-color: #f2f2f2;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
    color: #5E2E84;
    font-size: 0.95rem;
    transition: background-color 0.2s;
    font-weight: bold;
}

.delete-btn {
    background-color: #f2f2f2;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
    color: #5E2E84;
    font-size: 0.95rem;
    transition: background-color 0.2s;
    font-weight: bold;
}

.delete-btn {
    display: inline-flex;
    align-items: center;
    color: #5E2E84;
    gap: 4px;
}

.upload-btn:hover {
    background-color: #e6e6e6;
}

#myDropzoneDiv.dz-drag-hover {
    background: #f7f7f7 !important;
    border-color: #999 !important;
    color: #666 !important;
}

.icon-cloud-arrow-up {
    color: #C953B9;
}
.form-vistaDocumento {
    margin: 0px !important;
    max-width: 100% !important;
}

.col-fixed {
    border-left-width:0px !important;
}

.pdf-container {
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden; 
    background-color: #fff;
}

.pdf-header {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #f9f9f9;
}

.pdf-viewer {
    padding: 20px;
    background-color: #fff;
    max-height: 700px;
    overflow: auto;
}

.pdf-filename {
    margin-right: auto; 
}

.pdf-pagination {
    margin:auto;
    display: flex;
    align-items: center;
    gap: 5px; /* Espacio entre “Página 1/2” y el bloque de flechas */
    font-family: Arial, sans-serif; 
}

/* Texto "Página 1/2" */
.page-info {
    font-size: 1rem;
    color: #666; /* Gris oscuro */
}

.nav-container {
    display: flex;
    border: 1px solid #888; 
    border-radius: 9999px; 
    overflow: hidden; 
}

/* Cada flecha (botón) */
.nav-btn {
    background: #fff;
    color: #666;
    border: none;
    outline: none;
    padding: 10px 14px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    transition: background-color 0.2s;
}

.nav-btn:hover {
    background-color: #f2f2f2; /* Cambio sutil al pasar el mouse */
}


.password-box {
    display: inline-flex; 
    align-items: center;
    background-color: #f2f2f2;
    border-radius: 20px; 
    padding: 2px 10px; 
    width: 100%;
}

.password-input {
    border: none !important;
    background-color: transparent;
    outline: none;
    flex: 1;
    font-size: 0.95rem;
    color: #333;
}

.password-input::placeholder {
    color: #999;
}

.toggle-visibility {
    cursor: pointer;
    margin-left: 10px; 
    display: inline-flex;
    align-items: center;
}

.toggle-visibility, svg {
    pointer-events: none;
}

.btn-firmar,
.btn-rechazar {
    display: inline-block;
    padding: 10px 40px;
    font-size: 1rem;
    border-radius: 9999px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s;
    width: 100%;
}

.btn-firmar {
    background-color: #5E2E84;
    color: #fff;
    border: none;
}

.btn-firmar:hover {
    background-color: #4c226c;
}

.btn-rechazar {
    background-color: #fff;
    color: #5E2E84;
    border: 1px solid #5E2E84;
    margin-bottom: 20px;
}

.btn-rechazar:hover {
    background-color: #f3ecf8;
}

.action-buttons-vistaDocumento {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin: 0 auto;
}

.col-firmaPdf {
    padding-right: 20px !important;
}

@media only screen and (max-width: 990px) {
    .col-firmaPdf {
        padding-right: 0px !important;
    }
}

.small-svg {
    width: 20px;
    height: 20px;
    color: white;
    display: inline-block;
}

/* Contenedor principal del tooltip */
.tooltip-container {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    margin-left: 6px;
    cursor: pointer;
}

.tooltip-trigger {
    background-color: #808285;
    color: #fff;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    user-select: none;
    transform: translateY(-2px);
}

.tooltip-bubble {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 120%;
    transform: translateY(-50%);
    background-color: #E0E0E0;
    color: #5E2E84;
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    width: 250px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: left;
    word-wrap: break-word;
    white-space: normal;
    transition: visibility 0.2s ease-out, opacity 0.2s ease-out;
    z-index: 999;
}

.tooltip-bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -6px;
  transform: translateY(-50%);

  border-width: 6px;
  border-style: solid;
  border-color: transparent #E0E0E0 transparent transparent;
}

@media (max-width: 768px) {
    .tooltip-bubble {
        left: 50%;
        top: 110%; /* Mostrarlo debajo del “?” */
        transform: translateX(-50%); /* Centrar */
        max-width: 90vw; /* Para que no exceda el ancho de la pantalla */
    }
}

.tooltip-container:hover .tooltip-bubble {
    visibility: visible;
    opacity: 1;
}

.error-message {
  display: inline-block; 
  color: #e03a3e;      
  padding-top: 4px;          
  margin-top: 4px;
  margin-left: 15px;
  font-size: 0.95rem;          
  font-family: "Roboto", sans-serif;
}

.error-border {
    border: 1px solid #e03a3e !important;
}

.border-dashed-error {
    border: 2px dashed #e03a3e !important;
}


input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}

.input-group-append {
    margin-left: -1px;
}
.input-group-prepend, .input-group-append {
    display: -ms-flexbox;
    display: flex;
}

.input-group > .input-group-append > .btn, .input-group > .input-group-append > .input-group-text, .input-group > .input-group-prepend:not(:first-child) > .btn, .input-group > .input-group-prepend:not(:first-child) > .input-group-text, .input-group > .input-group-prepend:first-child > .btn:not(:first-child), .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}


/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.swiper-container{margin:0 auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-no-flexbox .swiper-slide{float:left}.swiper-container-vertical>.swiper-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform;transition-property:transform,-webkit-transform;-webkit-box-sizing:content-box;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.swiper-container-multirow>.swiper-wrapper{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.swiper-container-free-mode>.swiper-wrapper{-webkit-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out;margin:0 auto}.swiper-slide{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;width:100%;height:100%;position:relative;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform;transition-property:transform,-webkit-transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;-webkit-transition-property:height,-webkit-transform;transition-property:height,-webkit-transform;-o-transition-property:transform,height;transition-property:transform,height;transition-property:transform,height,-webkit-transform}.swiper-container-3d{-webkit-perspective:1200px;perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:-webkit-gradient(linear,right top,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-wp8-horizontal,.swiper-container-wp8-horizontal>.swiper-wrapper{-ms-touch-action:pan-y;touch-action:pan-y}.swiper-container-wp8-vertical,.swiper-container-wp8-vertical>.swiper-wrapper{-ms-touch-action:pan-x;touch-action:pan-x}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:27px;height:44px;margin-top:-22px;z-index:10;cursor:pointer;background-size:27px 44px;background-position:center;background-repeat:no-repeat}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");left:10px;right:auto}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");right:10px;left:auto}.swiper-button-prev.swiper-button-white,.swiper-container-rtl .swiper-button-next.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;-webkit-transition:.3s opacity;-o-transition:.3s opacity;transition:.3s opacity;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transform:scale(.33);-ms-transform:scale(.33);transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{-webkit-transform:scale(.66);-ms-transform:scale(.66);transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{-webkit-transform:scale(.33);-ms-transform:scale(.33);transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{-webkit-transform:scale(.66);-ms-transform:scale(.66);transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{-webkit-transform:scale(.33);-ms-transform:scale(.33);transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:100%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;-webkit-box-shadow:none;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:#007aff}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;-webkit-transition:.2s top,.2s -webkit-transform;transition:.2s top,.2s -webkit-transform;-o-transition:.2s transform,.2s top;transition:.2s transform,.2s top;transition:.2s transform,.2s top,.2s -webkit-transform}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transition:.2s left,.2s -webkit-transform;transition:.2s left,.2s -webkit-transform;-o-transition:.2s transform,.2s left;transition:.2s transform,.2s left;transition:.2s transform,.2s left,.2s -webkit-transform}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transition:.2s right,.2s -webkit-transform;transition:.2s right,.2s -webkit-transform;-o-transition:.2s transform,.2s right;transition:.2s transform,.2s right;transition:.2s transform,.2s right,.2s -webkit-transform}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:#007aff;position:absolute;left:0;top:0;width:100%;height:100%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transform-origin:left top;-ms-transform-origin:left top;transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{-webkit-transform-origin:right top;-ms-transform-origin:right top;transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-white .swiper-pagination-bullet-active{background:#fff}.swiper-pagination-progressbar.swiper-pagination-white{background:rgba(255,255,255,.25)}.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill{background:#fff}.swiper-pagination-black .swiper-pagination-bullet-active{background:#000}.swiper-pagination-progressbar.swiper-pagination-black{background:rgba(0,0,0,.25)}.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill{background:#000}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;-o-object-fit:contain;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%;-webkit-animation:swiper-preloader-spin 1s steps(12,end) infinite;animation:swiper-preloader-spin 1s steps(12,end) infinite}.swiper-lazy-preloader:after{display:block;content:'';width:100%;height:100%;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");background-position:50%;background-size:100%;background-repeat:no-repeat}.swiper-lazy-preloader-white:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")}@-webkit-keyframes swiper-preloader-spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes swiper-preloader-spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-container-fade.swiper-container-free-mode .swiper-slide{-webkit-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;-webkit-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{-webkit-transform-origin:100% 0;-ms-transform-origin:100% 0;transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0;width:100%;height:100%;background:#000;opacity:.6;-webkit-filter:blur(50px);filter:blur(50px);z-index:0}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-coverflow .swiper-wrapper{-ms-perspective:1200px}
.col { border:0px solid rgba(0,0,0,0); float:left; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; -moz-background-clip:padding-box !important; -webkit-background-clip:padding-box !important; background-clip:padding-box !important;}
.col {border-left-width:18px; padding:0 0px;}

.row {margin-left:-18px;}
.row .col:first-child {margin-left:0;}

.row .col.esp:first-child {margin-left:0;}
.row .col.esp:last-child {margin-right:0;}

.span-1 {width:8.33333333333%;}
.span-2 {width:16.6666666667%;}
.span-25 {width:20%;}
.span-3 {width:25.0%;}
.span-4 {width:33.3333333333%;}
.span-5 {width:41.6666666667%;}
.span-6 {width:50.0%;}
.span-7 {width:58.3333333333%;}
.span-8 {width:66.6666666667%;}
.span-9 {width:75.0%;}
.span-10 {width:83.3333333333%;}
.span-11 {width:91.6666666667%;}
.span-12 {margin-left:0; width:100%;}

/*--XS Extra Small MÃ³viles--*/
@media screen and (max-width: 767px) {
	.xs-1 {width:8.33333333333%;}
	.xs-2 {width:16.6666666667%;}
	.xs-25{width:20%}
	.xs-3 {width:25.0%;}
	.xs-4 {width:33.3333333333%;}
	.xs-5 {width:41.6666666667%;}
	.xs-6 {width:50.0%;}
	.xs-7 {width:58.3333333333%;}
	.xs-8 {width:66.6666666667%;}
	.xs-9 {width:75.0%;}
	.xs-10 {width:83.3333333333%;}
	.xs-11 {width:91.6666666667%;}
	.xs-12 {margin-left:0; width:100%;}
    }

/*--XSM Small Móviles--*/
@media (min-width:426px) and (max-width: 766px){
	.xsm-1 {width:8.33333333333%;}
	.xsm-2 {width:16.6666666667%;}
	.xsm-25{width:20%}
	.xsm-3 {width:25.0%;}
	.xsm-4 {width:33.3333333333%;}
	.xsm-5 {width:41.6666666667%;}
	.xsm-6 {width:50.0%;}
	.xsm-7 {width:58.3333333333%;}
	.xsm-8 {width:66.6666666667%;}
	.xsm-9 {width:75.0%;}
	.xsm-10 {width:83.3333333333%;}
	.xsm-11 {width:91.6666666667%;}
	.xsm-12 {margin-left:0; width:100%;}
    }

/*--SM Small Tablet y mÃ³viles grandes--*/
@media screen and (min-width: 768px) and (max-width: 991px) {
	.sm-1 {width:8.33333333333%;}
	.sm-2 {width:16.6666666667%;}
	.sm-25{width:20%}
	.sm-3 {width:25.0%;}
	.sm-4 {width:33.3333333333%;}
	.sm-5 {width:41.6666666667%;}
	.sm-6 {width:50.0%;}
	.sm-7 {width:58.3333333333%;}
	.sm-8 {width:66.6666666667%;}
	.sm-9 {width:75.0%;}
	.sm-10 {width:83.3333333333%;}
	.sm-11 {width:91.6666666667%;}
	.sm-12 {margin-left:0; width:100%;}
    }

/*--MD Medium PC pequeÃ±o y tablet--*/
@media screen and (min-width: 991px) and (max-width: 1199px) {
	.md-1 {width:8.33333333333%;}
	.md-2 {width:16.6666666667%;}
	.md-25{width:20%}
	.md-3 {width:25.0%;}
	.md-4 {width:33.3333333333%;}
	.md-5 {width:41.6666666667%;}
	.md-6 {width:50.0%;}
	.md-7 {width:58.3333333333%;}
	.md-8 {width:66.6666666667%;}
	.md-9 {width:75.0%;}
	.md-10 {width:83.3333333333%;}
	.md-11 {width:91.6666666667%;}
	.md-12 {margin-left:0; width:100%;}
    }

/*--LG Large PC grande--*/
@media screen and (min-width: 1200px) {
	.lg-1 {width:8.33333333333%;}
	.lg-2 {width:16.6666666667%;}
	.lg-25{width:20%}
	.lg-3 {width:25.0%;}
	.lg-4 {width:33.3333333333%;}
	.lg-5 {width:41.6666666667%;}
	.lg-6 {width:50.0%;}
	.lg-7 {width:58.3333333333%;}
	.lg-8 {width:66.6666666667%;}
	.lg-9 {width:75.0%;}
	.lg-10 {width:83.3333333333%;}
	.lg-11 {width:91.6666666667%;}
	.lg-12 {margin-left:0; width:100%;}
    }


.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{background-color:transparent;border:none;font-size:1em}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline;list-style:none;padding:0}.select2-container .select2-selection--multiple .select2-selection__clear{background-color:transparent;border:none;font-size:1em}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;margin-left:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option--selectable{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:26px;margin-right:20px;padding-right:0px}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;padding-bottom:5px;padding-right:5px}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:20px;margin-right:10px;margin-top:5px;padding:1px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;display:inline-block;margin-left:5px;margin-top:5px;padding:0}.select2-container--default .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-right:1px solid #aaa;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#999;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus{background-color:#f1f1f1;color:#333;outline:none}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-left:1px solid #aaa;border-right:none;border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear{float:left;margin-left:10px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--group{padding:0}.select2-container--default .select2-results__option--disabled{color:#999}.select2-container--default .select2-results__option--selected{background-color:#ddd}.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:26px;margin-right:20px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0;padding-bottom:5px;padding-right:5px}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;display:inline-block;margin-left:5px;margin-top:5px;padding:0}.select2-container--classic .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#888;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555;outline:none}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option--group{padding:0}.select2-container--classic .select2-results__option--disabled{color:grey}.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}

a#queesesto {
  position: relative ;
}
a#queesesto:hover::after {
  transform: rotate(0deg);
  width: 120px;
  bottom: 100%;
  left: 50%;
  margin-left: -350px; /* Use half of the width (120/2 = 60), to center the tooltip */
  content: url("../Content/ecert/imag/v1/master/cedula_ecert3.jpg");
  position: absolute ;
  top: 1.1em ;
  background-color: #fff ;
  z-index: 1 ;
}



.select2-container--default .select2-selection--single{
    color: #595959;
    font-size: 0.875rem;
    padding: 10px;
    border: 1px solid #bacbd8 !important;
    background: none;
    border-radius: 0px;

    background-image: url(../Content/ecert/imag/v1/icon/chevron_gris.png);
    background-repeat: no-repeat;
    background-position: 98%;
    background-size: 15px; 
    height: 40px;
}


.select2-container--default .select2-selection--single .select2-selection__arrow {



}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 18px;
}



.modal-open {
  overflow: hidden;
}

body.modal-open,
.modal-open .navbar-fixed-top,
.modal-open .navbar-fixed-bottom {
  margin-right: 15px;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  display: none;
  overflow: auto;
  overflow-y: scroll;
}

.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
      -ms-transform: translate(0, -25%);
          transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
     -moz-transition: -moz-transform 0.3s ease-out;
       -o-transition: -o-transform 0.3s ease-out;
          transition: transform 0.3s ease-out;
}

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

.modal-dialog {
  z-index: 1050;
  width: auto;
  padding: 10px;
  margin-right: auto;
  margin-left: auto;
}

.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  outline: none;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
          box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
  background-color: #000000;
}

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}

.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.modal-header {
  min-height: 16.428571429px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.428571429;
}

.modal-body {
  position: relative;
  padding: 20px;
}

.modal-footer {
  padding: 19px 20px 20px;
  margin-top: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}

.modal-footer:after {
  clear: both;
}

.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}

.modal-footer:after {
  clear: both;
}

.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

@media screen and (min-width: 768px) {
  .modal-dialog {
    right: auto;
    left: 50%;
    width: 600px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
}
/*
	BTN Clave Única.
	Estilos gráficos para el botón de clave única.
	V 1.0.0
	por David Barra, DGD.
	09-07-2019
*/

.btn-cu{
	display: inline-block;
	padding: 8px 18px 8px 15px !important;
	font-family: Roboto, sans-serif;
	font-size: 1em;
	line-height: 1.6em;
	color: #fff;
	text-align: center;
	vertical-align: middle;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
	user-select: none;
	}

.btn-cu .cl-claveunica{
	color:#fff;
	display: inline-block;
	float: left;
	text-indent: -9999px;
	width: 24px;
	height: 24px;
	background: url(../Content/ecert/imag/claveunica.svg); /* Esta URL debe ser modificada segun donde quede alojado el documento */
	background-size: 24px 24px;
}

	.btn-cu .texto{
		padding-left: 3px;
		text-decoration: underline;
		}

	.btn-cu:hover{
		background-color: #0C549C;
	}

	.btn-cu:hover.hover-shw{
		background-color: #0F69C4 !important;
		-webkit-box-shadow: 0px 1px 15px 0px rgba(0,0,0,0.2);
		-moz-box-shadow: 0px 1px 15px 0px rgba(0,0,0,0.2);
		box-shadow: 0px 1px 15px 0px rgba(0,0,0,0.2);
	}

	.btn-cu.s{
		padding: 6px 14px 6px 12px !important;
		font-size: 0.8rem;
	}

	.btn-cu.s .cl-claveunica{
		width: 18px;
		height: 18px;
		background-size: 18px 18px;
	}

	.btn-cu.l{ 
		padding: 11px 30px 11px 23px !important;
		font-size: 1.25rem;
		}

	.btn-cu.l .cl-claveunica{
		width: 32px;
		height: 32px;
		background-size: 32px 32px;
	}

    /* Tamaño fluid-width */
    .btn-cu.btn-fw {
        max-width: 550px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
.swal-form {
  padding-top: 3%;
  overflow: auto;
  height: auto;
}

.swal-form input.nice-input  {
  display: block;
  margin: 0;
  width: 96%;
  font-family: sans-serif;
  font-size: 18px;
  box-shadow: none;
  padding: 10px;
  border: solid 1px #dcdcdc;
  transition: box-shadow 0.3s, border 0.3s;
  height: initial;
}
.swal-form input.nice-input:focus,
.swal-form input.nice-input.focus {
  outline: none;
  border: solid 1px #707070;
  box-shadow: 0 0 5px 1px #969696;
}

.swal-form .patch-swal-styles-for-inputs {
  width: initial !important;
  height: initial !important;
  display: initial !important;
}

body.stop-scrolling{height:100%;overflow:hidden}.sweet-overlay{background-color:#000;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";background-color:rgba(0,0,0,.4);position:fixed;left:0;right:0;top:0;bottom:0;display:none;z-index:9999}.sweet-alert{background-color:#fff;width:478px;padding:17px;border-radius:5px;text-align:center;position:fixed;left:50%;top:50%;margin-left:-256px;margin-top:-200px;overflow:hidden;display:none;z-index:99999}@media all and (max-width:540px){.sweet-alert{width:auto;margin-left:0;margin-right:0;left:15px;right:15px}}.sweet-alert h2{color:#575757;font-size:30px;text-align:center;font-weight:600;text-transform:none;position:relative;margin:25px 0;padding:0;line-height:40px;display:block}.sweet-alert p{color:#333;font-size:16px;font-weight:300;position:relative;text-align:inherit;float:none;margin:0;padding:0;line-height:normal}.sweet-alert fieldset{border:none;position:relative}.sweet-alert .sa-error-container{background-color:#f1f1f1;margin-left:-17px;margin-right:-17px;overflow:hidden;padding:0 10px;max-height:0;webkit-transition:padding .15s,max-height .15s;transition:padding .15s,max-height .15s}.sweet-alert .sa-error-container.show{padding:10px 0;max-height:100px;webkit-transition:padding .2s,max-height .2s;transition:padding .25s,max-height .25s}.sweet-alert .sa-error-container .icon{display:inline-block;width:24px;height:24px;border-radius:50%;background-color:#ea7d7d;color:#fff;line-height:24px;text-align:center;margin-right:3px}.sweet-alert .sa-error-container p{display:inline-block}.sweet-alert .sa-input-error{position:absolute;top:29px;right:26px;width:20px;height:20px;opacity:0;-webkit-transform:scale(.5);transform:scale(.5);-webkit-transform-origin:50% 50%;transform-origin:50% 50%;-webkit-transition:all .1s;transition:all .1s}.sweet-alert .sa-input-error::after,.sweet-alert .sa-input-error::before{content:"";width:20px;height:6px;background-color:#f06e57;border-radius:3px;position:absolute;top:50%;margin-top:-4px;left:50%;margin-left:-9px}.sweet-alert .sa-input-error::before{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.sweet-alert .sa-input-error::after{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.sweet-alert .sa-input-error.show{opacity:1;-webkit-transform:scale(1);transform:scale(1)}.sweet-alert input{width:100%;box-sizing:border-box;border-radius:3px;border:1px solid #d7d7d7;height:43px;margin-top:10px;margin-bottom:17px;font-size:18px;box-shadow:inset 0 1px 1px rgba(0,0,0,.06);padding:0 12px;display:none;-webkit-transition:all .3s;transition:all .3s}.sweet-alert input:focus{outline:0;box-shadow:0 0 3px #c4e6f5;border:1px solid #b4dbed}.sweet-alert.show-input input{display:block}.sweet-alert button{background-color:#AEDEF4;color:#fff;border:none;box-shadow:none;font-size:17px;font-weight:500;-webkit-border-radius:4px;border-radius:5px;padding:10px 32px;margin:26px 5px 0;cursor:pointer}.sweet-alert button:focus{outline:0;box-shadow:0 0 2px rgba(128,179,235,.5),inset 0 0 0 1px rgba(0,0,0,.05)}.sweet-alert button:hover{background-color:#a1d9f2}.sweet-alert button:active{background-color:#81ccee}.sweet-alert button.cancel{background-color:#D0D0D0}.sweet-alert button.cancel:hover{background-color:#c8c8c8}.sweet-alert button.cancel:active{background-color:#b6b6b6}.sweet-alert button.cancel:focus{box-shadow:rgba(197,205,211,.8) 0 0 2px,rgba(0,0,0,.0470588) 0 0 0 1px inset!important}.sweet-alert button::-moz-focus-inner{border:0}.sweet-alert[data-has-cancel-button=false] button{box-shadow:none!important}.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false]{padding-bottom:40px}.sweet-alert .sa-icon{width:80px;height:80px;border:4px solid gray;-webkit-border-radius:40px;border-radius:50%;margin:20px auto;padding:0;position:relative;box-sizing:content-box}.sweet-alert .sa-icon.sa-error{border-color:#F27474}.sweet-alert .sa-icon.sa-error .sa-x-mark{position:relative;display:block}.sweet-alert .sa-icon.sa-error .sa-line{position:absolute;height:5px;width:47px;background-color:#F27474;display:block;top:37px;border-radius:2px}.sweet-alert .sa-icon.sa-error .sa-line.sa-left{-webkit-transform:rotate(45deg);transform:rotate(45deg);left:17px}.sweet-alert .sa-icon.sa-error .sa-line.sa-right{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);right:16px}.sweet-alert .sa-icon.sa-warning{border-color:#F8BB86}.sweet-alert .sa-icon.sa-warning .sa-body{position:absolute;width:5px;height:47px;left:50%;top:10px;-webkit-border-radius:2px;border-radius:2px;margin-left:-2px;background-color:#F8BB86}.sweet-alert .sa-icon.sa-warning .sa-dot{position:absolute;width:7px;height:7px;-webkit-border-radius:50%;border-radius:50%;margin-left:-3px;left:50%;bottom:10px;background-color:#F8BB86}.sweet-alert .sa-icon.sa-info{border-color:#C9DAE1}.sweet-alert .sa-icon.sa-info::before{content:"";position:absolute;width:5px;height:29px;left:50%;bottom:17px;border-radius:2px;margin-left:-2px;background-color:#C9DAE1}.sweet-alert .sa-icon.sa-info::after{content:"";position:absolute;width:7px;height:7px;border-radius:50%;margin-left:-3px;top:19px;background-color:#C9DAE1}.sweet-alert .sa-icon.sa-success{border-color:#A5DC86}.sweet-alert .sa-icon.sa-success::after,.sweet-alert .sa-icon.sa-success::before{content:'';position:absolute;width:60px;height:120px;background:#fff;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.sweet-alert .sa-icon.sa-success::before{-webkit-border-radius:120px 0 0 120px;border-radius:120px 0 0 120px;top:-7px;left:-33px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:60px 60px;transform-origin:60px 60px}.sweet-alert .sa-icon.sa-success::after{-webkit-border-radius:0 120px 120px 0;border-radius:0 120px 120px 0;top:-11px;left:30px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:0 60px;transform-origin:0 60px}.sweet-alert .sa-icon.sa-success .sa-placeholder{width:80px;height:80px;border:4px solid rgba(165,220,134,.2);-webkit-border-radius:40px;border-radius:50%;box-sizing:content-box;position:absolute;left:-4px;top:-4px;z-index:2}.sweet-alert .sa-icon.sa-success .sa-fix{width:5px;height:90px;background-color:#fff;position:absolute;left:28px;top:8px;z-index:1;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.sweet-alert .sa-icon.sa-success .sa-line{height:5px;background-color:#A5DC86;display:block;border-radius:2px;position:absolute;z-index:2}.sweet-alert .sa-icon.sa-success .sa-line.sa-tip{width:25px;left:14px;top:46px;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.sweet-alert .sa-icon.sa-success .sa-line.sa-long{width:47px;right:8px;top:38px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.sweet-alert .sa-icon.sa-custom{background-size:contain;border-radius:0;border:none;background-position:center center;background-repeat:no-repeat}@-webkit-keyframes showSweetAlert{0%{transform:scale(.7);-webkit-transform:scale(.7)}45%{transform:scale(1.05);-webkit-transform:scale(1.05)}80%{transform:scale(.95);-webkit-transform:scale(.95)}100%{transform:scale(1);-webkit-transform:scale(1)}}@keyframes showSweetAlert{0%{transform:scale(.7);-webkit-transform:scale(.7)}45%{transform:scale(1.05);-webkit-transform:scale(1.05)}80%{transform:scale(.95);-webkit-transform:scale(.95)}100%{transform:scale(1);-webkit-transform:scale(1)}}@-webkit-keyframes hideSweetAlert{0%{transform:scale(1);-webkit-transform:scale(1)}100%{transform:scale(.5);-webkit-transform:scale(.5)}}@keyframes hideSweetAlert{0%{transform:scale(1);-webkit-transform:scale(1)}100%{transform:scale(.5);-webkit-transform:scale(.5)}}@-webkit-keyframes slideFromTop{0%{top:0}100%{top:50%}}@keyframes slideFromTop{0%{top:0}100%{top:50%}}@-webkit-keyframes slideToTop{0%{top:50%}100%{top:0}}@keyframes slideToTop{0%{top:50%}100%{top:0}}@-webkit-keyframes slideFromBottom{0%{top:70%}100%{top:50%}}@keyframes slideFromBottom{0%{top:70%}100%{top:50%}}@-webkit-keyframes slideToBottom{0%{top:50%}100%{top:70%}}@keyframes slideToBottom{0%{top:50%}100%{top:70%}}.showSweetAlert[data-animation=pop]{-webkit-animation:showSweetAlert .3s;animation:showSweetAlert .3s}.showSweetAlert[data-animation=none]{-webkit-animation:none;animation:none}.showSweetAlert[data-animation=slide-from-top]{-webkit-animation:slideFromTop .3s;animation:slideFromTop .3s}.showSweetAlert[data-animation=slide-from-bottom]{-webkit-animation:slideFromBottom .3s;animation:slideFromBottom .3s}.hideSweetAlert[data-animation=pop]{-webkit-animation:hideSweetAlert .2s;animation:hideSweetAlert .2s}.hideSweetAlert[data-animation=none]{-webkit-animation:none;animation:none}.hideSweetAlert[data-animation=slide-from-top]{-webkit-animation:slideToTop .4s;animation:slideToTop .4s}.hideSweetAlert[data-animation=slide-from-bottom]{-webkit-animation:slideToBottom .3s;animation:slideToBottom .3s}@-webkit-keyframes animateSuccessTip{0%,54%{width:0;left:1px;top:19px}70%{width:50px;left:-8px;top:37px}84%{width:17px;left:21px;top:48px}100%{width:25px;left:14px;top:45px}}@keyframes animateSuccessTip{0%,54%{width:0;left:1px;top:19px}70%{width:50px;left:-8px;top:37px}84%{width:17px;left:21px;top:48px}100%{width:25px;left:14px;top:45px}}@-webkit-keyframes animateSuccessLong{0%,65%{width:0;right:46px;top:54px}84%{width:55px;right:0;top:35px}100%{width:47px;right:8px;top:38px}}@keyframes animateSuccessLong{0%,65%{width:0;right:46px;top:54px}84%{width:55px;right:0;top:35px}100%{width:47px;right:8px;top:38px}}@-webkit-keyframes rotatePlaceholder{0%,5%{transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}100%,12%{transform:rotate(-405deg);-webkit-transform:rotate(-405deg)}}@keyframes rotatePlaceholder{0%,5%{transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}100%,12%{transform:rotate(-405deg);-webkit-transform:rotate(-405deg)}}.animateSuccessTip{-webkit-animation:animateSuccessTip .75s;animation:animateSuccessTip .75s}.animateSuccessLong{-webkit-animation:animateSuccessLong .75s;animation:animateSuccessLong .75s}.sa-icon.sa-success.animate::after{-webkit-animation:rotatePlaceholder 4.25s ease-in;animation:rotatePlaceholder 4.25s ease-in}@-webkit-keyframes animateErrorIcon{0%{transform:rotateX(100deg);-webkit-transform:rotateX(100deg);opacity:0}100%{transform:rotateX(0deg);-webkit-transform:rotateX(0deg);opacity:1}}@keyframes animateErrorIcon{0%{transform:rotateX(100deg);-webkit-transform:rotateX(100deg);opacity:0}100%{transform:rotateX(0deg);-webkit-transform:rotateX(0deg);opacity:1}}.animateErrorIcon{-webkit-animation:animateErrorIcon .5s;animation:animateErrorIcon .5s}@-webkit-keyframes animateXMark{0%,50%{transform:scale(.4);-webkit-transform:scale(.4);margin-top:26px;opacity:0}80%{transform:scale(1.15);-webkit-transform:scale(1.15);margin-top:-6px}100%{transform:scale(1);-webkit-transform:scale(1);margin-top:0;opacity:1}}@keyframes animateXMark{0%,50%{transform:scale(.4);-webkit-transform:scale(.4);margin-top:26px;opacity:0}80%{transform:scale(1.15);-webkit-transform:scale(1.15);margin-top:-6px}100%{transform:scale(1);-webkit-transform:scale(1);margin-top:0;opacity:1}}.animateXMark{-webkit-animation:animateXMark .5s;animation:animateXMark .5s}@-webkit-keyframes pulseWarning{0%{border-color:#F8D486}100%{border-color:#F8BB86}}@keyframes pulseWarning{0%{border-color:#F8D486}100%{border-color:#F8BB86}}.pulseWarning{-webkit-animation:pulseWarning .75s infinite alternate;animation:pulseWarning .75s infinite alternate}@-webkit-keyframes pulseWarningIns{0%{background-color:#F8D486}100%{background-color:#F8BB86}}@keyframes pulseWarningIns{0%{background-color:#F8D486}100%{background-color:#F8BB86}}.pulseWarningIns{-webkit-animation:pulseWarningIns .75s infinite alternate;animation:pulseWarningIns .75s infinite alternate}
.sweet-alert button.cancel-sesion{
    background-color: red;
}
.sweet-alert button.cancel-sesion:hover {
    background-color: lightcoral;
}

.sweet-alert button.continua-sesion{
    background-color: green;
}
.sweet-alert button.continua-sesion:hover {
    background-color: lightgreen;
}

.sweet-alert button.cancel {
    background-color: #FFFFFF;
    color: #4F2B83;
    border-color: #4F2B83;
    border-style:solid;
    border-width: 2px;
}

.sweet-alert .sa-icon.sa-info {
    border-color: #4F2B83;
}

    .sweet-alert .sa-icon.sa-info::before {
        background-color: #4F2B83;
    }
    .sweet-alert .sa-icon.sa-info::after {
        background-color: #4F2B83;
    }
body {
    font-family: 'Roboto', sans-serif !important;
}

.sin-footer{
    min-height: 100vh;
}

header.cont-tit2 strong {
    font-weight: bold;
}

.footer {
    background-color: #25215F;
}

    .footer .cont-legal {
        padding: 0px 10px 0px 10px;
        display: flex;
        justify-content: space-between;
        margin-right: auto;
        margin-left: auto;
        align-items: center
    }
    .footer .sub-footer{
        border-bottom: 0px;
        padding-bottom: 0px;
    }

    .footer .row-logo-footer {
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .footer .sub-footer .cont-social li{
        padding-left: 15px;
    }

.btn-cu {
    border-radius: 50px;
    background-color: #502C84;
    max-width: 550px;
    width: 80%;
    display: flex;
    justify-content: center;
    padding: 20px;
}

    .btn-cu:hover {
        background-color: #502C84;
    }

.menujq > ul > li.active a {
    background-color: #502C84;
    padding: 20px 0 20px 0;
}

.pago .menujq li a {
    margin-right: 0px;
} 

    .footer .cont-logos img {
        margin: 0 10px 0 10px;
        width: 70%;
    }

.cont-tit .tit {
    color: #25215F;
    font-weight: 300;
    margin-bottom: 0px;
}

.articulo .contsubtit .titsubtit {
    color: #502C84;
}

.cont-tit2 {
    background-color: #F2F2F2;
    border-radius: 7px;
    border-left: 15px solid;
    border-left-color: #25215F;
    padding: 15px;
    color: #25215F;
    padding-left: 45px;
}

.envio .header, .pago .header, .results .header, .taxport .header {
    border-top: 15px solid;
    border-top-color: #25215F;
}

img{
    width: 70%;
}

.header .main-navbar .cont-logo{
    margin-left: 60px;
}

.cont-tit .tit:after {
    margin: 0px;
    width: 0px;
    height: 0px;
}

ol{
    list-style-type: disc;
}

.font-bold{
    font-weight: bold;
}

.sticky .menu-responsive {
    box-shadow: 0px 3px 10px -3px rgba(0, 0, 0, 0.24);
}

.menu-responsive {
    position: fixed;
    top: 0;
    padding: 20px 2px;
    overflow: hidden;
    background-color: #FFFFFF;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    width: 100%;
    z-index: 100;
    box-shadow: 0px 3px 10px -3px rgba(0, 0, 0, 0.24);
    border-top: 15px solid;
    border-top-color: #25215F;
}

@media (min-width: 768px) and (max-width: 991px) {
    .menu-responsive {
        display: block !important;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .cont-tit .tit {
        font-size: 2rem;
    }
}

.pago .cont-btn .auxi .btn-main {
    background-color: #4F2B83;
}
    .pago .cont-btn .auxi .btn-main:hover {
        /* Estilos que se aplicarán cuando se hace hover */
        background-color: #4F2B83;
        /* Puedes agregar otras propiedades según sea necesario */
    }

.cont-tit2 h2{
    font-size: 1.4rem;
    font-weight: bold;
}

.confirm {
    background-color: #4F2B83; /* Color de fondo del botón confirmar */
    color: #fff; /* Color del texto del botón confirmar */
    border: 1px solid #4F2B83; /* Borde del botón confirmar */
}

.header-table {
    font-weight: bold;
    color: #24205E;
}

..pago form .form-group label, .pago form .form-group h3 {
    color: #12263F;
}

.swal-overlay {
    background-color: rgba(43, 165, 137, 0.45);
}


.condiciones {
    accent-color: #4F2B83;
}

.pago form .form-group .dropbtn-m:hover {
    color: #25215F;
}

.pago form .form-group .dropbtn-m {
    
    color: #4F2B83;
}

.btn-prev {
    background-color: #DDDCDE;
    color: #4F2B83;
}

.btn-nxt {
    background-color: #DDDCDE;
    color: #4F2B83;
}

.row-form{
    margin: 0px 20px;
    margin-bottom: 20px;
}

.column{
    margin: 0px 10px;
    border-left-width: 0px;
}

.table-responsive {
    overflow-x: auto;
}

/* Estilo opcional para dar un poco de margen a la tabla */
.table-bordered {
    margin-bottom: 0; /* Puedes ajustar el valor según sea necesario */
}


