/** Fonts **/
@font-face {
  font-family: "Brinnan-Light";
  src: url("../fonts/Brinnan/Brinnan-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Brinnan-Bold";
  src: url("../fonts/Brinnan/Brinnan-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Brinnan-Regular";
  src: url("../fonts/Brinnan/Brinnan-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Uni-Sans";
  src: url("../fonts/Uni-Sans/Uni-Sans.ttf") format("truetype");
}
@font-face {
  font-family: "Uni-Sans-thin";
  src: url("../fonts/Uni-Sans/Uni-Sans-Thin.ttf") format("truetype");
}
@font-face {
  font-family: "Uni-Sans-light";
  src: url("../fonts/Uni-Sans/Uni-Sans-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Uni-Sans-heavy";
  src: url("../fonts/Uni-Sans/Uni-Sans-Heavy.ttf") format("truetype");
}
/** General **/
body {
  background-color: black;
  margin-top: 15px;
}
.__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../imgs/bg.png");
  opacity: 0.2;
  background-size: cover;
  pointer-events: none;
  z-index: -1;
}
/** title **/
h6.__title {
  font-family: "Brinnan-Light", sans-serif;
  letter-spacing: 6px;
  color: #d9bd6a;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 12px;
}
/** Navbar **/
.navbar {
  color: #fff;
  padding: 10px;
  border: #d9bd6a 1px solid;
  border-bottom: #d9bd6a 8px solid;
  border-radius: 60px;
  margin-top: 20px;
  margin: auto;
  width: auto;
  max-width: 73%;
}
.nav-links {
  display: flex;
  list-style: none;
  margin: auto;
  padding: 14px;
}
.nav-links li {
  margin-left: 10px;
}
.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-family: "Brinnan-Light", sans-serif;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.nav-links li::after {
  content: "|";
  margin-left: 10px;
  color: #d9bd6a;
  font-weight: 100;
  opacity: 0.5;
}
.nav-links li:last-child:after {
  content: "";
}
.__btns img {
  width: 30px;
  height: 30px;
  margin-left: 10px;
  cursor: pointer;
  border: #d9bd6a 1px solid;
  border-radius: 50%;
}
.__btns .btn__register {
  display: inline-block;
  line-height: 10px; /* Vertically align the text within the button */
  background-color: #d9bd6a;
  color: #000;
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  font-family: "Brinnan-Bold", sans-serif;
  font-size: 14px;
  cursor: pointer;
  margin-right: 10px;
  margin-left: 7px;
  width: 120px;
  height: 30px;
}
.__btns .btn__login {
  display: inline-block;
  line-height: 10px; /* Vertically align the text within the button */
  background-color: #000;
  color: #d9bd6a;
  border: #d9bd6a 1px solid;
  border-radius: 30px;
  padding: 10px 20px;
  font-family: "Brinnan-Bold", sans-serif;
  font-size: 14px;
  cursor: pointer;
  margin-left: 6px;
  width: 120px;
  height: 30px;
}
.__btns .btn__register a {
  color: #000;
  text-decoration: none;
}
.__btns .btn__login a {
  color: #d9bd6a;
  text-decoration: none;
}
/** Logo **/
.__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -21px;
  position: absolute;
  left: 38%;
  pointer-events: none;
}
.__logo img {
  height: 100px;
  margin-right: 10px;
  margin-left: 10px;
}
/** REGISTER **/
.register__form {
  margin: auto;
  margin-top: 100px;
  margin-bottom: 30px;
  border: #d9bd6a 1px solid;
  border-radius: 20px;
  width: 40%;
  padding: 25px;
  background-color: #0d0d0d;
  z-index: 9999;
}
.register__form .title {
  text-align: center;
  color: #fff;
  font-family: "Brinnan-Bold", sans-serif;
}
.register__form .title span {
  color: #d9bd6a;
}
.register__form .form__group:first {
  margin-top: 10px;
}
.register__form .form__group {
  margin-bottom: 15px;
}
.register__form .form__group h6 {
  color: white;
  margin-bottom: 3px;
  font-family: "Brinnan-Light", sans-serif;
  font-size: 14px;
}
.register__form .form__group input {
  width: 100%;
  border: #d9bd6a 1px solid;
  border-bottom: #d9bd6a 5px solid;
  background-color: #0d0d0d;
  height: 45px;
  color: white;
}
.register__form .terms {
  margin-top: 15px;
  color: #fff;
  font-family: "Brinnan-Light", sans-serif;
  font-size: 14.5px;
}
.register__form label {
  padding-top: 2px;
}
.styled-checkbox {
  position: absolute;
  opacity: 0;
}
.styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}
.styled-checkbox + label:before {
  content: "";
  margin-right: 6px;
  display: inline-block;
  vertical-align: text-top;
  width: 25px;
  height: 25px;
  background: #0d0d0d;
  border: 1px solid #d9bd6a;
  border-radius: 4px;
}
.styled-checkbox:hover + label:before {
  background: #d9bd6a;
}
.styled-checkbox:focus + label:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
.styled-checkbox:checked + label:before {
  background: #d9bd6a;
}
.styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white,
    4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
}

