:root {
    --s-color-primary: #122A4E;
}


/* html {
    margin: 0px;
    padding: 0px;
}

body {
    margin: 0px;
    padding: 0px;
} */

body {
    padding-top: 56px;
    /* background-image: linear-gradient(red, yellow); */
    /* background-image: linear-gradient(to right, rgb(214, 214, 214) , rgb(240, 240, 240)); */
}


/* ---------------------------------------------------
    GENERAL
----------------------------------------------------- */

.s-rounded {
    border-radius: 30px;
}

.s-size-slider {
    width: 100%;
    height: 50vh;
}

.s-size-banner {
    width: 100%;
    height: 25vh;
}

.s-btn-mas {
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}

.s-btn-menos {
    border-bottom-left-radius: 50%;
    border-top-left-radius: 50%;
    ;
}

.s-btn-primary {
    background: #002568;
}

.s-btn-primary:hover {
    background: #007AD9;
}


/* ---------------------------------------------------
    GLOBO TEXTO
----------------------------------------------------- */

.s-globo-verde {
    background-color: #17C675;
    padding-left: 3px !important;
    padding-right: 3px !important;
    border-radius: 5px !important;
    color: #000;
}

.s-globo-amarillo {
    background-color: #FFD526;
    padding-left: 3px !important;
    padding-right: 3px !important;
    border-radius: 5px !important;
    color: #000;
}


/* ---------------------------------------------------
    ALERTS
----------------------------------------------------- */

.s-popup-title {
    color: #fff;
    font-style: italic;
}

.s-popup-container {
    border-color: red;
    border-radius: 30px;
}

.s-popup-email-container {
    border-color: red;
    border-radius: 30px;
    padding: 12px;
}

.loader {
    width: 90px;
    height: 90px;
    background: no-repeat center/80% url('../../resources/imagenes/loader2.gif') rgb(255, 255, 255);
}


/* ---------------------------------------------------
    AUTOCOMLETADO
----------------------------------------------------- */

.input-autocomplete {
    width: 100%;
    padding: 15px 10px;
    border: none;
    border-bottom: 1px solid #645979;
    outline: none;
    border-radius: 5px 5px 0 0;
    background-color: #ffffff;
}

.list-autocomplete {
    width: 605px;
    /*525*/
    background-color: #ffffff;
    border-radius: 0 0 5px 5px;
    list-style: none;
    position: fixed;
    top: 55px;
    /* overflow-y: scroll; */
    /* max-height: 250px; */
    /* margin-left: 0; */
}

.list-autocomplete li:hover {
    background-color: #485766;
    color: #fff;
}

.list-autocomplete-mov {
    width: 95%;
    /*525*/
    background-color: #ffffff;
    border-radius: 0 0 5px 5px;
    list-style: none;
    position: fixed;
    top: 50px;
    font-size: 0.6rem;
    /* overflow-y: scroll; */
    /* max-height: 250px; */
    /* margin-left: 0; */
}

.list-autocomplete-mov li:hover {
    background-color: #485766;
    color: #fff;
}

.list-modelo {
    /* width: 605px; */
    /*525*/
    background-color: #ffffff;
    border-radius: 0 0 5px 5px;
    /* list-style: none; */
    /* position: relative; */
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 10px;
    overflow-y: auto;
    max-height: 200px;
    /* margin-left: 0; */
}

.list-modelo li:hover {
    background-color: #485766;
    color: #fff;
}

.s-scroll {
    /* scrollbar-width: none; */
}

.s-scroll::-webkit-scrollbar {
    /* display: none; */
}

