/* base */
body {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  margin:0
}

html {
  width: 100%;
  margin: 0;
}
.show {
  display: block !important;
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}
.container {
  max-width: 1280px;
  margin: auto;
  padding: 0 2rem;
}
.slick-slider.white .slick-prev {
  background-image: url("/static/img/icon/slide-white-der.svg");
  margin-left: 16px;
}
.slick-slider.white .slick-next {
  background-image: url("/static/img/icon/slide-white-izq.svg");
  margin-right: 16px;
  right: 0;
}
.slick-slider.white .slick-arrow {
  position: absolute;
  background-repeat: no-repeat;
  top: 50%;
  z-index: 1;
  border: none;
  background-color: transparent;
  height: 83px;
  width: 47px;
  padding: 0;
  cursor: pointer;
}
.slick-slider.white .slick-dots {
  position: absolute;
  margin: 0 0 7px 0;
  padding: 0;
  display: flex;
  list-style: none;
  bottom: 0;
  justify-content: center;
  width: 100%;
}
.slick-slider.white .slick-dots button {
  color: transparent;
  background-color: var(--main-color);
  border-radius: 100%;
  border: none;
  background-repeat: no-repeat;
  margin: 0 3px;
  height: 20px;
  width: 20px;
}
.slick-slider.white .slick-dots .slick-active button {
  background-color: var(--secondary-color);
}
input[type="checkbox"] {
  position: absolute;
  cursor: pointer;
  width: 0px;
  height: 0px;
}
input[type="checkbox"] ~ label {
  margin-left: 40px;
  height: 28px;
  display: flex;
  align-items: center;
}
input[type="checkbox"]:before {
  content: '';
  height: 20px;
  width: 20px;
  display: block;
  border: 2px solid var(--main-color);
  border-radius: 5px;
}
input[type="checkbox"]:after {
  content: '';
  height: 15px;
  width: 10px;
  border: solid transparent;
  border-width: 0px 3px 3px 0px;
  display: block;
  transform: rotate(40deg);
  position: absolute;
  top: 2px;
  left: 7px;
  transition: all cubic-bezier(0, 0, 0.2, 1) 0.2s;
}
input[type="checkbox"]:checked::after {
  border: solid var(--main-color);
  border-width: 0px 3px 3px 0px;
}
input[type="radio"] {
  position: absolute;
  cursor: pointer;
  width: 0px;
  height: 0px;
}
input[type="radio"] ~ label {
  margin-left: 40px;
  height: 28px;
  display: flex;
  align-items: center;
}
input[type="radio"]:before {
  content: '';
  height: 20px;
  width: 20px;
  display: block;
  border: 2px solid var(--main-color);
  border-radius: 50%;
}
input[type="radio"]:after {
  content: '';
  height: 0px;
  width: 0px;
  background-color: var(--main-color);
  display: block;
  position: absolute;
  border-radius: 50%;
  top: 12px;
  left: 12px;
  transition: all cubic-bezier(0, 0, 0.2, 1) 0.2s;
}
input[type="radio"]:checked::after {
  height: 24px;
  width: 24px;
  top: 0px;
  left: 0px;
}
.slick-slider.black .slick-prev {
  background-image: url("/static/img/icon/slide-white-der.svg");
  margin-left: 16px;
}
.slick-slider.black .slick-next {
  background-image: url("/static/img/icon/slide-white-izq.svg");
  margin-right: 16px;
  right: 0;
}
.slick-slider.black .slick-arrow {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  top: 35%;
  z-index: 1;
  border: none;
  background-color: transparent;
  height: 45px;
  width: 25px;
  padding: 0;
  cursor: pointer;
}
.slick-slider.black .slick-dots {
  position: relative;
  margin: 35px 0;
  padding: 0;
  display: flex;
  list-style: none;
  bottom: 0;
  justify-content: center;
  width: 100%;
}
.slick-slider.black .slick-dots button {
  color: transparent;
  background-color: var(--main-color);
  border-radius: 100%;
  border: none;
  background-repeat: no-repeat;
  margin: 0 3px;
  height: 20px;
  width: 20px;
}
.slick-slider.black .slick-dots .slick-active button {
  background-color: var(--secondary-color);
}
.paging {
  max-width: 320px;
  display: flex;
  flex-flow: row;
  margin: auto;
  justify-content: center;
  align-items: center;
  padding: 30px 0 20px 0;
}
.paging .arrow {
  padding: 0;
  width: 18px;
  height: 23px;
  color: transparent;
  border: none;
  background-color: transparent;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 10px;
}
.paging .left {
  background-image: url("/static/img/icon/slide-black-izq.svg");
}
.paging .right {
  background-image: url("/static/img/icon/slide-black-der.svg");
}
.paging .page {
  width: 30px;
  height: 30px;                          
  justify-content: center;
  align-items: center;
  display: flex;
  margin: 0 10px;
  cursor: pointer;
  font-weight: 500;
  font-size: 18px;
  transition: all cubic-bezier(0, 0, 0.2, 1) 0.2s;
}
.paging .page.active,
.paging .page:hover {
  background-color: var(--main-color);
  color: var(--main-text-color);
}
.div-holder {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 300px;
  background-color: var(--main-color);
  color: #FFFFFF;
  margin: 22px auto 0 auto;
}
@media (max-width: 764px) {
  .d-none {
    display: none !important;
  }
}
@media (min-width: 764px) {
  .d-md-none {
    display: none !important;
  }
}
.astext {
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color);
  color: var(--main-text-color);
  text-align: center;
  padding: 15px 0;
  font-weight: 500;
  font-size: 30px;
  z-index: 99;
  border: none;
}
.logo {
  max-width: 17rem;
  height: auto;
  align-self: flex-start;
}
.huincha-small {
  height: 48px;
  display: flex;
  flex-flow: row;    
  justify-content: space-around;
  align-items: center;
  background-color: var(--secondary-color);
  color: var(--secondary-text-color);
  text-align: center;
  font-size: 16px;
}
.header-icon {
  width: 32px;
  height: auto;
  margin-right: 8px;
}
.header-text {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.huincha {
  height: 42px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color);
  color: var(--main-text-color);
  text-align: center;
  padding: 15px 0;
  font-weight: 500;
  font-size: 30px;
  z-index: 99;
}
.huincha-brand {
  display: flex;
  justify-content: start;
  align-items: center;
  text-align: start;
  margin: 15px 0;
  font-size: 28px;
  font-weight: 300;
  border-bottom: 1px solid var(--secondary-color);
}
.brands-title {
  padding-left: 1rem;
  margin-bottom: 0;
}
.huincha-newsletter {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 28px;
  font-weight: 300;
  border-bottom: 1px solid var(--secondary-color);
}
.newsletter-title {
  padding-left: 1rem;
}

