:root {
  --padding-box: 20px;
  --padding-menu-mobile: 10px;

  --border-radius-box: 12px;

  --shadow-box: 0px 4px 4px rgba(0, 0, 0, 0.25);

  --color-green: #0fa958;
  --color-orange: #ebab69;
  --color-yellow: #efb031;
  --color-red: #0fa958;
  --color-black: #000;
}

html {
  scroll-padding-top: 160px;
}

body {
  background-color: rgb(var(--color-body-RGB));
  line-height: 1.5;
}

h1 {
  line-height: 1.1;
  color: white;
}

h2 {
  line-height: 1.2;
  color: rgb(var(--color-text-base-RGB));
}
h2.bright {
  color: rgb(var(--color-bg-light-RGB));
}

h3 {
  color: rgb(var(--color-text-base-RGB));
}
h3.bright {
  color: rgb(var(--color-bg-light-RGB));
}

h6 {
  line-height: 1.2;
  color: rgb(var(--color-text-base-RGB));
}

select {
  cursor: pointer;
}
select option {
  background-color: rgb(var(--color-box-bg-RGB));
}

a {
  text-decoration: none;
  color: rgba(var(--color-guest-action-2-RGB));
}

option:hover {
  background-color: yellow;
}

input[type="text"] {
  background-color: transparent;
}

.guest-button.button-black:disabled {
  opacity: 0.5;
  filter: grayscale(1);
  cursor: initial;
}
.guest-button.button-black:hover:disabled {
  background-color: #000;
  color: #fff;
}

input[type="submit"]:disabled {
  opacity: 0.5;
  filter: grayscale(1);
  cursor: initial;
}

.faq-container details {
  padding: 15px 20px;
}

.faq-container summary {
  font-size: 20px;
}

details {
  background: gainsboro;
  padding: 10px;
}

details summary {
  cursor: pointer;
  transition: margin 150ms ease-out;
}

details[open] summary {
  margin-bottom: 10px;
}

ol li {
  margin-top: 10px;
  margin-bottom: 10px;
}
input[type="file"]::file-selector-button {
  border-radius: 4px;
  padding: 0 10px;
  height: 30px;
  cursor: pointer;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
  margin-right: 10px;
  transition: background-color 200ms;
  color: var(--color-black);
}

.text-about-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: left;
  flex-direction: row;
  color: #fff;
  margin: 0 auto;
  z-index: 1;
  height: 950px;
  max-width: 1920px;
  background-image: url("/static/guests/images/wave-tech-back.343a6913f30c.webp");
  background-position: top;
  overflow: hidden;
}

/* NAV */

.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 80px;
  display: flex;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  transition: 0.3s;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.nav-container img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.nav-container img.lang {
  -webkit-filter: none;
  filter: none;
}

.scrolled {
  background-color: white;
  transition: padding 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out;
  border-bottom: 1px solid lightgray;
  padding: 0 !important;
  transition: 0.3s;
}

.scrolled img {
  -webkit-filter: none;
  filter: none;
}

#logo-link {
  align-self: center;
  margin-left: 30px;
}

#logo {
  height: 55px;
}

#nav-list {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: 20px;
}

.nav-list2 {
  color: white;
}

#nav-list a {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-right: 30px;
  font-size: 14px;
  letter-spacing: 0px;
  font-weight: 600;
  padding: 9px 10px;
}

#nav-list .guest-button {
  margin-right: 20px;
  letter-spacing: 2px;
}

.lang-icon-container {
  display: flex;
  flex-direction: column;
}

.dropdown {
  display: none;
  flex-direction: column;
  position: absolute;
}

.dropdown:hover {
  display: flex;
}

a.lang-holder:hover + .dropdown {
  display: flex;
}

.fold-poland {
  background-color: rgb(255, 255, 255);
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 12px 0 12px;
  position: relative;
  top: -20px;
  height: 85px;
  transition: 0.3s;
  text-decoration: none;
}

.fold-poland div {
  margin-top: 9px;
}

.fold-poland img {
  -webkit-filter: none !important;
  filter: none !important;
  width: 45px;
  margin: 5px;
  margin-top: 10px;
}

.nav-container.scrolled .fold-poland {
  background-color: #7a2973;
  padding-bottom: 4px;
  color: #fff;
  filter: none;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.nav-container.scrolled .fold-poland img {
  filter: brightness(1) invert(1) !important;
  -webkit-filter: brightness(0) invert(1) !important;
}

/* Mobile menu */

.bar-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 60px;
  background-color: rgba(var(--color-box-bg-RGB));
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.1));
  padding: 0 var(--padding-menu-mobile);
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
}

.sidebar.sidebar-mobile {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100vh;
  background-color: rgba(var(--color-box-bg-RGB));
  box-sizing: border-box;
  margin: 0;
  transition: var(--transform-primary);
  z-index: 96;
  position: fixed;
}

/* register and login popup forms */

.popup h3 {
  font-size: 30px;
}

.form-register {
  flex-direction: column;
}

.form-register p {
  text-align: center !important;
}

.form-register .fields-container {
  margin-bottom: 0;
}

.form-register .consent {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  margin: 5px 20px;
}

.form-register a:link {
  color: rgba(var(--color-guest-action-2-RGB));
}

.form-register .consent label {
  font-size: 14px;
}

.form-login {
  flex-direction: column;
}

.form-login p {
  text-align: center !important;
}

.form-login .fields-container {
  margin-bottom: 0;
}

.form-login #button-wrapper {
  margin-top: 0;
}

/* Marking Line */

a.marking-line {
  position: relative;
  text-decoration: none;
}

a.marking-line::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background-color: #ffffff;
  bottom: -3px;
  left: 0;
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}

a.marking-line:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

.nav-container.scrolled a::before {
  background-color: rgba(var(--color-guest-action-2-RGB));
}

.nav-container.scrolled a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

a.marking-line[aria-current="page"]::before {
  transform-origin: left;
  transform: scaleX(1);
}

/* Marking Line  END*/

