@font-face {
  font-family: "Roboto";
  src: url(../fonts/roboto-regular.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url(../fonts/roboto-bold.woff2) format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

html {
  font-family: "Roboto", Arial, sans-serif;
  color: #b5b5b5;
}

body {
  background: #171717;
  margin: 0;
  padding: 0;
  font-size: 1.2em;
}

.shine-button {
  display: inline-block;
  position: fixed;
  bottom: 8px;
  left: 30px;
  padding: 26px 20px;
  font-size: 15px;
  background-color: #d262b1;
  color: #fff;
  border: none;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  opacity: 1;
  animation: shine 3s ease-in-out infinite;
  border-radius: 10px;
  transition: background-color 0.4s;
}

.shine-button:hover {
  color: #fff;
  background-color: #1bac7e;
}

@keyframes shine {
  0% {
    box-shadow: 0 0 10px #1bac7e;
  }
  50% {
    box-shadow: 0 0 20px #1bac7e, 0 0 30px #1bac7e;
  }
  100% {
    box-shadow: 0 0 10px #1bac7e;
  }
}

#main-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 30px;
  min-height: 540px;
}

.header {
  flex-direction: column;
  background: #1bac7e;
  display: flex;
  font-size: 2em;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 2px solid rgb(255, 255, 255);
}

.header .logo {
  font-size: 24px;
  font-weight: bold;
}

.header .menu {
  margin: 40px 0;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.header .menu a {
  margin-top: 0;
  padding: 10px 25px;
  text-decoration: none;
  font-size: 1em;
  color: #fff;
  transition: border 0.3s, box-shadow 0.3s;
}

.header .menu .login {
  display: inline;
  border: 1px solid #effffa;
  background: 0 0;
  box-shadow: none;
}

.header .menu .login:hover {
  border: 1px solid #ffdf18;
}

.header .menu .registration {
  margin-top: 28px;
  background: linear-gradient(
    to right,
    #fbc103 0,
    #f79604 15%,
    #f79604 30%,
    #fbc103 55%,
    #fbc103 100%
  );
  background-position: 50%0;
  background-size: 200%;
  box-shadow: 0 5px 10px 0 rgba(6, 8, 15, 0.1), inset 0 0 3px 0#ffdd8f;
  transition: box-shadow 0.3s, text-shadow 0.3s;
}

.header .menu .registration:hover {
  background-position: 0 0;
  box-shadow: 0 2px 2px 1px rgba(6, 8, 15, 0.1),
    0 4px 4px 1px rgba(6, 8, 15, 0.1), 0 8px 8px 1px rgba(6, 8, 15, 0.1),
    0 16px 16px 1px rgba(6, 8, 15, 0.1), 0 32px 32px 1px rgba(6, 8, 15, 0.1),
    inset 0 0 3px 0#ffdd8f;
  text-shadow: 0 1px 3px #967302;
}

.header #logo img {
  width: 245px;
  height: auto;
  position: relative;
  top: 4px;
  padding: 30px 15px 5px 15px;
}

#promo {
  background-color: #1bac7e;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
  border-bottom: 2px solid white;
}

#promo a {
  display: inherit;
}

#promo img {
  height: auto;
  width: 100%;
  position: relative;
  scale: 1.2;
}

@media (min-width: 600px) {
  .header {
    font-size: 1em;
  }
  .header .menu {
    flex-direction: row;
  }
  .header .menu .registration {
    margin-left: 27px;
    margin-top: 0;
  }
  .header #logo img {
    width: 190px;
    padding: 15px;
  }
  #promo img {
    scale: 1;
  }
}

@media (min-width: 800px) {
  #scrollToTopBtn {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .header {
    justify-content: center;
  }
}

body a {
  color: #1f946e;
  text-decoration: none;
  transition: color 0.3s ease;
}

body a:hover {
  color: #1bac7e;
}

h1,
h2,
h3,
h4 {
  font-weight: bold;
  color: #e0e0e0;
  text-align: center;
}

