body.cabinet {
  background-color: #f4f4f4;
}
body.cabinet .container {
  max-width: 1500px;
}
body.cabinet .social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  margin-bottom: 20px;
}
body.cabinet .social li {
  display: block;
}
body.cabinet .social li a {
  width: 30px;
  height: 30px;
  display: block;
  background-image: url("../images/social-icons.png");
  transition: all 0.1s ease-in-out;
  margin: 0;
}
body.cabinet .social li a.icon-1 {
  background-position: 0 0;
}
body.cabinet .social li a.icon-2 {
  background-position: -30px 0;
}
body.cabinet .social li a.icon-3 {
  background-position: -60px 0;
}
body.cabinet .social li a.icon-4 {
  background-position: -90px 0;
}
body.cabinet .social li a:hover {
  transform: scale(1.1);
}

.btn-brand {
  background-color: #ff9440;
  border: 0;
  color: #fff;
  text-transform: uppercase;
  height: 50px;
  padding: 10px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  outline: none;
  transition: all 0.2s ease;
}
.btn-brand:hover, .btn-brand:focus, .btn-brand:active, .btn-brand:visited {
  background-color: rgba(255, 148, 64, 0.8);
}

.btn {
  outline: none !important;
  box-shadow: unset !important;
}
.btn.btn-blue {
  background-color: #2e8ee5;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  min-width: 180px;
  transition: all 0.2s ease-in-out;
}
.btn.btn-blue:hover {
  background-color: #ff9440;
}

.alerts {
  position: fixed;
  left: 0;
  width: 100%;
  top: 0;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.alerts > div {
  background-color: #fff;
  padding: 20px;
  border-left: 5px solid #2e8ee5;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 300px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  color: #5b5b5b;
  opacity: 0;
  pointer-events: all;
  transition: all 0.2s ease-in-out;
}
.alerts > div .copy-code {
  padding: 5px 20px 5px 10px;
  font-weight: bold;
  color: #000;
}
.alerts > div .copy-code span {
  color: #2e8ee5;
  font-weight: bold;
  display: inline-block;
  margin-left: 20px;
}
.alerts > div.active {
  opacity: 1;
}
.alerts > div.danger {
  border-left: 5px solid #ff4040;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #6e797d;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #2e8ee5;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #2e8ee5;
}

.profile-button {
  border-radius: 5px;
  display: inline-block;
  background-color: #308ede;
  color: #fff;
  text-decoration: none;
  border: 0;
  flex: unset;
  padding: 12px 30px;
  transition: background-color 0.2s ease;
}
.profile-button:hover, .profile-button:active {
  background-color: #2575bb;
  color: #fff;
}

#help_container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
}
#help_container > a {
  font-size: 24px;
  font-weight: bold;
  position: relative;
  z-index: 2;
  background-color: #ff9440;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
#help_container > a::before {
  content: "";
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  position: absolute;
  top: 29px;
  left: 18px;
  transition: transform 100ms;
  transform: translateY(5px);
}
#help_container > a::after {
  content: "";
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  position: absolute;
  top: 29px;
  left: 18px;
  transition: transform 100ms;
  transform: translateY(-5px);
}
#help_container > ul {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -5px;
  bottom: -5px;
  list-style: none;
  padding: 0;
  margin: 0;
  list-style: none;
}
#help_container > ul li {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#help_container > ul li a {
  width: 45px;
  height: 45px;
  display: flex;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
#help_container > ul li a i {
  color: #fff;
  transition: all 0.2s ease;
}
#help_container > ul li a:hover i {
  transform: scale(1.3);
}
#help_container > ul li ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  position: absolute;
  bottom: 55px;
  right: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s ease;
}
#help_container > ul li ul li {
  width: auto;
  height: auto;
  position: relative;
  right: 0;
  border-radius: 15px;
  overflow: hidden;
}
#help_container > ul li ul li a {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  white-space: nowrap;
  background-color: #308ede;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
#help_container.active > a::before {
  transform: rotate(-45deg);
}
#help_container.active > a::after {
  transform: rotate(45deg);
}
#help_container.active > ul > li {
  position: absolute;
  bottom: 0;
  transform: unset;
}
#help_container.active > ul > li:nth-child(1) {
  left: -130px;
  background-color: #7360f2;
}
#help_container.active > ul > li:nth-child(2) {
  left: -107px;
  top: -44px;
  background-color: #25d267;
}
#help_container.active > ul > li:nth-child(3) {
  left: -74px;
  top: -83px;
  background-color: #0088cc;
}
#help_container.active > ul > li:nth-child(4) {
  top: -111px;
  left: -32px;
  background-color: #ff9440;
}
#help_container.active > ul > li:nth-child(5) {
  top: -130px;
  left: 17px;
  background-color: #5b5b5b;
}
#help_container.active > ul > li ul.active {
  opacity: 1;
  visibility: visible;
}

.pip {
  background-image: url("../images/pip-small.png");
  background-size: contain;
  background-repeat: no-repeat;
  min-width: 583px;
  min-height: 880px;
}

.bankcard-wait-payment {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #eaeaea;
}
.bankcard-wait-payment .title {
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #308ede;
  padding: 0 1.5rem;
  color: #fff;
  font-size: 22px;
  position: relative;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.bankcard-wait-payment .title::before {
  content: "";
  position: absolute;
  left: 0;
  top: -9px;
  margin: -20px;
  background-color: #308ede;
  border: 0;
  width: 100%;
  height: 10px;
  margin: 0;
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
}
.bankcard-wait-payment .title::after {
  content: "";
  position: absolute;
  right: -9px;
  bottom: -1px;
  margin: -20px;
  background-color: #308ede;
  border: 0;
  width: 10px;
  height: 100%;
  margin: 0;
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
}
.bankcard-wait-payment .block {
  padding: 1.5rem 18px;
  border: 5px solid #308ede;
  box-shadow: 0 0 10px rgba(48, 142, 222, 0.67);
  background-color: #fff;
}
.bankcard-wait-payment .block p {
  margin: 0;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 110%;
}
.bankcard-wait-payment .block p:last-of-type {
  margin: 0;
}
.bankcard-wait-payment .block form {
  display: none;
}

.good-deed {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.good-deed .swiper {
  padding-bottom: 10px;
}
.good-deed .swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
.good-deed .swiper .swiper-wrapper .swiper-slide .deed {
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  margin: 5px;
}
.good-deed .swiper .swiper-wrapper .swiper-slide .deed .image {
  width: 100%;
}
.good-deed .swiper .swiper-wrapper .swiper-slide .deed .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 5px;
  overflow: hidden;
}
.good-deed .swiper .swiper-wrapper .swiper-slide .deed .title {
  font-size: 16px;
  font-weight: 500;
  color: #5c5c5c;
  line-height: 110%;
  width: 100%;
}
.good-deed .swiper .swiper-wrapper .swiper-slide .deed .date {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  text-align: right;
  color: #5c5c5c;
  margin-top: auto;
}
.good-deed .swiper-button-prev,
.good-deed .swiper-button-next {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5c5c5c;
  border-radius: 100%;
  position: relative;
  left: unset;
  right: unset;
}
.good-deed .swiper-button-prev::after,
.good-deed .swiper-button-next::after {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 24px;
}

.good-deed-spec {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 20px;
}
.good-deed-spec .swiper {
  padding-bottom: 10px;
}
.good-deed-spec .swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
.good-deed-spec .swiper .swiper-wrapper .swiper-slide .specs {
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 10px;
  height: calc(100% - 70px);
  margin: 5px;
  margin-top: 70px;
}
.good-deed-spec .swiper .swiper-wrapper .swiper-slide .specs .image {
  width: 130px;
  height: 130px;
  margin-top: -70px;
}
.good-deed-spec .swiper .swiper-wrapper .swiper-slide .specs .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 100%;
  overflow: hidden;
}
.good-deed-spec .swiper .swiper-wrapper .swiper-slide .specs .title {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #2d8ee4;
  line-height: 110%;
  width: 100%;
}
.good-deed-spec .swiper .swiper-wrapper .swiper-slide .specs .spec {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: #5c5c5c;
  margin-top: auto;
}
.good-deed-spec .swiper-button-prev,
.good-deed-spec .swiper-button-next {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2d8ee4;
  border-radius: 100%;
  position: relative;
  left: unset;
  right: unset;
}
.good-deed-spec .swiper-button-prev::after,
.good-deed-spec .swiper-button-next::after {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 24px;
}

.table-payments {
  width: 100%;
  margin-top: 20px;
  font-size: 14px;
}
.table-payments thead {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.table-payments thead th {
  background-color: #2e8ee5;
  padding: 15px 10px;
  padding-right: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 110%;
}
.table-payments thead th:last-of-type {
  padding-right: 0;
}
.table-payments thead th:nth-child(1) {
  width: 100px;
}
.table-payments tbody tr:nth-child(even) {
  background-color: #f4f4f4;
}
.table-payments tbody td {
  padding: 5px 10px;
}
.table-payments tbody td hr {
  margin: 5px 0;
}
.table-payments .order-items-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.table-payments .order-items-price a.btn {
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 5px;
  margin-left: 10px;
  min-width: unset;
}
.table-payments .key {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  min-width: 100%;
  width: 100%;
}
.table-payments .key input {
  border: 1px solid #dadada;
  border-radius: 25px;
  padding: 10px 20px;
  outline: none;
  width: 100%;
}
.table-payments .key a {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 18px;
  height: 23px;
  background-image: url("../images/copy-icon.png");
  transition: all 0.1s ease-in-out;
}
.table-payments .key a:hover {
  box-shadow: 0 0 10px rgba(255, 148, 64, 0.3333333333);
}
.table-payments .key img {
  width: 100%;
  cursor: pointer;
}
.table-payments .order-items-row img {
  max-width: 100%;
}

.table-payments-history {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.table-payments-history .content {
  display: block !important;
  border-top: 1px solid #e0e0e0;
  padding-top: 20px !important;
  padding-right: 20px !important;
}
.table-payments-history .content h2 {
  font-size: 24px;
  color: #2e8ee5;
  font-weight: 600;
}
.table-payments-history .content p {
  font-size: 18px;
  color: #5c5c5c;
  line-height: 120%;
  margin-top: 20px;
}
.table-payments-history .image {
  margin-top: -50px;
}
.table-payments-history .image img {
  width: 100%;
}

.cards-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 10px;
  margin-top: 20px;
}
.cards-list .bank-card {
  background-color: transparent;
  border-radius: 5px;
  border: 2px solid transparent;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.1s ease;
  overflow: hidden;
  position: relative;
}
.cards-list .bank-card:has(> input:checked) {
  filter: unset;
  border-color: #ff9440;
}
.cards-list .bank-card:has(> input:checked)::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-size: 15px;
  font-weight: bold;
  line-height: 24px;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 5px;
  right: 5px;
  color: #fff;
  box-shadow: 0 0 10px #000;
  background-color: #ff9440;
}
.cards-list .bank-card:hover .delete {
  border-radius: 100%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 5px;
  right: 5px;
  color: #fff;
  box-shadow: 0 0 10px #000;
  background-color: #ff4040;
}
.cards-list .bank-card:hover .delete::after {
  content: "\f00d";
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
}
.cards-list .bank-card input {
  display: none;
}
.cards-list .bank-card img {
  display: block;
  max-width: 204px;
}
.cards-list .bank-card .card-data {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 12px;
}
.cards-list .bank-card .card-data .number {
  font-size: 16px;
  color: #fff;
  text-shadow: 1px 1px #5c5c5c;
  margin-bottom: 10px;
  text-align: center;
}
.cards-list .bank-card .card-data .name {
  color: #c2af59;
  font-size: 10px;
}