/* MESSAGES */

.messages {
  width: 100%;
  padding: 30px 0;
  background-color: #92278f;
  color: white;
  text-align: center;
}

/* FOOTER */

#footer-menu-container {
  padding-top: 30px;
  background-color: #76146d;
  color: white;
  margin-top: 30px;
  padding-bottom: 30px;
  display: flex;
  justify-content: space-evenly;
}

.footer-title {
  font-size: 24px;
  margin-bottom: 10px;
}

#footer-menu ul,
#footer-contact ul {
  list-style: none;
  color: inherit;
  margin: 0;
  padding: 0;
  line-height: 2;
}

#footer-menu ul li a {
  color: inherit;
  text-decoration: none;
  transition: 0.5s;
}

#footer-menu ul li a:hover {
  color: #92278f;
}

#social-icons {
  margin-top: 10px;
  display: flex;
}

.mini-icon {
  width: 30px;
  border-radius: 30px;
  margin-right: 10px;
}

/* NEWS */

.news-section {
  margin-top: 50px;
  margin-bottom: 100px;
}

.news-section h3 {
  color: #76146d;
  font-size: 30px;
}

.news-row {
  margin-top: 50px;
  display: flex;
  justify-content: space-around;
}

.news {
  width: 40%;
  display: flex;
  flex-direction: column;
  height: 530px;
  position: relative;
}

.news img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.news h4 {
  font-size: 20px;
  margin: 5px 0;
}

.news p {
  margin: 10px 0 50px 0;
  text-align: justify;
}

.news span {
  font-weight: bold;
  margin-top: 10px;
}

.button-wrapper {
  position: absolute;
  bottom: 0;
}

.button-wrapper a {
  display: inline;
}

.button-deactivate {
  cursor: default;
  opacity: 70%;
  border: none !important;
}

.button-deactivate:hover {
  cursor: default;
  opacity: 70%;
  border: none !important;
  color: #000 !important;
  background-color: #fff !important;
}

.color-text {
  color: rgba(var(--color-guest-action-2-RGB));
}

/* CONTACT */

.contact-section {
  padding: 100px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px 0;
}

.left-contact {
  width: 100%;
  margin-top: 150px;
}

.h-iframe {
  margin-right: 100px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.h-iframe embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-options {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 30px;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact img {
  margin-bottom: 10px;
}

.map {
  border: 1px solid #76146d;
  border-radius: 12px;
}

.contact-form {
  border: 2px solid #76146d;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 35%;
}

.contact-form input,
.contact-form label {
  display: block;
}

textarea,
input {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.input-wrapper {
  width: 80%;
}

.consent-wrapper {
  margin-top: 20px;
}

.consent-wrapper span {
  font-size: 10px;
  text-align: justify;
}

/* CAPTCHA */

.contact-form iframe {
  margin-top: 30px;
}

.contact-button-wrapper {
  margin-top: 60px;
  margin-bottom: 10px;
}

/* VPS and Dedicated */

.image-content-container {
  position: relative;
}

.bg-img {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 850px;
  background-image: url("../images/servers.8decf6dc7e91.webp");
  background-repeat: no-repeat;
  background-size: cover;
}

.vps-text {
  background-color: rgba(var(--color-box-bg-RGB));
  border-radius: 12px;
  color: rgba(var(--color-text-base-RGB));
  font-size: 40px;
  width: 50%;
  padding: 25px;
  padding-bottom: 15px;
  left: 0;
  right: 0;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
}

.vps-text h2 {
  text-align: center;
  margin-bottom: 20px;
}

.vps-form-content {
  display: flex;
  flex-direction: row;
}

.baner-space {
  width: 300px;
}

.bottom-row {
  display: flex;
  padding: 120px 0;
  justify-content: space-between;
}

.detailed-desc {
  width: 70%;
}

.detailed-desc p {
  text-align: justify;
  line-height: 1.5;
}

.combo-box {
  width: 100%;
  padding: 3px 0;
  margin-top: 5px;
  text-align-last: center;
  font-size: 14px;
  font-weight: 700;
  background-color: white;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../images/arrow_down.f3ee71f7cf7a.svg");
  background-repeat: no-repeat;
  background-size: 6%;
  background-position-x: 100%;
  background-position-y: 50%;
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 2px solid rgba(var(--color-text-base-RGB));
  color: rgba(var(--color-text-base-RGB));
}

/* GLOBAL UTILS */

.content {
  position: absolute;
  width: 100%;
}

.contact-feedback {
  width: 80%;
  margin-bottom: 20px;
}

.home-contact {
  display: inline-block;
  flex-direction: column;
  align-content: space-between;
  height: auto;
  color: rgb(var(--color-text-base-RGB));
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border-radius: 12px;
  background-color: white;
  width: 600px;
  padding: 20px;
}

.home-contact h3 {
  margin-bottom: 15px;
}

.home-contact textarea {
  height: 150px;
  width: 100%;
  padding: 10px 10px;
  border: 1px solid #89728c;
  border-radius: 5px;
}

.multi-field-holder {
  display: flex;
  width: 90%;
  gap: 10%;
  margin: 0 auto;
}

.fields-container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  margin-bottom: 15px;
}

.fields-container label {
  display: block;
  color: rgba(var(--color-text-base-RGB), 0.6);
  position: absolute;
  font-size: 14px;
  cursor: text;
}

.fields-container input {
  padding: 10px 10px;
  border-radius: 5px;
  display: block;
  width: 100%;
  border: none;
  position: relative;
  bottom: 10px;
  border-radius: 0;
  transition: 0.3s;
  background-size: 10px auto;
  border-bottom: rgba(var(--color-text-base-RGB), 0.6) 1px solid;
  background-color: transparent;
  color: rgb(var(--color-text-base-RGB));
}

.fields-container input:focus {
  border-bottom: rgba(var(--color-guest-action-2-RGB)) 1px solid;
}

.fields-container input:focus ~ label,
.fields-container input:valid ~ label {
  transform: translateY(-18px);
  transition: 0.3s;
  font-size: 14px;
}

.fields-container textarea {
  background-color: rba(var(--color-box-bg-RGB));
  color: rgb(var(--color-text-base-RGB));
  border-radius: 0;
  border: none;
  outline: none;
  border-bottom: rgba(var(--color-text-base-RGB), 0.6) 1px solid;
}

.fields-container.consent-wrapper.consent-accpet {
  display: flex;
  font-weight: 300;
  justify-content: center;
  flex-direction: row;
}

.fields-container textarea:focus {
  border-bottom: rgba(var(--color-guest-action-2-RGB)) 1px solid;
}

.fields-container textarea:focus ~ label,
.fields-container textarea:valid ~ label {
  transform: translateY(-18px);
  transition: 0.3s;
  font-size: 14px;
}

#button-wrapper {
  text-align: center;
  margin-top: 20px;
}

#title {
  text-align: center;
}

