/* Tab column --------------------------------------------------------------------------------------------------------*/
.tab-column {
  padding-bottom: 30px;
}

.tab-column-link {
  font-size: 1.125rem;
  text-align: left;
  padding: 20px 30px 20px 0;
  position: relative;
  display: block;
  border: 0px;
  width: 100%;
  border-bottom: 1px solid #E5E5E5;
  background: none;
}
.theme-light .tab-column-link {
  color: #73706E !important;
}
.theme-dark .tab-column-link {
  color: #ffffff !important;
}
.tab-column-link:hover {
  opacity: 0.7;
}
.tab-column-link::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 25px;
  width: 16px;
  height: 16px;
  background: url("../../imag/ic-right-arrow-grey.svg") no-repeat;
  background-size: 16px 16px;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}
.tab-column-link.active {
  font-weight: 700;
}
.tab-column-link.active::before {
  right: 0px;
  opacity: 1;
  visibility: visible;
}

.tiendas-accordion {
  padding-left: 44px;
  padding-bottom: 35px;
}
.tiendas-accordion:last-child {
  padding-bottom: 0px;
}

.tab-pane-title {
  color: #0069B4;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2.625rem;
  padding-bottom: 35px;
}

.tiendas-accordion-head {
  color: #0069B4;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75rem;
  position: relative;
  padding-bottom: 10px;
  cursor: pointer;
}
.tiendas-accordion-head:hover {
  opacity: 0.7;
}

.tiendas-accordion-icon-outer {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 3px;
  left: -44px;
  display: block;
}

.tiendas-accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: 24px;
  border: 1px solid #0069B4;
  position: relative;
  display: block;
}
.tiendas-accordion-icon::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 5px;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  display: block;
  background-color: #0069B4;
}
.tiendas-accordion-icon::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 5px;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  display: block;
  background-color: #0069B4;
  transform: rotate(90deg);
  transition: all 0.25s ease;
}

.open .tiendas-accordion-icon::after {
  display: none;
  transform: rotate(0deg);
}

.tiendas-accordion-body-text {
  font-size: 1rem;
}
/* Responsive Media Queries --------------------------------------------------------------------------------------------------------*/
@media (min-width: 768px) {
  .tab-column-outer {
    display: flex;
    display: -ms-flexbox;
  }

  .tab-column {
    width: 328px;
    min-width: 328px;
    padding-top: 15px;
  }

  .tab-column-content {
    padding-left: 60px;
  }
}

/*# sourceMappingURL=tab-column.css.map */