.huincha-inner {
  height: auto;
  background-color: var(--secondary-color);
  color: var(--secondary-text-color);
  text-align: center;
  padding: 30px 0;
  font-weight: 500;
  font-size: 30px;
  margin: 20px 0;
}
.slide-top img {
  width: 100%;
}
.countdown-event {
  background-color: var(--main-color);
  color: var(--main-text-color);
}
.countdown-event h3 {
  font-size: 32px;
  letter-spacing: 1.6px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  padding-top: 18px;
  margin-bottom: 0;
  margin-top: 0;
}
.countdown-event #countdown {
  width: 100%;
  display: flex;
  padding: 5px 0;
  justify-content: center;
}
.countdown-event #countdown .day,
.countdown-event #countdown .hour,
.countdown-event #countdown .min,
.countdown-event #countdown .seg {
  position: relative;
  width: 55px;
  padding-bottom: 30px;
  height: 55px;
  font-size: 50px;
  text-align: center;
  margin: 0 13px;
  font-weight: 500;
}
.countdown-event #countdown .day span,
.countdown-event #countdown .hour span,
.countdown-event #countdown .min span,
.countdown-event #countdown .seg span {
  position: absolute;
  bottom: 0;
  top: 55px;
  left: 0;
  font-size: 18px;
  width: 100%;
  text-align: center;
  font-weight: 300;
}
.post-event-blocks-container {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  flex-flow: wrap;
}
.post-event-blocks-container .block {
  display: flex;
  background-color: var(--main-color);
  color: var(--main-text-color);
  height: 100px;
  justify-content: center;
  align-items: center;
  margin: 5px;
  flex: 1 1 314px;
  padding: 0 20px;
  text-decoration: none;
  border-radius: 8px;
}
.post-event-blocks-container .block .icon {
  color: transparent;
  background-color: transparent;
  border: none;
  background-repeat: no-repeat;
  background-size: contain;
}
.post-event-blocks-container .block .izq {
  background-image: url("/static/img/icon/sheld.svg");
  height: 45px;
  min-width: 37px;
  margin-right: 10px;
}
.post-event-blocks-container .block .der {
  background-image: url("/static/img/icon/list.svg");
  height: 45px;
  min-width: 37px;
  margin-right: 10px;
}
.post-event-blocks-container .block .text {
  font-size: 24px;
  font-weight: 500;
}
.marcas_container .filtros {
  display: flex;
  flex-flow: wrap;
  background-color: #E3EEF3;
  border-radius: 8px;
  margin: 5px;
}
.marcas_container .filtros .filtro {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  height: 52px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex: 1;
  background: var(--secondary-color);
  color: var(--secondary-text-color);
  text-decoration: none;
  transition: all cubic-bezier(0, 0, 0.2, 1) 0.2s;
}
.marcas_container .filtros .filtro:hover,
.marcas_container .filtros .filtro.selected,
.marcas_container .filtros .filtro.active {
  background: var(--main-color);
  color: var(--main-text-color);
}
.marcas_container .filtros .filtro:hover i img,
.marcas_container .filtros .filtro.selected i img,
.marcas_container .filtros .filtro.active i img {
  filter: brightness(0%) invert(100%);
}
.marcas_container .filtros .filtro:first-child {
  border-radius: 8px 0 0 8px;
}
.marcas_container .filtros .filtro:last-child {
  border-radius: 0 8px 8px 0;
}
.marcas_container .filtros .filtro i {
  margin-right: 10px;
}
.marcas_container .filtros .filtro i img {
  display: block;
  max-width: 50px;
  height: 30px;
}
.marcas_container .space {
  margin: auto;
  max-width: 1240px;
  display: grid;
  padding: 5px;
  grid-template-columns: auto auto auto auto auto auto;
}
.marcas_container .space .marca {
  margin: 5px;
  display: none;
}
.marcas_container .space .marca .show{
  display: block;
}
.marcas_container .space .marca img {
  width: 100%;
  transition: all cubic-bezier(0, 0, 0.2, 1) 0.2s;
  border: 1px solid #707070;
  border-radius: 8px;
}
.marcas_container .space .marca img:hover {
  box-shadow: 0px 4px 9px -4px rgba(0, 0, 0, 0.55);
  transform: translateY(-5px) scale(1.04);
}
.marcas_container .filtros.mov {
  position: relative;
}
.marcas_container .filtros.mov .filter-group {
  padding-bottom: 18px;
  flex: 50%;
}
.marcas_container .filtros.mov .button-filtro {
  background: var(--main-color);
  color: var(--main-text-color);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 100%;
  padding: 0 56px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
}
.marcas_container .filtros.mov .button-filtro .selected {
  color: var(--secondary-color);
}
.marcas_container .filtros.mov .menu-filtro-toggle {
  top: 14px;
  right: 50px;
}
.marcas_container .filtros.mov .menu-filtro-toggle:before {
  height: 15px;
  width: 15px;
  border-width: 0px 2px 2px 0px !important;
  border: solid var(--main-text-color);
  transform: rotate(45deg);
  border-radius: 0;
  transition: transform cubic-bezier(0, 0, 0.2, 1) 0.2s;
}
.marcas_container .filtros.mov .menu-filtro-toggle:checked::before {
  transform: rotate(225deg);
  top: 10px;
  position: relative;
}
.marcas_container .filtros.mov .menu-filtro-toggle:checked::after {
  display: none;
}
.marcas_container .filtros.mov .menu-filtro-toggle:checked ~ .menu {
  opacity: 1;
  visibility: visible;
}
.marcas_container .filtros.mov .menu {
  display: flex;
  flex-flow: wrap;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  top: 100%;
  background: var(--secondary-color);
  width: calc(100% - 20px);
  padding: 10px;
  margin: 0;
  transition: all cubic-bezier(0, 0, 0.2, 1) 0.2s;
}
.marcas_container .filtros.mov .menu .filtro {
  flex: 50%;
  font-size: 14px;
  border-radius: 0;
}
.marcas_container .post-event-grayscale-hover {
  filter: grayscale(1);
}
.marcas_container .post-event-grayscale-hover:hover {
  filter: grayscale(0);
}
.slider-container--inner .carrusel-img a {
  display: flex;
  padding: 0 10px;
}
.slider-container--inner .carrusel-img a img {
  width: 100%;
}
.slider-container--inner .slick-dots {
  position: relative;
  padding-top: 15px;
}
.slider-container--inner .slick-arrow {
  top: calc(50% - 35.5px);
}
.mailchimp-container {
  background-color: var(--main-color);
}
.social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: wrap;
  background-color: var(--main-color);
}
.social hr {
  width: 100%;
  border: none;
  outline: 1px solid var(--secondary-color);
}
.social a {
  display: flex;
  align-items: center;
  width: 35px;
  padding: 10px;
  height: 35px;
}
.social a img {
  transition: all cubic-bezier(0, 0, 0.2, 1) 0.2s;
  width: 100%;
}
.social a img:hover {
  transform: scale(1.05);
}
.footer-columns {
  background-color: var(--secondary-color);
  color: #FFFFFF;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  padding-bottom: 48px;
  padding-top: 16px;
}
.footer-column {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
}
.column-title {
  color: var(--primary-text-color)
}
.link {
  color: var(--secondary-text-color)
}
footer {
  background-color: var(--secondary-color);
  color: #FFFFFF;
}
.footer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: wrap;
}
.footer .column {
  max-width: 210px;
  padding: 0 18px 20px;
}
.footer .column h3 {
  font-size: 14px;
  color: #FFFFFF;
}
.footer .column a {
  color: #FFFFFF;
}
.footer .column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer .column ul li {
  margin-bottom: 5px;
}
.footer .column ul li img {
  width: 30px;
}
.payment-method-icon {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 764px) {
  .marcas_container .space {
    grid-template-columns: auto auto auto;
  }
  .huincha {
    height: 35px;
    font-size: 18px;
  }
  .huincha-inner {
    font-size: 14px;
    padding: 20px 0;
  }
  .countdown-event h3 {
    font-size: 18px;
  }
  #countdown .day,
  #countdown .hour,
  #countdown .min,
  #countdown .seg {
    font-size: 24px !important;
    height: 30px !important;
    padding-bottom: 30px !important;
    margin: 0 6px !important;
  }
  #countdown .day span,
  #countdown .hour span,
  #countdown .min span,
  #countdown .seg span {
    top: 30px !important;
  }
  .post-event-blocks-container .block {
    height: 58px;
  }
  .post-event-blocks-container .block .icon {
    height: 28px;
    min-width: 23px;
  }
  .post-event-blocks-container .block .text {
    font-size: 14px;
  }
  .footer {
    align-items: center;
    flex-flow: column;
  }
}
@media (max-width: 448px) {
  .post-event-blocks-container .block .text {
    max-width: 166px;
  }
}