.image-upload input {
  border: none;
}

.offer-box-top-bar {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.offer-box-top-bar h4 {
  opacity: 1;
  font-size: 20px;
  text-align: center;
  word-spacing: 150px;
}

/* background */

.column-text {
  margin-top: auto;
  margin-right: 20px;
  margin-bottom: auto;
  width: 50%;
  display: flex;
  flex-direction: column;
  padding-top: 200px;
}

.column-hero {
  max-width: 740px;
  padding: 0;
  margin-right: 70px;
}

.column-hero img {
  max-width: 600px;
  margin-bottom: -5px;
}

/* so far without */
.no-overflow {
  overflow-y: hidden;
}

.content-high {
  position: absolute;
  top: 100px;
  width: 100%;
}

label {
  color: rgba(var(--color-text-base-RGB), 0.6);
}

input[type="checkbox"] {
  width: 13px;
  margin-right: 5px;
  display: inline-block;
  border: #000 1px solid;
  appearance: auto;
}

.accept-row {
  display: flex;
}

.container {
  max-width: 1920px;
  margin: 0 auto;
  background-color: rgba(var(--color-bg-light-RGB));
}

.guest-button {
  color: inherit;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 30px;
  display: block;
  color: rgb(var(--color-text-base-RGB));
  background-color: transparent;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
  border: rgb(var(--color-text-base-RGB)) solid 2px;
}

.offer-box a.guest-button {
  text-align: center;
  box-sizing: border-box;
  position: inherit;
}

.section-row-box {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 100px;
}

.row-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 130px;
  padding: 50px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.25);
  border-radius: 40px;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box; /* Firefox, other Gecko */
  box-sizing: border-box; /* Opera/IE 8+ */
}
.row-box.revers {
  flex-direction: row-reverse;
}

.img-half {
  width: 40%;
  height: auto;
}
.content-half {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  gap: 20px;
}

.content-half span {
  color: var(--color-black);
}

.buttons-holder {
  display: flex;
  gap: 10px;
}

.guest-button:hover {
  background-color: rgb(var(--color-text-base-RGB));
  color: rgb(var(--color-body-RGB));
  transition: 0.2s;
}

input .guest-button {
  margin: auto;
}

.button-black {
  background-color: rgba(var(--color-guest-button-base-RGB));
  border: rgba(var(--color-guest-button-base-RGB)) 1px solid;
  color: rgba(var(--color-guest-button-text-base-RGB));
}

.button-black:hover {
  background-color: white;
  color: black;
  transition: 0.2s;
}

.button-black:active {
  background-color: rgba(var(--color-guest-button-base-RGB), 0.7);
  border: rgba(var(--color-guest-button-base-RGB), 0.7) 1px solid;
  color: rgba(var(--color-guest-button-text-base-RGB));
}

.button-white {
  background-color: white;
  color: black;
  transition: 0.2s;
}

.button-white:hover {
  background-color: #efb031;
  transition: 0.2s;
  color: black;
}

.button-white:active {
  background-color: rgba(var(--color-guest-button-base-RGB), 0.7);
  border: rgba(var(--color-guest-button-base-RGB), 0.7) 1px solid;
  color: rgba(var(--color-guest-button-text-base-RGB));
}

.row-box.alternative {
  background-image: url("/static/guests/images/ryzen-baner-back.4a2253d7fc9f.avif");
  background-position: 40% 47%;
  background-size: cover;
  color: white;
}

.row-box.alternative h2,
.row-box.alternative span {
  color: white;
}

.row-box.alternative .img-half {
}

.row-box.alternative .guest-button.button-black {
  border: rgba(var(--color-guest-action-RGB)) 1px solid;
  background-color: rgba(var(--color-guest-action-RGB));
  color: black;
}

.row-box.alternative .color-text {
  color: rgba(var(--color-guest-action-RGB));
}

.button-black[onclick] {
  width: 100%;
}

form .button-black {
  width: 100%;
}

#domains-list-holder .button-black {
  width: auto;
}

.nav-container .guest-button {
  color: inherit;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 30px;
  display: block;
  color: #000;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
  border: rgb(255, 255, 255) solid 2px;
}

.nav-container.guest-button:hover {
  background-color: rgb(0, 0, 0);
  color: #ffffff;
  transition: 0.2s;
}

.nav-container.scrolled .guest-button {
  color: inherit;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 30px;
  display: block;
  color: #000;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
  border: #000 solid 2px;
}

.nav-container.scrolled .guest-button:hover {
  background-color: rgb(0, 0, 0);
  color: #fff;
  transition: 0.2s;
}

#nav-list .white {
  color: #000;
  background-color: #fff;
  border: #fff solid 2px;
  transition: 0.2s;
}

#nav-list.nav-list2.scrolled-text .white {
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
  border: rgb(0, 0, 0) solid 2px;
  transition: 0.2s;
}

#nav-list .black:hover {
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  border: #fff solid 2px;
  transition: 0.2s;
}

#nav-list.nav-list2.scrolled-text .black:hover {
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
  border: rgb(0, 0, 0) solid 2px;
  transition: 0.2s;
}

