@charset "UTF-8";

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: var(--font_family--body);
  background-color: var(--back_color--body);
  overflow-x: hidden;
  height: 100vh;
  margin: 0;
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

body,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  cursor: pointer;
}

img {
  display: block;
  height: auto;
}

a {
  text-decoration: none;
}

@font-face {
  font-family: "Gilroy";
  /* Общее имя шрифта */
  src: url("/assets/fonts/Gilroy-Bold.woff2") format("woff2");
  font-weight: 800;
  /* Вес для Regular */
  font-style: normal;
  /* Стандартный стиль */
}

@font-face {
  font-family: "Gilroy";
  /* Общее имя шрифта */
  src: url("/assets/fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: 400;
  /* Вес для Regular */
  font-style: normal;
  /* Стандартный стиль */
}

:root {
  --font_family--body: "Gilroy", sans-serif;
  --back_color--body: #060F17;
  --back_image--1x-hero: url(/assets/images/3d-abstract-background-1x.webp);
  --back_image--2x-hero: url(/assets/images/3d-abstract-background-2x.webp);
  --back_color-domains: color-mix(in oklab, hwb(0deg 0% 100% / 20%) 20%, hwb(214.84deg 10.98% 76.86% / 80%) 80%);
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--back_color--backdrop);
  width: 100%;
  height: 100%;
  z-index: 5;
}

.no-scroll {
  overflow: hidden;
}

.hidden {
  display: none !important;
}

.container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.mobile_menu {
  position: fixed;
  z-index: 4;
  top: 0;
  padding-bottom: 75px;
  right: 100%;
  width: 100%;
  height: 100%;
  background: color-mix(in oklab, rgb(16, 19, 23) 80%, rgb(0, 0, 0) 20%);
  -webkit-transition: right 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: right 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.mobile_menu .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobile_menu-open {
  right: 0;
}

.mobile_menu .closing {
  right: 100%;
}

.mobile_menu-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 55px;
  width: 100%;
}

.mobile_menu-header_logo-container {
  padding-bottom: 3px;
}

.mobile_menu-header_logo-container img {
  height: 21px;
}

.mobile_menu-header_btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile_menu-header--btn {
  padding: 0;
  border: none;
  background: transparent;
  margin-right: 17px;
}

.mobile_menu-nav_list {
  text-align: center;
  height: 240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.mobile_menu-nav_list-item a {
  color: white;
  font-family: "Gilroy";
  font-size: 24px;
}

.mobile_menu-nav_list-item:first-child a {
  font-weight: 800;
}

.mobile_menu-contacts_list {
  text-align: center;
}

.mobile_menu-contacts_list-item:first-child {
  margin-bottom: 10px;
}

.mobile_menu-contacts_list-item:first-child a {
  color: white;
  font-family: "Gilroy";
  font-size: 18px;
}

.mobile_menu-contacts_list-item:last-child a {
  color: white;
  font-family: "Gilroy";
  font-size: 24px;
}

.backdrop_mobile {
  position: fixed;
  z-index: 3;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  right: 100%;
  -webkit-transition: right 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: right 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.backdrop_mobile-open {
  right: 0;
}

.more_menu {
  position: fixed;
  z-index: 4;
  top: 0;
  padding-bottom: 75px;
  right: 100%;
  width: 100%;
  height: 100%;
  background: color-mix(in oklab, rgb(16, 19, 23) 80%, rgb(0, 0, 0) 20%);
  -webkit-transition: right 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: right 0.3s ease-in-out, opacity 0.3s ease-in-out;
  overflow: hidden;
}

.more_menu .container {
  height: 100%;
}

.more_menu-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 55px;
  width: 100%;
  margin-bottom: 105px;
}

.more_menu-header_logo-container {
  padding-bottom: 3px;
}

.more_menu-header_logo-container img {
  height: 21px;
}

.more_menu-header_btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.more_menu-header--btn {
  padding: 0;
  border: none;
  background: transparent;
  margin-right: 17px;
}

.more_menu-open {
  right: 0 !important;
}

.more_menu-content {
  height: 50vh;
  overflow-y: scroll;
}

.more_menu-content::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px;
}

.more_menu-content::-webkit-scrollbar-track {
  background: gray;
}

.more_menu-content::-webkit-scrollbar-thumb {
  background: #6699cc;
  background: linear-gradient(45deg, #1C293B 0%, #29323F 56%, #1B283A 100%);
}

.more_menu-content::-webkit-scrollbar-thumb:hover {
  background: #8abbeb;
}

.more_menu-content_text {
  font-size: 34px;
  width: 255px;
  font-family: var(--font_family--body);
  font-weight: 800;
  margin-bottom: 45px;
  line-height: 0.9;
  background: linear-gradient(135deg, #428CD6 0%, #3D6FA1 50%, #295480 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  height: 65px;
}

.more_menu-content_form-list {
  padding: 0 10px;
}

.more_menu-content_form-list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: linear-gradient(135deg, #1C293B 0%, #29323F 56%, #1B283A 100%);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 15px 10px 10px;
  border-radius: 4px;
  position: relative;
}

.more_menu-content_form-list_item:not(:last-child) {
  margin-bottom: 10px;
}

.more_menu-content_form-list_item--label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  color: white;
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  position: relative;
  z-index: 3;
  width: 100%;
}

.more_menu-content_form-list_item p {
  color: white;
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 800;
  position: absolute;
  z-index: 2;
  right: 10px;
}

.more_menu-content_form-list_item--label:hover .more_menu-content_form-list_item--span {
  border: 1px solid #428CD6;
}

.more_menu-content_form-list_item--input {
  display: none;
}

.more_menu-content_form-list_item--span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid white;
  -webkit-transition: border 0.3s ease-in-out;
  transition: border 0.3s ease-in-out;
  border-radius: 2px;
  cursor: pointer;
  margin-right: 10px;
}

