.content__tabs {
  /* overflow: hidden; */
  border-radius: 20px;
}
/* #region Tabs*/
.tabs {
  display: flex;
  flex-wrap: wrap;
  background: #fcd3de;
  box-shadow: 0px 0px 14px 7px rgba(102, 89, 188, 0.04),
    0px 0px 9px -5px rgba(102, 89, 188, 0.6);
}
.input {
  position: absolute;
  opacity: 0;
}
.label {
  width: 100%;
  padding: 10px 20px;
  cursor: pointer;
  background: var(--btn-pink-background-color);
  color: #fff;
  transition: background 0.1s, color 0.1s;
}
.label:hover {
  background: rgb(255, 85, 130);
}
.label:active {
  background: #ccc;
}
.input:focus + .label {
  z-index: 1;
}
.input:checked + .label {
  background: #fff;
  color: #000;
}
@media (min-width: 600px) {
  .label {
    width: auto;
  }
}
.panel {
  display: none;
  padding: 20px;
  background: #fff;
  width: 100%;
}
@media (min-width: 600px) {
  .panel {
    order: 99;
  }
}
.input:checked + .label + .panel {
  display: block;
}
/* #endregion */
.theme-list__controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0px;
}
.theme-list-controls__group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.theme-list__table {
  overflow: auto;
}
.catalog__controls {
  display: flex;
  gap: 20px;
  padding: 20px 0;
}
.rounded-container {
  border-radius: 20px;
  box-shadow: 0px 0px 14px 7px rgba(102, 89, 188, 0.04),
    0px 0px 9px -5px rgba(102, 89, 188, 0.6);
  padding: 20px;
}
.flex-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
