@charset "utf-8";
@import url("../fonts/Montserrat/font.cb6b773adc77.css");
@import url("../fonts/Inter/font.b95774c904f4.css");

html {
  overflow: auto;
}

body {
  padding: 0;
  margin: 0;
  background: var(--cpanel-color-bg-light);
  font-family: "Inter";
  font-weight: 600;
  --top-menu-position: 64px;
  overflow-x: clip;
}

body * {
  box-sizing: border-box;
  position: relative;
  font-family: "Inter";
}

:root {
  --cpanel-color-accent-light: 16, 46, 104;
  --cpanel-color-accent-dark: 9, 27, 61;
  --cpanel-color-active-element: 59, 130, 247;
  --cpanel-color-attractive: 255, 204, 0;
  --cpanel-color-text-light: 46, 44, 44;
  --cpanel-color-text-dark: 250, 250, 250;
  --cpanel-color-text-transparency: 0.7;
  --cpanel-color-bg-light: 245, 245, 245;
  --cpanel-color-bg-dark: 22, 22, 23;
  --cpanel-color-bg-black: 0, 0, 0;
  --cpanel-color-bg-white: 255, 255, 255;
  --cpanel-color-destruction: 254, 83, 53;
  --cpanel-color-bg-transparency: 0.7;
  --cpanel-spacing-level-1: 64px;
  --cpanel-spacing-level-2: 40px;
  --cpanel-spacing-level-3: 32px;
  --cpanel-spacing-level-4: 16px;
  --cpanel-spacing-level-5: 5px;
  --cpanel-body-container-width: 1200px;
  --cpanel-text-size-header-large: 40px;
  --cpanel-text-size-header-medium: 32px;
  --cpanel-text-size-header-small: 20px;
  --cpanel-text-size-text-large: 18px;
  --cpanel-text-size-text-medium: 16px;
  --cpanel-text-size-text-small: 14px;
}

*:active,
*:focus {
  outline: none;
}

*::-moz-focus-inner {
  border: 0;
}

* {
  -webkit-tap-highlight-color: transparent;
  appearance: none;
}

a {
  color: inherit;
}

.cpanel-section {
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  padding: var(--cpanel-spacing-level-1);
  background: rgb(var(--cpanel-color-bg-light));
  --text-color: var(--cpanel-color-text-light);
  color: rgb(var(--text-color));
  position: relative;
  overflow: hidden;
  z-index: 1;
  max-width: 100% !important;
}

.cpanel-section > .content,
.cpanel-section > .container > .content {
  display: flex !important;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: var(--cpanel-spacing-level-4);
  z-index: 2;
  max-width: var(--cpanel-body-container-width);
  width: 100%;
}

@media (max-width: 950px) {
  :root {
    --cpanel-spacing-level-1: 40px;
    --cpanel-spacing-level-2: 36px;
    --cpanel-spacing-level-3: 32px;
    --cpanel-spacing-level-4: 16px;
    --cpanel-spacing-level-5: 5px;
    --cpanel-text-size-header-large: 28px;
    --cpanel-text-size-header-medium: 24px;
    --cpanel-text-size-header-small: 20px;
    --cpanel-text-size-text-large: 18px;
    --cpanel-text-size-text-medium: 16px;
    --cpanel-text-size-text-small: 14px;
  }

  .cpanel-section {
    padding: var(--cpanel-spacing-level-1) var(--cpanel-spacing-level-3);
  }
}

.cpanel-section.cp-list {
  flex-direction: column;
  align-items: stretch;
  padding-top: -webkit-calc(
    var(--top-menu-position) + var(--cpanel-spacing-level-1)
  );
  padding-top: -moz-calc(
    var(--top-menu-position) + var(--cpanel-spacing-level-1)
  );
  padding-top: calc(var(--top-menu-position) + var(--cpanel-spacing-level-1));
  min-height: calc(var(--vh, 1vh) * 100) !important;
  max-height: calc(var(--vh, 1vh) * 100) !important;
  justify-content: flex-start;
  overflow: auto;
  margin-top: -webkit-calc(0px - -webkit-calc(var(--top-menu-position)));
  margin-top: -moz-calc(0px - -moz-calc(var(--top-menu-position)));
  margin-top: calc(0px - calc(var(--top-menu-position)));
}