.more_menu-content_form-list_item--input:checked + .more_menu-content_form-list_item--span {
  width: 20px;
  height: 20px;
  border: 1px solid #ffffff;
}

.more_menu-content_form-list_item--input:checked + .more_menu-content_form-list_item--span:before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background-image: url("/assets/images/success_white-1x.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.more_menu-content_form-list_item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #428CD6 0%, #3D6FA1 56%, #295480 100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.more_menu-content_form-list_item.active:after {
  content: "";
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.more_menu-content_form--btn {
  position: absolute;
  bottom: 60px;
  left: 50%;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
  border: none;
  background: linear-gradient(135deg, #428CD6 0%, #3D6FA1 56%, #295480 100%);
  color: white;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 90%;
  border-radius: 10px;
  font-family: "Gilroy";
  font-size: 17px;
  font-weight: 800;
}

.more_menu-content_form--btn:hover,
.more_menu-content_form--btn:focus {
  background: linear-gradient(135deg, #2a5d91 0%, #224263 56%, #0d2135 100%);
}

.error_notify {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  background-color: #407ebc;
  padding: 35px 0;
  text-align: center;
  -webkit-transition: left 0.3s ease-in-out;
  transition: left 0.3s ease-in-out;
  z-index: 5;
}

.error_notify p {
  color: #ffffff;
  font-family: "Gilroy";
  font-size: 25px;
  font-weight: 800;
}

.error_active {
  left: 0 !important;
}

.arrow_back {
  position: absolute;
  top: 35%;
  width: 50px;
  height: 30px;
}

.arrow_back--btn {
  background: transparent;
  border: none;
  width: 100%;
  height: 100%;
  padding: 0;
}

.arrow_back--btn img {
  width: 100%;
}

.change_menu {
  position: fixed;
  z-index: 4;
  top: 0;
  padding-bottom: 75px;
  right: 100%;
  width: 100%;
  height: 100%;
  background: color-mix(in oklab, rgb(16, 19, 23) 80%, rgb(0, 0, 0) 20%);
  -webkit-transition: right 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: right 0.3s ease-in-out, opacity 0.3s ease-in-out;
  overflow: hidden;
}

.change_menu .container {
  height: 100%;
}

.change_menu-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 55px;
  width: 100%;
  margin-bottom: 35px;
}

.change_menu-header_logo-container {
  padding-bottom: 3px;
}

.change_menu-header_logo-container img {
  height: 21px;
}

.change_menu-header_btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.change_menu-header--btn {
  padding: 0;
  border: none;
  background: transparent;
  margin-right: 17px;
}

.change_menu-open {
  right: 0 !important;
}

.change_menu-content {
  height: 50vh;
  overflow-y: scroll;
}

.change_menu-content::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px;
}

.change_menu-content::-webkit-scrollbar-track {
  background: gray;
}

.change_menu-content::-webkit-scrollbar-thumb {
  background: #6699cc;
  background: linear-gradient(45deg, #1C293B 0%, #29323F 56%, #1B283A 100%);
}

.change_menu-content::-webkit-scrollbar-thumb:hover {
  background: #8abbeb;
}

.change_menu-content_text {
  font-size: 34px;
  width: 255px;
  font-family: var(--font_family--body);
  font-weight: 800;
  margin-bottom: 45px;
  line-height: 0.9;
  background: linear-gradient(135deg, #428CD6 0%, #3D6FA1 50%, #295480 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  height: 65px;
}

.change_menu-content_form-list {
  padding: 0 10px;
}

.change_menu-content_form-list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: linear-gradient(135deg, #1C293B 0%, #29323F 56%, #1B283A 100%);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 15px 10px 10px;
  border-radius: 4px;
  position: relative;
}

.change_menu-content_form-list_item:not(:last-child) {
  margin-bottom: 10px;
}

.change_menu-content_form-list_item--label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  color: white;
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  position: relative;
  z-index: 3;
  width: 100%;
}

.change_menu-content_form-list_item p {
  color: white;
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 800;
  position: absolute;
  z-index: 2;
  right: 10px;
}

.change_menu-content_form-list_item--label:hover .change_menu-content_form-list_item--span {
  border: 1px solid #428CD6;
}

.change_menu-content_form-list_item--input {
  display: none;
}

.change_menu-content_form-list_item--span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid white;
  -webkit-transition: border 0.3s ease-in-out;
  transition: border 0.3s ease-in-out;
  border-radius: 2px;
  cursor: pointer;
  margin-right: 10px;
}

.change_menu-content_form-list_item--input:checked + .change_menu-content_form-list_item--span {
  width: 20px;
  height: 20px;
  border: 1px solid #ffffff;
}

.change_menu-content_form-list_item--input:checked + .change_menu-content_form-list_item--span:before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background-image: url("/assets/images/success_white-1x.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.change_menu-content_form-list_item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #428CD6 0%, #3D6FA1 56%, #295480 100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.change_menu-content_form-list_item.active:after {
  content: "";
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.change_menu-content_form--btn {
  position: absolute;
  bottom: 60px;
  left: 50%;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
  border: none;
  background: linear-gradient(135deg, #428CD6 0%, #3D6FA1 56%, #295480 100%);
  color: white;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 90%;
  border-radius: 10px;
  font-family: "Gilroy";
  font-size: 17px;
  font-weight: 800;
}

.change_menu-content_form--btn:hover,
.change_menu-content_form--btn:focus {
  background: linear-gradient(135deg, #2a5d91 0%, #224263 56%, #0d2135 100%);
}

.change_menu-content_form--step_5 {
  margin-top: 45px;
  height: 60vh;
  overflow-y: scroll;
}

.change_menu-content_form--step_5::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px;
}

.change_menu-content_form--step_5::-webkit-scrollbar-track {
  background: gray;
}

.change_menu-content_form--step_5::-webkit-scrollbar-thumb {
  background: #6699cc;
  background: linear-gradient(45deg, #1C293B 0%, #29323F 56%, #1B283A 100%);
}

.change_menu-content_form--step_5::-webkit-scrollbar-thumb:hover {
  background: #8abbeb;
}

.change_menu-content_form--step_5-list {
  padding-right: 10px;
}

.change_menu-content_form--step_5-list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: linear-gradient(135deg, #1C293B 0%, #29323F 56%, #1B283A 100%);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 15px 10px 10px;
  border-radius: 4px;
  position: relative;
}

.change_menu-content_form--step_5-list_item:not(:last-child) {
  margin-bottom: 10px;
}

.change_menu-content_form--step_5-list_item--label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  color: white;
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  position: relative;
  z-index: 3;
  width: 100%;
}

.change_menu-content_form--step_5-list_item p {
  color: white;
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 800;
  position: absolute;
  right: 10px;
  z-index: 2;
}

.change_menu-content_form--step_5-list_item--label:hover .change_menu-content_form--step_5-list_item--span {
  border: 1px solid #428CD6;
}

.change_menu-content_form--step_5-list_item--input,
.change_menu-content_form--step_5-list_item--input_domain_list {
  display: none;
}

.change_menu-content_form--step_5-list_item--span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid white;
  -webkit-transition: border 0.3s ease-in-out;
  transition: border 0.3s ease-in-out;
  border-radius: 2px;
  cursor: pointer;
  margin-right: 10px;
}

.change_menu-content_form--step_5-list_item--input:checked + .change_menu-content_form--step_5-list_item--span,
.change_menu-content_form--step_5-list_item--input_domain_list:checked + .change_menu-content_form--step_5-list_item--span {
  width: 20px;
  height: 20px;
  border: 1px solid #ffffff;
}

.change_menu-content_form--step_5-list_item--input:checked + .change_menu-content_form--step_5-list_item--span:before,
.change_menu-content_form--step_5-list_item--input_domain_list:checked + .change_menu-content_form--step_5-list_item--span:before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background-image: url("/assets/images/success_white-1x.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.change_menu-content_form--step_5-list_item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #428CD6 0%, #3D6FA1 56%, #295480 100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.change_menu-content_form--step_5-list_item.active:after {
  content: "";
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.change_menu-content_form--step_5--btn {
  position: absolute;
  bottom: 60px;
  left: 50%;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
  border: none;
  background: linear-gradient(135deg, #428CD6 0%, #3D6FA1 56%, #295480 100%);
  color: white;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 90%;
  border-radius: 10px;
  font-family: "Gilroy";
  font-size: 17px;
  font-weight: 800;
}

.change_menu-content_form--step_5--btn:hover,
.change_menu-content_form--step_5--btn:focus {
  background: linear-gradient(135deg, #2a5d91 0%, #224263 56%, #0d2135 100%);
}

.more_menu_domains {
  position: fixed;
  z-index: 4;
  top: 0;
  padding-bottom: 75px;
  right: 100%;
  width: 100%;
  height: 100%;
  background: color-mix(in oklab, rgb(16, 19, 23) 80%, rgb(0, 0, 0) 20%);
  -webkit-transition: right 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: right 0.3s ease-in-out, opacity 0.3s ease-in-out;
  overflow: hidden;
}

.more_menu_domains .container {
  height: 100%;
}

.more_menu_domains--container_list-text {
  margin-bottom: 35px;
}

.more_menu_domains--container_list-text-item p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  color: white;
}

.more_menu_domains--container_list-text-item p span {
  font-weight: bold;
  margin-left: auto;
  margin-right: 5px;
}

.more_menu_domains--container_list-text-item_p span {
  width: 65%;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: end;
}

.more_menu_domains-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 55px;
  width: 100%;
  margin-bottom: 35px;
}

.more_menu_domains-header_logo-container {
  padding-bottom: 3px;
}

.more_menu_domains-header_logo-container img {
  height: 21px;
}

.more_menu_domains-header_btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.more_menu_domains-header--btn {
  padding: 0;
  border: none;
  background: transparent;
  margin-right: 17px;
}

.more_menu_domains-open {
  right: 0 !important;
}

.more_menu_domains-content {
  height: 50vh;
  overflow-y: scroll;
}

.more_menu_domains-content::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px;
}

.more_menu_domains-content::-webkit-scrollbar-track {
  background: gray;
}

.more_menu_domains-content::-webkit-scrollbar-thumb {
  background: #6699cc;
  background: linear-gradient(45deg, #1C293B 0%, #29323F 56%, #1B283A 100%);
}

.more_menu_domains-content::-webkit-scrollbar-thumb:hover {
  background: #8abbeb;
}

.more_menu_domains-content_text {
  font-size: 34px;
  width: 255px;
  font-family: var(--font_family--body);
  font-weight: 800;
  margin-bottom: 45px;
  line-height: 0.9;
  background: linear-gradient(135deg, #428CD6 0%, #3D6FA1 50%, #295480 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  height: 65px;
}

.more_menu_domains-content_form {
  padding-right: 5px;
}

.more_menu_domains-content_form-list {
  margin-bottom: 20px;
}

.more_menu_domains-content_form-list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: linear-gradient(135deg, #1C293B 0%, #29323F 56%, #1B283A 100%);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 15px 10px 10px;
  border-radius: 4px;
  position: relative;
  min-height: 60px;
  overflow: hidden;
  border: 1px solid #1f2b3b;
}

.more_menu_domains-content_form-list_item:not(:last-child) {
  margin-bottom: 10px;
}

.more_menu_domains-content_form-list_item-text {
  width: 37%;
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  color: white;
  direction: rtl;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.more_menu_domains-content_form-list_item-label_select {
  width: 50px;
  height: 25px;
  border: none;
  border-radius: 5px;
  font-family: "Gilroy";
  font-size: 16px;
  border-color: rgb(255, 255, 255);
}

.more_menu_domains-content_form-list_item_prices p {
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  color: white;
}

.more_menu_domains-content_form-list_item_prices-old_price {
  color: #535252 !important;
  text-decoration: line-through;
}

.more_menu_domains-content_form-list_item_discount {
  width: 5%;
}

.more_menu_domains-content_form-list_item_discount.no-active {
  z-index: -1;
}

.more_menu_domains-content_form-list_item_discount:before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  top: 0;
  right: -21px;
  -webkit-transform: rotateZ(90deg);
      -ms-transform: rotate(90deg);
          transform: rotateZ(90deg);
  background: linear-gradient(135deg, #428CD6 0%, #3D6FA1 50%, #295480 100%);
}

.more_menu_domains-content_form-list_item_discount p {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 2px;
  color: white;
  font-family: "Gilroy";
  font-size: 19px;
  font-weight: 800;
}

.more_menu_domains-content_form--btn {
  position: absolute;
  bottom: 60px;
  left: 50%;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
  border: none;
  background: linear-gradient(135deg, #428CD6 0%, #3D6FA1 56%, #295480 100%);
  color: white;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 90%;
  border-radius: 10px;
  font-family: "Gilroy";
  font-size: 17px;
  font-weight: 800;
}

.more_menu_domains-content_form--btn:hover,
.more_menu_domains-content_form--btn:focus {
  background: linear-gradient(135deg, #2a5d91 0%, #224263 56%, #0d2135 100%);
}

.more_menu_domains--btn {
  position: absolute;
  bottom: 60px;
  left: 50%;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
  border: none;
  background: linear-gradient(135deg, #428CD6 0%, #3D6FA1 56%, #295480 100%);
  color: white;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 90%;
  border-radius: 10px;
  font-family: "Gilroy";
  font-size: 17px;
  font-weight: 800;
}

.more_menu_domains--btn:hover,
.more_menu_domains--btn:focus {
  background: linear-gradient(135deg, #2a5d91 0%, #224263 56%, #0d2135 100%);
}

.header {
  padding-top: 55px;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header .container .menu_container--btn {
  background-color: transparent;
  border: none;
  color: white;
  font-family: var(--font_family--body);
  font-size: 17px;
  margin-left: auto;
}

.hero {
  position: relative;
  min-height: 310px;
  width: auto;
  padding-top: 160px;
  padding-bottom: 35px;
  background-image: var(--back_image--1x-hero);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero_title {
  font-size: 34px;
  width: 255px;
  color: white;
  font-family: var(--font_family--body);
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 0.9;
}

.hero_title span {
  color: #0990EB;
}

.hero_text {
  font-family: var(--font_family--body);
  font-weight: 400;
  font-size: 16px;
  color: rgba(243, 243, 243, 0.6);
}

.domains {
  padding-top: 40px;
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: var(--back_color-domains);
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.domains .container {
  height: 100%;
}

.domains_step_1 {
  height: 100%;
}

.domains_form {
  height: 100%;
}

.domains_form-step_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.domains_form-step_1--label {
  position: relative;
  display: block;
  height: auto;
  margin-bottom: 20px;
}

.domains_form-step_1--label > input {
  height: 50px;
  width: 100%;
  border-radius: 10px;
  padding-left: 55px;
  padding-right: 30px;
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  border: solid #ffffff 2px;
}

.domains_form-step_1--label > input:hover,
.domains_form-step_1--label > input:focus {
  outline: none;
  border: solid #427ec1 2px;
}

.domains_form-step_1--label-svg--microphone {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: 14px;
}

.domains_form-step_1--label-svg--success {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 8px;
}

.domains_form-step_1--status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  width: 100%;
}

.domains_form-step_1--status p {
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  color: white;
}

.domains_form-step_1--status_price {
  margin-left: auto;
  font-weight: 800;
}

.domains_form-step_1_list-zone {
  padding: 45px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, #15202E 0%, #1F2632 56%, #15202E 100%), rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.21);
          box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.21);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-row-gap: 20px;
}

.domains_form-step_1_list-zone--label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  font-family: "Gilroy";
  font-size: 17px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  cursor: pointer;
}

.domains_form-step_1_list-zone--label:hover .domains_form-step_1_list-zone--span {
  border: 1px solid #428CD6;
}

.domains_form-step_1_list-zone--input {
  display: none;
}

.domains_form-step_1_list-zone--span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid white;
  -webkit-transition: border 0.3s ease-in-out;
  transition: border 0.3s ease-in-out;
  border-radius: 2px;
  cursor: pointer;
  margin-right: 10px;
}

.domains_form-step_1_list-zone--input:checked + .domains_form-step_1_list-zone--span {
  width: 20px;
  height: 20px;
  border: 1px solid #428CD6;
}

.domains_form-step_1_list-zone--input:checked + .domains_form-step_1_list-zone--span:before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background-image: url("/assets/images/success_blue-1x.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.domains_form-step_1-btn_container {
  margin-top: 15px;
  margin-bottom: 30px;
}

.domains_form-step_1_btn-more {
  position: relative;
  border: none;
  background-color: transparent;
  color: #ffffff;
  font-family: "Gilroy";
  font-size: 15px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 25px;
}

.domains_form-step_1_btn-more img {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.domains_form-step_1--btn_search {
  margin-bottom: 60px;
  margin-top: auto;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #428CD6 0%, #3D6FA1 50%, #295480 100%);
  color: white;
  font-family: "Gilroy";
  font-size: 18px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.domains_form-step_1--btn_search:hover,
.domains_form-step_1--btn_search:focus {
  background: linear-gradient(135deg, #2a5d91 0%, #224263 56%, #0d2135 100%);
}

.domains_step_2 {
  height: 100%;
}

.domains_form-step_2 {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.domains_form-step_2--container_price {
  margin-bottom: 55px;
}

.domains_form-step_2--container_price-list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.domains_form-step_2--container_price-list_item:not(:last-child) {
  margin-bottom: 5px;
}

.domains_form-step_2--container_price-list_item p {
  font-family: "Gilroy";
  color: white;
  font-size: 16px;
  font-weight: 400;
}

.domains_form-step_2--container_price-list_item > .domains_form-step_2--status_price {
  font-weight: 800;
}

.domains_form-step_2--container_price-list_item label {
  position: absolute;
}

.domains_form-step_2--list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: linear-gradient(135deg, #1C293B 0%, #29323F 56%, #1B283A 100%);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 15px 10px 10px;
  border-radius: 4px;
  position: relative;
}

.domains_form-step_2--list_item:not(:last-child) {
  margin-bottom: 10px;
}

.domains_form-step_2--list_item--label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  color: white;
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  position: relative;
  z-index: 3;
  width: 100%;
}

.domains_form-step_2--list_item p {
  color: white;
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 800;
  position: absolute;
  right: 10px;
  z-index: 2;
}

.domains_form-step_2--list_item--label:hover .domains_form-step_2--list_item--span {
  border: 1px solid #428CD6;
}

.domains_form-step_2--list_item--input,
.domains_form-step_2--list_item--input_domain_list {
  display: none;
}

.domains_form-step_2--list_item--span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid white;
  -webkit-transition: border 0.3s ease-in-out;
  transition: border 0.3s ease-in-out;
  border-radius: 2px;
  cursor: pointer;
  margin-right: 10px;
}

.domains_form-step_2--list_item--input:checked + .domains_form-step_2--list_item--span,
.domains_form-step_2--list_item--input_domain_list:checked + .domains_form-step_2--list_item--span {
  width: 20px;
  height: 20px;
  border: 1px solid #ffffff;
}

.domains_form-step_2--list_item--input:checked + .domains_form-step_2--list_item--span:before,
.domains_form-step_2--list_item--input_domain_list:checked + .domains_form-step_2--list_item--span:before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background-image: url("/assets/images/success_white-1x.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.domains_form-step_2--list_item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #428CD6 0%, #3D6FA1 56%, #295480 100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.domains_form-step_2--list_item.active:after {
  content: "";
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.domains_form-step_2-btn_container {
  margin-top: 15px;
  margin-bottom: 30px;
}

.domains_form-step_2_btn-more {
  position: relative;
  border: none;
  background-color: transparent;
  color: #ffffff;
  font-family: "Gilroy";
  font-size: 15px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 25px;
}

.domains_form-step_2_btn-more img {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.domains_form-step_2--btn_register {
  margin-bottom: 60px;
  margin-top: auto;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #428CD6 0%, #3D6FA1 50%, #295480 100%);
  color: white;
  font-family: "Gilroy";
  font-size: 18px;
}

.domains_form-step_2--btn_register:hover,
.domains_form-step_2--btn_register:focus {
  background: linear-gradient(135deg, #2a5d91 0%, #224263 56%, #0d2135 100%);
}

.no-active label {
  color: #7F7F7F;
  text-decoration: line-through;
  cursor: context-menu;
}

.no-active label:hover .domains_form-step_2--list_item--span,
.no-active label:focus .domains_form-step_2--list_item--span {
  border: 1px solid #7F7F7F;
}

.no-active label .domains_form-step_2--list_item--span {
  border: 1px solid #7F7F7F;
  cursor: context-menu;
}

.no-active label .domains_form-step_2--list_item--span:hover,
.no-active label .domains_form-step_2--list_item--span:focus {
  border: 1px solid #7F7F7F;
}

.no-active p {
  color: #7F7F7F;
  text-decoration: line-through;
}

.domains_step_3 {
  height: 100%;
}

.domains_form-step_3 {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.domains_form-step_3-container {
  padding: 20px 20px 20px 20px;
  border-radius: 5px;
  margin-bottom: 35px;
  background: linear-gradient(135deg, #1C293B 0%, #29323F 56%, #1B283A 100%);
  -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.21);
          box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.21);
  position: relative;
}

.domains_form-step_3-container:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #428CD6 0%, #3D6FA1 56%, #295480 100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.domains_form-step_3-container.active:after {
  content: "";
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.domains_form-step_3-container--label {
  font-family: "Gilroy";
  font-size: 20px;
  color: white;
  font-weight: 800;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.domains_form-step_3-container--label_input {
  display: none;
}

.domains_form-step_3-container--label:hover .domains_form-step_3-container--label_span {
  border: 1px solid #428CD6;
}

.domains_form-step_3-container--label_input {
  display: none;
}

.domains_form-step_3-container--label_span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid white;
  -webkit-transition: border 0.3s ease-in-out;
  transition: border 0.3s ease-in-out;
  border-radius: 2px;
  cursor: pointer;
  margin-right: 10px;
}

.domains_form-step_3-container--label_input:checked + .domains_form-step_3-container--label_span {
  width: 20px;
  height: 20px;
  border: 1px solid #ffffff;
}

.domains_form-step_3-container--label_input:checked + .domains_form-step_3-container--label_span:before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background-image: url("/assets/images/success_white-1x.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.domains_form-step_3-container--text {
  font-family: "Gilroy";
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  color: white;
  letter-spacing: 0.08em;
  padding-left: 30px;
  position: relative;
  z-index: 2;
}

.domains_form-step_3--btn {
  margin-bottom: 60px;
  margin-top: auto;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #428CD6 0%, #3D6FA1 50%, #295480 100%);
  color: white;
  font-family: "Gilroy";
  font-size: 18px;
}

.domains_form-step_3--btn:hover,
.domains_form-step_3--btn:focus {
  background: linear-gradient(135deg, #2a5d91 0%, #224263 56%, #0d2135 100%);
}

.domains_step_4 {
  height: 100%;
}

.domains_step_4-form {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.domains_step_4-form_container {
  padding: 25px 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, #15202E 0%, #1F2632 56%, #15202E 100%), rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.21);
          box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.21);
}

.domains_step_4-form_container--label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 30px;
  font-family: "Gilroy";
  font-size: 15px;
  font-weight: 400;
  color: white;
}

.domains_step_4-form_container--label_input {
  margin-top: 10px;
  height: 36px;
  border-radius: 5px;
  padding-left: 12px;
  padding-right: 15px;
  font-family: "Gilroy";
  font-size: 20px;
  font-weight: 400;
  border-color: rgb(255, 255, 255);
}

.domains_step_4-form_container--label_input::-webkit-input-placeholder {
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  color: #797979;
}

.domains_step_4-form_container--label_input::-moz-placeholder {
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  color: #797979;
}

.domains_step_4-form_container--label_input:-ms-input-placeholder {
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  color: #797979;
}

.domains_step_4-form_container--label_input::-ms-input-placeholder {
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  color: #797979;
}

.domains_step_4-form_container--label_input::placeholder {
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  color: #797979;
}

.domains_step_4-form_container--label_input:hover,
.domains_step_4-form_container--label_input:focus {
  outline: none;
  border: solid #427ec1 2px;
}

.domains_step_4-form--btn {
  margin-bottom: 60px;
  margin-top: auto;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #428CD6 0%, #3D6FA1 50%, #295480 100%);
  color: white;
  font-family: "Gilroy";
  font-size: 18px;
}

.domains_step_4-form--btn:hover,
.domains_step_4-form--btn:focus {
  background: linear-gradient(135deg, #2a5d91 0%, #224263 56%, #0d2135 100%);
}

.domains_step_4--title {
  font-family: "Gilroy";
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin-bottom: 25px;
}

.domains_step_4 {
  height: 100%;
}

.domains_step_4-form_reg {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.domains_step_4-form_reg_container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, #15202E 0%, #1F2632 56%, #15202E 100%), rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.21);
          box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.21);
  margin-bottom: 15px;
}

.domains_step_4-form_reg_container--label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Gilroy";
  font-size: 15px;
  font-weight: 400;
  color: white;
  width: 100%;
}

.domains_step_4-form_reg_container--label_input {
  margin-top: 10px;
  height: 36px;
  border-radius: 5px;
  padding-left: 12px;
  padding-right: 15px;
  font-family: "Gilroy";
  font-size: 20px;
  font-weight: 400;
  border-color: rgb(255, 255, 255);
  width: 100%;
}

.domains_step_4-form_reg_container--label_input::-webkit-input-placeholder {
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  color: #797979;
}

.domains_step_4-form_reg_container--label_input::-moz-placeholder {
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  color: #797979;
}

.domains_step_4-form_reg_container--label_input:-ms-input-placeholder {
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  color: #797979;
}

.domains_step_4-form_reg_container--label_input::-ms-input-placeholder {
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  color: #797979;
}

.domains_step_4-form_reg_container--label_input::placeholder {
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  color: #797979;
}

.domains_step_4-form_reg_container--label_input:hover,
.domains_step_4-form_reg_container--label_input:focus {
  outline: none;
  border: solid #427ec1 2px;
}

.domains_step_4-form_reg_container--label_select {
  margin-top: 10px;
  height: 36px;
  border-radius: 5px;
  padding-left: 12px;
  padding-right: 15px;
  font-family: "Gilroy";
  font-size: 20px;
  font-weight: 400;
  border-color: rgb(255, 255, 255);
  width: 100%;
}

.domains_step_4-form_reg_container--label_select:hover,
.domains_step_4-form_reg_container--label_select:focus {
  outline: none;
  border: solid #427ec1 2px;
}

.domains_step_4-form_reg--btn {
  margin-bottom: 60px;
  margin-top: auto;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #428CD6 0%, #3D6FA1 50%, #295480 100%);
  color: white;
  font-family: "Gilroy";
  font-size: 18px;
}

.domains_step_4-form_reg--btn:hover,
.domains_step_4-form_reg--btn:focus {
  background: linear-gradient(135deg, #2a5d91 0%, #224263 56%, #0d2135 100%);
}

.domains_step_4--title_reg {
  font-family: "Gilroy";
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin-bottom: 5px;
}

.domains_step_5 {
  height: 100%;
}

.domains_step_5-form {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.domains_step_5-form--container {
  padding: 25px 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, #15202E 0%, #1F2632 56%, #15202E 100%), rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.21);
          box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.21);
  margin-bottom: 10px;
}

.domains_step_5-form--container_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}

.domains_step_5-form--container_list:before {
  content: "";
  border: 1px solid hsla(210, 59.18%, 80.78%, 0.11);
  width: 100%;
  position: absolute;
  bottom: -10px;
  border-style: dashed;
}

.domains_step_5-form--container_list_item p {
  font-family: "Gilroy";
  font-size: 17px;
  font-weight: 800;
  color: white;
}

.domains_step_5-form--container_list-text {
  margin-bottom: 15px;
}

.domains_step_5-form--container_list-text-item p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  color: white;
}

.domains_step_5-form--container_list-text-item p span {
  font-weight: bold;
  margin-left: auto;
  margin-right: 5px;
}

.domains_step_5-form--container_list-text-item_p span {
  width: 65%;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: end;
}

.domains_step_5-form--container-promo {
  position: relative;
  margin-bottom: 15px;
}

.domains_step_5-form--container-promo_label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 36px;
  width: 100%;
}

.domains_step_5-form--container-promo_label input {
  width: 100%;
  height: 36px;
  border-radius: 5px;
  padding-left: 10px;
  padding-right: 40px;
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  border-color: rgb(255, 255, 255);
}

.domains_step_5-form--container-promo_label input::-webkit-input-placeholder {
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  color: #797979;
}

.domains_step_5-form--container-promo_label input::-moz-placeholder {
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  color: #797979;
}

.domains_step_5-form--container-promo_label input:-ms-input-placeholder {
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  color: #797979;
}

.domains_step_5-form--container-promo_label input::-ms-input-placeholder {
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  color: #797979;
}

.domains_step_5-form--container-promo_label input::placeholder {
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  color: #797979;
}

.domains_step_5-form--container-promo_label input:hover,
.domains_step_5-form--container-promo_label input:focus {
  outline: none;
  border: solid #427ec1 2px;
}

.domains_step_5-form--container-promo_btn {
  position: absolute;
  top: 50%;
  right: 6px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  border: 1px solid #797979;
  border-radius: 4px;
  background: transparent;
  color: #797979;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
}

.domains_step_5-form--container-promo_btn:hover,
.domains_step_5-form--container-promo_btn:focus {
  border: 1px solid #3f3f3f;
  color: #3f3f3f;
}

.domains_step_5-form--container_domains {
  margin-bottom: 15px;
}

.domains_step_5-form--container_domains-list_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.domains_step_5-form--container_domains-list_header:before {
  content: "";
  border: 1px solid hsla(210, 59.18%, 80.78%, 0.11);
  width: 100%;
  position: absolute;
  bottom: -10px;
  border-style: dashed;
}

.domains_step_5-form--container_domains-list_header-item:first-child {
  width: 35%;
}

.domains_step_5-form--container_domains-list_header-item p {
  color: #4D5C73;
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
}

.domains_step_5-form--container_domains-list {
  margin-bottom: 20px;
}

.domains_step_5-form--container_domains-list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: linear-gradient(135deg, #1C293B 0%, #29323F 56%, #1B283A 100%);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 15px 10px 10px;
  border-radius: 4px;
  position: relative;
  min-height: 60px;
  overflow: hidden;
  border: 1px solid #1f2b3b;
}

.domains_step_5-form--container_domains-list_item:not(:last-child) {
  margin-bottom: 10px;
}

.domains_step_5-form--container_domains-list_item-text {
  width: 40%;
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  color: white;
  direction: rtl;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.domains_step_5-form--container_domains-list_item-label_select {
  width: 50px;
  height: 25px;
  border: none;
  border-radius: 5px;
  font-family: "Gilroy";
  font-size: 16px;
  border-color: rgb(255, 255, 255);
}

.domains_step_5-form--container_domains-list_item_prices p {
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  color: white;
}

.domains_step_5-form--container_domains-list_item_prices-old_price {
  color: #535252 !important;
  text-decoration: line-through;
}

.domains_step_5-form--container_domains-list_item_discount {
  width: 5%;
}

.domains_step_5-form--container_domains-list_item_discount.no-active {
  z-index: -1;
}

.domains_step_5-form--container_domains-list_item_discount:before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  top: 0;
  right: -21px;
  -webkit-transform: rotateZ(90deg);
      -ms-transform: rotate(90deg);
          transform: rotateZ(90deg);
  background: linear-gradient(135deg, #428CD6 0%, #3D6FA1 50%, #295480 100%);
}

.domains_step_5-form--container_domains-list_item_discount p {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 2px;
  color: white;
  font-family: "Gilroy";
  font-size: 19px;
  font-weight: 800;
}

.domains_step_5-form--container_domains button {
  position: relative;
  border: none;
  background-color: transparent;
  color: #ffffff;
  font-family: "Gilroy";
  font-size: 15px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 25px;
}

.domains_step_5-form--container_domains button > img {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.domains_step_5-form--container_btn {
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 5px;
  background: transparent;
  border: 1px solid #428CD6;
  color: white;
  font-family: "Gilroy";
  font-size: 16px;
}

.domains_step_5-form--container_btn:hover,
.domains_step_5-form--container_btn:focus {
  border: 1px solid #2a5d91;
  background: linear-gradient(135deg, #2a5d91 0%, #224263 56%, #0d2135 100%);
}

.domains_step_5-form--btn {
  margin-bottom: 60px;
  margin-top: auto;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #428CD6 0%, #3D6FA1 50%, #295480 100%);
  color: white;
  font-family: "Gilroy";
  font-size: 18px;
}

.domains_step_5-form--btn:hover,
.domains_step_5-form--btn:focus {
  background: linear-gradient(135deg, #2a5d91 0%, #224263 56%, #0d2135 100%);
}

.domains_step_6 {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.domains_step_6 ul li {
  margin-bottom: 15px;
}

.domains_step_6 ul li:first-child p {
  font-family: "Gilroy";
  font-size: 17px;
  font-weight: 800;
  color: white;
}

.domains_step_6 ul li p {
  font-family: "Gilroy";
  font-size: 17px;
  font-weight: 400;
  color: white;
}

.domains_step_6 ul li:not(:last-child) {
  margin-bottom: 15px;
}

.domains_step_6 button {
  margin-bottom: 60px;
  margin-top: auto;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #428CD6 0%, #3D6FA1 50%, #295480 100%);
  color: white;
  font-family: "Gilroy";
  font-size: 18px;
}

.domains_step_6 button:hover,
.domains_step_6 button:focus {
  background: linear-gradient(135deg, #2a5d91 0%, #224263 56%, #0d2135 100%);
}

@media (min-width: 568px) {
  .container {
    max-width: 480px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }

  .mobile_menu {
    width: 50%;
  }

  .mobile_menu-open {
    right: 50%;
  }

  .more_menu {
    width: 50%;
  }

  .more_menu-open {
    right: 50% !important;
  }

  .change_menu {
    width: 50%;
  }

  .change_menu-open {
    right: 50% !important;
  }

  .more_menu_domains {
    width: 50%;
  }

  .more_menu_domains-open {
    right: 50% !important;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1240px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1840px) {
  .container {
    max-width: 1920px;
  }
}

@media (min-width: 2480px) {
  .container {
    max-width: 2560px;
  }
}

@media (min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .hero {
    background-image: var(--back_image--2x-hero);
  }
}
/*# sourceMappingURL=style.css.map */
