/* Tabs */
.tabs {
  display: flex;
  flex-wrap: wrap;
}

.tabs-list {
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tabs-label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  width: max-content;
  font-weight: 500;
  color: #747783;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  z-index: 10;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.tabs-label:hover{
  color: #462CE9;
}

.tabs-label-unselected {
  background-color: transparent;
  color: #747783;
  border: 1px solid transparent;
}

.tabs-label-selected {
  background-color: white;
  color: #462CE9;
  border: 1px solid #E3E3E4;
}

.tabs-label svg{
  fill: currentColor;
}

.tabs-content-wrapper{
  position: relative;
  width: 100%;
  line-height: 1.5;
  background-color: white;
  padding: 24px 0 48px 0;
  min-height: 500px;
}


@media (max-width: 470px) {
  .tabs-label svg{
    display: none;
  }
}

@media (max-width: 500px) {
  .tabs-label{
    gap: 6px;
    font-size: 14px;
    padding: 12px 12px;
  }
}

@media (min-width: 768px) {
  .tabs-list {
    margin-bottom: -1px;
  }

  .tabs-label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    width: max-content;
    font-weight: 500;
    color: #747783;
    border: 1px solid transparent;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    cursor: pointer;
    z-index: 10;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .tabs-label-unselected {
    background-color: transparent;
    color: #747783;
    border: 1px solid transparent;
    border-bottom: none;
  }

  .tabs-label-selected {
    background-color: white;
    color: #462CE9;
    border: 1px solid #E3E3E4;
    border-bottom: none;
  }
}

@media (min-width: 501px) and (max-width: 900px) {
  .tabs-label{
    padding: 12px 16px;
    font-size: 15px;
  }
}
