@import url('https://fonts.googleapis.com/css?family=Trirong');
    /* font-family: 'Times New Roman', Times, serif; */
:root {
    --vdt-c-w: #fff;
    --vdt-c-b: rgb(19, 73, 252);
    --vdt-c-l-1: #ED583A;
    --vdt-c-l-2: rgb(251, 182, 42);
    --vdt-c-l-3: rgb(145, 30, 85);
    --vdt-c-l-4: #ED7D35;
    --vdt-c-l-5: rgb(90, 35, 87);
    --vdt-c-l-6: #AC1E56;
    --vdt-color-50: rgb(255, 244, 237);
    --vdt-color-100-1: rgb(255, 201, 169);
    --vdt-color-100: rgb(255, 230, 212);
    --vdt-color-200: rgb(253, 148, 74);
    --vdt-color-300-1: rgb(255, 164, 114);
    --vdt-color-300: rgb(248, 143, 86);
    --vdt-color-400: rgb(254, 115, 57);
    --vdt-color-500: rgb(252, 77, 19);
    --vdt-color-600: rgb(221, 47, 8);
    --vdt-color-700: rgb(197, 34, 9);
    --vdt-color-800: rgb(156, 29, 16);
    --vdt-color-900: rgb(126, 26, 16);
    --vdt-color-950: rgb(68, 9, 6);
    --vdt-color-success: rgb(48, 212, 48);
    --vdt-color-frm-v: rgb(228, 163, 163);
    --vdt-color-frm-cr: rgb(29, 25, 255);
    --vdt-fondo-menu-lat: #f0f0f0;
    --arrow-bg: rgba(255, 255, 255, 0.3);
    --arrow-icon: url(https://upload.wikimedia.org/wikipedia/commons/9/9d/Caret_down_font_awesome_whitevariation.svg);
    --search-icon: "fa-solid fa-magnifying-glass";
    --option-bg: rgba(255, 255, 255, 0.1);
    --select-bg: rgba(255, 255, 255, 0.2);
    --vdt-555: rgb(85, 85, 85);
    --white: rgb(236, 236, 236);
    --black: #111111;
    --red1: #e74c3c;
    --red2: rgb(201, 41, 24);
    --azul1: rgb(93, 93, 233);
    --colorPrimary: var(--red1);
    --colorSecondary: var(--azul1);
    --cubic-bezier: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

main {
    margin: 0;
    padding: 0;
    padding: 0 auto 1.5rem auto;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* Menu principal */
.btn-icono-menu {
    border-radius: 10px;
}

.icon-name {
    /* min-width: 120px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icon-name2 {
    /* width: 50px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.btn-carrito-sm {
    font-size: 25px;
    height: 50px;
}

nav {
    position: sticky;
    top: 0px;
    background-color: #fff;
    z-index: 99;
}

.menu {
    color: #fff;
    width: 100%;
    height: 70px;
}

.menu__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
}

.menu__links {
    height: 100%;
    transition: transform .5s;
    display: flex;
}

.menu__item {
    list-style: none;
    position: relative;
    height: 100%;
    --clip: polygon(0 0, 100% 0, 100% 0, 0 0);
    --transform: rotate(-90deg);
}

.menu__item:hover {
    --clip: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    --transform: rotate(0);
    color: var(--vdt-c-w);
}

.menu__link {
    text-decoration: none;
    padding: .5rem 1rem;
    display: flex;
    align-items: center;
}

.menu__link:hover {
    background-color: var(--vdt-color-300);
    color: #fff;
    transition: .5s;
    border-radius: .5rem .5rem;
}

.menu__arrow {
    transform: var(--transform);
    transition: transform .3s;
    display: block;
    margin-left: 3px;
    width: 25px;
}

.menu__nesting {
    list-style: none;
    transition: clip-path .5s;
    clip-path: var(--clip);
    position: absolute;
    right: 0;
    bottom: 0;
    width: max-content;
    transform: translateY(100%);
    color: #fff;
    background-color: var(--vdt-color-300);
    border-radius: .5rem .5rem;
    z-index: 100;
}

.menu__link--inside {
    color: var(--vdt-c-w);
    padding: 10px 20px 10px 20px;
}

.menu__link--inside:hover {
    background-color: var(--vdt-color-400);
}

.menu__hamburguer {
    display: flex;
    align-items: center;
    padding: 0 15px;
    cursor: pointer;
    display: none;
}

.menu__img {
    display: block;
    width: 50px;
    height: auto;
}

.cantidad-carrito {
    position: absolute;
    top: 4px;
    right: 4px;
    text-align: center;
    background-color: var(--vdt-color-300);
    border-radius: 50%;
    color: #ffffff;
    font-size: 12px;
    line-height: 20px;
    min-height: 20px;
    min-width: 20px;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* Menu lateral */
.iconBar {
    background-color: var(--vdt-fondo-menu-lat);
    display: flex;
    flex-direction: row;
    justify-content: center;
    overflow-y: auto;
}

.iconBar a {
    text-align: center;
    padding: 5px;
    transition: all 0.5s ease;
    color: white;
    font-size: 35px;
}

.iconBar a:hover {
    background-color: var(--vdt-color-400);
}

.active-lat {
    background-color: var(--vdt-color-400);
}

.iconBar.reduced {
    font-size: 20px;
    bottom: 125px;
}

.nom-dep {
    font-size: 18px;
    position: absolute;
    color: black;
}

/* slider principal */
.slider-p {
    height: 91vh;
    width: 100%;
}

.contenedor-slider,
.slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    overflow: hidden;
}

.slide::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(32, 0, 0, 0.5);
    z-index: 10;
}

.slide .img-slider-p {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.slide .image-data {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 100;
}

.image-data span.text {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    -webkit-text-stroke: .5px rgba(31, 1, 1, 0.5);
}

.image-data h2 {
    line-height: 1.5;
    font-size: 35px;
    font-weight: 550;
    color: #fff;
    -webkit-text-stroke: 1px rgba(185, 175, 175, 0.5);
}

.image-data-p h2 {
    line-height: 1.5;
    font-size: 35px;
    font-weight: 550;
    color: #fff;
    -webkit-text-stroke: 1px rgba(185, 175, 175, 0.5);
}

a.button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    color: var(--vdt-color-800);
    background: #fff;
    text-decoration: none;
    margin-top: 25px;
    transition: all 0.3s ease;
}

a.button:hover {
    color: #fff;
    background-color: #c87e4f;
}

.btn-slide {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    color: #333;
    background: #fff;
    text-decoration: none;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.btn-slide:hover {
    color: #fff;
    background-color: #c87e4f;
}

/* Slider cliente */
.slider-op-clientes {
    width: 380px;
    height: auto;
}

/* slider Tienda */
.slide-t {
    height: 91vh;
    width: 100%;
}


.contenedor-slider-t,
.slide {
    position: relative;
    /* width: 250px; */
    height: 100%;
}

.slide-t {
    overflow: hidden;
}

.slide-t::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(32, 0, 0, 0.5);
    z-index: 10;
}

.slide-t .img-slider-t {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.slide-t .image-data-t {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 100;
}

.fhFinal-slider {
    position: absolute;
    font-size: 16px;
    bottom: 0px;
    right: 35px;
    padding: 8px;
    border-radius: 5px;
    background-color: rgba(179, 179, 179, 0.555);
    color: whitesmoke;
    z-index: 1;

}

/* slider Departamentos */
.slide-deps {
    width: auto;
}

.contenedor-slider-deps,
.slide-deps {
    position: relative;
    /* width: 250px; */
}

.slide-deps {
    overflow: hidden;
}

.slide-deps .img-slider-deps {
    height: 100%;
    /* width: 100%; */
    object-fit: cover;
}

.slide-deps .image-data-deps {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    /* width: 100%; */
    z-index: 100;
}

.mySwiperDeps {
    .nav-btn-deps {
        color: var(--vdt-c-l-6);
    }

    .swiper-button-next {
        right: 0;
    }

    .swiper-button-prev {
        left: 0;
    }
}

/* swiper button clientes */
.nav-btn-cliente {
    height: 50px;
    width: 50px;
    border-radius: 5%;
    background: none;
}

.nav-btn-cliente:hover {
    background: var(--red1);
    border-radius: 5px;
}

.nav-btn-cliente::before,
.nav-btn-cliente::after {
    font-size: 25px;
    color: var(--vdt-c-l-4);
}

/* swiper button css */
.nav-btn {
    height: 50px;
    width: 50px;
    border-radius: 5%;
    background: none;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 5px;
}

.swiper-button-next {
    right: 50px;
}

.swiper-button-prev {
    left: 50px;
}

.nav-btn::before,
.nav-btn::after {
    font-size: 25px;
    color: #fff;
}

.swiper-pagination-bullet {
    opacity: 1;
    height: 12px;
    width: 12px;
    background-color: #fff;
}

.swiper-pagination-bullet-active {
    border: 2px solid #fff;
    background-color: var(--vdt-c-b);
    color: var(--vdt-c-b);
}

/* Tabs */
.tab-t {
    overflow: hidden;
    border-top: var(--vdt-color-400);
    border-radius: 0 0 25px 25px;
    height: 75;
    background-color: var(--vdt-color-400);
    z-index: 95;
    position: sticky;
    top: 70px;

}

.tab-t button {
    background-color: inherit;
    color: #F0F1F8;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}

.tab-t button:hover {
    background-color: var(--vdt-color-300);
}

.tab-t button.active {
    background-color: var(--vdt-color-500);
}

.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid var(--vdt-color-100);
    border-top: none;
}

header .logo {
    float: left;
    width: 95px;
    height: 44px;
}

.icon-menu {
    width: 45px;
}

.logo-img {
    width: 100%;
    max-width: 180px;
    height: auto;
}

header .heroe {
    margin: 0 auto;
    max-width: 1100px;
    padding: 1rem 1.75rem 1.75rem 1.75rem;
}

header .heroe h1 {
    font-size: 2.5rem;
    font-weight: 500;
}

header .heroe h2 {
    font-size: 1.5rem;
    font-weight: 300;
}

article {
    margin: 0 auto;
}

section h1 {
    margin-bottom: 2.5rem;
}

section h2 {
    font-size: 120%;
    line-height: 1.5rem;
    padding-top: 1.5rem;
}

section pre {
    background-color: rgba(247, 248, 249, 1);
    border: 1px solid rgba(242, 242, 242, 1);
    display: block;
    font-size: .9rem;
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    white-space: pre-wrap;
    word-break: break-all;
}

section code {
    display: block;
}

section a {
    color: rgba(221, 72, 20, 1);
}

section svg {
    margin-bottom: -5px;
    margin-right: 5px;
    width: 25px;
}

.img-cliente-slider {
    width: 150px;
    height: auto;
}

.img-ofrecemos {
    width: auto;
    height: auto;
    object-fit: cover;
}

.img-cover {
    width: auto;
    height: auto;
    object-fit: cover;
}

/* Footer */
footer {
    width: 100%;
    bottom: 0;
    left: 0;
}

footer .content-footer {
    max-width: 1250px;
    margin: auto;
    padding: 30px;
}

footer .content-footer .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.content-footer .top .logo-details {
    color: #000;
    font-size: 30px;
}

.content-footer .top .media-icons {
    display: flex;
}

.content-footer .top .media-icons a {
    height: 40px;
    width: 40px;
    margin: 0 8px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.top .media-icons a:nth-child(1) {
    background: #4267B2;
}

.top .media-icons a:nth-child(1):hover {
    color: #4267B2;
    background: #fff;
}

.top .media-icons a:nth-child(2) {
    background: #000f18;
}

.top .media-icons a:nth-child(2):hover {
    color: #01314e;
    background: #fff;
}

.top .media-icons a:nth-child(3) {
    background: #E1306C;
}

.top .media-icons a:nth-child(3):hover {
    color: #E1306C;
    background: #fff;
}

.top .media-icons a:nth-child(4) {
    background: #111;
}

.top .media-icons a:nth-child(4):hover {
    color: #111;
    background: #fff;
}

.top .media-icons a:nth-child(5) {
    background: #0077B5;
}

.top .media-icons a:nth-child(5):hover {
    color: #0077B5;
    background: #fff;
}

.top .media-icons a:nth-child(6) {
    background: #180000;
}

.top .media-icons a:nth-child(6):hover {
    color: #180000;
    background: #000;
}

footer .content-footer .link-boxes {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

footer .content-footer .link-boxes .box-footer {
    width: calc(100% / 5 - 10px);
}

.content-footer .link-boxes .box-footer .link_name {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    /* position: relative; */
}


.content-footer .link-boxes .box-footer li {
    margin: 5px 0;
    list-style: none;
}

.content-footer .link-boxes .box-footer li a {
    color: rgba(0, 0, 0, .8);
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.4s ease
}

.call-cent {
    color: #000;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.4s ease
}

.content-footer .link-boxes .box-footer li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.content-footer .link-boxes .input-box {
    margin-right: 55px;
}

.link-boxes .input-box input {
    height: 40px;
    width: calc(100% + 55px);
    outline: none;
    border: 2px solid #AFAFB6;
    background: #140B5C;
    border-radius: 4px;
    padding: 0 15px;
    font-size: 15px;
    color: #fff;
    margin-top: 5px;
}

.link-boxes .input-box input::placeholder {
    color: #AFAFB6;
    font-size: 16px;
}

.link-boxes .input-box input[type="button"] {
    background: #fff;
    color: var(--vdt-color-300);
    border: none;
    font-size: 18px;
    font-weight: 500;
    margin: 4px 0;
    opacity: 0.8;
    cursor: pointer;
    transition: all 0.4s ease;
}

.input-box input[type="button"]:hover {
    opacity: 1;
}

footer .bottom-details {
    width: 100%;
    background: #fff;
}

footer .bottom-details .bottom_text {
    max-width: 1250px;
    margin: auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
}

.bottom-details .bottom_text span,
.bottom-details .bottom_text a {
    font-size: 14px;
    font-weight: 300;
    color: #000;
    text-decoration: none;
}

.bottom-details .bottom_text a:hover {
    opacity: 1;
    text-decoration: underline;
}

.bottom-details .bottom_text a {
    margin-right: 10px;
}

.ocultar-txt {
    color: transparent;
}

.wrapper {
    max-width: 940px;
    margin: 0 auto;
}

.wrapper>div {
    border: 2px solid rgb(233, 171, 88);
    border-radius: 5px;
    background-color: rgba(178, 172, 255, 0.5);
    padding: 1em;
}

.wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    grid-auto-rows: minmax(100px, auto);
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
}

.uno {
    grid-column: 1 / 2;
    grid-row: 1 /2;
}

.dos {
    grid-column: 2 / 2;
    grid-row: 1 / 2;
}

.img-prod {
    position: relative;
    width: 100%;
    /* min-height: 420px; */
    padding: 16px;
}

.img-prod img {
    display: block;
    max-width: 450px;
    height: auto;
}

.img-prod-kit {
    position: relative;
    width: 100%;
    min-height: 450px;
}

.section-no-padd-top {
    padding-top: 0;
}

.img-prod-kit img {
    display: block;
    max-width: 450px;
    height: auto;
}

.caja-zoom {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background-size: cover;
    border-radius: 50%;
    box-shadow: inset -10px -10px rgba(0, 0, 0, 0.2);
}

.img-prod:hover .caja-zoom {
    display: block;
}

.contenedor1>div {
    border-radius: 10px;
    background-color: #ECF4F8;
}

.contenedor1 {
    display: flex;
    justify-content: space-evenly;
    /* display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
    grid-auto-rows: minmax(100px, auto);
    grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
    justify-items: center;
    align-items: center;
    justify-content: center;
    align-content: center; */
}

.contenedor2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    grid-auto-rows: minmax(100px, auto);
    grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
    padding: 10px 10px 10px;

}

.box {
    padding: .5rem;
    text-align: center;
    width: 224px;
    min-height: 190px;
}

.box-soft {
    text-align: center;
    width: 290x;
    transition: .2s;
}

.box-soft:hover {
    filter: drop-shadow(0 2px 5px rgba(145, 30, 85, 0.977));
}

.icon {
    align-items: center;
}

h1,
h2 {
    text-align: center;
}

a {
    text-decoration: none;
}

.btn-bottom {
    padding-bottom: 45px;
}

/* *** botones *** */
.btnEPC {
    width: 150px;
    border: none;
    border: 1px solid var(--vdt-c-l-4);
    border-radius: 4px;
    padding: 4px 4px 4px;
}

.btnEPC:hover {
    background-color: var(--vdt-c-l-4);
    border: 1px solid var(--vdt-c-l-4);

}

.btnEnviarPdfCorreo {
    /* appearance: none; */
    margin-top: 6px;
    margin-bottom: 6px;
    padding: 4px 4px 4px 4px;
    color: var(--vdt-c-l-4);
    cursor: pointer;
    padding: 4px 4px 4px;

}

.btn-1 {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--vdt-color-500);
    color: whitesmoke;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    text-align: center;
    width: 240px;
    cursor: pointer;
    text-align: center;
}

.btn-1:hover {
    background: var(--vdt-color-400);
    transition-duration: .2s;
}

.btn-2 {
    display: inline-block;
    font-size: 16px;
    padding: 8px 16px;
    background-color: var(--vdt-color-500);
    color: whitesmoke;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    text-align: center;
    width: 240px;
    height: auto;
    cursor: pointer;
    text-align: center;
}

.btn-2:hover {
    background: var(--vdt-color-400);
    transition-duration: .2s;
}

.shadow-2 {
    box-shadow: 0 2px 5px rgba(145, 30, 85, 0.977);
}

.carrito-desc-del {
    display: grid;
    grid-template-columns: 85% 14%;
    gap: 2px;
    justify-content: space-between;
    text-align: left;
}

.carrito-desc-del a {
    grid-column: 1;
}

.carrito-desc-del button {
    grid-column: 2;
    /* height: 100%; */
}

.btn-trash {
    display: inline-block;
    padding: 8px 8px;
    background-color: #fff;
    color: #ff681f;
    text-decoration: none;
    border: 1px solid var(--vdt-color-400);
    border-radius: .5rem;
    height: auto;
    cursor: pointer;
    text-align: center;
    transition-duration: .2s;
}

.btn-trash:hover {
    background: var(--vdt-color-300);
}

.btn-trash:hover .fa-solid {
    color: white;
}

.contenedor-formas-pago {
    width: 100%;
    border: 1px solid var(--vdt-c-l-6);
    border-radius: 25px;
    background-color: var(--vdt-c-w);
    display: flex;
    flex-direction: row;
    gap: 5px;
    text-align: center;
    justify-content: center;
    cursor: pointer;
    padding: 4px 4px 4px 4px;
    color: var(--vdt-c-l-6);

    .cfp {
        padding: 4px;
        width: 33%;
        border: 1px solif var(--vdt-c-l-6);
    }
}

.cfp:hover {
    color: var(--vdt-c-w);
    background-color: var(--vdt-c-l-6);
    transition-duration: .3s;
    border-radius: 25px;
}

.tg-perfil {
    background-color: var(--vdt-color-400);
    color: #ffffff;
    padding: .5rem .5rem;
    width: 120px;
    height: 120px;
    border: none;
    border-radius: 15px;
    display: grid;
    place-content: center;
    font-size: 1rem;
    transition: .2s;
    cursor: pointer;
}

.tg-perfil:hover {
    background-color: var(--vdt-color-300);
}

.icon-ext-perfil {
    font-size: 28px;
}

.wrapper2>div {
    border-radius: 5px;
    padding: 1em;
}

.wrapper2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5px;
    grid-auto-rows: minmax(100px, auto);
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
}

.software>div {
    border-radius: 5px;
    padding: 1em;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.arti {
    padding: 10px 10px 10px 10px;
}

.grid-2r {
    grid-column: 1 / 2;
    grid-row: 1/2;
    border: 1px solid;
}

.grid-1-3 {
    grid-column: 1 / 3;
}

.grid-3 {
    display: grid;
    grid-gap: 25px 25px;
    grid-auto-rows: minmax(50px, auto);
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    align-items: center;
    justify-items: center;
}

.grid-3-tg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px 25px;
    grid-auto-rows: minmax(250px, auto);
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.grid-3-dt-envio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(50px, auto);
    grid-template-columns: repeat(auto-fill, minmax(33%, 1fr));
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 25px 5px;
    grid-auto-rows: minmax(50px, auto);
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    align-items: center;
    justify-items: center;
}

.grid-4-img {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 5px 10px;
    grid-auto-rows: minmax(50px, auto);
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
}

/* PRODUCTO IMG */
.img-producto-g {
    max-width: 300px;
    max-height: 300px;
}

.desc-p-img {
    width: 75px;
    height: 75px;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 5px;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 5px;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
}

.img-software {
    border-radius: 10px;
    object-fit: cover;
    width: 300px;
    height: 190px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.7));
}

