@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Light.woff2') format('woff2'),
      url('../fonts/poppins/Poppins-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Black.woff2') format('woff2'),
      url('../fonts/poppins/Poppins-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Bold.woff2') format('woff2'),
      url('../fonts/poppins/Poppins-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Medium.woff2') format('woff2'),
      url('../fonts/poppins/Poppins-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Regular.woff2') format('woff2'),
      url('../fonts/poppins/Poppins-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Thin.woff2') format('woff2'),
      url('../fonts/poppins/Poppins-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}




/* ROOT VARS */
:root {
  --font-default: "Poppins";
  --font-primary: "Poppins";
  
  --color-default: #444444;

  --color-primary: #00205f;
  --color-primary-dark: #2e87d3;

  --color-secondary: #00205f;
  --color-tertiary: #D52B1E;
  
  --color-white: #FFFFFF;
  --color-light: #f1f1f1;
  --color-dark: #002037;
  
  --regular-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
  
  scroll-behavior: smooth;

  --bs-link-color: #00205f;
  --swiper-navigation-color: #00205f;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #00205f;
    --bs-btn-border-color: #00205f;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0b5ed7;
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #00205f;
    --bs-btn-disabled-border-color: #00205f;
}

.btn-link {
  text-decoration: none !important;
}
.btn-sm {
  font-size: 13px;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: 0;
  color: var(--color-dark);
  font-family: "bootstrap-icons";
  font-size: 10px;
  content: "\F282";
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
  border-left: none !important;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  font-size: 14px;
  font-weight: 500;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-dark);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-dark);
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}

.back-to-top:hover {
  background: #075e54;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  top: 0;
}

#header .navbar-brand img {
  max-height: 40px;
  height: 40px;
  transition: .3s;
}






/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.dropdown-menu.show {
  -webkit-animation: fadeIn 0.3s alternate;
  /* Safari 4.0 - 8.0 */
  animation: fadeIn 0.3s alternate;
}

.nav-item.dropdown.dropdown-mega {
  position: static;
}
.nav-item.dropdown.dropdown-mega .dropdown-menu {
  width: 100%;
  top: auto;
  left: 0;
  border: 0 1px 1px 1px;
  font-size: 14px;
}
.navbar .nav-item .dropdown-menu {
  font-size: 14px;
}
.nav-sub-items {
  padding: 0;
  margin: 10px 0;
  list-style: none;
}
.nav-sub-items li a{
  color: var(--color-default);
  font-weight: 400;
  transition: .3s;
}
.nav-sub-items li a:hover{
  color: var(--color-primary);
  transition: .3s;
}


#user-btn {
  width: 35px;
  height: 35px;
  border-radius: 20px;
  background: var(--color-primary);
  color: var(--color-white);
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
#user-btn::after {
  display: none !important;
  margin-left: none !important;
  vertical-align: none !important;
  content: none !important;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
  border-left: none !important;
}
#user-btn i {
  line-height: 0;
}
.user-dropdown li a {
  font-size: 14px;
}


.navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler .hamburger-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  z-index: 11;
  float: right;
}
.navbar-toggler .hamburger-toggle .hamburger {
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  pointer-events: none;
}
.navbar-toggler .hamburger-toggle .hamburger span {
  width: 100%;
  height: 4px;
  position: absolute;
  background: #333;
  border-radius: 2px;
  z-index: 1;
  transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
  left: 0px;
}
.navbar-toggler .hamburger-toggle .hamburger span:first-child {
  top: 10%;
  transform-origin: 50% 50%;
  transform: translate(0% -50%) !important;
}
.navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}
.navbar-toggler .hamburger-toggle .hamburger span:last-child {
  left: 0px;
  top: auto;
  bottom: 10%;
  transform-origin: 50% 50%;
}
.navbar-toggler .hamburger-toggle .hamburger.active span {
  position: absolute;
  margin: 0;
}
.navbar-toggler .hamburger-toggle .hamburger.active span:first-child {
  top: 45%;
  transform: rotate(45deg);
}
.navbar-toggler .hamburger-toggle .hamburger.active span:nth-child(2) {
  left: 50%;
  width: 0px;
}
.navbar-toggler .hamburger-toggle .hamburger.active span:last-child {
  top: 45%;
  transform: rotate(-45deg);
}