* {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

html {
  height: 100%;
}
html body.cabinet {
  min-width: 1580px;
}
html body.cabinet .sidebar {
  max-width: 320px;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100vh;
  background-color: #fff;
}
html body.cabinet .sidebar > div {
  padding-left: 40px;
}
html body.cabinet .sidebar .top {
  border-bottom: 1px solid #dadada;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: calc(var(--bs-gutter-x) / -2);
  margin-right: calc(var(--bs-gutter-x) / -2);
}
html body.cabinet .sidebar .top a.logo {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
html body.cabinet .sidebar .middle .menu {
  margin: 10px auto 40px;
}
html body.cabinet .sidebar .middle .menu .title {
  font-size: 16px;
  text-transform: uppercase;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #212529;
  text-decoration: none;
}
html body.cabinet .sidebar .middle .menu .title:hover, html body.cabinet .sidebar .middle .menu .title.active {
  font-weight: 500;
  letter-spacing: -0.1px;
}
html body.cabinet .sidebar .middle .menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
html body.cabinet .sidebar .middle .menu ul li {
  position: relative;
  z-index: 1;
}
html body.cabinet .sidebar .middle .menu ul li a {
  font-size: 16px;
  color: #575757;
  height: 45px;
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-content: flex-start;
  padding-left: 32px;
}
html body.cabinet .sidebar .middle .menu ul li a:hover {
  font-weight: 500;
  letter-spacing: -0.1px;
}
html body.cabinet .sidebar .middle .menu ul li a:hover * {
  font-weight: 500;
  letter-spacing: -0.2px;
}
html body.cabinet .sidebar .middle .menu ul li a:before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  margin-left: -32px;
  background-repeat: no-repeat;
  background-position: center;
}
html body.cabinet .sidebar .middle .menu ul li:before {
  content: "";
  position: absolute;
  left: -40px;
  width: 0px;
  height: 45px;
  background-color: #ff9440;
  transition: all 0.1s ease-in-out;
}
html body.cabinet .sidebar .middle .menu ul li:after {
  content: "\f054";
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: all 0.1s ease-in-out;
}
html body.cabinet .sidebar .middle .menu ul li:hover:before, html body.cabinet .sidebar .middle .menu ul li.active:before {
  width: 6px;
}
html body.cabinet .sidebar .middle .menu ul li:hover:after, html body.cabinet .sidebar .middle .menu ul li.active:after {
  right: 0;
}
html body.cabinet .sidebar .middle .menu ul li.profile a:before {
  background-image: url("../images/menu/menu-profile.png");
}
html body.cabinet .sidebar .middle .menu ul li.data a:before {
  background-image: url("../images/menu/menu-data.png");
}
html body.cabinet .sidebar .middle .menu ul li.settings a:before {
  background-image: url("../images/menu/menu-settings.png");
}
html body.cabinet .sidebar .middle .menu ul li.cards a:before {
  background-image: url("../images/menu/menu-cards.png");
}
html body.cabinet .sidebar .middle .menu.menu-v2 ul li a:after {
  background-color: #2e8ee5;
}
html body.cabinet .sidebar .middle .menu.menu-v2 ul li a::before {
  background-repeat: no-repeat;
  background-position: center;
}
html body.cabinet .sidebar .middle .menu.menu-v2 ul li a span {
  display: inline-block;
  color: #2e8ee5;
  margin-left: 5px;
}
html body.cabinet .sidebar .middle .menu.menu-v2 ul li:before {
  background-color: #2e8ee5;
}
html body.cabinet .sidebar .middle .menu.menu-v2 ul li.orders a:before {
  background-image: url("../images/menu/menu-orders.png");
}
html body.cabinet .sidebar .middle .menu.menu-v2 ul li.carma a:before {
  background-image: url("../images/menu/menu-carma.png");
}
html body.cabinet .sidebar .middle .menu.menu-v2 ul li.help a:before {
  background-image: url("../images/menu/menu-help.png");
}
html body.cabinet .sidebar .middle .menu.menu-v2 ul li.subscribe a:before {
  background-image: url("../images/menu/menu-subscribe.png");
}
html body.cabinet .sidebar .bottom {
  border-top: 1px solid #dadada;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: calc(var(--bs-gutter-x) / -2);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-top: auto;
}
html body.cabinet .sidebar .bottom p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #5c5c5c;
}
html body.cabinet .sidebar:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  background-color: #fff;
  z-index: -2;
}
html body.cabinet .content {
  width: calc(100% - 320px);
  padding-left: 30px;
}
html body.cabinet .content .top-mobile {
  display: none;
}
html body.cabinet .content .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
html body.cabinet .content .top .left,
html body.cabinet .content .top .right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
html body.cabinet .content .top .left .lang,
html body.cabinet .content .top .right .lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
html body.cabinet .content .top .left .lang li a,
html body.cabinet .content .top .right .lang li a {
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid #4e6e88;
  color: #4e6e88;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}
html body.cabinet .content .top .left .lang li a:hover, html body.cabinet .content .top .left .lang li a.active,
html body.cabinet .content .top .right .lang li a:hover,
html body.cabinet .content .top .right .lang li a.active {
  border: 1px solid #2e8ee5;
  color: #2e8ee5;
}
html body.cabinet .content .top .left .lang li a:hover,
html body.cabinet .content .top .right .lang li a:hover {
  transform: scale(1.1);
}
html body.cabinet .content .top .left .cabinet a,
html body.cabinet .content .top .right .cabinet a {
  background-color: #5c5c5c;
  color: #fff;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  transition: all 0.1s ease-in-out;
}
html body.cabinet .content .top .left .cabinet a:before,
html body.cabinet .content .top .right .cabinet a:before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 20px;
  height: 24px;
  background-image: url("../images/profile-icon.png");
}
html body.cabinet .content .top .left .cabinet a:hover,
html body.cabinet .content .top .right .cabinet a:hover {
  transform: scale(1.1);
}
html body.cabinet .content .top .left .cart a,
html body.cabinet .content .top .right .cart a {
  background-color: #2e8ee5;
  text-decoration: none;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  width: 48px;
  height: 48px;
  transition: all 0.1s ease-in-out;
}
html body.cabinet .content .top .left .cart a:before,
html body.cabinet .content .top .right .cart a:before {
  content: "";
  display: block;
  width: 28px;
  height: 26px;
  background-image: url("../images/cart-icon.png");
}
html body.cabinet .content .top .left .cart a:hover,
html body.cabinet .content .top .right .cart a:hover {
  transform: scale(1.1);
}
html body.cabinet .content .top .left .search-form,
html body.cabinet .content .top .right .search-form {
  display: flex;
  position: relative;
  border: 1px solid #5c5c5c;
  border-radius: 25px;
  padding: 10px;
  width: 300px;
  max-width: 100%;
}
html body.cabinet .content .top .left .search-form input,
html body.cabinet .content .top .right .search-form input {
  border: 0;
  background-color: transparent;
  outline: none;
  padding: 0 10px 0 20px;
}
html body.cabinet .content .top .left .search-form input::-moz-placeholder, html body.cabinet .content .top .right .search-form input::-moz-placeholder {
  font-size: 16px;
  color: #5c5c5c;
}
html body.cabinet .content .top .left .search-form input::placeholder,
html body.cabinet .content .top .right .search-form input::placeholder {
  font-size: 16px;
  color: #5c5c5c;
}
html body.cabinet .content .top .left .search-form input[type=submit],
html body.cabinet .content .top .right .search-form input[type=submit] {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #5c5c5c;
  font-size: 22px;
  font-family: "Font Awesome 6 Pro";
}
html body.cabinet .content .middle .block {
  background-color: #fff;
  padding: 30px 30px 25px;
  border-left: 5px solid #2e8ee5;
  margin-bottom: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
html body.cabinet .content .middle .block .title {
  font-size: 22px;
  font-weight: 500;
  color: #5b5b5b;
  margin-bottom: 10px;
  line-height: 130%;
}
html body.cabinet .content .middle .block .title span {
  color: #2e8ee5;
}
html body.cabinet .content .middle .block .title b {
  font-weight: 500;
  color: #ff9440;
}
html body.cabinet .content .middle .block .title.d-flex {
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 0;
  position: relative;
}
html body.cabinet .content .middle .block .title.d-flex:after {
  cursor: pointer;
  content: "\f054";
  font-family: "Font Awesome 6 Pro";
  font-size: 18px;
  color: #fff;
  background-color: #ff9440;
  width: 44px;
  height: 44px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
html body.cabinet .content .middle .block .sub-title {
  font-size: 18px;
  font-weight: 500;
  color: #5c5c5c;
  margin-bottom: 20px;
  line-height: 130%;
}
html body.cabinet .content .middle .block .content {
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  justify-content: space-between;
  grid-gap: 10px;
  margin-bottom: 20px;
}
html body.cabinet .content .middle .block .content .text-key-box,
html body.cabinet .content .middle .block .content .image-key-box {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
}
html body.cabinet .content .middle .block .content .text-key-box .key,
html body.cabinet .content .middle .block .content .image-key-box .key {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  min-width: 100%;
  width: 100%;
}
html body.cabinet .content .middle .block .content .text-key-box .key input,
html body.cabinet .content .middle .block .content .image-key-box .key input {
  border: 1px solid #dadada;
  border-radius: 25px;
  padding: 10px 20px;
  outline: none;
  width: 100%;
}
html body.cabinet .content .middle .block .content .text-key-box .key a,
html body.cabinet .content .middle .block .content .image-key-box .key a {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 18px;
  height: 23px;
  background-image: url("../images/copy-icon.png");
  transition: all 0.1s ease-in-out;
}
html body.cabinet .content .middle .block .content .text-key-box .key a:hover,
html body.cabinet .content .middle .block .content .image-key-box .key a:hover {
  box-shadow: 0 0 10px rgba(255, 148, 64, 0.3333333333);
}
html body.cabinet .content .middle .block .content .text-key-box .key img,
html body.cabinet .content .middle .block .content .image-key-box .key img {
  width: 100%;
  cursor: pointer;
}
html body.cabinet .content .middle .block .content .text-key-box .name,
html body.cabinet .content .middle .block .content .image-key-box .name {
  font-size: 14px;
  line-height: 120%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
html body.cabinet .content .middle .block .content .text {
  font-size: 16px;
  font-weight: 500;
  color: #5c5c5c;
}
html body.cabinet .content .middle .block .content .tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
html body.cabinet .content .middle .block .content .tags a {
  background-color: #f4f4f4;
  color: #5c5c5c;
  text-decoration: none;
  padding: 5px 20px;
  border-radius: 20px;
}
html body.cabinet .content .middle .block .content:last-of-type {
  margin-top: 20px;
}
html body.cabinet .content .middle .block .faq {
  margin-top: 20px;
  padding-bottom: 20px;
}
html body.cabinet .content .middle .block .faq ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
html body.cabinet .content .middle .block .faq ul li {
  border-top: 1px solid #d8d8d8;
  padding-top: 10px;
  position: relative;
  width: 100%;
}
html body.cabinet .content .middle .block .faq ul li .question {
  font-size: 16px;
  font-weight: 500;
  color: #464649;
  cursor: pointer;
  position: relative;
  padding-right: 50px;
}
html body.cabinet .content .middle .block .faq ul li .question::after {
  content: "+";
  font-family: "Font Awesome 6 Pro";
  font-size: 16px;
  font-weight: 400;
  width: 27px;
  height: 27px;
  color: #fff;
  background-color: #ff9440;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -2px;
  right: 0;
}
html body.cabinet .content .middle .block .faq ul li .answer {
  display: none;
  font-weight: 400px;
  line-height: 120%;
  padding-top: 10px;
  padding-bottom: 20px;
}
html body.cabinet .content .middle .block .faq ul li::before {
  content: "";
  width: 18px;
  height: 3px;
  background-color: #b1b1b1;
  position: absolute;
  left: 0;
  top: -2px;
  transition: all 0.2s ease;
}
html body.cabinet .content .middle .block .faq ul li.active .question::after {
  content: "\f00d";
  background-color: #5c5c5c;
}
html body.cabinet .content .middle .block .faq ul li.active .answer {
  display: block;
}
html body.cabinet .content .middle .block .faq ul li.active::before {
  content: "";
  width: 64px;
  height: 3px;
  background-color: #ff9440;
  position: absolute;
  left: 0;
  top: -2px;
}
html body.cabinet .content .middle .block.block-2 {
  border-color: #2e8ee5;
}
html body.cabinet .content .middle .block.block-2 {
  border-color: #ff9440;
}
html body.cabinet .content .middle .block.block-3 {
  border-color: #6e797d;
}
html body.cabinet .content .middle .block.transparent {
  padding: 5px 5px 5px 30px;
  background-color: transparent;
  box-shadow: unset;
}
html body.cabinet .content .middle .block.transparent .title {
  margin-bottom: 0;
}
html body.cabinet .content .bottom-mobile {
  display: none;
}
html body.cabinet form {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  justify-content: space-between;
}
html body.cabinet form .inputs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}
html body.cabinet form .inputs input[type=text] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 16px;
  height: 50px;
  padding: 10px;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  outline: none;
  transition: all 0.2s ease;
  background-repeat: no-repeat;
  background-position: 15px 50%;
}
html body.cabinet form .inputs input[type=text]:focus {
  border-color: #ff9440;
}
html body.cabinet form .inputs input[type=text]::-moz-placeholder {
  color: #5c5c5c;
}
html body.cabinet form .inputs input[type=text]::placeholder {
  color: #5c5c5c;
}
html body.cabinet form .inputs input[type=text][name=email], html body.cabinet form .inputs input[type=text].email {
  padding-left: 50px;
  background-image: url("../images/inputs/email-icon.png");
}
html body.cabinet form .inputs input[type=text][name=phone], html body.cabinet form .inputs input[type=text].phone {
  padding-left: 50px;
  background-image: url("../images/inputs/phone-icon.png");
}
html body.cabinet form .inputs input[type=text][name=name], html body.cabinet form .inputs input[type=text].name {
  padding-left: 50px;
  background-image: url("../images/inputs/user-icon.png");
}
html body.cabinet form .inputs input[type=text][name=promo], html body.cabinet form .inputs input[type=text].promo {
  padding-left: 50px;
  background-image: url("../images/inputs/promo-icon.png");
}
html body.cabinet form .inputs input[type=text][name=password], html body.cabinet form .inputs input[type=text].password {
  padding-left: 50px;
  background-image: url("../images/inputs/password-icon.png");
}
html body.cabinet form .inputs input[type=submit],
html body.cabinet form .inputs input[type=button] {
  background-color: #ff9440;
  border: 0;
  color: #fff;
  text-transform: uppercase;
  height: 50px;
  padding: 10px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  outline: none;
  transition: all 0.2s ease;
}
html body.cabinet form .inputs input[type=submit]:hover,
html body.cabinet form .inputs input[type=button]:hover {
  background-color: rgba(255, 148, 64, 0.8);
}
html body.cabinet form .inputs input[type=submit]:disabled,
html body.cabinet form .inputs input[type=button]:disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.8;
  background-color: rgba(255, 148, 64, 0.3333333333);
}
html body.cabinet form .inputs input[type=submit].back,
html body.cabinet form .inputs input[type=button].back {
  background-color: #308ede;
}
html body.cabinet form .inputs input[type=submit].back:hover,
html body.cabinet form .inputs input[type=button].back:hover {
  background-color: #5ca1dd;
}
html body.cabinet form .inputs [name^="itemData[code]"] + .code_icon {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
  background-image: url("../images/code/code-need.png");
  cursor: pointer;
}
html body.cabinet form .inputs [name^="itemData[code]"]:valid + .code_icon {
  background-image: url("../images/code/code-ok.png");
}
html body.cabinet form .inputs input.code_1 + .code_icon,
html body.cabinet form .inputs input.code_3 + .code_icon {
  right: 20px;
}
html body.cabinet form .inputs input.code_2 + .code_icon {
  right: 10px;
}
html body.cabinet form .inputs .add-more-items {
  border: 1px solid #ff9440;
  background-color: transparent;
  color: #ff9440;
  text-decoration: none;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.1s ease;
  position: relative;
}
html body.cabinet form .inputs .add-more-items::before {
  content: "+";
  font-weight: bold;
  font-family: "Font Awesome 6 Pro";
  color: #fff;
  background-color: #ff9440;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.1s ease;
}
html body.cabinet form .inputs .add-more-items:hover {
  background-color: #ff9440;
  color: #fff;
}
html body.cabinet form .inputs .add-more-items:hover::before {
  color: #ff9440;
  background-color: #fff;
}
html body.cabinet form .inputs .add-more-items .required_game {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 100%;
  top: 0;
  transform: translateX(-100%);
  z-index: -1;
}
html body.cabinet form .inputs .items .item {
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  padding: 10px;
}
html body.cabinet form .inputs .items .item .item-block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  position: relative;
}
html body.cabinet form .inputs .items .item .item-block .item-image {
  display: none;
  width: 210px;
}
html body.cabinet form .inputs .items .item .item-block .item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border: 1px solid #d8d8d8;
}
html body.cabinet form .inputs .items .item .item-block .item-info .item-title {
  font-size: 15px;
  font-weight: 400;
  color: #4f4f52;
  line-height: 120%;
  margin-bottom: 10px;
  padding-right: 25px;
}
html body.cabinet form .inputs .items .item .item-block .item-info .item-price {
  font-size: 18px;
  font-weight: 500;
  color: #ff9440;
}
html body.cabinet form .inputs .items .item .item-block .item-info .item-price b {
  font-weight: 500;
}
html body.cabinet form .inputs .items .item .item-block .item-info .item-price span {
  color: #000;
}
html body.cabinet form .inputs .items .item .item-block .item-info .item-price i {
  font-weight: 400;
  font-size: 17px;
}
html body.cabinet form .inputs .items .item .item-block .item-delete {
  position: absolute;
  right: 5px;
  top: 0;
  font-size: 16px;
  cursor: pointer;
  color: #757577;
  transition: all 0.1s ease;
}
html body.cabinet form .inputs .items .item .item-block .item-delete:hover {
  color: #9b3535;
}
html body.cabinet form .inputs .items-price {
  width: 100%;
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
html body.cabinet form .inputs .items-price .text {
  font-size: 18px;
  font-weight: 500;
  color: #5c5c5c;
}
html body.cabinet form .inputs .items-price .price {
  font-size: 18px;
  font-weight: 500;
  color: #ff9440;
}
html body.cabinet form .inputs .items-price .price span {
  color: #5c5c5c;
}
html body.cabinet form .inputs .items-price .price b {
  font-weight: 500;
}
html body.cabinet form .inputs .rows {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 20px;
}
html body.cabinet .accounts-connect {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
  margin-bottom: 20px;
}
html body.cabinet .accounts-connect li {
  width: -moz-fit-content;
  width: fit-content;
  border-right: 1px solid #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 110%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 10px;
  padding: 5px;
}
html body.cabinet .accounts-connect li:nth-child(1) {
  padding: 5px 10px;
  border-left: 1px solid #000;
}
html body.cabinet .accounts-connect li:nth-child(1) a.active::after {
  right: unset;
  left: 0;
}
html body.cabinet .accounts-connect li:nth-child(2) {
  padding: 5px 10px;
}
html body.cabinet .accounts-connect li a {
  font-size: 18px;
  text-decoration: none;
  color: #464649;
  font-weight: 500;
  position: relative;
}
html body.cabinet .accounts-connect li a img {
  width: 38px;
  height: 38px;
}
html body.cabinet .accounts-connect li a.active {
  pointer-events: none;
}
html body.cabinet .accounts-connect li a.active img {
  opacity: 0.6;
}
html body.cabinet .accounts-connect li a.active::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  color: #fff;
  background-color: #2e8ee5;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
}
html body.order {
  height: 100%;
  color: #464649;
  overflow-x: hidden;
}
html body.order > .container {
  min-height: 100%;
  height: 100%;
}
html body.order > .container > .row {
  height: 100%;
}
html body.order > .container > .row > .col-lg-5 {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
html body.order > .container > .row > .col-lg-5 > div {
  width: 100%;
}
html body.order > .container > .row > .col-lg-5 > div.top {
  margin-bottom: 50px;
}
html body.order > .container > .row > .col-lg-5 > div.content {
  padding-left: 1.5rem;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 50px;
}
html body.order > .container > .row > .col-lg-5 > div.content::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #ff9440;
  -webkit-clip-path: polygon(0 0, 100% 5px, 100% calc(100% - 5px), 0 100%);
          clip-path: polygon(0 0, 100% 5px, 100% calc(100% - 5px), 0 100%);
}
html body.order > .container > .row > .col-lg-5 > div.content.blue::before {
  background-color: #308ede;
}
html body.order > .container > .row > .col-lg-5 > div.content.grey::before {
  background-color: #5b5b5b;
}
html body.order > .container > .row > .col-lg-5 > div.content .order-title,
html body.order > .container > .row > .col-lg-5 > div.content .order-description {
  font-size: 18px;
  color: #464649;
  line-height: 110%;
}
html body.order > .container > .row > .col-lg-5 > div.content .order-title span,
html body.order > .container > .row > .col-lg-5 > div.content .order-description span {
  display: block;
  color: #308ede;
}
html body.order > .container > .row > .col-lg-5 > div.content .order-title.bold, html body.order > .container > .row > .col-lg-5 > div.content .order-title.bold *,
html body.order > .container > .row > .col-lg-5 > div.content .order-description.bold,
html body.order > .container > .row > .col-lg-5 > div.content .order-description.bold * {
  font-size: 22px;
  font-weight: 600;
}
html body.order > .container > .row > .col-lg-5 > div.content .order-sum {
  font-size: 30px;
  font-weight: 500;
  color: #464649;
}
html body.order > .container > .row > .col-lg-5 > div.content.transparent {
  padding-left: 0;
}
html body.order > .container > .row > .col-lg-5 > div.content.transparent::before {
  background-color: transparent;
}
html body.order > .container > .row > .col-lg-5 > div.content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
html body.order > .container > .row > .col-lg-5 > div.content ul li {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}
html body.order > .container > .row > .col-lg-5 > div.content ul li .icon {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
html body.order > .container > .row > .col-lg-5 > div.content ul li .text {
  font-size: 18px;
}
html body.order > .container > .row > .col-lg-5 > div.bottom {
  display: flex;
  gap: 10px;
  font-size: 15px;
  margin-top: auto;
}
html body.order > .container > .row > .col-lg-5.right {
  padding-right: 1.5rem;
  height: 100vh;
  min-height: 656px;
}
html body.order > .container > .row > .col-lg-5.right::after {
  content: "";
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  margin-left: -1.5rem;
  background-color: #eff2f5;
  z-index: -1;
}
html body.order > .container > .row > .col-lg-7 {
  padding-top: 20px;
  padding-left: 40px;
}
html body.order > .container > .row > .col-lg-2 {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
html body.order > .container > .row > .col-lg-2 .title {
  margin-left: 0;
  padding-left: 1.5rem;
}
html body.order > .container .title {
  position: relative;
  font-weight: 500;
  font-size: 20px;
  margin-left: -1.5rem;
  padding-left: 1.5rem;
  color: #5c5c5c;
  display: flex;
  height: 45px;
  margin-top: 30px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: flex-start;
}
html body.order > .container .title:first-of-type {
  margin-top: 7px;
}
html body.order > .container .title::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 50px;
  left: 0;
  background-color: #ff9440;
  -webkit-clip-path: polygon(0 0, 100% 5px, 100% calc(100% - 5px), 0 100%);
          clip-path: polygon(0 0, 100% 5px, 100% calc(100% - 5px), 0 100%);
}
html body.order > .container .title.blue::before {
  background-color: #308ede;
}
html body.order > .container .title.grey::before {
  background-color: #5b5b5b;
}
html body.order > .container .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
html body.order > .container .top .logo {
  display: block;
}
html body.order > .container .top .logo img {
  width: 100%;
}
html body.order > .container .top .lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 20px 0;
  padding: 0;
  list-style: none;
}
html body.order > .container .top .lang li {
  border-radius: 100%;
  border: 1px solid #308ede;
  transition: all 0.1s ease;
}
html body.order > .container .top .lang li a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  color: #308ede;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 100%;
}
html body.order > .container .top .lang li.active, html body.order > .container .top .lang li:hover {
  background-color: #308ede;
}
html body.order > .container .top .lang li.active a, html body.order > .container .top .lang li:hover a {
  color: #fff;
}
html body.order > .container .gap {
  gap: 20px 0;
  flex-direction: row-reverse;
}
html body.order > .container .payment {
  background-color: #fff;
  border-radius: 5px;
  border: 2px solid #d8d8d8;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  filter: grayscale(1);
  transition: all 0.1s ease;
}
html body.order > .container .payment img {
  max-width: 100%;
  max-height: 110px;
}
html body.order > .container .payment input {
  display: none;
}
html body.order > .container .payment.active, html body.order > .container .payment:hover, html body.order > .container .payment:has(> input:checked) {
  filter: unset;
  border-color: #ff9440;
}
html body.order > .container .bank-card {
  background-color: transparent;
  border-radius: 5px;
  border: 2px solid transparent;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.1s ease;
  overflow: hidden;
  position: relative;
}
html body.order > .container .bank-card img {
  display: block;
  max-width: 204px;
}
html body.order > .container .bank-card img.brand-logo {
  position: absolute;
  right: 10px;
  top: 10px;
  height: 30px;
}
html body.order > .container .bank-card input {
  display: none;
}
html body.order > .container .bank-card .card-data {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 12px;
}
html body.order > .container .bank-card .card-data .number {
  font-size: 16px;
  color: #fff;
  text-shadow: 1px 1px #5c5c5c;
  margin-bottom: 10px;
  text-align: center;
}
html body.order > .container .bank-card .card-data .name {
  color: #c2af59;
  font-size: 10px;
}
html body.order > .container .bank-card:hover .delete {
  border-radius: 100%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 5px;
  right: 5px;
  color: #fff;
  box-shadow: 0 0 10px #000;
  background-color: #ff4040;
}
html body.order > .container .bank-card:hover .delete::after {
  content: "\f00d";
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
}
html body.order > .container .bank-card:has(> input:checked) {
  filter: unset;
  border-color: #ff9440;
}
html body.order > .container .bank-card:has(> input:checked)::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-size: 15px;
  font-weight: bold;
  line-height: 24px;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 5px;
  right: 5px;
  color: #fff;
  box-shadow: 0 0 10px #000;
  background-color: #ff9440;
}
html body.order > .container form {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  justify-content: space-between;
}
html body.order > .container form .inputs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}
html body.order > .container form .inputs input[type=text] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 16px;
  height: 50px;
  padding: 10px;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  outline: none;
  transition: all 0.2s ease;
  background-repeat: no-repeat;
  background-position: 15px 50%;
}
html body.order > .container form .inputs input[type=text]:focus:not([readonly]) {
  border-color: #ff9440;
  background-color: #ff944011;
}
html body.order > .container form .inputs input[type=text]::-moz-placeholder {
  color: #5c5c5c;
}
html body.order > .container form .inputs input[type=text]::placeholder {
  color: #5c5c5c;
}
html body.order > .container form .inputs input[type=text][name=email], html body.order > .container form .inputs input[type=text].email {
  padding-left: 50px;
  background-image: url("../images/inputs/email-icon.png");
}
html body.order > .container form .inputs input[type=text][name=phone], html body.order > .container form .inputs input[type=text].phone {
  padding-left: 50px;
  background-image: url("../images/inputs/phone-icon.png");
}
html body.order > .container form .inputs input[type=text][name=name], html body.order > .container form .inputs input[type=text].name {
  padding-left: 50px;
  background-image: url("../images/inputs/user-icon.png");
}
html body.order > .container form .inputs input[type=text][name=promo], html body.order > .container form .inputs input[type=text].promo {
  padding-left: 50px;
  background-image: url("../images/inputs/promo-icon.png");
}
html body.order > .container form .inputs input[type=text][name=password], html body.order > .container form .inputs input[type=text].password {
  padding-left: 50px;
  background-image: url("../images/inputs/password-icon.png");
}
html body.order > .container form .inputs input[type=submit],
html body.order > .container form .inputs input[type=button] {
  background-color: #ff9440;
  border: 0;
  color: #fff;
  text-transform: uppercase;
  height: 50px;
  padding: 10px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  outline: none;
  transition: all 0.2s ease;
}
html body.order > .container form .inputs input[type=submit]:hover,
html body.order > .container form .inputs input[type=button]:hover {
  background-color: rgba(255, 148, 64, 0.8);
}
html body.order > .container form .inputs input[type=submit]:disabled,
html body.order > .container form .inputs input[type=button]:disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.8;
  background-color: rgba(255, 148, 64, 0.3333333333);
}
html body.order > .container form .inputs input[type=submit].back,
html body.order > .container form .inputs input[type=button].back {
  background-color: #308ede;
}
html body.order > .container form .inputs input[type=submit].back:hover,
html body.order > .container form .inputs input[type=button].back:hover {
  background-color: #5ca1dd;
}
html body.order > .container form .inputs [name^="itemData[code]"] + .code_icon {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
  background-image: url("../images/code/code-need.png");
  cursor: pointer;
}
html body.order > .container form .inputs [name^="itemData[code]"]:valid + .code_icon {
  background-image: url("../images/code/code-ok.png");
}
html body.order > .container form .inputs input.code_1 + .code_icon,
html body.order > .container form .inputs input.code_3 + .code_icon {
  right: 20px;
}
html body.order > .container form .inputs input.code_2 + .code_icon {
  right: 10px;
}
html body.order > .container form .inputs .add-more-items {
  border: 1px solid #ff9440;
  background-color: transparent;
  color: #ff9440;
  text-decoration: none;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.1s ease;
  position: relative;
}
html body.order > .container form .inputs .add-more-items::before {
  content: "+";
  font-weight: bold;
  font-family: "Font Awesome 6 Pro";
  color: #fff;
  background-color: #ff9440;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.1s ease;
}
html body.order > .container form .inputs .add-more-items:hover {
  background-color: #ff9440;
  color: #fff;
}
html body.order > .container form .inputs .add-more-items:hover::before {
  color: #ff9440;
  background-color: #fff;
}
html body.order > .container form .inputs .add-more-items .required_game {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 100%;
  top: 0;
  transform: translateX(-100%);
  z-index: -1;
}
html body.order > .container form .inputs .items .item {
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  padding: 10px;
}
html body.order > .container form .inputs .items .item .item-block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  position: relative;
}
html body.order > .container form .inputs .items .item .item-block .item-image {
  display: none;
  width: 210px;
}
html body.order > .container form .inputs .items .item .item-block .item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border: 1px solid #d8d8d8;
}
html body.order > .container form .inputs .items .item .item-block .item-info .item-title {
  font-size: 15px;
  font-weight: 400;
  color: #4f4f52;
  line-height: 120%;
  margin-bottom: 10px;
  padding-right: 25px;
}
html body.order > .container form .inputs .items .item .item-block .item-info .item-price {
  font-size: 18px;
  font-weight: 500;
  color: #ff9440;
}
html body.order > .container form .inputs .items .item .item-block .item-info .item-price b {
  font-weight: 500;
}
html body.order > .container form .inputs .items .item .item-block .item-info .item-price span {
  color: #000;
}
html body.order > .container form .inputs .items .item .item-block .item-info .item-price i {
  font-weight: 400;
  font-size: 17px;
}
html body.order > .container form .inputs .items .item .item-block .item-delete {
  position: absolute;
  right: 5px;
  top: 0;
  font-size: 16px;
  cursor: pointer;
  color: #757577;
  transition: all 0.1s ease;
}
html body.order > .container form .inputs .items .item .item-block .item-delete:hover {
  color: #9b3535;
}
html body.order > .container form .inputs .items-price {
  width: 100%;
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
html body.order > .container form .inputs .items-price .text {
  font-size: 18px;
  font-weight: 500;
  color: #5c5c5c;
}
html body.order > .container form .inputs .items-price .price {
  font-size: 18px;
  font-weight: 500;
  color: #ff9440;
}
html body.order > .container form .inputs .items-price .price span {
  color: #5c5c5c;
}
html body.order > .container form .inputs .items-price .price b {
  font-weight: 500;
}
html body.order > .container form .inputs .rows {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 20px;
}
html body.order > .container .auth-block {
  width: -moz-fit-content !important;
  width: fit-content !important;
  margin-bottom: 50px;
  min-width: 450px;
  max-width: 490px;
  margin-top: 10px;
}
html body.order > .container .auth-block .title {
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #308ede;
  padding: 0 1.5rem;
  color: #fff;
  font-size: 22px;
  position: relative;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
html body.order > .container .auth-block .title::before {
  content: "";
  position: absolute;
  left: 0;
  top: -9px;
  margin: -20px;
  background-color: #308ede;
  border: 0;
  width: 100%;
  height: 10px;
  margin: 0;
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
}
html body.order > .container .auth-block .title::after {
  content: "";
  position: absolute;
  right: -9px;
  bottom: -1px;
  margin: -20px;
  background-color: #308ede;
  border: 0;
  width: 10px;
  height: 100%;
  margin: 0;
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
}
html body.order > .container .auth-block .block {
  padding: 1.5rem 18px;
  border: 5px solid #308ede;
  box-shadow: 0 0 10px rgba(48, 142, 222, 0.6666666667);
}
html body.order > .container .auth-block .block p {
  margin: 0;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 110%;
}
html body.order > .container .auth-block .block form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  margin-bottom: 20px;
}
html body.order > .container .auth-block .block form .form-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
}
html body.order > .container .auth-block .block form .form-row input {
  font-size: 15px;
  color: #000;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  line-height: 110%;
  padding: 12px 20px;
  outline: none;
  box-shadow: unset;
  flex: 1;
  transition: border-color 0.2s ease;
}
html body.order > .container .auth-block .block form .form-row input::-moz-placeholder {
  color: #464649;
}
html body.order > .container .auth-block .block form .form-row input::placeholder {
  color: #464649;
}
html body.order > .container .auth-block .block form .form-row input:focus {
  border-color: #308ede;
}
html body.order > .container .auth-block .block form .form-row input[type=submit] {
  background-color: #308ede;
  color: #fff;
  border: 0;
  flex: unset;
  padding: 12px 30px;
  transition: background-color 0.2s ease;
}
html body.order > .container .auth-block .block form .form-row input[type=submit]:hover, html body.order > .container .auth-block .block form .form-row input[type=submit]:active {
  background-color: #2575bb;
}
html body.order > .container .auth-block .block form .form-row input[type=checkbox] {
  width: 0px;
  height: 0px;
  line-height: 100%;
  margin-top: -18px;
  margin-right: 0;
  display: block;
  border: 0;
  box-shadow: unset;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  padding: 0;
  padding-right: 20px;
}
html body.order > .container .auth-block .block form .form-row input[type=checkbox]:before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 100%;
  font-weight: 600;
  font-size: 14px;
  font-family: "Font Awesome 6 Pro";
  color: #308ede;
  min-width: 18px;
  min-height: 18px;
  border-radius: 2px;
  border: 1px solid #d8d8d8;
}
html body.order > .container .auth-block .block form .form-row input[type=checkbox]:checked:before {
  content: "\f00c";
}
html body.order > .container .auth-block .block form .form-row label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
html body.order > .container .auth-block .block form .auth-back {
  width: 100%;
  backface-visibility: hidden;
  align-items: center;
  justify-content: flex-start;
  margin-top: 10px;
}
html body.order > .container .auth-block .block form .auth-back a {
  font-size: 16px;
  color: #308ede;
}
html body.order > .container .auth-block .block form .auth-back a i {
  margin-right: 5px;
}
html body.order > .container .auth-block .block ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
}
html body.order > .container .auth-block .block ul li {
  width: -moz-fit-content;
  width: fit-content;
  border-right: 1px solid #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 110%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 10px;
  padding: 5px;
}
html body.order > .container .auth-block .block ul li:last-of-type {
  border: 0;
}
html body.order > .container .auth-block .block ul li:nth-child(1) {
  padding: 5px 10px 5px 0;
}
html body.order > .container .auth-block .block ul li:nth-child(2) {
  padding: 5px 10px;
}
html body.order > .container .auth-block .block ul li:nth-child(3) {
  padding: 5px 0 5px 10px;
}
html body.order > .container .auth-block .block ul li a {
  font-size: 12px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}