.ayuda {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
}

.centrar-hr {
    justify-items: center;
    align-items: center;
    justify-content: center;
    align-content: center;
}

hr {
    width: 68%;
    height: 1px;
    margin: 5px auto;
    border: none;
    background-color: var(--vdt-color-700);
}

.logo {
    width: auto;
    height: auto;
}

.hr-edit {
    width: 95%;
}

.borde {
    border: 1px solid;
}

.ocultar {
    display: none;
}

.colorB {
    color: #6272FF;
}

.ofrecemos {
    text-align: center;
}

.icon {
    width: 115px;
    height: 115px;
}

.iconRedes {
    width: 50px;
    height: 50px;
}

.icon-whatsapp {
    width: 50px;
    height: 50px;
}

.icon-whatsapp {
    position: fixed;
    bottom: 50px;
    right: 25px;
    z-index: 99;
}


.text-float {
    background-color: #59d96b;
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 70%;
    margin: 10px;
    font-size: 16px;
    color: #f0f0f0;
    position: fixed;
    bottom: 40px;
    right: 65px;
    z-index: 99;
}

.equipo {
    width: 95%;
}

.equipos {
    text-align: center;
}


.btn-add {
    display: block;
    margin-top: 20px;
}

.w-100 {
    width: 100%;
}

