body {
    background-color: rgb(var(--main-color));
}

.body {
    display: flex;
    width: 66%;
    margin: -40vh 15% 5vh 15%;
    padding: 3vh 2%;
    position: relative;
    z-index: 1;
    background-color: #fff;
    border-radius: 1vh;
}

.body .cart {
    width: 69%;
    height: 50vh;
    margin-right: 5%;
    overflow: auto;
    padding-right: 1%;
}

.body .cart .products .product {
    position: relative;
    overflow: hidden;
    border-radius: 1vh;
    padding: 2vh 2%;
    margin-bottom: 2vh;
}

.body .cart .products .product .background {
    position: absolute;
    top: -5%;
    left: -5%;
    height: 110%;
    width: 110%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(.25vh);
    -webkit-filter: blur(.25vh);
}

.body .cart .products .product .background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(41, 0, 8, .9);
}

.body .cart .products .product .content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    top: 0;
    left: 0;
}

.body .cart .products .product .content .left {
    display: flex;
    align-items: center;
    flex-grow: 100;
}

.body .cart .products .product .content .right {
    display: flex;
    font-size: 1.6vh;
    color: #fff;
    margin: 0;
    font-weight: 500;
}

.body .cart .products .product .content .right .current {
    margin-right: .5vw;
}

.body .cart .products .product .content .right .original {
    position: relative;
    color: #c7c7c7;
}

.body .cart .products .product .content .right .original::after {
    content: '';
    background-color: #c7c7c7;
    position: absolute;
    top: 45%;
    left: 0;
    height: .2vh;
    width: 100%;
}

.body .cart .products .product .content .left .close {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5vh;
    color: #fff;
    height: 2vh;
    width: 2vh;
    background-color: rgb(var(--darker-color));
    text-decoration: none;
    border-radius: .5vh;
}

.body .cart .products .product .content .left .image {
    display: block;
    margin: 0vh 1.5vw;
    height: 7vh;
    width: auto;
    border-radius: .5vh;
}

.body .cart .products .product .content .left .name {
    font-size: 1.7vh;
    color: #fff;
    margin: 0;
}

.body .checkout {
    width: 25%;
}

.body .checkout .line {
    margin-bottom: 3vh;
}

.body .checkout .line.checkoutLine {
    margin-bottom: 4vh;
}

.body .checkout .line .container {
    display: flex;
}

.body .checkout .line h1.title {
    font-size: 1.5vh;
    color: rgb(var(--darker-color));
    margin: 0vh 0% 1vh 0%;
}

.body .checkout .line input[name=discount] {
    display: block;
    width: 85%;
    background-color: #c4c4c4;
    color: #000;
    padding: 1vh 7.5%;
    font-size: 1.65vh;
    border: none;
    outline: none;
    border-radius: 1vh;
}

.body .checkout .line a, .body .checkout .line input[name=checkout] {
    display: flex;
    width: 100%;
    position: relative;
    z-index: 2;
    font-size: 1.5vh;
    color: #fff;
    font-weight: bolder;
    text-decoration: none;
    padding: 1.3vh 0%;
    border-radius: .6vh;
    align-items: center;
    justify-content: center;
    margin-top: 1vh;
    outline: none;
    border: none;
    cursor: pointer;
}

.body .checkout .line a.disabled {
    pointer-events: none;
    cursor: default;
    opacity: .5;
}

.body .checkout .line input[name=checkout]:disabled {
    cursor: default;
    opacity: .5;
}

.body .checkout .line input[name=applyDiscount] {
    font-size: 1.5vh;
    color: #fff;
    background-color: rgb(var(--main-color));
    margin: 0;
    padding: 0vh .5vw;
    border: none;
    outline: none;
    border-radius: .6vh;
    margin-left: .25vw;
    cursor: pointer;
}

.body .checkout .line label {
    font-size: 1.2vh;
    color: #000;
}

.body .checkout .line a.discordLogin {
    background-color: #5865F2;
}

.body .checkout .line .stripeCheckout {
    background-color: #000;
    margin-bottom: 1vh;
}

.body .checkout .line a i {
    margin-right: .35vw;
}

.body .checkout .line .subline {
    display: flex;
    align-items: center;
}

.body .checkout .line .subline.discount {
    margin: 1vh 0% 2vh 0%;
}

.body .checkout .line .subline .title {
    display: inline-block;
    margin: 0;
    flex-grow: 100;
}

.body .checkout .line .warning {
    font-size: 1.5vh;
    color: #fff;
    margin: 0;
    background-color: rgb(var(--darker-color));
    padding: 1vh 1vw;
    font-weight: 500;
    text-align: center;
    border-radius: .5vh;
}

.body .checkout .line .subline.discount .title {
    font-size: 1.5vh;
    color: rgb(var(--main-color));
    font-weight: 600;
    margin: 0;
}

.body .checkout .line .subline.subtotal .title {
    font-size: 1.85vh;
    color: #000;
    font-weight: 700;
    margin: 0;
}

.body .checkout .line .subline.discount .amount {
    font-size: 1.5vh;
    color: rgb(var(--main-color));
    font-weight: 500;
    margin: 0;
}

.body .checkout .line .subline.subtotal .amount {
    font-size: 1.85vh;
    color: #000;
    font-weight: 500;
    margin: 0;
}

.server {
    display: none !important;
}

.subscription {
    display: flex !important;
    width: 70% !important;
    padding: 5vh 15% !important;
}

@media screen and (max-width: 600px), (orientation : portrait) {
    .body {
        display: block;
        width: 80%;
        margin: -40vh 5% 5vh 5%;
        padding: 5%;
    }

    .body .cart {
        height: auto;
        width: 100%;
        margin: 0;
        padding-right: 0;
    }

    .body .cart .products .product {
        padding: 2vh 5%;
    }

    .body .cart .products .product .content {
        display: block;
        text-align: center;
    }

    .body .cart .products .product .content .left {
        display: block;
    }

    .body .cart .products .product .content .left .close {
        display: inline-flex;
    }

    .body .cart .products .product .content .left .image {
        width: 100%;
        height: auto;
        margin: 2vh 0%;
    }

    .body .cart .products .product .content .left .name {
        margin-bottom: 2vh;
    }

    .body .checkout {
        width: 100%;
    }

    .subscription {
        display: block !important;
        width: 90% !important;
        padding: 5vh 5% !important;
        text-align: center !important;
    }

    .subscription .left {
        text-align: center !important;
    }

    .subscription .right {
        margin-left: 0 !important;
    }
}