/* Universal breakpoints */

.tabs {
  font-family: 'Poppins', sans-serif;
  width: 100%;
  position: relative;
}

@media (max-width: 767px) {
  .tabs {
      flex-direction: column;
      display: flex;
      align-items: center;
  }
}

.filter-mobile-tab-button {
  display: none;
}

@media (max-width: 767px) {
  .filter-mobile-tab-button {
      font-size: 14px;
      font-weight: 500;
      color: #3b3d49;
      align-items: center;
      border-radius: 8px;
      padding: 10px 16px;
      align-self: flex-end;
      display: block;
      position: relative;
  }
  .filter-mobile-tab-button.active {
      background-color: #F3F6F6;
  }
  .filter-mobile-tab-button.active img {
      filter: brightness(5) invert(1);
  }
  .filter-mobile-tab-button img {
      margin-right: 5px;
      margin-bottom: -5px;
  }
}

.gray-shim {
  background-color: #F3F6F6;
  position: absolute;
  z-index: -1;
  height: 350px;
  width: 100%;
  top: -20px;
}

.mobile-tab-heading {
  display: block;
  margin: 0;
  align-self: flex-start;
  padding-top: 40px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  color: #3b3d49;
}

.mobile-tab-heading::after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: #fbc600;
  position: relative;
  display: block;
}

@media (min-width: 768px) {
  .mobile-tab-heading {
      display: none;
  }
}

.sidebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 650px;
}

@media (min-width: 768px) {
  .sidebar.auto {
      justify-content: center;
      width: auto;
  }
}

@media (min-width: 768px) {
  .sidebar.auto .tab-btn {
      margin-right: 25px;
  }
}

@media (min-width: 992px) {
  .sidebar.auto .tab-btn {
      margin-right: 75px;
  }
  .sidebar.auto .tab-btn:last-of-type {
      margin-right: 0;
  }
}

.sidebar.small {
  width: 460px;
}

.sidebar.full {
  width: 1194px;
}

@media (min-width: 768px) {
  .sidebar {
      margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .sidebar {
      display: none;
  }
  .sidebar.active {
      display: flex;
      flex-direction: column;
      position: absolute;
      background-color: #fff;
      z-index: 2;
      box-shadow: 0px 12px 30px 0px rgba(45, 46, 53, 0.3);
      width: 234px;
      right: 0;
      margin-top: 10px;
      border-radius: 8px;
      align-self: flex-end;
      padding: 10px 0;
      top: 40px;
  }
  .sidebar.active .tab-btn {
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 24px;
      width: 75%;
      text-align: left;
      margin: 5px 0;
      padding: 5px 0;
  }
}

.tab-btn {
  font-size: 36px;
  background-color: transparent;
  border: none;
  font-weight: bold;
  color: #727377;
  cursor: pointer;
  padding: 10px 0;
  margin: 10px 0;
  outline: none;
  font-family: "Synchrony Sans", Helvetica, sans-serif;
}

.tab-btn.text-small {
  font-size: 32px;
}

.tab-btn:focus-visible {
  border: 2px solid #3b3d49;
  border-radius: 8px;
  padding: 10px;
}

.tab-btn-active {
  border-bottom: 3px solid #3b3c43;
  /* ADA fix changed the color */
  color: #3b3d49;
}


/* tabs content */

.tabs .content {
  width: 100%;
  margin-top: 20px;
}

.tab-content {
  display: none;
  width: auto;
  /* text-align: center;*/
  gap: 16px;
  color: #3b3d49;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.tab-content.awards-carousel {
  overflow-x: auto;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 991px) {
  .tab-content.awards-carousel {
      height: 212px;
      flex-wrap: nowrap;
      overflow-x: auto;
      overflow-y: hidden;
      justify-content: normal;
      /* Scrollbar styles */
  }
  .tab-content.awards-carousel::-webkit-scrollbar {
      width: 12px;
      height: 12px;
      cursor: pointer;
  }
  .tab-content.awards-carousel::-webkit-scrollbar-track {
      background: #e8e9ec;
      opacity: 0.7;
      border-radius: 12px;
  }
  .tab-content.awards-carousel::-webkit-scrollbar-thumb {
      border-radius: 12px;
      background: #62657b;
  }
  .tab-content.awards-carousel::-webkit-scrollbar-thumb:hover {
      background: #62657b;
  }
}

@media (max-width: 767px) {
  .tab-content[data-tab="shop-by-category"] {
      display: flex;
  }
}

.tab-content .featured-deals-tiles {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  max-width: 100%;
  padding: 0 20px;
}

.tab-content .featured-deals-tiles>div {
  padding-bottom: 24px;
  box-sizing: border-box;
  overflow-x: auto;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  /* Scrollbar styles */
}

.tab-content .featured-deals-tiles>div::-webkit-scrollbar {
  width: 12px;
  height: 12px;
  cursor: pointer;
}

.tab-content .featured-deals-tiles>div::-webkit-scrollbar-track {
  background: #e8e9ec;
  opacity: 0.7;
  border-radius: 12px;
}

.tab-content .featured-deals-tiles>div::-webkit-scrollbar-thumb {
  border-radius: 12px;
  background: #62657b;
}

.tab-content .featured-deals-tiles>div::-webkit-scrollbar-thumb:hover {
  background: #62657b;
}

.tab-content>.awards-cell {
  width: 330px;
  height: 200px;
  flex-shrink: 0;
}

.tab-content>.awards-cell>img {
  max-width: 100%;
  margin-bottom: 12px;
  height: 120px;
}

@media (max-width: 991px) {
  .tab-content {
      width: -moz-fit-content;
      width: fit-content;
      max-width: 100%;
      flex-wrap: nowrap;
      justify-content: normal;
      margin: auto;
      /* Scrollbar styles */
  }
  .tab-content::-webkit-scrollbar {
      width: 12px;
      height: 12px;
      cursor: pointer;
  }
  .tab-content::-webkit-scrollbar-track {
      background: #e8e9ec;
      opacity: 0.7;
      border-radius: 12px;
  }
  .tab-content::-webkit-scrollbar-thumb {
      border-radius: 12px;
      background: #62657b;
  }
  .tab-content::-webkit-scrollbar-thumb:hover {
      background: #62657b;
  }
  .tab-content>.awards-cell {
      overflow-x: auto;
      height: 212px;
  }
}

.tab-content.tab-content-active {
  display: flex;
}

.tab-content-mobile-header {
  display: none;
  text-align: left;
}

@media (max-width: 767px) {
  .tab-content-mobile-header {
      display: block;
      margin: 0 20px;
  }
}

.article-tile-copy-wrap {
  margin-top: -22px;
  position: relative;
}

.article-tile-copy-wrap button {
  font-size: 20px;
}
/*ADA fix */
.zoom-in-mode-level-400 #awards .tab-content.tab-content-active{
  display: inline;
  position: relative;
 left: 15%;
 
}
.zoom-in-mode-level-400 .tab-content > .awards-cell{
  width: 80%;
}