.guest-button-baner {
  color: inherit;
  text-decoration: none;
  padding: 10px 20px;
  display: inline;
  border-radius: 30px;
  color: rgb(255, 255, 255);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
  border: rgb(255, 255, 255) solid 2px;
}

.guest-button-baner:hover {
  background-color: rgb(255, 255, 255);
  color: #000000;
  transition: 0.2s;
}

.purple-border {
  width: 90%;
  border: 1px solid #92278f;
}

.gray-border {
  width: 90%;
  border: 1px solid rgba(var(--color-text-base-RGB));
  opacity: 0.2;
  margin-top: 0px;
  margin-bottom: 10px;
}

.custom-border {
  margin: 100px auto;
}

.sum {
  font-size: 25px;
  font-weight: bold;
}

.price {
  margin-bottom: -5px;
  padding: 0;
  font-weight: 800;
  font-size: 80px;
}

.price sup {
  font-size: 48px;
}

.old-price {
  font-weight: 700;
  font-size: 18px;
  color: rgba(var(--color-text-base-RGB), 0.7);
}
.old-price i::before {
  background-color: rgba(var(--color-text-base-RGB), 0.7);
}
.old-price i::after {
  width: 400%;
}
i {
  display: flex;
}

.special-offer-holder {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.special-offer-holder span {
  margin: 0 2px 0 2px;
}

.special-offer-percent {
  background-color: #efb031;
  border-radius: 10px;
  padding: 5px;
  font-weight: 700;
  font-size: 18px;

  height: fit-content;
}

.promotion-bar {
  display: flex;
  flex-direction: row;
}

.sum_year_holder {
  font-weight: 300;
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  margin-left: 20px;
}

.currency {
  font-size: 34px;
  margin-right: 3px;
  margin-left: -40px;
  font-weight: 700;
}

.period {
  font-size: 16px;
}

.data-input {
  width: 200px;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid black;
}

.image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.image {
  object-fit: cover;
  width: 100%;
  height: 600px;
}

.text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 45px;
  text-align: center;
}

.text h3 {
  font-size: 50px;
}

.text span {
  font-size: 20px;
}

.text img {
  max-width: 100%;
}

.yellow {
  background-color: #fedd16;
  color: #76146d;
}

.yellow:hover {
  background-color: #feaa16;
  color: #76146d;
}

.main-baner-text p {
  text-align: left;
}

.scrolled-text {
  color: #000000;
}

nav i::before {
  background-color: #fff;
}

.scrolled-text i::before {
  background-color: #000000;
}

body.dark-mode nav .scrolled-text i::before {
  background-color: rgb(var(--color-text-base-RGB));
}

.checkbox-accept {
  border: #000 1px solid;
}

.text-section-white section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.text-section-white-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0px 150px;
  padding: 120px 0 30px 0;
}

.text-section-white-content h2 {
  padding-bottom: 30px;
}

.text-section-white-content h3 {
  padding-bottom: 0px;
}

.text-section-white-content p {
  padding-bottom: 20px;
}

.text-about-container h2 {
  padding-bottom: 50px;
}

.text-about-container h3 {
  padding-bottom: 0px;
}

.text-about-container p {
  padding-bottom: 50px;
}

.column-text.text-left {
  width: 60%;
}

#map_unblocker {
  pointer-events: none;
}

#map_unblocker:target {
  pointer-events: none;
}

.text-section-white .column-text {
  padding-top: 0;
  margin: 0;
  justify-content: center;
  margin-bottom: 50px;
}

.text-section-white .column-text h3 {
  margin-bottom: 5px;
}

.text-section-white .column-text p {
  max-width: 800px;
}

.text-about-container {
  justify-content: space-between;
  padding: 0 150px;
}

.column-text.text-left h3 {
  margin-bottom: 5px;
}

.column-hero.hero-right {
  display: flex;
  align-items: center;
  width: 40%;
  margin-right: 0;
}

#hero-vps {
  max-width: 700px;
  margin-bottom: -10px;
}

.section-tech-container {
  margin-top: -240px;
}

.t-white.vps-tech {
  padding-bottom: 0;
}

.card:has(:not(img)) .domain {
  transition: 0.2s;
}

#domain-loading.lds-ring {
  margin-top: 0;
  display: none;
}

#domain-loading.lds-ring div {
  border-color: #76146d transparent transparent transparent;
}

.offer-service-row {
  display: flex;
  padding: var(--padding-box);
  border-radius: var(--border-radius-box);
  margin: 15px 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
  background: #fff;
  line-height: 1.1;
}

.price-mid {
  font-weight: 700 !important;
  text-align: end;
  font-size: 20px;
}

h3.title-mid {
  font-size: 20px;
}

.space-between {
  justify-content: space-between;
}

.button-price-holder {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* popup- START */

.popup-background {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 115%;
  z-index: 9991;
}

.popup {
  position: fixed;
  z-index: 9999;
  display: inline-block;
  flex-direction: column;
  align-content: space-between;
  height: auto;
  color: #000;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  text-align: center;
  border-radius: 12px;
  background-color: white;
  width: 400px;
  padding: 30px 20px;
  transform: 0.3s;
}

.popup h3 {
  margin-bottom: 40px;
}

.popup p {
  color: rgb(var(--color-text-base-RGB));
  font-size: 14px;
  margin-top: 8px;
  text-decoration: none;
}

.popup-button {
  margin-top: 10px;
}

.button-yellow {
  border-color: var(--color-yellow);
  background-color: var(--color-yellow);
  color: var(--color-black);
}

.button-yellow:hover {
  opacity: 0.9;
  border-color: var(--color-yellow);
  background-color: var(--color-yellow);
  color: var(--color-black);
}

.button-yellow:focus {
  opacity: 0.7;
  border-color: var(--color-yellow);
  background-color: var(--color-yellow);
  color: var(--color-black);
}

.popup form {
  display: flex;
}

#full-popup-dedicated {
  display: none;
}

