@charset "UTF-8";

/********************************/
/*****  Carga Tipografías  *****/

@font-face {
  font-family: "Ubuntu-Bold";
  src: url("fonts/Ubuntu-Bold.ttf");
}

@font-face {
  font-family: "Ubuntu-Bold-Italic";
  src: url("fonts/Ubuntu-BoldItalic.ttf");
}

@font-face {
  font-family: "Ubuntu-Italic";
  src: url("fonts/Ubuntu-Italic.ttf");
}

@font-face {
  font-family: "Ubuntu-Light";
  src: url("fonts/Ubuntu-Light.ttf");
}

@font-face {
  font-family: "Ubuntu-Light-Italic";
  src: url("fonts/Ubuntu-LightItalic.ttf");
}

@font-face {
  font-family: "Ubuntu-Medium";
  src: url("fonts/Ubuntu-Medium.ttf");
}

@font-face {
  font-family: "Ubuntu-Medium-Italic";
  src: url("fonts/Ubuntu-MediumItalic.ttf");
}

@font-face {
  font-family: "Ubuntu-Regular";
  src: url("fonts/Ubuntu-Regular.ttf");
}

@font-face {
  font-family: "Signika";
  src: url("fonts/Signika-VariableFont_wght.ttf");
}

/********************************/
/*****  Variables y  ***********/

:root {
  --green-pcf: #43d87e;
  --yellow-pcf: #e2ff3c;
  --blue-pcf: #0042fd;
  --gray-pcf: #666666;
  --white: #ffffff;
  --black: #000000;
  --green-dark: #28c064;
  --green-normal: #43d87e;
  --green-semilight: #51ee8f;
  --green-light: #83ffb4;
  --green-extralight: #c2ffda;
  --green-superlight: #f1fff7;
  --green-disabled: #b4efcb;
  --blue-dark: #0622cd;
  --blue-normal: #0042fd;
  --blue-semilight: #3f59fa;
  --blue-light: #6c81ff;
  --blue-extralight: #b6c0ff;
  --blue-superlight: #ecefff;
  --yellow-dark: #c2e10d;
  --yellow-normal: #e2ff3c;
  --yellow-semilight: #ecff7c;
  --yellow-light: #f3ffac;
  --yellow-extralight: #f9ffd7;
  --yellow-superlight: #fdfff0;
  --gray-dark: #2e3538;
  --gray-normal: #5c6970;
  --gray-semilight: #8f9ca3;
  --gray-light: #c7ced1;
  --gray-extralight: #e3e6e8;
  --gray-superlight: #f1f3f4;
  --success-dark: #2e843d;
  --success-normal: #5cb85c;
  --success-semilight: #afe9a3;
  --success-light: #ebfbe2;
  --error-dark: #9c2738;
  --error-normal: #d9534f;
  --error-semilight: #f3a996;
  --error-light: #fde8dc;
  --warning-dark: #ab6000;
  --warning-normal: #ee9800;
  --warning-semilight: #f9ce63;
  --warning-light: #fef3cb;
  --info-dark: #0e4799;
  --info-normal: #1c7cd5;
  --info-semilight: #74c2f2;
  --info-light: #d0f0fc;
}
/* BLOQUE CONTENIDO CYBER ACTIVO  */

/* Estado por defecto (OFF) */
.contenido-cyber-off { display: block; }
.contenido-cyber-on { display: none !important; }

/* Estado Cyber (ON) */
/* .contenido-cyber-off { display: none !important; }
.contenido-cyber-on { display: block; } */

/* POP UP CYBER */

/* .precio-regular-popup{
  font-size: large;
  text-decoration: line-through;
  color: #78095d;
  font-weight: 500;
  margin: 0;
    display: block;
} */
/* .precio-promo-popup{
  font-size: xx-large;
  font-weight: bolder;
  color: black;
  margin: 0;
    display: block;
} */

/* Estilos generales */
/* Aplicar la fuente Ubuntu a todo el pop-up */
.popup {
  font-family: 'Ubuntu', sans-serif;
}

