@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");

/* width */
::-webkit-scrollbar {
  width: 0.4em;
}

/* Track */
::-webkit-scrollbar-track {
  background: #555;
  border-radius: 1em;
}

/* Handle */
::-webkit-scrollbar-thumb {
  height: 80%;
  background: #ccc;
  border-radius: 1em;
}

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Quicksand", sans-serif;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #000;
}
section {
  position: absolute;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  overflow: hidden;
}
section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(#000, #0f0, #000);
  animation: animate 5s linear infinite;
}
@keyframes animate {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
section span {
  position: relative;
  display: block;
  width: calc(6.25vw - 2px);
  height: calc(6.25vw - 2px);
  background: #181818;
  z-index: 2;
  transition: 1.5s;
}
section span:hover {
  background: #0f0;
  transition: 0s;
}
.signin {
  position: absolute;
  width: 300px;
  background: #222;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 35px;
  border-radius: 0.42em;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 9);
}
.global-logo {
  left: 1px;
  top: 0;
  z-index: 3;
  width: calc(12.5vw - 2px);
  height: calc(12.5vw - 2px);
  position: absolute;
}
.signin-logo {
  display: block;
}
.signin-banner {
  display: block;
}
.signin img {
  width: 100%;
  margin-bottom: 20px;
}
.wraper {
  position: absolute;
  width: 98vw;
  height: 75vh;
  z-index: 1000;
  display: flex;
  align-items: top;
}
.wraper-banner {
  max-width: 14vw;
  width: auto;
  height: 100%;
}
.mainplate {
  z-index: 1001;
  flex-grow: 1;
  position: relative;
  width: 70vw;

  background: #222;
  display: flex;
  flex-direction: column;
  align-items: flex-start;


  border-radius: 0.42em;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 9);
  box-sizing: border-box;
  margin: 0 auto;
}
.content {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2em;
}
h1 {
  font-size: 1.5em;
  color: #ccc;
  text-transform: uppercase;
}

h3 {
  color: #ccc;
}
h2 {
  font-size: 2em;
  color: #0f0;
  text-transform: uppercase;
}
.form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.inputBox {
  position: relative;
  width: 100%;
}
input {
  position: relative;
  width: 100%;
  background: #333;
  border: none;
  outline: none;
  padding: 25px 10px 7.5px;
  border-radius: 0.42em;
  color: #fff;
  font-weight: 500;
  font-size: 1em;
}
textarea {
  position: relative;
  width: 100%;
  height: 100%;
  background: #333;
  border: none;
  outline: none;
  padding: 0.5em 0.5em 0.5em;
  border-bottom-left-radius: 0.42em;
  border-bottom-right-radius: 0.42em;
  color: #fff;
  font-weight: 500;
  font-size: 1em;
  resize: none;
}

.maincontent .form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
i {
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 100%;
  height: 1 em;
  padding: 0.5em 0.5em;
  font-style: normal;
  color: #aaa;
  background: #333;
  transition: 0.5s;
  border-radius: 0.42em;
  pointer-events: none;
}
input:focus ~ i,
input:valid ~ i {
  transform: translateY(-7.5px);
  font-size: 0.8em;
  color: #fff;
}