.icons {
  display: inline-flex;
  margin-left: auto;
}
.icons a {
  transition: all 0.2s ease-in-out;
  padding: 0.2rem 0.4rem;
  color: #ccc !important;
  text-decoration: none;
}
.icons a:hover {
  color: white;
  text-shadow: 0 0 30px white;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}
.red-subtitle {
  padding-left: 15px;
  border-left: 5px solid #D52B1E;
}
.section-title-white {
  font-size: 1.5rem;
  text-transform: uppercase;
  /* margin-bottom: 20px; */
  padding-left: 15px;
  position: relative;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-weight: 300;
}

.section-title-dark {
  font-size: 1.5rem;
  text-transform: uppercase;
  /* margin-bottom: 20px; */
  padding-left: 15px;
  position: relative;
  color: var(--color-dark);
  font-family: var(--font-primary);
  font-weight: 300;
}





.section-left-title-dark {
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--color-dark);
  font-family: var(--font-primary);
}

.section-left-title-dark::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-primary);
  bottom: 0;
  left: 0;
}

.section-title p {
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: var(--color-secondary);
}

#footer p {
  color: rgba(255,255,255,.7) !important;
}
#footer .logo-footer {
  width: 150px;
  margin-bottom: 20px;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: var(--color-secondary);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #FFF;
  font-weight: 300;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  margin-bottom: 30px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: rgba(255,255,255,.2);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-weight: 300;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-weight: 300;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #2d99f5;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2d99f5;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #2d99f5;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 25px;
  background-color: var(--color-light);
}
.breadcrumbs ol a {
  color: var(--color-secondary);
}
.breadcrumbs ol {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 0px 0;
  margin: 0;
  font-size: 14px;
  position: relative;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
  position: relative;
  color: var(--color-primary);
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-primary);
  content: "/";
  position: relative;
}



/*CONTACTO*/
#contacto {
  background: #00205F;
}
#contacto .info-content {
  text-align: center;
  padding: 40px 25px;
  height: 100%;
  background-color: rgba(255,255,255,.1);
  border-radius: .5rem;
}
#contacto .info-content i {
  font-size: 24px;
  color: #FFF;
  background-color: #00205F;
  padding: 10px 15px;
  border-radius: 2rem;
}
#contacto .info-content h5 {
  color: #FFF;
  font-weight: bold;
  margin: 30px 0 20px 0;
}
#contacto .info-content p {
  color: #FFF;
  font-weight: normal;
}
#contacto .info-content a {
  font-weight: normal;
  color: #FFF;
}
#contacto .info-content a:hover {
  font-weight: normal;
  color: #2d99f5;
}

/* HEADER BUTTONS */
.action-buttons {
  font-size: 18px;
}




/* BANNER NUEVO*/
#banner-nuevo {
  padding-top: 0;
}
#banner-nuevo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: .5rem;
}

/* BENEFICIOS*/
.beneficios-exclusivos img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
}
.beneficios-exclusivos .card-body h1 {
  font-weight: bolder;
  color: var(--color-primary);
}

/*PRODUCTOS*/
.floating-descuento {
  position: absolute;
  right: 15px;
  top: 15px;
  background-color: var(--color-default);
  color: var(--color-white);
  border-radius: 2rem;
  padding: 20px 15px;
  line-height: 0;
  font-size: 16px;
}

/*CATEGORIAS*/
#categorias-destacadas .bg-categorias {
  width: 100%;
  background-size: cover;
  background-position: center;
  transition: .3s;
  position: relative;
}
#categorias-destacadas .bg-categorias div{
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 1.3rem;  
}
#categorias-destacadas .bg-categorias:hover {
  box-shadow: var(--regular-shadow);
  transition: .3s;
}
.brick-1 .bg-categorias{
  height: 525px;
}
.brick-2 .bg-categorias{
  height: 250px;
}
.brick-3 .bg-categorias{
  height: 250px;
}

/*COMO COMPRAR*/
#como-comprar img {
  width: auto;
  height: 80px;
}