/* O aplicarla solo a elementos específicos */
.popup-content h1, .popup-content p, .countdown, .cta-btn {
  font-family: 'Ubuntu', sans-serif;
}

.ofertas-relampago{
  max-width: 90%;
  border-radius:10px;
  border: solid black 11px;
  margin: 20px auto;
}


/* Pop-up */
.popup {
position: fixed;
top: 0;
right: -100%; /* Inicia fuera de la pantalla */
width: 500px; /* Ancho para desktop */
height: auto;
/* background-color: white; */
/* background-image: url(https://www.pcfactory.com.pe/public/landingpage/cyber/img/Fondo-popup.jpg); */
background-size:cover ;
box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
transition: right 0.5s ease-out;
z-index: 1000;
border-radius: 10px;
}

.popup.active {
 right: 0;  
 /* Desliza hacia la izquierda pop up */

}

/* Botón de cierre */
.close-btn {
position: absolute;
top: 10px;
left: 10px;
background-color: white;
color: black;
border: none;
border-radius: 50%;
width: 30px;
height: 30px;
font-size: 16px;
cursor: pointer;
z-index: 15;
}

/* Contenido del pop-up */
.popup-content {
padding: 5% 5%;
text-align: center;
/* border: solid  #43d87e 10px;  */
/* border: solid 10px; 
border-image-slice: 1;
border-image-source: linear-gradient(to left, #57317D, #F15753); */
/* background-color: rgba(255, 255, 255, 0.25); */
border-radius: 10px;
}

.popup-content h1 {
  font-size: xx-large;
color: white;
margin-bottom: 10px;
}

/* .popup-content-titulo {
  font-size: xx-large;
color: white;
margin-bottom: 10px;
display: block;
font-weight: bold;
font-family: 'Ubuntu', sans-serif;

} */

/* .popup-content p {
font-size: 14px;
color: black;
margin-bottom: 20px;
  font-weight: bold;
} */

.popup-image {
width: 45%;
height: auto;
margin-top: 10px;
border-radius: 13px;
margin-bottom: 10px;
}

/* Countdown */
/* Estilos para el reloj */
.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  color: white;
  border-radius: 10px;
  font-size: 24px;
  margin-bottom: 20px;
  width: 50%;
  margin: 5% 25%;
}

/* .time-section {
  position: relative;
  width: 50px; ¿
  height: 50px; ¿
  perspective: 200px; 
} */

.flip-card {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transform-style: preserve-3d;
}

.top, .bottom {
  position: absolute;
  width: 100%;
  height: 50%;
  overflow: hidden; /* Oculta el desbordamiento del número */
  background-color: white;
}

.top {
  top: 25%;
  transform-origin: bottom;
  border-bottom: 1px solid #000;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%); /* Recorta la mitad superior */
}

.bottom {
  bottom: 25%;
  clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%); /* Recorta la mitad inferior */
}

/* Contenedor interno para el número */
.number {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  font-weight: bold;
}

/* Ajustar la posición del número para recortar */
.top .number {
  top: 0; /* Alinea el número en la parte superior */
}

.bottom .number {
  bottom: 0; /* Alinea el número en la parte inferior */
}

/* Animación de caída */
@keyframes flip {
  0% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(-180deg);
  }
}

/* .top.flip {
  animation: flip 0.5s ease-in-out;
} */
/* Botón de CTA */
/* .cta-btn {
display: inline-block; */
/* background-color: #43d87e; */
/* background: linear-gradient(90deg,rgba(22, 61, 217, 1) 0%, rgba(100, 59, 189, 1) 50%, rgba(177, 43, 145, 1) 100%);
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
font-size: 16px;
transition: background-color 0.3s ease;
font-size: x-large;
box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
} */

.cta-btn:hover {
background-color: #6affa8; /* Hover más claro */
}

/* Estilos para mobile */
@media (max-width: 768px) {
.popup {
  width: 70%; 
}
.popup-content {
padding: 5% 5%;
}
}



