/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
  overflow-x: hidden;
}

:root {
  --azul: #1f7ab7;
  --rosa: #CD3C89;
  --verde: #539f35;
  --amarillo: #ffb600;
  --blanco: #fff;
}

body {
  font-family: 'Work Sans', sans-serif;
  /* color: #9fa1a4; */
  color: #57585C;
  line-height: 1.5;
}

a {
  color: #777;
  text-decoration: none;
  transition: 0.3s all ease;
}

a:hover {
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-family: "Baloo 2", sans-serif;
  color: #000;
}

.text-primary {
  color: var(--azul) !important;
}

button,
.boton,
.btn{
  font-family: "Baloo 2", sans-serif!important;
  text-transform: uppercase!important;
}

/*--------------------------------------------------------------
BOTON SCROLL TOP
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--amarillo);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3687c1;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* boton */
.btn {
  border: none;
  padding: 15px 25px !important;
}

/* Boton */
.btn-fill-out {
  background-color: transparent;
  border: 0.5px solid var(--rosa);
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-fill-out::before,
.btn-fill-out::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: var(--rosa);
  z-index: -1;
  transition: all 0.3s ease-in-out;
  width: 51%;
}

.btn-fill-out::after {
  right: 0;
  left: auto;
}

.btn-fill-out:hover:before,
.btn-fill-out:hover:after {
  width: 0;
}

.btn-fill-out:hover {
  border: 1px solid var(--rosa);
  color: var(--rosa) !important;
  font-weight: 600;
}

/* ----btn verde */
.btn-green {
  background-color: transparent;
  border: 0.5px solid var(--verde);
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-green::before,
.btn-green::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: var(--verde);
  z-index: -1;
  transition: all 0.3s ease-in-out;
  width: 51%;
}

.btn-green::after {
  right: 0;
  left: auto;
}

.btn-green:hover:before,
.btn-green:hover:after {
  width: 0;
}

.btn-green:hover {
  border: 1px solid var(--verde);
  color: var(--verde) !important;
  font-weight: 600;
}

/* ----btn blue */
.btn-blue {
  background-color: transparent;
  border: 0.5px solid var(--azul);
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-blue::before,
.btn-blue::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: var(--azul);
  z-index: -1;
  transition: all 0.3s ease-in-out;
  width: 51%;
}

.btn-blue::after {
  right: 0;
  left: auto;
}

.btn-blue:hover:before,
.btn-blue:hover:after {
  width: 0;
}

.btn-blue:hover {
  border: 1px solid var(--azul);
  color: var(--azul) !important;
  font-weight: 600;
}

/* Input formulario */
.form-control {
  height: 48px;
  border: 2px dashed #dae0e5;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  background: var(--blanco);
}

#header .logo img {
  max-height: 50px;
}

/*#header.header-scrolled {
  background: #ffffff;
  height: 70px;
}

#header.header-scrolled .logo img {
  padding: 0;
  margin: 0;
  max-height: 50px;
  transition: all 0.8s;
}*/

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 4px 0;
  line-height: 1;
  font-weight: 500;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

/*#header .logo img {
  padding: 20px 0 0 0;
  margin: 0;
  max-height: 100px;
}*/

.logo-payment img {
  width: 130px;
}

/*--------------------------------------------------------------
# NavBar
--------------------------------------------------------------*/
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  /* font-size: 20px; */
  font-weight: 800;
  color: var(--azul);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar .carrito {
  /* color: #D865A0; */
  color: var(--rosa);
  font-size: 25px !important;
  border: none;
  background: rgba(0, 0, 0, 0);
  margin-left: 5px;
}

.nav-category {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: fit-content !important;
  max-width: 600px;
}

.nav-category ul li a {
  font-size: 18px !important;
}

.title-carrito {
  color: var(--azul);
}

.carrito-ofertas {
  color: #fff;
  font-size: 30px;
  margin-top: 10px;
}

.carrito-novedades {
  color: #6d6d6d;
  font-size: 30px;
  margin-top: 10px;
}

.mobile-nav-toggle {
  background: var(--azul);
  border-radius: 5px;
  padding: 4px 5px;
}

.icon-nav-category {
  background: var(--rosa);
  width: 35px;
  padding: 5px;
  border-radius: 20px;

}

/* btn movil  */
.activeMovil {
  color: var(--rosa);
  width: 50%;
}

/* carrito */
.cart_trigger .amount {
  margin-left: 8px;
  font-weight: 600;
  vertical-align: top;
  margin-right: -10px;
}

.cart_count,
.wishlist_count {
  position: relative;
  top: -10px;
  left: 0;
  font-size: 11px;
  background-color: var(--azul);
  border-radius: 50px;
  height: 16px;
  line-height: 16px;
  color: #fff;
  min-width: 16px;
  text-align: center;
  padding: 0 5px;
  display: inline-block;
  vertical-align: top;
  margin-left: -5px;
  margin-right: -5px;
}

.cart_box {
  box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);

}

.cart_box ul li {
  width: 100%;
}

.cart_box ul li .img-cart-box {
  width: 50px;
  height: auto;
}

.cart_total {
  color: #ffffff;
  margin: 0;
  padding: 10px 15px;
  font-weight: 600;
  text-align: right;
}

.cart_total strong {
  float: left;
  font-weight: 600;
}

.cart_buttons {
  margin: 0;
  padding: 10px 15px 20px;
  text-align: center;
}

.cart_buttons .view-cart,
.cart_buttons .checkout {
  padding: 8px 20px !important;
}

.navbar>.container-fluid {
  justify-content: end !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: var(--amarillo);
  background-color: rgba(0, 0, 0, 0);
}

.navbar-nav .nav-item {
  margin-left: 30px;
  font-size: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
  color: var(--azul);
  border-bottom: solid 3px var(--rosa);
}