.h-100 {
    width: auto;
    min-height: 400px;
}

/* paginas */
.centrar-contenido {
    text-align: center;
    align-items: center;
}

.padd-20 {
    padding: 20px 20px 2px;
}

.incluye-contenido {
    color: rgb(73, 73, 73);
}

.contacto {
    min-height: 100vh;
    width: 100%;
    background: var(--vdt-color-300);
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-contact {
    width: 85%;
    background: #fff;
    border-radius: 6px;
    padding: 20px 60px 30px 40px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.container-contact .content-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container-contact .content-contact .left-side {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    position: relative;
}

.content-contact .left-side::before {
    content: '';
    position: absolute;
    height: 70%;
    width: 2px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #afafb6;
}

.content-contact .left-side .details {
    margin: 14px;
    text-align: center;
}

.content-contact .left-side .details i {
    font-size: 30px;
    color: var(--vdt-color-700);
    margin-bottom: 10px;
}

.content-contact .left-side .details .topic {
    font-size: 18px;
    font-weight: 500;
}

.content-contact .left-side .details .text-one,
.content-contact .left-side .details .text-two {
    font-size: 14px;
    color: #afafb6;
}

.container-contact .content-contact .right-side {
    width: 75%;
    margin-left: 75px;
}

.content-contact .right-side .topic-text {
    font-size: 23px;
    font-weight: 600;
    color: var(--vdt-color-900);
}

.right-side .input-box {
    height: 50px;
    width: 100%;
    margin: 12px 0;
}

.right-side .input-box input,
.right-side .input-box textarea {
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    background: #F0F1F8;
    border-radius: 6px;
    padding: 0 15px;
    resize: none;
}

.right-side .message-box {
    min-height: 110px;
}

.right-side .input-box textarea {
    padding-top: 6px;
}

.right-side .button {
    display: inline-block;
    margin-top: 12px;
}

.right-side .button input[type="button"] {
    color: #fff;
    font-size: 18px;
    outline: none;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    background: #3e2093;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button input[type="button"]:hover {
    background: #5029bc;
}

/* SLIDER CLIENTES */
.slider-clientes {
    width: 98%;
    height: auto;
    margin: auto;
    overflow: hidden;
}

.slider-clientes .slider-mov {
    display: flex;
    animation: scroll 60s linear infinite;
    width: calc(180px * 6);
}

.slider-clientes .slide-cliente {
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-clientes .slide-cliente img {
    width: 120px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-180px * 6));
    }
}

/* IMAGENES */
.capturas-portadas {
    max-width: 100%;
    border-radius: 20px;
    object-fit: cover;
    width: 760px;
    height: 420px;
}

.capturas-portadas-sin-cv {
    max-width: 100%;
    border-radius: 20px;
    width: 760px;
    height: 420px;
}

.capturas-sistemas {
    max-width: 100%;
    border-radius: 20px;
}

.paquetes-computadora {
    border-radius: 20px;
    object-fit: cover;
    width: 300px;
    height: 160px;
}

/* Notificaciones TOAST */
#toasts {
    display: block;
    position: absolute;
    top: 50px;
    left: 10px;
}

