#title1 {
    position:fixed;
    left: 50%;
    bottom: 50%;
    transform: translate3d(-50%,50%,0);
    font-size: 2vw;
    font-family: "Bungee", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.HomePage {
    background: radial-gradient(
        circle at center,
        #1c1c84, 
        #000035
        );
}

#ProductName {
    font-size: clamp(.3vw, 1vw, 100%);
    height: 0.5vw;
    margin-top: 70%;
    color: white;
    text-align: center;
}

#Price {
    font-size: 1.5vw;
    width: 100%;
    color: white;
    text-align: center;
}

#AllOrdersContainer {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 10px;
}



.OrderPurchase {
    width: 12.5%;
    height: 12.5%;
    background-color: gray;
    border: 5px;
    border-color: black;
    border-radius: 1%;
}

#ProductImage {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 60%;
    object-fit: contain;
    z-index: 1;
}


#ProductImageBG {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 60%;
    object-fit: contain;
    transform: scaleX(5);
    filter: blur(20px);
    z-index: -1;
}

#ButtonContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;   /* Center items vertically */
    align-items: center;       /* Center items horizontally */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);  /* Center the container itself */
    width: 10%;
}

.APButtons {
    height: 7vh;
    width: 100%;
    margin: 5px 0;  /* spacing between buttons */
    border-radius: 5%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: transform .7s;
}

.APButtons:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.AdminOrderLabels {
    width: 100%;
    height: 20%;
    gap: 5px;
    font-size: 50%;
}

#OrderProduct {
    position: relative;
    top: -10%;
    width: 100%;
    height: 2vw;
    font-size: 1vw;
    background-color: white;
    border-radius: 5%;
    border-width: 0px;
}

#SalePromptMiniText {
    font-size: 50%;
    color: black;
}

#SalePrompt {
    position: fixed;
    top: 0;
    text-align: center;
    z-index: 100;
    background-color: #FEAE01;
    color: white;
    font-size: 1.7vw;
    border-radius: 0.1vw;
    width: 100vw;
    height: 3.4vw;
    left: 0;
    font-family: "Bungee", sans-serif;
    font-weight: 400;
    font-style: normal;
}

#DeleteProduct {
    position: relative;
    top: -10%;
    width: 40%;
    height: 2vw;
    font-size: 1vw;
    background-color: white;
    border-radius: 5%;
    border-width: 0px;
}
#EditProduct {
    position: relative;
    top: -10%;
    width: 40%;
    height: 2vw;
    font-size: 1vw;
    background-color: white;
    border-radius: 5%;
    border-width: 0px;
}

.OrderPageBody {
    background-color: rgb(20, 20, 20);
}

#OrderButton {
    position:relative;
    left: 50%;
    bottom: -50%;
    transform: translate(-50%, 50%);
    font-size: 1vw;
    border-radius: 10px;
    height: 2.5vw;
    width: 10vw;
}

#SuccessText {
    position: fixed;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%,50%);
    font-size: 1vw;
}

.Product {
    height: 15vw;
    width: 14vw;
    background:rgb(10, 10, 10);
    border-radius: 2%;
    position: relative;
    overflow: hidden;
    z-index: -2;
}

#ProductContainerSP {
    background: transparent;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    left: 50%;
    bottom: 50%;
    transform: translate3d(-50%,50%,0);
    height: 100%;
    width: 100%;
    text-align: center;
    align-content: flex-start;
    overflow: auto;
    transition: filter .5s;
    justify-content: center;
    margin-top: clamp(10vh,15vh,100%);
}

#ProductContainer {
    background: transparent;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    left: 50%;
    bottom: 50%;
    transform: translate3d(-50%,50%,0);
    height: 100%;
    width: 100%;
    text-align: center;
    align-content: flex-start;
    overflow: auto;
    transition: filter .5s;
    justify-content: center;
    margin-top: clamp(10vh,15vh,100%);
}

.BackgroundBlur {
    filter: blur(8px);
}

.DisableBackground {
    pointer-events: none;
}

