@charset "UTF-8";
@font-face {
  font-family: "Metropolis";
  src: url("../fonts/Metropolis-Light.ttf");
}
@font-face {
  font-family: "MetropolisBold";
  src: url("../fonts/Metropolis-SemiBold.ttf");
}
a {
  text-decoration: none !important;
}
@media (min-width: 1400px) {
  .topbar {
    padding: 0 130px;
  }
  .site-logo {
    padding: 12px 0 12px 130px;
    width: 264px;
  }
  .site-menu > ul {
    padding-right: 130px;
  }
  .site-menu > ul > li > a {
    font-size: 14px;
  }
}
.site-menu > ul {
  margin-right: 0;
}

.offcanvas-container {
  background-color: black;
}

body {
  font-family: "Metropolis";
}

.btn {
  border-radius: 2px;
  font-weight: normal;
}
.btn.btn-primary {
  background-color: black;
  color: white;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background-color: rgba(0, 0, 0, 0.9);
}

.display-4 {
  font-size: 35px;
}
@media (max-width: 576px) {
  .display-4 {
    font-size: 25px;
  }
}

.home-content {
  margin-top: 5px;
}
.home-content .category-card {
  height: 500px;
  position: relative;
  margin-bottom: 5px;
  overflow: hidden;
}
.home-content .category-card.video-card .category-content::after {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.home-content .category-card:hover > .category-content::before {
  background-color: rgba(0, 0, 0, 0.3);
}
.home-content .category-card > .category-content {
  transition: all 0.5s;
  text-decoration: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.home-content .category-card > .category-content.left {
  width: calc(100% - 5px);
}
.home-content .category-card > .category-content::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.3s;
}
.home-content .category-card h2 {
  font-family: "MetropolisBold";
}
.home-content .category-card h5 {
  font-size: 14px;
  letter-spacing: 3px;
}
@media (max-width: 768px) {
  .home-content .category-card {
    height: 450px;
  }
  .home-content .category-card.video-card {
    display: none;
  }
  .home-content .category-card > .category-content {
    width: calc(100% - 10px) !important;
    left: 5px;
  }
  .home-content .category-card > .category-content::before {
    background-color: rgba(0, 0, 0, 0.2);
  }
}

/*Productos*/
.collection .title {
  font-family: "MetropolisBold";
}
.collection .subtitle {
  letter-spacing: 3px;
  opacity: 0.6;
  line-height: 1;
  font-size: 13px;
}

.product-card .product-title {
  font-family: "MetropolisBold";
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
}
.product-card .product-zoom {
  position: absolute;
  top: 9%;
  left: 15%;
}
.product-card .product-zoom::before {
  content: "";
  display: block;
  position: absolute;
  top: 10%;
  left: 10%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  margin-left: -25px;
  background-color: #000;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 50%;
  z-index: 1;
  cursor: pointer;
}
.product-card .product-zoom::after {
  display: block;
  position: absolute;
  top: 10%;
  left: -8px;
  margin-top: -16px;
  transform: translateY(15px);
  transition: all 0.35s;
  color: #fff;
  font-family: feather;
  font-size: 20px;
  text-align: left;
  content: "\e036";
  opacity: 0;
  z-index: 5;
  cursor: pointer;
}
.product-card:hover .product-zoom::after {
  transform: translateY(0);
  opacity: 1;
}
.product-card:hover .product-zoom::before {
  opacity: 0.5;
}
.product-card .sizes {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
}
.product-card .sizes .size {
  font-size: 12px;
}
.product-card .sizes .size:not(:last-child)::after {
  margin: 10px;
  content: "•";
}
.product-card .colors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.product-card .colors .color {
  opacity: 0.6;
  font-size: 12px;
  text-transform: uppercase;
}
.product-card .colors .color:not(:last-child)::after {
  margin: 10px;
  content: "•";
}
.product-card .slick-prev,
.product-card .slick-next {
  border-radius: 50%;
  border: 1px solid white;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: white;
  transition: all 0.3s;
}
.product-card .slick-prev i,
.product-card .slick-next i {
  height: 16px;
}
.product-card .slick-prev:hover,
.product-card .slick-next:hover {
  border: 1px solid white;
  background-color: rgba(0, 0, 0, 0.7);
  font-size: 13px;
  color: white;
}
.product-card .slick-prev::before,
.product-card .slick-next::before {
  content: none !important;
}
.product-card .slick-prev {
  left: 15px;
  z-index: 2;
}
.product-card .slick-next {
  right: 15px;
  z-index: 2;
}
@media (max-width: 768px) {
  .product-card .product-zoom::after {
    transform: translateY(0);
    opacity: 1;
  }
  .product-card .product-zoom::before {
    opacity: 0.5;
  }
}

.modal.modal-gallery .slick-prev,
.modal.modal-gallery .slick-next {
  border-radius: 50%;
  border: 1px solid white;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: white;
  transition: all 0.3s;
}
.modal.modal-gallery .slick-prev i,
.modal.modal-gallery .slick-next i {
  height: 16px;
}
.modal.modal-gallery .slick-prev:hover,
.modal.modal-gallery .slick-next:hover {
  border: 1px solid white;
  background-color: rgba(0, 0, 0, 0.7);
  font-size: 13px;
  color: white;
}
.modal.modal-gallery .slick-prev::before,
.modal.modal-gallery .slick-next::before {
  content: none !important;
}
.modal.modal-gallery .slick-prev {
  left: 15px;
  z-index: 2;
}
.modal.modal-gallery .slick-next {
  right: 15px;
  z-index: 2;
}
.modal.modal-gallery button.close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  font-size: 26px;
}
.modal.modal-gallery .modal-images img {
  max-height: 80vh;
  margin: auto;
}
.modal.modal-gallery .content h1 {
  font-family: "MetropolisBold";
}
@media (max-width: 768px) {
  .modal.modal-gallery .content {
    text-align: center;
  }
}