.toast {
    background-color: #fff;
    border-radius: .5rem .5rem;
    padding: .5rem 1.5rem;
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.toast.info {
    border: 1px solid yellow;
    color: yellow;
}

.toast.success {
    background-color: rgb(97, 230, 97);
    color: rgb(255, 255, 255);
}

.toast.error {
    border: 1px solid red;
    color: red;
}

/* DM Principal(Plantilla) */
.txt-promo {
    background-color: var(--vdt-color-300);
    color: #f0f0f0;
    padding: 5px 5px;
    border-radius: 15px 0 15px 0;
    max-width: 70%;
    text-align: center;
    font-size: 8px;
    position: fixed;
    top: 83px;
    right: 25px;
    z-index: 94;
    transition-duration: .2s;
}

.icono-departamentos {
    width: 128px;
}

.nomnbre-icono-departamento {
    font-size: .8rem;
    color: black;

}

.img-header-promo {
    width: 100%;
    height: 60px;
}

.txt-sucursal-actual {
    font-size: 12px;
}

.btn-probar-demo {
    text-align: center;
    background-color: #fff;
    color: var(--vdt-c-l-3);
    font-size: 1.2rem;
    border: 1px solid #fff;
    padding: 8px 6px;
    border-radius: 1rem 1rem;
    position: absolute;
    top: 10px;
    right: 80px;
    transition: .2s;
}

.btn-probar-demo:hover {
    font-size: 1.3rem;
    color: var(--vdt-c-l-3);
    border: 1px solid var(--vdt-c-l-3);
}

/* EXTRAS  */

.selected {
    border: 2px solid var(--vdt-color-success);
}

.fila-roja {
    border: 2px solid var(--red1);
    /* color: white; */
    font-weight: bold;
}

.fila-amarillo {
    border: 2px solid var(--vdt-c-l-2);
    /* color: white; */
    font-weight: bold;
}

.fila-verde {
    border: 2px solid var(--vdt-color-success);
    /* color: white; */
    font-weight: bold;
}

.btn-arrow-paginado {
    background-color: #fff;
    color: var(--vdt-color-500);
    line-height: 1px;
    font-size: 25px;
    /* position: fixed;
    text-align: center;
    bottom: 50px;
    left: 25px; */
    padding: 10px 10px;
    border: 1px solid var(--vdt-color-300);
    border-radius: 15px;
    cursor: pointer;
    transition-duration: .3s;
    z-index: 99;
}

.btn-arrow-paginado:hover {
    background-color: var(--vdt-color-500);
    color: #fff;
}

.disponible-cantidad {
    color: green;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 4px;
    /* border: 1px solid var(--vdt-c-l-4);
    border-radius: 15px; */
}

.desc-add-prod {
    font-size: 16px;
    color: rgb(66, 66, 66);
    margin-bottom: 8px;
    text-align: center;
}

.incluye {
    font-size: 12px;
}

.datos-cliente {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
}

.detalle-pf {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.pedido-apro-dts {
    display: flex;
    flex-direction: column;
}

.dir {
    display: flex;
    flex-direction: row;
    padding-bottom: .5rem
}

.dim-20 {
    width: 10%;
}

.dim-80 {
    width: 80%;
}

.no-encontrado {
    padding-top: 50px;
    width: 80%;
}

.padd-20-pc {
    padding: 20px 20px;
}

.btn-cont-promo-paquete {
    display: block;
    font-size: 30px;
    color: var(--vdt-color-500);
    padding: 5px;
    border: 1px solid var(--vdt-c-l-1);
    width: 190px;
    border-radius: 12px;
    cursor: pointer;
    transition: .2s;
}

.c-envio-btn {
    color: red;
}

.btn-cont-promo-paquete:hover {
    background-color: var(--vdt-c-l-1);
}

.btn-ped-inf {
    position: absolute;
    bottom: 24px;
    right: 20px;
}

.btn-pedir-info {
    border: none;
    border: 1px solid var(--vdt-c-b);
    background-color: var(--vdt-c-b);
    color: var(--vdt-c-w);
    font-size: 30px;
    border-radius: 10px;
    padding: 5px;
    cursor: pointer;
    transition: .2s;
}

.btn-pedir-info:hover {
    color: var(--vdt-c-b);
    background-color: #fff;
}

.btn-pedir-info-p {
    display: block;
    font-size: 30px;
    color: var(--vdt-c-b);
    padding: 5px;
    border: 1px solid var(--vdt-c-b);
    width: 190px;
    border-radius: 12px;
    cursor: pointer;
    transition: .2s;
}

.btn-pedir-info-p:hover {
    background-color: var(--vdt-c-b);
    color: var(--vdt-c-w);
}

.info-realizar-compra {
    padding: 5px 5px 5px 5px;
}

.no-borde {
    all: unset;
    border: 0px solid black;
}

.btn-cerrar {
    appearance: none;
    padding: 4px 4px 4px;
    font-size: 24px;
    background-color: #fff;
    color: var(--vdt-c-l-4);
    border: 1px solid var(--vdt-color-500);
    border-radius: 50%;
    cursor: pointer;
    margin-bottom: 8px;
    transition: .2s;
}

.btn-cerrar:hover {
    /* appearance: none;
    padding: 4px 4px 4px;
    font-size: 24px; */
    background-color: var(--vdt-c-l-4);
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
}

.txt-left {
    text-align: left;
}

.txt-right {
    /* width: 100%; */
    text-align: right;
    padding-right: 2px;
}

.btns-anterior-siguiente {
    display: inline-block;
    position: sticky;
    top: 50%;
    z-index: 90;
}

.flex_row_a_column {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
}
.flex-column {
    display: flex;
    flex-direction: row;
}

.flex-columna {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-s-between {
    justify-content: space-between;
    align-items: start;
}

.flex-space-around{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.dir-list {
    width: 50%;
}

.grid-prods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240 * 1px), 1fr));
    grid-gap: 25px 25px;
}

.grid-seccion-departamentos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 140 * 1px), 1fr));
    grid-gap: 25px 25px;
}

.navegacion-filtros {
    width: 20%;
    position: sticky;
    top: 130px;
    text-align: left;
}

.navegacion-productos {
    width: 80%;
}

.borde-left {
    border-left: 1px solid var(--vdt-c-l-6);
    border-radius: 20px;
}

.input-bold {
    font-weight: bold;
}

.left-padd-20 {
    text-align: left;
    padding-left: 20px;
}

.left {
    text-align: left;
    width: 100%;
}

.right {
    text-align: right;
    width: 100%;
}

.padd-top-20 {
    padding-top: 20px;
}

.padd-top-0 {
    padding-top: 0;
}

.padd-0-pc {
    padding: 0 0;
}

.columna-busqueda-nav-filtros {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    position: sticky;
    top: 130px;
}

.input-busqueda {
    width: 100%;
    appearance: none;
    border: 1px solid var(--vdt-c-l-6);
    padding: .5rem .5rem;
    outline: 0;
    font: inherit;
    cursor: text;
    padding: .5rem .5rem;
    color: red;
    border-radius: .25rem 0 0 .25rem;
}

.input-total-pago-c {
    /* width: 100%; */
    appearance: none;
    border: none;
    text-align: right;
    border-bottom: 1px solid var(--vdt-c-l-6);
    padding: .5rem .5rem;
    outline: 0;
    font: inherit;
    cursor: text;
    padding: .5rem .5rem;
    color: red;
    border-radius: 12px;
}

.s-busqueda {
    width: 95%;
}

.btn-m-solicitar-demo {
    font-size: 2rem;
    padding: 8px 16px;
    color: var(--vdt-color-500);
    border: 1px solid var(--vdt-color-400);
    border-radius: .5rem .5rem;
    background-color: #fff;
    transition: .2s;
}

.btn-m-solicitar-demo:hover {
    color: #fff;
    background-color: var(--vdt-c-l-1);
}

.titulo-pagina {
    display: none;
    color: var(--vdt-c-l-5);
    text-align: left;
    font-size: 1.3rem;
}

.precio-comprar {
    color: var(--vdt-color-700);
}

.th-fv {
    appearance: none;
    border: 0px solid;
    background-color: #313131;
    color: #fff;

    td {
        padding: 5px 5px 5px;
    }
}

.tb-fv td {
    padding: 5px 5px 5px;
}

.vdt-color-n {
    color: #ED583A;
}