.register__form .terms div:first-child {
  margin-bottom: 15px;
}
span.s1 {
  color: #d9bd6a;
}
span.s2 {
  color: #ff0000;
}
.register__form .__captcha {
  margin-top: 10px;
  margin-bottom: 10px;
}
.register__form .__captcha img {
  width: 250px;
  margin: auto !important;
}
.register__form .__create_account {
  width: 100%;
  height: 40px;
  color: #0d0d0d;
  background-color: #d9bd6a;
  font-family: "Brinnan-Bold", sans-serif;
  font-size: 17px;
}
.register__form .__create_account a {
  color: #0d0d0d;
  text-decoration: none;
}
.register__form .__login {
  width: 100%;
  height: 40px;
  color: #d9bd6a;
  border: #d9bd6a 0.5px solid;
  background-color: #0d0d0d;
  font-family: "Brinnan-Bold", sans-serif;
  font-size: 17px;
  margin-bottom: 4px;
}
/** Social Links **/
.social__links {
  margin-top: -7px;
  margin-bottom: 5px;
  display: flex;
  justify-content: center;
}
.social__links > .__link {
  display: inline-block;
  width: 42px; /* Adjust the width as needed */
  height: 42px; /* Adjust the height as needed */
  border: #d9bd6a 1px solid;
  border-radius: 50%; /* Make the elements circular */
  margin: 10px; /* Add margin between the links */
  overflow: hidden; /* Hide any overflow content (e.g., images) within the circle */
}
.social__links > .__link > a > img {
  height: 20px;
  width: auto;
  margin: auto;
  justify-content: center;
  display: flex;
  margin-top: 10px;
}
/** Copyrights **/
.__copyrights {
  margin: auto;
  max-width: 60%;
}
.__copyrights h6 {
  color: #fff;
  font-family: "Brinnan-Light", sans-serif;
  font-size: 15px;
}
.__copyrights h6:first-child {
  margin-bottom: 9px;
}
.__copyrights h6 span {
  color: #d9bd6a;
}
/** Footer **/
footer {
  margin-bottom: 20px;
}
footer ul {
  list-style: none;
  margin: auto;
  padding: 0;
  display: flex;
  justify-content: center;
}
footer ul li {
  margin-left: 10px;
}
footer ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-family: "Brinnan-Light", sans-serif;
  transition: all 0.3s ease 0s;
}

