/* new css  */
.notOauthAdd {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  margin: auto;
  margin-bottom: 100px;
}
.notOauthAdd > h2 {
  width: 100%;
  text-align: center;
  margin: 150px 0 50px;
}
.notOauthAdd > .header {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 100px;
}
.notOauthAdd > .header > .col {
  display: flex;
  flex-direction: column;
  width: calc(100% / 2 - 50px);
}
.notOauthAdd > .header > .col:nth-child(1) {
  gap: 20px;
}
.notOauthAdd > .header > .col:nth-child(1) > h2 {
  font-size: 32px;
  line-height: 1.5;
}
.header > .col:nth-child(1) > button {
  height: 35px;
}
.notOauthAdd > .header > .col:nth-child(2) {
  padding: 30px;
  height: 250px;
  background: #075760;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.notOauthAdd > .header > .col:nth-child(2) > img {
  content: "";
  display: block;
  background-repeat: no-repeat;
  position: absolute;
  right: 15px;
  bottom: 0px;
}
.notOauthAdd > .header > .col:nth-child(2) > .logo {
  z-index: 1;
}

.notOauthAdd > .header > .col:nth-child(2) > .logo {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
  white-space: nowrap;
}
.notOauthAdd > .header > .col:nth-child(2) > .logo > .info {
  writing-mode: vertical-lr;
  font-size: 13px;
  color: var(--color);
  margin-bottom: -1px;
  margin-left: 5px;
  transform: rotateZ(180deg);
}
.notOauthAdd > .header > .col:nth-child(2) > span {
  font-size: 16px;
  z-index: 1;
}
.notOauthAdd > .header > .col:nth-child(2) > .stat {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  z-index: 1;
}
.notOauthAdd > .header > .col:nth-child(2) > .stat > p {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
}
.notOauthAdd > .header > .col:nth-child(2) > .stat > p:nth-child(3) {
  margin-top: 15px;
}

.notOauthAdd > .start {
  display: flex;
  gap: 20px;
  position: relative;
  margin-bottom: 150px;
  overflow: hidden;
}