html body.order > .container .auth-block .block ul li a img {
  transition: all 0.2s ease;
}
html body.order > .container .auth-block .block ul li a:hover img {
  opacity: 0.8;
}
html body.order > .container .user-profile {
  width: -moz-fit-content !important;
  width: fit-content !important;
  min-width: 450px;
  box-shadow: 0 0 10px rgba(48, 142, 222, 0.2);
  position: relative;
  padding: 20px;
  padding-left: 140px;
  margin-top: 25px;
  margin-bottom: 50px;
}
html body.order > .container .user-profile .image {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(15px, 15px);
  width: 106px;
  height: 106px;
}
html body.order > .container .user-profile .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
html body.order > .container .user-profile .profile-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 5px;
}
html body.order > .container .user-profile .profile-row .var {
  font-size: 16px;
  font-weight: 600;
}
html body.order > .container .user-profile .profile-row .val {
  font-size: 16px;
}
html body.order > .container .user-profile .profile-button {
  margin-top: 15px;
}
html body.auth {
  background-image: url("../images/e-auth-bg.png");
  background-size: 120%;
  background-position: top center;
}
html body.auth header {
  padding-top: 15px;
}
html body.auth header .lang {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
html body.auth header .lang a {
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid #4e6e88;
  color: #4e6e88;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}
html body.auth header .lang a.active, html body.auth header .lang a:hover {
  border: 1px solid #2e8ee5;
  color: #fff;
  background-color: #2e8ee5;
}
html body.auth header .lang a:hover {
  transform: scale(1.1);
}
html body.auth main {
  height: calc(100vh - 66px);
  display: flex;
  align-items: center;
  justify-content: center;
}
html body.auth main .auth-block {
  width: -moz-fit-content !important;
  width: fit-content !important;
  margin-bottom: 50px;
  min-width: 450px;
  margin-top: 10px;
}
html body.auth main .auth-block .title {
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #308ede;
  padding: 0 1.5rem;
  color: #fff;
  font-size: 22px;
  position: relative;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
html body.auth main .auth-block .title::before {
  content: "";
  position: absolute;
  left: 0;
  top: -9px;
  margin: -20px;
  background-color: #308ede;
  border: 0;
  width: 100%;
  height: 10px;
  margin: 0;
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
}
html body.auth main .auth-block .title::after {
  content: "";
  position: absolute;
  right: -9px;
  bottom: -1px;
  margin: -20px;
  background-color: #308ede;
  border: 0;
  width: 10px;
  height: 100%;
  margin: 0;
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
}
html body.auth main .auth-block .block {
  background-color: #fff;
  padding: 1.5rem 18px;
  border: 5px solid #308ede;
  box-shadow: 0 0 10px rgba(48, 142, 222, 0.6666666667);
}
html body.auth main .auth-block .block p {
  margin: 0;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 110%;
}
html body.auth main .auth-block .block form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  margin-bottom: 20px;
}
html body.auth main .auth-block .block form .form-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
}
html body.auth main .auth-block .block form .form-row input {
  font-size: 15px;
  color: #000;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  line-height: 110%;
  padding: 12px 20px;
  outline: none;
  box-shadow: unset;
  flex: 1;
  transition: border-color 0.2s ease;
}
html body.auth main .auth-block .block form .form-row input::-moz-placeholder {
  color: #464649;
}
html body.auth main .auth-block .block form .form-row input::placeholder {
  color: #464649;
}
html body.auth main .auth-block .block form .form-row input:focus {
  border-color: #308ede;
}
html body.auth main .auth-block .block form .form-row input[type=submit] {
  background-color: #308ede;
  color: #fff;
  border: 0;
  flex: unset;
  padding: 12px 30px;
  transition: background-color 0.2s ease;
}
html body.auth main .auth-block .block form .form-row input[type=submit]:hover, html body.auth main .auth-block .block form .form-row input[type=submit]:active {
  background-color: #2575bb;
}
html body.auth main .auth-block .block form .form-row input[type=checkbox] {
  width: 0px;
  height: 0px;
  line-height: 100%;
  margin-top: -18px;
  margin-right: 0;
  display: block;
  border: 0;
  box-shadow: unset;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  padding: 0;
  padding-right: 20px;
}
html body.auth main .auth-block .block form .form-row input[type=checkbox]:before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 100%;
  font-weight: 600;
  font-size: 14px;
  font-family: "Font Awesome 6 Pro";
  color: #308ede;
  min-width: 18px;
  min-height: 18px;
  border-radius: 2px;
  border: 1px solid #d8d8d8;
}
html body.auth main .auth-block .block form .form-row input[type=checkbox]:checked:before {
  content: "\f00c";
}
html body.auth main .auth-block .block form .form-row label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
html body.auth main .auth-block .block form .auth-back {
  width: 100%;
  backface-visibility: hidden;
  align-items: center;
  justify-content: flex-start;
  margin-top: 10px;
}
html body.auth main .auth-block .block form .auth-back a {
  font-size: 16px;
  color: #308ede;
}
html body.auth main .auth-block .block form .auth-back a i {
  margin-right: 5px;
}
html body.auth main .auth-block .block ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
}
html body.auth main .auth-block .block ul li {
  width: -moz-fit-content;
  width: fit-content;
  border-right: 1px solid #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 110%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 10px;
  padding: 5px;
}
html body.auth main .auth-block .block ul li:last-of-type {
  border: 0;
}
html body.auth main .auth-block .block ul li:nth-child(1) {
  padding: 5px 10px 5px 0;
}
html body.auth main .auth-block .block ul li:nth-child(2) {
  padding: 5px 10px;
}
html body.auth main .auth-block .block ul li:nth-child(3) {
  padding: 5px 0 5px 10px;
}
html body.auth main .auth-block .block ul li a {
  font-size: 12px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}