.centrar-flex-h {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.texto-vdt {
    color: var(--vdt-c-l-4);
}

.texto-vdt-2 {
    all: unset;
    font-weight: bold;
    color: var(--vdt-color-500);
}

.texto-vdt-3 {
    all: unset;
    font-weight: bold;
    color: var(--vdt-c-l-3);
}

.vdt-soft-incluye {
    border: 1px solid var(--vdt-c-l-3);
    background-color: #fff;
    border-radius: 15px;
    padding: .5rem;
}

.vdt-soft-incluye {
    width: 100%;
}

.vdt-s-i {
    display: flex;
    flex-direction: column;
    width: 320px;
    padding: .1rem;
    border-radius: 50px 50px;
    background-color: var(--vdt-c-l-3)
}

.span-vdt-soft {
    display: block;
    width: 100%;
    padding: .5rem;
    background-color: #fff;
    color: var(--vdt-c-l-3);
    border-radius: 50px
}

.color-comentario-calificacion {
    color: var(--vdt-c-l-4);
}

.space-seccion {
    height: 3rem;
}

.space-seccion-2 {
    height: 1.5rem;
}

.a-direccion {
    text-decoration: none;
}

.img-kit {
    object-fit: contain;
}

.header-flex {
    display: flex;
}

.col-h-p {
    flex: 1;
}

.col-h-g {
    flex: 2;
}

.lista-v {
    padding-left: 50px;
}

.justificar {
    text-align: justify;
}

.txt-especial {
    font-weight: bold;
    text-decoration: underline;
}

.txt-just {
    text-align: justify;
}

.testimonios {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.card-testimonio {
    width: 350px;
    padding: 10px 10px 10px;

}

.bord {
    border: 5px solid;
}

.c-pointer {
    cursor: pointer;
}

/* Acordeon a donde vamos */
.acordeon {
    width: 800px;
    margin: 50px auto;
    color: black;
    background-color: white;
    padding: 5px 5px;
}

.acordeon .contenedor {
    position: relative;
    margin: 10px 10px;
}

.acordeon .label {
    position: relative;
    padding: 10px 0;
    color: black;
    cursor: pointer;
}

.acordeon .label::before {
    content: '+';
    color: black;
    position: absolute;
    top: 50%;
    right: -5px;
    font-size: 30px;
    transform: translateY(-50%);
}

.acordeon .content {
    position: relative;
    background: white;
    height: 0;
    text-align: center;
    width: 750px;
    overflow: hidden;
    transition: 0.5s;
}

.acordeon .contenedor.activa .content {
    height: 100px;
}

.acordeon .contenedor.activa .label::before {
    content: '-';
    font-size: 30px;
}

.padd-20-m {
    padding: 20px 20px 2px;
}

.contenedor-img {
    position: relative;
}

.txt-img {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4vh;
    width: 100%;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    background-color: rgb(145, 30, 85);
    color: var(--white);
}

.cont-img {
    position: relative;
    text-align: center;
    color: red;
    border: 1px solid;
}

.slide .image-data-p {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 100;
}

.txt-img-slider {
    position: absolute;
    bottom: -3%;
    transform: translate(-100%, -80%);
    padding: 10px 10px 10px 10px;
}

.img-paquete {
    position: absolute;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    column-gap: 15px;
    padding: 0 0 0 50px;
    bottom: 50%;
}

.i-paquete {
    width: 180px;
    border-top-left-radius: 25px;
    padding-bottom: 0px;
    opacity: .8;
}

.btn-paquete {
    display: inline-block;
    background-color: #fff;
    color: var(--vdt-color-800);
    text-decoration: none;
    border: none;
    text-align: center;
    width: 180px;
    height: 40px;
    cursor: pointer;
    text-align: center;
    opacity: .8;
}

.btn-paquete:hover {
    background: var(--vdt-color-300);
    color: white;
    transition-duration: .2s;
}

.plan {
    width: 250px;
}

.h-c {
    display: none;
}

.btn-full-c {
    width: 100%;
}

/* *** TIENDA *** */

.tienda-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(250px, auto);
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    align-items: center;
    justify-items: center;
    justify-content: space-around;
}

.tienda-items .img {
    max-width: 275px;
    min-height: 250px;
}

.tarjeta-t {
    width: 275px;
    min-height: 335px;
    padding: 1rem;
}

.tarjeta-d {
    width: 275px;
    min-height: 335px;
    padding: .2rem;
}


.item-desc {
    padding: 16px;
    width: auto;
    font-size: 1.2em;
    min-height: 190px;
    border-bottom: 1px solid var(--vdt-color-200);
    text-align: left;
}

.nombre-producto-p {
    font-size: 1.3em;
}

.contenido-100 {
    width: 100%;
    height: 100%;
    min-width: 350px;
    padding: 20px 20px 20px;
}

.contenido-tg-producto {
    width: 100%;
    height: 100%;
    min-width: 250px;
    padding: 20px 20px 20px;
}

fieldset {
    border: 1px solid rgba(0, 14, 59, 0.25);
    -webkit-box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.25);
    border-radius: 1rem;

}

.black {
    color: #000;
}

/* select Envios */
.sPaqueteria {
    appearance: none;
    border: none;
    border-bottom: 1px solid var(--vdt-c-l-6);
    outline: 0;
    font: inherit;
    font-size: 14px;
    width: 100%;
    height: 50%;
    padding: .5rem .5rem;
    /* background: var(--arrow-icon) no-repeat right .2em center / 1.4em,
        linear-gradient(to left, var(--vdt-c-l-6) 1.3em, var(--select-bg) 2em); */
    background: var(--select-bg);
    color: var(--vdt-c-l-5);
    border-radius: 0.25em;
    cursor: pointer;

    &::-ms-expand {
        display: none;
    }

    &:focus {
        outline: none;
    }

    option {
        color: inherit;
        background-color: var(--option-bg);
    }
}

/* <select> sucursal / linea */
.select-opt {
    appearance: none;
    border: 1px solid var(--vdt-c-l-6);
    outline: 0;
    font: inherit;
    width: 95%;
    height: 50%;
    padding: .5rem .5rem;
    background: var(--arrow-icon) no-repeat right .2em center / 1.4em,
        linear-gradient(to left, var(--vdt-c-l-6) 1.3em, var(--select-bg) 2em);
    color: red;
    border-radius: 0.25em;
    cursor: pointer;

    &::-ms-expand {
        display: none;
    }

    &:focus {
        outline: none;
    }

    option {
        color: inherit;
        background-color: var(--option-bg);
    }
}

/* Buscador */
.buscador {
    display: block;
    width: 100%;
}

.buscador-fixed {
    display: block;
    width: 150px;
    position: fixed;
    top: 134px;
    right: 0px;
}

.frmBuscar {
    max-width: 500px;
}

.txtBuscar {
    font-size: 24px;
    width: 50%;
    height: 50px;
    border: 0;
}

.txtBuscar:focus {
    border-bottom: 1px solid #01314e;
    outline: none;
}


.iconoBbuscar {
    border: none;
    box-sizing: border-box;
    padding: .25rem .25rem;
    color: #fff;
    border-radius: 0 .5rem .5rem 0;
    background-color: var(--vdt-c-l-6);
    text-align: center;
    font-size: 1.2em;
    transition: all 1s;
    cursor: pointer;
}

/* PERFIL */

.lista-direcciones {
    padding: 20px;
}

.legend {
    height: 45px;
    padding: 8px;
}

.btns-extra {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: center;
    padding: 1.2;
}

.select-pedidos {
    border: none;
    border-bottom: 1px solid #f0f0f0;
}

.fechas {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
}


/* Breadcrumb */
.breadcrumb {
    display: flex;
    flex-direction: column;
    font: .75em sans-serif;
    list-style: none;
    width: 90%;
}

.breadcrumb.bc2x {
    font-size: 1em;
}

.breadcrumb p {
    margin: 0;
}

.breadcrumb li {
    display: inline-block;
    margin-bottom: .2em;
}

.breadcrumb li a {
    border-radius: .25rem 0 0 .25rem;
    background-color: var(--vdt-color-400);
    box-sizing: border-box;
    color: #fff;
    display: block;
    max-height: 2em;
    padding: .5em 1em .5em 1.5em;
    position: relative;
    text-decoration: none;
    transition: .25s;
}

.breadcrumb li a:before {
    border-top: 1em solid transparent;
    border-bottom: 1em solid transparent;
    border-left: 1em solid #fff;
    content: "";
    position: absolute;
    top: 0;
    right: -1.25em;
    z-index: 1;
}

.breadcrumb li a:after {
    border-top: 1em solid transparent;
    border-bottom: 1em solid transparent;
    border-left: 1em solid var(--vdt-color-400);
    content: "";
    position: absolute;
    top: 0;
    right: -1em;
    transition: .25s;
    z-index: 1;
}

.breadcrumb li a:hover {
    background-color: var(--vdt-color-500);
}

.breadcrumb li a:hover:after {
    border-left-color: var(--vdt-color-500);
}

.breadcrumb li .bc-marca {
    background-color: var(--vdt-c-l-6);
    color: white;
    /* border: 1px solid var(--vdt-c-l-5); */
    pointer-events: none;
}

.breadcrumb li .bc-marca::after {
    border-left-color: var(--vdt-c-l-6);
}

/* Modal */
.contenedor-modal {
    display: flex;
    background-color: #fff;
    align-items: center;
    justify-content: center;
    position: fixed;
    pointer-events: none;
    opacity: 0;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: opacity 0.3s ease;
}

.contenedor-modal-abs {
    display: flex;
    background-color: #fff;
    /* align-items: center;
        position: absolute;
        top: 150px;
    */
    justify-content: center;
    position: fixed;
    top: 133px;
    pointer-events: none;
    opacity: 0;
    left: 0;
    /* height: 100%; */
    width: 100%;
    transition: opacity 0.3s ease;
}

