* {
    margin: 0px;
    padding: 0px;
    user-select: none;
}
*::-webkit-scrollbar {
    display: none;
}
@font-face {
    font-family: 'Monomaniac One';
    src: url('../Polices/MonomaniacOne-Regular.ttf');
}
html, body {
    width: 100vw;
    height: 100vh;
    overflow: clip;
}
#header {
    width: 100vw;
    height: 60px;
    border-radius: 0% 0% 100% 0%;
    background: linear-gradient(170deg, #35359e, #0e0e34);
}
#logo {
    width: 40px;
    height: 40px;
    margin: 10px;
}
.glow {
    border-radius: 20px;
    box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.233), rgba(213, 213, 213, 0.552));
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.bandrole {
    width: 95vw;
    margin: 10px 2.5vw;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.bandrole .title {
    font-size: 25px;
    font-family: 'Monomaniac One';
    font-weight: normal;
    color: #0000FF;
}
#buySpace {
    width: 100vw;
    height: calc(100vh - 140px);
    background: url('../Icons/background3Low.png') no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}
#allProducts {
    width: 70vw;
    padding: 10px;
    box-sizing: border-box;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow-y: scroll;
}
.product {
    width: 31.33%;
    aspect-ratio: 1/1;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 10px 1%;
    background: #fff;
}
.product .img {
    width: 70%;
    aspect-ratio: 1/1;
}
.product .title,
.product .slogan,
.product .price {
    font-size: 20px;
    width: 80%;
    text-align: center;
}
.product .slogan {
    font-weight: normal;
    font-size: 18px;
}
.product .price,
.prdt .price {
    font-size: 35px;
    font-family: 'Monomaniac One';
    color: #000;
}
.product .buy {
    cursor: pointer;
    padding: 10px;
    font-weight: bold;
    color: #fff;
    border-radius: 10px;
    font-family: 'Arial';
    font-size: 18px;
    background: linear-gradient(90deg, #5c6bc0, #693fab, #5c6bc0);
    background-size: 200% 100%;
    background-position: 0% 0%;
    border: none;
    outline: none;
    transition: all 0.4s ease;
    width: 90%;
}
.product .buy:hover {
    background: linear-gradient(270deg, #5c6bc0, #693fab, #5c6bc0);
    background-size: 200% 100%;
    background-position: -100% 0%;
}
#cart {
    height: calc(100vh - 240px);
    box-sizing: border-box;
    width: calc(23vw - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    margin: 0px 10px;
}
.title {
    font-size: 30px;
    font-family: 'Arial';
    font-weight: bold;
    color: #000;
}
#cart #allChoicedProducts {
    width: 100%;
    height: calc(100% - 130px);
    padding: 5px 20px 20px 20px;
    overflow-y: scroll;
}
#sep {
    height: 5px;
    width: 100%;
    border-radius: 10px;
    background: #000;
}
.prdt {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 10px 0px;
    padding: 10px 0px;
    position: relative;
}
.prdt .title {
    font-size: 20px;
    width: 60%;
}
.prdt .price {
    font-size: 20px;
    width: 40%;
    text-align: right;
}
.prdt .suppr {
    width: 40%;
    height: 40px;
    position: absolute;
    top: calc((100% - 40px) / 2);
    left: 5%;
    border-radius: 10px;
    background: rgba(230, 36, 36, 0.765);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    cursor: pointer;
}
.prdt .suppr .img {
    height: 60%;
}
.prdt:hover .suppr,
.prdt:hover .qte {
    opacity: 1;
}
.prdt .qte {
    width: 40%;
    height: 40px;
    position: absolute;
    top: calc((100% - 40px) / 2);
    left: 55%;
    border-radius: 10px;
    background: rgba(133, 133, 133, 0.692);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    opacity: 0;
}
.prdt .qte .down,
.prdt .qte .up {
    height: 70%;
    aspect-ratio: 1/1;
    margin: 0px 5px 0px 0px;
    cursor: pointer;
}
.prdt .qte .qteNbr {
    height: 90%;
    border: 1px solid #000;
    border-radius: 5px;
    padding: 0px 10px;
    font-size: 15px;
    font-weight: bold;
    font-family: 'Arial';
    color: #000;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.input {
    width: 400px;
    font-weight: normal;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #000;
    border-radius: 10px;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    outline: none;
    background: #d6d6d6;
    transition: all 0.4s ease;
    position: relative;
}
.input:focus {
    border-radius: 20px;
}
#error {
    background: #7A59FF;
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
    position: absolute;
    left: 50%;
    bottom: -120%;
    font-family: 'Arial';
    color: #0000FF;
    font-weight: bold;
    font-size: 22px;
    transform: translateX(-50%);
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.5);
    z-index: 999999;
    transition: all 0.7s ease;
}
#error.green {
    background: #0bac33a6;
    color: #0bac33;
}
#error.show {
    bottom: 5px;
}
.button {
    outline: none;
    cursor: pointer;
    background: #fff;
    color: #000;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    padding: 15px;
    border: none;
    font-size: 18px;
    font-family: 'Nutted';
    text-decoration: none;
    transition: all 0.4s ease;
}
.button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.5);
}
#waiting {
    width: 50%;
    aspect-ratio: 1/1;
    margin: 0% 25%;
}
#validPaiment {
    width: 100%;
    font-size: 22px;
    font-weight: bold;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 10px;
    cursor: pointer;
    outline: none;
    color: #fff;
    font-family: 'Arial';
    background: linear-gradient(90deg, #5c6bc0, #693fab, #5c6bc0);
    background-size: 200% 100%;
    background-position: 0% 0%;
    border: none;
    transition: all 0.4s ease;
}
#validPaiment:hover {
    background: linear-gradient(270deg, #5c6bc0, #693fab, #5c6bc0);
    background-size: 200% 100%;
    background-position: -100% 0%;
}
#cart > .title {
    font-size: 23px;
}
#openMobile {
    display: none;
}
@media screen and (max-width: 970px) {
    .bandrole {
        width: calc(95vw - 20px);
    }
    .bandrole .title {
        text-align: center;
        font-size: 20px;
    }
    #cart {
        position: absolute;
        bottom: 10px;
        left: 10px;
        width: calc(100vw - 40px);
        height: 50px;
        padding-top: 0px;
        overflow: hidden;
        border-radius: 10px;
        backdrop-filter: blur(50px);
        transition: all 0.4s ease;
        z-index: 999;
    }
    #cart #openMobile {
        display: block;
        width: 30px;
        height: 30px;
        background: url('../Icons/open.png') no-repeat;
        background-size: 30px 30px;
        position: absolute;
        right: 10px;
        top: 10px;
        transform: rotate(0deg);
        transition: all 0.4s ease;
    }
    #cart.open #openMobile {
        transform: rotate(180deg);
    }
    #cart.open {
        height: calc(100vh - 20px);
    }
    #cart > .title {
        width: 100%;
        text-align: left;
        min-height: 50px;
        display: flex;
        align-items: center;
    }
    #allProducts {
        width: 100vw;
        justify-content: center;
        padding-bottom: 70px;
    }
    .product {
        width: calc(50% - 10px);
    }
    .product .title,
    .product .slogan,
    .product .price {
        width: 100%;
        font-size: 15px;
    }
    .product .price {
        font-size: 20px;
    }
    .product .img {
        width: 90%;
    }
    .product .buy {
        font-size: 15px;
    }
}