.popup-dedicated {
  width: 810px;
  padding: 40px 20px 20px 20px;
}

/* popup - END */

.section_cta-banner {
  overflow: hidden;
}

.cta-container {
  color: #fff;
  max-width: 1920px;
  background-image: url("/static/guests/images/baner-disk-background.db7226148de1.avif");
  align-content: center;
}

.cta-container.tech-back {
  background-image: url("/static/guests/images/typing_baner_img/main-baner-background-mobile---1.dc8edbd1de81.avif");
}

.wave {
  z-index: 11;
  position: relative;
  top: 56px;
  left: -100px;
}

.cta-holder {
  display: flex;
  flex-direction: row;
  justify-content: center;
  max-width: 1280px;

  margin: auto;
  gap: 60px;
  align-items: center;
  padding: 140px 40px 100px 40px;
}

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-text h2 {
  color: white;
}

.cta-text p {
  font-size: 24px;
}

.cta-container .buttons-row {
  display: block;
  margin-top: 0;
}

.cta-container .guest-button {
  font-size: 20px;
  padding: 14px 26px;
  margin-bottom: 0px;
}

.cta-container .domain-searchbar-holder .guest-button {
  padding: 10px 20px;
  font-size: 12px;
}

.param-row {
  margin: 10px 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.captcha-red-text {
  margin-top: 5px;
}

.offer-box .param-row .param-val {
  color: rgba(var(--color-text-base-RGB), 1);
  font-weight: 700;
}
.offer-box .param-row i::before {
  background-color: rgba(var(--color-text-base-RGB), 0.4);
}

.offer-box .param-row select.gray-select.param-row {
  color: rgba(var(--color-text-base-RGB), 1);
  font-weight: 600;
}

.offer-box .param-row .param-key {
  color: rgba(var(--color-text-base-RGB), 0.4);
}

.offer-box .param-row img {
  max-width: 30px;
  height: 30px;
  margin-right: 15px;
}

.text-under-offer-box {
  justify-content: center;
  text-align: center;
  width: 100%;
}

.text-under-offer-box h6 {
  margin: 50px 10% -70px 10%;
}

.g-recaptcha {
  transform: scale(1);
  -webkit-transform: scale(1);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}

/* contact form (NO HOME PAGE) */

.no_map_contact h2 {
  width: auto !important;
}

.no_map_contact .home-contact {
  max-width: 420px;
}

.no_map_contact .map_and_contact {
  justify-content: center;
}

.no_map_contact .left-contact {
  margin-top: 0px;
  width: auto;
}

.no_map_contact .h-iframe {
  display: flex;
  align-items: flex-end;
  height: auto;
}

.no_map_contact .column-hero img {
  max-width: 500px;
}

.cpu-table-logo {
  padding: 1px 9px;
  border-radius: 20px;
}

.cpu-table-logo.logo-amd {
  background-color: #f75c21;
}

.cpu-table-logo.logo-arm {
  background-color: #008fbe;
}

.cpu-table-logo.logo-arm img {
  height: 11px;
}

.cpu-table-logo.logo-intel {
  background-color: #00c7fd;
}

.cpu-table-logo.logo-intel img {
  height: 13px;
}

.table-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1100px;
}

.price-button-holder {
  display: flex;
  gap: 10px;
}

select.gray-select {
  padding: var(--padding-small);
  border-radius: var(--border-radius-box);
  border: none;
  color: rgba(var(--color-text-base-RGB), 0.7);
  background-color: rgba(var(--color-text-base-RGB), 0.06);
  width: 100%;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right var(--padding-small) center;
  background-size: 1em;
  text-align: center;
}

.main-baner-text.domain-banner {
  display: flex;
  flex-direction: column;
  gap: var(--margin-gap-medium);
}

.standard-vps-banner .from {
  position: relative;
  top: 28px;
}

.main-baner-text.domain-banner h1 {
  width: auto;
}

.domain-searchbar-holder.filled {
  width: 100%;
  display: flex;
  background-color: white;
  padding: var(--padding-small);
  border-radius: 255px;
  box-sizing: border-box;
}

.domain-searchbar-holder input {
  font-size: inherit;
}

#domains-list-holder .gray-border {
  margin: 25px 0;
}

.search-domain-section {
  display: none;
  flex-direction: column;
}

.search-domain-section:has(#domains-list-holder div) {
  display: flex;
}

#domain-loading.lds-ring.visible {
  display: flex;
}

.search-domain-section:has(#domain-loading.lds-ring.visible) {
  display: flex;
}

.proportional-cell.creation-input.select {
  width: 100%;
}

.offer-box .param-row i:before {
  height: 22px !important;
  width: 22px !important;
  scale: 0.9;
}

#domains-list-holder div.domain:first-of-type:after {
  content: "";
  display: flex;
  margin: 25px 0;
  opacity: 0.2;
  border: 1px solid rgba(var(--color-text-base-RGB));
  width: 100%;
}

.tld-price-holder {
  margin: var(--padding-small);
  display: flex;
  gap: 20px;
}

.text-and-icon {
  display: flex;
  align-items: center;
  font-size: 20px;
}
p.text-and-icon {
  margin-bottom: 10px;
}
.text-and-icon > i {
  display: flex;
}

.offer-box:hover {
  z-index: 90;
}