/* ESTILOS MODAL CYBER */
#modalBackdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Modal que solo ocupa el tamaño de su contenido */
#modalpreventaiphone {
  background-color: black;
  /* padding: 20px; */
  border-radius: 10px;
  max-width: 600px;
  width: 100%;
  color: white;
  max-width: 350px;
}

.modal-body {
  text-align: center;
  background-size: contain;
  background-position: center;
  border-radius: 10px;
}

/* Estilos para el reloj */
#countdown {
  font-size:2.6rem;
  font-weight: bold;
  color: #000000;
  margin-top: 20px;
}

/* Botón de acción */
#ctaButton {
  margin: 30px;
  margin-top: 120%;
}

/* FIN DE ESTILOS MOBILE */


.mobile-text-cyber{
  /* display: none;  */
  font-weight: inherit;
  text-align: right !important;
  font-size: x-small !important;
  margin-top: -20px !important;
}
.item-mobile-ban{
  display: none;
}

.cont_fich_nuev {
  font-size: 16px;
}

.img-100 {
  width: 100% !important;
}

/********************************/
/********  Textos  *************/

/** Colores Textos **/

.pcf-text-green {
  color: var(--green-pcf);
}
.pcf-text-blue {
  color: var(--blue-pcf);
}
.pcf-text-yellow {
  color: var(--yellow-pcf);
}

.pcf-text-gray {
  color: var(--gray-pcf);
}

.pcf-text-white {
  color: var(--white);
}

.pcf-text-black {
  color: var(--black);
}

/** Tipografías Textos **/

.pcf-text-regular {
  font-family: Ubuntu-Regular;
}

.pcf-text-medium {
  font-family: Ubuntu-Medium;
}

.pcf-text-bold {
  font-family: Ubuntu-Bold;
}

/** Tamaños de Texto (Títulos y Parrafo) **/

.pcf-title-big {
  font-size: 4em !important;
}

.pcf-title-medium {
  font-size: 2.5em !important;
}

.pcf-title-small {
  font-size: 1.5em !important;
}

.pcf-paragraph {
  font-family: "Signika", Ubuntu-Bold, sans-serif;
  font-size: 1.4em;
  line-height: 1.3em;
  margin: 10px 0;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 400;
}
/***********************/
/***** CSS CARDS ******/

.card-pcf {
  border-radius: 5px;
  transition: 0.3s;
  background-color: #f9f9f9;
  padding-bottom: 10px;
  color: #707070 !important;
  -webkit-box-shadow: 0px 2px 4px 1px rgb(0 0 0 / 10%);
  -moz-box-shadow: 0px 7px 21px -14px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 4px 1px rgb(0 0 0 / 10%);
}
.card-pcf-d {

  transition: 0.3s;
  background-size: contain;
  aspect-ratio: 1/1;
  color: #707070 !important;

}

.card-image img {
  object-fit: cover;
  min-height: 220px;
}

.card-pcf:hover {
  -webkit-box-shadow: 0px 2px 8px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 8px 1px rgba(0, 0, 0, 0.3);
}
.pcf-btn {
  text-decoration: none;
  color: #707070 !important;
  border-radius: 25px;
  border: solid 1px #707070;
  padding: 10px 20px;
  font-size: 0.8em;
  transition: 0.3s;
  margin-top: 1em;
}

.pcf-btn:hover {
  -webkit-box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.1);
}
.landing h4 {
  font-size: 1.2em !important;
}
.landing h2 {
  font-size: 1.7em !important;
}
.h-100 {
   height: 100% !important;
}

.card-bg-green {
  background: var(--green-pcf);
  color: white;
  padding: 50px 50px;
  font-size: 1.5em;
  min-height: 225px;
  display: flex;
  align-items: center;
}

/********************************/
/*******  Fondos  **************/

.pcf-bg-gray {
  background-color: var(--gray-pcf) !important;
}