.nav-link:focus,
.nav-link:hover {
  color: var(--rosa);
}

.submenu {
  background: rgba(255, 255, 255, .9);
}

.scrollable-menu {
  height: auto;
  max-height: 90vh;
  overflow-x: hidden;
  margin-top: -30px !important;
}

/*--------------------------------------------------------------
SCROLL
--------------------------------------------------------------*/
::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}

::-webkit-scrollbar-thumb {
  background: var(--azul);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--azul);
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:active {
  background-color: var(--azul);
}

::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 0px;
}

::-webkit-scrollbar-track:hover,
::-webkit-scrollbar-track:active {
  background: #fff;
}

/*--------------------------------------------------------------
# SLIDER
--------------------------------------------------------------*/
.nuves-banner {
  width: 100%;
  margin-top: -115px;
  display: flex;
  position: absolute;
  z-index: 10;
  /*width: 100%;
    z-index: 10;
    position: absolute;
    bottom: -2px;*/
}

.carousel-header h1 {
  font-size: 100px;
  color: var(--rosa);
  text-shadow: 3px 0 #fff, -3px 0 #fff, 0 3px #fff, 0 -3px #fff,
    1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
  font-weight: 600;
}

.carousel-header p {
  font-size: 20px;
  color: #727475;
}

.section-slider .carousel-header {
  height: 100vh !important;
}

.section-slider .carousel-header .carousel-inner {
  height: 100vh;
}

.section-slider .carousel-header .carousel-inner .carousel-item {
  height: 100vh !important;
}