html body.auth main .auth-block .block ul li a img {
  transition: all 0.2s ease;
}
html body.auth main .auth-block .block ul li a:hover img {
  opacity: 0.8;
}
html body.auth main .col-6:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
html body.auth main .content {
  padding-left: 1.5rem;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 50px;
}
html body.auth main .content::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #ff9440;
  -webkit-clip-path: polygon(0 0, 100% 5px, 100% calc(100% - 5px), 0 100%);
          clip-path: polygon(0 0, 100% 5px, 100% calc(100% - 5px), 0 100%);
}
html body.auth main .content.blue::before {
  background-color: #308ede;
}
html body.auth main .content.grey::before {
  background-color: #5b5b5b;
}
html body.auth main .content .order-title,
html body.auth main .content .order-description {
  font-size: 18px;
  color: #464649;
  line-height: 110%;
}
html body.auth main .content .order-title span,
html body.auth main .content .order-description span {
  color: #308ede;
}
html body.auth main .content .order-title.bold, html body.auth main .content .order-title.bold *,
html body.auth main .content .order-description.bold,
html body.auth main .content .order-description.bold * {
  font-size: 22px;
  font-weight: 600;
}
html body.auth main .content .order-sum {
  font-size: 30px;
  font-weight: 500;
  color: #464649;
}
html body.auth main .content.transparent {
  padding-left: 0;
}
html body.auth main .content.transparent::before {
  background-color: transparent;
}
html body.auth main .content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
html body.auth main .content ul li {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}
html body.auth main .content ul li .icon {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
html body.auth main .content ul li .text {
  font-size: 18px;
}
html body.auth main .content:nth-child(2) {
  margin-bottom: 0;
}
html .auth-block .title {
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #308ede;
  padding: 0 1.5rem;
  color: #fff;
  font-size: 22px;
  position: relative;
}
html .auth-block .title::before {
  content: "";
  position: absolute;
  left: 0;
  top: -9px;
  margin: -20px;
  background-color: #308ede;
  border: 0;
  width: 100%;
  height: 10px;
  margin: 0;
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
}
html .auth-block .title::after {
  content: "";
  position: absolute;
  right: -9px;
  bottom: -1px;
  margin: -20px;
  background-color: #308ede;
  border: 0;
  width: 10px;
  height: 100%;
  margin: 0;
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
}
html .auth-block .block p {
  margin: 0;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 110%;
}
html .auth-block .block form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  margin-bottom: 20px;
}
html .auth-block .block form .form-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
}
html .auth-block .block form .form-row input {
  font-size: 15px;
  color: #000;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  line-height: 110%;
  padding: 12px 20px;
  outline: none;
  box-shadow: unset;
  flex: 1;
  transition: border-color 0.2s ease;
}
html .auth-block .block form .form-row input::-moz-placeholder {
  color: #464649;
}
html .auth-block .block form .form-row input::placeholder {
  color: #464649;
}
html .auth-block .block form .form-row input:focus {
  border-color: #308ede;
}
html .auth-block .block form .form-row input[type=submit] {
  background-color: #308ede;
  color: #fff;
  border: 0;
  flex: unset;
  padding: 12px 30px;
  transition: background-color 0.2s ease;
}
html .auth-block .block form .form-row input[type=submit]:hover, html .auth-block .block form .form-row input[type=submit]:active {
  background-color: #2575bb;
}
html .auth-block .block form .form-row input[type=checkbox] {
  width: 0px;
  height: 0px;
  line-height: 100%;
  margin-top: -18px;
  margin-right: 0;
  display: block;
  border: 0;
  box-shadow: unset;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  padding: 0;
  padding-right: 20px;
}
html .auth-block .block form .form-row input[type=checkbox]:before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 100%;
  font-weight: 600;
  font-size: 14px;
  font-family: "Font Awesome 6 Pro";
  color: #308ede;
  min-width: 18px;
  min-height: 18px;
  border-radius: 2px;
  border: 1px solid #d8d8d8;
}
html .auth-block .block form .form-row input[type=checkbox]:checked:before {
  content: "\f00c";
}
html .auth-block .block form .form-row label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
html .auth-block .block ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
}
html .auth-block .block ul li {
  width: -moz-fit-content;
  width: fit-content;
  border-right: 1px solid #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 110%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 10px;
  padding: 5px;
}
html .auth-block .block ul li:last-of-type {
  border: 0;
}
html .auth-block .block ul li:nth-child(1) {
  padding: 5px 10px 5px 0;
}
html .auth-block .block ul li:nth-child(2) {
  padding: 5px 10px;
}
html .auth-block .block ul li:nth-child(3) {
  padding: 5px 0 5px 10px;
}
html .auth-block .block ul li a {
  font-size: 12px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}