footer ul li::after {
  content: "|";
  margin-left: 10px;
  color: #d9bd6a;
  font-weight: 100;
  opacity: 0.5;
}
footer ul li .logos img {
  height: 30px;
  margin-left: 10px;
  cursor: pointer;
}
footer ul li:last-child:after {
  content: "";
}
/** Download **/
/** Thanks **/
.__thanks {
  margin-top: 100px;
}
.__thanks .title {
  text-align: center;
  color: #d9bd6a;
  font-family: "Brinnan-Regular", sans-serif;
}
.__thanks h6 {
  color: #fff;
  font-family: "Uni-Sans", sans-serif;
}
.__features {
  width: 50%;
  margin: auto;
  display: flex;
  margin-top: 20px;
  justify-content: center;
}
.__features .feature {
  color: white;
  display: inline-block;
  width: 33%;
  border: #d9bd6a 1px solid;
  border-bottom: 5px solid #d9bd6a;
  padding: 10px;
  background-color: #0d0d0d;
}
.__features .feature h6 {
  font-family: "Uni-Sans-thin", sans-serif;
  font-size: 14px;
  margin-bottom: 5px;
  text-align: center;
}
.__features .feature h6 span {
  font-family: "Uni-Sans", sans-serif;
}
/** Download **/
.__download_cards {
  width: 70%;
  display: flex;
  margin: auto;
  margin-top: 25px;
  justify-content: center;
}
.__download_cards .__card {
  text-align: center;
  font-family: "Brinnan-Regular", sans-serif;
  width: 20%;
  border: #d9bd6a 1px solid;
  border-radius: 25%;
  border-bottom: 5px solid #d9bd6a;
  margin-right: 10px;
  background-color: #0d0d0d;
  padding-bottom: 10px;
  height: 170px;
}
.__download_cards .__card .logo img {
  position: relative;
  top: 8px;
  width: auto;
  height: 30px;
}
.__download_cards .__card .logo.last {
  padding: 3px;
}
.__download_cards .__card .logo img.last {
  height: 15px;
}
.__download_cards .__card h6 {
  color: #fff;
  font-size: 18px;
  font-family: "Uni-Sans-light", sans-serif;
  margin-top: -12px;
}
.__download_cards .__card p {
  color: #fff;
  font-family: "Uni-Sans-light", sans-serif;
  font-size: 13px;
  margin-top: -10px;
}
.__download_cards .__card button {
  width: 60px;
  background-color: #0d0d0d;
  border: #d9bd6a 1px solid;
  border-radius: 10px;
  margin-bottom: 5px;
  padding: 5px;
  margin-top: -12px;
}
.__download_cards .__card button img {
  width: auto;
  height: auto;
}
/** rank **/
.layer {
  width: 75%;
  margin: auto;
}
.__titles {
  margin-top: 100px;
  margin-bottom: 30px;
}
.__titles h3 {
  font-family: "Brinnan-Bold", sans-serif;
  color: #d9bd6a;
}
.__titles h6 {
  font-family: "Brinnan-Regular", sans-serif;
  color: #fff;
  font-size: 15px;
  margin-top: -4px;
}
.content {
  margin: auto;
  width: 100%;
  color: white;
  display: flex;
}

.content .__side {
  flex: 0 0 20%; /* Take 75% of the container width */
}
.content .__side .leaderboards {
  background-color: #0d0d0d;
  border: #d9bd6a 1px solid;
  border-radius: 20px;
  border-bottom: #d9bd6a 5px solid;
  padding: 15px;
}
.content .__side .leaderboards:first-child {
  margin-bottom: 25px;
}
.content .__side .leaderboards h6 {
  font-family: "Brinnan-light", sans-serif;
  color: #fff;
  font-size: 15px;
  margin-bottom: -3px;
  margin-top: 2px;
}
.content .__side .leaderboards h6 img {
  width: 20px;
  height: 20px;
  margin-left: 5px;
  background-color: #d9bd6a;
  padding: 2px;
  border-radius: 3px;
  margin-right: 4px;
  margin-top: -2px;
}
.content .__table {
  margin-left: 20px;
  flex: 0 0 70%; /* Take 75% of the container width */
  background-color: #0d0d0d;
  border: #d9bd6a 1px solid;
  border-radius: 20px;
  border-bottom: #d9bd6a 5px solid;
}

.content .__table .head {
  padding: 5px;
  padding-top: 10px;
  padding-left: 10px;
  display: flex;
}
.content .__table .head .title {
  font-family: "Brinnan-Regular", sans-serif;
  flex: 0 0 40%;
  margin-top: 8px;
}
.content .__table .head .search {
  flex: 0 0 60%;
  display: flex;
  justify-content: flex-end;
}
.content .__table .head .search button {
  background-color: #d9bd6a;
  border: #0d0d0d 1px solid;
  border-radius: 15px;
  padding: 5px;
  margin-left: 10px;
  width: 120px;
  font-size: 15px;
  font-family: "Brinnan-Bold", sans-serif;
}
.content .__table .head .search input {
  width: 200px;
  height: 30px;
  border: #d9bd6a 1px solid;
  background-color: #0d0d0d;
  color: white;
  border-radius: 20px;
  margin-left: 10px;
  color: #fff;
  margin-top: 2px;
  padding: 10px;
}

