/* Universal breakpoints */
.tabs {
  width: 100%;
  position: relative;
}

@media (max-width: 767px) {
  .tabs {
    flex-direction: column;
    display: flex;
    align-items: center;
  }
}

.mobile-controls {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 20px;
}

.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:hover {
    background-color: #f3f6f6;
  }

  .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;
  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;
}

.sidebar.fs-36 button {
  font-size: 36px;
}

@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: 3;
    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-large {
  padding: 10px 0;
  margin: 10px 0;
}

.tab-btn:focus-visible {
  border: 2px solid #3b3d49;
  border-radius: 8px;
  padding: 10px;
}


/* changed color to #3b3d49 as part of ada by sumati */
.tab-btn-active {
  border-bottom: 3px solid #3b3d49;
  color: #3b3d49;
}

/* tabs content */
.tabs .content {
  width: 100%;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .tabs .content {
    margin-top: 0;
  }
}

.tab-content {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  position: relative;
  display: none;
}

.tab-content.awards-carousel {
  box-sizing: border-box;
  flex-direction: row;
  font-weight: 700;
  line-height: 22px;
  padding: 0 20px;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 16px;
  /* 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: 991px) {
  .tab-content.awards-carousel {
    height: 212px;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: normal;
    gap: 34px;
    padding: 0px 20px;
  }
}

.tab-content.awards-carousel .awards-cell {
  width: 330px;
  height: 200px;
  flex-shrink: 0;
}

.tab-content.awards-carousel .awards-cell>img {
  max-width: 100%;
  margin-bottom: 12px;
  height: 120px;
}

@media (max-width: 991px) {
  .tab-content.awards-carousel .awards-cell {
    overflow-x: auto;
    width: auto;
  }
}

.tab-content-active {
  display: block;
}

.tab-content-active.awards-carousel {
  display: flex;
  margin: auto;
}

@media (max-width: 767px) {
  .tab-content-active.awards-carousel {
    margin-top: 20px;
  }
}

.tab-content-mobile-header {
  display: none;
  text-align: left;
}

@media (max-width: 767px) {
  .tab-content-mobile-header {
    display: block;
  }
}

.article-tile-copy-wrap {
  margin-top: -22px;
  position: relative;
}

.article-tile-copy-wrap button {
  font-size: 20px;
}