.cpanel-section.cp-list > .content {
  background: rgb(var(--cpanel-color-bg-white));
  font-weight: 400;
  gap: var(--cpanel-spacing-level-3);
  padding: var(--cpanel-spacing-level-3) var(--cpanel-spacing-level-1);
  width: var(--cpanel-body-container-width);
  max-width: 100%;
}

.cpanel-section.cp-list::after {
  content: "";
  display: block;
  background: rgb(var(--cpanel-color-bg-light));
  width: 100%;
  height: var(--cpanel-spacing-level-1);
  z-index: 100;
  position: fixed;
  top: var(--top-menu-position);
  left: 0;
}

.db-objects > .table td > div > input[type="text"] {
  all: unset;
  width: 100%;
  max-width: 100%;
  height: auto;
  cursor: pointer;
  text-overflow: ellipsis;
}

.db-objects
  > .table
  td
  > div
  > input[type="text"].error::-webkit-input-placeholder {
  color: rgb(var(--cpanel-color-destruction));
}

.db-objects > .table td > div > input[type="text"].error:-moz-placeholder {
  color: rgb(var(--cpanel-color-destruction));
}

.db-objects > .table td > div > input[type="text"].error::-moz-placeholder {
  color: rgb(var(--cpanel-color-destruction));
}

.db-objects > .table td > div > input[type="text"].error:-ms-input-placeholder {
  color: rgb(var(--cpanel-color-destruction));
}

.db-objects
  > .table
  td
  > div
  > input[type="text"].error::-ms-input-placeholder {
  color: rgb(var(--cpanel-color-destruction));
}

.db-objects > .table td > div > input[type="text"].error,
.db-objects > .table td > div > input[type="text"].error::placeholder {
  color: rgb(var(--cpanel-color-destruction));
}

.db-objects > .table td > div > input[type="text"]:focus {
  cursor: text;
  border: 2px solid rgb(var(--cpanel-color-active-element));
  padding: var(--cpanel-spacing-level-5) calc(var(--cpanel-spacing-level-5) * 2);
  margin: calc(0px - var(--cpanel-spacing-level-5) - 2px)
    calc(0px - var(--cpanel-spacing-level-5) * 2 - 2px);
  background: rgb(var(--cpanel-color-bg-white));
  border-radius: 4px;
}

.db-objects td.input-container > .title {
  font-size: var(--cpanel-text-size-text-medium);
  color: rgb(var(--cpanel-color-text-light));
}

.db-objects td.input-container > .description {
  font-size: var(--cpanel-text-size-text-small);
  color: rgb(
    var(--cpanel-color-text-light),
    var(--cpanel-color-text-transparency)
  );
}

.db-objects > .table td > div.focused-input {
  z-index: 10;
}

.db-objects {
  width: 100%;
  background: rgb(var(--cpanel-color-bg-white));
  padding: var(--cpanel-spacing-level-4) var(--cpanel-spacing-level-3);
  border-radius: 0 0 20px 20px;
  max-width: var(--cpanel-body-container-width);
  margin: 0 auto;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: var(--cpanel-spacing-level-4);
}

.db-objects > .content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  font-size: var(--cpanel-text-size-header-small);
  font-weight: 700;
  padding: var(--cpanel-spacing-level-5);
  gap: var(--cpanel-spacing-level-3);
}

.db-objects > .content > .title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.db-objects > .table {
  width: 100%;
  display: block;
  overflow: auto;
  border-collapse: collapse;
}

body.before-zoomed-in .db-objects > .table,
body.before-zoomed-out .db-objects > .table {
  overflow: visible;
}

.db-objects > .table td.title {
  font-weight: 700;
  font-size: var(--cpanel-text-size-text-small);
  color: rgb(var(--text-color), var(--cpanel-color-text-transparency));
  padding: var(--cpanel-spacing-level-5) !important;
  white-space: nowrap;
}

.db-objects > .table tr:not(:first-child) > td::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  right: 0;
  height: 1px;
  background: rgb(var(--text-color), 0.1);
  transition: all 0.15s;
}

.db-objects > .table tr:not(:first-child).hide > td::after {
  opacity: 0;
}

.db-objects > .table td {
  --cpanel-image-thumbnail-height: 58px;
  --cpanel-td-inner-height: calc(
    var(--cpanel-spacing-level-4) * 2 + var(--cpanel-image-thumbnail-height)
  );
  padding: 0;
}