.offer-box.service-card {
  align-items: flex-start;
  text-align: left;
  padding: 20px;
}
.box-between-holder {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.offer-box.service-card span,
h6 {
  text-align: left !important;
}

.bottom-holder {
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.bottom-holder .guest-button {
  width: 35%;
  position: inherit;
  text-align: center;
}
.bottom-holder span.price-holder {
  margin-bottom: -5px;
}

.service-cards-holders {
  flex-wrap: wrap;
  display: flex;
  width: 1250px;
  justify-content: center;
}

.service-card .special-offer-percent {
  margin-bottom: 55px;
}

.service-card .service-card-description {
  margin-bottom: 20px;
  height: 100%;
}

.offer-box i.mini-olive {
  opacity: 0;
}

.offer-box.olive i.mini-olive {
  opacity: 1;
}

.step-section {
  margin-bottom: 0;
}
.offer-row {
  position: relative;
  bottom: 100px;
  display: flex;
  justify-content: center;
}
.price-wrapper .period {
  top: -25px;
  position: relative;
}

.offer-box .params-box .param-row {
  margin: 0;
  justify-content: space-between;
  border-radius: 9px;
  padding: 10px 7px;
  box-sizing: border-box;
}
.offer-description {
  text-align: center;
  opacity: 0.7;
}

#offer-cards-holder {
}

.offer-box {
  padding: 30px 30px 30px 30px;
  width: 350px;
  background-color: rgba(var(--color-box-bg-RGB));
  color: rgba(var(--color-text-base-RGB));
  border-radius: 12px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin: 10px;
  display: flex;

  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.offer-box.transparent {
  background-color: rgba(0, 0, 0, 0);
}

.offer-box img {
  height: 90px;
}
.step-box {
  flex-direction: column;
  text-align: center;
  align-items: center;
  margin-bottom: 0;
  box-shadow: none;
  padding: 25px;
  padding-bottom: 0;
}

.offer-box.step-box h6 {
  font-size: 27px;
}

.v-gray-line {
  width: 2px;
  height: 100%;
  background-color: rgba(var(--color-text-base-RGB));
  opacity: 0.2;
}

.h-gray-line {
  height: 2px;
  width: 100%;
  background-color: rgba(var(--color-text-base-RGB));
  opacity: 0.2;
}

.exposed-appla-text {
  border-radius: 5px;
  padding: 1px 5px;
  margin: 3px;
  background-color: rgba(var(--color-guest-action-RGB));
  font-weight: 600;
  color: rgba(var(--color-black-RGB));
}

.black-text {
  color: rgba(var(--color-text-base-RGB));
}
.black-trans-text {
  color: rgba(var(--color-text-base-RGB), 0.7);
}

.offer-box img {
  filter: var(--filter-img-icon);
}

.c-gray70 {
  color: rgba(var(--color-gray-RGB), 0.7);
}

.br-txt-900 {
  white-space: nowrap;
}

.info-under-offer-section {
  margin: 0 auto;
  position: relative;
  text-align: center;
  opacity: 0.7;
  bottom: 220px;
  width: 80%;
  color: var(--color-black);
}

.offer-label {
  display: flex;
  align-items: center;
}

.extra-info {
  cursor: pointer;
  display: flex;
}
.extra-info::before {
  background-color: rgba(var(--color-text-base-RGB), 0.2);
}

.hidden {
  display: none;
}

.main-offer {
  gap: 50px 0;
}

.banner-price-button-holder {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner-price-button-holder .price-wrapper {
  margin-bottom: -12px !important;
}

.banner-domain {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
}

.special-offer-lable {
  border-radius: 12px;
  background-color: #efb031;
  z-index: -10;
  padding: 15px 0 30px 0;
  top: -05px;
  opacity: 0;
  transition: var(--transform-primary);
  text-align: center;
  position: relative;
  width: calc(100% + 60px);
  margin-bottom: -40px;
}
.special-offer-lable-white {
  border-radius: 12px;
  background-color: #fff;
  z-index: -9;
  padding-bottom: 40px;
  position: relative;
  width: calc(100% + 60px);
  top: -75px;
  margin-bottom: -75px;
}

.special-offer .button-black {
  background-color: #efb031;
  border: #efb031 1px solid;
  color: #000;

  transition: 0.2s;
}

.special-offer .button-black:hover {
  background-color: white;
  border: #000 1px solid;
  transition: 0.2s;
}

.special-offer .special-offer-lable {
  top: -95px;
  opacity: 1;
  transition: var(--transform-primary);
}

.special-offer .special-offer-lable-white {
  display: block;
}

.offer-box span.special-offer-percent {
  margin-bottom: 0;
  margin-left: 8px;
}

@supports (-webkit-touch-callout: none) {
  /* Tutaj wpisz kod CSS dla Safari */
  .special-offer-lable {
    position: relative;
    width: calc(100% + 60px);
  }

  .special-offer-lable-white {
    position: relative;
    width: calc(100% + 60px);
    top: -75px;
  }
}

@media (max-width: 1430px) {
  #nav-list a {
    font-size: 10px;
    margin-right: 20px;
  }

  #nav-list .guest-button {
    letter-spacing: 0;
  }

  .sum {
    font-size: 25px;
  }

  .currency {
    font-size: 25px;
  }

  .period {
    font-size: 14px;
  }

  .fold-poland {
    font-size: 10px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .fold-poland div {
    margin-top: 6px;
  }

  .fold-poland img {
    width: 40px;
  }

  .column-hero img {
    max-width: 500px;
  }

  #hero-vps {
    max-width: 600px;
  }
}

@media (max-width: 1300px) {
  .offer-row {
    flex-wrap: wrap;
  }
}

@media (max-width: 1200px) {
  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 20px;
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
    line-height: 1.2;
  }

  p {
  }

  #change-man p {
    margin-left: 0px;
    margin-right: 0px;
  }

  .about-VPS-1-color-section .column-text.text-left {
    width: auto;
    align-items: center;
    margin: 0 30px;
    padding-top: 300px;
    padding-bottom: 80px;
    text-align: left;
  }

  .column-hero.hero-left {
    display: none;
  }

  .column-hero.hero-right img {
    display: none;
  }

  .text-section-white .column-text {
    width: 100%;
    text-align: left;
  }

  .text-section-white .column-hero.hero-right {
    width: 100%;
    justify-content: center;
  }

  .text-section-white .column-text p {
    max-width: none;
  }

  .text-section-white-content {
    flex-direction: column-reverse;
    margin: 0 100px 0 100px;
    padding-top: 80px;
    text-align: center;
  }

  .text-about-container {
    height: auto;
    padding: 0;
    justify-content: center;
  }

  .tech-top-text {
    margin: 0 20px;
  }

  form p {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 990px) {
  h1 {
    font-size: 55px;
  }

  .service-cards-holders {
    width: auto;
  }

  .price {
    font-size: 25px;
  }
  .sum {
    font-size: 16px;
    margin-bottom: -2px;
  }
  .contact-section {
    flex-direction: column;
    align-items: center;
  }
  .contact-form {
    width: 80%;
    margin-bottom: 50px;
  }
  .left-contact {
    width: 100%;
    height: 300px;
    margin-bottom: 50px;
  }

  .left-contact {
    display: none;
  }

  .h-iframe {
    width: 100%;
  }

  .contact-options {
    flex-direction: column;
  }
  .contact {
    margin: 20px 0;
  }
  .home-contact {
    width: 90%;
    margin: 15px 20px 50px 20px;
  }
  #footer-menu-container {
    flex-direction: column;
    text-align: center;
  }
  #social-icons {
    display: flex;
    justify-content: center;
    margin: 10px 0;
  }

  .text-section-white .column-text {
    width: 100%;
  }

  .text-section-white .column-hero.hero-right {
    width: 100%;
    justify-content: center;
    margin-bottom: 60px;
  }

  .text-section-white-content {
    flex-direction: column-reverse;
    margin: 0 30px;
    padding-top: 80px;
    text-align: center;
    align-items: center;
  }

  .column-hero.hero-right img {
    display: flex;
    width: 100%;
  }

  .vps-text {
    width: auto;
  }

  .vps-baner {
    margin: 0 5%;
  }

  .vps-column {
    margin: 30px 0;
  }

  .sum_year_holder {
    margin-top: 3px;
  }

  .vps-form-content {
    flex-direction: column;
  }

  .bottom-row {
    flex-direction: column;
    justify-content: center;
    align-content: center;
  }
  .bottom-row img {
    width: 50%;
    align-self: center;
  }
  .detailed-desc {
    width: 80%;
    align-self: center;
  }
  #polish-capital {
    margin: 0 auto;
  }

  #footer-menu-container {
    font-size: 10px;
  }
  .footer-title {
    font-size: 18px;
  }
  .text span {
    font-size: 15px;
  }
  .news-row {
    flex-direction: column;
    align-items: center;
  }
  .news {
    width: 80%;
    margin-bottom: 100px;
  }
  .news:last-of-type {
    margin-bottom: 0;
  }

  .news p {
    font-size: 14px;
  }

  .popup {
    margin-left: 15px;
    margin-right: 15px;
    width: auto;
  }

  p.text-and-icon {
    margin-bottom: 10px;
    line-height: 1.3;
  }

  p.text-and-icon.with-exposed-appla span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .g-recaptcha {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }

  @media (max-width: 900px) {
    .bar-mobile {
      display: flex;
    }

    .sidebar.sidebar-mobile {
      display: flex;
      max-width: 0;
      padding: var(--padding-menu-mobile) 0;
      overflow: hidden;
    }

    .sidebar.sidebar-mobile.active {
      max-width: 75%;
      box-shadow: 0px 0px 0px 9000px rgba(0, 0, 0, 0.4);
      padding: var(--padding-menu-mobile);
      padding-top: calc(var(--padding-menu-mobile) + 60px);
      gap: 50px;
    }
    .menu-list-up {
      width: 100%;
    }
    .menu-list-down {
      width: 100%;
    }
    .sidebar-menu-element-holder {
      width: 100%;
    }
    .menu-dropdown-elements-holder {
      max-height: 0px;
      overflow: hidden;
      transition: max-height 0.2s;
      display: flex;
      flex-direction: column;
    }
    .menu-dropdown-elements-holder {
      max-height: 0px;
      overflow: hidden;
      transition: max-height 0.2s;
      display: flex;
      flex-direction: column;
    }
    .menu-inside-element-holder i {
      display: flex;
    }

    .show-dropdown > .menu-dropdown-elements-holder {
      max-height: 500px;
      transition: max-height 1s;
    }

    .sidebar.sidebar-mobile .sidebar-menu-element-icon {
      margin-right: 8px;
      align-items: center;
      display: flex;
    }

    .sidebar-menu-element {
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      width: 100%;
      padding: 10px 0;
      font-family: var(--font-family-primary);
      font-size: var(--font-size-menu);
      font-weight: var(--font-weight-medium);
      color: rgba(var(--color-text-base-RGB), 0.5);
      transition: var(--transform-primary);
    }

    a.sidebar-menu-element:hover {
      color: rgba(var(--color-guest-action-2-RGB));
      transition: var(--transform-primary);
    }

    .menu-inside-element-holder {
      display: flex;
      align-items: center;
      width: 100%;
    }
    .sidebar-menu-element-holder.with-dropdown-inside:hover
      > a.sidebar-menu-element
      > .i-dropdown-arrow:before {
      transform: rotate(0deg);
      transition: var(--transform-primary);
    }
    .menu-dropdown-elements-holder i:before {
      opacity: 0;
    }
    .sidebar-menu-element i:before,
    .bar-mobile i:before {
      background-color: rgba(var(--color-text-base-RGB), 0.5);
      cursor: pointer;
    }

    .list-texts-holder {
      display: flex;
      flex-direction: column;
    }

    a.sidebar-menu-element:hover > div > i:before {
      background-color: rgba(var(--color-guest-action-2-RGB));
      transition: var(--transform-primary);
    }

    a > i:before {
      transition: var(--transform-primary);
    }
    a:hover > i:before {
      background-color: rgba(var(--color-guest-action-2-RGB));
      transition: var(--transform-primary);
    }

    a.sidebar-menu-element[aria-current="page"] {
      color: rgba(var(--color-guest-action-2-RGB));
      font-weight: 700;
    }
    a.sidebar-menu-element[aria-current="page"] > div > i:before {
      background-color: rgba(var(--color-guest-action-2-RGB));
      transition: var(--transform-primary);
    }

    .sidebar-menu-element-holder.with-dropdown-inside.show-dropdown
      > a.sidebar-menu-element
      > .i-dropdown-arrow:before {
      transform: rotate(0deg);
      transition: 0.3s;
    }

    .info-under-offer-section {
      bottom: 400px;
    }

    .offer-box-top-bar h4 {
      word-spacing: inherit;
    }

    .v-gray-line {
      height: 90px;
    }

    .v-gray-line.last {
      display: none;
    }

    .h-gray-line.last {
      display: none;
    }

    #nav-container,
    #nav-container2 {
      display: none;
    }
    .section-row-box {
      margin: var(--margin-gap-big);
      gap: 50px;
    }
    .row-box {
      flex-direction: column;
      gap: var(--margin-gap-big);
      padding: var(--padding-bigger);
      border-radius: var(--border-radius-box);
    }
    .row-box.revers {
      flex-direction: column;
    }
    .img-half {
      width: 100%;
    }
    .content-half {
      width: 100%;
    }

    .row-box.alternative {
      background-repeat: no-repeat;
      background-image: url("/static/guests/images/ryzen-baner-back-mini.881a3f9444ed.avif");
      background-position: 50% 0%;
    }
    .cta-holder {
      flex-direction: column;
      text-align: center;
      gap: 40px;
    }

    .text-and-icon {
      font-size: 16px;
      display: flex;
    }

    .text-and-icon i::before {
      width: 26px;
      height: 26px;
    }
  }

  .br-txt-900 {
    white-space: inherit;
  }
}