.s-modal-def {
    z-index: 500;
    /* width:100%; */
    height: 0vh;
    position: fixed;
    background-color: rgba(0, 0, 0, .8);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


/* ---------------------------------------------------
   MODAL ALERTA NOTICIA
----------------------------------------------------- */

.s-mod-card-padre {
    width: 350px;
    height: 100px;
    position: absolute;
    right: 120px;
    top: 85%;
}

.s-mod-card-padre img {
    z-index: 99999;
    width: 30%;
    position: absolute;
    top: 5%;
    right: 0%;
    /* -moz-transform: rotate(125deg);
    -o-transform: rotate(125deg);
    -webkit-transform: rotate(125deg); */
    transform: rotate(130deg);
}

.s-mod-card {
    width: 350px;
    height: 100px;
    padding: 30px 65px 30px 30px;
    background: white;
    position: absolute;
    display: flex;
    place-content: center;
    place-items: center;
    overflow: hidden;
    border-radius: 20px;
    white-space: normal;
}

.s-mod-card h2 {
    z-index: 1;
    color: white;
    font-size: 1.0em;
}

.s-mod-card::before {
    content: '';
    position: absolute;
    width: 70px;
    background-image: linear-gradient(120deg, rgb(0, 183, 255), rgb(255, 48, 255));
    height: 700%;
    animation: rotBGimg 3s linear infinite;
    transition: all 0.2s linear;
}

@keyframes rotBGimg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.s-mod-card::after {
    content: '';
    position: absolute;
    background: #E53F32;
    inset: 5px;
    border-radius: 15px;
}


/* .s-mod-card:hover:before {
    background-image: linear-gradient(180deg, rgb(81, 255, 0), purple);
    animation: rotBGimg 3.5s linear infinite;
  } */


/* ---------------------------------------------------
   BOTON ANIMADO CARRITO
----------------------------------------------------- */

.s-shop-button {
    --border-radius: 50%;
    --border-width: 5px;
    border-radius: 50%;
    appearance: none;
    position: relative;
    padding: .375rem .75rem;
    border: none;
    background-color: var(--s-color-primary);
    font-family: "Roboto", Arial, "Segoe UI", sans-serif;
    font-size: 18px;
    /* font-weight: 500; */
    color: #fff;
    z-index: 2;
    width: 40px;
    height: 40px;
}

.s-shop-button::after {
    --m-i: linear-gradient(#000, #000);
    --m-o: content-box, padding-box;
    content: "";
    position: absolute;
    left: -1px;
    top: -1px;
    width: 42px;
    height: 42px;
    padding: var(--border-width);
    margin: 0;
    border-radius: var(--border-radius);
    /* background-image: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(0, 212, 255, 1) 29%, rgba(9, 9, 121, 1) 100%); */
    background-image: conic-gradient(#122A4E, #003E74, #00539A, #fff, #122A4E);
    -webkit-mask-image: var(--m-i), var(--m-i);
    mask-image: var(--m-i), var(--m-i);
    -webkit-mask-origin: var(--m-o);
    mask-origin: var(--m-o);
    -webkit-mask-clip: var(--m-o);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    filter: hue-rotate(0);
    animation: rotate-hue-shop linear 1500ms infinite;
    animation-play-state: running;
}

.s-shop-button:hover::after {
    animation-play-state: running;
}

@keyframes rotate-hue-shop {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.s-shop-button,
.s-shop-button::after {
    box-sizing: border-box;
}

.s-shop-button:active {
    --border-width: 5px;
}


/* ---------------------------------------------------
   BOTON ANIMADO CARRITO TEXTO
----------------------------------------------------- */

.s-shop-text-button {
    --border-radius: 5px;
    --border-width: 5px;
    border-radius: 5px;
    appearance: none;
    position: relative;
    padding: .375rem .75rem;
    border: none;
    background-color: var(--s-color-primary);
    font-family: "Roboto", Arial, "Segoe UI", sans-serif;
    /* font-size: 18px; */
    /* font-weight: 500; */
    color: #fff;
    /* z-index: 2; */
    width: auto;
    /* height: 50; */
}

.s-shop-text-button::after {
    --m-i: linear-gradient(#000, #000);
    --m-o: content-box, padding-box;
    content: "";
    position: absolute;
    left: -1px;
    top: -1px;
    width: 100%;
    height: 100%;
    padding: var(--border-width);
    margin: 0;
    border-radius: var(--border-radius);
    /* background-image: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(0, 212, 255, 1) 29%, rgba(9, 9, 121, 1) 100%); */
    background-image: conic-gradient(#122A4E, #003E74, #00539A, #fff, #122A4E);
    -webkit-mask-image: var(--m-i), var(--m-i);
    mask-image: var(--m-i), var(--m-i);
    -webkit-mask-origin: var(--m-o);
    mask-origin: var(--m-o);
    -webkit-mask-clip: var(--m-o);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    filter: hue-rotate(0);
    animation: rotate-hue linear 2500ms infinite;
    transition: all 0.5 ease-in-out;
    animation-play-state: running;
}

.s-shop-text-button:hover::after {
    animation-play-state: running;
}

@keyframes rotate-hue {
    0% {
        background-image: conic-gradient(#fff, #122A4E);
    }

    100% {
        background-image: conic-gradient(#122A4E, #fff);
    }
}

.s-shop-text-button,
.s-shop-text-button::after {
    box-sizing: border-box;
}

.s-shop-text-button:active {
    --border-width: 5px;
}


/* ---------------------------------------------------
   BOTON ANIMADO DETAIL
----------------------------------------------------- */

.s-card-animated-regular {
    cursor: pointer;
    /* width: 70%; */
    /* height: 254px; */
    background: var(--s-color-primary);
    position: relative;
    display: flex;
    place-content: center;
    place-items: center;
    overflow: hidden;
    border-radius: 15px;
    padding: 6px 20px 6px 20px;
    /* float: left; */
}

.s-card-animated-regular:hover {
    background-color: #764BFF;
}

.s-card-animated-regular h6 {
    z-index: 1;
    color: white;
    padding-top: 3px;
    /* font-size: 2em; */
}

.s-card-animated-regular::before {
    content: '';
    position: absolute;
    width: 700%;
    background-image: linear-gradient(#122A4E, #003E74, #00539A, #fff, #122A4E);
    height: 160px;
    animation: rotBGimg 2500ms linear infinite;
    transition: all 0.2s linear;
}

@keyframes rotBGimg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.s-card-animated-regular::after {
    content: '';
    position: absolute;
    background: var(--s-color-primary);
    inset: 4px;
    border-radius: 13px;
}

.s-card-animated-regular:hover:after {
    background: var(--s-color-primary);
    transition: all 1.5s ease;
}


/* .s-card-animated-regular:hover:before {
    background-image: linear-gradient(180deg, rgb(81, 255, 0), purple);
    animation: rotBGimg 3.5s linear infinite;
} */


/* ---------------------------------------------------
   BOTON ANIMADO VER MAS
----------------------------------------------------- */

.s-card-animated {
    cursor: pointer;
    width: 100%;
    /* height: 254px; */
    background: #002568;
    position: relative;
    display: flex;
    place-content: center;
    place-items: center;
    overflow: hidden;
    border-radius: 20px;
}

.s-card-animated:hover {
    background-color: #764BFF;
}

.s-card-animated h5 {
    z-index: 1;
    color: white;
    /* font-size: 2em; */
}

.s-card-animated::before {
    content: '';
    position: absolute;
    width: 700%;
    background-image: linear-gradient(180deg, rgb(0, 183, 255), rgb(255, 48, 255));
    height: 80px;
    animation: rotBGimg 3s linear infinite;
    transition: all 0.2s linear;
}

@keyframes rotBGimg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.s-card-animated::after {
    content: '';
    position: absolute;
    background: #002568;
    inset: 5px;
    border-radius: 15px;
}

.s-card-animated:hover:after {
    background: #764BFF;
    transition: all 1.5s ease;
}


/* .s-card-animated:hover:before {
    background-image: linear-gradient(180deg, rgb(81, 255, 0), purple);
    animation: rotBGimg 3.5s linear infinite;
} */


/* ---------------------------------------------------
   LOGIN
----------------------------------------------------- */

.user_card {
    height: 250px;
    /*350*/
    width: 350px;
    margin-top: 100px;
    margin-bottom: auto;
    background: #002568;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-box-sha30w: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 5px;
}

.brand_logo_container {
    position: absolute;
    height: 170px;
    width: 170px;
    top: -75px;
    border-radius: 50%;
    background: #002568;
    padding: 10px;
    text-align: center;
}

.brand_logo {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    border: 2px solid white;
}

.form_container {
    /* margin-top: 100px; */
}

.login_btn {
    width: 100%;
    background: #FFD42A !important;
    color: #000 !important;
}

.login_btn:focus {
    box-shadow: none !important;
    outline: 0px !important;
}

.login_container {
    padding: 0 2rem;
}

.input-group-text {
    background: #FFD42A !important;
    color: white !important;
    border: 0 !important;
    border-radius: 0.25rem 0 0 0.25rem !important;
}

.input_user,
.input_pass:focus {
    box-shadow: none !important;
    outline: 0px !important;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #c0392b !important;
}


/* ---------------------------------------------------
    CONTAINER FLUID AJUSTES
----------------------------------------------------- */

.s-mx {
    margin-top: -50px;
}

.s-center {
    justify-content: center !important;
}


/* ---------------------------------------------------
    BACKGROUND COLOR CUSTOM
----------------------------------------------------- */

.s-bg-red {
    background: skyblue !important;
}

.s-bg-primary {
    background-color: #122a4e;
}

.s-bg-basic {
    background-color: #022B4E;
}

.s-widget-primary {
    background-color: #122a4e;
}

.s-widget-primary:hover {
    background-color: #1d498a;
}

.s-widget-green {
    background-color: #00D670;
}

.s-bg-secundary {
    background-color: #ffd42a;
}

.s-widget-secundary {
    background-color: #ffd42a;
}

.s-widget-secundary:hover {
    background-color: #ffe57b;
}

.s-bg-light {
    background-color: #e7e7e7;
}

.s-widget-light {
    background-color: #ffffff;
}

.s-widget-light:hover {
    background-color: #e9e9e9;
}

.s-widget-menu {
    background-color: transparent;
    color: #000 !important;
}

.s-widget-menu:hover {
    text-decoration: none;
    background-color: #022B4E;
    color: white !important;
}

.s-widget-menu:hover i {
    color: white !important;
}

.s-widget-danger {
    background-color: #FF324D;
}

.s-widget-danger:hover {
    background-color: #ff4059;
}

.s-text-color-primary {
    color: #122a4e;
}

.s-text-color-primary:hover {
    color: #15315a;
}

.s-facturado {
    font-size: 16px;
}

.s-descuento {
    background-color: #FF0039;
    color: white;
    font-size: 13px;
}

.s-texto-tachado {
    color: #999999;
    text-decoration: line-through;
    text-decoration-thickness: 1.4px;
    text-decoration-color: rgb(231, 43, 43);
}

.s-texto-tachado-mdl {
    color: #F0F0F0;
    text-decoration: line-through;
    text-decoration-thickness: 1.3px;
    /* text-decoration-color: #000; */
}

.s-promo {
    font-size: 1.08em !important;
}

.s-texto-promo-oferta {
    padding-right: 4px;
    font-weight: 700;
    background-color: yellow !important;
}

.s-texto-promo-liquidacion {
    padding-right: 4px;
    font-weight: 700;
    background-color: #FF0000 !important;
}

.s-text-color-gray {
    color: #999999;
}

.s-text-color-secundary {
    color: #ffd42a;
}

.s-text-color-secundary:hover {
    color: #ffe57b;
}

.s-text-color-light {
    color: #505050;
}

.s-text-color-light:hover {
    color: #808080;
}

.s-text-decoration {
    text-decoration: line-through;
}

.s-border-color-light {
    border: 1px solid #e0e0e0;
}

.s-widget-detail {
    background-color: #FF5B00;
}

.s-widget-detail:hover {
    background-color: #ffe57b;
}

a:link,
a:visited,
a:active {
    text-decoration: none;
}


/* ---------------------------------------------------
    BOTON FLOTANTE
----------------------------------------------------- */

.btn-inicio {
    position: absolute;
    width: 60px;
    height: 60px;
    /* bottom: 25px; */
    right: 25px;
    background: #002568;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 300ms ease;
}

.btn-inicio:hover {
    background: #FF0039;
    color: #fff;
}

.btn-whatsapp {
    position: absolute;
    width: 60px;
    height: 60px;
    /* bottom: 25px; */
    /* left: 25px; */
    background: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 300ms ease;
}

.btn-whatsapp img {
    width: 60px;
    height: 60px;
}

.btn-inicio-static {
    margin-right: 5px;
    background: #25d366;
    color: #FFF;
    border-radius: 100%;
    text-align: center;
    font-size: 22px;
    padding: 0px 4px;
    transition: all 300ms ease;
}

.btn-inicio-static:hover {
    background: #FF0039;
    color: #fff;
}

.btn-close {
    /*padding: 3px;*/
    position: absolute;
    /*width:60px;
    height:60px;
    line-height: 63px;
    bottom:25px;*/
    right: -3%;
    top: -4%;
    background-color: #FF193B;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    /*font-size: 13px;*/
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 400ms ease;
}

.btn-close:hover {
    background-color: #FF193B;
    color: #fff;
}


/*@media only screen and (min-width:320px) and (max-width:768px){
    .btn-wsp{
        width:63px;
        height:63px;
        line-height: 66px;
    }
}*/


/* ---------------------------------------------------
    ESTILOS INPUT TEXT BUSCAR
----------------------------------------------------- */

.s-input-search {
    border: 1px solid #ffffff;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    padding: 8px;
    width: 400px;
    height: 40px;
    outline: none;
}

.s-input-search:focus {
    outline: none;
}


/* ---------------------------------------------------
    ESTILO BUTTON BUSCAR
----------------------------------------------------- */

.s-btn-search {
    border: none;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
    width: 80px;
    height: 40px;
    margin: 0;
    margin-left: -12px;
}

.s-btn-search:focus {
    outline: none;
}

.s-btn-search-delete {
    border: none;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    width: 40px;
    height: 40px;
    margin-left: -12px;
    background-color: #FFF;
    font-weight: 900;
    font-size: 20px;
}

.s-btn {
    border: none;
    height: 50px;
}

.s-btn:focus {
    outline: none;
}

.s-btn-volver {
    background-color: #FF0039;
    color: #fff;
    border-radius: 20px;
}

.s-btn-volver:hover {
    color: #fff !important;
    background-color: #002C4E;
}

.s-btn-tool {
    width: 40px;
    height: 40px;
}

.s-align-img {
    margin-left: -4px;
}


/* ---------------------------------------------------
    BUSCADOR MOVIL
----------------------------------------------------- */

.form-search-mov button {
    border: none;
    background: none;
    color: #8b8ba7;
}


/* styling of whole input container */

.form-search-mov {
    --timing: 0.3s;
    --width-of-input: 55%;
    --height-of-input: 40px;
    --border-height: 2px;
    --input-bg: #fff;
    --border-color: #2ee9d9;
    --border-radius: 30px;
    --after-border-radius: 1px;
    position: relative;
    width: var(--width-of-input);
    height: var(--height-of-input);
    display: flex;
    align-items: center;
    /* padding-inline: 0.8em; */
    border-radius: var(--border-radius);
    transition: border-radius 0.5s ease;
    background: var(--input-bg, #fff);
}


/* styling of Input */

.input-search-mov {
    font-size: 0.9rem;
    width: 100%;
    height: 100%;
    padding-inline: 0.5em;
    padding-block: 0.7em;
    border: none;
    border-radius: var(--border-radius);
}


/* styling of animated border */

.form-search-mov:before {
    content: "";
    position: absolute;
    background: var(--border-color);
    transform: scaleX(0);
    transform-origin: center;
    width: 100%;
    height: var(--border-height);
    left: 0;
    bottom: 0;
    border-radius: 1px;
    transition: transform var(--timing) ease;
}


/* Hover on Input */

.form-search-mov:focus-within {
    border-radius: var(--after-border-radius);
    width: 80%;
    transition: width 0.5s ease-in-out;
}

.form-search-mov input:focus {
    outline: none;
}


/* here is code of animated border */

.form-search-mov:focus-within:before {
    transform: scale(1);
}


/* styling of close button */


/* == you can click the close button to remove text == */

.reset-search-mov {
    /* border: none;
    background: none;
    opacity: 0;
    visibility: hidden; */
    display: none;
    padding: 0;
}


/* close button shown when typing */

.form-search-mov input:not(:placeholder-shown)~.reset-search-mov {
    /* opacity: 1;
    visibility: visible; */
    display: block;
}


/* sizing svg icons */

.form-search-mov svg {
    width: 17px;
    margin-inline: 0.5em;
}


/* ---------------------------------------------------
    BURBUJAS TEXTO
----------------------------------------------------- */

.s-burbuja-secundary {
    background-color: #EE5500 !important;
    color: #fff !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
    border-radius: 16px !important;
}


/* ---------------------------------------------------
    NAVBAR PRUEBAS
----------------------------------------------------- */

.s-burbuja {
    /*background-color: red !important;*/
    color: #002C4E !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
    border-radius: 16px !important;
}


/* ---------------------------------------------------
    NAVBAR PRUEBAS
----------------------------------------------------- */

.navbar {
    padding: 15px 10px;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}


/* .navbar-nav li:hover .dropdown-menu {
    display: block;
} */

.navbar-nav a:hover .dropdown-menu {
    display: block;
}

.navbar-height {
    height: auto;
}


/* ---------------------------------------------------
    MENU IZQUIERDO
----------------------------------------------------- */

.s-menu-container {
    height: 400px;
    z-index: 1000;
}

.s-menu-lista {
    /* height: 450px; */
    margin-left: -10px;
    margin-right: -10px;
}

.s-recortar-texto {
    border-color: red;
    white-space: nowrap;
    /* text-overflow: ellipsis; */
    word-wrap: break-word;
    overflow: hidden;
}


/* ---------------------------------------------------
    GALERIA DE IMAGENES
----------------------------------------------------- */

.container-gallery-img {
    display: grid;
    /*grid-template-columns: 2fr 1fr;*/
    grid-template-columns: 1fr;
    /*gap:5px;*/
    align-items: flex-start;
    padding: 5px 5%;
}

.container-gallery-img .main-img {
    background: #eee;
    border-radius: 5px;
    padding: 10px;
}

.container-gallery-img .main-img img {
    width: 100%;
    /*height: 50vh;*/
    border-radius: 5px;
}

.container-gallery-img .img-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #eee;
    border-radius: 5px;
    height: 110px;
    overflow-y: scroll;
}

.container-gallery-img .img-list::-webkit-scrollbar {
    width: 7px;
}

.container-gallery-img .img-list::-webkit-scrollbar-track {
    background: #ccc;
    border-radius: 50px;
}

.container-gallery-img .img-list::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 50px;
}

.container-gallery-img .img-list .image img {
    width: 100%;
    height: 100px;
    border-radius: 5px;
}

.container-gallery-img .img-list .image {
    display: flex;
    align-items: center;
    /*gap:15px;*/
    background: #f7f7f7;
    border-radius: 5px;
    /*margin: 10px;*/
    padding: 3px;
    border: 1px solid rgba(0, 0, 0, .1);
    cursor: pointer;
}

.container-gallery-img .img-list .image:hover {
    background: #eee;
}

.container-gallery-img .img-list .image.active {
    background: #2980b9;
}


/* ---------------------------------------------------
    VIDEO DE PRODUCTOS 
----------------------------------------------------- */

.heading-gallery {
    color: #444;
    font-size: 40px;
    text-align: center;
    padding: 10px;
}

.container-gallery {
    display: grid;
    /*grid-template-columns: 2fr 1fr;*/
    grid-template-columns: 1fr;
    gap: 5px;
    align-items: flex-start;
    padding: 5px 5%;
}

.container-gallery .main-video {
    background: #eee;
    border-radius: 5px;
    padding: 10px;
}

.container-gallery .main-video iframe {
    width: 100%;
    height: 50vh;
    border-radius: 5px;
}

.container-gallery .main-video .title {
    color: #333;
    font-size: 23px;
    padding-top: 15px;
    /*padding-bottom: 15px;*/
}

.container-gallery .video-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #eee;
    border-radius: 5px;
    height: 100px;
    overflow-y: scroll;
}

.container-gallery .video-list::-webkit-scrollbar {
    width: 7px;
}

.container-gallery .video-list::-webkit-scrollbar-track {
    background: #ccc;
    border-radius: 50px;
}

.container-gallery .video-list::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 50px;
}

.container-gallery .video-list .vid iframe {
    width: 100px;
    height: 70px;
    border-radius: 5px;
}

.container-gallery .video-list .vid {
    display: flex;
    align-items: center;
    /*gap:15px;*/
    background: #f7f7f7;
    border-radius: 5px;
    /*margin: 10px;*/
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, .1);
    cursor: pointer;
}

.container-gallery .video-list .vid:hover {
    background: #eee;
}

.container-gallery .video-list .vid.active {
    background: #2980b9;
}

.container-gallery .video-list .vid.active .title {
    background: #2980b9;
    color: #eee;
}

.container-gallery .video-list .vid .title {
    background: #eee;
    font-size: 11px;
    margin-left: 5px;
}


/* ---------------------------------------------------
    ESTILOS SIDEBAR
----------------------------------------------------- */

#sidebar {
    width: 280px;
    position: fixed;
    top: 0;
    left: -285px;
    height: 100vh;
    z-index: 1999;
    background: #ffffff;
    color: #fff;
    transition: all 0.3s;
    overflow-y: auto;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar.active {
    left: 0;
}

.s-overlay {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1998;
    background: rgba(0, 0, 0, 0.6);
    /* opacity: 1; */
    visibility: hidden;
}

.s-overlay.active {
    /* left: 0; */
    /* opacity: 1; */
    visibility: visible;
}


/* ---------------------------------------------------
    ESTILOS SIDEBAR MOBIL
----------------------------------------------------- */


/* .mb-0>a {
    display: block;
    position: relative;
}

.mb-0>a:after {
    position: absolute;
    right: 0;
} */


/* .mb-0>a[aria-expanded="false"]:after {
    content: "\f077";
} */


/* ---------------------------------------------------
    ESTILO LISTAS
----------------------------------------------------- */

.s-li {
    height: 36px;
    text-align: left;
    vertical-align: middle;
    border: 0px solid #ffffff;
    border-radius: 0px;
    /* outline: none; */
}

.s-li:focus {
    outline: none;
}

.s-a {
    height: 35px;
    padding-top: 5px;
}


/* ---------------------------------------------------
    CARD
----------------------------------------------------- */

.s-card {
    border-radius: 10px;
    box-sizing: border-box;
}

.s-card:hover {
    color: #FF0039;
    /* border: 2px solid #a0a0a0; */
    -webkit-transform: scale(1.05);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.s-card a img {
    padding: 3px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}


/* ---------------------------------------------------
    ESTILO IMAGE ZOOM
----------------------------------------------------- */

.s-image-zoom {
    overflow: hidden;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.s-image-zoom:hover {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.s-image-rounded {
    border-radius: 12px;
}

.s-image-ajustar {
    /* display: block;
    margin-left: auto;
    margin-right: auto; */
    width: 100%;
    /* height: 85%; */
}

.img-large-div {
    width: auto;
    /*500px;*/
    height: 300px;
}

.img-large {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.img-large:hover {
    background-size: 300%;
    cursor: zoom-in;
}

.img-small-div {
    width: 100px;
    height: 100px;
}

.img-small {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
}

.s-item-logo-empresas {
    margin-bottom: 20px;
}

.s-item-logo-empresas img {
    height: 65px;
}

.s-img-externo {
    background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9)), url(../../resources/imagenes/pantalla.jpg)no-repeat;
    background-size: 100% 100%;
}

.s-img-promo {
    padding: 3px;
    position: absolute;
    /*width:60px;
    height:60px;
    line-height: 63px;
    bottom:25px;*/
    right: -15%;
    bottom: 10%;
    /*background: #00D93C;
    color: #FFF;*/
    border-radius: 15px;
    text-align: center;
    font-size: 13px;
    z-index: 100;
    transition: all 400ms ease;
}


/* ---------------------------------------------------
    TAMANO DE FUENTES PIE DE PAGINA
----------------------------------------------------- */

.s-text-size-sm {
    font-size: 14px;
    color: #a0bce5;
}

.s-text-size-md {
    font-size: 20px;
    color: #a0bce5;
}


/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
}


/* .dropdown:hover>.dropdown-menu {
    display: block;
} */


/* .dropdown:hover > .dropdown-menu {
    display: block;
}
.dropdown > .dropdown-toggle:active {
    pointer-events: none;
} */


/* .button:hover .dropdown-menu {
    display: block;
} */


/* ---------------------------------------------------
    BOTONES
----------------------------------------------------- */

.s-btn-outline-orange {
    color: #000 !important;
    border-color: #EE5500;
}

.s-btn-outline-orange:hover {
    background-color: #EE5500;
    color: #fff !important;
}

.s-btn-no-selectable {
    border-color: #122a4e;
}

.s-btn-no-selectable:hover {
    background-color: #022B4E;
    color: #fff
}

.s-btn-selectable {
    background-color: #122a4e;
    color: #fff;
}

.s-btn-selectable:hover {
    color: #fff;
}

.s-btn-focus:focus {
    background-color: #122a4e;
    color: #fff;
}

.stockNoDisp {
    background-color: red !important;
    color: #FFFFFF !important;
    margin: 0px;
    border-radius: 35px !important;
    padding: 0px 5px 0px 5px;
    font-style: italic;
}

.stockDisp {
    background-color: green !important;
    color: #FFFFFF !important;
    margin: 0px;
    border-radius: 35px !important;
    padding: 0px 5px 0px 5px;
    font-style: italic;
}

.s-icon-color {
    color: #002568 !important;
}

.s-icon-color-gen {
    color: #002568;
}

.s-menu-gen {
    background-color: #fff;
}


/* ---------------------------------------------------
    BOTON FLOTANTE PROMOCION
----------------------------------------------------- */

.s-btn-prom {
    position: absolute;
    /*width:60px;
    height:60px;
    line-hesight: 63px;
    bottom:25px;*/
    left: -3%;
    top: -3%;
    z-index: 100;
    transition: all 400ms ease;
}


/* ---------------------------------------------------
    BOTON FLOTANTE COMPATIBILIDAD
----------------------------------------------------- */

.s-btn-compat {
    position: absolute;
    /*width:60px;
    height:60px;
    line-hesight: 63px;
    bottom:25px;*/
    left: -5%;
    top: -3%;
    z-index: 100;
    transition: all 400ms ease;
}


/* ---------------------------------------------------
    BOTON FLOTANTE VER STOCK
----------------------------------------------------- */

.s-btnStock {
    padding: 3px;
    position: absolute;
    /*width:60px;
    height:60px;
    line-height: 63px;
    bottom:25px;*/
    right: 3%;
    top: 3%;
    background: #00D93C;
    color: #FFF;
    border-radius: 15px;
    text-align: center;
    font-size: 13px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 400ms ease;
}

.s-btnStock:hover {
    background: #022B4E;
    color: white;
}

.s-btn-cod {
    padding: 2px;
    padding-left: 4px;
    padding-right: 4px;
    position: absolute;
    right: 3%;
    top: 11%;
    background: var(--s-color-primary);
    color: #FFF;
    border-radius: 15px;
    text-align: center;
    font-size: 10px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 400ms ease;
}

.s-btnStock-fotocopia {
    padding: 3px;
    position: absolute;
    /*width:60px;
    height:60px;
    line-height: 63px;
    bottom:25px;*/
    left: 3%;
    top: 3%;
    background: #00D93C;
    color: #FFF;
    border-radius: 15px;
    text-align: center;
    font-size: 13px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 400ms ease;
}

.s-btnStock-fotocopia:hover {
    background: #022B4E;
    color: white;
}

.s-btnSinStock {
    padding: 3px;
    position: absolute;
    /*width:60px;
    height:60px;
    line-height: 63px;
    bottom:25px;*/
    right: 3%;
    top: 3%;
    background: red;
    color: #FFF;
    border-radius: 15px;
    text-align: center;
    font-size: 13px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 400ms ease;
}

.s-btnSinStock:hover {
    background: #022B4E;
    color: white;
}

.s-btnTransito {
    padding-left: 13px;
    padding-right: 13px;
    position: absolute;
    /*width:60px;
    height:60px;
    line-height: 63px;
    bottom:25px;*/
    right: 3%;
    top: 3%;
    background: #007BD8;
    color: #FFF;
    border-radius: 15px;
    text-align: center;
    font-size: 18px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 400ms ease;
}

.s-btnTransito:hover {
    background: #022B4E;
    color: white;
}


/* ---------------------------------------------------
    CENTRAR DIV HORIZONTALMENTE SPINNER
----------------------------------------------------- */

.s-divspinner {
    height: 80px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.s-divspinner-contenido {
    width: auto;
}

.s-logo {
    width: 120px;
    height: 55px;
}

/* ---------------------------------------------------
    POPOVER PRECIOS
----------------------------------------------------- */
.s-popover-container{
    background-color: green;
    display: flex;
    justify-content: center; /* Centra horizontalmente */
  
}

.s-popover-precio {
    color: white !important;
    /* width: 100%; */
    position: absolute;
    display: none;
    background-color:  #51cf4d;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1; 
    border-radius: 25px;
    transform: translateY(-103%);
    transition: all 0.3s ease;
  }


  /* Estilos para la flecha */
  .s-popover-precio::before {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #51cf4d transparent transparent transparent;
    bottom: -8%; /* Posición debajo del popover */
    left: 50%;
    transform: translateX(-50%); /* Centrar la flecha horizontalmente */
  }

/* ---------------------------------------------------
    WIDGET WHATSAPP
----------------------------------------------------- */

.s-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 15px;
    right: 16px;
    background-color: #4cc370;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 8;
}

.s-float:hover {
    text-decoration: none;
    color: #fff;
    background-color: #3d9e5a;
}

.s-my-float {
    margin-top: 16px;
}

@keyframes pulse {
    0% {
        transform: scale(1, 1);
    }

    50% {
        opacity: 0.3;
    }

    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

.s-pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.s-nav-bottom {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-content: flex-end;
    min-width: auto;
    height: auto;
    position: fixed;
    z-index: 200;
    bottom: 0px;
    right: 0px;
    padding: 5px;
    margin: 0px;
}

@media (max-width: 360px) {
    .s-nav-bottom {
        width: 320px;
    }
}

.s-whatsapp-button {
    display: flex;
    justify-content: center;
    align-content: center;
    width: 60px;
    height: 60px;
    z-index: 8;
    transition: .3s;
    margin: 10px;
    padding: 7px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    background-color: white;
    /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
    -webkit-box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
    -moz-box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
    box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
}

.s-circle-anime {
    display: flex;
    position: absolute;
    justify-content: center;
    align-content: center;
    width: 60px;
    height: 60px;
    top: 15px;
    right: 15px;
    border-radius: 50%;
    transition: .3s;
    background-color: #77bb4a;
    animation: pulse 1.2s 3.0s ease infinite;
}

.s-popup-whatsapp {
    display: none;
    position: absolute;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-width: auto;
    height: auto;
    /* padding: 10px; */
    bottom: 85px;
    right: 6px;
    transition: .5s;
    border-radius: 10px;
    background-color: rgb(48, 211, 143);
    /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
    -webkit-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
    -moz-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5),
        0 0 20px 0 rgba(0, 0, 0, 0.25),
        0 0 30px 0 rgba(0, 0, 0, 0.1);
    animation: slideInRight .6s 0.0s both;
}





@media (max-width: 680px) {
    .s-popup-whatsapp p {
        font-size: 0.9em;
    }
}

.s-body-whatsapp {
    min-width: 320px;
    gap: 15px;
    padding: 10px;
    max-height: 60vh;
    overflow-y: auto;
}

@media (max-height: 600px) {
    .s-body-whatsapp {
        max-height: 50vh;
    }
}

/* Media query para dispositivos medianos (altura de pantalla entre 601px y 900px) */
@media (min-height: 601px) and (max-height: 900px) {
    .s-body-whatsapp {
        max-height: 50vh;
    }
}

/* Media query para dispositivos grandes (altura de pantalla entre 901px y 1200px) */
@media (min-height: 901px) and (max-height: 1200px) {
    .s-body-whatsapp {
        max-height: 80vh;
    }
}

/* Media query para dispositivos muy grandes (altura de pantalla mayor o igual a 1201px) */
@media (min-height: 1201px) {
    .s-body-whatsapp {
        max-height: 90vh;
    }
}

.s-content-close {
    display: flex;
    justify-content: end;
    align-items: start;
    background-color: #2DB742;
    padding: 10px;
    width: 100%;
    height: auto;
}

.s-content-close>div {
    color: white;
    font-size: 0.9em;
}

.s-content-close>div>h1 {
    font-size: 1.2em;
    font-weight: 700;
}

.s-content-whatsapp {
    width: 100%;
    border-left: 6px solid #2DB742;
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    align-items: center;
    justify-items: center;
    margin-bottom: 5px;
    background-color: #F4F7F9;
    cursor: pointer;
}

.s-content-whatsapp:hover {
    background-color: #b3bfc7;
}

.s-content-whatsapp>.s-contact {
    padding: 3px 0px;
}

.s-content-whatsapp>div h1 {
    font-size: 1rem;
    text-align: center;
    line-height: 0.8;
}

.s-content-whatsapp>div h2 {
    font-size: 0.8rem;
    text-align: center;
    line-height: 0.8;
}

.s-popup-whatsapp>.s-content-whatsapp.-s-top {
    display: flex;
    flex-direction: column;
}

.s-popup-whatsapp>.s-content-whatsapp.-s-top p {
    color: #585858;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 1.0em;
}

.s-popup-whatsapp>.s-content-whatsapp.-s-bottom {
    display: flex;
    flex-direction: row;
}

.s-closePopup {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    margin: 0px;
    padding: 13px;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: #da6464;
    -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
    -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
    box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
}

.s-closePopup:hover {
    background-color: #3d9e5a;
    transition: .3s;
}

.s-send-msPopup {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #ffffff;
    margin: 0px 0px 0px 5px;
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
    -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
    box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
}

.s-send-msPopup:hover {
    background-color: #f8f8f8;
    transition: .3s;
}

.s-is-active-whatsapp-popup {
    display: flex;
    animation: slideInRight .6s 0.0s both;
    background-color: #fff;
}


input.s-whats-input[type=text] {
    width: 250px;
    height: 40px;
    box-sizing: border-box;
    border: 0px solid #ffffff;
    border-radius: 20px;
    font-size: 1em;
    background-color: #ffffff;
    padding: 0px 0px 0px 10px;
    -webkit-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
    outline: none;
    transition: .3s;
}

@media (max-width: 420px) {
    input.s-whats-input[type=text] {
        width: 225px;
    }
}

input.s-whats-input::placeholder {
    /* Most modern browsers support this now. */
    color: rgba(68, 68, 68, 0.705);
    opacity: 1;
}

input.s-whats-input[type=text]:focus {
    background-color: #f8f8f8;
    -webkit-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
    transition: .3s;
}

.s-icon-whatsapp-small {
    width: 24px;
    height: 24px;
}

.s-icon-whatsapp {
    width: 45px;
    height: 45px;
}

.s-icon-font-color {
    color: #ffffff;
}

.s-icon-font-color--black {
    color: #333333;
}

.s-whats-text {
    background-color: var(--s-color-primary);
    border-radius: 10px;
    max-width: 200px;
    max-height: 50px;
    color: #fff;
    font-size: 13px;
    display: flex;
    flex-direction: row;
    /* align-content: flex-start;
    justify-content: flex-start; */
    padding: 0px 20px;
    margin-top: 15px;
}
.s-is-active-whatsapp-text{
    display: none;
}

.s-whats-text>div>h1 {
    padding-top: 10px;
    font-size: 13px;
    line-height: 0.5;
}

.s-whats-text>div>h2 {
    font-size: 13px;
    font-weight: 700;
}

/*@media only screen and (min-width:320px) and (max-width:768px){
    .btn-wsp{
        width:63px;
        height:63px;
        line-height: 66px;
    }
}*/


/* ---------------------------------------------------
    ADAPTACION RESPPONSIVA
----------------------------------------------------- */

@media (min-width: 992px) {

    /* .toggle-visibility {
        visibility: visible;
    } */
    .navbar-height {
        height: 50px;
    }
}

@media (max-width: 992px) {
    .s-input-search {
        width: 200px;
    }
}

@media only screen and (min-width:320px) and (max-width:768px) {
    .s-logo {
        width: 90px;
        height: 50px;
    }

    .s-size-slider {
        height: 25vh;
    }

    /* ---------------------------------------------------
    MODAL ALERTA NOTICIA
    ----------------------------------------------------- */
    .s-mod-card-padre {
        width: 250px;
        height: 50px;
        position: absolute;
        right: 25px;
        top: 85%;
    }

    .s-mod-card-padre img {
        z-index: 99999;
        width: 30%;
        position: absolute;
        top: 5%;
        right: 0%;
        /* -moz-transform: rotate(125deg);
        -o-transform: rotate(125deg);
        -webkit-transform: rotate(125deg); */
        transform: rotate(130deg);
    }

    .s-mod-card {
        width: 250px;
        height: 50px;
    }

    .s-mod-card h2 {
        font-size: 0.8em;
    }
}