.content .__table .__innerTable {
  margin: auto;
  margin-top: 10px;
  width: 100%;
  padding: 0;
}
.content .__table .__innerTable th {
  background-color: #d9bd6a;
  text-align: center;
  color: #0d0d0d;
  font-family: "Brinnan-Bold", sans-serif;
  text-transform: capitalize;
}
.content .__table .__innerTable td {
  text-align: center;
  font-family: "Uni-Sans", sans-serif;
  color: #fff;
}
.content .__table .__innerTable tr {
  height: 40px;
}
.content .__table .__innerTable tr:nth-child(odd) {
  background-color: #4b3d23;
}
.content .__table .__innerTable tr:nth-child(odd):last-child {
  background: transparent;
}
.content .__table .__innerTable tr:nth-child(2) td:nth-child(1) .rank_1 {
  color: #0d0d0d;
  background-color: #f2e205;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 30%;
  font-family: "Uni-sans-heavy", "sans-serif";
  font-weight: bold;
}
.content .__table .__innerTable tr:nth-child(3) td:nth-child(1) .rank_2 {
  color: #0d0d0d;
  background-color: #d9bd6a;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 30%;
  font-family: "Uni-sans-heavy", "sans-serif";
  font-weight: bold;
}
.content .__table .__innerTable tr:nth-child(4) td:nth-child(1) .rank_3 {
  color: #d9bd6a;
  background-color: #4b3d23;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 30%;
  font-family: "Uni-sans-heavy", "sans-serif";
  font-weight: bold;
}
/** store **/
.store__header {
  margin-top: 100px;
  margin-bottom: 35px;
}
.store__header h3 {
  color: #d9bd6a;
  font-family: "Brinnan-Regular", sans-serif;
  font-size: 35px;
}
.store__header h5 {
  margin-top: 20px;
  color: #d9bd6a;
  font-family: "Brinnan-Regular", sans-serif;
  font-size: 25px;
}
.store__header h6 {
  color: #fff;
  font-family: "Brinnan-Light", sans-serif;
  font-size: 15px;
  margin-top: -4px;
}
.payment_methods {
  width: 50%;
  color: white;
  margin: auto;
  display: flex;
  margin-bottom: 20px;
}
.payment_methods div {
  flex: 0 0 30%;
  text-align: center;
  background-color: #0d0d0d;
  border: #d9bd6a 1px solid;
  border-radius: 20px;
  border-bottom: #d9bd6a 5px solid;
  padding: auto;
  margin-right: 7px;
}
.payment_methods div h5 {
  font-family: "Brinnan-Light", sans-serif;
  color: #fff;
  margin-top: 4px;
}
/** cards **/
.__store_cards {
  width: 70%;
  display: flex;
  margin: auto;
  margin-top: 25px;
  justify-content: center;
  color: white;
}
.__store_cards > div {
  flex: 0 0 25%;
  margin-right: 6px;
  border: #d9bd6a 1px solid;
  padding: 15px;
  background-color: #0d0d0d;
  border-radius: 25px;
  text-align: center;
}
.__store_cards > div h5:nth-child(1) {
  font-family: "Brinnan-Bold", sans-serif;
  color: #d9bd6a;
}
.__store_cards > div h5:nth-child(2) {
  font-family: "Brinnan-bold", sans-serif;
  color: #fff;
}
.__store_cards > div img {
  width: 100px;
  height: 100px;
  margin: auto;
  margin-bottom: 15px;
}
.__store_cards > div .buttons button {
  display: block;
  width: 100%;
  border-radius: 20px;
  border: #d9bd6a 1px solid;
  margin-bottom: 6px;
  font-family: "Brinnan-regular", sans-serif;
  font-size: 15px;
  color: #fff;
}
.buttons .PAYBAL_btn {
  background-color: #00a0f5;
}
.buttons .MAXIGAME_btn {
  background-color: #a62724;
}
.buttons .CRYPTO_btn {
  background-color: #ffb223;
}
.buttons .PAYOP_btn {
  background-color: #4459d4;
}
.__items {
  width: 350px;
  display: flex;
  margin: auto;
  margin-top: 25px;
  justify-content: center;
  color: white;
}
.__items a {
  font-family: "Brinnan-light", sans-serif;
  color: #fff;
  flex: 0 0 50%;
  margin-right: 5px;
  border: #d9bd6a 1px solid;
  border-bottom: 5px solid #d9bd6a;
  border-radius: 10px;
  padding: 5px;
  background-color: #0d0d0d;
  text-align: center;
  text-decoration: none;
}
.__market_table {
  color: white;
  margin: auto;
  margin-top: 25px;
  justify-content: center;
  width: 70%;
  border-collapse: separate;
  border-spacing: 0;
  border-spacing: 0 10px;
}
.__market_table tr:nth-child(1) th {
  color: #d9bd6a;
  font-family: "Brinnan-Regular", sans-serif;
}
.__market_table tr:not(:nth-child(1)) {
  background-color: #0d0d0d;
}
.__market_table img {
  width: 30px;
  height: 30px;
}

.__market_table tr:not(:nth-child(1)) td {
  padding: 15px;
  border-bottom: #d9bd6a 3px solid;
  border-top: #d9bd6a 1px solid;
  font-family: "Brinnan-Light", sans-serif;
}