html .auth-block .block ul li a img {
  width: 25px;
  height: 25px;
}
html .auth-block .block[data-step="2"] {
  display: none;
}
html .auth-block .block[data-step="2"] form .form-row input[type=text],
html .auth-block .block[data-step="2"] form .form-row input[type=number] {
  width: 32px;
  padding-left: 5px !important;
  padding-right: 5px !important;
  box-sizing: border-box;
  text-align: center;
  -moz-appearance: textfield;
}
html .auth-block .block[data-step="2"] form .form-row input[type=text]::-webkit-outer-spin-button, html .auth-block .block[data-step="2"] form .form-row input[type=text]::-webkit-inner-spin-button,
html .auth-block .block[data-step="2"] form .form-row input[type=number]::-webkit-outer-spin-button,
html .auth-block .block[data-step="2"] form .form-row input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
html .auth-block .block[data-step="2"] form .form-row input[type=submit] {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
html .auth-block .block[data-step="2"] form .auth-back {
  width: 100%;
  backface-visibility: hidden;
  align-items: center;
  justify-content: flex-start;
  margin-top: 10px;
}
html .auth-block .block[data-step="2"] form .auth-back a {
  font-size: 16px;
  color: #308ede;
}
html .auth-block .block[data-step="2"] form .auth-back a i {
  margin-right: 5px;
}
html .user-profile {
  width: -moz-fit-content !important;
  width: fit-content !important;
  min-width: 450px;
  box-shadow: 0 0 10px rgba(48, 142, 222, 0.2);
  position: relative;
  padding: 20px;
  padding-left: 140px;
  margin-top: 25px;
  margin-bottom: 50px;
}
html .user-profile .image {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-30px);
  width: 106px;
  height: 106px;
}
html .user-profile .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
html .user-profile .profile-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 5px;
}
html .user-profile .profile-row .var {
  font-size: 16px;
  font-weight: 600;
}
html .user-profile .profile-row .val {
  font-size: 16px;
}
html .user-profile .profile-button {
  margin-top: 15px;
}
html .overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
  z-index: 10;
}
html .overlay .wrapper,
html .overlay .wrapper-agit,
html .overlay .wrapper-agit-promo {
  display: none;
  min-width: 300px;
  min-height: 300px;
  background-color: #fff;
  border-left: 7px solid #308ede;
  padding: 30px;
  position: relative;
}
html .overlay .wrapper .close,
html .overlay .wrapper-agit .close,
html .overlay .wrapper-agit-promo .close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  line-height: 100%;
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}
html .overlay .wrapper .close:before,
html .overlay .wrapper-agit .close:before,
html .overlay .wrapper-agit-promo .close:before {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Font Awesome 6 Pro";
  content: "\f00d";
  font-size: 32px;
  line-height: 100%;
  color: #000;
}
html .overlay .wrapper .title,
html .overlay .wrapper-agit .title,
html .overlay .wrapper-agit-promo .title {
  font-size: 22px;
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 20px;
  padding-right: 30px;
}
html .overlay .wrapper .title span,
html .overlay .wrapper-agit .title span,
html .overlay .wrapper-agit-promo .title span {
  line-height: 110%;
  font-weight: 600;
  display: block;
  color: #308ede;
}
html .overlay .wrapper .text,
html .overlay .wrapper-agit .text,
html .overlay .wrapper-agit-promo .text {
  height: calc(100vh - 225px);
  padding-right: 10px;
  overflow: auto;
}
html .overlay .wrapper .text h1,
html .overlay .wrapper-agit .text h1,
html .overlay .wrapper-agit-promo .text h1 {
  font-size: 24px;
  text-align: center;
}
html .overlay .wrapper .text h2,
html .overlay .wrapper-agit .text h2,
html .overlay .wrapper-agit-promo .text h2 {
  font-size: 18px;
}
html .overlay .wrapper .text img,
html .overlay .wrapper-agit .text img,
html .overlay .wrapper-agit-promo .text img {
  max-width: 100%;
  margin-bottom: 10px;
  display: block;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
html .overlay .wrapper p,
html .overlay .wrapper-agit p,
html .overlay .wrapper-agit-promo p {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
  line-height: 120%;
  font-size: 15px;
}
html .overlay .wrapper form,
html .overlay .wrapper-agit form,
html .overlay .wrapper-agit-promo form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  margin-bottom: 20px;
}
html .overlay .wrapper form .form-row,
html .overlay .wrapper-agit form .form-row,
html .overlay .wrapper-agit-promo form .form-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
}
html .overlay .wrapper form .form-row input,
html .overlay .wrapper-agit form .form-row input,
html .overlay .wrapper-agit-promo form .form-row input {
  font-size: 15px;
  color: #000;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  line-height: 110%;
  padding: 12px 20px;
  outline: none;
  box-shadow: unset;
  flex: 1;
  transition: border-color 0.2s ease;
}
html .overlay .wrapper form .form-row input:focus,
html .overlay .wrapper-agit form .form-row input:focus,
html .overlay .wrapper-agit-promo form .form-row input:focus {
  border-color: #308ede;
}
html .overlay .wrapper form .form-row input[type=submit],
html .overlay .wrapper-agit form .form-row input[type=submit],
html .overlay .wrapper-agit-promo form .form-row input[type=submit] {
  background-color: #308ede;
  color: #fff;
  border: 0;
  flex: unset;
  padding: 12px 30px;
  transition: background-color 0.2s ease;
}
html .overlay .wrapper form .form-row input[type=submit]:hover,
html .overlay .wrapper-agit form .form-row input[type=submit]:hover,
html .overlay .wrapper-agit-promo form .form-row input[type=submit]:hover {
  background-color: #2575bb;
}
html .overlay .wrapper form .form-row input[type=checkbox],
html .overlay .wrapper-agit form .form-row input[type=checkbox],
html .overlay .wrapper-agit-promo form .form-row input[type=checkbox] {
  width: 0px;
  height: 0px;
  line-height: 100%;
  margin-top: -18px;
  margin-right: 0;
  display: block;
  border: 0;
  box-shadow: unset;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  padding: 0;
  padding-right: 20px;
}
html .overlay .wrapper form .form-row input[type=checkbox]:before,
html .overlay .wrapper-agit form .form-row input[type=checkbox]:before,
html .overlay .wrapper-agit-promo form .form-row input[type=checkbox]:before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 100%;
  font-weight: 600;
  font-size: 14px;
  font-family: "Font Awesome 6 Pro";
  color: #308ede;
  min-width: 18px;
  min-height: 18px;
  border-radius: 2px;
  border: 1px solid #d8d8d8;
}
html .overlay .wrapper form .form-row input[type=checkbox]:checked:before,
html .overlay .wrapper-agit form .form-row input[type=checkbox]:checked:before,
html .overlay .wrapper-agit-promo form .form-row input[type=checkbox]:checked:before {
  content: "\f00c";
}
html .overlay .wrapper form .form-row label,
html .overlay .wrapper-agit form .form-row label,
html .overlay .wrapper-agit-promo form .form-row label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
html .overlay .wrapper .auth-form,
html .overlay .wrapper-agit .auth-form,
html .overlay .wrapper-agit-promo .auth-form {
  display: none;
  max-width: 475px;
}
html .overlay .wrapper .add-bank-card,
html .overlay .wrapper-agit .add-bank-card,
html .overlay .wrapper-agit-promo .add-bank-card {
  display: none;
}
html .overlay .wrapper .add-bank-card form,
html .overlay .wrapper-agit .add-bank-card form,
html .overlay .wrapper-agit-promo .add-bank-card form {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin: 0;
}
html .overlay .wrapper .add-bank-card form .card-1,
html .overlay .wrapper-agit .add-bank-card form .card-1,
html .overlay .wrapper-agit-promo .add-bank-card form .card-1 {
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 325px;
  height: 215px;
  background-color: #636363;
  position: relative;
  z-index: 1;
  padding: 18px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
html .overlay .wrapper .add-bank-card form .card-1 .card-expire,
html .overlay .wrapper-agit .add-bank-card form .card-1 .card-expire,
html .overlay .wrapper-agit-promo .add-bank-card form .card-1 .card-expire {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
  background-color: #fff;
  color: #5c5c5c;
  margin-bottom: 10px;
  font-size: 11px;
  padding: 10px 10px 10px 20px;
  border-radius: 5px;
}
html .overlay .wrapper .add-bank-card form .card-1 .card-expire input,
html .overlay .wrapper-agit .add-bank-card form .card-1 .card-expire input,
html .overlay .wrapper-agit-promo .add-bank-card form .card-1 .card-expire input {
  width: 65px;
  height: 22px;
  font-size: 16px;
  margin: 0;
  padding: 0 10px 0 0;
}
html .overlay .wrapper .add-bank-card form .card-2,
html .overlay .wrapper-agit .add-bank-card form .card-2,
html .overlay .wrapper-agit-promo .add-bank-card form .card-2 {
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 325px;
  height: 215px;
  background-color: #464649;
  margin-top: -170px;
  margin-left: 125px;
  padding: 18px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  position: relative;
}
html .overlay .wrapper .add-bank-card form .card-2:after,
html .overlay .wrapper-agit .add-bank-card form .card-2:after,
html .overlay .wrapper-agit-promo .add-bank-card form .card-2:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 35px;
  width: 100%;
  height: 50px;
  background-color: #272727;
}
html .overlay .wrapper .add-bank-card form .card-2 input[type=text],
html .overlay .wrapper-agit .add-bank-card form .card-2 input[type=text],
html .overlay .wrapper-agit-promo .add-bank-card form .card-2 input[type=text] {
  position: absolute;
  right: 20px;
  bottom: 60px;
  width: 90px;
  text-align: center;
}
html .overlay .wrapper .add-bank-card form input[type=text],
html .overlay .wrapper-agit .add-bank-card form input[type=text],
html .overlay .wrapper-agit-promo .add-bank-card form input[type=text] {
  font-size: 15px;
  color: #000;
  border: 1px solid transparent;
  border-radius: 5px;
  line-height: 110%;
  padding: 12px 20px;
  outline: none;
  box-shadow: unset;
  flex: 1;
  background-color: #fff;
  transition: border-color 0.2s ease;
  width: 100%;
  margin-bottom: 10px;
}
html .overlay .wrapper .add-bank-card form input[type=text]:last-of-type,
html .overlay .wrapper-agit .add-bank-card form input[type=text]:last-of-type,
html .overlay .wrapper-agit-promo .add-bank-card form input[type=text]:last-of-type {
  margin: 0;
}
html .overlay .wrapper .add-bank-card form input[type=submit],
html .overlay .wrapper-agit .add-bank-card form input[type=submit],
html .overlay .wrapper-agit-promo .add-bank-card form input[type=submit] {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
}
html .overlay .wrapper .code-info,
html .overlay .wrapper-agit .code-info,
html .overlay .wrapper-agit-promo .code-info {
  display: none;
  max-width: 720px;
  min-width: 640px;
}
html .overlay .wrapper .code-info .text,
html .overlay .wrapper-agit .code-info .text,
html .overlay .wrapper-agit-promo .code-info .text {
  margin-bottom: 20px;
  line-height: 130%;
}
html .overlay .wrapper-agit,
html .overlay .wrapper-agit-promo {
  border: 0;
  padding: 20px;
}
html .overlay .wrapper-agit:before,
html .overlay .wrapper-agit-promo:before {
  content: "";
  position: absolute;
  width: 5px;
  height: calc(100% - 10px);
  left: -5px;
  top: -5px;
  background-color: #308ede;
}
html .overlay .wrapper-agit:after,
html .overlay .wrapper-agit-promo:after {
  content: "";
  position: absolute;
  width: calc(100% - 10px);
  height: 5px;
  left: -5px;
  top: -5px;
  background-color: #308ede;
}
html .overlay .wrapper-agit .wrapper-title,
html .overlay .wrapper-agit-promo .wrapper-title {
  position: absolute;
  top: -48px;
  left: -5px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  background-color: #308ede;
  padding: 5px 30px;
}
html .overlay .wrapper-agit .wrapper-title::before,
html .overlay .wrapper-agit-promo .wrapper-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: -9px;
  margin: -20px;
  background-color: #308ede;
  border: 0;
  width: 100%;
  height: 10px;
  margin: 0;
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
}
html .overlay .wrapper-agit .wrapper-title::after,
html .overlay .wrapper-agit-promo .wrapper-title::after {
  content: "";
  position: absolute;
  right: -9px;
  bottom: -1px;
  margin: -20px;
  background-color: #308ede;
  border: 0;
  width: 10px;
  height: 100%;
  margin: 0;
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
}
html .overlay .wrapper-agit .auth-form-agit > p,
html .overlay .wrapper-agit-promo .auth-form-agit > p {
  padding-right: 50px;
}
html .overlay .wrapper-agit .auth-form-agit .title,
html .overlay .wrapper-agit-promo .auth-form-agit .title {
  font-size: 18px;
  font-weight: 500;
}
html .overlay .wrapper-agit .auth-form-agit .auth-content,
html .overlay .wrapper-agit-promo .auth-form-agit .auth-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}
html .overlay .wrapper-agit .auth-form-agit .auth-content .content,
html .overlay .wrapper-agit-promo .auth-form-agit .auth-content .content {
  padding-left: 1.5rem;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 50px;
}
html .overlay .wrapper-agit .auth-form-agit .auth-content .content::before,
html .overlay .wrapper-agit-promo .auth-form-agit .auth-content .content::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #ff9440;
  -webkit-clip-path: polygon(0 0, 100% 5px, 100% calc(100% - 5px), 0 100%);
          clip-path: polygon(0 0, 100% 5px, 100% calc(100% - 5px), 0 100%);
}
html .overlay .wrapper-agit .auth-form-agit .auth-content .content.blue::before,
html .overlay .wrapper-agit-promo .auth-form-agit .auth-content .content.blue::before {
  background-color: #308ede;
}
html .overlay .wrapper-agit .auth-form-agit .auth-content .content.grey::before,
html .overlay .wrapper-agit-promo .auth-form-agit .auth-content .content.grey::before {
  background-color: #5b5b5b;
}
html .overlay .wrapper-agit .auth-form-agit .auth-content .content .order-title,
html .overlay .wrapper-agit .auth-form-agit .auth-content .content .order-description,
html .overlay .wrapper-agit-promo .auth-form-agit .auth-content .content .order-title,
html .overlay .wrapper-agit-promo .auth-form-agit .auth-content .content .order-description {
  font-size: 18px;
  color: #464649;
  line-height: 110%;
}
html .overlay .wrapper-agit .auth-form-agit .auth-content .content .order-title span,
html .overlay .wrapper-agit .auth-form-agit .auth-content .content .order-description span,
html .overlay .wrapper-agit-promo .auth-form-agit .auth-content .content .order-title span,
html .overlay .wrapper-agit-promo .auth-form-agit .auth-content .content .order-description span {
  color: #308ede;
}
html .overlay .wrapper-agit .auth-form-agit .auth-content .content .order-title.bold, html .overlay .wrapper-agit .auth-form-agit .auth-content .content .order-title.bold *,
html .overlay .wrapper-agit .auth-form-agit .auth-content .content .order-description.bold,
html .overlay .wrapper-agit .auth-form-agit .auth-content .content .order-description.bold *,
html .overlay .wrapper-agit-promo .auth-form-agit .auth-content .content .order-title.bold,
html .overlay .wrapper-agit-promo .auth-form-agit .auth-content .content .order-title.bold *,
html .overlay .wrapper-agit-promo .auth-form-agit .auth-content .content .order-description.bold,
html .overlay .wrapper-agit-promo .auth-form-agit .auth-content .content .order-description.bold * {
  font-size: 22px;
  font-weight: 600;
}
html .overlay .wrapper-agit .auth-form-agit .auth-content .content .order-sum,
html .overlay .wrapper-agit-promo .auth-form-agit .auth-content .content .order-sum {
  font-size: 30px;
  font-weight: 500;
  color: #464649;
}
html .overlay .wrapper-agit .auth-form-agit .auth-content .content.transparent,
html .overlay .wrapper-agit-promo .auth-form-agit .auth-content .content.transparent {
  padding-left: 0;
}
html .overlay .wrapper-agit .auth-form-agit .auth-content .content.transparent::before,
html .overlay .wrapper-agit-promo .auth-form-agit .auth-content .content.transparent::before {
  background-color: transparent;
}
html .overlay .wrapper-agit .auth-form-agit .auth-content .content ul,
html .overlay .wrapper-agit-promo .auth-form-agit .auth-content .content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
html .overlay .wrapper-agit .auth-form-agit .auth-content .content ul li,
html .overlay .wrapper-agit-promo .auth-form-agit .auth-content .content ul li {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}
html .overlay .wrapper-agit .auth-form-agit .auth-content .content ul li .icon,
html .overlay .wrapper-agit-promo .auth-form-agit .auth-content .content ul li .icon {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
html .overlay .wrapper-agit .auth-form-agit .auth-content .content ul li .text,
html .overlay .wrapper-agit-promo .auth-form-agit .auth-content .content ul li .text {
  font-size: 16px;
  height: auto;
}
html .overlay .wrapper-agit .auth-form-agit .auth-content .content:nth-child(2),
html .overlay .wrapper-agit-promo .auth-form-agit .auth-content .content:nth-child(2) {
  margin-bottom: 0;
}
html .overlay .wrapper-agit .auth-form-agit .auth-content ul,
html .overlay .wrapper-agit-promo .auth-form-agit .auth-content ul {
  justify-content: flex-start;
}
html .overlay .wrapper-agit-promo {
  max-width: 520px;
  width: 100%;
  min-height: unset;
}
html .title-v2 {
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #ff9440;
  padding: 0.25rem 1.5rem 0.5rem;
  color: #fff;
  font-size: 22px;
  position: relative;
  margin-bottom: 25px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
html .title-v2::before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  margin: -20px;
  background-color: #ff9440;
  border: 0;
  width: 100%;
  height: 5px;
  margin: 0;
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
}
html .title-v2::after {
  content: "";
  position: absolute;
  right: -9px;
  bottom: 0px;
  margin: -20px;
  background-color: #ff9440;
  border: 0;
  width: 10px;
  height: 100%;
  margin: 0;
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
}
html .title-v2.blue {
  background-color: #308ede;
}
html .title-v2.blue::before, html .title-v2.blue::after {
  background-color: #308ede;
}
html .title-v2.grey {
  background-color: #5a5a5a;
}
html .title-v2.grey::before, html .title-v2.grey::after {
  background-color: #5a5a5a;
}
html .alert-error {
  display: none;
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  max-width: 220px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 15px;
  z-index: 2;
  right: 0;
  transform: translateY(calc(100% - 30px));
  border-left: 3px solid #e83f33;
}
html .alert-error::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: 5px solid transparent;
  border-bottom: 5px solid #e83f33;
  position: absolute;
  top: -10px;
  right: 10%;
  transform: translateX(-50%);
}
html .alert-error p {
  line-height: 110%;
  font-size: 14px;
}
html .alert-error p:last-of-type {
  margin: 0;
}
html .alert-error p span {
  color: #e83f33;
  font-weight: 500;
}
html .alert-error .close {
  position: absolute;
  right: 5px;
  top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
  cursor: pointer;
}
html .alert-error .close i {
  font-size: 24px;
  font-weight: 300;
  line-height: 100%;
}
html .alert-error + input.error {
  border-color: #e83f33 !important;
}

