.dropdown-tab {
  border-right: var(--border-blue-5);
  border-left: var(--border-blue-5);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
@media (hover: hover) {
  .dropdown-tab:hover {
    color: var(--color-blue-3);
  }
}
@media screen and (max-width: 900px) {
  .dropdown-tab {
    padding: 8px;
  }
}
.dropdown-tab:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-blue-5);
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 0;
}
.dropdown-tab:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-blue-5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.dropdown-tab._active {
  z-index: 2;
  border-right: var(--border-blue-2);
  border-left: var(--border-blue-2);
}
.dropdown-tab._active:after {
  background-color: var(--color-blue-2);
  z-index: 1;
}
.dropdown-tab._active:before {
  background-color: var(--color-blue-2);
  z-index: 1;
}
.dropdown-tab._active .dropdown-tab__head-icon {
  transform: rotate(270deg);
}
.dropdown-tab__content-container {
  height: 0;
  overflow: hidden;
  transition: height var(--transition);
}
.dropdown-tab__content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 0 32px 32px;
}
@media screen and (max-width: 900px) {
  .dropdown-tab__content {
    padding: 16px 8px 24px;
    margin-top: 8px;
    gap: 16px;
    border-top: var(--border-blue-5);
  }
}
.dropdown-tab__head {
  padding: 32px;
  cursor: pointer;
}
@media screen and (max-width: 900px) {
  .dropdown-tab__head {
    padding: 16px 8px;
  }
}
.dropdown-tab__head-icon {
  margin-left: auto;
  width: 16px;
  height: 16px;
  padding: 3px;
  border-radius: 50%;
  border: var(--border-blue-3-bold);
  transform: rotate(90deg);
  transition: transform var(--transition);
  display: none;
}
@media screen and (max-width: 900px) {
  .dropdown-tab__head-icon {
    display: block;
  }
}
@media screen and (max-width: 900px) {
  .dropdown-tab__head-title {
    margin-bottom: 12px;
  }
}