.modal-fechas-credito {
    background-color: #fff;
    /* width: 100%; */
    height: 100%;
    padding: 30px 50px;
    border-radius: 5px;
    /* z-index: 100; */
}

.contenedorFechasAPagar {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 12px;
    justify-items: center;
}

.contenedor-modal-ca {
    display: flex;
    background-color: #fff;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 133px;
    pointer-events: none;
    opacity: 0;
    left: 0;
    height: 420px;
    width: 100%;
    transition: opacity 0.3s ease;
}

.modal-abono-c {
    background-color: #fff;
    width: 400px;
    height: 100%;
    padding: 30px 50px;
    /* z-index: 100; */
}

.modal-codigo-v {
    background-color: #fff;
    width: 600px;
    max-width: 100%;
    min-height: 350px;
    padding: 30px 50px;
    border-radius: 5px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); */
    text-align: center;
}

.modal-codigo-v h1 {
    margin: 0;
}

.modal-codigo-v p {
    opacity: 0.7;
    font-size: 14px;
}

.mostrar-modal-v-ini-olv-contra {
    pointer-events: auto;
    opacity: 1;
}

.z-100 {
    z-index: 100;
}

.font-z-12 {
    font-size: 12px;
}

/* Modal-Carrito (prueba) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0%;
    top: 0%;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.modal-contenido {
    background-color: var(--vdt-color-50);
    margin: 10% auto;
    padding: 20px;
    border: 1px solid var(--vdt-color-200);
    border-radius: 25px 0 25px 25px;
    width: 80%;
    max-width: 600px;
}

.cerrar {
    color: var(--vdt-color-600);
    float: right;
    font-size: 18px;
    font-weight: bold;
}

.cerrar:hover,
.cerrar:focus {
    color: var(--vdt-color-800);
    text-decoration: none;
    cursor: pointer;
}

.btn-back {
    background-color: #fff;
    color: var(--vdt-color-500);
    line-height: 1px;
    font-size: 25px;
    position: fixed;
    text-align: center;
    bottom: 50px;
    left: 25px;
    padding: 10px 10px;
    border: 1px solid var(--vdt-color-300);
    border-radius: 15px;
    cursor: pointer;
    transition-duration: .3s;
    z-index: 99;
}

.btn-back:hover {
    background-color: var(--vdt-c-l-1);
    color: #fff;
}

.btn-carrito:hover {
    background-color: var(--vdt-color-400);
    color: #fff;
    border: none;

}

.fa-cart-shopping {
    z-index: 2;
}

.input-cantidad {
    text-align: center;
    background: none;
    border: none;
    width: 55px;
}

.carrito-lista td:nth-child(2) {
    width: 80%;
}

.carrito-lista {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.carrito-lista-aprobado {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-limpiar-carrito {
    font-size: 1.2rem;
    padding: 8px 4px;
    background-color: #fff;
    color: var(--vdt-color-300);
    border: 1px solid var(--vdt-color-300);
    border-radius: 12px 12px 0 0;
}

.busqueda-lista {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.busqueda-lista td:nth-child(2) {
    width: 80px;
}

#miTabla tbody tr:hover {
    color: #f0f0f0;
    background-color: var(--vdt-color-200);
    transition: .2s;
}

.tabla-rc {
    border-bottom: red;
}

.tabla-carrito {
    width: 100%;
}

.tabla-carrito thead tr {
    background-color: var(--vdt-color-300);
    padding: 12px 16px;
    color: #fff;
    height: 20px;
    text-align: center;
}

.tabla-carrito tbody tr {
    height: 50px;
    min-height: 50px;
}

.tabla-carrito tbody tr:nth-of-type(even) {
    background-color: var(--vdt-color-50);
}

.tabla-carrito tbody tr:hover {
    background-color: var(--vdt-color-100);
    transition: .2s;
}

.carrito-td-cantida {
    width: 90px;
}


.ponerCantidad {
    cursor: pointer;
}

.cantidad-cont {
    border: 1px solid var(--vdt-color-400);
    border-radius: 50px;
    padding: 8px 8px;
    height: 33.5px;
}

.cantidad-cont {
    display: flex;
    justify-content: space-between;
}

.cantidad-col {
    width: 30%;
}

.btn-accion {
    padding: 2px;
    color: #ff681f;
    border-radius: 50px;
    transition: .3s;
}

.btn-accion:hover {
    background-color: var(--vdt-color-200);
    color: #fff;
}

.botones-carrito {
    width: 50%;
    display: flex;
    justify-content: space-evenly;
}

.botones-producto {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.cont-desc-prod-bajo {
    border-bottom: 1px solid var(--vdt-color-200);
}

.perfil-tg {
    width: 350px;
    min-height: 620px;
    padding: 0 .5rem;
}

.perfil-tg-detalle-venta {
    min-height: 620px;
}

.tg-direccion-venta {
    height: auto;
}

.btn-r-compra {
    display: inline-block;
    position: inherit;
    background-color: #fff;
    border: 1px solid var(--vdt-color-200);
    border-radius: 10px;
    padding: 8px;
    cursor: pointer;
    transition: .1s;
}

.btn-icono {
    background-color: #fff;
    border: 1px solid var(--vdt-color-200);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    transition: .2s;
}

.btn-icono:hover {
    background-color: var(--vdt-color-300);
    color: #fff;
}

.btn-r-compra:hover {
    background-color: var(--vdt-color-300);
    color: white;

    .precio-comprar {
        color: white;
    }
}

.btn-r-comprar {
    display: block;
    position: inherit;
    background-color: var(--vdt-color-300);
    color: #fff;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    transition: .2s;
}

.btn-r-comprar:hover {
    background-color: #fff;
    border: 1px solid var(--vdt-color-300);
    color: var(--vdt-color-300);
}


.btn-ver-condiciones {
    /* display: block; */
    /* position: inherit; */
    background-color: var(--vdt-c-w);
    border: 1px solid var(--azul1);
    border-radius: 10px;
    padding: 10px;
    transition: .2s;
}

.btn-ver-condiciones:hover {
    background-color: #fff;
    border: 1px solid var(--vdt-color-300);
    color: var(--vdt-color-300);
}

/* formulario compra */
.grid-3-dts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px 15px;
}

.col-1 {
    display: grid;
    grid-template-columns: repeat((2, 1fr));

}

.grid-2-dts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px 15px;
}

.input-group {
    margin: 25px 0;
    position: relative;
}

.input-group input {
    width: 140px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    color: #111;
    outline: none;
    border: none;
    border-bottom: 1px solid var(--vdt-color-success);
}