.db-objects.with-thumbnails > .table td {
  --cpanel-image-thumbnail-height: 72px;
}

.db-objects > .table tr > td > div,
.db-objects > .table tr > td > a {
  margin: var(--cpanel-spacing-level-4) var(--cpanel-spacing-level-5);
  max-height: var(--cpanel-td-inner-height);
  transition: all 0.3s ease, opacity 0.15s ease;
  overflow: hidden;
  white-space: nowrap;
  width: auto;
  max-width: calc(var(--cpanel-body-container-width) / 2);
}

.db-objects > .table tr > td > a {
  text-overflow: ellipsis;
  display: block;
}

.db-objects > .table tr.hide > td > div,
.db-objects > .table tr.hide > td > a {
  opacity: 0;
  max-height: 0;
  min-height: 0;
  margin-bottom: 0;
  margin-top: -1px;
}

.db-objects > .table td.full-width {
  width: 100%;
}

.db-objects > .table td > a,
.db-objects > .table td > a:hover {
  text-decoration: none;
}

.db-objects > .table tr:hover td > a {
  text-decoration: underline;
}

.db-objects > .table td.buttons > div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: var(--cpanel-spacing-level-5);
  padding-right: var(--cpanel-spacing-level-4);
}

.db-objects > .table td.buttons > div > .button {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  padding: var(--cpanel-spacing-level-5);
  border-radius: 8px;
  outline: none !important;
  pointer-events: all !important;
}

.db-objects > .table td.buttons > div > .button > svg {
  height: 16px;
  width: 16px;
}

.db-objects > .table td > * {
  font-size: var(--cpanel-text-size-text-medium);
  font-weight: 400;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.db-objects > .table td.input-container > div {
  margin: var(--cpanel-spacing-level-4);
  overflow: visible;
}

.db-objects > .table td.input-container > .description {
  margin-top: calc(0px - var(--cpanel-spacing-level-4));
}

.db-objects > .table td.thumbnail > div {
  max-height: var(--cpanel-image-thumbnail-height);
  height: var(--cpanel-image-thumbnail-height);
  min-height: var(--cpanel-image-thumbnail-height);
  width: auto;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.db-objects > .table td.thumbnail > div > img {
  max-height: var(--cpanel-image-thumbnail-height);
  height: var(--cpanel-image-thumbnail-height);
  min-height: var(--cpanel-image-thumbnail-height);
  width: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  -webkit-user-drag: none;
}

.db-objects > .table td.thumbnail > div > .background {
  display: flex !important;
  position: absolute;
  top: 0;
  left: 0;
  max-height: var(--cpanel-image-thumbnail-height);
  height: var(--cpanel-image-thumbnail-height);
  min-height: var(--cpanel-image-thumbnail-height);
  width: auto;
  aspect-ratio: 16 / 9;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
}

.db-objects > .table td.thumbnail > div > .background > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform: scale(1.5);
  filter: blur(30px);
}

.cp-top-bar {
  flex-shrink: 0;
  flex-grow: 0;
  width: 100%;
  padding: var(--cpanel-spacing-level-5);
  margin: 0 auto;
  height: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  background: rgb(var(--cpanel-color-bg-white));
  z-index: 20;
  align-items: center;
  justify-content: space-between;
  overflow-x: auto;
  overflow-y: hidden;
  border-bottom: 1px solid rgb(var(--text-color), 0.1);
  max-width: var(--cpanel-body-container-width);
  border-radius: 20px 20px 0 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  box-shadow: 0 -1000px 0 1000px rgb(var(--cpanel-color-bg-light));
}

.cp-top-bar > span {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: var(--cpanel-spacing-level-4);
  align-items: center;
  justify-content: space-between;
}

.cp-top-bar > span > span {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: var(--cpanel-spacing-level-5);
  flex-grow: 1;
}

.cp-top-bar > span > span > [class*="button-"] {
  border-radius: 15px;
}

.cp-top-bar > span > span > a {
  flex-shrink: 1;
}

.cp-top-bar > span > span:first-child {
  justify-content: flex-start;
}

.cp-top-bar > span > span:last-child:not(:first-child) {
  justify-content: flex-end;
}

@media (max-width: 950px) {
  .cpanel-section.cp-list {
    padding: calc(var(--top-menu-position) + var(--cpanel-spacing-level-1)) 0
      var(--cpanel-spacing-level-1) 0;
  }
}