.section-slider .carousel-header .carousel-inner .carousel-item .fondo-slider {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*.carousel-caption{
  right: auto !important;
}*/

.carousel-control-next,
.carousel-control-prev {
  width: 5% !important;
}

.img-slider {
  display: flex;
  width: 100%;
  object-fit: cover;
  margin-left: 100px;
  margin-top: -200px;
}

.img-slider img {
  width: 80vh;
}

.img-slider-default img {
  width: 50vh;
  margin-left: 180px;
  margin-bottom: 40%;
}

.fondo-slider {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* slider SECCIONES */
.slider-general img {
  z-index: -10;
  object-fit: cover;
  object-position: center;
}

.slider-general {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 100%);
}

.carousel-caption {
  /*right: 5% !important;
  color: #fff;
  align-items: center !important;
  bottom: 20%;*/
  top: 20%;
  transform: translateY(20%);
  bottom: initial;

}

/*--------------------------------------------------------------
INDEX
--------------------------------------------------------------*/
/*---------- iconos categoria-index ---------*/
.feature-1 .wrap-icon {
  margin: 0 auto;
  height: 160px;
  width: 160px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: solid 8px #fff;
}

.wrap-icon img {
  width: 50%;
}

.feature-1 .wrap-icon.icon-1 {
  background: linear-gradient(-45deg, #3b87bd, #2d71a2);
}

.feature-1 .wrap-icon i {
  font-size: 40px;
  line-height: 0;
  color: #fff;
}

/*---------- iconos SERVICIOS ---------*/
.section-servicios {
  padding-top: 3rem;
}

.servicios {
  padding-top: 70px;
}

.servicios .row .feature-1 h2 {
  font-size: 30px;
  margin-top: 20px;
  color: var(--azul);
}

/*---------- iconos CATEGORIA ---------*/
.categorias {
  /* background: #2d71a1; */
  position: relative;
  /* background: rgba(35, 137, 204, 0.8); */

  background: linear-gradient(rgbA(0, 95, 158, .9), rgba(0, 97, 162, 0.8)), url(/img/fondo-categorias.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

}

.categorias .fondo-categorias {
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.titulo h1 {
  color: #ffffff;
  text-align: center;
  font-size: 50px;
  font-weight: 800;
}

.forma-nuves-categorias {
  margin-top: -115px;
  z-index: 1;
  position: relative;
}

.feature-1 h2 {
  font-size: 30px;
}

.feature-1 p {
  font-size: 25px;
  color: #7a7a7a;
}

/*---------- OFERTAS DEL DIA ---------*/
.ofertas .card {
  border-radius: 30px;
  border: solid 2px #e8e8e8;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.ofertas .card img {
  width: 100%;
  /* height: 100%; */
  height: 350px;
  border-radius: 30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: all .3s ease-in;
  border: none !important;
  object-fit: contain;
}

.ofertas .card img:hover {
  transform: scale(1.1);
  transition: .5s;
}

.cards-wrapper {
  display: flex;
  justify-content: center;
}

.card img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

.ofertas .carousel-inner {
  padding: 1em;
}

.ofertas .carousel-control-prev,
.ofertas .carousel-control-next {
  background-color: #e1e1e1;
  width: 5vh;
  height: 5vh;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.ofertas {
  margin-top: 20px;
}

.titulo-azul h1 {
  color: #c3538d;
  text-align: center;
  font-size: 50px;
  font-weight: 800;
  padding-top: 50px;
}

.titulo-azul p {
  text-align: center;
}

.ofertas .card {
  position: relative;
}

.ofertas .card .card-body {
  /* background: #326f1a; */
  color: #fff;
  /* outline: 2px solid var(--verde); */
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.ofertas .card .card-body .precio {
  font-size: 25px;
  font-weight: 800;
}

.ofertas .card .card-body .precio p {
  font-size: 15px;
  margin-bottom: 0px;
}

.card .descuento {
  align-items: center;
  background: var(--amarillo);
  border-radius: 50%;
  box-shadow: 0 5px 15px 0 rgb(0 0 0 / 20%);
  /* display: inline-flex; */
  color: #00298F;
  font-weight: bold;
  left: 15px;
  font-size: 12px;
  text-align: center;
  width: 60px;
  height: 60px;
  justify-content: center;
  position: absolute;
  /*bottom: 20px;*/
  top: 10px;
  margin: 0 auto;
}

.card .descuento span {
  font-size: 15px;
  text-align: center;
  padding-top: 8px;
  display: block;
}

.card .descuento p {
  font-size: 12px;
  text-align: center;
  padding: 0px;
  margin-top: -5px;
}

/*---------- SILDER OFERTAS OWL ---------*/
.owl-stage {
  position: relative;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  background: var(--rosa);
  width: 40px;
  height: 40px;
  border-radius: 20px;
  align-items: center;
  display: flex;
  position: absolute;
  top: 40%;
}

.owl-carousel .owl-nav button.owl-next span,
.owl-carousel .owl-nav button.owl-prev span {
  margin: 0 auto;
  color: #FFF;
  margin-top: -2px;
  font-size: 30px;
}

.owl-carousel .owl-nav button.owl-prev {
  left: -20px;
}

.owl-carousel .owl-nav button.owl-next {
  right: -20px;
}

/*---------- iconos NOVEDADES ---------*/
/*.novedades{
  width: 70%;
  justify-content: center;
}*/
.novedades .card img {
  width: 100%;
  /* height: 100%; */
  height: 350px;
  border-radius: 30px;
  transition: all .3s ease-in;
  object-fit: contain;
}

.novedades .card img:hover {
  transform: scale(1.1);
  transition: .5s;
}

.novedades .card {
  border: solid 2px #e8e8e8;
  border-radius: 30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.precio-desc {
  font-weight: 300 !important;
  color: var(--amarillo) !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  font-size: 18px !important;
}

.card .card-footer {
  background: var(--azul);
  color: #fff;
  font-weight: 800;
  position: relative;
  width: 100%;
  height: 190px;
  outline: 2px solid var(--azul);

  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.card .card-footer p {
  /* name */
  font-size: 15px;
  margin: 0;
  font-weight: 400;
}

.card .card-footer small {
  /* marca */
  display: block;
  font-size: 14px;
  /* color: rgba(255,255,255,.9); */
  color: #FFF;
  text-shadow: #000;
  font-weight: 600;
}

.card .card-footer span {
  /* precio */
  display: block;
  font-size: 20px;
  font-weight: 400;
}

.card .card-footer .carrito {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 5px 15px 0 rgb(0 0 0 / 20%);
  display: inline-flex;
  color: rgb(108, 108, 108);
  font-size: 20px;
  text-align: center;
  height: 70px;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 20px;
  width: 70px;
  margin-top: -35px;
}

.card-novedades {
  border-radius: 30px;
  border: solid 2px #e8e8e8;
}

/*---------- lOGOS MARCAS ---------*/
.marcas .row img {
  width: 130px;
  display: flex;
  margin: auto;
}

/*--------------------------------------------------------------
# DIRECCION
--------------------------------------------------------------*/
.direccion {
  margin-bottom: -115px;
  padding: 0px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 0;
  background: var(--azul);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer h2 {
  font-size: 1px;
  margin-bottom: 10px;
  color: #FFFFFF;
  font-weight: 600;
}

.footer ul li {
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 26px;
  color: rgb(255 255 255 / 85%);
}

.footer ul li i {
  color: #ffb600;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--blanco);
  font-size: 16px;
  color: var(--blanco);
  margin-right: 10px;
  transition: all ease-in-out 0.4s;
}

.footer .social-links a:hover {
  /*color: var(--rosa);
  border-color: var(--rosa);*/
  transform: translateY(-10px);
  color: var(--rosa);
  text-shadow: none;
}

.footer a {
  color: rgb(255 255 255 / 85%);
  font-size: 15px;
}

.footer a:hover {
  color: #ffb600;
}


.footer .copyright {
  margin-bottom: 0px;
}

.footer .copyright,
.footer .credits {
  font-size: 14px;
}

/* 
.social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f9fa;
  position: relative;
  text-align: center;
  transition: 0.3s background ease;
  color: #0d1e2d;
  line-height: 0;
}

.social a span {
  display: inline-block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.social a:hover {
  color: #fff;
  background: #2d71a1;
}

.social a i {
  line-height: 0;
} */

.logo-footer {
  width: 40%;
}

.forma-nuves-footer {
  margin-bottom: -5px;
}

.btn-miscompras {
  background: var(--rosa);
  border: 1px solid var(--rosa);
  color: #fff !important;
  border-radius: 30px;
  padding: 10px;
}

.btn-miscompras:hover {
  border: 1px solid var(--amarillo);
}

/*--------------------------------------------------------------
NOSOTROS
--------------------------------------------------------------*/
.nosotros h1 {
  color: var(--rosa);
  font-size: 45px;
  padding-bottom: 30px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
}

.nosotros p {
  text-align: justify;
}

.nubes-nosotros {
  background: url(/img/nube-nosotros.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 50px 250px;
  text-align: center;
}

.nubes-nosotros h1 {
  color: var(--rosa);
  font-size: 45px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  text-align: center;
}

.nosotros .img-description {
  object-fit: contain;
}

.nosotros .card {
  background: rgba(205, 60, 137, .1);
  border: 2px dashed var(--rosa);
}

.nosotros .card img {
  width: 130px;
  margin: 15px 100px 15px 5px;
}

.nosotros .card p {
  padding: 20px 70px 20px 100px;
}

/*--------------------------------------------------------------
# BUSCADOR CATEGORIAS
--------------------------------------------------------------*/

.search-category .input-wrapper {
  position: relative;
  width: 70%;
}

.search-category .input {
  box-sizing: border-box;
  color: #191919;
  padding: 15px 15px 15px 75px;
  width: 100%;
  border-radius: 50px;
  border: var(--azul) 3px solid;
}

.search-category svg {
  background: var(--azul);
  padding: 15px;
  width: auto !important;
  height: 100% !important;
  border-radius: 30px;
  margin-left: -10px;
}

.search-category .input.password {
  padding: 15px 35px 15px 15px;
}

.search-category .input-icon {
  color: #fff;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.search-category .input-icon.password {
  left: unset;
  right: 12px;
}

/*--------------------------------------------------------------
FILTROS ACCORDEON
--------------------------------------------------------------*/
.accordion-button:not(.collapsed) {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 5px 0px;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  padding: 15px 0px;
}

.accordion-item:first-of-type .accordion-button {
  padding: 5px 0px;
}

.filtro-price h2 {
  font-size: 23px !important;
  color: var(--azul);
}

.accordion-button:focus {
  box-shadow: none !important;
  color: var(--rosa);
}

.accordion-button:not(.collapsed)::after {
  /* arriba */
  color: var(--rosa);
  padding: 15px 0px;
}

.accordion-body {
  padding: 5px 0px;
}

.accordion-button:not(.collapsed) {
  color: #cd3c89 !important;
}

.accordion-button {
  font-size: 17px !important;
  color: var(--azul);
  padding: 15px 0px;
  font-weight: 700;
}

.accordion-item {
  border: none !important;
}

.list-group-item {
  border: none !important;
  margin-left: -5px;
  /*padding: 5px 0px !important;*/
}

.list-group-item,
a:hover {
  color: var(--rosa);
}

/*--------------------------------------------------------------
# TABLA CARRITO DE COMPRAS
--------------------------------------------------------------*/
.btn-delete-cart {
  font-size: 20px;
  cursor: pointer;
  color: var(--azul);
}

.btn-delete-cart:hover {
  color: var(--rosa);
}

/*--------------------------------------------------------------
# SHOW PRODUCTO
--------------------------------------------------------------*/
.descripcion {
  padding-top: 100px;
}

.marca-producto {
  color: var(--rosa);
  font-size: 20px;
  font-weight: 400;
}

.titulo-producto {
  font-size: 25px;
  color: var(--azul);
  font-weight: 600;
  font-family: "Baloo 2", sans-serif;
  line-height: 25px;
}

.codigo-producto {
  color: var(--rosa);
  font-size: 20px;
  font-weight: 400;
}

.descuento-producto {
  color: var(--rosa);
  font-size: 15px;
  font-weight: 400;
}

.producto-cantidad {
  font-size: 20px;
  color: var(--verde);
  font-weight: 600;
}

.precio {
  font-weight: 400;
  font-size: 20px;
}

.precio-final {
  color: var(--azul);
  font-weight: 600;
  font-size: 20px;
}

/*galeria*/
.presentacion-img ul {
  list-style-type: none;
  padding: 0px;
}

.presentacion-img ul li {
  margin-bottom: 12px;
  width: 100%;
}

.presentacion-img ul li img {
  width: 100%;
  border: 1px dashed rgb(238, 46, 118);
  border-radius: 10px;
  padding: 5px;
  cursor: pointer;
  opacity: 1;
}

.presentacion-img ul li img:hover {
  opacity: .6;
}

.presentacion-img .big-img {
  width: 100%;
  float: left;
  margin-left: 10px;
  border-radius: 10px;
  border: 1px dashed rgb(238, 46, 118);
}

.presentacion-img .container-img {
  overflow: hidden;
  padding-right: 10px;
}

.exzoom .exzoom_img_ul_outer .exzoom_img_ul li {
  background: #fff;
}

/* contador */
.quantity {
  display: flex;
}

.quantity .minus,
.quantity .plus {
  /* background-color: var(--rosa);
  display: block;
  float: left;
  border-radius: 50px;
  cursor: pointer;
  border: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  font-size: 20px;
  margin: 4px;
  color: #fff;
  border: 2px dashed #fff; */

  box-shadow: none;
  width: 27px;
  height: 25px;
  border-radius: 5px;
  border: 1px dashed var(--rosa);
  background: #ffffff;
  line-height: 25px;
  padding: 0;
  font-size: 16px;
  color: #000000;
}

.quantity .minus {
  padding-left: 4px;
  box-shadow: none;
  width: 27px;
  height: 25px;
  border-radius: 5px;
  border: 1px dashed var(--rosa);
  background: #ffffff;
  line-height: 25px;
  padding: 0;
  font-size: 16px;
  color: #000000;
}

.quantity .qty {
  /* float: left;
  width: 55px;
  height: 36px;
  border: 1px solid #ddd;
  background-color: transparent;
  text-align: center;
  padding: 0;
  margin: 3px; */

  width: 45px;
  height: 25px;
  margin: 0 2px;
  font-size: 13px;
  color: #000000;
  border-radius: 5px;
  line-height: 25px;
  border: 1px dashed var(--rosa);
  padding: 0;
  text-align: center;
}

/* zoom imagenes */
#exzoom {
  width: 90%;
  /*height: 400px;*/
}

.hidden {
  display: none;
}

.exzoom .exzoom_nav .exzoom_nav_inner {
  left: 5px;
}

.exzoom_btn .exzoom_prev_btn,
.exzoom_btn .exzoom_next_btn {
  background: var(--rosa) !important;
  color: #FFF !important;
  width: 15px !important;
  border: 0 !important;
}

.exzoom_btn .exzoom_prev_btn {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.exzoom_btn .exzoom_next_btn {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* detalles */
.tab-style3 .nav-tabs li.nav-item a {
  background-color: transparent;
  display: block;
  padding: .5rem 1rem;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  text-align: center;
  text-transform: uppercase;
}

.tab-style3 .nav-tabs .nav-item a.active {
  border-bottom-color: var(--rosa);
  color: #fff;
  background: var(--rosa);
  padding: 15px 40px;
}

/* Paginador */
.page-link {
  margin: 0px 8px;
  width: 45px;
  height: 45px;
  text-align: center;
  border-radius: 25px;
  padding-top: 0;
}

.card-show {
  border: 1px dashed var(--azul);
  border-radius: 20px;
  padding: 70px 50px 50px 50px;
  margin-top: 70px;
  position: relative;
  /*margin-left: -15px;*/
}

.title-card-show {
  background: var(--azul);
  border-radius: 10px;
  color: #FFF;
  display: inline-block;
  padding: 20px 80px;
  position: absolute;
  top: -30px;
  font-weight: 600;
  /* border: 1.8px dashed #fff; */
}
.title-card-show::before {
  content: '';
  border: 1px dashed #fff;
  border-radius: 10px;
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
}

/*==================================
IDENTIFY
================================== */
.title-identify {
  padding-top: 6rem;
  padding-bottom: 3rem;
  text-align: center;
}

.title-identify h1 {
  color: var(--rosa);
  font-weight: 600;
}

.title-identify h1 span {
  color: var(--verde);
  padding-right: 0.5rem;
}

.carrito-vacio {
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carrito-vacio svg {
  width: 8%;
}

/*==================================
SHOW CATEGORY
================================== */
.title-filtro {
  color: var(--rosa);
}

.btn-filtro {
  background: none;
  border: none;
  color: gray;
}

.btn-filtro:hover {
  color: var(--azul);
}

.icon-categorias {
  margin-right: 10px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-categorias img {
  width: 50%;
}

/* buscador */
.search {
  position: relative;
  /* box-shadow: 0 0 40px rgba(51, 51, 51, .1); */
}

.search input {
  height: 60px;
  text-indent: 25px;
  border: 2px solid #d6d4d4;
}

.search input:focus {
  box-shadow: none;
  border: 2px solid blue;
}

.search .fa-search {
  position: absolute;
  top: 20px;
  left: 16px;
}

.search button {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 50px;
  width: 110px;
  background: blue;
}

/* CARD PRODUCTOS */
.productos .card {
  position: relative;
  border: solid 2px #e8e8e8;
  border-radius: 30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.productos .card img {
  width: 100%;
  /* height: 100%; */
  height: 350px;
  object-fit: contain;
  border-radius: 30px;
  transition: all .3s ease-in;
}

.productos .card img:hover {
  transform: scale(1.1);
  transition: .5s;
}

.boton {
  height: 45px;
  width: 45px;
  overflow: hidden;
  border-radius: 45px;
  cursor: pointer;
  box-shadow: 0 10px 10px rgba(0, 0, 0, .1);
  position: absolute;
  right: 10px;
  bottom: 10px;
  /*top: 10px;*/
  text-align: center;
  transition: all .3s ease-out;
}

.boton .icono {
  color: #fff;
  display: inline-block;
  height: 45px;
  width: 45px;
  border-radius: 45px;
  box-sizing: border-box;
  line-height: 45px;
  text-align: center;
  background: var(--rosa);
  transition: all .3s ease-out;
}

.boton span {
  font-size: 15px;
}

.card-producto {
  overflow: hidden;

  transition: .5s;
}

.card-producto:hover>.boton {
  width: calc(100% - 20px);
  background: var(--rosa);
  color: #fff;
  z-index: 10;
}

.card-producto:hover>.boton .icono {
  width: 20px;
}

.card-producto:hover img {
  transform: scale(1.1);
  /* border-radius: 100px; */
  transition: .5s;

}

/***** GILGAMESH extra --> */
.card-producto2{
  background: var(--rosa);
  color: #fff;
  font-size: 12px;
  text-transform: none;
  font-weight: normal;
  line-height: normal;
  position: relative;
  padding: 10px;
}
@media (min-width:1200px) {
  .card-producto2{
    min-height: 60px;
  }
}
.card-producto2:active{
  background: var(--verde);
}
.card-producto-hover-img{
  transition: transform .5s ease;
}
.card-producto-hover-img:hover {
  transform: scale(1.1);
  transition: .5s;
}
.card-producto2::before{
  content: '';
  border: 1px dashed #fff;
  border-radius: 50px;
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  width: 100%;
}
/***** <-- GILGAMESH extra */

.card .card-footer {
  overflow: hidden;
}

.card .card-footer span {
  color: #fff;
  font-weight: 800;
  padding: 10px 0px;
}

.card .card-footer i {
  color: #fff;
  font-weight: 200;
  font-size: 15px;
  display: flex;
  position: absolute;
  bottom: -20px;
  right: 10px;
  opacity: 0;
  transition: all .2s ease-out;
}

.card .card-footer:hover i {
  bottom: 10px;
  opacity: 1;
}

.card .card-footer:hover {
  background: var(--verde);
  outline: 2px solid var(--verde);
  transition: all .3s ease-out;
}

.icon-descuento {
  display: inline-block;
  position: absolute;
  z-index: 10;
  background: var(--verde);
  color: #fff;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  box-sizing: border-box;
  align-items: center;
  line-height: 23px;
  text-align: center;
  padding-top: 10px;
  right: 10px;
  top: 10px;
  /*bottom: 10px;
  left: 10px;*/
}

.icon-descuento span {
  font-weight: 600;
  font-size: 15px;
}

.icon-descuento p {
  font-weight: 600;
  font-size: 10px;
  margin-top: -10px;
}

/* PAGINACION */
.pagination {
  --bs-pagination-font-size: 1.1rem !important;
  --bs-pagination-color: #6c757d;
  --bs-pagination-hover-color: #6c757d;
}

.btn-bar-movil {
  background: var(--azul);
}

.btn-bar-movil i {
  color: #FFFFFF;
}

@media (max-width:1199px) and (min-width:992px) {

  .productos .card .card-footer p {
    font-size: 12px;
  }

  .productos .card .carrito {
    font-size: 15px;
    height: 38px;
    width: 38px;
  }

  .boton:hover {
    width: 85%;
  }
}

@media (max-width:991px) and (min-width:768px) {
  .boton:hover {
    width: 85%;
  }

}

@media (max-width:767px) and (min-width:576px) {}

@media (max-width:575px) {}

/*==================================
CONTACTOS
================================== */
.text-area {
  height: auto !important;
}

/*==================================
RESPONSIVE
================================== */
@media (max-width:1199px) and (min-width:992px) {
  .nuves-banner {
    margin-top: -90px;
    position: relative;
  }

  .servicios .row img {
    width: 70%;
  }

  .carrito-ofertas {
    font-size: 25px;
  }

  .img-slider img {
    width: 70vh;
    margin-left: -4rem;
  }

  .img-slider-default img {
    width: 50vh;
    margin-left: 180px;
    margin-bottom: 40%;
  }

  .carousel-header h1 {
    font-size: 40px;
  }

  .forma-nuves-categorias {
    margin-top: -90px;
  }

  .forma-nuves-footer {
    margin-bottom: 35px;
    bottom: -40px;
    position: relative;
  }

  .nosotros h1 {
    font-size: 35px;
    padding-bottom: 10px;
  }

  .nosotros .card p {
    padding: 20px 60px 20px 100px;
  }

  .nubes-nosotros {
    padding: 50px 140px;
  }

  #header .logo img {
    height: 85px;
  }

  .carousel-caption img {
    width: 80%;
  }

  /*.text-slider {
    padding-top: 10vh;
  }*/
}

@media (max-width:991px) and (min-width:768px) {
  .nuves-banner {
    margin-top: -70px;
    position: relative;
  }

  .servicios .row .feature-1 h2 {
    font-size: 25px;
  }

  .servicios .row img {
    width: 60%;
  }

  .forma-nuves-categorias {
    margin-top: -50px;
  }

  .ofertas .card .card-body .precio {
    font-size: 15px;
  }

  .novedades {
    width: 100%;
  }

  .img-slider {
    margin-left: 0;
  }

  .img-slider img {
    width: 50vh;
  }

  .carousel-header h1 {
    font-size: 78px;
  }

  .img-slider-default img {
    width: 40vh;
    margin-left: 120px;
    margin-bottom: 40%;
  }

  .carousel-caption {
    padding-bottom: 5%;
  }

  .novedades {
    width: 100%;
  }

  .card .card-footer .carrito {
    height: 50px;
    width: 50px;
    margin-top: -30px;
  }

  .carrito-novedades {
    font-size: 23px;
  }

  .forma-nuves-footer {
    margin-bottom: 0px;
    bottom: -40px;
    position: relative;
  }

  .footer {
    padding: 2rem 0;
    margin-top: 30px;
  }

  #exzoom {
    width: 90vw !important;
  }

  /* --- */
  .nosotros h1 {
    font-size: 35px;
    padding-top: 0px;
  }

  .nosotros .card p {
    padding: 30px 78px 30px 50px;
  }

  .nosotros .card img {
    width: 600px;
    margin: 15px 100px 15px 5px;
  }

  .nubes-nosotros {
    padding: 50px 140px;
  }

  #header .logo img {
    height: 75px;
  }

  .search-category .input-wrapper {
    width: 100%;
  }

  .menu-category a {
    font-size: 15px;
    padding-bottom: 10px;
  }

  .slider-general {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 1) 100%);
    height: 280px;
    object-fit: cover;
  }

  .titulo-azul h1 {
    font-size: 40px;
    padding-top: 0px;
  }

  .carousel-caption img {
    width: 90%;
  }

  /*.text-slider {
    padding-top: 30vh;
  }*/
}

@media (max-width:767px) and (min-width:576px) {
  .nuves-banner {
    margin-top: -50px;
    position: relative;
  }

  .img-slider {
    margin-left: 0;
  }

  .img-slider img {
    width: 50vh;
  }

  .img-slider-default img {
    width: 40vh;
    margin-left: 120px;
    margin-bottom: 40%;
  }

  .carousel-header h1 {
    font-size: 50px;
    margin-bottom: 78px !important;
    text-align: center;
    padding-bottom: 52px;
  }

  .forma-nuves-categorias {
    margin-top: -40px;
  }

  .novedades {
    width: 100%;
  }

  .footer {
    padding: 2rem 2.5rem;
    margin-top: 50px;
  }

  .logo-footer {
    width: 40%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .forma-nuves-footer {
    margin-bottom: 30px;
    bottom: -60px;
    position: relative;
  }

  .card .card-footer .carrito {
    height: 50px;
    width: 50px;
    margin-top: -30px;
  }

  .carrito-novedades {
    font-size: 23px;
  }

  .social {
    text-align: center;
  }

  .footer-direccion {
    text-align: center;
  }

  .footer h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 0px;
    margin-top: 20px;
  }

  #exzoom {
    width: 95vw !important;
  }

  /* -----  */
  .nosotros h1 {
    padding-top: 0px;
    font-size: 35px;
  }

  .nubes-nosotros {
    padding: 50px 50px;
  }

  .nosotros .card {
    border-radius: 100px !important;
  }

  .nosotros .card p {
    padding: 50px 35px 10px 50px;
  }

  .nosotros .card img {
    margin: 15px 0px;
  }

  .nosotros .card .card-body {
    display: flex;
    justify-content: center;
  }

  #header .logo img {
    height: 70px;
  }

  .search-category .input-wrapper {
    width: 100%;
  }

  .slider-general {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 1) 100%);
    height: 230px;
    object-fit: cover;
  }

  .titulo-azul h1 {
    font-size: 38px;
    padding-top: 0px;
  }

  .menu-category a {
    font-size: 15px;
    padding-bottom: 10px;
  }

  .table-shopping {
    font-size: 15px;
  }

  .carousel-caption {
    padding-bottom: 25rem;
  }

  .carousel-caption img {
    width: 80%;
  }

  .text-slider {
    padding-top: 10vh;
  }

}

@media (max-width:575px) {
  .nuves-banner {
    margin-top: -25px;
    position: relative;
  }

  .img-slider {
    margin-left: 0;
  }

  .img-slider img {
    width: 40vh;
    margin-left: 4rem;
  }

  .img-slider-default img {
    width: 30vh;
    margin-left: 4rem;
    margin-bottom: 300px;
  }

  .carousel-caption {
    padding-bottom: 14.25rem;
  }

  .carousel-header h1 {
    font-size: 30px;
    text-align: center;
  }

  .feature-1 img {
    width: 170px;
  }

  .feature-1 p {
    margin-bottom: 45px;
    font-size: 15px;
  }

  .titulo h1 {
    font-size: 40px;
  }

  .feature-1 .wrap-icon {
    height: 130px;
    width: 130px;
  }

  .feature-1 img {
    width: 60px;
  }

  .feature-1 h2 {
    /* font-size: 25px; */
    font-size: 15px;
    font-weight: bold;
  }

  .forma-nuves-categorias {
    margin-top: -25px;
  }

  .titulo-azul h1 {
    font-size: 30px;
  }

  .novedades {
    width: 100%;
  }

  .footer {
    padding: 4rem 0rem;
    margin-top: 80px;
  }

  .logo-footer {
    width: 40%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .forma-nuves-footer {
    margin-bottom: 50px;
    bottom: -85px;
    position: relative;
  }

  .social {
    text-align: center;
  }

  .footer .social-links {
    justify-content: center;
  }

  .footer-direccion {
    text-align: center;
  }

  .footer h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 0px;
    margin-top: 20px;
  }

  .cart_box .cart_list {
    width: 100vw;
  }

  #exzoom {
    width: 95vw !important;
  }

  /* -------  */
  .nosotros h1 {
    padding-top: 0px;
    font-size: 30px;
    padding-bottom: 0px;
  }

  .nubes-nosotros {
    background: #DAF4FB;
    border-radius: 50px;
    padding: 50px 30px;
  }

  .nosotros .card {
    border-radius: 30px !important;
  }

  .nosotros .card p {
    padding: 15px 5px;
  }

  .nosotros .card img {
    margin: 15px 0px;
  }

  .nosotros .card .card-body {
    display: flex;
    justify-content: center;
  }

  #header .logo img {
    height: 70px;
  }

  .search-category .input-wrapper {
    width: 100%;
  }

  .menu-category a {
    font-size: 12px;
    padding-bottom: 10px;
  }

  .slider-general {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 1) 100%);
    height: 200px;
  }

  .titulo-producto {
    font-size: 23px;
    font-family: "Baloo 2", sans-serif;
  }

  .precio-final {
    font-size: 23px;
  }

  .btn-addtocart {
    margin-top: 20px;
  }

  .title-card-show {
    padding: 20px 35px;
  }

  .card-show {
    padding: 70px 12px 12px 12px;
  }

  .table-shopping {
    font-size: 12px;
  }

  .carousel-caption img {
    width: 100%;
  }

  .servicios .row .feature-1 h2 {
    font-size: 20px;
  }


  /*---Menu--*/

  .dropdown-menu-end[data-bs-popper] {
    right: 0;
    left: 0;
  }

  .name-product-cart {
    font-size: 15px;
  }


  .productos .card .card-footer small {
    font-size: 15px;
  }

  .productos .card .card-footer p {
    font-size: 13px;
  }

  .productos .precio-desc {
    font-size: 13px !important;
  }

  .productos .card .card-footer span {
    font-size: 13px;
  }

  .filter-showing {
    display: none;
  }

  .icon-descuento {
    height: 40px;
    width: 40px;
    padding-top: 0;
  }

  .icon-descuento span {
    font-size: 10px;
  }

}

.copyright-section {
  background: rgb(17 91 141);
  padding-top: 10px;
  padding-bottom: 10px;
}

.copyright {
  margin-bottom: 0px;
  font-size: 11px;
  font-weight: 500;
}

.copyright a {
  color: #ffb400;
  font-weight: 700;
}

.marcas {
  background: #f7f7f7;
}

.btn-filter {
  background: var(--rosa);
  color: #fff;
  border: 2px dotted #f5f5f5;
  letter-spacing: 0.5px;
  padding: 11px 18px;
}

.btn-filter:hover {
  background: var(--rosa);
  color: #fff;
}

/* .active>.page-link,
.page-link.active {
  z-index: 3;
  color: var(--rosa);
  background-color: red !important;
  border-color: red !important;
}

.pagina>div>nav {
  background: red;
  padding: 20px !important;
} */

.list-group-item.active {
  background: #fff;
  border: none;
  color: var(--rosa);
  border-radius: 5px;
  border: 1.8px dashed var(--rosa) !important;
}

.list-group-item>a:active {
  background: #fff;
  border: none;
  color: var(--rosa);
  border-radius: 5px;
  border: 1.5px dashed rgba(191, 18, 18, 0.41) !important;
}

.form-label {
  margin-bottom: .5rem;
  color: var(--rosa);
  font-weight: 600;
}

.title-filter {
  font-size: 20px;
  font-weight: 700;
  color: #2289cd;
}

.list-group-item {
  font-size: 15px;
  ;
}

.btn-clearfilter {
  padding: 10px 16px !important;
  font-size: 15px;
  background: #77b05d;
}

.btn-clearfilter:hover {
  padding: 10px 16px !important;
  font-size: 15px;
  background: #456636;
}

.widget-content {
  padding: 1rem;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  align-items: center;
}

.widget-content .widget-content-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  -ms-flex-align: center;
  align-items: center;
}

