:root {
    --text: #1b1a18;
    --background: #f8f8f7;
    /*--primary: #ff8638;*/
    --primary: #b380c8;
    --secondary: #eae9e6;
    --accent: #797e8b;
    --bg-light: rgba(0, 0, 0, 0.03);
    --bg-light2: #F5F6F4;
    --bg-footer: rgba(0, 0, 0, 0.05);
    --static1: #F0F0EF;
    --gradient1: linear-gradient(212deg, rgba(248,189,13,1) 20%, rgba(248,230,13,1) 88%);
}


@font-face {
    font-family: Poppins-Bold;
    src: url(../_fonts/Poppins-Bold.ttf);
}

body {
    background-color: var(--background);
    color: var(--text);
    font-family: 'Poppins';
    font-weight: 400;
    padding: 0;
    margin: 0;
    line-height: 1.5;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins';
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: .5rem;
  }
  
html { font-size: 100%; /* 16px */ }
  
h1 { font-size: 4.210rem; /* 67.36px */ }
  
h2 { font-size: 3.158rem; /* 50.56px */ }
  
h3 { font-size: 2.369rem; /* 37.92px */ }
  
h4 { font-size: 1.777rem; /* 28.48px */ }
  
h5 { font-size: 1.333rem; /* 21.28px */ }
  
small { font-size: 0.750rem; /* 12px */ }

*, ::after, ::before {
    box-sizing: border-box;
}

.bold {
    font-weight: 700;
}

/* CONTAINER START */


.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

a {
    text-decoration: none;
    color: var(--text);
}

img {
    overflow-clip-margin: content-box;
    overflow: clip;
}

button:hover {
    cursor: pointer;
}

button:focus,
button:active {
    outline: none;
}

.float-right {
    float: right;
}

[data-tooltip] {
    position: relative;
}

[data-tooltip]::before {
    position: absolute;
    top: -50%;
    left: 0;
    padding: 5px 10px;
    text-align: center;
    background-color: var(--primary);
    color: var(--text);
    content: attr(data-tooltip);
    border-radius: 8px;
    left: 50%;
    transform: translate(-50%);
    font-size: 14px;
    visibility: hidden;
    z-index: 999;
}

[data-tooltip]::after {
    content: " ";
    position: absolute;
    /* At the bottom of the tooltip */
    top: 26%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    z-index: 999;
    border-color: var(--primary) transparent transparent transparent;
    visibility: hidden;
  }

[data-tooltip]:hover::after,
[data-tooltip]:hover::before {
    visibility: visible;
}


/* HEADER START */
header {
    overflow: hidden;
    position: relative;
    padding: 30px 0;
    text-align: center;
    display: block;
}

@media (min-width: 1200px) {
    .header {
        margin-bottom: 50px;
    }
}

.header-bg {
    content: ' ';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../_img/header2.png);
    background-repeat: no-repeat;
    background-position: 90% 85%;
    background-size: cover;
    opacity: 0.2;
}

.header-bg.page {
    background-position: 90% 60%;
}

.header-content {
    position: relative;
}

.logo {

    height: 44px;
    transition: all 0.2s ease-in-out;
    padding-bottom: 8px;
}

.logo:hover {
    transform: scale(1.1);
    
}

.nav {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 30px;
    gap: 20px;
    
}

@media (min-width: 1200px) {
    .nav {
        flex-direction: row;
        gap: 50px;
        margin-bottom: 30px;
        padding: 30px 0;
    }
}


.nav .navbar {
    padding: 0;
    position: relative;
    width: 100%;
}

@media (min-width: 1200px) {
    .nav .navbar {
        margin-right: auto;
    }
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    list-style: none;
    padding: 0;
    margin-right: auto;
    margin-top: .5rem;
}

.navbar .nav-item {
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .navbar .nav-item {
        margin: 0 15px;
    }
}


.navbar .nav-link {
    color: var(--accent);
    text-decoration: none;
    text-transform: uppercase;
    padding: 0 2px;
    transition: all 0.1s ease-in-out;

}

.navbar .active .nav-link {
    color: rgba(0, 0, 0, .9);
}

.navbar .nav-link:hover {
    color: rgba(0, 0, 0, .9);
}



.online-box {
    display: none;
    text-transform: uppercase;
    color: var(--accent);
}

@media (min-width: 1200px) {
    .online-box {
        display: block;
    }
}