#CheckOutDiv {
    background-color: rgb(245, 245, 245);
    width: 20%;
    height: 30vw;
    margin: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 1%;
    z-index: 99;
}
#CheckOutForm1 {
    background-color: transparent;
    width: 100%;
    height: 82%;
    position: relative;
    top: 2%;
    text-align: center;
    align-content: center;
    white-space: nowrap;
}
#CheckOutForm2 {
    background-color: transparent;
    width: 100%;
    height: 82%;
    position: relative;
    top: 2%;
    text-align: center;
    align-content: center;
}
.COQuestion {
    width: 75%;
    height: 10%;
    margin-top: 2%;
    border-radius: 0.1vw;
    border: transparent;
    background-color: rgb(235, 235, 235);
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.COQuestion:focus {
    outline: transparent;
}

.COQuestion:not(:hover) {
    transform: scale(1);
    transition: transform .2s;
}

.COQuestion:hover {
    transform: scale(1.1);
    transition: transform .2s;
}

.CONext:not(:hover) {
    transform: scale(1);
    transition: transform .2s;
}

.CONext:hover {
    transform: scale(1.1);
    transition: transform .2s;
}

#CurrentSelected {
    background-color: rgba(211,211,211, 0.5);
    outline-color: black;
    outline-width: 1%;
    outline-style:groove;
    width: 12vw;
    height: 2vw;
    border-radius: 0.2vw;
}


.CONext {
    width: 75%;
    height: 9%;
    position: relative;
    top: 20%;
    border-radius: 0.1vw;
    border: transparent;
    background-color: rgb(25, 168, 76);
    color: white;
    font-size: 1.5vw;
}

#WarningPopUpDelete {
background-color: rgba(128, 128, 128, 0.2);
width: 35%;
height: 20%;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
z-index: 999999;
}

#WarningPopUp {
background-color: rgba(128, 128, 128, 0.2);
width: 35%;
height: 20%;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
z-index: 99999;
}

@keyframes Minimise {
    0% {
        width: 75%;
    }
    100% {
        width: 0%;
    }
}

@keyframes Expand {
    0% {
        width: 0%;
    }
    100% {
        width: 75%;
    }
}

.MinimizeAnimation {
   animation-duration: 1s;
   animation-name: Minimise;
   animation-iteration-count: 1;
   animation-fill-mode: forwards;
}

.ExpandAnimation {
   animation-duration: 1s;
   animation-name: Expand;
   animation-iteration-count: 1;
   animation-fill-mode: forwards;
}


#TitleCardCO {
    width: 100%;
    height: 13%;
    background-color: rgb(200, 200, 200);
    text-align: center;
    align-content: center;
    font-family: "Bungee", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.5vw;
}

#CloseButton {
    margin: 0;
    position: relative;
    left: 92.5%;
    top: 4%;
    transform: translate(-4%,-92.5%);
    background-color: transparent;
    border: transparent;
}

.HideElement {
    display: none;
}

#ProductPriceCO {
    font-size: 2.5vw;
    margin-left: 2%;
}

#CloseButton:hover {
    cursor: pointer;
}

.CONext:hover {
    cursor: pointer;
}

#ProductNameCO {
    font-size: 100%;
    margin-left: 2%;
    font-weight: bold;
}

#Disclamer {
    font-size: 75%;
    margin-left: 2%;
    height: 5%;
    font-weight: bold;
}

#NoClearDB {
    position: absolute;
    left: 70%;
    top: 80%;
    transform: translate(-70%,-80%);
    background-color: gray;
}

#YesClearDB {
    position: absolute;
    left: 30%;
    top: 80%;
    transform: translate(-30%,-80%);
    background-color: rgb(238, 75, 43);
}

#NoDelete {
    position: absolute;
    left: 70%;
    top: 80%;
    transform: translate(-70%,-80%);
    background-color: gray;
}

#YesDelete {
    position: absolute;
    left: 30%;
    top: 80%;
    transform: translate(-30%,-80%);
    background-color: rgb(238, 75, 43);
}

.WPB {
    border: transparent;
    border-radius: 0.3vw;
    width: 25%;
    height: 20%;
    color: white;
    font-weight: bold;
}

.LogOutWarning {
    border-radius: .2vw;
    color: white;
    font-size: .9vw;
    font-weight: bold;
    position: relative;
    text-align: center;
    width: 90%;
    left: 50%;
    top: 40%;
    transform: translate(-50%,-40%);
    background-color: rgb(238, 75, 43);
}

.DisableScrolling {
    overflow-y: hidden;
}