.__market_table tr:not(:nth-child(1)) td:first-child {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  border-left: #d9bd6a 1px solid;
}

.__market_table tr:not(:nth-child(1)) td:nth-child(3) {
  color: #14e1ff;
}

.__market_table tr:not(:nth-child(1)) td:last-child {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  border-right: #d9bd6a 1px solid;
}
/** Home **/
.__cover_image {
  margin: auto;
  margin-top: 100px;
  width: 72%;
  border: #d9bd6a 1px solid;
  border-radius: 20px;
  border-bottom: #d9bd6a 5px solid;
}
.__cover_image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.__home_content {
  margin: auto;
  margin-top: 20px;
  color: white;
  width: 72%;
  display: flex;
  margin-bottom: 45px;
}
.__home_content .main {
  flex: 0 0 60%;
  margin-right: 15px;
}
.__home_content .side {
  flex: 0 0 39%;
  margin-right: 15px;
}
.__home_content .main .maintain_notes {
  background-color: #0d0d0d;
  padding: 25px;
  border-radius: 20px;
  border: #d9bd6a 1px solid;
  border-bottom: #d9bd6a 5px solid;
}
.__home_content .main .maintain_notes .title,
.__home_content .main .maintain_notes .date {
  display: inline-block;
  font-family: "Brinnan-Bold", sans-serif;
  color: #d9bd6a;
}
.__home_content .main .maintain_notes .date {
  float: right;
  margin-top: 6px;
  font-family: "Brinnan-Light", sans-serif;
}

.__home_content .main .maintain_notes p {
  margin-top: 6px;
  font-family: "Brinnan-Light", sans-serif;
}

.__home_content .main .maintain_notes .see_more {
  background-color: #0d0d0d;
  border: #d9bd6a 1px solid;
  border-radius: 10px;
  padding: 5px;
  color: #d9bd6a;
  font-family: "Brinnan-Light", sans-serif;
  width: 180px;
  margin-top: 20px;
}
.__home_content .main .discord_img {
  margin-top: 20px;
  background-color: #0d0d0d;
  border-radius: 20px;
  border: #d9bd6a 1px solid;
  border-bottom: #d9bd6a 5px solid;
  margin-bottom: 10px;
}
.__home_content .main .discord_img img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.__home_content .side .home__section {
  background-color: #0d0d0d;
  padding: 15px;
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 20px;
  border: #d9bd6a 1px solid;
  border-bottom: #d9bd6a 5px solid;
  margin-bottom: 10px;
}
.__home_content .side .home__section h6 {
  font-family: "Brinnan-light", sans-serif;
}
.__home_content .side .home__section .record {
  margin-top: -10px;
  display: flex;
  padding: 3.9px;
}
.__home_content .side .home__section .record h6 {
  flex: 50%;
  font-family: "Brinnan-light", sans-serif;
  font-size: 14px;
}
.__home_content .side .home__section .record h6 img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  margin-top: -3px;
  margin-bottom: 2px;
  background-color: #d9bd6a;
  padding: 2px;
}
.__home_content .side .home__section .record h6:nth-child(1) {
  border-right: #d9bd6a 1px solid;
}

.__home_content .side .home__section .record h6:nth-child(2) {
  text-align: right;
}
/** ADD Silk **/
.__add_silk {
  margin-top: 10px;
  display: flex;
}
.__add_silk h6 {
  flex: 50%;
  font-family: "Brinnan-Bold", sans-serif;
  color: #d9bd6a;
}
.__add_silk h6:nth-child(2) {
  text-align: right;
}
.__add_to_silk_form h5 {
  color: #d9bd6a;
  font-family: "Brinnan-light", sans-serif;
}
.__add_to_silk_form input {
  width: 100%;
  border: #d9bd6a 1px solid;
  border-bottom: #d9bd6a 5px solid;
  background-color: #0d0d0d;
  height: 45px;
  color: white;
  margin-bottom: 15px;
  padding: 10px;
}
.__add_to_silk_form button {
  width: 100%;
  color: #d9bd6a;
  background-color: #0d0d0d;
  border: #d9bd6a 1px solid;
  border-radius: 10px;
  margin-bottom: 5px;
  padding: 5px;
}
/** My Characters **/
.char__img {
  display: block;
  margin: auto;
  margin-top: 20px;
  width: 80%;
  height: auto;
  border-radius: 20px;
  transition: transform 0.2s;
}
.char__img:hover {
  cursor: pointer;
  transform: scale(1.1);
}
/** Charachter **/
.__sell_items {
  margin: auto;
  margin-top: 100px;
  background-color: #0d0d0d;
  border: #d9bd6a 1px solid;
  border-radius: 20px;
  border-bottom: #d9bd6a 5px solid;
  padding: 15px;
  width: 70%;
  font-family: "Brinnan-Light", sans-serif;
  color: #d9bd6a;
  margin-bottom: 20px;
}
.__sell_items h5 {
  font-family: "Brinnan-Bold", sans-serif;
}
.__row {
  width: 70%;
  margin: auto;
  margin-top: 20px;
  display: flex;
}