.online-btn {
    display: block;
    width: 200px;
    padding: 10px 20px;
    color: var(--accent);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    background-color: transparent;
    border: 0;
    border-bottom: 3px solid var(--primary);
    transition: all 0.1s ease-in-out;
}

.online-btn:hover {
    color: var(--text);
}

.online-counter {
    font-size: 0.750rem;
    margin-top: 5px;

}

.online-count {
    font-family: Poppins-Bold;
}

.hero {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 30px;
    margin-top: 30px;
}

.hero-content {
    width: 100%;
}

@media (min-width: 1200px) {
    .hero {
        margin-top: 30px;
    }
    .hero-content {
        flex: 0 0 50%;
        max-width: 50%;
    }
}



.hero h2 {
    font-size: 22px;
    text-align: center;
    line-height: 22px;
    margin-bottom: 16px;
    
}

@media (min-width: 1200px) {
    .hero h2 {
        text-align: left;
        max-width: 75%;
        font-size: 48px;
        line-height: 48px;
        margin-bottom: 32px;
    }
}

.hero-highlight {
    color: var(--primary);
}

.hero p {
    font-size: 16px;
    line-height: 16px;
    opacity: .8;
    margin-bottom: 20px;
    text-align: center;
}

@media (min-width: 1200px) {
    .hero p {
        text-align: left;
        max-width: 75%;
        margin-bottom: 64px;
    }
}

.hero-buttons {
    display: none;
    align-items: center;
    gap: 20px;
}

@media (min-width: 1200px) {
    .hero-buttons {
        display: flex;
    }
}

.hero-buttons .btn {
    width: max-content;
    padding: 15px 60px;
    cursor: pointer;
}


.hero-image {
    display: none;
}

@media (min-width: 1200px) {
    .hero-image {
        display: block;
        max-width: 50%;
        overflow: hidden;
    }
}

.hero-image img {
    width: 65%;
    display: block;
    margin-left: auto;
}


/* MAIN START */

.main {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 1200px) {
    .main {
        flex-direction: row;
    }
}

.content {
    width: 100%;
    display: block;
}

@media (min-width: 1200px) {
    .content {
        width: 100%;
    }
}

.content pre {
    width: 100%;
    text-wrap: pretty;
    
    overflow: auto;
    font-family: 'Poppins';
    font-size: 14px;
    line-height: 1.5;

    white-space: pre-wrap;
}

.content-box {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 20px;
}

