body {
  font-weight: 500;
  font-style: normal;
  font-size: 17px;
  color: rgba(250, 252, 255, 0.85);
  margin: 0px;
  background: rgb(23, 31, 38);
  min-width: 1040px;

  font-family: Inter, Roboto, Helvetica, sans-serif;
  position: relative;
}

@media (min-width: 769px) {
    @keyframes fadeIn {
        to {
            opacity: 1;
        }
    }

    body::before {
        width: 100%;
        height: 100%;

        content: '';

        position: absolute;

        left: 0;
        top: 0;

        background: url(/ssr-static/images/top/light.svg) no-repeat top center/contain, rgb(23, 31, 38);
        z-index: -1;

        opacity: 0;
        animation: fadeIn 500ms ease-in-out forwards;
    }
}

@media (max-width: 768px) {
  body {
    min-width: auto;
  }
}

main {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;

  padding: 24px 40px 0;
}

.header-container {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

.back-button {
  position: relative;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  line-height: 1.214em;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  color: rgb(0, 141, 242);
  background-color: transparent;
  border: 1px solid rgb(49, 60, 71);
  padding: 12px 24px;
  width: auto;
  cursor: pointer;
  border-radius: 10px;
  text-decoration-style: solid;
  text-decoration-color: currentcolor;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-color 0.15s ease-in-out, color 0.15s;

  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;

  height: 50px;
  color: rgba(250, 252, 255, 0.85);
}

.back-button:not(:disabled):hover {
  box-shadow: rgba(0, 56, 110, 0.08) 0px 0px 15px 5px;
  background-color: rgba(40, 56, 71, 0.7);
  color: rgb(0, 135, 232);
}

.back-button-arrow {
  width: 20px;
  height: 20px;
  mask: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTguNDIzIDUuNDYzYS44NzUuODc1IDAgMDAwLTEuMjEyLjgxNy44MTcgMCAwMC0xLjE3OSAwbC01IDUuMTQzYS44NzUuODc1IDAgMDAwIDEuMjEybDUgNS4xNDNhLjgxNy44MTcgMCAwMDEuMTc5IDAgLjg3NS44NzUgMCAwMDAtMS4yMTJsLTMuNTc4LTMuNjhoMTEuMzIyYy40NiAwIC44MzMtLjM4NC44MzMtLjg1N2EuODQ1Ljg0NSAwIDAwLS44MzMtLjg1N0g0Ljg0NWwzLjU3OC0zLjY4eiIgZmlsbD0iIzAzMDYxQSIvPjwvc3ZnPg==") 0% 0% / contain no-repeat;
  mask-composite: add;
  mask-mode: match-source;
  -webkit-mask-source-type: auto;
  mask-size: contain;
  -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTguNDIzIDUuNDYzYS44NzUuODc1IDAgMDAwLTEuMjEyLjgxNy44MTcgMCAwMC0xLjE3OSAwbC01IDUuMTQzYS44NzUuODc1IDAgMDAwIDEuMjEybDUgNS4xNDNhLjgxNy44MTcgMCAwMDEuMTc5IDAgLjg3NS44NzUgMCAwMDAtMS4yMTJsLTMuNTc4LTMuNjhoMTEuMzIyYy40NiAwIC44MzMtLjM4NC44MzMtLjg1N2EuODQ1Ljg0NSAwIDAwLS44MzMtLjg1N0g0Ljg0NWwzLjU3OC0zLjY4eiIgZmlsbD0iIzAzMDYxQSIvPjwvc3ZnPg==") 0% 0% / contain no-repeat;
  background-color: rgba(250, 252, 255, 0.85);
  margin-right: 6px;
}

.head-container {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  position: relative;
  margin-top: 27px;
}

.head-container img {
  width: 50px;
  height: 50px;
  margin-bottom: 21px;
}

.head-container .main-text {
  text-align: center;
}

.big-text {
  font-family: Inter, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;

  color: rgba(250, 252, 255, 0.85);
  white-space: pre-wrap;
}

.title-text {
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 650;
  line-height: 24px;

  color: rgba(250, 252, 255, 0.85);
  white-space: pre-wrap;
}

.main-text {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;

  white-space: pre-wrap;
  color: rgba(250, 252, 255, 0.85);
  margin: 0;
}

.bold {
  font-weight: 600 !important;
}

.header-container .main-text {
  text-align: center;
}

.tabs-container {
  border-radius: 16px;
  background: rgb(32, 43, 54);
  border: 1px solid rgba(49, 60, 71, 0.5);
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 4px;

  justify-content: center;
  width: fit-content;
  margin: 48px auto 0;
}

.tab-container {
  padding: 12px 18px;
  border-radius: 16px;
  flex: 1 1 0%;
  text-align: center;
  outline: transparent solid 1px;
  transition: 250ms ease-in-out;
}

.tab-container.active {
  outline: rgb(49, 60, 71) solid 1px;
  background: rgb(40, 56, 71);
  box-shadow: rgba(13, 22, 31, 0.4) 0px 1px 2px 0px;
}

.tab-container:not(.active) {
    color: rgb(131, 139, 143);
}

.small-button {
  position: relative;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  line-height: 1.214em;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  color: rgb(0, 141, 242);
  border: 0px;
  width: auto;
  cursor: pointer;
  border-radius: 10px;
  text-decoration-style: solid;
  text-decoration-color: currentcolor;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-color 0.15s ease-in-out, color 0.15s;

  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;

  padding: 2px 12px;
  height: 28px;
  background: rgb(40, 56, 71) !important;
}

.small-button:not(:disabled):hover {
  box-shadow: rgba(0, 56, 110, 0.08) 0 0 15px 5px;
  background-color: rgba(40, 56, 71, 0.7);
  color: rgb(0, 135, 232);
}

.small-bubbles-container {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 8px;
}

@media (min-width: 769px) {
  .small-bubbles-container {
    min-width: 100px;
    -webkit-box-pack: end;
    justify-content: flex-end;
  }
}

.small-bubble-container {
  white-space: pre-wrap;
  margin: 0;
  padding: 2px 8px;
  color: rgba(250, 252, 255, 0.85);
  cursor: pointer;
  border-radius: 1000px;
  font-size: 14px !important;
  line-height: 14px !important;

  background: rgb(40, 56, 71);

  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 500;

  display: flex;
  align-content: center;

}

.small-bubble-container img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.internal-page-header {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    margin-bottom: 24px;
    z-index: 10;
    background: var(--surface-background);
}

.internal-page-header .main-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
}
.internal-page-header .back-arrow {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    mask: url("/ssr-static/icons/back.svg") no-repeat;
    mask-size: contain;
    -webkit-mask: url("/ssr-static/icons/back.svg") no-repeat;
    -webkit-mask-size: contain;
    background: rgba(250, 252, 255, 0.85);
}

@media (min-width: 769px) {
    .desktop-hidden {
        display: none !important;
    }
}

@media(max-width: 768px) {
    main {
        padding: 0;
    }

    .header-container {
        display: none;
    }

    .tabs-container {
        width: 100%;
    }

    .mobile-tabs-wrapper, .head-container {
        padding: 0 15px;
    }

    .tab-container {
        flex: 1 1 0;
    }
}