/*BENEFICIOS DETALLE*/
#beneficios-detalle .swiper-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.beneficios-card {
  padding: 40px !important;
  height: 100%;
}
.beneficios-card .ben {
  color: var(--color-primary);
}
.beneficios-card-item-list {
  display: flex;
  justify-content: space-between;
}
.beneficios-card-item-list-icon {
  background-color: var(--color-light);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.beneficios-card-item-list-icon i {
  font-size: 18px;
}
.beneficios-card-item-list-text {
  width: calc(100% - 65px);
}



/* FILTER */

#session-nav #navbarSupportedContent .navbar-nav{
  display: block !important;
}
#session-nav h5{
  color: var(--color-dark);
}
.session-menu-list li {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-check label {
  font-size: 14px;
}
.scrolling-content {
  overflow-x: hidden;
  overflow-y: scroll;
  height: auto;
  max-height: 300px;
}
.scrolling-content::-webkit-scrollbar-track
{
	border-radius: 2px;
	background-color: var(--color-light);
}
.scrolling-content::-webkit-scrollbar
{
	width: 2px;
	background-color: var(--color-light);
}
.scrolling-content::-webkit-scrollbar-thumb
{
	border-radius: 2px;
	background-color: var(--color-primary);
}
/* FILTER */


/*TIENDA DETALLE*/
#tienda-detalle .swiper-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
#tienda-detalle .descuento {
  font-size: 18px;
}
.color-green {
  color: #25d366;
}
.btn-size {
  padding-top: 10px;
  padding-bottom: 10px;
}


/*SEARCH */
.launch-search input {
  border-top: none;
  border-left: none;
  border-right: none;
  height: 60px;
}


/*SMALL PRODUCT*/
.small-product-card {
  display: flex;
  justify-content: space-between;
}
.small-product-card .small-product-img {
  width: 80px;
  height: 80px;
}
.small-product-card .small-product-img img{
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.small-product-card .small-product-body {
  width: calc(100% - 80px);
  padding-left: 15px;
}

/*CART*/
.delete-product {
  height: 30px;
}
.offcanvas-cart-body {
  overflow-x: hidden;
  overflow-y: scroll;
  height: calc(100vh - 415px);
}
.offcanvas-cart-body::-webkit-scrollbar-track
{
	border-radius: 0;
	background-color: transparent;
}
.offcanvas-cart-body::-webkit-scrollbar
{
	width: 0px;
	background-color: transparent;
}
.offcanvas-cart-body::-webkit-scrollbar-thumb
{
	border-radius: 0;
	background-color: transparent;
}

.banner-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 1rem;
}




.product-card{
  border-bottom: solid 1px rgba(0,0,0,.2) !important;
}
.product-img-top {
  width: 100%;
  padding-top:100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 5px 5px 0px 0px;
  /* display: flex;
  justify-content: center;
  align-items: center; */
}
.product-img-top img{
  width: 100%;
  height: 300px;  
  object-fit: cover;
  object-position: center;
}

.product-card h6{
  min-height: 50px;
}
.card-height {
  height: 70px;
}
.card-height-dos {
  height: 80px;
}
.img-category-card {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

#separador{
  height: 70px;
}


.user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #00205f; /* rojo Pixelio */
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

@media only screen and (max-width: 600px) {

  .banner-img {
    width: 100%;
    height: 80vh !important;
    object-fit: cover;
    object-position: center;
    border-radius: 1rem;
  }

  #separador{
    height: 100px;
  }

  .navbar>.container {
    justify-content: end;
  }
  .w-50 {
    width: 100% !important;
  }
  .border-start {
    border-left: none !important;
  }
  #banner-nuevo img {
    height: 140px;
  }
  .swiper {
    padding-left: 15px;
    padding-right: 15px;
  }
  .swiper-button-next, .swiper-button-prev {
    display: none !important;
  }
  .swiper-four .swiper-slide {
    width: 80% !important;
  }
  .bi-list {
    font-size: 24px;
  }
  #tienda-detalle .swiper-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .product-card{
    display: flex;    
    flex-direction: row;
    border-bottom: solid 1px rgba(0,0,0,.2) !important;
    padding: 15px;
  }

  .product-img-top{
    width: 100px;
    height: 100px;
    padding-top: unset;
  }

  .product-card-body{
    width: calc(100% - 100px);
    padding-left: 15px;
  }

  .swiper{
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}