.pcf-bg-green {
  background-color: var(--green-pcf);
}
.pcf-bg-white {
  background-color: var(--white);
}
.pcf-bg-blue {
  background-color: var(--blue-pcf);
}
.pcf-bg-yellow {
  background-color: var(--yellow-pcf);
}

/********************************/
/*******  Botones  **************/

.buttonSeeAll {
  border: 1px solid var(--green-pcf);
  padding: 10px 20px;
  border-radius: 15px;
  display: inline-block;
  margin: 10px 0;
  color: var(--white);
  background-color: var(--green-pcf);
  font-size: 1.2em !important;
  transition: 0.3s;
}

.landing #child-categories .childcategory:hover .buttonSeeAll {
  border: 1px solid var(--green-pcf);
  color: var(--green-pcf) !important;
  background-color: var(--white);
}

/****************************************/
/****** Header Landing  *********/

.headerlanding .img-header {
  max-width: 1420px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  float: initial;
  display: block;
}

/****************************************/
/****** Separadores Productos  *********/

.separador-especial {
  background-image: none;
  background-color: #43d87e;
  height: 50px;
}

/****************************************/
/*******  Titular categoria  ***********/

.white-txt {
  color: white !important;
  padding: 10px;
}

.texto-titular-categoria {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  color: #fff !important;
  /* text-shadow:0 0 3px #fff,0 0 5px #fff; */
}
/****************************************/
/***** CSS MODAL ******/

.modal_video {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 98;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  opacity: 0;
}

.modal_video_content {
  width: 80%;
  height: 90%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 1px solid #fff;
  background: #000;
  display: none;
  z-index: 99;
}

.close-icon {
  /* float: right; */
  /* width: 13px; */
  /* margin-right: 9px; */
  /* margin-top: 54px; */
  position: absolute !important;
  top: 3%;
  right: 7%;
}

#landing .delete,
.close-icon {
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: rgba(10, 10, 10, 0.2);
  border: none;
  border-radius: 290486px;
  cursor: pointer;
  pointer-events: auto;
  display: inline-block;
  flex-grow: 0;
  flex-shrink: 0;
  font-size: 0;
  height: 20px;
  max-height: 20px;
  max-width: 20px;
  min-height: 20px;
  min-width: 20px;
  outline: 0;
  position: relative;
  vertical-align: top;
  width: 20px;
}

#landing .delete::after,
#landing .delete::before,
.close-icon::after,
.close-icon::before {
  background-color: #fff;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

#landing .delete::before,
.close-icon::before {
  height: 2px;
  width: 50%;
}

#landing .delete::after,
.close-icon::after {
  height: 50%;
  width: 2px;
}

.modal_video iframe {
  width: 100%;
  height: 100%;
  top: 50%;
}

.modal_video_title {
  font-size: 28px;
  margin: 10px 15px;
  color: #76b900;
}
.slidercyber{
  display: none;
}
.cards-mobile{
  display: none;
}

/* AJUSTE RESPONSIVO MODAL  */

@media (min-width: 1399px) {
  .img-carrusel-cyber img{ 
    height: 100%;
    width: 100%; 
    /*display: none;*/
    /*solo post cyber wow RETIRAR */
  }
}

@media (max-width: 1399px) {
  .img-carrusel-cyber img{
    height: 396px;
    /*display: none;*/
    /* solo post cyber wow RETIRAR */
  }
}
@media (min-width: 1023px) {
  .nuevo-menu-cyber{
    top:45px !important;
  }

}
@media (max-width: 1023px) {
  .modal_video iframe {
    width: 100%;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
  }

  .modal_video_content {
    width: 80%;
    height: 30%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 1px solid #fff;
    background: #000;
    display: none;
    z-index: 99;
  }


  .close-icon {
    /* float: right; */
    /* width: 13px; */
    /* margin-right: 9px; */
    /* margin-top: 54px; */
    position: absolute !important;
    top: 32%;
    right: 15px;
  }

  .grid-container {
    max-width: 100%;
    display: grid;
    /* grid-template-columns: 1fr min(142rem, calc(100% - 32px)) 1fr; */
    margin: 0 auto;
  }
  .nuevo-menu-cyber{
    top:5% !important;
  }
  .salto-cyber{
    margin-bottom:10px !important;
    scroll-margin-top: 100px;
  }
}

/****************************************/
/***** CSS ESPECIFICO DEL LANDING ******/

.landing {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0;
  font-size: 14px !important;
}


.carousel-item img {
  max-width: 1420px;
  margin: 0 auto;
}

.pcf-border-green {
  border: 1px solid var(--color-primary-1);
}

.landing #child-categories {
  /* margin-top: 50px; */
}
.landing #child-categories h2 {
  color: var(--blue-normal);
  font-size: var(--font-12);
  font-weight: var(--font-weight-bold);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-light);
}
.landing #child-categories .childcategory {
  margin-top: 30px;
}
.landing
  #child-categories
  .childcategory:hover
  .childcategory__img-bg
  .childcategory__img-holder
  .img-producto {
  margin-top: -15px;
}
.landing #child-categories .childcategory:hover {
  text-decoration: none;
}
.landing #child-categories .childcategory__img-bg {
  width: 95px;
  height: 95px;
  /* background-color: var(--gray-extralight); */
  border-radius: 100%;
  transition: 0.3s;
}
.landing #child-categories .childcategory:hover .childcategory__img-bg {
  background-color: var(--green-pcf);
}

