.checkbox {
  width: 100%;
  position: relative;
}
.checkbox._form-error .checkbox__label:before {
  border: 1px solid #ff0060;
}
.checkbox._form-error .checkbox__label {
  color: #ff0060;
}
.checkbox._form-error .checkbox__label a {
  color: #ff0060;
}
.checkbox:not(:last-child) {
  margin-bottom: 5px;
}
.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
.checkbox__input:checked + .checkbox__label:before {
  background-image: url('../img/icons/check.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.checkbox__label {
  cursor: pointer;
  display: inline-flex;
  position: relative;
  gap: 10px;
  color: #fff;
  font-family: Urbanist;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
}
.checkbox__label a {
  color: #fff;
  font-family: Urbanist;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.checkbox__label:before {
  content: '';
  align-self: flex-start;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border: 1px solid #52525b;
  background-color: #3f3f46;
  border-radius: 4px;
}
.checkbox__text {
  align-self: center;
}
input[type='text'], input[type='email'], input[type='tel'], textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.input {
  border-radius: 4px;
  border: 1px solid #52525b;
  background: #3f3f46;
  width: 100%;
  display: block;
  padding: 12px;
  font-family: Urbanist;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
  color: #fff;
  transition: border-color 0.3s;
}
.input._form-focus {
  border: 1px solid #a1a1aa;
}
.input._form-error {
  border: 1px solid #ff0060;
  color: #ff0060;
}
.input._form-error::placeholder {
  color: #ff0060;
}
.input:focus {
  outline: none !important;
}
.input::placeholder {
  color: #71717a;
}
.input[placeholder]:not([data-placeholder-nohiden])::placeholder {
  transition: opacity 0.3s;
}
.input[placeholder]:not([data-placeholder-nohiden]):focus::placeholder {
  opacity: 0;
}
textarea.input {
  resize: none;
  padding: 0px 0px;
}
.options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.options__item {
  position: relative;
  cursor: pointer;
}
.options__item:not(:last-child) {
  margin-bottom: em(5);
}
.options__input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.options__input:focus-visible + .options__label:before {
  box-shadow: 0 0 5px #000;
}
.options__input:checked + .options__label:after {
  transform: scale(1);
}
.options__label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
}
.options__label:before {
  content: '';
  align-self: flex-start;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  border: 1px solid #a7a9ac;
}
.options__label:after {
  content: '';
  transition: all 0.3s ease 0s;
  transform: scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #77243a;
  position: absolute;
  left: 5px;
  top: 5px;
}
.register__wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.register__intro {
  color: #a1a1aa;
  font-size: 15px;
  line-height: 1.65;
  margin: -8px 0 32px;
  max-width: 720px;
}
.register__title {
  color: #fff;
  text-shadow: 0 0 8px rgba(5, 188, 138, 0.5);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 255, 185, 0.5);
  font-family: Anton;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px;
  /* 116.667% */
  width: 100%;
  text-align: center;
}
.register__subtitle {
  color: #fff;
  text-shadow: 0 0 8px rgba(5, 188, 138, 0.5);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 255, 185, 0.5);
  font-family: Anton;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  /* 133.333% */
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}
.register__subtitle::after {
  content: '';
  flex-grow: 1;
  height: 2px;
  flex-shrink: 0;
  background: #27272a;
}
.register__form {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.register__block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.register__inputs {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.register__label {
  color: #fff;
  font-family: Urbanist;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* 142.857% */
}
.register__info {
  color: #e4e4e7;
  font-family: Urbanist;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* 142.857% */
}
.register__info a {
  color: #00ffb9;
  font-family: Urbanist;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 10%;
  text-underline-offset: 10%;
  text-underline-position: from-font;
}
.register__drop .preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.register__drop .preview__item {
  position: relative;
  aspect-ratio: 2;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #3f3f46;
}
.register__drop .preview__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.register__drop .preview__item::after {
  content: '';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background-image: url('../img/icons/trash.svg');
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 100000px;
  background-color: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition: opacity 0.2s ease;
  z-index: 2;
}
.register__drop .drop-zone {
  min-height: 250px;
  padding: 32px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  border-radius: 4px;
  border: 1px dashed #52525b;
  background: #1f1f22;
  transition: all 0.3s ease;
}
.register__drop .drop-zone__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.register__drop .drop-zone__over {
  border-color: #00f2a9;
  background-color: #252528;
  box-shadow: 0 0 15px rgba(0, 242, 169, 0.1);
}
.register__drop .drop-zone__icon {
  background-image: url(../img/icons/add-image\ 1.svg);
  width: 32px;
  height: 32px;
}
.register__drop .drop-zone__title {
  color: #fff;
  font-family: Urbanist;
  margin-top: 16px;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  /* 155.556% */
}
.register__drop .drop-zone__info {
  color: #a1a1aa;
  font-family: Urbanist;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 150% */
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.register__input {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.register__input .textarea {
  padding: 12px;
  min-height: 200px;
  scrollbar-width: thin;
  scrollbar-color: #d1d1d1 transparent;
}
.register__input .textarea::placeholder {
  margin-bottom: auto;
}
.register__input .textarea::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.register__input .textarea::-webkit-scrollbar-track {
  background: transparent;
}
.register__input .textarea::-webkit-scrollbar-thumb {
  background-color: #d1d1d1;
  border-radius: 10px;
  border: 1px solid transparent;
}
.register__input .textarea::-webkit-scrollbar-thumb:hover {
  background-color: #a8a8a8;
}
.register__input-number {
  display: flex;
  gap: 4px;
  justify-content: flex-start;
}
.register__input-number .btn-step {
  aspect-ratio: 1;
  height: 100%;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid rgba(0, 255, 185, 0.5);
  background: rgba(0, 255, 185, 0.01);
  box-shadow: 0 0 15px 0 rgba(5, 188, 138, 0.5);
  background-position: center;
  background-size: 24px;
  background-repeat: no-repeat;
}
.register__input-number .btn-step#decrement {
  background-image: url('../img/icons/minus.svg');
}
.register__input-number .btn-step#increment {
  background-image: url('../img/icons/plus-neon.svg');
}
.register__input-number .input {
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.register__input-number .input::-webkit-outer-spin-button, .register__input-number .input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.register__input .select__title {
  border-radius: 4px;
  border: 1px solid #52525b;
  background: #3f3f46;
  width: 100%;
  padding: 12px;
}
@media (any-hover: hover) {
  .register__input .select__option:hover {
    background: #d9d9d9;
  }
}
.register__input .select._form-error .select__title {
  border: 1px solid #ff0060;
}
.register__input .select._form-error .select__content {
  color: #ff0060;
}
.register__input .select__value {
  padding: 0;
  margin: 0;
  height: auto;
  gap: 0;
}
.register__input .select__value::after {
  background-image: url('../img/icons/chevron-down.svg');
  width: 20px;
  height: 20px;
  background-size: contain;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  align-self: center;
  flex: 0 0 20px;
}
.register__input .select__scroll {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.register__input .select__scroll::-webkit-scrollbar {
  display: none;
}
.register__input .select__content {
  font-family: Urbanist;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
  color: #fff;
}
.register__input .select__options {
  padding: 0;
  border-radius: 4px;
  border: 1px solid #52525b;
  background: #3f3f46;
  max-width: 100%;
  width: 100%;
  margin-top: 4px;
}
.register__input .select__option {
  color: #e4e4e7;
  cursor: pointer;
  padding: 12px;
  font-family: Urbanist;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
}
.register__input .select__option:not(:last-child) {
  border-bottom: 1px solid #52525b;
}
.register__input .select__option._select-selected {
  color: #fff;
  background: transparent;
}
@media (any-hover: hover) {
  .register__input .select__option:hover {
    background: #52525b;
  }
}
.register__input .select._select-multiple .select__title {
  padding-block: 10px;
}
.register__input .select._select-multiple .select__content {
  display: flex;
  gap: 4px;
  align-items: center;
}
.register__input .select._select-multiple .select__content ._select-tag {
  color: #fff;
  font-family: Urbanist;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* 142.857% */
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
}
.register__input .select._select-multiple .select__content ._select-tag::after {
  content: '';
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 9999px;
  background-image: url('../img/icons/x.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  margin-left: 4px;
  cursor: pointer;
}
.register__input .select._select-multiple .select__option {
  display: flex;
  align-items: center;
  gap: 8px;
}
.register__input .select._select-multiple .select__option::before {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  content: '';
  width: 20px;
  height: 20px;
  order: -2;
  border-radius: 4px;
  background: #3f3f46;
  border: 1px solid #52525b;
}
.register__input .select._select-multiple .select__option:hover {
  background: #52525b;
}
.register__input .select._select-multiple .select__option._select-selected::before {
  content: url('../img/icons/check.svg');
  padding: 6px 4px 4px 4px;
}
.register__input.col-12 {
  grid-column: span 12;
}
.register__input.col-6 {
  grid-column: span 6;
}
.register__input.col-4 {
  grid-column: span 4;
}
.register__input.col-3 {
  grid-column: span 3;
}
/*! * Toastify js 1.12.0 * https://github.com/apvarun/toastify-js * @license MIT licensed * * Copyright (C) 2018 Varun A P */
.toastify {
  padding: 12px 20px;
  color: #fff;
  display: inline-block;
  box-shadow: 0 3px 6px -1px rgba(0, 0, 0, 0.12), 0 10px 36px -4px rgba(77, 96, 232, 0.3);
  background: -webkit-linear-gradient(315deg, #73a5ff, #5477f5);
  background: linear-gradient(135deg, #73a5ff, #5477f5);
  position: fixed;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  max-width: calc(50% - 20px);
  z-index: 2147483647;
}
.toastify.on {
  opacity: 1;
}
.toast-close {
  background: transparent;
  border: 0;
  color: white;
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
  opacity: 0.4;
  padding: 0 5px;
}
.toastify-right {
  right: 15px;
}
.toastify-left {
  left: 15px;
}
.toastify-top {
  top: -150px;
}
.toastify-bottom {
  bottom: -150px;
}
.toastify-rounded {
  border-radius: 25px;
}
.toastify-avatar {
  width: 1.5em;
  height: 1.5em;
  margin: -7px 5px;
  border-radius: 2px;
}
.toastify-center {
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  max-width: fit-content;
  max-width: -moz-fit-content;
}
@media only screen and (max-width: 360px) {
  .toastify-right, .toastify-left {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    max-width: fit-content;
  }
}
@media (max-width: 991px) {
  .register__title {
    text-align: left;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .register__input.col-4, .register__input.col-3 {
    grid-column: span 6;
  }
  .register__title {
    color: #fff;
    text-shadow: 0 0 8px rgba(5, 188, 138, 0.5);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(0, 255, 185, 0.5);
    font-family: Anton;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 44px;
    /* 122.222% */
  }
}
@media (max-width: 480px) {
  .register__form {
    gap: 40px;
  }
  .register__input.col-4, .register__input.col-6 {
    grid-column: span 12;
  }
  .register__input-number {
    width: 100%;
  }
  .register__input-number .input {
    width: 100%;
  }
}

