/* Login Page */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    font-family: "Outfit";
    color: #FFFFFF;
    background-image: linear-gradient(rgb(95, 44, 0), #ac6200);
    background-position: center top;
    background-repeat: no-repeat;
}
.login-page .content {
    width: 100%;
    max-width: 416px;
}
.login-page.without-flex {
    display: block;
    width: auto;
    height: auto;
}
.login-page.without-flex .content {
    margin: 0 auto;
    padding: 30px 0;
}
.login-page .logo {
    display: block;
    margin-bottom: 37px;
    text-align: center;
}
.login-page .logo figure {
    margin: 0;
}
.login-page .glass-card {
    padding: 40px;
}
.login-page .glass-card header {
    margin-bottom: 56px;
    text-align: center;
}
.login-page .glass-card header h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.login-page .glass-card .new-password-link {
    display: inline-block;
}
.login-page .glass-card .main-button {
    text-align: center;
    padding-top: 50px;
    margin-bottom: 50px;
}
.login-page .glass-card footer {
    text-align: center;
}
.login-page .glass-card footer p {
    margin-bottom: 0;
}

/* Account Page */
.account-page .glass-card {
    margin-bottom: 40px;
}
.account-page .glass-card .btn-save {
    margin-top: 36px;
}

/* Donate Page */
.donate-page .tab {
    display: inline-flex;
    height: 117px;
    align-items: center;
    width: 100%;
    transition: .2s;
    margin-bottom: 30px;
    cursor: pointer;
}
.donate-page .tab i {
    display: block;
    margin-right: 20px;
    font-size: 45px;
}
.donate-page .tab .title {
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF;
    text-decoration: none;
    line-height: 28px;
}
.donate-page .tab.active {
    background: var(--secondary) ;
    text-decoration: none;
    cursor: default;
}
.donate-page .tab:hover:not(.active) {
    text-decoration: none;
    background: rgba(35, 5, 65, 0.30);
}
.donate-page .tab:hover:not(.active) .title {
    color: var(--primary-hover);
}
.donate-page .tab:hover:not(.active) i {
    color: var(--primary-hover);
}
.donate-page .resume {
    border-radius: 8px;
    border: 1px dashed var(--secondary-lighter);
    padding: 20px 25px;
    margin-bottom: 40px;
}

/* Store Page */
.store-page .glass-card.item {
    display: block;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}
.store-page .glass-card.item .product-picture {
    margin-bottom: 20px;
}
.store-page .glass-card.item .product-picture img {
    height: 95px;
}
.store-page .glass-card.item .title {
    font-size: 18px;
    line-height: 24px;
    height: 70px;
}
.store-page .glass-card.item .price-wrapper {
    margin-bottom: 20px;
}
.store-page .glass-card.item .price-wrapper img {
    width: 28px;
    margin-right: 5px;
}
.store-page .glass-card.item .buy-button {
    width: 100%;
}
.store-page .glass-card.item .dropdown {
    position: absolute;
    right: 10px;
    top: 10px;
}
.store-page .glass-card.item .dropdown .info {
    display: block;
    width: 32px;
    height: 32px;
    border: 1px solid var(--secondary-lighter-2);
    color: var(--secondary-lighter-2);
    border-radius: 100px;
    cursor: pointer;
}
.store-page .glass-card.item .dropdown .dropdown-menu {
    padding: 20px;
    border: none;
    box-shadow: 0 25px 40px rgba(35, 5, 65, 0.30);
    font-size: 16px;
    width: 250px;
}

.jconfirm-title, .jconfirm-content {
    color: black;
}


/* xxl */
@media only screen and (min-width:1400px)  {
}

/* xl */
@media only screen and (max-width:1399px)  {
}

/* lg */
@media only screen and (max-width:1199px)  {
}

/* md */
@media only screen and (max-width:991px)  {
}

/* sm */
@media only screen and (max-width:767px)  {
    .account-page .glass-card .btn-save {
        margin-top: 10px;
        margin-bottom: 15px;
    }
}

/* xs */
@media only screen and (max-width:575px)  {

    .login-page .glass-card {
        padding: 30px 20px;
        margin: 12px;
    }

    .account-page .glass-card,
    .gift-code-page .glass-card,
    .donate-page .glass-card {
        margin-bottom: 30px;
    }

    .donate-page .tab {
        height: 60px;
        margin-bottom: 20px;
        padding: 20px;
    }
    .donate-page .tab i {
        margin-right: 10px;
        font-size: 25px;
    }
    .donate-page .tab .title {
        font-size: 20px;
    }

    .commands-log-page .glass-card {
        padding: 0 0 30px;
    }
}

/* 350 */
@media only screen and (max-width:350px)  {
    .login-page .logo figure img {
        width: 100%;
    }
}