.links {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
a {
  color: #0f0;
  font-weight: 600;
}
input[type="submit"] {
  padding: 0.25em;
  width: 100%;
  background: #0f0;
  color: #000;
  font-weight: 600;
  font-size: 1.35em;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: 0.42em;
}
input[type="submit"]:active {
  opacity: 0.6;
}
input[name="goCheck"] {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
@media (max-width: 900px) {
  section span {
    width: calc(10vw - 2px);
    height: calc(10vw - 2px);
  }
}
@media (max-width: 600px) {
  section span {
    width: calc(20vw - 2px);
    height: calc(20vw - 2px);
  }
}
.top {
  position: relative;
  width: 100%;
  height: 15%;
  display: flex;
  align-items: stretch;
  font-size: 1.2em;
  color: #fff;
  background: #111;
}
.top .logo {
  padding: 20px 30px;
  width: 25%;
  height: auto;
  display: flex;
  align-items: center;
}
.top .logo img {
  width: 100%;
  height: max-content;
}
.topmenu {
  /* z-index: 1002; */

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.65em;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.topmenu img {
  height: 60%; /* Set the image height to 90% of the list item's height */
  object-fit: cover;
  margin-left: 1em;
}
.topmenu li {
  height: 100%;
  display: flex;
  align-items: center;
  margin: 1em;
}
.topmenu li:first-child {
  height: 100%;
}
.topmenu li:last-child {
  margin-left: auto;
  margin-right: 2em;
  font-size: 1.5em;
}
.topmenu li a {
  align-items: center;
  color: #fff;
  text-decoration: none;
}
.topmenu li a:hover {
  color: #0f0;
  transition: 0s;
}
.bottom {
  position: relative;
  width: 100%;
  height: 85%;
  padding-left: 2vw;
  padding-right: 2vw;
  padding-top: 2vh;
  padding-bottom: 2vh;
}
.maincontent {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  gap: 40px;
}
.maincontent div {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 1001;
  width: 100%;
  height: 100%;
}
.textAreaInput {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.maincontent i {
  position: relative;
  left: 0;
  top: 0em;
  width: 100%;
  height: 5 em;
  padding: 0.5em 0.5em;
  font-style: normal;
  color: #aaa;
  transition: 0.5s;
  border-radius: 0.42em;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  pointer-events: none;
}
.dataOutput {
  display: flex;
  flex-direction: column;
}
.dataOutput div {
  height: 49%;
}
div[class="other"] {
  margin-top: auto;
}
section .mainplate .maincontent i[class="other"] {
  color: #f00;
}
section .mainplate .maincontent i[class="alive"] {
  color: #0f0;
}

.pay_maincontent {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  gap: 40px;
}
.textarea-border {
  border-top-left-radius: 0.42em;
  border-top-right-radius: 0.42em;
  width: 100%;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0.3em;
  font-size: 1em;
  overflow: hidden;
  color: #fff;
  background: #333;
}
.textarea-border li:last-child {
  margin-left: auto;
}
.btnCopy {
  background: none;
  border: none;
  padding-right: 0.3em;
  color: #fff;
  font-size: 1em;
  cursor: pointer; /* Курсор меняется при наведении */
}
.btnCopy:hover {
  color: #0f0; /* Цвет ссылки */
}
.maincontent .check-status {
  color: #fff;
}

.paySettings {
  width: calc(100% * (1 / 3));
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.payDetails {
  background: #333;
  border-radius: 0.42em;
  position: relative;
  display: flex;
  width: calc(100% * (2 / 3));
  justify-content: space-evenly;
  flex-direction: column;
  align-items: center;
}
.flex_item {
  text-align: center;
  margin: 2rem;
}
.select_ct {
  background: #333;
  border-color: #333;
  color: #fff;
  outline-width: 0;
}
.prices {
  color: #fff;
  width: 100%;
  background: #333;
  border-radius: 0.42em;
  margin-bottom: 1em;
}
.prices .prtd {
  padding-right: 1em;
  padding-bottom: 0.5em;
}
.status {
  padding: 2em;
  width: 50%;
  height: 100%;
}
.referals {
  display: flex;
  height: 100%;
  align-items: center;
  flex-direction: column;
}
.referals h2 {
  margin-bottom: 1em;
}
.referals-info {
  background: #333;
  border-radius: 0.42em;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  color: white;
}
.referal {
  margin-top: 1em;
  display: flex;
  align-items: center;
  list-style: none;

}
.referal li:first-child {
  margin-left: 2em;
}
.referal li:last-child {
  margin-left: auto;
  margin-right: 2em;
}
.partners {
  display: flex;
  height: 100%;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}
.partners h2 {
  height: 8%;
}
.partner-banners {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 92%;
}
.partner-banners a {
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  overflow: hidden; /* Prevent overflow */
}
.partner-banners a img {
  width: 100%;
}

.banner-top {
  position: absolute;
  padding: 0 5%;
  z-index: 1007;
  top: 1px;
}
.banner-top a{
  height: 100%;
  margin: 0 10px;
}

.banner-bottom {
  position: absolute;
  
  padding: 0 5%;
  z-index: 1007;
  bottom: 1px;
}
.banner-bottom-row{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; 
  margin-bottom: 5px;
  height: auto;
}
.banner-top-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 5px;
  height: auto;
}

.banner-bottom img {
  width: 100%;
  max-height: 10vh;
}
.banner-top img {
  max-width: 100%;
  max-height: 10vh;
}


.partner-banners-row {
  margin-top: 15px;
  display: flex;
  width: 100%;
  align-items: center;

}


.partner-banners-row-half{
  width: 48%;
  padding: 0 1%;
}


.partner-banners-row-three{
  width: 33%;
  padding: 0 5px;
}

.banner-right {
  position: absolute;
  z-index: 999;
  width: 30%;
  height: 100%;
  right: 0;
  display: flex;
  align-items: center;
  margin-right: 5%;
}
.banner-right-row img {
  width: 100%;
}
.banner-right-row {
margin-bottom: 5%;
}


.banner-left {
  position: absolute;
  z-index: 999;
  width: 30%;
  height: 100%;
  left: 0;
  display: flex;
  align-items: center;
  margin-left: 5%;
}
.banner-left-row img {
  width: 100%;
}
.banner-left-row {
margin-bottom: 5%;
}