.__row > div {
  flex: 0 0 30%;
  margin-right: 3%;
  background-color: #0d0d0d;
  border: #d9bd6a 1px solid;
  border-radius: 20px;
  border-bottom: #d9bd6a 5px solid;
  padding: 15px;
  color: white;
  font-family: "Brinnan-Bold", sans-serif;
}
.__row > div > h6 {
  font-family: "Brinnan-Bold", sans-serif;
  margin-bottom: 5px;
  color: #d9bd6a !important;
}
.__row > div > .ico {
  width: 100%;
  margin-bottom: 10px;
}
.__row > div > .ico > img {
  display: block;
  margin: auto;
}
.__row > div > input {
  width: 100%;
  border: #d9bd6a 1px solid;
  border-bottom: #d9bd6a 5px solid;
  background-color: #0d0d0d;
  height: 45px;
  color: white;
  margin-bottom: 15px;
  padding: 10px;
}
.__row > div > button {
  width: 100%;
  color: #d9bd6a;
  background-color: #0d0d0d;
  border: #d9bd6a 1px solid;
  border-radius: 10px;
  margin-bottom: 5px;
  padding: 5px;
}
/** Responsive **/
/** Navbar full width in mobile screens & footer **/
@media screen and (max-width: 992px) {
  .navbar {
    width: 100%;
    max-width: 100%;
    padding: 20px;
  }
  .nav-links {
    margin-right: 2px;
    padding: 0; /* Remove padding for better spacing on small screens */
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links li {
    margin: 8px 3px; /* Adjust the margin for better spacing on small screens */
  }
  .nav-links li::after {
    color: #d9bd6a;
    font-weight: 100;
    opacity: 0.5;
  }
  .__logo {
    left: 0;
    margin: auto;
    margin-top: -15px;
  }
  .__logo img {
    width: 60%;
    height: auto;
  }
  .__btns {
    justify-content: center;
  }
  footer ul {
    flex-wrap: wrap;
  }
}
/** Login & Register **/
@media screen and (max-width: 992px) {
  .register__form {
    width: 100%;
    margin: auto;
    margin-top: 160px;
  }
}
/** Home **/
@media screen and (max-width: 992px) {
  .__cover_image {
    width: 100%;
    margin-top: 160px;
  }
  .__home_content {
    display: block;
    width: 100%;
    margin-left: 10px;
  }
  .maintain_notes h4 {
    max-width: 70%;
  }
}
/** Download **/
@media screen and (max-width: 992px) {
  .__features {
    width: 100%;
  }
  .__download_cards {
    display: block;
  }
  .__download_cards .__card {
    width: 100%;
    margin-bottom: 10px;
    height: auto;
  }
  .__thanks {
    margin-top: 160px;
  }
}
/** Store **/
@media screen and (max-width: 992px) {
  .payment_methods {
    width: 100%;
  }
  .__store_cards {
    display: block;
  }
  .__store_cards div {
    margin-bottom: 10px;
  }
  .store__header {
    margin-top: 160px;
  }
}
/** Market **/
@media screen and (max-width: 992px) {
  .table_wrapper {
    overflow-x: auto;
  }
  .__table {
    width: 100%;
  }
}
/** Rank **/
@media screen and (max-width: 992px) {
  .layer {
    margin-top: 160px;
  }
  .content {
    display: block;
  }
  .content .__table {
    margin-top: 160px;
    margin-left: 0px;
  }
  .content .__table .head {
    display: block;
  }
}
@media screen and (max-width: 992px) {
  body {
    zoom: 120%;
  }
}
/** My Characters **/
@media screen and (max-width: 992px) {
  .__sell_items {
    margin-top: 160px;
    width:100%;
  }
  .__row {
    display: block;
        width:100%;
  }
  .__row > div {
      margin-bottom: 10px;
  }
}