.landing #child-categories .childcategory__img-holder {
  width: 110px;
  height: 110px;
  margin-top: -5px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  transition: ease 0.3s;
}
.landing #child-categories .childcategory__img-holder img {
  width: 100%;
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.landing #child-categories .childcategory__title {
  display: block;
  text-align: center;
  color: var(--gray-normal);
  font-size: calc(var(--font-base) * 0.75);
  font-weight: var(--font-weight-bold);
  margin-top: 20px;
}
.landing #child-categories .childcategory:hover .childcategory__title {
  color: var(--green-pcf);
}

@media (min-width: 768px) {
  .landing #child-categories {
    /*  margin-top: 70px; */
  }
  .landing #child-categories h2 {
    font-size: var(--font-18);
    font-weight: var(--font-weight-normal);
  }
  .landing #child-categories .childcategory {
    margin-top: 60px;
  }
  .landing
    #child-categories
    .childcategory
    .childcategory__img-bg
    .childcategory__img-holder
    .img-producto {
    transition: 0.3s;
  }
  .landing
    #child-categories
    .childcategory:hover
    .childcategory__img-bg
    .childcategory__img-holder
    .sombra {
    margin-top: -25px;
  }
  .landing #child-categories .childcategory__img-bg {
    width: 170px;
    height: 170px;
  }
  .landing #child-categories .childcategory__img-holder {
    width: 160px;
    height: 160px;
    margin-top: -10px;
  }
  .landing #child-categories .childcategory__title {
  }
}

@media (min-width: 1200px) {
  .landing #child-categories .childcategory__title {
    font-size: 1em;
    font-weight: 600;
  }


}

.link-pcf {
  color: #00d879 !important;
  margin: 0 5px 0 0;
}

/*NUEVO MENU CYBER*/


.item-menu-cyber:hover{
  transition: .3s;
  /* background-color: #00D879; */
  /* background:  linear-gradient(67deg,rgba(22, 61, 217, 1) 0%, rgba(100, 59, 189, 1) 50%, rgba(177, 43, 145, 1) 100%); */
  /* background:  linear-gradient(67deg, rgb(0 165 84) 0%, rgb(0 181 122) 50%, rgb(71 210 161) 100%); */
  background:  linear-gradient(360deg, rgb(0 193 136) 0%, rgb(31 40 46) 50%, rgb(32 42 48) 100%);
  border-radius: 40PX;
  padding: 10px;
  text-wrap: nowrap;
}

.item-menu-cyber.active{
  transition: .3s;
  /* background-color: #00D879; */
  background: linear-gradient(67deg,rgba(241, 87, 83, 1) 0%, rgba(128, 70, 92, 1) 50%, rgba(87, 49, 125, 1) 100%);
  border-radius: 40PX;
  padding: 10px; 
  /* scroll-snap-align: start; */
}