.widget-content .widget-content-left .widget-heading {
  opacity: .8;
  font-weight: bold;
  color: #075085;
  font-size: 15px;
}

.widget-content .widget-content-left .widget-subheading {
  opacity: 1;
  font-size: 13px;
  color: #4e4e4e;
  font-weight: 500;
}

.table-striped tbody tr:nth-of-type(2n+1) {
  background-color: rgb(251 251 251);
  border-bottom: 2px dotted #dbdbdb;
}

.table td,
.table th {
  padding: .75rem;
  vertical-align: middle;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table td,
.table th {
  padding: .75rem;
  vertical-align: middle;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

.w-75 {
  border: 1.8px dashed rgb(238, 46, 118);
}

.btn-element {
  height: fit-content;
  background: var(--pink);
  padding: 8px;
  background-color: var(--rosa);
  color: rgb(255, 255, 255);
  border-radius: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.41);
}


.active>.page-link,
.page-link.active {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: #cd3c89 !important;
  border-color: #cd3c89 !important;
}

/*--------------------------------------------------------------
# redes sociales
--------------------------------------------------------------*/

.social {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 50%;
  right: 0;
  margin-bottom: 10px;
  width: 140px;
  z-index: 9999;
}

.social a {
  text-decoration: none;
  font-weight: bold;
  padding: 0.5em;
  margin: 2px;
  text-align: left;
  transform: translateX(90px);
  transition: all 0.5s;
}

.book {
  color: #fff;
  border-radius: 50px 0px 0px 50px;
}

.social a i {
  margin-right: 20px;
  width: 30px;
  height: 30px;
  background: #fff;
  text-align: center;
  line-height: 30px;
  border-radius: 100%;
}

.social>a:hover {
  transform: translateX(0px);
  color: white;
}


/*Shopping responsive table*/

table.cart-items {
  text-align: left;
  margin: 0;
}

@media (max-width: 767px) {

  .btn-delete-cart {
    font-size: 15px;
    padding: 10px;
    color: var(--rosa);
    background: var(--amarillo);
    border-radius: 10px;
}

  table tr td h3{
    font-size: 15px;
  }

  .table td,
  .table th {
    background: #fff;
  }

  table.cart-items {
    text-align: left;
    margin: 0;
  }

  table.cart-items thead {
    display: none;
  }

  table.cart-items tbody .cart-item {
    display: block;
    border: 0;
    position: relative;
    font-size: 14px;
    /*margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #EBEBEB;
    padding-left: 120px;
    min-height: 140px;*/
  }

  /*table.cart-items tbody td.cart-item__media {
    position: absolute;
    left: 0;
    top: 0;
    border: 0;
    padding: 0;
    width: 100px;
    min-width: 100px;
}*/

  table.cart-items tbody td.cart-item {
    /*padding-right: 2rem;*/
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: flex;
  }

  table.cart-items tbody td.cart-item .widget-content-wrapper {
    display: flex;
    /*top: 40px;
    position: relative;*/
  }

  /*table.cart-items tbody td.cart-item .widget-content-wrapper img{
    max-width: 100%;
    max-height: 100%;
    height: auto;
    position: relative;
    top: -25px;
  }*/

  table.cart-items tbody td.cart-item .widget-content-wrapper p {
    font-size: 12px;
    margin-top: 20px;
  }

  table.cart-items tbody td.cart-item-trash {
    border: 0;
    padding: 0;
    margin: 0;
    position: absolute;
    right: 10px;
    bottom: 10px;
    /*top: 10px;*/
    width: auto;
    margin-bottom: 10px;
  }
}

/************* GILGAMESH extras */
.gilg-datasheet,
.gilg-datasheet p,
.gilg-datasheet li{
  font-size: 12px;
}

.gilg-paginador li{
  display: inline-block;
}

.pagination .active .page-link{
  padding-top: 5px!important;
}

.pagination .disabled .page-link{
  top: -5px;
}

@media (max-width: 767px) {
  .page-link {
    padding-top: 5px!important;
  }
  .pagination .disabled .page-link{
    top: 0;
  }
}

.gilv-title-size-1{
  height: 60px;
  overflow: hidden;
}

.la-descripcion-cut,
.la-descripcion-cut p,
.la-descripcion-cut li,
.la-descripcion-cut h2,
.la-descripcion-cut h3{
  font-size: 13px; 
  line-height: 22px; 
  color: #999!important;
}

.la-descripcion-cut{
  max-height: 200px;
  overflow: hidden;
}

.la-descripcion-cut-post{
}

.gilv-link-std{
  color: var(--azul);
}
.gilv-link-std:hover{
  color: var(--rosa);
  text-decoration: underline;
}

.contorno-b2::before{
  content: '';
  border: 1px dashed #fff;
  border-radius: 50px;
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
}

.contorno-b3{
  display: block;
  position: relative;
}

.contorno-b3::before{
  content: '';
  border: 1px dashed #fff;
  border-radius: 50px;
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
}

.contorno-b4{
  position: relative;
  border: none;
  background-color: var(--rosa);
  border-radius: 20px;
  padding: 15px!important;
  min-height: 50px;
}

.contorno-b4:hover {
  color: white !important;
  border: none;
  background-color: var(--rosa);
}

.contorno-b4::before{
  content: '';
  border: 1px dashed #fff;
  border-radius: 20px;
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  width: calc(100% - 4px) !important;
}
.contorno-b4::after {
  content: '' !Important;
  display: none;
}