.notOauthAdd > .start::after {
  content: url(https://cdn.discordserver.info/img/dotted-line.svg);
  position: absolute;
  top: 37px;
  right: 0;
  z-index: 1;
}
.notOauthAdd > .start > .col {
  display: flex;
  flex-direction: column;
  width: calc(100% / 4);
}
.notOauthAdd > .start > .top {
  display: flex;
  flex-direction: column;
}
.notOauthAdd > .start > .col > .top > span {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
}
.notOauthAdd > .start > .col > .top > span::after {
  content: "";
  height: 16px;
  width: 16px;
  background-color: var(--color);
  border-radius: 50%;
  display: block;
  margin: 20px 0;
  z-index: 2;
}
.notOauthAdd > .start > .col > .info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.notOauthAdd > .start > .col > .info > label {
  width: 150px;
}
.notOauthAdd > .start > .col > .info > button {
  max-width: 260px;
}

.notOauthAdd > .app {
  display: flex;
  padding: 30px;
  background: #075760;
  border-radius: var(--radius-lg);
  position: relative;
}
.notOauthAdd > .app > .col {
  display: flex;
  flex-direction: column;
}

.notOauthAdd > .app > .col:nth-child(1) {
  width: calc(100% / 2 - 70px);
}
.notOauthAdd > .app > .col:nth-child(2) {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 140px;
}
.notOauthAdd > .app > .col > span {
  font-size: var(--font-size-h6);
}
.notOauthAdd > .app > .col > .info > h5 {
  font-size: 40px;
  margin-bottom: 10px;
}
.notOauthAdd > .app > .col > .info > p {
  white-space: break-spaces;
}
.notOauthAdd > .app > .col > .info > span {
  font-size: var(--font-size-h3);
}
.notOauthAdd > .app > .col > .button {
  display: flex;
  margin-top: 18px;
  gap: 15px;
}
.notOauthAdd > .app > .col > .qr {
  margin-top: 14px;
}
.notOauthAdd > .app > .col > .qr > img {
  border-radius: var(--radius-base);
}
.notOauthAdd > .app > img {
  position: absolute;
  right: 15px;
  bottom: 0px;
}

@media screen and (max-width: 1000px) {
  .notOauthAdd > .header {
    flex-direction: column;
    gap: 40px;
  }
  .notOauthAdd > .header > .col {
    width: 100%;
    margin: auto;
    max-width: 650px;
  }

  .notOauthAdd > .start {
    flex-wrap: wrap;
    width: 100%;
    margin: auto auto 150px auto;
    max-width: 650px;
    gap: 40px;
  }
  .notOauthAdd > .start::after {
    display: none;
  }
  .notOauthAdd > .start > .col {
    flex-direction: initial;
    width: calc(100% / 2 - 20px);
    gap: 20px;
  }
  .notOauthAdd > .start > .col > .top > span::after {
    margin: 10px 0 0;
  }
  .notOauthAdd > .start > .col > .top {
    text-align: center;
  }
  .notOauthAdd > .start > .col > .top > span {
    font-size: var(--font-size-1xl);
  }
  .notOauthAdd > .start > .col > .info > h5 {
    font-size: var(--font-size-1xl);
  }
  .notOauthAdd > .start > .col > .info {
    gap: 10px;
  }
}
@media screen and (max-width: 780px) {
  .notOauthAdd > .app {
    flex-direction: column;
    gap: 25px;
  }
  .notOauthAdd > .app > .col:nth-child(1) {
    width: 100%;
  }
  .notOauthAdd > .app > .col:nth-child(2) {
    align-items: baseline;
  }
}
@media screen and (max-width: 550px) {
  .notOauthAdd > .header > .col:nth-child(1) > h2 {
    font-size: 26px;
    line-height: 1.3;
  }
  .notOauthAdd > .start > .col {
    width: 100%;
    max-width: 300px;
    margin: auto;
  }
}
@media screen and (max-width: 450px) {
  .notOauthAdd > .app {
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }
  .notOauthAdd > .app > .col:nth-child(2) {
    align-items: center;
  }
  .notOauthAdd > .app > img {
    position: relative;
    right: 0;
    margin-bottom: -30px;
    margin-top: -70px;
  }
  .notOauthAdd > .app > .col {
    text-align: center;
    align-items: center;
  }
  .notOauthAdd > .header > .col:nth-child(2) > img {
    right: -30px;
    z-index: 0;
  }
  .notOauthAdd > .header > .col:nth-child(2) > .logo {
    font-size: 9vw;
  }
  .notOauthAdd > .header > .col:nth-child(2) > .logo > .info {
    font-size: 3vw;
  }
}

/* notOauth */
form > .info > div > .link {
  flex-direction: row !important;
  gap: 0 !important;
  flex-wrap: nowrap;
}

form > .info > .lang > .col:nth-child(2) > select {
  opacity: 0;
}
form > .info > .background > .col:nth-child(2) > .image {
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  border-radius: var(--radius-base);
  max-width: 480px;
  width: 100%;
  height: 125px;
  overflow: hidden;
}

form > .info > div > .link > input {
  width: 100%;
  border-radius: 0 var(--radius-base) var(--radius-base) 0;
  height: 37px;
}

form > .info > div > .link > span {
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
  background-color: var(--dark-grey);
  border-radius: var(--radius-base) 0 0 var(--radius-base);
  font-size: var(--font-size-sm);
  padding: 0 10px;
  width: fit-content;
  height: 37px;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}
form > .info > div > .link > .value {
  position: absolute;
  top: 45px;
}
form > .info > div > .link > .value > a {
  color: var(--third-text);
}
form > .info > div > .link > .value > a:hover {
  color: var(--color);
}
form > .info > .description > .tooltip-castom {
  height: fit-content;
}
.tippy-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
form > .info > .description > .col:nth-child(2) > #form_description {
  min-height: 200px;
}
form > .info > .tags > .col:nth-child(2) > #form_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  user-select: none;
}
form > .info > .tags > .col:nth-child(2) > #form_tags > input[type="checkbox"] {
  display: none;
}