@media (max-width: 700px) {
  .button-price-holder {
    flex-direction: column;
  }
}

/* nav dropdown */

.dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.dropdown-menu {
  display: block;
  position: absolute;
  z-index: 1;
  color: black !important;
  background-color: white !important;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  min-width: 100px;
  width: auto;
  top: 110%;
  left: -15px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-in-out;
  padding: 0 10px;
}

.dropdown:hover .dropdown-menu {
  max-height: 300px;
  padding-bottom: 10px;
}

.i-dropdown-arrow.left {
  width: 15px;
  height: 15px;
  transition: transform 0.3s ease;
}

.dropdown:hover .i-dropdown-arrow {
  transform: rotate(-0.25turn);
}

.dropdown .i-dropdown-arrow.left::before {
  background-color: white;
}

.dropdown-menu.scrolled-dropdown i.i-dropdown-arrow.left::before {
  background-color: black;
}

.dropdown .menu-inside-element-holder {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-menu a {
  padding: 15px 15px 15px 15px !important;
  margin-right: 0 !important;
}

.nav-container.scrolled i.i-dropdown-arrow.left::before {
  background-color: black;
}

.dropdown:hover .dropdown-toggle.marking-line::before {
  transform: scaleX(0);
  transform-origin: center;
}

.dropdown-menu .marking-line::before {
  background-color: rgba(var(--color-guest-action-2-RGB));
}

@media (max-width: 600px) {
  .buttons-holder {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .tld-price-holder {
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }

  .special-offer-percent {
    border-radius: 7px;
    padding: 2px 4px;
    font-size: 14px;
  }

  .price-wrapper .price {
    font-size: 52px !important;
  }

  .price sup {
    font-size: 30px;
  }
  .price-wrapper .period {
    top: -18px;
    margin-left: 0 !important;
  }

  .offer-box {
    padding: 20px;
  }

  .special-offer-lable-white {
    top: -50px;
  }
  .special-offer .special-offer-lable {
    top: -77px;
  }

  .special-offer-lable {
    padding: 10px 0 20px 0;
    border-radius: 12px 12px 0 0;
  }

  .special-offer-lable-white,
  .special-offer-lable {
    width: calc(100% + 40px);
  }
  .offer-box .params-box .param-row {
    padding: 7px;
  }

  .offer-description {
    font-size: 14px;
  }

  .guest-button {
    padding: 8px 20px;
  }

  .offer-box .param-row .param-val,
  .offer-box .param-row .param-key,
  .offer-box .param-row select.gray-select.param-row {
    font-size: 14px;
    direction: rtl;
    text-align: right;
  }

  /* SWIPER */

  [data-swipe] {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 12px !important;
    padding-bottom: 150px !important;
    scale: 1 !important;
    box-sizing: border-box !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  [data-swipe]::-webkit-scrollbar {
    display: none;
  }

  [data-swipe] > * {
    flex: 0 0 80% !important;
    scroll-snap-align: center !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    margin-top: 80px !important;
    transition: transform 0.3s !important;
  }

  [data-swipe] > :first-child {
    margin-left: 1500px !important;
  }

  [data-swipe] > *.active {
    transform: scale(1.05) !important;
    box-shadow: 0 4px 60px rgba(0, 0, 0, 0.3) !important;
    transition:
      transform 0.3s,
      box-shadow 0.3s !important;
    z-index: 99 !important;
  }

  .swipe-dots {
    display: flex;
    gap: 10px;
    bottom: 140px;
    position: relative;
    justify-content: center;
    z-index: 10;
  }

  .s-dot {
    border-radius: 250px;
    border: 2px solid white;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transform-primary);
    cursor: pointer;
  }

  .s-dot.start-index {
    border: 2px solid rgba(var(--color-guest-action-RGB));
  }

  .s-dot > * {
    background-color: white;
    opacity: 0;
    border-radius: 250px;

    width: 9px;
    height: 9px;
    transition: var(--transform-primary);
  }
  .s-dot.start-index > * {
    background-color: rgba(var(--color-guest-action-RGB));
  }

  .s-dot.active > * {
    opacity: 1;
  }

  .offer-box-top-bar h4 {
    font-size: 16px;
  }

  .offer-box-top-bar i::before {
    width: 30px !important;
    height: 30px !important;
  }

  .standard-vps-banner .from {
    top: 20px;
  }
}

@media (max-width: 400px) {
  .domain-searchbar-holder.filled {
    flex-direction: column;
    background-color: transparent;
    gap: var(--padding-small);
  }

  #typeText {
    font-size: 32px !important;
  }
}
