.main {
  align-items: center;
  position: relative;
  justify-content: unset;
  background-color: var(--light-blue);
}

.underline__highlighter {
  background-color: var(--azure-blue);
}
.underline__highlighter_white {
  background-color: white;
}

.where {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}
.where__background {
  position: absolute;
  z-index: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.where__hexagon {
  position: absolute;
  background-image: url(../assets/images/where/hexagon-half.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-width: 1870px;
  width: 100%;
  height: 828.5px;
  top: -582px;
}
.where__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  z-index: 1;
  margin-top: 67px;
}
.where__title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--water-blue);
  text-align: center;
  line-height: 56px;
  margin-bottom: 27px;
}
.where__title-dark-blue {
  display: block;
  color: var(--dark-blue);
}
.where__title-star {
  color: var(--smoke-gray);
}

.online {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.online__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1440px;
  width: 100%;
  padding: 111px 30px 40px 30px;
}
.online__title {
  color: white;
  text-align: center;
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 32px;
}
.online__dropdown {
  position: relative;
  width: 100%;
  margin: 40px 0;
  display: flex;
  justify-content: center;
}
.online .online-dropdown {
  font-family: "Cairo", "Inter", sans-serif;
}
.online .online-dropdown__header {
  width: 100%;
  max-width: 456px;
  padding: 13px 24px;
  font-size: 16px;
  border-radius: 16px;
  background-color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
  color: #2c3e50;
}
.online .online-dropdown__header:hover {
  border-color: #3498db;
}
.online .online-dropdown__header.active {
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}
.online .online-dropdown__arrow {
  transition: transform 0.2s ease;
  height: 24px;
  width: 24px;
  background-image: url(../assets/images/where/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(180deg);
}
.online .online-dropdown__arrow.open {
  transform: rotate(0deg);
}
.online .online-dropdown__list {
  overflow-y: auto;
  width: 100%;
  height: auto;
  max-height: 208px;
}
.online .online-dropdown__list-wrapper {
  position: absolute;
  top: 61px;
  max-width: 456px;
  width: 100%;
  padding: 10px 5px 10px 1px;
  background-color: white;
  border-radius: 16px;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0px 4px 68px 0px rgba(0, 146, 188, 0.2);
  transition: opacity 0.2s;
  height: auto;
}
.online .online-dropdown__option {
  display: none;
}
.online .online-dropdown__search {
  color: #BFBFBF;
  display: none;
}
.online .online-dropdown .show-list {
  opacity: 1;
  pointer-events: auto;
}
.online .online-dropdown .show-option {
  display: block;
}
.online .online-dropdown__item {
  font-size: 16px;
  padding: 6.3px 23px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  color: #434343;
}
.online .online-dropdown__item:hover {
  color: #6698B1;
}
.online__shops {
  padding: 0 51px 39px;
  display: none;
  width: 100%;
  justify-content: center;
}
.online__shops.show {
  display: flex;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.online .online-shops__item {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 12px 18px;
  border-radius: 32px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 140px;
  height: 160px;
  max-width: 410px;
  width: 100%;
}
.online .online-shops__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.online .online-shops__item-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 56px;
  width: 100%;
}
.online .online-shops__wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.source-wrapper {
  width: 100%;

  .source {
    max-width: unset;
    background-color: #E7F1F3;
    padding: 39px 80px 81px 80px;

    .source__info {
      margin-top: 37px;
      width: 100%;
    }

    .source__window {
      max-width: 1280px;
    }

    .source__window-wrapper {
      width: 100%;
    }
  }
  .underline__highlighter {
    background-color: #F89C24;
  }

  .height116 {
      max-height: 112px;
  }
  .opacity0 {
      opacity: 0;
  }
  .rotate {
      transform: rotate(180deg);
  }
}

@media (max-width: 1023px) {
  .where__title {
    font-size: 3.2rem;
    line-height: 38px;
    margin-bottom: 33px;
  }
  .where__content {
    margin-top: 35px;
  }
  .where__hexagon {
    width: 100%;
    height: 539px;
    top: -355px;
  }
  .online__content {
    padding: 72px 20px 8px 20px;
  }
  .online__title {
    font-size: 2.4rem;
    margin-bottom: 36px;
  }
  .online__shops {
    padding: 0 4px 39px;
  }
  .online .online-shops__wrapper {
    gap: 16px;
    max-width: 696px;
  }
  .online .online-shops__item {
    border-radius: 24px;
    max-width: 221px;
    height: 120px;
  }
  .online .online-shops__item-image {
    height: 40px;
  }
  .source-wrapper {
    .source {
      padding-bottom: 40px;
    }
  }
  
}
@media (max-width: 767px) {
  .underline {
    width: 240px;
  }
  .where__title {
    font-size: 2.4rem;
    line-height: 120%;
    margin-bottom: 18px;
  }
  .where__content {
    margin-top: 29px;
  }
  .where__hexagon {
    width: 100%;
    height: 291px;
    top: -145px;
    max-width: 600px;
  }
  .online__title {
    font-size: 2rem;
    margin-bottom: 19px;
  }
  .online__content {
    padding: 60px 16px 0px 16px;
  }
  .online__dropdown {
    margin: 25px 0 23px;
  }
  .online__shops {
    padding: 0 0px 39px;
  }
  .online .online-dropdown__header {
    max-width: 358px;
  }
  .online .online-dropdown__list {
    max-width: 358px;
  }
  .online .online-dropdown__list-wrapper {
    max-width: 358px;
  }
  .online .online-shops__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: 360px;
  }
  .online .online-shops__item {
    height: 104px;
    border-radius: 16px;
    max-width: 175px;
  }
  .online .online-shops__item-image {
    height: 30px;
  }
  .source-wrapper {
    .source {
      padding: 16px 18px 17px 18px;

      .source__window {
        border-radius: 24px;
      }

      .source__text {
        font-size: 1rem;
      }
    }
    .height116 {
      max-height: 71px;
    }
  }
}/*# sourceMappingURL=where.css.map */