.xcertus-no-items {
    display: flex;
    justify-content: center;
}
.cont-app {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}
.cont-app__content {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 30px;
}
.cont-app__aside {
    width: 30%;
}
.asside-seccion {
    min-height: 300px;
    background-color: #EEEEEE;
    border-radius: 25px;
    padding: 15px;
}
.cont-app__content-body {
    background-color: #EEEEEE;
    width: 100%;
    padding: 15px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.swiper {
    width: 23% !important;
}
.swiper-button-prev {
    background-color: transparent !important;
    color: var( --e-global-color-primary ) !important;
    left: -5px !important;
    border-radius: 10px !important;
}
.swiper-button-next {
    background-color: transparent !important;
    color: var( --e-global-color-primary ) !important;
    right: -5px !important;
    border-radius: 10px !important;
    
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    font-size: 1em !important;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.37);
    font-weight: 600;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    font-size: 1em !important;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.37);
    font-weight: 600;
}
.cont-app__content-form {
    background-color: #EEEEEE;
    width: 70%;
    padding: 15px;
    border-radius: 25px;
}
.cont-producto {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
    background-color: white;
    border-radius: 20px;
    border: black solid 2px;
    padding: 15px;
    position: relative;
}
.etiqueta {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    background-color: #F4BE28;
    padding: 5px 10px;
    color: black;
    font-weight: 600;
    white-space: nowrap;
}
.logo-seguro {
    border-radius: 0 !important;
    margin-top: 30px;
    max-width: 80%;
    max-height: 80px;
}
.nombre-producto {
    font-size: 16px;
    font-weight: 600;
    color: black;
    margin: 20px 0 10px 0;
    text-align: center;
}
.cont-estrellas {
    display: flex;
    justify-content: center;
    width: 80%;
    height: fit-content;
}
.cont-especificaciones {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    font-size: 10px;
    border-radius: 15px;
    border: black solid 1px;
    padding: 5px;
    width: 90%;
    color: black;
}
.cont-especificaciones li {
    margin-left: 20px;
}
.precio-prod {
    font-size: 35px;
    font-weight: 800;
    color: black;
}
.btn-comprar-prod {
    margin: 0;
}
.enlace-ver-covertura {
    color: black !important;
    font-size: 12px !important;
    margin-top: 30px !important;
    padding: 0 !important;
    background-color: transparent !important;
    box-shadow: none !important;
    text-transform: none !important;
}
/***MODAL ***/
.title-moal {
    font-weight: 700;
    font-size: 18px;
}
.cont-modal-prestaciones {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0000009f;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
}
.modal-prestaciones {
    background-color: white;
    padding: 20px 20px 20px 20px;
    border-radius: 20px;
    position: relative;
    min-width: 30%;
}
.btn-cerrar-modal {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    font-size: 15px !important;
    margin: 0 !important;
}
.modal-prestaciones__prestacion {
    padding: 5px;
    border: black solid 1px;
    margin: 5px 0;
}
.modal-prestaciones__prestacion_name {
    font-weight: 700;
    font-size: 14px;
}
.modal-prestaciones__prestacion_valor {
    font-size: 12px;
}
.modal-prestaciones__body {
    max-height: 600px;
    overflow-y: auto;
}

/** FORMULARIO **/
#form-datos-customer {
    display: none;
    position: relative;
}
.cont-formulario-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}
.cont-form-group {
    width: 45%;
}
.cont-form-group label {
    font-size: 15px;
}
#title-form-comprar {
    margin: 20px 0;
    font-weight: 600;
}
.title-pasajero-form {
    background-color: rgb(56, 56, 56);
    color: white;
    padding: 5px 15px;
    border-radius: 10px;
}
.btn-comprar-prod2 {
    margin: 20px auto 0 auto;
    text-align: center;
    display: block !important;
    width: fit-content;
}

@media only screen and (max-width: 600px) {
    .modal-prestaciones {
        max-width: 80%;
    }
    .swiper {
        width: 100% !important;
    }
    .cont-app__content-body {
        flex-direction: column;
    }
    .cont-app__content-form {
        width: 100%;
    }
}