h1 {
  margin: 20px 0;
  text-decoration: underline;
  text-decoration-color: #e0e0e0;
}

h5 {
  color: #1bac7e;
  text-decoration: underline;
}

#main-content img,
#main-content .bodyimg img {
  border-radius: 10px;
  max-width: 100%;
  margin: 0 auto;
}

#main-content .bodyimg {
  display: flex;
  justify-content: center;
}

body table {
  margin: 25px 0;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  color: #fdfdfd;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

th,
td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

thead tr,
tr th {
  background-color: #1bac7e;
}

tr {
  background-color: #292929;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

li.active {
  text-decoration: underline;
}

li h2,
li h3,
li h4 {
  margin: 10px 0;
  padding: 0;
  font-weight: bold;
}

li a {
  color: #0066cc;
  text-decoration: none;
}

li a:hover {
  text-decoration: underline;
}

ul ul,
ol ul {
  margin-left: 20px;
}

ol {
  counter-reset: my-counter;
}

ol li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  position: absolute;
  left: -20px;
  top: -2px;
  background-color: #1bac7e;
  color: #ffffff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
}

ul li:before {
  content: "";
  position: absolute;
  left: -13px;
  top: 3px;
  width: 14px;
  height: 14px;
  background-color: #1bac7e;
  border-radius: 50%;
}

span.baji999 {
  display: flex;
  justify-content: center;
  background-color: #e0e0e0;
  color: #202020;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 10px 0;
}

#FAQPage .question {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  background-color: #e0e0e0;
  color: #202020;
  padding: 10px 20px;
  border-radius: 5px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

#FAQPage .bajilive {
  display: flex;
  justify-content: center;
  background-color: #1bac7e;
  padding: 10px 20px;
  border-radius: 5px;
  margin-bottom: 50px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  color: #e2e2e2;
}

footer {
  background-color: #111421;
  padding: 10px 0;
  text-align: center;
  bottom: 0;
  width: 100%;
  border-top: 2px solid rgb(255, 255, 255);
}

footer #footer-content p {
  margin: 0;
  color: #1bac7e;
  font-size: 0.7em;
}

.footer-partner-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-partner-wrap .partner-item-mobile {
  align-items: center;
  padding-bottom: 39px;
  display: flex;
  flex-direction: column;
  gap: 39px;
}

.footer-partner-wrap .partner-item-mobile .footer-item {
  max-width: 150px;
}

.footer-partner-wrap .partner-simple {
  padding-bottom: 49px;
  display: flex;
  flex-direction: unset;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.footer-partner-wrap .bajilinks {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-size: 17px;
  gap: 10px;
}

.footer-partner-wrap .partner-item h5 {
  margin-bottom: 15px;
  color: #fff;
}

.footer-partner-wrap .partner-item img {
  max-width: 67px;
  height: auto;
  padding: 2px;
}

@media (min-width: 400px) {
  button.readmore {
    width: 320px;
    padding: 15px 25px;
  }
}

@media (min-width: 488px) {
  #main-content .bodyimg img {
    display: block;
    float: right;
    max-width: none;
  }
}

@media (min-width: 500px) {
  .footer-partner-wrap {
    flex-direction: unset;
    justify-content: space-around;
    align-items: normal;
  }
  .footer-partner-wrap .bajilinks {
    align-items: start;
    gap: 10px;
  }
}

@media (min-width: 600px) {
  #main-content .bodyimg img {
    display: block;
    float: right;
    max-width: none;
  }
}

@media (min-width: 740px) {
  .footer-partner-wrap .partner-item-mobile {
    justify-content: center;
    flex-direction: unset;
    gap: 10px;
  }
  .shine-button {
    position: fixed;
    left: 27%;
    transform: translateX(-50%);
  }
}

@media (min-width: 800px) {
  #main-content .bodyimg {
    display: block;
    float: right;
    margin-left: 25px;
  }
}