.map-container {
  display: flex;
  width: 80%;
  height: 40rem;
  align-items: flex-start;
}

.address-column {
  flex: 1;
  padding: 10px;
}
.addresses-container {
  max-height: 38rem;
  overflow-y: auto;
}
.map-column {
  flex: 1;
  height: 100%;
}

.address-item {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}

.address-icon {
  margin-right: 5px;
  height: auto;
  max-width: 3rem;
}
.map-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.addresses-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.address-name {
  font-weight: bold;
  margin-bottom: 5px;
}
.address-detail {
  font-size: 14px;
  color: #555;
}
.address-search-container {
  position: relative;
  margin-bottom: 10px;
}

.address-search-icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  font-size: 18px; /* Adjust the font size as needed */
  color: #555;
}

.address-search-input {
  padding: 10px 35px 10px 30px; /* Adjust padding for icon space */
  width: 100%;
  box-sizing: border-box;
}
.newsletter-section {
  max-width: 1280px;
  margin: auto;
  padding: 0 2rem;
}
@media (max-width: 764px) {
  .map-container {
    flex-direction: column;
    height: 65rem;
    width: 100%;
  }
  .address-column{
    width: 80%;
  }
  .map-column{
    width: 100%;
  }
  .addresses-container {
    max-height: 25rem;
    overflow-y: auto;
  }
  .newsletter-section {
    max-width: 1280px;
    margin: auto;
    padding: 0;
  }
  .addresses-title{
    font-size: 1rem;
  }
  .brands-title{
    font-size: 1.2rem;
  }
  .newsletter-title{
    font-size: 1rem;
  }
  .logo {
    align-self: center;
  }
  .footer-columns {
    flex-direction: column;
  }
}