.pip {
  margin-top: 20px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.pip .wrapper {
  position: absolute;
  left: 93px;
  top: 68px;
  width: 425px;
  height: 638px;
  padding: 10px 20px;
}
.pip .wrapper .top-level .title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}
.pip .wrapper .top-level .level-row {
  border: 1px solid #5C5C5C;
  padding: 1px;
  display: flex;
  align-items: center;
  margin: 2px 0;
}
.pip .wrapper .top-level .level-row .percent {
  width: 50%;
  height: 10px;
  background-image: url("../images/level.png");
}
.pip .wrapper .top-level .level-row .percent-new {
  margin-left: 2px;
  width: 0%;
  height: 10px;
  background-image: url("../images/level-new.png");
  transition: all 0.2s ease;
}
.pip .wrapper .top-level .levels {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pip .wrapper .top-level .levels .left,
.pip .wrapper .top-level .levels .right {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}
.pip .wrapper .man div {
  height: 130px;
  padding: 10px 0 0;
  list-style: none;
  margin-bottom: 15px;
  pointer-events: none;
}
.pip .wrapper .man div div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pip .wrapper .man div div img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.pip .wrapper .man div div img:nth-child(1), .pip .wrapper .man div div img:nth-child(3) {
  width: 80%;
  height: 80%;
  opacity: 0.6;
}
.pip .wrapper .text {
  margin-bottom: 15px;
}
.pip .wrapper .text p {
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin: 0;
  color: #5C5C5C;
  line-height: 120%;
  text-align: center;
}
.pip .wrapper .bottom {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  height: unset;
}
.pip .wrapper .bottom .left {
  width: 60%;
}
.pip .wrapper .bottom .left .title {
  font-size: 14px;
  text-transform: uppercase;
  color: #2E8EE5;
  font-weight: 600;
  padding-left: 47px;
}
.pip .wrapper .bottom .left .sub-title {
  font-size: 12px;
  font-weight: 500;
  color: #5C5C5C;
  line-height: 120%;
  padding-left: 47px;
  margin-bottom: 15px;
}
.pip .wrapper .bottom .left .rows {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.pip .wrapper .bottom .left .rows .input-row {
  width: 100%;
}
.pip .wrapper .bottom .left .rows .input-row label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
  cursor: pointer;
}
.pip .wrapper .bottom .left .rows .input-row label .number {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  line-height: 100%;
  font-size: 22px;
  min-width: 20px;
  color: #2E8EE5;
}
.pip .wrapper .bottom .left .rows .input-row label .input {
  width: 17px;
  height: 17px;
  position: relative;
}
.pip .wrapper .bottom .left .rows .input-row label .input::before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  position: relative;
  z-index: 2;
  background-color: #fff;
  border: 2px solid #5C5C5C;
  border-radius: 100%;
  cursor: pointer;
}
.pip .wrapper .bottom .left .rows .input-row label .data {
  width: 100%;
}
.pip .wrapper .bottom .left .rows .input-row label .data .name {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #5C5C5C;
  padding-right: 10px;
  line-height: 110%;
  margin-bottom: 5px;
}
.pip .wrapper .bottom .left .rows .input-row label .data .data-progress {
  position: relative;
}
.pip .wrapper .bottom .left .rows .input-row label .data .data-progress::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: #A9A9A9;
  transform: translateY(-50%);
  z-index: 0;
}
.pip .wrapper .bottom .left .rows .input-row label .data .data-progress .current-percent {
  position: relative;
  width: 25%;
  height: 5px;
  background-color: #2E8EE5;
  z-index: 1;
}
.pip .wrapper .bottom .left .rows .input-row label .data .from-to {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pip .wrapper .bottom .left .rows .input-row label .data .from-to .left,
.pip .wrapper .bottom .left .rows .input-row label .data .from-to .right {
  font-size: 12px;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  color: #2E8EE5;
}
.pip .wrapper .bottom .left .rows .input-row label .percent {
  color: #A9A9A9;
  font-size: 15px;
  min-width: 25px;
}
.pip .wrapper .bottom .left .rows .input-row input {
  position: absolute;
  z-index: -1;
  visibility: hidden;
}
.pip .wrapper .bottom .left .rows .input-row input:checked + label .number {
  color: #FF9440;
}
.pip .wrapper .bottom .left .rows .input-row input:checked + label .input::before {
  border-color: #FF9440;
}
.pip .wrapper .bottom .left .rows .input-row input:checked + label .input::after {
  content: "";
  width: 7px;
  height: 7px;
  display: block;
  background-color: #FF9440;
  border-radius: 100%;
  position: absolute;
  left: 5px;
  top: 5px;
  z-index: 3;
}
.pip .wrapper .bottom .left .rows .input-row input:checked + label .data .name,
.pip .wrapper .bottom .left .rows .input-row input:checked + label .data .from-to .left,
.pip .wrapper .bottom .left .rows .input-row input:checked + label .data .from-to .right {
  color: #FF9440;
}
.pip .wrapper .bottom .left .rows .input-row input:checked + label .data .data-progress .current-percent {
  background-color: #FF9440;
}
.pip .wrapper .bottom .right {
  width: 40%;
}
.pip .wrapper .bottom .right .circle {
  width: 100px;
  height: 100px;
  border: 2px solid #94a0a4;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto 10px auto;
}
.pip .wrapper .bottom .right .circle canvas {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.pip .wrapper .bottom .right .circle .current-level {
  position: absolute;
  width: 65%;
  height: 65%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 100%;
  border: 2px solid #94a0a4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 600;
  color: #ff9440;
}
.pip .wrapper .bottom .right .enter-count {
  font-size: 12px;
  font-weight: 600;
  color: #2E8EE5;
  margin-bottom: 5px;
}
.pip .wrapper .bottom .right .inputs {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  margin-bottom: 0;
}
.pip .wrapper .bottom .right .inputs > * {
  flex: 1;
}
.pip .wrapper .bottom .right .inputs .input {
  border: 1px solid #ff9440;
  padding: 5px 2px;
  font-size: 16px;
}
.pip .wrapper .bottom .right .inputs .input input {
  width: 100%;
  outline: none;
  box-shadow: none;
  border: 0;
  text-align: center;
  line-height: 100%;
  -moz-appearance: textfield;
}
.pip .wrapper .bottom .right .inputs .input input::-webkit-outer-spin-button, .pip .wrapper .bottom .right .inputs .input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pip .wrapper .bottom .right .inputs div {
  font-size: 13px;
  font-weight: 600;
  color: #2E8EE5;
  text-align: left;
  line-height: 140%;
}
.pip .wrapper .bottom .right .inputs div span {
  font-size: 18px;
  font-weight: 500;
  color: #ff9440;
}
.pip .wrapper .bottom .right input[type=button],
.pip .wrapper .bottom .right input[type=submit] {
  background-color: #ff9440;
  color: #fff;
  border: 0;
  width: 100%;
  outline: none;
  box-shadow: unset;
  font-size: 14px;
  font-weight: 500;
  white-space: break-spaces;
  padding: 10px;
  line-height: 110%;
  margin-top: 10px;
  transition: all 0.1s ease;
}
.pip .wrapper .bottom .right input[type=button]:hover,
.pip .wrapper .bottom .right input[type=submit]:hover {
  background-color: rgba(255, 148, 64, 0.6666666667);
}
.pip .wrapper .bottom .right .info {
  font-size: 22px;
  background-color: #2E8EE5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  margin: 0 auto;
  margin-top: 10px;
  text-decoration: none;
}

.auth-form-agit .auth-block {
  margin-top: 20px;
}

.auth-form-agit .auth-block .title,
.overlay .auth-form .auth-block .title {
  display: none;
}
.overlay .wrapper-loading {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: -100px auto 0 auto;
}
.overlay .loading-window .loading-animation {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  position: relative;

  animation-name: loading-spin;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear; 
}
.overlay .loading-window .loading-animation .circle-1,
.overlay .loading-window .loading-animation .circle-2,
.overlay .loading-window .loading-animation .circle-3 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  border: 16px solid #fff;
  position: absolute;
}
.overlay .loading-window .loading-animation .circle-1 {
  top: 28%;
  right: 10%;
  transform: translateY(-40%);
  border-color: #60b0d2;
  z-index: 1;
}
.overlay .loading-window .loading-animation .circle-2 {
  bottom: 6%;
  right: 34%;
  transform: translateX(42%);
  border-color: #98b322;
  z-index: 3;
}
.overlay .loading-window .loading-animation .circle-3 {
  bottom: 45%;
  left: 8%;
  transform: translateY(40%);
  border-color: #c02520;
  z-index: 2;
}
@keyframes loading-spin {
  0% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(90deg) scale(0.8); }
  50% { transform: rotate(180deg) scale(1); }
  75% { transform: rotate(270deg) scale(0.8); }
  100% { transform: rotate(360deg) scale(1); }
}