.lbl-fc {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.lbl-fc span {
    display: inline-block;
    transition: transform 0.2s, color 0.3s;
}

input:focus+.lbl-fc span,
input:not(:placeholder-shown)+.lbl-fc span {
    transform: translateY(-38px);
}

.select-metod-pago {
    width: 250px;
    border: none;
    border-bottom: 1px solid var(--vdt-color-300);
}

.detalle-pedido {
    display: flex;
    align-items: center;
}

.total-compra {
    background-color: var(--vdt-color-100);
}

.red {
    color: red;
}

.green {
    color: green;
}

/* Formulario sesion */
.clearfix:after,
.clearfix:before {
    content: '';
    display: table
}

.clearfix:after {
    clear: both;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

.login-wrap {
    width: 100%;
    margin: auto;
    max-width: 525px;
    min-height: 770px;
    position: relative;
    padding-top: 15px;
    box-shadow: 0 12px 15px 0 rgba(0, 0, 0, .24), 0 17px 50px 0 rgba(0, 0, 0, .19);
}

.login-html {
    width: 100%;
    height: auto;
    position: absolute;
    padding: 32px 70px 32px 70px;
}

.login-html .sign-in-htm,
.login-html .sign-up-htm {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    transform: rotateY(180deg);
    backface-visibility: hidden;
    transition: all .4s linear;
}

.login-html .sign-in,
.login-html .sign-up,
.login-form .group .check {
    display: none;
}

.login-html .tab,
.login-form .group .lbl-frm-sesion,
.login-form .group .button {
    text-transform: uppercase;
}

.login-html .tab {
    font-size: 22px;
    margin-right: 15px;
    padding-bottom: 5px;
    margin: 0 15px 10px 0;
    display: inline-block;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}

.login-html .sign-in:checked+.tab,
.login-html .sign-up:checked+.tab {
    color: var(--vdt-color-600);
    border-color: var(--vdt-color-300);
}

.login-form {
    min-height: 345px;
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.login-form .group {
    margin-bottom: 15px;
}

.input-frm-sesion {
    width: 20px;
    display: block;
}

.login-html .sign-in:checked+.tab+.sign-up+.tab+.login-form .sign-in-htm {
    transform: rotate(0);
}

.login-html .sign-up:checked+.tab+.login-form .sign-up-htm {
    transform: rotate(0);
}

.hr {
    height: 2px;
    margin: 60px 0 50px 0;
    background: rgba(255, 255, 255, .2);
}

.error-campo {
    color: red;
}

/* Notificacion popup */
.contenido-pop {
    position: absolute;
    bottom: 10px;
}

.notEmail {
    display: none;
    position: relative;
    width: 320px;
    height: 90px;
    margin-bottom: 5px;
    background-color: #ffffff;
    padding: 5px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    overflow: hidden;
    -webkit-border-radius: 0 5px 5px 0;
    border-radius: 0 5px 5px 0;
    -webkit-box-shadow: 9px 5px 7px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 9px 5px 7px 0 rgba(0, 0, 0, 0.3);
    animation-name: slideIn;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    opacity: 1;
    animation-delay: 0s;
}

.mensaje_not {
    float: left;
    width: 60%;
    height: 100%;
    text-align: center;
    line-height: 90px;
    font-size: 0.9em;
}

.notEmail>img {
    float: right;
    height: 100%;
    background-size: contain;

}

@keyframes slideIn {
    0% {
        margin-left: -500px;
        opacity: 0;
    }

    100% {
        margin-left: 0px;
        opacity: 1;
    }
}

.sin-estilos {
    all: unset;
}

.rem-2-4 {
    font-size: 2.4rem;
}

.rem-2 {
    font-size: 2rem;
}

.rem-1-8 {
    font-size: 1.8rem;
}

.t1 {
    font-weight: 50;
}

.rem-1-2 {
    font-size: 1.2rem;
}

.tg-pago-pendiente {
    width: 80%;
    padding: 1rem;
}
.etqEnvio{
    font-size: 12px;
}
/* promociones */
.productos-promo {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px 15px;
    grid-template-columns: repeat(auto-fill, minmax(21rem, 1fr));
    justify-items: center;
}

.fhFinPromo{
    margin: 0 80px 0 0; 
    width: auto;
    text-align:right; 
    color:#555;
}
.relative {
    position: relative;
}

.img-desc {
    position: relative;
}

.img-desc .porcentaje-desc {
    color: red;
    background-color: var(--vdt-color-100);
    display: block;
    position: absolute;
    text-align: center;
    border: 1px solid var(--vdt-color-200);
    border-radius: 0px 15px 0px 15px;
    right: 60px;
    bottom: 24px;
    cursor: pointer;
}

.img-desc .porcentaje-desc2 {
    color: red;
    background-color: var(--vdt-color-100);
    display: block;
    position: absolute;
    text-align: center;
    border: 1px solid var(--vdt-color-200);
    padding: 5px 15px;
    border-radius: 0px 15px 0px 15px;
    right: 60px;
    bottom: 24px;
    cursor: pointer;
}

.img-contain {
    object-fit: contain;
}


.caja-promo {
    width: 300px;
    position: relative;
}

.img-promocion {
    max-width: 200px;
    border-radius: 15px;
    object-fit: contain;
}

.shadow-box {
    width: 250px;
    border-radius: 15px;
    -webkit-box-shadow: 0px 9px 20px -1px rgba(184, 184, 184, 1);
    -moz-box-shadow: 0px 9px 20px -1px rgba(184, 184, 184, 1);
    box-shadow: 0px 9px 20px -1px rgba(184, 184, 184, 1);
    margin-bottom: 20px;
}

.shadow-box-1 {
    border-radius: 15px;
    -webkit-box-shadow: 0px 9px 20px -1px rgba(184, 184, 184, 1);
    -moz-box-shadow: 0px 9px 20px -1px rgba(184, 184, 184, 1);
    box-shadow: 0px 9px 20px -1px rgba(184, 184, 184, 1);
}

table {
    border-collapse: collapse;
}

.btn-cont-promo {
    display: block;
    position: absolute;
    background-color: var(--vdt-color-500);
    color: #fff;
    border-radius: 10px;
    padding: 10px;
    right: 20px;
    bottom: 24px;
    cursor: pointer;
    z-index: 9;
    transition: 0.1s;
}

.fa-cart-shopping {
    font-size: 26px;
    /* text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff; */
}

.btn-cont-promo:hover {
    background-color: var(--vdt-color-100);

    .fa-cart-shopping {
        color: var(--vdt-color-500);
        /* color: var(--white); */
    }
}

.cantidad-td {
    display: flex;
    flex-direction: row;
    gap: 14px;
}

.cantidad-td span {
    color: red;
    cursor: pointer;
}

.cantidad-td-item {
    cursor: pointer;
}

.h-pc {
    display: none;
}

.i-usu {
    font-size: 25px;
}

.lbl-lr {
    font-size: 12px;
}

.flex-rowP-colM {
    display: flex;
    flex-direction: row;
}

/* *** RESPONSIVE *** */
/* 900px */
@media (max-width: 900px) {

    /* Menu */
    .menu__hamburguer {
        display: flex;
    }

    .menu__item {
        --clip: 0;
        overflow: hidden;
    }

    .menu__item--active {
        --transform: rotate(0);
        --background: #fff;
    }

    .menu__item--show {
        background-color: var(--background);
    }


    .menu__links {
        position: fixed;
        max-width: 400px;
        width: 100%;
        top: 130px;
        bottom: 0;
        right: 0;
        background-color: #fff;
        overflow-y: auto;
        display: grid;
        grid-auto-rows: max-content;
        transform: translateX(100%);
        z-index: 100;
    }

    .menu__links--show {
        transform: unset;
        width: 100%;
    }

    .menu__link {
        padding: 25px 0;
        padding-left: 30px;
        height: auto;
    }

    .menu__arrow {
        margin-left: auto;
        margin-right: 20px;
    }

    .menu__nesting {
        display: grid;
        position: unset;
        width: 100%;
        transform: translateY(0);
        height: 0;
        transition: height 0.3s;
    }

    .menu__link--inside {
        width: 90%;
        margin-left: auto;
        border-left: 1px solid var(--vdt-c-w);
    }

    .padd-0 {
        padding: 0;
    }

    .padd-2 {
        padding: 1rem 1rem;
    }

    /* Contacto */
    .container-contact {
        width: 90%;
        padding: 30px 40px 40px 35px;
    }

    .container-contact .content-contact .right-side {
        width: 75%;
        margin-left: 55px;
    }

    .img-camp {
        width: 300px;
    }

    /* Footer */
    footer .content-footer .link-boxes {
        flex-wrap: wrap;
    }

    footer .content-footer .link-boxes .input-box {
        width: 40%;
        margin-top: 10px;
    }
}

/* 700px */
@media (max-width: 700px) {
    .image-data h2{
        font-size: 16px;
    }
    .tg-pago-pendiente {
        width: 100%;
        padding: .2rem;
    }

    .navegacion-productos {
        width: 100%;
    }

    .navegacion-filtros {
        display: none;
        width: 350px;
        padding: 0;
    }

    #informacion-de-envio {
        width: 300px;
    }

    .columna-busqueda-nav-filtros {
        top: 160px;
    }

    .s-busqueda {
        padding-top: 40px;
    }

    .slider-op-clientes {
        width: 330px;
        height: auto;
    }

    .grid-3 {
        grid-gap: 15px 15px;
        grid-template-columns: repeat(1, 1fr);
        align-items: center;
        justify-items: center;
    }

    .tg-servicios {
        display: grid;

    }

    .flex-row-m {
        flex-direction: column;

        .dir-list {
            width: 100%;
        }
    }
    .flex_row_a_column {
        flex-direction: column;
    }
    .flex-rowP-colM {
        flex-direction: column;

        .dir-list {
            width: auto;
        }
    }

    .tg-s {
        width: 320px;
    }

    .tarjeta-t {
        width: 100%;
    }

    .tarjeta-d {
        width: 100%;
    }

    .breadcrumb {
        padding-left: 0;
    }

    /* Contacto */
    .container-contact {
        margin: 40px 0;
        height: 100%;
    }

    .container-contact .content-contact {
        flex-direction: column-reverse;
    }

    .container-contact .content-contact .left-side {
        width: 100%;
        flex-direction: row;
        margin-top: 40px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .container-contact .content-contact .left-side::before {
        display: none;
    }

    .container-contact .content-contact .right-side {
        width: 100%;
        margin-left: 0;
    }

    main {
        padding: 0 0 0 0;
    }

    /* Menu lateral */
    .menu-lat {
        left: 10px;
    }

    .icono-departamento {
        width: 45px;
        height: 45px;
    }


    .btn-ver-departamentos {
        background-color: var(--vdt-color-400);
        height: 55px;
        padding: 15px;
        color: #f0f0f0;
        border: none;
        border-radius: 0 0 25px 0;
        position: fixed;
        top: 70px;
        left: 0px;
        z-index: 98;
    }

    .btn-ver-departamentos.ve {
        background-color: var(--vdt-fondo-menu-lat);
        color: var(--vdt-color-300);
    }

    .login-html {
        width: 100%;
        height: 100%;
        position: absolute;
        padding: 40px 20px 40px 20px;
    }

    /* Slider Tienda */
    .btn-s-t {
        display: none;
    }

    a.button {
        display: none;
    }

    .caja-promo {
        width: 100%;
    }

    /* Footer */
    footer {
        position: relative;
        z-index: 98;
    }

    .content-footer .top .logo-details {
        font-size: 26px;
    }

    .content-footer .top .media-icons a {
        height: 35px;
        width: 35px;
        font-size: 14px;
        line-height: 35px;
    }

    footer .content-footer .link-boxes .box-footer {
        width: calc(100% / 3 - 10px);
    }

    footer .content-footer .link-boxes .input-box {
        width: 60%;
    }

    .bottom-details .bottom_text span,
    .bottom-details .bottom_text a {
        font-size: 12px;
    }

    /* Extras */
    .precioSinDesc {
        font-size: 14px;
        color: gray;
    }
    .no-encontrado {
        width: 100%;
    }

    .padd-20-pc {
        padding: 0 0;
    }

    .img-paquete {
        position: absolute;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        column-gap: 15px;
        padding: 0 0 0 50px;
        bottom: 0%;
    }

    thead tr th.rotar {
        height: 90px;
        transform: rotate(-90deg);
        text-align: center;
    }

    .h-c {
        display: inherit;
    }

    .h-pc {
        display: block;
    }

    .h-m {
        display: none;
    }

    .plan {
        width: 210px;
    }

    .top-m {
        top: 100px;

    }

    .img-paquete {
        position: absolute;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        column-gap: 15px;

        bottom: 50%;
    }

    .btn-h {
        display: none;
    }

    .contenedor1 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: auto;
        grid-auto-rows: minmax(100px, auto);
    justify-items: center;
    }

    .padd-20-m {
        padding: 0px 0px 2px;
    }

    .section-movil-h {
        display: none;
    }

    .btn-fill {
        width: 95%;
    }

    .icon {
        width: 75px;
        height: 75px;
    }

    .btn-full {
        width: 100%;
        padding: 10px;
    }

    .box {
        margin: 12px;
       width: auto;
    }

    .software {
        grid-template-columns: 1fr;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .img-ofrecemos {
        display: none;
    }

    .img-carrito {
        display: none;
    }

    .ayuda {
        grid-template-columns: auto;
        grid-auto-rows: 1fr;

        justify-items: center;
        align-items: center;
        justify-content: center;
        align-content: center;
    }

    .icon-whatsapp {
        width: 40px;
        height: 40px;
    }

    .icon-whatsapp {
        position: fixed;
        bottom: 50px;
        right: 25px;
        z-index: 99;
    }

    .text-float {
        background-color: #59d96b;
        padding: 10px 15px;
        border-radius: 15px;
        max-width: 70%;
        margin: 10px;
        font-size: 16px;
        color: #f0f0f0;
        position: fixed;
        bottom: 15px;
        right: 55px;
        z-index: 99;
    }

    .capturas-portadas {
        max-width: 100%;
        border-radius: 20px;
        object-fit: cover;
        width: 320px;
        height: auto;
    }

    .acordeon {
        width: 350px;
        margin: 30px auto;
        color: black;
        background-color: white;
        padding: 5px 5px;
    }

    .acordeon .content {
        position: relative;
        background: white;
        height: 0;
        text-align: center;
        width: 310px;
        overflow: hidden;
        transition: 0.5s;
    }

    .acordeon .contenedor.activa .content {
        height: 250px;
    }

    .btn-cont-promo {
        display: block;
        position: absolute;
        background-color: var(--vdt-color-500);
        border-radius: 10px;
        padding: 10px;
        right: 25px;
        bottom: 20px;
        cursor: pointer;
        z-index: 9;
        transition: background-color .2s;
    }

    .item-desc {
        width: auto;
        min-height: 1px;
    }

    .contenido-100 {
        width: 100%;
        padding: 20px 8px 0 8px;
    }

    .img-prod {
        min-height: 0;
    }

    /* Formulario compra */
    .input-group input {
        width: 150px;
        padding: 15px;
        background-color: rgba(255, 255, 255, 0.5);
        color: #111;
        outline: none;
        border: none;
        border-bottom: 1px solid var(--vdt-color-success);
    }
    .fhFinPromo{
        margin: 0;
        text-align: center;
    }
    .td-1 {
        width: 100px;
    }

    .td-2 {
        width: 20px;
    }

    td.td-3 {
        width: 85px;
    }

    .cantidad-carrito {
        position: fixed;
        top: 130px;
        right: 0;
        z-index: 99;
    }

    .btn-carrito {
        background-color: #fff;
        color: var(--vdt-color-500);
        font-size: 40px;
        position: fixed;
        text-align: center;
        top: 130px;
        right: 0;
        border-right: 100px;
        padding: 5px 5px;
        z-index: 97;
        border: 1.5px solid var(--vdt-color-100-1);
        border-radius: 0 0 0 15px;
        cursor: pointer;
        transition-duration: .3s;
        opacity: 0;
        transition: opacity 0.5s ease-in-out; /* Animación suave */

        i {
            font-size: 40px;
        }
    }
    .btn-carrito.visible {
        opacity: 1;
    }

    .btn-atajos {
        background-color: #fff;
        color: var(--vdt-color-500);
        font-size: 40px;
        position: fixed;
        text-align: center;
        top: 130px;
        left: 0;
        padding: 5px 5px;
        z-index: 97;
        border: 1.5px solid var(--vdt-color-100-1);
        border-radius: 0 0 12px 0;
        cursor: pointer;
        opacity: 0;
        transition: opacity 0.5s ease-in-out; /* Animación suave */
    }
    .btn-atajos.visible {
        opacity: 1;
    }

    .dtc-direccion {
        width: 100%;
    }

    .space-m {
        padding-top: 80px;
    }

    .botones-carrito {
        width: 90%;
        display: flex;
        justify-content: space-evenly;
    }

    .carrito-lista {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 5px;
    }
}

/* 520px */
@media (max-width: 520px) {
    footer::before {
        top: 145px;
    }

    footer .content-footer .top {
        flex-direction: column;
    }

    .content-footer .top .media-icons {
        margin-top: 16px;
    }

    footer .content-footer .link-boxes .box-footer {
        width: calc(100% / 2 - 10px);
    }

    footer .content-footer .link-boxes .input-box {
        width: 100%;
    }
}

.txt-promo:hover {
    background: white;
    cursor: pointer;
    color: black;
    border: 1px solid var(--vdt-color-300);

    .btn-p {
        color: var(--vdt-color-800);
    }
}

/* Split button styles */
.btn-p {
    text-transform: uppercase;
    text-decoration: none;
    border: 0;
    position: relative;
    margin: 0 auto;
    padding: 4px 8px;
    background: transparent;
    outline: none;
    font-size: 18px;
    color: #f0f0f0;
    transition: all 0.2s var(--cubic-bezier) 0.2s;
    display: inline-block;
    z-index: 98;
}

.btn-p::after,
.btn-p::before {
    border: 0;
    content: "";
    position: absolute;
    height: 40%;
    width: 10%;
    transition: all .5s var(--cubic-bezier);
    z-index: -2;
    border-radius: 50%;
}

.btn-p::before {
    background-color: var(--colorSecondary);
    top: -0.75rem;
    left: -2rem;
    animation: topAnimation 2s var(--cubic-bezier) 0.25s infinite alternate;
}

.btn-p::after {
    background-color: var(--colorPrimary);
    top: 3rem;
    left: 9.9rem;
    animation: bottomAnimation 2s var(--cubic-bezier) 0.5s infinite alternate;
}

.txt-promo:hover {
    background: white;
    cursor: pointer;
    border: 1px solid var(--vdt-color-300);
}

.btn-p:hover {
    transition: all 0.5s var(--cubic-bezier) 0.15s;
    cursor: pointer;

    .btn-p::before,
    .btn-p::after {
        top: 0;
        height: 100%;
        width: 100%;
        border-radius: 0;
        animation: none;
    }

    .btn-p::after {
        left: 0rem;
    }

    .btn-p::before {
        top: 0.5rem;
        left: .35rem;
    }
}

@keyframes topAnimation {
    from {
        transform: translate(0rem, 0);
    }

    to {
        transform: translate(0rem, 3.5rem);
    }
}

@keyframes bottomAnimation {
    from {
        transform: translate(-10.8rem, 0);
    }

    to {
        transform: translate(0rem, 0);
    }
}