form > .info > .tags > .col:nth-child(2) > #form_tags > input[type="checkbox"] + label {
  display: inline-block;
  padding: 7px 15px;
  border-radius: var(--radius-base);
  cursor: pointer;
}

form > .info > .tags > .col:nth-child(2) > #form_tags > input[type="checkbox"]:hover + label {
  background-color: var(--dark-white-mixed);
}
form > .info > .tags > .col:nth-child(2) > #form_tags > input[type="checkbox"]:checked + label {
  background-color: var(--color);
  color: var(--text);
}
main > form > .socials {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 0;
  row-gap: 15px;
  column-gap: 30px;
}

main > form > .socials > div {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% / 5 - 25px);
  align-self: baseline;
  align-items: center;
  -webkit-align-items: center;
}
main > form > .socials > .info {
  flex-direction: column;
  align-items: baseline;
  -webkit-align-items: baseline;
  width: 100%;
  max-width: 100%;
  gap: 10px;
  padding-bottom: 20px;
}
main > form > .socials > .info > p {
  color: var(--third-text);
}
main > form > .socials > div > label {
  width: 70px;
}
main > form > .socials > div > input {
  width: calc(100% - 70px);
}
@media screen and (max-width: 1200px) {
  main > form > .socials > div {
    width: calc(100% / 3 - 25px);
  }
}
@media screen and (max-width: 800px) {
  main > form > .socials > div {
    width: calc(100% / 2 - 25px);
  }
}
@media screen and (max-width: 700px) {
  form > .info > div > .link {
    flex-direction: row;
  }
  .labels {
    max-width: 100% !important;
    width: 100%;
  }
  input[type="range"] {
    width: 100%;
    max-width: 100% !important;
  }
  form > .info > .background {
    padding-top: 30px;
  }
}

@media screen and (max-width: 500px) {
  main > form > .socials > div {
    width: 100%;
  }
}

label[for="form_background"]:after,
label[for="form_url"]:after,
main > form > .socials > .info > h2:after {
  color: var(--third-text);
  font-size: var(--font-size-sm);
  text-transform: none;
}
/* Нет серверов */
.not-server {
  display: flex;
  margin: 150px auto auto;
  flex-direction: column;
  gap: 40px;
}
.not-server::before {
  content: "";
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  transform: scale(-1, 1);
  bottom: 0;
  right: 0;
  z-index: 0;
  background-image: url(https://cdn.discordserver.info/img/cats/4.webp);
  width: 100%;
  height: 100%;
  max-width: 300px;
  max-height: 300px;
  overflow: hidden;
}
.not-server > .buttons > a:first-child {
  position: relative;
}
.not-server > .buttons > a:first-child::before {
  content: url(../img/icons/arrow-add.svg);
  position: absolute;
  top: 30px;
  right: 140px;
}
.not-server > .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 700px) {
  .not-server::before {
    display: none;
  }
}
.labels {
  display: flex;
  justify-content: space-between;
  max-width: 400px;
  pointer-events: none;
}

input[type="range"] {
  -webkit-appearance: none;
  padding: 0;
  max-width: 400px;
  height: 10px;
  outline: none;
  margin: 5px 0;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
}

input[type="range"]:focus {
  outline: none;
}

input[type="range"]::-moz-focus-outer {
  border: 0;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--thumb-color);
  cursor: pointer;
  border-radius: var(--radius-circle);
  margin-top: -8px;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

input[type="range"]:hover::-webkit-slider-thumb,
input[type="range"]:focus::-webkit-slider-thumb {
  transform: scale(1.1);
}

input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;

  width: 14px;
  height: 14px;
  background: var(--thumb-color);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

input[type="range"]:hover::-moz-range-thumb,
input[type="range"]:focus::-moz-range-thumb {
  transform: scale(1.2);
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: none;
  border-radius: var(--radius-sm);
}

input[type="range"]::-moz-range-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: none;
  border-radius: var(--radius-sm);
}

input[type="range"]:focus::-webkit-slider-runnable-track {
  background: none;
}

input[type="range"]:active::-webkit-slider-runnable-track {
  background: none;
}
button:disabled {
  background-color: var(--dark-white-mixed) !important;
  cursor: default !important;
}
