.tour-types__menu {
  padding-top: 40px;
  margin-bottom: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.tour-types__menu__link {
  font-size: 20px;
  font-weight: 500;
  background-color: #e1e1e1;
  border-radius: 16px;
  padding: 20px 20px 20px 25px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.tour-types__menu__link.active svg {
  transform: rotate(180deg);
}

.tour-types__menu__icon {
  width: 44px;
  height: 44px;
  background-color: white;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tour-types__menu__icon svg {
  width: 12px;
  height: 12px;
}

.tour-types__menu__list {
  margin-top: 30px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 10px;
  line-height: 1.2;
}
.tour-types__menu__list.active {
  display: grid !important;
}

/*  */
@media (max-width: 767px) {
  .tour-types__menu {
    padding-top: 20px;
    margin-bottom: 20px;
  }

  .tour-types__menu__link {
    font-size: 16px;
    padding: 10px 10px 10px 15px;
  }

  .tour-types__menu__list {
    grid-template-columns: 1fr;
  }
}

/* v1.0.2 */