@media (max-width: 575.98px) {
  html body.cabinet {
    min-width: unset;
  }
  html body.cabinet .container {
    max-width: unset;
  }
  html body.cabinet .container > .row {
    display: flex;
    flex-direction: column;
  }
  html body.cabinet .container > .row .sidebar {
    display: none;
    top: 145px;
    z-index: 2;
    min-height: unset;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  html body.cabinet .container > .row .sidebar.active {
    position: fixed;
    display: flex;
    width: 100%;
    height: auto;
    max-width: 100%;
  }
  html body.cabinet .container > .row .sidebar:before {
    display: none;
  }
  html body.cabinet .container > .row .sidebar .top,
  html body.cabinet .container > .row .sidebar .bottom {
    display: none;
  }
  html body.cabinet .container > .row .sidebar .middle {
    padding: 0;
  }
  html body.cabinet .container > .row .sidebar .middle .menu {
    margin-bottom: 10px;
  }
  html body.cabinet .container > .row .content {
    padding-right: calc(var(--bs-gutter-x) / 2);
    padding-left: calc(var(--bs-gutter-x) / 2);
    width: 100%;
  }
  html body.cabinet .container > .row .content .top-mobile {
    position: fixed;
    z-index: 2;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    border-bottom: 1px solid #dadada;
  }
  html body.cabinet .container > .row .content .top-mobile .left:after {
    display: block;
    content: "\f0c9";
    font-family: "Font Awesome 6 Pro";
    font-size: 32px;
  }
  html body.cabinet .container > .row .content .top-mobile .logo a {
    display: block;
    max-width: 210px;
    margin: 0 auto;
  }
  html body.cabinet .container > .row .content .top-mobile .logo a img {
    width: 100%;
  }
  html body.cabinet .container > .row .content .top-mobile .right .cabinet {
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #5c5c5c;
    color: #fff;
    text-decoration: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
  }
  html body.cabinet .container > .row .content .top-mobile .right .cabinet:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 24px;
    background-image: url("../images/profile-icon.png");
  }
  html body.cabinet .container > .row .content .top-mobile.active .left:after {
    content: "\e59b";
  }
  html body.cabinet .container > .row .content .top {
    position: fixed;
    z-index: 2;
    top: 69px;
    display: none;
    width: 100%;
    gap: 10px;
    background-color: #fff;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
  html body.cabinet .container > .row .content .top .right .cabinet,
  html body.cabinet .container > .row .content .top .right .cart {
    display: none;
  }
  html body.cabinet .container > .row .content .top .left {
    justify-content: flex-start;
  }
  html body.cabinet .container > .row .content .top .left .search-form {
    width: 95%;
    max-width: 95%;
  }
  html body.cabinet .container > .row .content .top .left .search-form input[type=text] {
    width: 100%;
  }
  html body.cabinet .container > .row .content .top.active {
    display: flex;
  }
  html body.cabinet .container > .row .content .middle {
    margin-top: 80px;
  }
  html body.cabinet .container > .row .content .middle .block {
    padding: 20px 15px;
  }
  html body.cabinet .container > .row .content .middle .block .title {
    font-size: 20px;
  }
  html body.cabinet .container > .row .content .middle .block .sub-title {
    font-size: 16px;
  }
  html body.cabinet .container > .row .content .middle .block .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  html body.cabinet .container > .row .content .middle .block .content .text-key-box,
  html body.cabinet .container > .row .content .middle .block .content .image-key-box {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  html body.cabinet .container > .row .content .middle .block .content .text-key-box .key,
  html body.cabinet .container > .row .content .middle .block .content .image-key-box .key {
    width: 100%;
  }
  html body.cabinet .container > .row .content .middle .block .content .text-key-box .key img,
  html body.cabinet .container > .row .content .middle .block .content .image-key-box .key img {
    width: 100%;
  }
  html body.cabinet .container > .row .content .middle .block .content a.btn {
    width: 100%;
  }
  html body.cabinet .container > .row .content .middle .block .content:last-of-type {
    margin-bottom: 0;
  }
  html body.cabinet .container > .row .content .middle .pip {
    margin: 30px auto -320px;
    transform: scale(0.6);
    transform-origin: left top;
  }
  html body.cabinet .container > .row .content .bottom-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    padding: 20px 0.75rem;
  }
  html body.cabinet .container > .row .content .bottom-mobile .left {
    flex: 1;
  }
  html body.cabinet .container > .row .content .bottom-mobile .left p {
    font-size: 16px;
    margin: 0;
    padding: 0;
    line-height: 110%;
  }
  html body.cabinet .container > .row .content .bottom-mobile .right {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  html body.cabinet .container > .row .content .bottom-mobile .right ul {
    margin: 0;
  }
  html body.cabinet.fixed {
    overflow: hidden;
  }
  html body.auth {
    background-position: center;
    background-size: auto;
  }
  html body.auth main {
    height: unset;
    margin: 30px 0;
    padding-bottom: 30px;
  }
  html body.auth main .auth-block {
    min-width: unset;
    width: 100% !important;
  }
  html body.auth main .auth-block .title {
    font-size: 18px;
    padding-left: 10px;
  }
  html body.auth main .auth-block .block form .form-row {
    flex-direction: column;
  }
  html body.auth main .auth-block .block form .form-row > input {
    width: 100%;
  }
  html body.auth main .auth-block .block ul li {
    font-size: 12px;
  }
  html body.auth main .auth-block .block ul li:nth-child(2) {
    border: 0;
    min-width: 95px;
  }
  html .overlay .wrapper {
    padding: 30px 10px 10px;
    max-width: calc(100% - 20px);
  }
  html .overlay .wrapper .auth-block {
    min-width: unset;
    width: 100% !important;
  }
  html .overlay .wrapper .auth-block .title {
    font-size: 18px;
    padding-left: 10px;
  }
  html .overlay .wrapper .auth-block .block form .form-row {
    flex-direction: column;
  }
  html .overlay .wrapper .auth-block .block form .form-row > input {
    width: 100%;
  }
  html .overlay .wrapper .auth-block .block ul li {
    font-size: 12px;
  }
  html .overlay .wrapper .auth-block .block ul li:nth-child(2) {
    border: 0;
    min-width: 95px;
  }
}
@keyframes shake {
  10%, 90% {
    transform: translateX(-0.5px);
   }
  20%, 80% {
    transform: translateX(1px);
  }
  30%, 50%, 70% {
    transform: translateX(-2px);
  }
  40%, 60% {
    transform: translateX(2px);
  }
}
.shake {
  animation: shake 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) both;
  border-color: rgb(255, 148, 64) !important;
}
input[type='text']:read-only {
  color: #aaa;
}