.scroll-to-top-btn {
  right: 96px;
  width: 54px;
  height: 54px;
  line-height: 50px;
}

.floating-whatsapp {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 16px;
  bottom: 14px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #25d366;
  color: #fff;
  line-height: 50px;
  font-size: 24px;
  z-index: 2000;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s;
}
.floating-whatsapp:hover {
  color: white;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.floating-whatsapp i {
  height: 52px;
}

/*Contacto*/
.contact-card ul {
  list-style: none;
}
.contact-card a {
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.contact-card a i {
  margin-right: 5px;
  font-size: 20px;
}

.form-group label {
  font-size: 15px;
}

/*# sourceMappingURL=crislatina.css.map */
/* labels talle */
.list-radio {
  list-style-type: none;
  margin: 0 0 0 0;
  padding: 0;
}
.list-radio li {
  float: left;
  margin: 0 5px 0 0;
  width: 50px;
  height: 40px;
  position: relative;
}
.list-radio label,
.list-radio input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.list-radio input[type="radio"] {
  opacity: 0.01;
  z-index: 100;
  cursor: pointer;
}
.list-radio input[type="radio"]:checked + label,
.Checked + label {
  background-color: #91671b;
  color: #fff;
}
.list-radio label {
  padding: 5px;
  border: 1px solid #91671b;
  cursor: pointer;
  z-index: 90;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #91671b;
  background: #fff;
  font-size: 14px;
}
.list-radio label:hover {
  background: #ddd;
}

/* labels colores */

.list-radio-colores {
  list-style-type: none;
  margin: 0 0 0 0;
  padding: 0;
}
.list-radio-colores li {
  float: left;
  margin: 0 15px 0 0;
  width: 30px;
  height: 30px;
  position: relative;
}
.list-radio-colores label,
.list-radio-colores input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

.list-radio-colores input[type="radio"] {
  opacity: 0.01;
  z-index: 100;
  cursor: pointer;
}
.list-radio-colores input[type="radio"]:checked + label,
.Checked + label {
  background-color: var(--hex);
  color: #fff;
  border: 1px solid #000;
}
.list-radio-colores label {
  padding: 5px;
  border: 1px solid #91671b;
  cursor: pointer;
  z-index: 90;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #91671b;
  background: var(--hex);
  font-size: 14px;
}
.list-radio-colores label:hover {
  background: #ddd;
}

.colores {
  border: 1px solid #91671b;
  display: block;
  width: 30px;
  height: 30px;
  background: var(--hex);
  border-radius: 50%;
}

.activo {
  background-color: var(--hex);
  color: #fff;
  border: 1px solid #000;
}

.accordion-button:focus {
  border-color: #91671b;
  /* box-shadow: 0 0 0 0.25rem rgba(253, 157, 13, 0.25); */
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  color: #91671b;
  background-color: rgba(68, 61, 49, 0.25);
}
.itemsCarrito {
  /* font-size: 12px !important; */
  color: #694e1b !important;
  padding-left: 5px !important;
  font-weight: bold;
}