.item-menu-cyber.active p{
  transition: .2s ;
  display: flex;
  visibility: visible;
  flex-wrap: wrap;
  align-content: center;
}
.item-menu-cyber:hover p{
  transition: .2s ;
  display: flex;
  visibility: visible;
  flex-wrap: wrap;
  align-content: center;
}
.item-menu-cyber p{
  display: none;
  visibility: hidden;
  color: white;
  font-weight: bolder;
}

.item-menu-cyber div{
  display: flex;
  padding-top: 7px;
  /* margin-right: 5px; */
  margin-top: -10px;
}

.nuevo-menu-cyber{
  display: flex; 
  justify-content: space-evenly; 
  align-items: center; 
  background-color: black; 
  width: 100%;
  height: 80px; 
  position: sticky; 
  z-index:7; 
  top:0;
  overflow-x:scroll ;
}

.nuevo-menu-cyber::-webkit-scrollbar {
  display: none;
}

.salto-cyber{
  margin-bottom:50px;
  scroll-margin-top: 100px;
  
}

.item-menu-cyber:hover a{
  transition: linear ;
  scroll-behavior: auto;
}


.Divoferta3x3 {
  padding: 10px;
}

.Divoferta3x3 img{ 
  background: linear-gradient(180deg, 
  rgba(255, 255, 255, 0.27) 0%, 
  rgba(0, 0, 0, 0.56) 100%); 
  max-width: 350px;
  border-radius: 10px;
}

.Divoferta3x3 img:hover{
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.27) 0%, #00D879 100%);
}

.Ofertas-cyber-3{
  display:flex; 
  justify-content:center;
  width: 100%;
  margin-bottom: 20px;
}

.ancho-carrusel{
   width: 73% !important; 
  /* SIN IMAGEN comentarlo */
} 

.bloque-ofertas-big{
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  margin: 30px 0px;
}

.bloque-ofertas-big img{
  border-radius: 10px;
}

.desktop-text-cyber{
  padding-bottom: 0px !important;
  margin-bottom: -10px !important;
}

@media (max-width: 1168px){
/* .ancho-carrusel{
  width: 65% !important; 
}  */
.bloque-ofertas-big a img{
  height: 450px;
}
.bloque-ofertas-big{
  /* margin-bottom: -40px; */
}
}

@media (max-width: 992px){
  .ancho-carrusel{
    width: 100% !important; 
  }
  .bloque-ofertas-big a img{
    height: 390px;
  }
  .img-carrusel-cyber{
    display: none;
  }
  .mobile-text-cyber{
    display: block; 
    font-weight: inherit;
    text-align: right;
    font-size: small;
  }
  .desktop-text-cyber{
    padding-bottom: 0px !important;
    margin-bottom: -10px !important;
  }
  .Ofertas-cyber-3{
    display: none;
  } 
  .slidercyber{
    display: block;
  }

  }

  @media (max-width: 861px){

    .bloque-ofertas-big a img{
      height: 300px;
    }
    
    }

  @media (max-width:640px){
  
  .nuevo-menu-cyber{
    justify-content:space-between;
    overflow-x: scroll;
  }
  .bloque-ofertas-big{
    display: none;
  }
  .item-desktop-ban{
    display: none;
  }
  .item-mobile-ban{
    display: block;
  }
  .product__image img {
    width: auto;
    max-height: 100px;
    margin: 0 auto;
  }
    .product__image{
      display: flex;
      margin: auto;
    }
  .product{
    padding: 1rem 1rem;
  }
  .item-menu-cyber svg{
    max-height: 20px;
  }
  .nuevo-menu-cyber a{
    padding: 5px;
  }
  .cards-mobile{
    display: block;
  }
  .salto-cyber{
    /* display: none; */
  }
  .nuevo-menu-cyber{
    /* display: none; */
  }
  }