.shop-error {
    background-color: rgba(217, 83, 79, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    padding: 25px 15px;
    line-height: 16px;
    size: 16px;
    color: rgba(0,0,0,.5);
    border-left: 10px solid #d9534f;
}
.shop-sale {
    background-color: rgba(217, 162, 79, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    padding: 25px 15px;
    line-height: 16px;
    size: 16px;
    color: rgba(0, 0, 0, 0.5);
    border-left: 10px solid #d9b74f;
}

.shop-box {
    display: none;
}

.shop-box.active {
    display: block;
}


.shop-row:not(:last-child) {
    margin-bottom: 30px;
}

.shop-row:last-child {
    border-top: 1px solid rgba(0,0,0,.05);
    padding-top: 20px;
}

.shop-row h5 {
    padding: 0;
    margin: 0;
    text-transform: uppercase;
}

.shop-row-number {
    padding-right: 10px;
}

.shop-row .progress-bar {
    height: 1px;
    background-color: var(--primary);
    border-radius: 8px;
}

.shop-row .progress {
    background-color: rgba(248,189,13, .1);
    margin-top: 5px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.shop-inputs {
    display: flex;
    gap: 30px;
    flex-direction: column;
}

.shop-row input {
    width: 100%;
    background-color: var(--bg-light2);
    color: rgba(0,0,0,.7);
    border: 1px solid var(--bg-light2);
    border-radius: 6px;
    padding: 10px;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.shop-row input.error {
    border: 1px solid rgba(255,0,0,.3);
    color: rgba(255,0,0,.8);
}

.shop-row input.error::placeholder {
    color: rgba(255,0,0,.8);
}

@media (min-width: 1200px) {
    .shop-inputs {
        flex-direction: row;
    }
    .shop-row input {
        width: 50%;
    }
}

.shop-inputs input:focus {
    outline: none;
}

.shop-buttons {
    display: flex;
    flex-direction: column;
    align-items:end;
    gap: 30px;
}



.shop-btn-box {
    width: 100%;

}

@media (min-width: 1200px) {
    .shop-buttons {
        flex-direction: row;
    }
    .shop-btn-box {
        width: 50%;
    }
}

.shop-btn {
    width: 100%;
    padding: 10px 40px;
    border-radius: 4px;
    border: 0;
    background-color: var(--secondary);
    transition: all 0.2s ease-in-out;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.shop-methods {
    display: flex;
    gap: 30px;
    flex-direction: column;
}

.shop-method {
    width: 100%;
}

@media (min-width: 1200px) {
    .shop-methods {
        flex-direction: row;
    }
    .shop-method {
        width: 33.333333%;
    }
}

.shop-amount-row {
    display: flex;
    flex-direction: column;
    grid-template-columns: repeat(3, 30%);
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.shop-amount {
    width: 100%;
    text-align: center;
}

.shop-amount-row-sms{
    display: inline-grid;
    grid-template-columns: repeat(3, 30%);
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.shop-amount-sms {
    width: 100%;
    text-align: center;
}

@media (min-width: 1200px) {
    .shop-amount-row {
        flex-direction: row;
    }
    .shop-amount {
        width: 33.333333%;
    }
    .shop-amount-row-sms {
        display: flex;
        flex-direction: row;
    }
    .shop-amount-sms {
        width: 33.333333%;
    }
}

.shop-amount-output {
    color: var(--primary);
    font-size: 24px;
    font-weight: 800;
}

.shop-amount-label {
    font-size: 12px;
}

.shop-amount-selector {
    width: 66.666667%;
}

.shop-amount-selector .slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: var(--secondary);
    outline: none;
    border-bottom: 1px solid var(--secondary);
    padding: 0;
    margin: 0;
}

.shop-amount-selector .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}

.shop-amount-selector .slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
}

.shop-amount-sms {
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 1200px) {
    .shop-amount-row {
        flex-direction: row;
    }
    .shop-amount-sms {
       
    }
}

.shop-sms-info {
    display: none;
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--accent);
}

.shop-sms-bold {
    font-weight: bold;
    color: var(--text);
    opacity: 0.6;
    font-family: Poppins-Bold;
}

.shop-amount-sms-btn {
    text-align: center;
    font-size: 16px;
    font-weight: 800;
    display: block;
    width: 100%;
    background-color: var(--secondary);
    border-radius: 4px;
    padding: 15px 5px!important;
    border: 0;
    font-family: inherit;
    line-height: inherit;
}

.shop-amount-sms-btn.active {
    background-color: var(--text);
    color: var(--background);
}


.shop-final-row {
    display: flex;
    gap: 30px;
}

.shop-final-row .btn {
    width: 50%;
}

.rules {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    padding-top: 3px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.rules input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: var(--secondary);
}

.rules:hover input ~ .checkmark {
    background-color: #ccc;
}

.rules input:checked ~ .checkmark {
    background-color: var(--primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.rules input:checked ~ .checkmark:after {
    display: block;
}

.rules .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.rules-operator {
    color: var(--accent);
}

.shop-rules-box.error .rules {
    color: rgba(255,0,0,.8);
}

.shop-rules-box.error .checkmark {
    background-color: rgba(255,0,0,.3);
}

.rules-time {
    font-size: 14px;
    border-top: 1px solid rgba(0,0,0,.05);
    padding-top: 20px;
    margin-top: 20px;
}

.rules-content h5,
.rules-content h8 {
    font-weight: 800;
}



.sidebar {
    width: 100%;
}

@media (min-width: 1200px) {
    .sidebar {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}




.topup-box {
    display: flex;
    align-items: center;
}
.topup-title {
    text-align: center;
    text-transform: uppercase;
    color: var(--text);
    width: 33.333333%;
}

.topup-title h5 {
    padding: 0;
    margin: 0;
    font-size: 36px;
}

.sidebar h5 {
    padding: 0;
    margin: 0;
}

.topup-lore {
    width: 66.666667%;
    text-align: justify;
    font-size: 14px;
}

.topup-lore p {
    padding: 0;
    margin: 0;
    color: var(--accent);
    text-align: justify;
}

.topup-history {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0 auto;
}

.thankyou-box {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.thankyou-icon {
    flex-shrink: 0;
    padding: 30px;
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
    background-color: var(--bg-light);
    border-radius: 50%;
}

.thankyou-title {
    font-size: 1.333rem;
    font-weight: 700;
}

.thankyou-lore p {
    padding: 0;
    margin: 0;
    color: var(--accent);
}




@media (min-width: 1200px) {
    .topup-history {
        width: 100%;
    }
}

.topup-history-title {
    margin: 22px 0;
    text-align: center;
}

.topup-history-avatar {
    display: flex;
    margin: 0;
    padding: 3px 1px;
    height: max-content;
    align-items: center;
}

.topup-history-avatar img {
    border-radius: .25rem;
    margin: 0 auto;
    width: 35px;
}

.dropright {
    width: 100%;
    position: relative;
    display: inline-block;
}

.dropdown .sidebar-button::after {
    transform: rotate(90deg) translate(150%, 70%);
}

.dropdown-menu {
    background-color: var(--static1);
    border: none;
    border-radius: 12px;
    padding: .5rem 0;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    min-width: 100%;
    display: none;
    position: absolute;
    will-change: transform;
    transform: translate3d(0px, 90px, 0px);
    top: 0;
    left: 0;
    z-index: 1;
}

@media (min-width: 1200px) {
    .dropdown-menu#ranks {
        transform: translate3d(375px, 0px, 0px);
        min-width: 160px;
    }
    .dropdown-menu#games {
        transform: translate3d(715px, 0px, 0px);
        min-width: 160px;
    }
}



.dropdown-menu.show {
    display: block;
}

.dropdown-item:not(:first-of-type) {
    border-top: 1px solid #dee2e6;
}

.dropdown-item {
    display: block;
    width: 100%;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    font-size: inherit;
    padding: 15px 20px;
    opacity: 70%;
    border: 0;
    margin: 0;
    text-align: left;
}

.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover {
    background-color: var(--primary);
    opacity: 100%;
    color: var(--text);
    outline: none;
}

.rank-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.rank-header:not(:first-of-type) {
    display: none;
}

.rank-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--text);
    flex-shrink: 0;
    width: 105px;
}

.rank-title h5 {
    font-size: 16px;
    font-family: Poppins-Bold;
}

.rank-description {
    width: 100%;
}

.rank-price {
    display: block;
    background-color: var(--bg-light);
    margin-bottom: 10px;
    color: var(--text);
    padding: 10px 15px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 700;
    width: 100%;
}

.list-group {
    list-style: none;
    margin: 0;
    padding: 0;
}

.list-group-item::before {
    content: '» ';
    opacity: 50%;
}

.list-group-item {
    opacity: 70%;
    position: relative;
    display: block;
    padding: .75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .125);
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}


.rank-content h5 {
    text-transform: uppercase;
    font-size: 16px;
    padding: 0;
    margin: 0;
    font-size: 16px;
    margin-bottom: 15px;
}

.rank-content h5::after {
    content: ':';
}

.rank-content {
    font-size: 14px;
}

.rank-content:not(:first-of-type) {
    display: none;
}

.rank-lore:not(:first-of-type) {
    display: none;
}

.list-group-item {
    background-color: transparent;
    border-top: 1px solid #dee2e6;
}

.rules-content:not(:first-of-type) {
    display: none;
}

/* DISCORD */

.discord {
    margin: 25px 0;
    text-align: center;
}

@media (min-width: 1200px) {
    .discord {
        padding: 50px 0;
    }
}

.discord-box {
    background-image: url(../_img/header2.png);
    background-repeat: no-repeat;
    background-position: 90% 200%;
    background-size: cover;
    background-color: var(--text);
    color: var(--background);
    padding: 50px 30px;
    border-radius: 12px;
    position: relative;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

@media (min-width: 1200px) {
    .discord-box {
        background-position: 90% 70%;
    }
}

.discord-text {
    width: 100%;
    padding: 10px 20px;
    font-weight: 700;
}

@media (min-width: 1200px) {
    .discord-text {
        width: 66.666667%;
    }
}

.discord-link {
    width: 100%;
}

@media (min-width: 1200px) {
    .discord-link {
        width: 33.333333%;
    }
}

.discord-name {
    background-color: var(--text)!important;
    color: var(--background)!important;
    text-align: center;
}

.discord-name::placeholder {
    color: var(--background);
}

/* RANKINGS */

.rankings {
    margin-bottom: 50px;
    margin-top: 50px;
}

@media (min-width: 1200px) {
    .rankings {
        margin-bottom: 50px;
        margin-top: 100px;
    }
}

.rankings .container {
    flex-wrap: wrap;
    display: flex;
    gap: 20px;
}

.rankings .content-box:nth-child(2) {
    background-color: var(--primary);
}


@media (min-width: 1200px) {
    .rankings .content-box:nth-child(2) {
        margin-top: -50px;
    }

    .rankings .container {
        flex-wrap: nowrap;
    }
}


.ranking {
    width: 100%;
}

.ranking-title {
    z-index: 2;
    padding-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,.05);
    text-transform: uppercase;
}

.ranking-title::after {
    content: 'RANKING';
    font-family: 'Poppins';
    font-size: 48px;
    font-weight: bold;
    color: black;
    -webkit-text-fill-color: white; /* Will override color (regardless of order) */
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
    opacity: 0.03;
    z-index: 1;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translate(-50%);
}

@media (min-width: 1200px) {
    .ranking {
        width: 33.333333%;
    }
}

.ranking-row {
    background-color: var(--bg-light);
    color: var(--text);
    padding: 10px;
    border-radius: 4px;
    text-transform: uppercase;
    text-align: left;
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 700;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.ranking-position {
    font-family: 'Poppins-Bold';
    text-align: center;
    font-size: 16px;
    flex-shrink: 0;
    opacity: 0.7;
    width: 30px;
}

.ranking-avatar {
    flex-shrink: 0;
    border-radius: .25rem;
    height: 20px;
    width: 20px;
}

.ranking-user {
    flex-grow: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ranking-value {
    margin-left: auto;
    font-size: 0.750rem;
}



/* FOOTER */
footer {
    padding: 30px 0;
    background-color: var(--bg-light);
}

.footer-content {
    padding: 30px 0;
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-copy {
    padding-top: 30px;
    opacity: 35%;
    border-top: 1px solid rgba(0,0,0,.1);
    font-size: 12px;
}

.footer-copy p {
    padding: 0;
    margin: 0;
    line-height: 13px;
}

.footer-email {
    width: 100%;
    text-align: left;
    display: block;
    margin-top: 20px;
}

@media (min-width: 1200px) {
    .footer-email {
        margin: 0;
        display: inline;
        width: max-content;
        float: right;
    }
}

footer ul {
    opacity: 55%;
    font-size: 14px;
    text-transform: uppercase;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.footer-nav,
.footer-socials {
    text-align: center;
    width: 100%;
}

@media (min-width: 1200px) {
    .footer-nav,
    .footer-socials {
        text-align: left;
        width: max-content;
    }
    .footer-nav ul,
    .footer-socials ul {
        justify-content: left;
    }
}




.footer-nav ul,
.footer-socials ul {
    justify-content: center;
}

footer ul li a:hover {
    color: var(--accent);
    text-decoration: none;
}

footer a {
    color: var(--text);
}

footer a:hover {
    color: var(--accent);
    text-decoration: none;
}




/* BUTTONS */


.btn {
    padding: 10px 20px;
    border-radius: 4px;
    border: 0;
    width: 100%;
    display: block;
    background-color: var(--secondary);
    transition: all 0.2s ease-in-out;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    text-align: center;
}

.btn:hover {
    background-color: var(--text);
    color: var(--background);
}


.btn-sidebar {
    color: var(--text);
    padding: 30px;
    border-radius: 12px;
    position: relative;
    text-align: left;
    width: 100%;
    border: none;
    font-size: 16px;
    font-family: 'Poppins';
    margin-bottom: 20px;
    background-color: var(--bg-light);
}

.btn-sidebar.active {
    background-color: var(--primary);
}

.btn-sidebar.btn-primary:hover {
    background-color: var(--primary);
    color: var(--text);
}

.btn-sidebar h5 {
    font-size: 16px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}

.btn-sidebar::after {
    content: '>';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    font-family: Poppins-Bold;
    font-weight: bold;
    transform: translate(-150%, 70%);
}




.btn-primary {
    background-color: var(--primary);
    color: var(--text);
    transition: all 0.2s ease-in-out;
}


.btn-primary:hover {
    background-color: var(--text);
    color: var(--background);
}

.btn-secondary {
    background-color: var(--text);
    color: var(--background);
}

.btn-method.active {
    background-color: var(--text);
    color: var(--background);
}

.shop-methods.error .btn-method {
    color: rgba(255,0,0,.8);
}

.shop-methods.error .btn-method:hover {
    color: var(--background);
}

.shop-amount-row-sms.error .shop-amount-sms-btn {
    color: rgba(255,0,0,.8);
}

.shop-amount-row-sms.error .shop-amount-sms-btn:hover {
    color: var(--background);
}

.btn-discord {
    background-color: #7289d9;
    color: var(--background);
}

.btn-discord:hover {
    background-color: #7289d9;
    color: var(--text);
}





.btn-dropdown {
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
}