* {
    margin: 0;
    padding: 0;
    font-family: "Text", sans-serif;
    font-weight: 600;
    font-size: 12px;
    transition: 0.5s ease;
    corner-shape: squircle;
}

::-webkit-scrollbar {
    display: none;
}

@font-face {
    font-family: "Text";
    src: url("Fonts/Almarai-Regular.ttf");
}

body {
    width: 100%;
    height: 100vh;
    position: relative;
    user-select: none;
    background: #f3f3f3;
    padding: 0;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
}


.nav {
    position: relative;
    width: calc(100% - 40px);
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-top: 10px;
    padding: 0 0;
    background: transparent;
    z-index: 99999;
    border-radius: 40px;
    gap: 0;
}

.nav a,
.nav button {
    height: 50px;
    width: 50px;
    position: relative;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background: transparent;
    border: none;
    outline: none;
    z-index: 999999999;
    margin-left: 5px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.nav a .icon-user-rounded {
    color: black;
    width: 47px;
    height: 47px;
    stroke-width: 1px;
    fill: none;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
    margin-bottom: 7px;
}

.nav button {
    background: transparent;
    margin-left: 0;
    border-radius: 0;
}

.nav button .icon-svg {
    color: black;
    width: 27px;
    height: 27px;
    stroke-width: .5px;
    background: transparent;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.nav button .events-icon {
    color: black;
    width: 35px;
    height: 35px;
    stroke-width: .2px;
    background: transparent;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.nav .page-title {
    flex: 1;
    height: 60px;
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
    font-weight: 300;
    font-size: 20px;
    background: transparent;
    padding-right: 10px;
}

.nav a.selected::before,
.nav a p::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    content: "";
    z-index: -1;
    display: none;
}

.nav a img {
    position: relative;
    height: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + 0.1s) forwards;
}

.nav a.selected {
    overflow: hidden;
    background-image: url("icons/button-bg-2.jpg");
    background-position: center;
    background-size: cover;
    box-shadow: inset 2px 2px 7px rgba(255, 255, 255, 0.5), 0 2px 7px 0.5px rgba(0, 0, 21, 0.5);
    background: black;
    box-shadow: none;
}

.nav a.selected img {
    filter: invert(1);
}

.nav a p {
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    text-decoration: none;
    color: black;
    position: absolute;
    top: 10px;
    right: 10px;
    transform: translate(60%, -50%);
    overflow: hidden;
    background-image: url("icons/button-bg-2.jpg");
    background-position: center;
    background-size: cover;
    box-shadow: inset 2px 2px 7px rgba(255, 255, 255, 0.5), 0 2px 7px 0.5px rgba(0, 0, 21, 0.5);
    background: transparent;
    box-shadow: none;
    border-radius: 50%;
    width: 30px;
    height: 27px;
}

.nav a.added p {
    display: flex;
}

.home-page {
    position: relative;
    width: 100%;
    height: calc(100% - 50px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    padding-top: 50px;
    overflow: hidden;
    perspective: 1000px;
    background: #fff;
}

.home-page .background-home {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: transparent;
}

.home-page .background-home::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: .9px solid #a2a2a270;
    z-index: 1;
}


.home-page .background-home::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    width: 250px;
    height: 250px;
    border-radius: 50%;
    z-index: 2;
    border: 1px solid #7a7a7a30;

}

.home-page .background-home .middle-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    corner-shape: squircle;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 70px 100px #00000007;
}

.home-page .background-home .middle-icon img {
    position: relative;
    width: 60%;
    height: 60%;
    object-fit: cover;
}

.home-page .background-home .icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(var(--x), var(--y)) rotateZ(var(--r)) scale(var(--s));
    width: 60px;
    height: 60px;
    border-radius: 40px;
    overflow: hidden;
    z-index: 3;
    box-shadow: 0 3px 50px #00000020;
}

.home-page .background-home .icons img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-page .background-home-pc {
    position: relative;
    width: 100%;
    height: 70%;
    background: red;
    top: 0;
    margin-bottom: 50px;
}

.home-page .background-home-pc .image {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('Products/h.png');
    background-size: cover;
    background-position: center;
}

.home-page p {
    position: relative;
    font-size: 30px;
    width: calc(100% - 40px);
    text-align: center;
    color: black;
    margin-bottom: 10px;
    line-height: 40px;
    -webkit-text-stroke: none;
    z-index: 999;
    animation: logo_ani 1s ease calc(var(--i) * 0.25s) forwards;
}

.home-page .link {
    position: relative;
    width: calc(100% - 40px);
    max-height: 70px;
    min-height: 70px;
    background: transparent;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    z-index: 999;
    margin-bottom: 50px;
    animation: logo_ani 1s ease calc(var(--i) * 0.25s) forwards;
}

.home-page .link::before {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    height: 50%;
    width: 80%;
    background: transparent;
    box-shadow: 0 7px 20px black;
    content: '';
    border-radius: 20px;
    z-index: -111;
}

.home-page.full .link {
    bottom: 20px;
    background: black;
    left: 20px;
    right: 20px;
}

.home-page.full1 .link {
    bottom: 20px;
    background: black;
    left: 20px;
    right: 20px;
}

.home-page .descover {
    position: relative;
    height: 100%;
    text-wrap: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 40px;
    background: linear-gradient(145deg, #272727, #000, #000);
    box-shadow: none;
    text-decoration: none;
    color: white;
    font-size: 17px;
}

.home-page.full .link .descover {
    color: white;
}

.home-page .maker {
    position: relative;
    justify-content: center;
    align-items: center;
    color: black;
    opacity: 0.5;
    font-size: 13px;
    font-weight: 900;
    z-index: 999;
    margin-bottom: 50px;
}

.home-page.full .maker {
    opacity: 0;
}

.home-page .introu-class {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 9;
    height: 500px;
    border-radius: 40px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    transform: translateY(70%);
    opacity: 0;
}

.home-page.full .introu-class {
    transform: translateY(0);
    opacity: 1;
}

.home-page.full1 .introu-class {
    transform: translateY(0);
    opacity: 1;
    bottom: 0;
    left: 0;
    right: 0;
    aspect-ratio: initial;
    height: 100%;
    border-radius: 0;
}

.basket-veiwer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    background: black;
    transform: translateY(-120px);
    z-index: 99999999999999;
}


.basket-veiwer::before {
    position: absolute;
    bottom: -40px;
    left: 0;
    height: 40px;
    width: 40px;
    background: transparent;
    content: "";
    border-top-left-radius: 50px;
    corner-shape: squircle;
    box-shadow: -10px -10px 0 black;
    z-index: 9;
}


.basket-veiwer::after {
    position: absolute;
    bottom: -40px;
    right: 0;
    height: 40px;
    width: 40px;
    background: transparent;
    content: "";
    border-top-right-radius: 50px;
    corner-shape: squircle;
    box-shadow: 10px -10px 0 black;
    z-index: 9;
}

.basket-veiwer.show {
    transform: translateY(0);
}

.basket-veiwer .cart-bas {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 10px;
    background: #f3f3f3;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    display: none;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    gap: 3px;
}

.basket-veiwer.show .cart-bas {
    display: flex;
}

.basket-veiwer.show .close-button {
    display: flex;
}

.basket-veiwer .cart-bas .bas-pro {
    position: relative;
    height: calc(100%);
    aspect-ratio: 1 / 1;
    border-radius: 50px;
    corner-shape: squircle;
    overflow: hidden;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * .2s) forwards;
}

.basket-veiwer .close-button {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: none;
    background: white;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease .3s forwards;
}

@keyframes rotate-bas {
    0% {
        opacity: 0;
        transform: translateY(-7px) rotate(30deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }
}

.basket-veiwer .close-button span {
    position: relative;
    width: 100%;
    height: 100%;
    animation: rotate-bas 1s ease .3s forwards;
}

.basket-veiwer .close-button span::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background: black;
    height: 40%;
    width: 2px;
    content: '';
    border-radius: 3px;
}

.basket-veiwer .close-button span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    background: black;
    height: 40%;
    width: 2px;
    content: '';
    border-radius: 3px;
}

.basket-veiwer .cart-bas .bas-pro img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alert-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    width: calc(100% - 40px);
    padding: 20px;
    padding-top: 40px;
    background: white;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    transform: translateY(110%);
    transition: box-shadow .5s .7s, transform 1.5s, scale 3s, opacity 2s;
    box-shadow: none;
    transform: translateY(110%);
    scale: 1.7;
    opacity: 1;
    z-index: 9999999999999999999999999999999999999999999999999999999999999999;
}

.alert-panel .alert-container {
    position: relative;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.alert-panel.show .alert-container {
    display: flex;
}

.alert-panel .alert-container p {
    position: relative;
    text-align: right;
    font-family: 200;
    font-size: 18px;
    border-radius: 30px;
    direction: rtl;
    line-height: 30px;
    color: #00000070;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + .2s) forwards;
}

.alert-panel .alert-container button {
    position: relative;
    border-radius: 20px;
    width: calc(100%);
    height: 70px;
    border-radius: 30px;
    background: black;
    border: none;
    outline: none;
    color: white;
    margin-top: 10px;
    font-size: 17px;
    font-weight: 400;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + .2s) forwards;
}

.alert-panel .alert-container button::before {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    height: 50%;
    width: 80%;
    background: transparent;
    box-shadow: 0 7px 20px black;
    content: '';
    border-radius: 20px;
    z-index: -111;
}

.alert-panel .alert-container button::after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(145deg, #272727, #000, #000);
    content: '';
    border-radius: 25px;
    z-index: -111;
    transition: .3s ease;
    border-radius: 50px;
    corner-shape: squircle;
}

.alert-panel .alert-container .later-button {
    position: relative;
    width: 100%;
    height: 70px;
    color: black;
    font-size: 17px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + .2s) forwards;
}


.alert-panel .alert-container .concel-alert {
    margin-top: 0;
    box-shadow: none;
    color: black;
    position: relative;
    width: 100%;
    background: transparent;
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

}

.alert-panel .alert-container .concel-alert span {
    position: relative;
    width: 50px;
    height: 50px;
    background: transparent;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + .2s) forwards;

}


.alert-panel .alert-container .concel-alert p {
    position: relative;
    margin-top: 3px;
    background: transparent;
    font-size: 25px;
    font-weight: 700;
    flex: 1;
    color: black;
    direction: rtl;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + .2s) forwards;
}


.alert-panel.show {
    transform: translateY(0);
    scale: 1;
    opacity: 1;
    transition: box-shadow 1.2s .7s, transform 1s, scale 1.2s, opacity .3s;
}

.alert-panel::before {
    position: absolute;
    top: 10px;
    left: calc(50% - 25px);
    content: "";
    width: 50px;
    height: 5px;
    background: gray;
    border-radius: 5px;
    display: flex;
    transform: translateY(-15px) scale(1.1);
    opacity: 0;
    animation: panels-tag 1s ease 1s forwards;
}

.store-page {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 10px;
    top: 0;
    background: #f3f3f3;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

.store-page.bask {
    top: 90px;
}

.store-page::before {
    position: absolute;
    top: 10px;
    height: 5px;
    width: 50px;
    border-radius: 5px;
    background: gray;
    content: "";
    display: none;
    transform: translateY(-15px) scale(1.1);
    opacity: 0;
    animation: panels-tag 1s ease .2s forwards;
}

.store-page.bask::before {
    display: flex;
}

.store-page .events {
    position: relative;
    width: calc(100%);
    aspect-ratio: 16 / 9;
    background: white;
    margin-top: 0;
    border-radius: 0;
    display: none;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.store-page .events img {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100%);
    height: calc(100%);
    object-fit: cover;
    border-radius: 30px;
}

.store-page .logo,
.product-page .logo {
    position: sticky;
    top: 20px;
    width: initial;
    height: 60px;
    width: calc(100% - 40px);
    border-radius: 35px;
    z-index: 99;
    background: white;
    padding: 5px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease forwards;
}

.checkout-page .logo {
    position: fixed;
    top: 20px;
    left: 20px;
    border-radius: 40px;
    z-index: 99999999;
}

@keyframes logo_ani {
    0% {
        transform: translateY(-50%) scale(1.1);
        opacity: 0;
    }

    30% {
        transform: translateY(5%) scale(1);
        opacity: 0.7;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.store-page .logo {
    position: sticky;
    top: 20px;
    background: transparent;
    padding: 0;
    transform: translateY(0) scale(1);
    opacity: 1;
    animation: none;
    width: calc(100% - 40px);
}

.store-page .nav .active-character {
    position: relative;
    background: transparent;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    border-radius: 40px;
    width: 50px;
    height: 50px;
}

.store-page .nav .active-character .character {
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
    max-width: 50px;
    min-width: 50px;
    border-radius: 35px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(var(--x)) translateY(var(--y)) scale(var(--scale));
    background: white;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, .1);
}

.store-page .nav .active-character .character p {
    position: absolute;
    display: none;
}

.store-page .nav .active-character .character img {
    position: relative;
    transform: translateY(20%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.store-page .nav .active-character .character:has(img[src="characters/.png"]),
.store-page .nav .active-character .character:has(img[src=""]) {
    display: none;
}

.store-page .logo .search-bar {
    position: relative;
    background: white;
    flex: 1;
    height: 60px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.25s) forwards;
    border-radius: 30px;
    corner-shape: squircle;
    z-index: 100;
}

.store-page .logo .search-bar .cart-icons {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    corner-shape: squircle;
    background: linear-gradient(145deg, #272727, #000, #000);
    box-shadow: -2px 2px 5px rgba(0, 0, 0, .3);
    z-index: 999;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.3s) forwards;
}

.store-page .logo .search-bar .cart-icons .icon-cart-rounded {
    color: white;
    width: 35px;
    height: 35px;
    stroke-width: 1px;
    fill: none;
    margin-top: 5px;
    margin-left: 0;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.4s) forwards;
}

.store-page .logo .search-bar .cart-icons .icon-cart-rounded .my-circle {
    display: flex;
    opacity: 0;
}

.store-page .logo .search-bar .cart-icons .icon-cart-rounded .my-circle.show {
    opacity: 1;
}

.store-page .logo .search-bar .cart-icons p {
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    padding: 0 7px;
    height: 15px;
    transform: translateX(100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    border-radius: 15px;
}

.store-page .logo .search-bar .cart-icons p span {
    position: relative;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-weight: 100;
    font-size: 12px;
}

.store-page .logo .search-bar .cart-icons p::before {
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 10px;
    height: 10px;
    border-top-right-radius: 9px;
    background: transparent;
    content: '';
    box-shadow: 2px -2.5px 0 2px white;
    display: none;
}


.store-page .logo .search-bar .cart-icons p::after {
    position: absolute;
    top: 0;
    right: 20px;
    width: 10px;
    height: 10px;
    border-top-right-radius: 9px;
    background: transparent;
    content: '';
    box-shadow: 3px -2.5px 0 2px white;
    display: none;
}

@keyframes search_ani {
    0% {
        transform: scale(1.1) translateX(-100%);
        opacity: 0;
        width: calc(50px);
    }

    100% {
        transform: scale(1) translateX(0);
        opacity: 1;
        width: calc(100% - 40px);
    }
}

.store-page .nav .ping {
    padding: 5px;
    background: #fff;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 300;
    border-radius: 30px;
    gap: 0;
    padding: 0 10px;
    height: 40px;
    position: absolute;
    top: 15px;
    left: 10px;
    padding-left: 50px;
    display: none;
}

.store-page .nav .ping span {
    position: relative;
    width: 35px;
    height: 35px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
}

.store-page .nav .ping span svg {
    position: relative;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.store-page .nav .ping p {
    position: relative;
    height: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    font-weight: 300;
    font-size: 17px;
    padding: 0 7px;
    border-radius: 15px;
    display: none;
}

.store-page .logo::before {
    position: absolute;
    bottom: 0;
    height: 50%;
    width: 70%;
    background: transparent;
    z-index: -1;
    content: '';
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    box-shadow: 0 0 20px 7px rgba(0, 0, 0, .3);
    opacity: 0;
    transition: .4s ease;
}

.store-page .logo.card::before {
    opacity: 1;
}

.store-page .logo.card {
    width: calc(100% - 60px);
}

.store-page .search-bar input {
    position: absolute;
    top: 0;
    left: 65px;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    border: none;
    outline: none;
    text-align: right;
    font-size: 17px;
    font-weight: 300;
    border-radius: 30px;
    padding-left: 20px;
    padding-right: 20px;
    background: transparent;
}

/*
.store-page .logo.card .search-bar {
    background: black;
}

.store-page .logo.card .search-bar input {
    left: 60px;
}

.store-page .logo.card .search-bar .cart-icons {
    background: white;
}

.store-page .logo.card .search-bar .cart-icons svg {
    color: black;
}

.store-page .logo.card .search-bar .cart-icons p {
    color: black;
    background: white;
}
.store-page .logo.card .search-bar .cart-icons p span{
    color: black;
}
*/
.store-page .search-bar input:focus {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.store-page .search-bar button {
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    aspect-ratio: 1 / 1;
    background-image: url("icons/button-bg-2.jpg");
    background-position: center;
    background-size: cover;
    border: none;
    outline: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.25s) forwards;
    overflow: hidden;
    box-shadow: inset 2px 2px 7px rgba(255, 255, 255, 0.5), 0 2px 7px 0.5px rgba(0, 0, 21, 0.5);
    background: #000;
    box-shadow: none;
    display: none;
}

.store-page .search-bar button::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    content: "";
    display: none;
}

.store-page .search-bar button img {
    position: relative;
    width: 40%;
    aspect-ratio: 1 / 1;
    filter: invert(1);
    object-fit: cover;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + 0.2s) forwards;
}

.store-page .filters {
    position: relative;
    background: transparent;
    display: flex;
    justify-content: end;
    align-items: end;
    width: calc(100% - 40px);
    height: 40px;
}

.store-page .filters .filter-panel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    background: transparent;
    overflow: hidden;
    border-radius: 0;
    direction: rtl;
}

.store-page .filters .filter-panel.moving .filter {
    scale: 1.05;
}

.store-page .filters .filter-panel::-webkit-scrollbar {
    display: none;
}

.store-page .filters .filter-switcher {
    position: absolute;
    background: #fff;
    top: 0;
    right: 0;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    transition: .3s ease;
}

.store-page .filters .filter {
    position: relative;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    font-size: 15px;
    background: transparent;
    color: black;
    text-wrap: nowrap;
    transition: .3s ease;
    font-weight: 300;
    cursor: pointer;
}

.store-page .filters .filter p {
    display: none;
}

.store-page .product-grids {
    position: relative;
    width: calc(100% - 15px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-top: 0;
    height: 100%;
}

.opener {
    position: fixed;
    z-index: 99999999;
    background: white;
    border-radius: 30px;
    display: none;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    overflow: scroll;
    opacity: 1;
    transition: width .6s ease, height .5s ease, opacity .23s ease, top .41s ease, left .5s ease, border-radius .6s ease;
}

.opener .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    transition: .2s;
    overflow: hidden;
}


.opener .container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 80px);
    padding: 40px;
    background: white;
    display: none;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding-top: 60px;

}

.opener.show .container {
    opacity: 1;
    transform: translate(0) scale(1);
}


@keyframes container {
    0% {
        transform: translateY(70%) scale(1.1);
        opacity: 0;
    }

    30% {
        transform: translateY(-5px) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.opener .container .name-price {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: transparent;
}


.opener .container .name-price h1 {
    position: relative;
    font-weight: 500;
    font-size: 23px;
    text-align: right;
    direction: rtl;
    text-wrap: nowrap;
    flex: 1;
    background: transparent;
}

.opener .container .name-price h2 {
    position: relative;
    font-weight: 500;
    font-size: 23px;
    text-align: right;
    direction: rtl;
    background: transparent;
}

.opener .container .name-price h2 span {
    position: relative;
    font-size: 13px;
    color: rgba(0, 0, 0, .7);
}

.opener .container p {
    width: calc(100%);
    position: relative;
    font-weight: 300;
    font-size: 17px;
    text-align: right;
    direction: rtl;
    color: rgba(0, 0, 0, .7);
}

.opener .container .add-to-cart-product-page {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(-50%) translateY(-50%);
    height: 70px;
    width: 70px;
    border-radius: 35px;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: white;
    font-weight: 300;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .3);
}

.opener .container .add-to-cart-product-page img {
    position: relative;
    width: 40%;
    height: 40%;
    object-fit: cover;
    filter: invert(1);
}

.opener .container button {
    position: relative;
    height: 70px;
    width: calc(100%);
    border-radius: 35px;
    background: #f2f2f2;
    font-size: 15px;
    border: none;
    outline: none;
    font-weight: 300;
}


@keyframes product_ani {
    0% {
        transform: scale(0.9) translate(-20%, -20%);
        opacity: 0;
    }

    50% {
        transform: scale(1.01) translate(3%, 3%);
        opacity: 1;
    }

    100% {
        transform: scale(1) translate(0, 0);
        opacity: 1;
    }
}

.store-page .product-grids .slider {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 5px;
}

.store-page .product-grids .slider .news {
    width: 100%;
    padding: 23px 0 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border-radius: 40px;
}

.store-page .product-grids .product {
    position: relative;
    width: calc(100% - 10px);
    backdrop-filter: blur(0);
    padding: 5px;
    border-radius: 30px;
    gap: 5px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: end;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.25s) forwards;
}

.store-page .product-grids .product::after {
    background: linear-gradient(to bottom, #f3f3f3, #f3f3f3, #fff);
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: '';
    z-index: -1;
    border-radius: 40px;
    corner-shape: squircle;
}


.store-page .product-grids .product::before {
    background: red;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 60%;
    margin-bottom: 10px;
    width: 85%;
    content: '';
    z-index: -2;
    border-radius: 32px;
    box-shadow: 0 0 20px 7px rgba(0, 0, 0, .3);
}

.store-page .product-grids .product .image {
    position: relative;
    width: calc(100% - 10px);
    aspect-ratio: var(--aspect-ratio);
    border-radius: 30px;
    margin-right: 5px;
    cursor: pointer;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + 0.2s) forwards;
}

.store-page .product-grids .product .image::before {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    height: 20px;
    width: calc(100% - 60px);
    content: '';
    z-index: -1;
    border-radius: 30px;
    background: transparent;
    box-shadow: 0 0 20px 7px rgba(0, 0, 0, .3);
    opacity: 1;
}

@keyframes image_shadow_animation {
    0% {
        width: calc(100% - 60px);
    }

    50% {
        width: calc(100% - 100px);

    }

    100% {
        width: calc(100% - 60px);

    }
}


.store-page .product-grids .product .image img {
    position: relative;
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    corner-shape: squircle;
}


.store-page .product-grids .product .product-name {
    position: relative;
    padding: 10px;
    font-weight: 200;
    width: calc(100% - 20px);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    text-align: right;
    gap: 5px;
    margin: 0;
    color: black;
    background: transparent;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.25s) forwards;
}

.store-page .product-grids .product .product-name p {
    font-size: 17px;
    font-weight: 300;
    direction: rtl;
}

.store-page .product-grids .product .product-name p:nth-child(2) {
    opacity: .5;
    font-size: 12px;
    line-height: 17px;
}

.store-page .product-grids .product .product-price,
.store-page .product-grids .product .product-sku,
.store-page .product-grids .product .product-buyingprice,
.store-page .product-grids .product .category,
.store-page .product-grids .product .product-name p:nth-child(3) {
    display: none;
}


@keyframes product_button_ani {
    0% {
        transform: translate(-50%, -50%);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

.store-page .product-grids .product {
    padding-bottom: 60px;
}

.store-page .product-grids .product .buttons {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 35px;
    padding: 0;
    background: transparent;
    transition: bottom .4s ease, left .5s ease, right .5s ease;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}


.store-page .product-grids .product .buttons::before {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    height: 50%;
    width: 80%;
    background: transparent;
    box-shadow: 0 3px 10px black;
    content: '';
    border-radius: 20px;
    z-index: -111;
}

.store-page .product-grids .product .buttons button {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: transparent;
    color: white;
    border-radius: 23px;
    corner-shape: squircle;
    border: none;
    outline: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: end;
    overflow: hidden;
    gap: 3px;
    background: linear-gradient(145deg, #272727, #000, #000);

}


.store-page .product-grids .product .buttons button::before {
    position: absolute;
    top: -2px;
    right: -10px;
    content: "";
    transform: rotateZ(30deg);
    background: linear-gradient(to top, var(--top-color), transparent);
    width: 50%;
    height: 100%;
    border-radius: 15px;
    animation: product_button_1 5s ease 1s infinite;
}

.store-page .product-grids .product .buttons .quantity-controller {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    padding: 5px;
    display: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    direction: rtl;
    corner-shape: initial;
    border-radius: 50px;
    background: linear-gradient(145deg, #272727, #000);
    z-index: 99999;
}



.store-page .product-grids .product .buttons.added .quantity-controller {
    display: flex;
}

.store-page .product-grids .product .buttons .quantity-controller .add,
.store-page .product-grids .product .buttons .quantity-controller .remove {
    position: relative;
    height: 100%;
    aspect-ratio: 1 / 1;
    background: white;
    corner-shape: initial;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.store-page .product-grids .product .buttons .quantity-controller .add svg,
.store-page .product-grids .product .buttons .quantity-controller .remove svg {
    width: 80%;
    aspect-ratio: 1 / 1;
}

.store-page .product-grids .product .buttons .quantity-controller .quan {
    position: relative;
    flex: 50%;
    color: white;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}


@keyframes product_button_1 {
    0% {
        transform: rotateZ(65deg);
    }

    50% {
        transform: rotateZ(30deg);

    }

    100% {
        transform: rotateZ(65deg);
    }
}

@keyframes product_button_2 {
    0% {
        transform: rotateZ(-24deg);
    }

    50% {
        transform: rotateZ(-10deg);

    }

    100% {
        transform: rotateZ(-24deg);
    }
}

.store-page .product-grids .product .buttons button.add-to-cart {
    flex: initial;
    height: 100%;
    width: 50px;
    background: transparent;
    box-shadow: none;
    justify-content: center;
    align-items: center;
    z-index: 3;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.store-page .product-grids .product .buttons button::after {
    position: absolute;
    top: 40px;
    right: -20px;
    content: "";
    transform: rotateZ(-24deg);
    background: linear-gradient(to bottom, var(--top-color), transparent);
    width: 100%;
    height: 100%;
    z-index: 3;
    border-radius: 15px;
    animation: product_button_2 7s ease infinite;

}

.store-page .product-grids .product .buttons button svg {
    position: relative;
    width: 70%;
    height: 70%;
}


.store-page .product-grids .product .buttons button p {
    position: absolute;
    height: calc(100%);
    padding-left: 0;
    padding-right: 0;
    flex: 1;
    color: white;
    display: flex;
    justify-content: start;
    align-items: center;
    direction: rtl;
    font-size: 16px;
    z-index: 2;
    width: calc(100% - 20px);
    padding-right: 20px;
}

.store-page .product-grids .product .buttons.added button::before,
.store-page .product-grids .product .buttons.added button::after {
    opacity: 0;
}

.store-page .tasks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999999999999999999999999999;
    background: rgba(0, 0, 0, .3);
    backdrop-filter: blur(3px);
    display: none;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    overflow: auto;
    border-radius: 0;
}

.store-page .tasks::-webkit-scrollbar {
    display: none;
}

.store-page .tasks .tasks-panel {
    position: relative;
    padding: 20px;
    padding-top: 25px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width: calc(100% - 40px);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    gap: 5px;
}

.store-page .tasks .tasks-panel::before {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    height: 5px;
    border-radius: 5px;
    width: 50px;
    background: gray;
    content: '';
}

.store-page .tasks .tasks-panel h1 {
    width: calc(100%);
    font-size: 20px;
    height: 50px;
    display: flex;
    justify-content: end;
    align-items: center;
    position: relative;
    margin-bottom: 0;
    border-bottom: 2px solid gray;
    padding-bottom: 5px;
    font-weight: 400;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * .2s) forwards;
}

.store-page .tasks .tasks-panel h1 button {
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    border: none;
    outline: none;
    height: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: start;
    align-items: center;
    border-radius: 25px;
}

.store-page .tasks .tasks-panel h1 button svg {
    width: 30%;
    height: 30%;
    position: relative;
}

.store-page .tasks .tasks-panel .task {
    position: relative;
    width: calc(100% - 20px);
    height: 50px;
    border-radius: 0;
    padding: 0 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    direction: rtl;
    background: transparent;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.store-page .tasks .tasks-panel .task .desc {
    position: relative;
    flex: 1;
    font-size: 15px;
    font-weight: 400;
}

.store-page .tasks .tasks-panel .task span {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
    background: transparent;
    font-size: 17px;
    font-weight: 500;
    direction: ltr;
}

.store-page .tasks .tasks-panel .task span mark {
    position: relative;
    background: transparent;
    font-size: 10px;
    margin-left: 3px;
    opacity: .5;
}

.added-to-cart {
    position: fixed;
    top: 30px;
    left: 50%;
    height: 40px;
    padding: 0 20px;
    background: black;
    border-radius: 20px;
    color: white;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-50%) translateY(-80px) scale(.9);
    opacity: 0;
}

.added-to-cart.show {
    animation: added_ani .9s ease 1s forwards;
}


@keyframes added_ani {
    0% {
        transform: translateX(-50%) translateY(-80px) scale(.9);
        opacity: 0;
    }

    30% {
        transform: translateX(-50%) translateY(7px) scale(1.1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(0) scale(1);
        opacity: 1;
    }
}


.product-page {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.product-page .logo {
    position: relative;
    top: 10px;
    height: 70px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}


.product-page .logo .page-title {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 300;
    font-size: 17px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.product-page .back {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    outline: none;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.product-page .back svg {
    width: 45px;
    height: 45px;
    stroke-width: 1px;
    color: black;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + 0.2s) forwards;
}


.product-page .price-top {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 0 20px;
    padding-top: 5px;
    font-size: 20px;
    font-weight: 400;
    border-radius: 40px;
    color: black;
    direction: rtl;
    display: none;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.product-page .cart-link {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("icons/button-bg-2.jpg");
    background-position: center;
    background-size: cover;
    box-shadow: inset 2px 2px 7px rgba(255, 255, 255, 0.5), 0 2px 7px 0.5px rgba(0, 0, 21, 0.5);
    background: transparent;
    box-shadow: none;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.product-page .cart-link::before {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 50px;
    height: 50px;
    content: "";
    background: transparent;
    border-radius: 50%;
}

.product-page .cart-link svg {
    width: 45px;
    height: 45px;
    stroke-width: 1px;
    color: black;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + 0.2s) forwards;
}

.product-page .cart-link svg .my-circle {
    display: flex;
    color: black;
    opacity: 0;
}

.product-page .cart-link svg .my-circle.show {
    opacity: 1;
}

.product-page .cart-link p {
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    text-decoration: none;
    color: black;
    position: absolute;
    top: 10px;
    right: 10px;
    transform: translate(60%, -50%);
    overflow: hidden;
    background-image: url("icons/button-bg-2.jpg");
    background-position: center;
    background-size: cover;
    box-shadow: inset 2px 2px 7px rgba(255, 255, 255, 0.5), 0 2px 7px 0.5px rgba(0, 0, 21, 0.5);
    background: transparent;
    box-shadow: none;
    border-radius: 50%;
    width: 30px;
    height: 27px;
}

.product-page .cart-link.added p {
    display: flex;
}


.product-page .main-product-image {
    position: relative;
    width: calc(100% - 40px);
    background: linear-gradient(to bottom, #f3f3f3, white);
    aspect-ratio: 1 / 1;
    border-radius: 40px;
    margin-bottom: 70px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: end;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.product-page .main-product-image .image-slider {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    height: 5px;
    background: transparent;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.product-page .main-product-image .image-slider span {
    position: relative;
    height: 5px;
    width: 5px;
    background: white;
    border-radius: 3px;
}

.product-page .main-product-image .image-slider span.selected {
    width: 20px;
}

.product-page .main-product-image .image-swicher {
    position: relative;
    height: 50px;
    padding: 5px;
    background: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    border-radius: 30px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.19s) forwards;
}

.product-page .main-product-image .image-swicher button {
    position: relative;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    outline: none;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.14s) forwards;
}

.product-page .main-product-image .image-swicher button img {
    position: relative;
    width: 45%;
    height: 45%;
    object-fit: cover;
    filter: invert(0);
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + 0.2s) forwards;
}

.product-page .main-product-image .image-swicher button img.left {
    rotate: 180deg;
}


.product-page .main-product-image img {
    position: absolute;
    width: calc(100%);
    top: 0;
    height: calc(100%);
    left: 0;
    object-fit: cover;
    border-radius: 35px;
}

.product-page .main-product-image .main-product-add-to-cart {
    position: absolute;
    bottom: -65px;
    right: 0px;
    transform: translateY(0);
    background: linear-gradient(145deg, #272727, #000);
    height: 60px;
    border-radius: 35px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 2;
}


.product-page .main-product-image .main-product-add-to-cart p {
    position: absolute;
    color: white;
    padding: 0 15px;
    padding-right: 60px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    text-wrap: nowrap;
    direction: rtl;
    height: 60px;
    border-radius: 30px;
    overflow: hidden;

}


.product-page .main-product-image .main-product-add-to-cart span {
    position: relative;
    width: 140px;
    height: 60px;
    padding-right: 5px;
    display: flex;
    justify-content: end;
    align-items: center;
    background: black;
    border-radius: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
    overflow: hidden;
    background: transparent;
}

.product-page .main-product-image .main-product-add-to-cart span::before {
    position: absolute;
    top: -2px;
    right: -10px;
    content: "";
    transform: rotateZ(30deg);
    background: linear-gradient(to top, var(--top-color), transparent);
    width: 50%;
    height: 100%;
    border-radius: 15px;
    animation: product_button_1 5s ease 1s infinite;
}

.product-page .main-product-image .main-product-add-to-cart span::after {
    position: absolute;
    top: 40px;
    right: -20px;
    content: "";
    transform: rotateZ(-24deg);
    background: linear-gradient(to bottom, var(--top-color), transparent);
    width: 100%;
    height: 100%;
    z-index: 3;
    border-radius: 15px;
    animation: product_button_2 7s ease infinite;
}


.product-page .main-product-image .main-product-add-to-cart span svg {
    z-index: 3;
    width: 50px;
    height: 50px;
    color: white;
    stroke-width: 1px;
}

.product-page .other-product-image {
    position: relative;
    width: calc(100% - 40px);
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    height: 100px;
    gap: 5px;
    margin-top: 5px;
    overflow: scroll;
}

.product-page .other-product-image .image {
    position: relative;
    height: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 30px;
    background: yellow;
}

@font-face {
    font-family: "mooxy";
    src: url("Fonts/mooxy.ttf");
}

.product-page .main-product-name {
    position: relative;
    font-size: 30px;
    margin: 15px 0;
    width: calc(100% - 50px);
    text-align: center;
    font-weight: 200;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.product-page .main-product-sku {
    display: none;
}

.product-page .main-product-desc {
    position: relative;
    font-size: 17px;
    font-weight: 300;
    margin-top: 5px;
    width: calc(100% - 50px);
    text-align: center;
    font-weight: 200;
    color: rgba(0, 0, 0, 0.7);
    line-height: 25px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.product-page .main-product-price {
    position: relative;
    font-size: 25px;
    margin-top: 10px;
    text-align: center;
    height: 50px;
    padding: 5px 20px;
    display: none;
    direction: rtl;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    font-weight: 500;
    background: white;
}

.product-page .views {
    width: calc(100% - 50px);
    position: relative;
    background: #ffa50080;
    border-radius: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    padding: 5px;
    gap: 5px;
    padding-bottom: 80px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.product-page .views h1 {
    font-size: 17px;
    position: absolute;
    top: 5px;
    left: 5px;
    height: 70px;
    padding: 0 15px;
    border-radius: 35px;
    background: red;
    font-weight: 300;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-family: "mooxy", serif;
    font-weight: 200;
    display: none;
}

.product-page .views .sparer {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-57%) skew(-10deg);
    width: 10px;
    height: 70px;
    background: white;
    z-index: 999;
    display: none;
}

.product-page .views .stars {
    position: relative;
    width: calc(100% - 10px);
    display: flex;
    justify-content: start;
    align-items: center;
    height: 60px;
    background: white;
    border-radius: 35px;
    padding: 5px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.product-page .views .stars:nth-child(1) {
    justify-content: end;
}

.product-page .views .stars:nth-child(2) {}


.product-page .views .stars .star {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    background: transparent;
    align-items: center;
    border-radius: 30px;
    z-index: 99999999;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.product-page .views .stars .likesloader {
    position: absolute;
    aspect-ratio: initial;
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
    max-height: calc(100% - 10px);
    padding: 0;
    min-width: 60px;
    width: 60px;
    max-width: calc(100% - 10px);
    border-radius: 30px;
    display: flex;
    justify-content: end;
    align-items: center;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + 0.1s) forwards;
}

.product-page .views .stars:nth-child(1) .likesloader {
    left: initial;
    right: 5px;
    background: linear-gradient(130deg, rgb(255, 0, 0), #f93c3c);
    box-shadow: 0 3px 10px #f93c3c90;
}


.product-page .views .stars:nth-child(2) .likesloader {
    background: linear-gradient(130deg, rgb(0, 170, 255), #006aff);
    box-shadow: 0 3px 10px #006aff90;
}



.product-page .views .stars .likesloader::before {
    display: none;
}

.product-page .views .stars p {
    position: absolute;
    top: 5px;
    right: 5px;
    height: calc(100% - 10px);
    padding: 0 20px;
    background: transparent;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    z-index: 9999;
    display: none;
}

.product-page .views .stars .star svg {
    width: 40px;
    height: 40px;
    color: white;
    fill: none;
    stroke-width: 3px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    z-index: 1;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + 0.2s) forwards;
}

.product-page .views h1 p {
    display: flex;
    justify-content: start;
    align-items: start;
    position: relative;
    font-size: 20px;
    padding: 0 10px;
    padding-top: 5px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.product-page .views h1 p span {
    position: relative;
    opacity: 0.5;
}

.product-page .views .feeling {
    position: absolute;
    bottom: 5px;
    left: calc(50% - 155px / 2);
    margin-top: 15px;
    height: 50px;
    background: white;
    border-radius: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px;
    gap: 5px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.product-page .views .feeling button {
    position: relative;
    border: none;
    outline: none;
    background: orangered;
    background: linear-gradient(to right, orangered, #de3b00);
    box-shadow: 0 3px 10px #ff450090;
    box-shadow: none;
    background: transparent;
    height: 50px;
    width: 50px;
    border-radius: 40px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .2s ease;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.product-page .views .feeling #goodview {
    background: linear-gradient(to right, orangered, #de3b00);
    box-shadow: 0 3px 10px #ff450090;
    width: 100px;
}

.product-page .views .feeling #goodview.selected {
    width: 100px;
    background: linear-gradient(130deg, rgb(0, 170, 255), #006aff);
    box-shadow: 0 3px 10px #006aff90;
}

.product-page .views .feeling #badview.selected {
    width: 100px;
    background: linear-gradient(130deg, rgb(255, 0, 0), #f93c3c);
    box-shadow: 0 3px 10px #f93c3c90;
}

.product-page .views .feeling #badview.selected svg {
    color: white;
}

.product-page .views .feeling:has(#badview.selected) #goodview {
    background: transparent;
    box-shadow: none;
    width: 50px;
}

.product-page .views .feeling:has(#badview.selected) #goodview svg {
    color: black;
}

.product-page .views .feeling button:active svg {
    scale: .95;
}

.product-page .views .feeling button svg {
    width: 40px;
    height: 40px;
    color: black;
    fill: none;
    stroke-width: 3px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    z-index: 1;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + 0.2s) forwards;
}

.product-page .views .feeling #goodview svg {
    color: white;
}

.product-page .views .feeling .open-review-panel {
    position: relative;
    margin-right: 20px;
}

.product-page .title {
    position: relative;
    color: #000;
    width: calc(100% - 50px);
    font-size: 25px;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 200;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.product-page .main-product-adv {
    position: relative;
    width: calc(100% - 10px);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    overflow: scroll;
    gap: 5px;
    margin-top: 7px;
    padding: 0 5px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.product-page .main-product-adv::-webkit-scrollbar {
    display: none;
}

.product-page .main-product-adv .adv {
    position: relative;
    padding: 0 20px;
    height: 50px;
    white-space: nowrap;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    direction: rtl;
    color: #009300;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 300;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.product-page .main-product-content {
    position: relative;
    width: calc(100% - 50px);
    background: #ffffff;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    background: #a4a4a4;
    margin-top: 10px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.product-page .main-product-content::before {
    position: absolute;
    top: 70px;
    left: 5px;
    right: 5px;
    content: '';
    bottom: 5px;
    border-radius: 30px;
    corner-shape: squircle;
    background: white;
}

.product-page .main-product-content h1 {
    font-size: 25px;
    font-weight: 300;
    background: transparent;
    height: 50px;
    position: relative;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.product-page .main-product-content h2 {
    font-size: 17px;
    font-weight: 300;
    width: calc(100% - 20px);
    text-align: center;
    position: relative;
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 0.5s ease calc(var(--i) * 0.2s) forwards;
}

.product-page .main-product-content p {
    font-size: 15px;
    font-weight: 300;
    position: relative;
    color: rgba(0, 0, 0, 0.7);
    margin-top: 7px;
    width: calc(100% - 40px);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    direction: rtl;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 0.5s ease calc(var(--i) * 0.2s) forwards;
}

.product-page .main-product-content button {
    position: relative;
    width: 100px;
    height: 50px;
    border-radius: 30px;
    border: none;
    outline: none;
    background: rgba(0, 0, 0, 0.05);
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.product-page .main-product-content button img {
    position: relative;
    height: 45%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    filter: invert(0);
    transform: rotateZ(90deg);
}

.product-page .main-product-content.show button img {
    transform: rotateZ(-90deg);
}

@keyframes center_ani {
    0% {
        transform: translateY(-50%) translateX(-50%) scale(1.1);
        opacity: 0;
    }

    30% {
        transform: translateY(5%) translateX(-50%) scale(1);
        opacity: 0.7;
    }

    100% {
        transform: translateY(0) translateX(-50%) scale(1);
        opacity: 1;
    }
}


.product-page .product-users,
.product-page .how-to-use,
.product-page .our-services {
    width: calc(100% - 80px);
    padding: 20px;
    background: white;
    border-radius: 40px;
    position: relative;
    margin-top: 10px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.product-page .how-to-use {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.product-page .important-notes {
    width: calc(100% - 50px);
    padding: 5px;
    background: rgba(255, 0, 0, .5);
    border-radius: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    gap: 5px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.product-page .important-notes .notes {
    position: relative;
    width: calc(100%);
    padding: 15px 0;
    background: white;
    border-radius: 35px;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.product-page .important-notes .notes h3 {
    font-size: 17px;
    position: relative;
    margin-bottom: 15px;
}

.product-page .important-notes .notes p {
    position: relative;
    color: rgba(0, 0, 0, .5);
    width: calc(100% - 10px);
    text-align: center;
    direction: rtl;
    font-size: 15px;
    font-weight: 300;
}

.product-page .our-services,
.product-page .product-users {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.product-page .our-services p,
.product-page .product-users p,
.product-page .how-to-use p {
    width: 100%;
    text-align: center;
    direction: rtl;
    color: rgba(0, 0, 0, .7);
    line-height: 20px;
    font-size: 15px;
    font-weight: 300;
}

.product-page .benefits {
    position: relative;
    width: calc(100% - 40px);
    border-radius: 0;
    aspect-ratio: 1 / 1;
    display: grid;
    gap: 7px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    margin-top: 15px;
}

.product-page .benefits .benefit {
    position: relative;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.product-page .benefits .benefit .benefit-icons {
    position: relative;
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.product-page .benefits .benefit .benefit-icons img {
    width: 40%;
    height: 40%;
    position: relative;
    object-fit: cover;
    filter: invert(0);
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + 0.2s) forwards;
}

.product-page .benefits .benefit p {
    text-align: center;
    font-weight: 300;
    width: calc(100% - 30px);
}

.product-page .add-to-cart-bottom {
    position: relative;
    width: calc(100% - 40px);
    height: 70px;
    border: none;
    outline: none;
    background: transparent;
    color: white;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    border-radius: 27px;
}

.product-page .add-to-cart-bottom::before {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    height: 50%;
    width: 80%;
    background: transparent;
    box-shadow: 0 7px 20px black;
    content: '';
    border-radius: 20px;
    z-index: -112;
    transition: .3s ease;
}

.product-page .add-to-cart-bottom::after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(145deg, #272727, #000, #000);
    content: '';
    border-radius: 25px;
    z-index: -111;
    transition: .3s ease;
}


.review-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(70px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.review-panel.show {
    display: flex;
}

.review-panel form {
    position: relative;
    width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ffa50080;
    gap: 7px;
    border-radius: 40px;
    padding-top: 80px;
    padding-bottom: 5px;
}

.review-panel form h1 {
    position: relative;
    width: 100%;
    font-size: 25px;
    height: 50px;
    display: flex;
    justify-content: center;
    text-align: center;
    font-weight: 300;
    background: red;
    display: none;
}

.review-panel form textarea {
    position: relative;
    width: calc(100% - 70px);
    height: 250px;
    resize: none;
    background: white;
    border-radius: 35px;
    padding: 30px;
    padding-top: 30px;
    outline: none;
    border: none;
    font-size: 17px;
}

.review-panel form .buttons {
    position: absolute;
    top: 5px;
    left: 5px;
    height: 60px;
    padding: 5px;
    background: white;
    border-radius: 35px;
    display: flex;
    flex-direction: row;
    gap: 0;
    justify-content: center;
    align-items: center;
}

.review-panel form button {
    position: relative;
    height: 60px;
    padding: 0 30px;
    color: white;
    border-radius: 30px;
    border: none;
    outline: none;
    background: linear-gradient(to right, orangered, #de3b00);
    box-shadow: 0 3px 10px #ff450090;
    font-weight: 300;
    font-size: 17px;
}

.review-panel form button.close-review-panel {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.review-panel form button.close-review-panel img {
    position: relative;
    height: 50%;
    aspect-ratio: 1 / 1;
    transform: rotate(180deg);
    object-fit: cover;
}

.checkout-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 100px);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-top: 100px;
    background: #f3f3f3;
}

.checkout-page .logo {
    right: 20px;
    width: calc(100% - 40px);
    background: #f3f3f3;
    display: flex;
    flex-direction: row;
    justify-content: center;
    border-radius: 0;
    align-items: center;
    box-shadow: 0 -20px 0 20px #f3f3f3;
}

.checkout-page .logo .page-title {
    flex: 1;
    height: 60px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 300;
    font-size: 17px;
}

.checkout-page a {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    outline: none;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.checkout-page a svg {
    width: 45px;
    height: 45px;
    color: black;
    stroke-width: 1px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.25s) forwards;
}

.checkout-page a #car {
    stroke-width: 1.7px;
}

.checkout-page a .chara {
    width: 40px;
    height: 40px;
}

.checkout-page a img {
    position: relative;
    width: 50%;
    height: 50%;
    object-fit: cover;
}


.checkout-page .card-data {
    position: absolute;
    top: 90px;
    width: calc(100% - 20px);
    height: calc(100% - 440px);
    display: flex;
    gap: 7px;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    overflow: scroll;
    background: transparent;
}

.checkout-page .card-data.show {
    height: calc(100% - 110px);

}

.checkout-page .card-data .empty-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkout-page .card-data .empty-icon svg {
    position: relative;
    opacity: .3;
}

.checkout-page .card-data .empty-cart {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.checkout-page .card-data .empty-cart h1 {
    position: relative;
    color: #000;
    font-size: 23px;
    text-align: center;
    width: calc(100% - 40px);
    font-weight: 700;
}

.checkout-page .card-data .empty-cart p {
    color: #00000070;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 30px;
    direction: rtl;
    width: calc(100% - 40px);
    line-height: 20px;
    font-size: 15px;
    font-weight: 300;
}

.checkout-page .card-data .empty-cart a {
    position: relative;
    font-size: 17px;
    height: 60px;
    padding: 0 50px;
    border-radius: 40px;
    margin-top: 50px;
    text-decoration: underline;
    color: black;
    text-wrap: nowrap;
    opacity: 1;
    display: flex;
    background: #00000010;
}


.checkout-page .card-data .product-cart {
    position: relative;
    width: calc(100% - 30px);
    display: flex;
    max-height: 100px;
    min-height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: start;
    background: linear-gradient(145deg, #f3f3f3, #fff, #fff);
    border-radius: 90px;
    corner-shape: squircle;
    gap: 7px;
    padding: 5px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.checkout-page .card-data .product-cart .profile {
    position: absolute;
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 45px;
    corner-shape: squircle;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.checkout-page .card-data .product-cart .profile img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-page .card-data .product-cart .price,
.checkout-page .card-data .product-cart .name {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 300;
    text-align: center;
    height: 50px;
    background: rgba(0, 0, 0, 0);
    border-radius: 25px;
    padding: 0 10px;
    padding-top: 0;
    position: absolute;
    right: 18px;
}

.checkout-page .card-data .product-cart .price {
    margin-right: 10px;
    display: flex;
    position: absolute;
    right: initial;
    bottom: 9px;
    left: 110px;
}

.checkout-page .card-data .product-cart .quantity {
    flex: 1.3;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    height: 50px;
    bottom: 5px;
    right: 5px;
    width: 150px;
    border-radius: 35px;
    padding: 5px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.checkout-page .card-data .product-cart .quantity p {
    flex: 1;
    position: relative;
    height: calc(100% - 3px);
    padding-top: 3px;
    font-size: 15px;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkout-page .card-data .product-cart .quantity button {
    position: relative;
    height: calc(100%);
    aspect-ratio: 1 / 1;
    border: none;
    outline: none;
    color: black;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + 0.3s) forwards;
}

.checkout-page .card-data .product-cart .quantity button svg {
    width: 60%;
    height: 60%;
    position: relative;
    object-fit: cover;
    filter: invert(0);
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + 0.3s) forwards;
}

.checkout-page .card-data .product-cart .quantity button:first-child img {
    rotate: 180deg;
}

.checkout-page .card-data .product-cart .quantity .remove-btn {
    position: absolute;
    left: -50px;
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 25px;
    border: none;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.checkout-page .card-data .product-cart .quantity .remove-btn img {
    position: relative;
    width: 37%;
    height: 37%;
    filter: invert(0);
}

@keyframes show_from_bottom {
    0% {
        transform: translateY(50%) scale(1.1);
        opacity: 0;
    }

    30% {
        transform: translateY(-5%) scale(1);
        opacity: 0.7;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.checkout-page .total-price {
    position: fixed;
    bottom: 0;
    left: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black;
    z-index: 9999;
    padding: 15px;
    width: calc(100% - 30px);
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    gap: 5px;
    background: white;
    transform: translateY(50%) scale(1.1);
    opacity: 0;
    animation: show_from_bottom .6s ease calc(var(--i) * .2s) forwards;
}

.checkout-page .total-price.show {
    display: flex;
}

.checkout-page .total-price .buttons-to {
    position: relative;
    background: transparent;
    height: 60px;
    width: calc(100% - 20px);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
}

.checkout-page .total-price .buttons-to .delet-cart {
    position: relative;
    border-radius: 50px;
    corner-shape: squircle;
    flex: .3;
    height: 60px;
    border: none;
    outline: none;
    font-size: 17px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: rgba(255, 0, 0, .3);
    color: black;
    box-shadow: none;
    transform: translateY(50%) scale(1.1);
    opacity: 0;
    animation: show_from_bottom .6s ease calc(var(--i) * .2s) forwards;
}

.checkout-page .total-price .buttons-to .confirm-via-whatsapp {
    position: relative;
    border-radius: 50px;
    corner-shape: squircle;
    flex: .7;
    height: 60px;
    border: none;
    outline: none;
    font-size: 17px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: rgba(55, 255, 0, 0.3);
    color: green;
    box-shadow: none;
    transform: translateY(50%) scale(1.1);
    opacity: 0;
    animation: show_from_bottom .6s ease calc(var(--i) * .2s) forwards;
}

.checkout-page .total-price .buttons-to .confirm-via-whatsapp svg {
    height: 40%;
    aspect-ratio: 1 / 1;
    fill: green;
}

.checkout-page .total-price .buttons-to .delet-cart svg {
    height: 40%;
    aspect-ratio: 1 / 1;
    color: red;
    stroke-width: 1px;
}

.checkout-page .total-price .total {
    width: calc(100%);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    gap: 5px;
    margin-bottom: 10px;
}

.checkout-page .total-price .total .total-price-index {
    flex: 1;
    height: 100%;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    text-align: right;
}

.checkout-page .total-price .total .total-price-index p {
    font-size: 23px;
    font-weight: 700;
    position: relative;
    text-align: right;
    direction: rtl;
    margin-right: 0;
    opacity: 0;
    transform: translateY(70%);
    animation: show_from_bottom .6s ease calc(var(--i) * .2s) forwards;
}

.checkout-page .total-price .total .total-price-index p:nth-child(1),
.checkout-page .total-price .total .total-price-index p:nth-child(2) {
    opacity: .5;
    font-size: 15px;
    margin-left: 0;
    padding: 5px 10px;
    font-weight: 300;
    border-radius: 30px;
    corner-shape: squircle;
}

.checkout-page .total-price .total .total-price-index p:nth-child(1) {
    color: red;
    background: #ff000050;
    margin-right: 4px;
    margin-bottom: .5px;
}

.checkout-page .total-price .total .total-price-index p:nth-child(2) {
    background: #00000050;
    color: #000;
}


.checkout-page .total-price .confirm {
    position: relative;
    border-radius: 20px;
    width: calc(100%);
    height: 70px;
    border: none;
    outline: none;
    font-size: 17px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    color: white;
    margin: 20px 0;
    margin-bottom: 10px;
    transform: translateY(50%) scale(1.1);
    opacity: 0;
    animation: show_from_bottom .6s ease calc(var(--i) * .2s) forwards;
}

.checkout-page .total-price .confirm::before {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    height: 50%;
    width: 80%;
    background: transparent;
    box-shadow: 0 7px 20px black;
    content: '';
    z-index: -112;
    transition: .3s ease;
}

.checkout-page .total-price .confirm::after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(145deg, #272727, #000, #000);
    content: '';
    border-radius: 25px;
    z-index: -111;
    transition: .3s ease;
    border-radius: 50px;
    corner-shape: squircle;
}

.checkout-page .total-price .confirm:active::before {
    opacity: 0;
}

.checkout-page .total-price .confirm-slide {
    background: transparent;
    position: relative;
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    padding: 0;
    gap: 5px;
}


.checkout-page .total-price .confirm-slide .whole-price {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: end;
    align-items: center;
    background: transparent;
    height: 100%;
}

.checkout-page .total-price .confirm-slide .whole-price p {
    position: relative;
    font-size: 28px;
    direction: rtl;
    font-weight: 700;
    padding-right: 7px;
    padding-bottom: 5px;
}

.checkout-page .total-price .confirm-slide .characters {
    position: relative;
    flex: .5;
    background: transparent;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 3px;
}

.checkout-page .total-price .confirm-slide .characters .character {
    position: relative;
    height: 50px;
    width: 50px;
    background-image: url('characters/characters-bg.png');
    background-position: center;
    background-size: cover;
    border-radius: 50px;
    transform: translateX(var(--x));
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transform: translateY(50%) scale(1.1);
    opacity: 0;
    animation: show_from_bottom .6s ease calc(var(--i) * .2s) forwards;
}

.checkout-page .total-price .confirm-slide .characters .character img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-page .total-price .confirm-slide .characters .character p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, .3);
    color: white;
    padding-top: 3px;
    width: 100%;
    height: calc(100% - 3px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-operation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, .3);
    display: none;
    justify-content: center;
    align-items: center;
}

.success-operation .label {
    position: relative;
    width: calc(100% - 50px);
    padding: 5px;
    padding-top: 50px;
    background: rgb(0, 255, 0);
    border-radius: 40px;
}

.success-operation .label .text {
    position: relative;
    width: 100%;
    height: 150px;
    background: white;
    border-radius: 35px;
}

.user-page-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.user-page {
    position: relative;
    width: 100%;
    height: calc(100% - 150px);
    padding-top: 100px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.user-page .back {
    position: absolute;
    top: 20px;
    left: 20px;
    border-radius: 35px;
    padding: 5px;
    border: none;
    outline: none;
    background: transparent;
    display: flex;
    flex-direction: row;
    gap: 5px;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.user-page .back a,
.user-page .back .set-ups {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-page .back .set-ups {
    background: rgba(0, 0, 0, 0.05);
}

.user-page .back a svg {
    width: 50px;
    height: 50px;
    stroke-width: 1px;
    color: black;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.user-page .back .set-ups img {
    position: relative;
    width: 45%;
    height: 45%;
    object-fit: cover;
    rotate: 180deg;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + 0.3s) forwards;
}

.user-page .add-team,
.user-page .history-open {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    height: 70px;
    width: 70px;
    border-radius: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.user-page .history-open {
    right: 70px;
}

.user-page .add-team svg,
.user-page .history-open svg {
    width: 45px;
    height: 45px;
    stroke-width: 1px;
    color: black;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.user-page .history-open svg {
    width: 33px;
    height: 33px;
    stroke-width: 30px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    color: black;
}

.user-page .history-open svg path {
    stroke-dashoffset: 950;
    stroke-dasharray: 950;
    animation: svg-animation .1s ease forwards;
}

@keyframes svg-animation {
    0% {
        stroke-dashoffset: 950;
        stroke-dasharray: 950;
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 950;
    }
}

.add-team-panel {
    position: fixed;
    bottom: -20px;
    height: 80%;
    width: calc(100% - 40px);
    padding: 20px;
    background: white;
    z-index: 9999999;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    transition: box-shadow .5s .7s, transform 1.5s, scale 3s, opacity 2s;
    box-shadow: none;
    transform: translateY(110%);
    scale: 1.7;
    opacity: 1;
}

.add-team-panel::before {
    position: absolute;
    top: 10px;
    height: 5px;
    width: 50px;
    border-radius: 5px;
    background: gray;
    content: "";
    display: none;
    transform: translateY(-15px) scale(1.1);
    opacity: 0;
    animation: panels-tag 1s ease 1s forwards;
}

@keyframes panels-tag {
    0% {
        transform: translateY(-15px) scale(1.1);
        opacity: 0;
    }

    30% {
        transform: translateY(3px) scale(1);
        opacity: 0.7;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.add-team-panel.show {
    transform: translateY(0);
    scale: 1;
    opacity: 1;
    transition: box-shadow 1.2s .7s, transform 1s, scale 1.2s, opacity .3s;
}

.user-page-cover.blur {
    filter: blur(0) saturate(0);
    transform: translateY(15px) scale(.99);
    opacity: .5;
    pointer-events: none;
}

.add-team-panel.show::before {
    display: flex;
}

.add-team-panel * {
    display: none;
}

.add-team-panel.show * {
    display: flex;
}

.add-team-panel h1 {
    position: relative;
    width: 100%;
    height: 70px;
    font-size: 25px;
    padding: 0;
    justify-content: right;
    align-items: center;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + .2s) forwards;
}

.add-team-panel h1 span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 50px;
    width: 50px;
    background: transparent;
    justify-content: center;
    align-items: center;
}

.add-team-panel h1 span svg {
    position: relative;
    width: 100%;
    height: 100%;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + .3s) forwards;
}

.add-team-panel .search-friends {
    position: relative;
    width: 100%;
    height: 60px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: transparent;
    margin-top: 15px;
}

.add-team-panel .search-friends .search-button {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 35px;
    background: transparent;
    direction: rtl;
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 300;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.add-team-panel .search-friends .search-button input {
    position: relative;
    padding: 0 20px;
    width: calc(100% - 40px);
    height: 100%;
    border-radius: 35px;
    background: transparent;
    direction: rtl;
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 300;
    opacity: 0;
}

.add-team-panel .search-friends .search-button .search-button-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.add-team-panel .search-friends .search-button.show {
    width: calc(100% - 60px);
    background: #f2f2f2;
}

.add-team-panel .search-friends .search-button.show input {
    opacity: 1;
}

.add-team-panel .search-friends .search-button.show .search-button-btn {
    opacity: 0;
}

.add-team-panel .search-friends .search-button .search-button-btn svg {
    position: relative;
    color: black;
    stroke-width: 2px;
    width: 100%;
    height: 100%;
    background: transparent;
}

.add-team-panel .search-friends button {
    position: relative;
    height: 60px;
    width: 60px;
    content: '';
    border-radius: 30px;
    z-index: 1;
    border: none;
    outline: none;
    justify-content: center;
    align-items: center;
    background: transparent;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.add-team-panel .search-friends button.show {
    width: calc(100% - 60px);
    background: #f2f2f2;
}

.add-team-panel .search-friends button svg {
    position: relative;
    width: 65%;
    height: 65%;
    color: black;
    stroke-width: 3px;
}

.add-team-panel .search-friends button svg #ring {
    opacity: 0;
}

.add-team-panel .search-panel,
.add-team-panel .requests-panel {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 3;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin-top: 10px;
    display: none;
}

.add-team-panel .search-panel.show,
.add-team-panel .requests-panel.show {
    display: flex;
}

.add-team-panel .requests-panel .empty {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.add-team-panel .requests-panel .empty svg {
    position: relative;
    opacity: .7;
    scale: 1.3;
}

.add-team-panel .requests-panel .empty p {
    position: relative;
    font-size: 15px;
    background: #00000050;
    border-radius: 50px;
    padding: 10px 30px;
    margin-top: 15px;
}


.add-team-panel .search-panel .friend,
.add-team-panel .requests-panel .friend,
.add-team-panel .requests-panel .friend {
    position: relative;
    width: calc(100% - 10px);
    padding: 5px;
    background-position: center;
    background-size: cover;
    border-radius: 45px;
    direction: rtl;
    aspect-ratio: 4 / 2;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.add-team-panel .search-panel .friend::before,
.add-team-panel .requests-panel .friend::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #ffffff10, #ffffff50, #ffffff);
    content: '';
    border-radius: 45px;
    corner-shape: squircle;
    z-index: -0;
}

.add-team-panel .search-panel .friend .banner-fr,
.add-team-panel .requests-panel .friend .banner-fr {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--banner-fr);
    background-position: center;
    background-size: cover;
    border-radius: 45px;
}

.add-team-panel .search-panel .friend .banner-fr::before,
.add-team-panel .requests-panel .friend .banner-fr::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #ffffff10, #ffffff50, #ffffff);
    content: '';
    border-radius: 45px;
    corner-shape: squircle;
    z-index: -0;
}

.add-team-panel .search-panel .friend .profile,
.add-team-panel .requests-panel .friend .profile {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 100px;
    width: 100px;
    overflow: hidden;
    border-radius: 30px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.add-team-panel .search-panel .friend .profile img,
.add-team-panel .requests-panel .friend .profile img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.add-team-panel .search-panel .friend .group,
.add-team-panel .requests-panel .friend .group {
    position: absolute;
    right: 120px;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    gap: 0px;
    background: transparent;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.add-team-panel .search-panel .friend .friend-name,
.add-team-panel .requests-panel .friend .friend-name,
.add-team-panel .search-panel .friend .friend-phone,
.add-team-panel .requests-panel .friend .friend-phone {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 300;
    flex: 1;
    color: #272727;
    font-size: 13px;
    background: white;
    padding: 3px 10px;
    border-radius: 15px;
}

.add-team-panel .search-panel .friend .friend-phone,
.add-team-panel .requests-panel .friend .friend-phone {
    font-size: 9px;
}

.add-team-panel .search-panel .friend .score-group,
.add-team-panel .requests-panel .friend .score-group {
    position: absolute;
    bottom: 90px;
    left: 10px;
    right: 120px;
    background: transparent;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.add-team-panel .search-panel .friend .score-group div,
.add-team-panel .requests-panel .friend .score-group div {
    position: relative;
    background: transparent;
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.add-team-panel .search-panel .friend .score-group div p,
.add-team-panel .requests-panel .friend .score-group div p {
    position: relative;
    background: transparent;
    text-align: center;
    margin: 0;
    color: white;
}

.add-team-panel .search-panel .friend .score-group svg,
.add-team-panel .requests-panel .friend .score-group svg {
    width: 40%;
    aspect-ratio: 1 / 1;
    position: relative;
    background: transparent;
    margin: 0;
    color: white;
}

.add-team-panel .search-panel .friend button,
.add-team-panel .requests-panel .friend button {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: 70px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, #272727, black, black);
    border: none;
    outline: none;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}


.add-team-panel .search-panel .friend button::before,
.add-team-panel .requests-panel .friend button::before {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    height: 50%;
    width: 80%;
    background: transparent;
    box-shadow: 0 7px 20px black;
    content: '';
    border-radius: 20px;
    transition: .3s ease;
}

.add-team-panel .search-panel .friend button::after,
.add-team-panel .requests-panel .friend button::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #272727, #000, #000);
    content: 'إرسال الطلب';
    border-radius: 50px;
    corner-shape: squircle;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.add-team-panel .search-panel .friend button:active::before,
.add-team-panel .requests-panel .friend button:active::before {
    box-shadow: none;
}

.add-team-panel .requests-panel .friend button::after {
    content: 'قبول الطلب';
}

.add-team-panel .search-panel .current-friend {
    width: calc(100% - 20px);
    padding: 10px;
    background: transparent;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.add-team-panel .search-panel .current-friend .banner {
    position: relative;
    width: calc(100%);
    aspect-ratio: 5 / 2;
    background-image: url('');
    background-position: center;
    background-size: cover;
    border-radius: 40px;
}


.add-team-panel .search-panel .current-friend .profile {
    position: relative;
    transform: translateY(-50%) translateX(50%);
    width: 25%;
    aspect-ratio: 1 / 1;
    background-image: url('');
    background-position: center;
    background-size: cover;
    border-radius: 50px;
    box-shadow: 0 3px 7px #00000020;
}

.add-team-panel .search-panel .current-friend .profile p {
    position: absolute;
    top: 50%;
    right: 0;
    padding: 5px 10px;
    background: #fff;
    color: black;
    border-radius: 20px;
    font-size: 17px;
    transform: translateX(100%) translateY(-50%);
    text-wrap: nowrap;
    font-weight: 300;
    box-shadow: 0 3px 7px #00000020;
}

.add-team-panel .search-panel .current-friend .info {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.add-team-panel .search-panel .current-friend .info .score {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
    gap: 5px;
}

.add-team-panel .search-panel .current-friend .info .score svg {
    color: black;
    opacity: .7;
    width: 30%;
    height: 30%;
}

.add-team-panel .search-panel .current-friend .info .score p {
    color: black;
    font-size: 20px;
    font-weight: 700;
}

.add-team-panel .search-panel .current-friend .info .score span {
    font-size: 12px;
    opacity: .7;
}

.user-page .user-panel {
    position: relative;
    width: calc(100% - 70px);
    background: white;
    background: linear-gradient(to bottom, #f3f3f3, #fff);
    border-radius: 70px;
    margin-bottom: 7px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 15px;
    gap: 5px;
}

.user-page .user-panel .banner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 8;
    background: transparent;
}

.user-page .user-panel .banner img::before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(10deg, rgba(255, 255, 255, 0.5), transparent, transparent);
    z-index: 2;
    border-radius: 35px;
}

.user-page .user-panel .banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
    opacity: 1;
    border: none;
    outline: none;
}

.user-page .user-panel .banner .avatar {
    position: absolute;
    bottom: 0;
    left: 29px;
    transform: translateY(40%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    z-index: 3;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.user-page .user-panel .banner .avatar img {
    opacity: 1;
    border-radius: 50%;
}


.user-page .user-panel .banner .avatar .state {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateX(30%) translateY(-30%);
    width: 30px;
    height: 30px;
    background: rgb(0, 255, 0);
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.05), inset 1px 1px 5px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
}

.user-page .user-panel .banner .avatar .state img {
    filter: invert(1);
    position: relative;
    width: 70%;
    height: 70%;
}

.user-page .user-panel .banner .avatar .edit-avatar {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.user-page .user-panel .banner .avatar .edit-avatar img {
    position: relative;
    width: 45%;
    height: 45%;
    object-fit: cover;
    border-radius: 0;
}

.user-page .user-panel .banner .id-output {
    position: absolute;
    bottom: 0;
    left: 80px;
    transform: translateY(30%);
    padding: 15px 20px;
    padding-left: 60px;
    background: white;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    text-transform: uppercase;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-weight: 400;
    transition: opacity .3s ease .1s;
}

.user-page .user-panel .scores {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    margin-top: 50px;
    border-radius: 35px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.user-page .user-panel .scores div {
    position: relative;
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
}

.user-page .user-panel .scores div svg {
    width: 40px;
    height: 40px;
    object-fit: cover;
    position: relative;
    opacity: 0.5;
    stroke-width: 1px;
    background: transparent;
}

.user-page .user-panel .scores div p {
    font-size: 20px;
    position: relative;
}

.user-page .user-panel .scores div span {
    position: relative;
    width: 100%;
    text-align: center;
    opacity: 0.5;
}

.user-page .user-panel .buttons {
    position: relative;
    width: 100%;
    height: 70px;
    border-radius: 35px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.user-page .user-panel .buttons.new button.edit-avatar {
    display: none;
}

.user-page .user-panel .buttons button {
    position: relative;
    flex: 1;
    height: 100%;
    border-radius: 50px;
    border: none;
    outline: none;
    background: rgba(0, 0, 0, 0.05);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-page .user-panel .buttons.new #newbuttonaccount {
    background: linear-gradient(145deg, #272727, #000, #000);
    color: white;
}

.user-page .user-panel .buttons.new #newbuttonaccount::before {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    height: 50%;
    width: 80%;
    background: transparent;
    box-shadow: 0 7px 20px black;
    content: '';
    border-radius: 20px;
}

.user-page .user-panel .buttons #newbuttonaccount::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #272727, #000, #000);
    content: 'الحسابات';
    border-radius: 50px;
    corner-shape: squircle;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.user-page .user-panel .buttons button img {
    position: relative;
    width: 37%;
    height: 37%;
    object-fit: cover;
    display: none;
}

.user-page .user-panel .buttons button svg {
    width: 50px;
    height: 50px;
    stroke-width: 1px;
    color: black;
}

.user-page .user-panel .buttons button #op {
    stroke-width: 2px;
}

.user-page .user-panel .buttons button .chara {
    width: 35px;
    height: 35px;
    stroke-width: 1px;
    color: black;
}

.user-page .user-panel .buttons button .icon-user-rounded {
    margin-bottom: 8px;
}

.user-page .user-panel .buttons button.edit-avatar {
    width: initial;
    flex: initial;
    aspect-ratio: 1 / 1;
    background: rgba(0, 0, 0, 0.05);
}

#openeravatareditor {
    transition: .3s ease .15s;
}

.avatar-photo {
    position: fixed;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50px;
    z-index: 99;
    padding: 15px;
    padding-top: 25px;
    z-index: 99999;
    transition: opacity .3s, width .63s ease, height .5s ease, left .5s ease, top .5s ease, transform .8s ease;
}

.avatar-photo .cover-avatar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    z-index: 999;
    overflow: hidden;
    transition: .3s ease;
}

.avatar-photo .cover-avatar img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-photo::before {
    position: absolute;
    top: 10px;
    height: 5px;
    width: 50px;
    left: calc(50% - 25px);
    border-radius: 5px;
    background: gray;
    content: "";
    transform: translateY(-15px) scale(1.1);
    opacity: 0;
    animation: panels-tag 1s ease 1s forwards;
}

.avatar-photo .selectors {
    display: flex;
    flex-wrap: nowrap;
    overflow: scroll;
    gap: 5px;
    width: 100%;
    height: 100%;
    border-radius: 35px;
    background: white;
}

.avatar-photo .selectors .selector {
    width: 100px;
    height: 100px;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + .1s) forwards;
}

.avatar-photo .selectors .selector img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 35px;
}

.avatar-photo button {
    position: absolute;
    bottom: 15px;
    left: 15px;
    height: 70px;
    right: 15px;
    border-radius: 35px;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + .2s) forwards;
}

.avatar-photo button::before {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    height: 50%;
    width: 80%;
    background: transparent;
    box-shadow: 0 7px 20px black;
    content: '';
    border-radius: 20px;
    z-index: -111;
}


.avatar-photo button::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: 'حفظ';
    border-radius: 50px;
    background: linear-gradient(145deg, #272727, #000);
    corner-shape: squircle;
    z-index: 1;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
}


.banner-photo {
    position: absolute;
    background: white;
    border-radius: 50px;
    z-index: 0;
    padding: 15px;
    padding-top: 25px;
    display: none;
    overflow: hidden;
    transition: opacity .3s, width .35s ease, height .7s ease, left .5s ease, top .5s ease, transform .5s ease;
}


.banner-photo::before {
    position: absolute;
    top: 10px;
    height: 5px;
    width: 50px;
    left: calc(50% - 25px);
    border-radius: 5px;
    background: gray;
    content: "";
    transform: translateY(-15px) scale(1.1);
    opacity: 0;
    animation: panels-tag 1s ease 1s forwards;
}


.banner-photo .cover-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    z-index: 999;
    overflow: hidden;
    transition: .3s ease;
}


.banner-photo .cover-banner img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-photo .selectors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: scroll;
    gap: 5px;
    width: 100%;
    height: calc(80px * 2 + 5px);
    border-radius: 35px;
}

.banner-photo .selectors .selector {
    width: 140px;
    position: relative;
    border-radius: 35px;
    aspect-ratio: 16 / 9;
}

.banner-photo .selectors .selector img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 35px;
}

.avatar-photo .selectors .selector::before,
.banner-photo .selectors .selector::before {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 10px;
    content: "";
    background: white;
    z-index: 2;
    display: none;
    border-radius: 35px;
    corner-shape: squircle;
}


.banner-photo .selectors .selector.selected::after,
.banner-photo .selectors .selector.selected::before,
.avatar-photo .selectors .selector.selected::after,
.avatar-photo .selectors .selector.selected::before {
    display: flex;
}

.banner-photo button {
    position: absolute;
    bottom: 15px;
    left: 15px;
    height: 70px;
    right: 15px;
    border-radius: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
}

.banner-photo button::before {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    height: 50%;
    width: 80%;
    background: transparent;
    box-shadow: 0 7px 20px black;
    content: '';
    border-radius: 20px;
    z-index: -111;
}


.banner-photo button::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: 'حفظ';
    border-radius: 50px;
    background: linear-gradient(145deg, #272727, #000);
    corner-shape: squircle;
    z-index: 1;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
}


.edit-panel {
    position: fixed;
    bottom: -30px;
    left: 0;
    right: 0;
    padding: 15px;
    z-index: 3;
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background: white;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    gap: 5px;
    padding-top: 100px;
    transition: box-shadow .5s, transform 1.5s, scale 3s, opacity 2s;
    box-shadow: none;
    transform: translateY(110%);
    scale: 1.7;
    opacity: 1;
}

.edit-panel::before {
    position: absolute;
    top: 10px;
    left: calc(50% - 25px);
    height: 5px;
    width: 50px;
    background: gray;
    border-radius: 5px;
    content: "";
    display: none;
    transform: translateY(-15px) scale(1.1);
    opacity: 0;
    animation: panels-tag 1s ease 1s forwards;
}

.edit-panel.show {
    transform: translateY(0);
    scale: 1;
    opacity: 1;
    transition: box-shadow 1s .3s, transform .85s, scale 1.1s, opacity .3s;
}


.edit-panel.show::before {
    display: flex;
}

.edit-panel * {
    display: none;
}

.edit-panel.show * {
    display: flex;
}


.edit-panel input {
    width: calc(100% - 40px);
    padding: 0 20px;
    height: 70px;
    border: none;
    outline: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 35px;
    font-size: 15px;
    font-weight: 400;
    font-weight: 300;
    text-align: right;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + .2s) forwards;
}

.edit-panel input.wrong::placeholder {
    color: red;
}

.edit-panel h3 {
    position: relative;
    width: calc(100%);
    font-size: 15px;
    margin-top: 10px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + .2s) forwards;
}

.edit-panel button {
    position: relative;
    width: 100%;
    height: 70px;
    border-radius: 35px;
    font-size: 17px;
    margin-top: 50px;
    font-weight: 500;
    background: transparent;
    border: none;
    outline: none;
    justify-content: center;
    align-items: center;
    background-image: url("icons/button-bg-2.jpg");
    background-position: center;
    background-size: cover;
    box-shadow: inset 2px 2px 7px rgba(255, 255, 255, 0.5), 0 2px 7px 0.5px rgba(0, 0, 21, 0.5);
    box-shadow: none;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + .2s) forwards;
}


.edit-panel #save-avatar-change::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: white;
    content: 'حفظ المعلومات';
    display: flex;
    justify-content: center;
    align-items: center;
    corner-shape: squircle;
    border-radius: 35px;
    z-index: 1;
    font-size: 16px;
    background: linear-gradient(145deg, #272727, #000, #000);
}


.edit-panel #save-avatar-change::after {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    height: 50%;
    width: 80%;
    background: transparent;
    box-shadow: 0 7px 20px black;
    content: '';
    border-radius: 20px;
    z-index: -1;
}

.edit-panel #share-me {
    margin-bottom: 30px;
    margin-top: 0;
}

.edit-panel button p {
    position: relative;
    color: white;
    font-size: 25px;
    font-weight: 700;
    transform: translateY(70%);
    opacity: 0;
    animation: show_from_bottom .1s ease calc(var(--i) * .2s) forwards;


}

.edit-panel button::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    content: "";
    z-index: 0;
    display: none;
}

.edit-panel button.close {
    margin: 0;
    background: transparent;
    width: initial;
    height: 70px;
    box-shadow: none;
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.edit-panel button.close p {
    flex: 1;
    justify-content: end;
    align-items: center;
    text-align: right;
    font-size: 25px;
    font-weight: 700;
    color: black;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + .2s) forwards;
}

.edit-panel button.close span {
    position: relative;
    object-fit: cover;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + .2s) forwards;
}


@keyframes loader-animation {
    0% {
        transform: translateY(50%) scale(1.09);
        opacity: 0;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}


.loader {
    position: fixed;
    left: 0;
    bottom: 0;
    width: calc(100% - 30px);
    aspect-ratio: 1 / 1;
    padding: 15px;
    z-index: 99999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    transition: box-shadow .5s .7s, transform 1.5s, scale 3s, opacity 2s;
    box-shadow: none;
    transform: translateY(110%);
    scale: 1.7;
    opacity: 1;
}

.loader::before {
    position: absolute;
    top: 10px;
    height: 5px;
    width: 50px;
    border-radius: 5px;
    background: gray;
    content: "";
    display: none;
    transform: translateY(-15px) scale(1.1);
    opacity: 0;
    animation: panels-tag 1s ease .5s forwards;
}

.loader.show {
    transform: translateY(0);
    scale: 1;
    opacity: 1;
    transition: box-shadow 1.2s .3s, transform 1s, scale 1.2s, opacity .3s;
}

.loader.show::before {
    display: flex;
}

.loader p {
    font-size: 17px;
    position: relative;
    height: 70px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    display: none;
}

.loader .loading {
    position: relative;
    width: calc(100%);
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
    transform: translateY(50%) scale(1.07);
    opacity: 0;
    animation: loader-animation 1s ease forwards;
}

.loader .loading svg {
    position: absolute;
    width: 130%;
    height: 130%;
    background: transparent;
}

.loader .loading #loader-face {
    transform: translateY(0) rotate(0);
    animation: loader-ani 3s ease infinite;
}

.loader .loading #eyes-smile {
    transform: translateY(0) rotate(0);
    animation: loader-ani-1 2s ease infinite;
}


@keyframes loader-ani-1 {
    0% {
        transform: translateY(0) rotate(0);
    }

    25% {
        transform: translateY(10px) rotate(7deg);
    }

    75% {
        transform: translateY(10px) rotate(-7deg);
    }

    100% {
        transform: translateY(0) rotate(0);
    }
}

@keyframes loader-ani {
    0% {
        transform: translateY(0) rotate(0);
    }

    25% {
        transform: translateY(15px) rotate(90deg);
    }

    50% {
        transform: translateY(-15px) rotate(180deg);
    }

    75% {
        transform: translateY(15px) rotate(360deg);
    }
}

.user-page .operators {
    position: fixed;
    bottom: 0;
    left: 0;
    width: calc(100% - 30px);
    display: none;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 5px;
    background: white;
    z-index: 88;
    padding: 15px;
    padding-bottom: 100px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    box-shadow: 0 0 100px 700px rgba(0, 0, 0, 0.3);
}

.user-page .operators.show {
    display: flex;
}

.user-page .operators::before {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    background: rgba(0, 0, 0, 0.5);
    content: "";
    border-radius: 5px;
}

.user-page .operators .back-operators {
    position: relative;
    height: 70px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 35px;
}

.user-page .operators .back-operators img {
    position: relative;
    width: 45%;
    height: 45%;
    object-fit: cover;
    rotate: 180deg;
}

.user-page .operators .operator {
    width: calc(100% - 40px);
    height: 70px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 35px;
    padding: 0 20px;
    padding-top: 2px;
    display: flex;
    justify-content: start;
    align-items: center;
    font-weight: 300;
    font-size: 15px;
    position: relative;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.user-page .operators .operator img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    scale: 0.55;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + 0.2s) forwards;
}


.login-form {
    position: fixed;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: calc(60% - 30px);
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background: white;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    z-index: 99;
    gap: 5px;
    transition: box-shadow .5s, transform 1.5s, scale 3s, opacity 2s;
    box-shadow: none;
    transform: translateY(110%);
    scale: 1.7;
    opacity: 1;
}

.login-form.show {
    transform: translateY(0);
    scale: 1;
    opacity: 1;
    transition: box-shadow 1s .3s, transform .85s, scale 1.1s, opacity .3s;
}


.login-form.blur,
.edit-panel.blur,
.store-page.blur,
.checkout-page.blur {
    filter: blur(7px) saturate(1);
    transform: translateY(0px) scale(.95);
    pointer-events: none;
}

.checkout-page.blur {
    filter: blur(7px) saturate(0);
    transform: translateY(15px) scale(.95);
    pointer-events: none;
}


.login-form::before {
    position: absolute;
    top: 10px;
    height: 5px;
    width: 50px;
    border-radius: 5px;
    background: gray;
    content: "";
    display: none;
    transform: translateY(-15px) scale(1.1);
    opacity: 0;
    animation: panels-tag 1s ease 1s forwards;
}


.login-form.show::before {
    display: flex;
}

.login-form * {
    display: none;
}

.login-form.show * {
    display: flex;
}


.login-form .close {
    position: absolute;
    top: 20px;
    left: 20px;
    height: 60px;
    border-radius: 0;
    border: none;
    outline: none;
    background: transparent;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    z-index: 9;
    background: transparent;
    padding: 5px;
    gap: 5px;
    right: 20px;

}

.login-form .close p {
    position: relative;
    font-size: 25px;
    font-weight: 700;
    flex: 1;
    margin-top: 3px;
    direction: rtl;
    text-align: right;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + .2s) forwards;
}

.login-form .close span {
    width: 50px;
    height: 50px;
    position: relative;
    background: transparent;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + .2s) forwards;
}

.login-form .close img {
    position: relative;
    width: 45%;
    height: 45%;
    object-fit: cover;
    rotate: 180deg;
}

.login-form input {
    position: relative;
    height: 70px;
    width: calc(100% - 80px);
    padding: 0 20px;
    border-radius: 35px;
    border: none;
    outline: none;
    background: rgba(0, 0, 0, 0.05);
    font-size: 16px;
    font-weight: 300;
    text-align: right;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + .2s) forwards;
}

.login-form button {
    position: relative;
    height: 70px;
    width: calc(100% - 40px);
    border-radius: 35px;
    border: none;
    outline: none;
    margin-top: 50px;
    font-size: 16px;
    color: white;
    font-weight: 300;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + .2s) forwards;
    background: transparent;
}

.login-form #login-button::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: 'تسجيل الدخول';
    display: flex;
    justify-content: center;
    align-items: center;
    corner-shape: squircle;
    border-radius: 35px;
    z-index: 1;
    font-size: 16px;
    background: linear-gradient(145deg, #272727, #000, #000);
}


.login-form #login-button::after {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    height: 50%;
    width: 80%;
    background: transparent;
    box-shadow: 0 7px 20px black;
    content: '';
    border-radius: 20px;
    z-index: -1;
}


.login-form #new-login {
    margin-top: 0;
    background: transparent;
    color: black;
    box-shadow: none;
    justify-content: center;
    align-items: center;
}

.login-form #new-login::before {
    display: none;
}

.new-login-panel {
    position: fixed;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: calc(80% - 30px);
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background: white;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    z-index: 9999;
    gap: 5px;
    transition: box-shadow .5s, transform 1.5s, scale 3s, opacity 2s;
    box-shadow: none;
    transform: translateY(110%);
    scale: 1.7;
    opacity: 1;
}


.new-login-panel::before {
    position: absolute;
    top: 10px;
    content: "";
    width: 50px;
    height: 5px;
    background: gray;
    border-radius: 5px;
    display: none;
    transform: translateY(-15px) scale(1.1);
    opacity: 0;
    animation: panels-tag 1s ease 1s forwards;
}

.new-login-panel.show::before {
    display: flex;
}

.new-login-panel * {
    display: none;
}

.new-login-panel.show * {
    display: flex;
}

.new-login-panel.blur {
    filter: blur(3px);
    transform: translateY(15px) scale(.95);
    pointer-events: none;
}

.new-login-panel.show {
    transform: translateY(0);
    scale: 1;
    opacity: 1;
    transition: box-shadow 1s .3s, transform .85s, scale 1.1s, opacity .3s;
}

.new-login-panel input {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 35px;
    max-height: 70px;
    min-height: 70px;
    position: relative;
    width: calc(100% - 80px);
    background: rgba(0, 0, 0, 0.05);
    padding: 0 20px;
    border: none;
    outline: none;
    font-size: 16px;
    color: black;
    font-weight: 300;
    text-align: right;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + .2s) forwards;
}

.new-login-panel button {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    max-height: 70px;
    min-height: 70px;
    border-radius: 35px;
    position: relative;
    margin-top: 50px;
    width: calc(100% - 40px);
    font-weight: 300;
    font-size: 16px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + .2s) forwards;
}


.new-login-panel #add-new-account::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: 'انشاء حساب';
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    corner-shape: squircle;
    border-radius: 35px;
    z-index: 1;
    font-size: 16px;
    background: linear-gradient(145deg, #272727, #000, #000);
}


.new-login-panel #add-new-account::after {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    height: 50%;
    width: 80%;
    background: transparent;
    box-shadow: 0 7px 20px black;
    content: '';
    border-radius: 20px;
    z-index: -1;
}

.new-login-panel button.login-back-button {
    margin: 0;
    color: black;
    margin-bottom: 170px;
    justify-content: center;
    align-items: center;
}

.new-login-panel button.concel {
    margin-top: 0;
    box-shadow: none;
    color: black;
    position: absolute;
    top: 30px;
    left: 20px;
    right: 20px;
    height: 60px;
    width: initial;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px;
    gap: 5px;
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: none;
}

.new-login-panel button.concel span {
    position: relative;
    width: 50px;
    height: 50px;
    background: transparent;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + .2s) forwards;
}


.new-login-panel button.concel p {
    position: relative;
    margin-top: 3px;
    background: transparent;
    font-size: 25px;
    font-weight: 700;
    flex: 1;
    direction: rtl;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + .2s) forwards;
}

.new-login-panel button.concel::before {
    display: none;
}

.order-traking {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 90px);
    padding-top: 90px;
    display: none;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background: #e4e4e4;
    z-index: 99;
}

.order-traking.show {
    display: flex;
}

.order-traking .close {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 60px;
    border-radius: 0;
    border: none;
    outline: none;
    background: transparent;
    display: flex;
    justify-content: start;
    align-items: center;
    z-index: 9;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.order-traking .close svg {
    position: relative;
    height: 70%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + 0.2s) forwards;
}

.order-traking .close .page-title {
    flex: 1;
    height: 60px;
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
    font-weight: 300;
    font-size: 17px;
}

.order-traking .traking-map {
    position: relative;
    width: calc(100% - 40px);
    aspect-ratio: 3 / 4;
    border-radius: 30px;
    background: white;
    overflow: hidden;
}


.order-traking .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(5px);
    color: blue;
    z-index: 99999;
}


@keyframes bombing {
    0% {
        box-shadow: 0 0 7px 1px green;
    }

    50% {
        box-shadow: 0 0 7px 2px green;
    }

    100% {
        box-shadow: 0 0 7px 1px green;
    }
}

.order-traking .traking-map svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    color: blue;
    fill: none;
    z-index: 999;
}

.order-traking .traking-map svg .live-path {
    stroke-dasharray: 565;
    stroke-dashoffset: 153;
    animation: walkin 10s ease infinite;
}

@keyframes walking {
    0% {
        stroke-dasharray: 565;
        stroke-dashoffset: 565;
    }

    100% {
        stroke-dasharray: 565;
        stroke-dashoffset: 0;
    }
}

.order-traking .traking-map svg .info-path {
    stroke-width: 2;
    stroke: black;
    opacity: 0;
    display: none;
}

.order-traking .traking-map svg .info-circle {
    stroke-width: 3;
    stroke: black;
    opacity: 0;
    display: none;
}

.order-traking .traking-data {
    position: absolute;
    width: calc(100% - 40px);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: -1;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    gap: 5px;
    background: white;
    bottom: 0;
    left: 0;
    z-index: 9999999;
}

.order-traking .traking-data .traking-place {
    position: relative;
    margin-bottom: 7px;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: calc(100%);
    height: 40px;
    direction: rtl;
}

.order-traking .traking-data .traking-place h2 {
    position: relative;
    font-size: 20px;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    flex: 1;
    padding-right: 10px;
}

.order-traking .traking-data .traking-place span {
    position: relative;
    height: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.order-traking .traking-data .traking-place span svg {
    width: 85%;
    aspect-ratio: 1 / 1;
    position: relative;
    stroke-width: 2;
}

.order-traking .traking-data p {
    position: relative;
    width: calc(100% - 20px);
    padding: 0 10px;
    text-align: right;
    font-size: 15px;
    margin-bottom: 20px;
    opacity: .7;
}


.order-traking .traking-data button {
    position: relative;
    height: 70px;
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: white;
    font-size: 15px;
    margin-bottom: 10px;
}


.order-traking .traking-data button::before {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    height: 50%;
    width: 80%;
    background: transparent;
    box-shadow: 0 7px 20px black;
    content: '';
}

.order-traking .traking-data button::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #272727, #000, #000);
    content: 'معرفة المزيد';
    border-radius: 25px;
    font-size: 15px;
    font-weight: 300;
    display: flex;
    justify-content: center;
    align-items: center;
}


.order-traking .traking-data .grider {
    position: relative;
    width: calc(100%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 40px;
    gap: 7px;
    padding: 10px 0;
    background: white;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.order-traking .traking-data .grider h2 {
    width: calc(100% - 25px);
    padding-left: 25px;
    padding-top: 20px;
    text-align: left;
    font-weight: 300;
    font-size: 13px;
    position: relative;
    opacity: 0.5;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.order-traking .traking-data .grider .deliver-info {
    position: relative;
    border-radius: 40px;
    background: var(--background);
    background: linear-gradient(to right, hsl(315, 100%, 64%), #ff20c7);
    box-shadow: 0 3px 10px #ff20c790;
    box-shadow: none;
    background: rgba(0, 0, 0, 0);
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0 10px;
    width: calc(100% - 20px);
}

.order-traking .traking-data .grider .deliver-info p {
    flex: 1;
    padding-top: 4px;
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    padding-left: 7px;
    color: black;
    font-size: 18px;
    font-weight: 300;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.order-traking .traking-data .grider .deliver-info a {
    position: relative;
    height: 45px;
    padding: 0 25px;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.order-traking .traking-data .grider .deliver-info a img {
    position: relative;
    height: 40%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + 0.2s) forwards;
}

.order-traking .traking-data .grider .process {
    position: relative;
    width: calc(100% - 20px);
    height: 60px;
    background: #ff20c750;
    border-radius: 30px;
    overflow: hidden;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.order-traking .traking-data .grider .process .line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 70%;
    background: linear-gradient(to right, hsl(315, 100%, 64%), #ff20c7);
    box-shadow: 0 3px 10px #ff20c790;
    border-radius: 30px;
}

.order-traking .traking-data .grider .process .station {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 20px;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.order-traking .traking-data .grider .process .station img {
    position: relative;
    width: 50%;
    height: 50%;
    object-fit: cover;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + 0.2s) forwards;
}

.order-traking .traking-data .grider .process .station.first {
    left: 10px;
    transform: translateY(-50%) translateX(0);
}

.order-traking .traking-data .grider .process .station.last {
    left: initial;
    right: 10px;
    transform: translateY(-50%) translateX(0);
}

.order-traking .traking-data .grider .deliver-info .image {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 30px;
    overflow: hidden;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.order-traking .traking-data .grider .deliver-info .image img {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
}

.notice-me {
    position: fixed;
    bottom: 0;
    left: 0;
    width: calc(100% - 30px);
    padding: 15px;
    padding-top: 100px;
    padding-bottom: 100px;
    display: none;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background: white;
    border-top-right-radius: 50px;
    border-top-left-radius: 50px;
    gap: 7px;
    z-index: 99;
    box-shadow: 0 0 150px 1500px rgba(0, 0, 0, 0.3);
}

.notice-me.show {
    display: flex;
}

.notice-me::before {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    background: rgba(0, 0, 0, 0.5);
    content: "";
    border-radius: 5px;
}

.notice-me .close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    outline: none;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.notice-me .close img {
    position: relative;
    width: 50%;
    height: 50%;
    object-fit: cover;
    rotate: 180deg;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + 0.2s) forwards;
}

.notice-me .notice-on {
    position: relative;
    width: calc(100% - 60px);
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    border-radius: 40px;
    gap: 7px;
    padding: 15px 10px;
    padding-bottom: 10px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.notice-me .notice-on h2 {
    width: calc(100% - 30px);
    text-align: left;
    font-size: 13px;
    padding: 10px 15px;
    position: relative;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.notice-me .notice-on h2 .switcher {
    position: absolute;
    top: 0;
    right: 15px;
    height: 100%;
    width: 70px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    transition: 0.3s ease;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.notice-me .notice-on h2 .switcher::before {
    position: absolute;
    top: 5px;
    height: calc(100% - 10px);
    width: 30px;
    background: #ffffff;
    box-shadow: 0 3px 10px #ffffff90;
    content: "";
    border-radius: 20px;
    left: 5px;
    transform: translateX(0) scale(1.1);
    animation: switcher-off 0.3s ease forwards;
}

.notice-me .notice-on h2 .switcher.actived {
    background: whitesmoke;
}

.notice-me .notice-on h2 .switcher.actived::before {
    background: var(--background);
    background: linear-gradient(to right, hsl(315, 100%, 64%), #ff20c7);
    box-shadow: 0 3px 10px #ff20c790;
    animation: switcher-on 0.6s ease forwards;
}

@keyframes switcher-on {
    0% {
        left: 5px;
        transform: translateX(0) scale(1);
    }

    30% {
        left: 100%;
        transform: translateX(calc(-100% - 5px)) scale(1.1);
    }

    100% {
        left: 100%;
        transform: translateX(calc(-100% - 5px)) scale(1);
    }
}

@keyframes switcher-off {
    0% {
        left: 100%;
        transform: translateX(calc(-100% - 5px)) scale(1);
    }

    30% {
        left: 100%;
        transform: translateX(calc(-100% - 5px)) scale(1.1);
    }

    100% {
        left: 5px;
        transform: translateX(0) scale(1);
    }
}

.notice-me .notice-on input {
    width: calc(100% - 40px);
    padding: 0 20px;
    padding-top: 5px;
    height: 65px;
    border: none;
    outline: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    font-size: 14px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.notice-me .notice-on button {
    padding: 0 50px;
    height: 60px;
    border: none;
    outline: none;
    border-radius: 30px;
    background: var(--background);
    background: linear-gradient(to right, hsl(315, 100%, 64%), #ff20c7);
    box-shadow: 0 3px 10px #ff20c790;
    color: white;
    margin-top: 15px;
    display: none;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
}

.all-orders {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 100px);
    padding-top: 100px;
    display: none;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background-image: url("Products/bg.jpeg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    gap: 7px;
    z-index: 99;
}

.all-orders.show {
    display: flex;
}

.all-orders .close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    outline: none;
    background: white;
    transform: rotateZ(180deg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
}

.all-orders .close img {
    position: relative;
    width: 50%;
    height: 50%;
    object-fit: cover;
}

.all-orders h2 {
    width: calc(100% - 60px);
    text-align: left;
    font-size: 17px;
    font-weight: 400;
}

.all-orders .order-histo {
    position: relative;
    width: calc(100% - 40px);
    height: 40px;
    border: 5px solid white;
    background: rgba(255, 255, 255, 1);
    border-radius: 30px;
}

.all-orders .order-histo .image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
}

.all-orders .order-histo .image img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.all-orders .order-histo p {
    position: absolute;
    top: 50%;
    transform: translateY(-47%);
    left: 50px;
    font-size: 15px;
    font-weight: 300;
}

.all-orders .order-histo h3 {
    position: absolute;
    top: 50%;
    transform: translateY(-47%);
    right: 15px;
    font-size: 15px;
    font-weight: 300;
    color: #ff20c7;
}

.all-orders .more-detaill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(70px);
    display: none;
}

.all-orders .more-detaill .wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 60px);
    height: 50%;
    border: 5px solid white;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.5);
}

.shopping-cart {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 150px);
    padding-top: 100px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    overflow: scroll;
    background: #f3f3f3;
    gap: 7px;
    z-index: 99;
    transform: translateX(110%) scale(1.05);
}


.shopping-cart.show {
    transform: translateX(0) scale(1);
}


.shopping-cart .logo {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    border-radius: 0;
    border: none;
    outline: none;
    background: transparent;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    z-index: 9;
    padding: 5px;
    height: 60px;
    gap: 5px;
}

.shopping-cart .logo .close {
    position: relative;
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: activechara 1s ease calc(var(--i) * 0.25s) forwards;
}

.shopping-cart .logo .page-title {
    flex: 1;
}

.shopping-cart .logo .close img {
    position: relative;
    width: 50%;
    height: 50%;
    object-fit: cover;
}

.shopping-cart .logo .active-character {
    position: relative;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
    border-radius: 40px;
    gap: 3px;
}

.shopping-cart .logo .active-character .character {
    height: 50px;
    width: 50px;
    border-radius: 35px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('characters/characters-bg.png');
    background-position: center;
    background-size: cover;
    border: 5px solid #f3f3f3;
    transform: translateY(-50%) scale(1.1) translateX(var(--x));
    opacity: 0;
    animation: activechara 1s ease calc(var(--i) * 0.25s) forwards;
}

.shopping-cart .logo .active-character .character p {
    position: absolute;
    display: none;
}

.shopping-cart .logo .active-character .character img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: transparent;
    border: none;
    outline: none;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.25s) forwards;
}


@keyframes activechara {
    0% {
        transform: translateY(-50%) translateX(var(--x)) scale(1.1);
        opacity: 0;
    }

    30% {
        transform: translateY(5%) translateX(var(--x)) scale(1);
        opacity: 0.7;
    }

    100% {
        transform: translateY(0) translateX(var(--x)) scale(1);
        opacity: 1;
    }
}


@keyframes activecharah1 {
    0% {
        transform: translateY(-50%) translateX(-50%) scale(1.1);
        opacity: 0;
    }

    30% {
        transform: translateY(5%) translateX(-50%) scale(1);
        opacity: 0.7;
    }

    100% {
        transform: translateY(0) translateX(-50%) scale(1);
        opacity: 1;
    }
}

.shopping-cart .logo .active-character .character:has(img[src="characters/.png"]),
.shopping-cart .logo .active-character .character:has(img[src=""]) {
    display: none;
}

.shopping-cart .headtext {
    position: relative;
    width: calc(100% - 50px);
    font-size: 20px;
    direction: rtl;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.25s) forwards;
}

.shopping-cart .secondtext {
    position: relative;
    width: calc(100% - 50px);
    font-size: 13px;
    direction: rtl;
    font-weight: 300;
    margin-bottom: 15px;
    color: #00000070;
    line-height: 20px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.25s) forwards;
}

.shopping-cart .characters {
    position: relative;
    width: calc(100% - 40px);
    padding: 0;
    background: transparent;
    display: none;
    grid-template-columns: 1fr 1fr;
    border-radius: 0;
    gap: 5px;
}

.shopping-cart * {
    display: none;
}

.shopping-cart.show * {
    display: flex;
}

.shopping-cart.show .characters {
    display: grid;
}

.shopping-cart .characters .slide {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 5px;
}

.shopping-cart .characters .character {
    position: relative;
    width: calc(100% - 10px);
    border-radius: 45px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background: white;
    padding: 5px;
    background: linear-gradient(to bottom, #f3f3f3, #fff);
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.25s) forwards;
}

.shopping-cart .characters .character .characterActiveLevel {
    display: none;
}

.shopping-cart .characters .character .image {
    width: calc(100%);
    aspect-ratio: 1 / 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('characters/characters-bg.png');
    background-position: center;
    background-size: cover;
    border-radius: 50px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.25s) forwards;
}


.shopping-cart .characters .character .image img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.shopping-cart .characters .character .image h1 {
    position: absolute;
    z-index: 3;
    bottom: -10px;
    left: 50%;
    font-size: 15px;
    background: white;
    border-radius: 30px;
    padding: 7px 15px;
    text-wrap: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-50%) scale(1.1) translateX(-50%);
    opacity: 0;
    animation: activecharah1 1s ease calc(var(--i) * 0.25s) forwards;
}

.shopping-cart .characters .character p {
    position: relative;
    width: calc(100% - 20px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 300;
    opacity: 0.7;
    text-align: center;
    margin-top: 20px;
    border-radius: 30px;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + 0.2s) forwards;
}

.shopping-cart .characters .character button {
    width: calc(100% - 10px);
    height: 55px;
    position: relative;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    border: none;
    outline: none;
    margin-bottom: 5px;
    display: none;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani 1s ease calc(var(--i) * 0.2s + 0.2s) forwards;
}

.shopping-cart .characters .character button.able {
    display: flex;
}

.shopping-cart .characters .character .image .lock-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
    backdrop-filter: blur(7px);
    display: flex;
    justify-content: center;
    align-items: center;
    corner-shape: squircle;
}

.shopping-cart .characters .character .image .lock-icon svg {
    position: relative;
    width: 30px;
    height: 30px;
    color: white;
}

.shopping-cart .characters .character:has(button.able) .image .lock-icon {
    display: none;
}

.shopping-cart .characters .character.selected button {
    background: linear-gradient(145deg, #272727, #000, #000);
    color: white;
}

.wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #d7d7d7;
}

.wrapper .admin-operations {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    height: 40px;
    flex-direction: row;
    justify-content: center;
    align-items: end;
    padding: 5px;
    background: rgba(0, 0, 0, 1);
    backdrop-filter: blur(50px);
    z-index: 9999999999999999999999999999999;
    border-radius: 50px;
    corner-shape: squircle;
    box-shadow: 0 3px 7px rgba(0, 0, 0, .3);
}


.wrapper .admin-operations .selector {
    position: absolute;
    bottom: 5px;
    left: 5px;
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, #fefefe, #fff, #fff);
    border-radius: 20px;
    corner-shape: squircle;
}

.wrapper .admin-operations .operation {
    position: relative;
    width: 40px;
    height: 40px;
    text-align: left;
    color: rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    corner-shape: squircle;
}

.wrapper .admin-operations .operation.selected {
    color: white;
    width: 40px;
}

.wrapper .admin-operations .operation svg {
    height: 20px;
    aspect-ratio: 1 / 1;
    color: #ffffff70;
}

.wrapper .admin-operations .operation.selected svg {
    color: black;
}

.wrapper .admin-operations button {
    position: relative;
    width: 40px;
    height: 40px;
    background: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    border: none;
    outline: none;
}

.wrapper .admin-operations .operation img,
.wrapper .admin-operations button img {
    width: 40%;
    height: 40%;
    object-fit: cover;
    position: relative;
}

.wrapper .admin-operations button img {
    filter: invert(1);
}


.wrapper .admin-system {
    position: relative;
    width: calc(100%);
    height: 100%;
}

.wrapper .admin-system .dashboard {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    padding: 10px;
    background: #ededed;
    display: none;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 10px;
    overflow: scroll;
}

.wrapper .admin-system .dashboard.show {
    display: flex;
}

.wrapper .admin-system .dashboard .quick-dashboards {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 5px;
}

.wrapper .admin-system .dashboard .quick-dashboards .quick-dashboard {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 20px;
    gap: 10px;
    border-radius: 0;
    border-radius: 30px;
    background: white;
    overflow: hidden;
    min-width: 100px;
}

.wrapper .admin-system .dashboard .quick-dashboards .quick-dashboard::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 250%;
    content: '';
    transform: rotateZ(65deg) translateY(-30px) translateX(-10px);
    background: linear-gradient(to right, #d7d7d720, transparent);
}

.wrapper .admin-system .dashboard .quick-dashboards .quick-dashboard::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 250%;
    content: '';
    transform: rotateZ(-30deg) translateX(70px) translateY(-50px);
    background: linear-gradient(to right, #d7d7d720, transparent);
}

.wrapper .admin-system .dashboard .quick-dashboards #total-profit {
    background: black;
}

.wrapper .admin-system .dashboard .quick-dashboards #total-profit::after,
.wrapper .admin-system .dashboard .quick-dashboards #total-profit::before {
    background: linear-gradient(to right, #d7d7d730, transparent);

}

.wrapper .admin-system .dashboard .quick-dashboards .quick-dashboard h1 {
    width: 100%;
    color: #b7b7b7;
    font-weight: 200;
    position: relative;
}

.wrapper .admin-system .dashboard .quick-dashboards .quick-dashboard p {
    font-size: 30px;
    position: relative;
    font-weight: 900;
}

.wrapper .admin-system .dashboard .quick-dashboards #total-profit p {
    color: white;
}

.wrapper .admin-system .dashboard .quick-dashboards .quick-dashboard .added-bonnus {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 19px;
    right: 20px;
}

.wrapper .admin-system .dashboard .quick-dashboards .quick-dashboard .added-bonnus span {
    width: 20px;
    height: 14px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper .admin-system .dashboard .quick-dashboards .quick-dashboard .added-bonnus span img {
    position: relative;
    width: 100%;
    height: 100%;
}

.wrapper .admin-system .dashboard .quick-dashboards .quick-dashboard .added-bonnus .added-bonnus-p {
    position: relative;
    color: green;
    font-size: 10px;
    margin-top: 3px;
}

.wrapper .admin-system .dashboard .quick-dashboards .quick-dashboard button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 10px 20px;
    background: black;
    color: white;
    border: none;
    outline: none;
    border-radius: 30px;
}

.wrapper .admin-system .dashboard .charts {
    position: relative;
    width: 100%;
    height: 250px;
    background: transparent;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
}


.wrapper .admin-system .dashboard .charts .weekly-charts {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: end;
    border-radius: 30px;
    overflow: hidden;
    background: white;
    flex: 1;
}

.wrapper .admin-system .dashboard .charts .weekly-charts .options {
    position: absolute;
    top: 15px;
    right: 15px;
    height: 25px;
    display: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
}

.wrapper .admin-system .dashboard .charts .weekly-charts .options .option {
    position: relative;
    height: calc(100% - 3px);
    padding: 0 15px;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 300;
    background: transparent;
    border-radius: 15px;
    padding-top: 3px;
}

.wrapper .admin-system .dashboard .charts .weekly-charts .options .option.selected {
    background: #dcdcdc;
}


.wrapper .admin-system .dashboard .charts .weekly-charts canvas {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    padding: 15px;
}


.wrapper .admin-system .dashboard .charts #productCharts {
    flex: initial;
    height: 100%;
    aspect-ratio: 1 / 1;
}

.wrapper .admin-system .dashboard .charts #sallesMounth {
    width: 100%;
}

.wrapper .admin-system .products .product button {
    background: transparent;
    border-radius: 30px;
    width: 40px;
    height: 40px;
    position: relative;
    top: initial;
    left: initial;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
}

.wrapper .admin-system .products .product button svg {
    width: 40%;
    height: 40%;
}

.wrapper .admin-system .products .product button.in-stocke,
.wrapper .admin-system .products .product button.out-stocke {
    color: black;
}

.wrapper .admin-system .products .product button::before {
    display: none;
}

.wrapper .admin-system .products .product button.out-stocke::before {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    border: none;
    background: black;
    height: 1px;
    width: 40%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.wrapper .admin-system .products .product button img {
    width: 40%;
    height: 40%;
    position: relative;
    border-radius: 0;
}

.wrapper .admin-system .edit-products {
    position: absolute;
    z-index: 999;
    top: 60px;
    right: 60px;
    background: white;
    box-shadow: 0 10px 15px 1px rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 30px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.wrapper .admin-system .edit-products.show {
    display: flex;
}

.wrapper .admin-system .edit-products .inputs {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    gap: 5px;
}

.wrapper .admin-system .edit-products input {
    position: relative;
    width: 200px;
    padding: 0 20px;
    border-radius: 25px;
    height: 50px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    outline: none;
    text-align: right;
    font-family: serif;
}

.wrapper .admin-system .edit-products textarea {
    resize: none;
    position: relative;
    width: 200px;
    height: 100px;
    padding: 20px;
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    outline: none;
    text-align: right;
    font-weight: 400;
    font-size: 13px;
    font-family: serif;
}

.wrapper .admin-system .edit-products button {
    position: relative;
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: black;
    color: white;
    border: none;
    outline: none;
    font-weight: 400;
    margin-top: 15px;
}

.wrapper .admin-system .edit-products .color-selector {
    position: relative;
    flex: 1;
    height: 40px;
    border-radius: 20px;
    background: var(--bg);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}


.wrapper .admin-system .add-products {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 10px;
    background: #fff;
    display: none;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
    overflow: scroll;
    z-index: calc(9999*9999*9999);
    border-radius: 40px;
}

.wrapper .admin-system .add-products.show {
    display: flex;
}

.wrapper .admin-system .add-products .inputs {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 10px;
    background: rgba(0, 0, 0, 0);
}

.wrapper .admin-system .add-products .inputs input {
    flex: 1;
    position: relative;
    height: 40px;
    padding: 0 20px;
    border: none;
    outline: none;
    background: rgba(0, 0, 0, 0.05);
    font-weight: 400;
    border-radius: 30px;
}

.wrapper .admin-system .add-products .inputs textarea {
    flex: 1;
    position: relative;
    height: 200px;
    resize: none;
    padding: 20px;
    border: none;
    outline: none;
    background: rgba(0, 0, 0, 0.05);
    font-weight: 400;
    border-radius: 30px;
}

.wrapper .admin-system .add-products .inputs button {
    flex: 1;
    position: relative;
    height: 40px;
    padding: 0 20px;
    border: none;
    outline: none;
    background: rgba(0, 0, 0, 1);
    color: white;
    font-weight: 400;
    border-radius: 30px;
}

.wrapper .admin-system .add-products .inputs button:active {
    letter-spacing: 2px;
}

.wrapper .admin-system .users.show,
.wrapper .admin-system .products.show {
    display: flex;
}

.wrapper .admin-system .users .edit-info-panel,
.wrapper .admin-system .affiliates .add-affiliate {
    position: absolute;
    right: 15px;
    height: 30px;
    display: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #fff;
    width: calc(100% - 45px);
    padding: 5px;
    gap: 5px;
    border-radius: 25px;
    corner-shape: squircle;
    transition: 0s;
    box-shadow: 0 5px 10px #00000020;
}

.wrapper .admin-system .users .edit-info-panel div,
.wrapper .admin-system .affiliates .add-affiliate div {
    flex: 1;
    background: transparent;
    height: 30px;
    border-radius: 15px;
    corner-shape: squircle;
}

.wrapper .admin-system .users .edit-info-panel button,
.wrapper .admin-system .affiliates .add-affiliate button {
    max-height: 30px;
    min-height: 30px;
    max-width: 30px;
    min-width: 30px;
    position: relative;
    border: none;
    outline: none;
    background: #00000010;
    border-radius: 20px;
    corner-shape: squircle;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.wrapper .admin-system .users .edit-info-panel input,
.wrapper .admin-system .affiliates .add-affiliate input {
    height: 100%;
    width: calc(100% - 10px);
    padding: 0 5px;
    background: transparent;
    border: none;
    outline: none;
    position: relative;
    font-weight: 300;
}

.wrapper .admin-system .users .edit-info-panel button svg,
.wrapper .admin-system .affiliates .add-affiliate button svg {
    width: 47%;
    height: 47%;
}

.wrapper .admin-system .affiliates .about-affiliate {
    position: absolute;
    top: 200px;
    right: 100px;
    border-radius: 25px;
    background: white;
    z-index: 999999999999999999999999999;
    padding: 5px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    box-shadow: 0 7px 15px #00000020;
}

.wrapper .admin-system .affiliates .about-affiliate.show {
    display: flex;
}

.wrapper .admin-system .affiliates .about-affiliate .box {
    padding: 0 10px;
    position: relative;
    max-height: 30px;
    min-height: 30px;
    background: #00000010;
    font-size: 13px;
    font-weight: 300;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% - 20px);
    cursor: pointer;
}

.wrapper .admin-system .users .user button,
.wrapper .admin-system .affiliates .affiliates-pn .affiliate button {
    width: 40px;
    height: 40px;
    position: relative;
    border-radius: 30px;
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper .admin-system .affiliates .affiliates-pn .affiliate .state {
    cursor: pointer;
}

.wrapper .admin-system .affiliates .affiliates-pn .affiliate .state::before {
    position: absolute;
    top: 5px;
    left: 40%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    content: '';
    background: rgb(0, 225, 0);
}

.wrapper .admin-system .affiliates .affiliates-pn .affiliate .state.Active::before {
    display: flex;
}

.wrapper .admin-system .affiliates .affiliates-pn .affiliate .state.Inactive::before {
    display: none;
}

.wrapper .admin-system .users .user button svg {
    position: relative;
    width: 47%;
    height: 47%;
    object-fit: cover;
}

.wrapper .admin-system .users .user button::before {
    display: none;
}

.wrapper .admin-system {
    background: transparent;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
}

.wrapper .admin-system .container {
    position: relative;
    min-width: calc(100% - 20px);
    height: calc(100% - 20px);
    padding: 10px;
    background: #ededed;
    gap: 5px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    overflow: scroll;
    scale: .65;
    border-radius: 40px;
    transition: transform 1.3s ease, scale 1s ease;
}

.wrapper .admin-system .container.show {
    scale: 1;
    border-radius: 0;
    transition: transform 1s ease, scale .7s ease;

}

#affiliateschart,
#products,
#users,
#salles,
#affiliates {
    margin-bottom: 200px;
}

.wrapper .admin-system .container .tool-bar {
    position: sticky;
    top: 5px;
    width: calc(100% - 40px);
    padding: 0 20px;
    z-index: 999999999999999999999999999999999999;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-height: 35px;
    min-height: 35px;
}

.wrapper .admin-system .container .tool-bar .container-title {
    position: relative;
    height: 100%;
    font-weight: 300;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper .admin-system .container .settings-input {
    position: absolute;
    top: 0;
    left: 0;
    max-height: 35px;
    min-height: 35px;
    background: white;
    border-radius: 20px;
    z-index: 9999999999999999;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.wrapper .admin-system .container .settings-input input {
    position: relative;
    height: 100%;
    padding: 0 15px;
    border: none;
    outline: none;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 200;
}

.wrapper .admin-system .salles .sales,
.wrapper .admin-system .users .users-pn,
.wrapper .admin-system .affiliates .affiliates-pn,
.wrapper .admin-system .products .products-pn {
    background: transparent;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 3px;
}

.wrapper .admin-system .salles .salle,
.wrapper .admin-system .users .users-pn .user,
.wrapper .admin-system .affiliates .affiliates-pn .affiliate,
.wrapper .admin-system .products .products-pn .product {
    background: transparent;
    border-radius: 30px;
    height: 30px;
    padding: 5px;
    width: calc(100% - 10px);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: white;
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani .3s ease calc(var(--i) * 0.07s) forwards;
}


.wrapper .admin-system .salles .salle:nth-child(2n),
.wrapper .admin-system .users .users-pn .user:nth-child(2n),
.wrapper .admin-system .affiliates .affiliates-pn .affiliate:nth-child(2n),
.wrapper .admin-system .products .products-pn .product:nth-child(2n) {
    background: #ffffff50;

}

.wrapper .admin-system .users .users-pn .user img,
.wrapper .admin-system .products .products-pn .product img,
.wrapper .admin-system .affiliates .affiliates-pn .affiliate img {
    height: 30px;
    width: 30px;
    position: relative;
    object-fit: cover;
    border-radius: 15px;
    corner-shape: initial;
}

.wrapper .admin-system .products .products-pn .product img[src="Products/.png"],
.wrapper .admin-system .products .products-pn .product img[src=""] {
    opacity: 0;
}


.wrapper .admin-system .products .products-pn .product button,
.wrapper .admin-system .salles .salle button,
.wrapper .admin-system .affiliates .affiliates-pn .affiliate button,
.wrapper .admin-system .users .users-pn .user button {
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
}

.wrapper .admin-system .users .users-pn .user button svg {
    position: relative;
    width: 40%;
    height: 40%;
}

.wrapper .admin-system .affiliates .affiliates-pn .affiliate button.delete svg,
.wrapper .admin-system .users .users-pn .user button.delete-user svg {
    position: relative;
    width: 40%;
    height: 40%;
    color: rgb(255, 70, 70);
}

.wrapper .admin-system .affiliates .affiliates-pn .affiliate button.delete svg {
    width: 35%;
    height: 35%;
}

.wrapper .admin-system .container .products-pn.blured,
.wrapper .admin-system .container .users-pn.blured,
.wrapper .admin-system .container .affiliates-pn.blured,
.wrapper .admin-system .container .tool-bar.blured {
    filter: blur(5px);
}

.wrapper .admin-system .container .add-product-button,
.wrapper .admin-system .container .add-affiliate-button,
.wrapper .admin-system .container .reload-affiliates {
    position: relative;
    background: transparent;
    width: 33px;
    height: 33px;
    border-radius: 50px;
    z-index: 99999999999999999999999999999999999;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.wrapper .admin-system .container .filters-class {
    position: absolute;
    top: 0;
    right: 0px;
    height: 36px;
    z-index: 99999999999999999999999999999999999;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    gap: 3px;
}

.wrapper .admin-system .container .filters-class .filter-box {
    position: relative;
    width: 33px;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

.wrapper .admin-system .container .filters-class .filter-box:hover,
.wrapper .admin-system .container .filters-class .filter-box:hover span {
    background: white;
}

.wrapper .admin-system .container .filters-class .filter-box svg {
    width: 60%;
    height: 60%;
    position: relative;
}

.wrapper .admin-system .container .filters-class .filter-box span {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ededed;
    border-radius: 50%;
    bottom: 5px;
    right: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper .admin-system .container .filters-class .filter-box span svg {
    width: 90%;
    height: 90%;
    position: relative;
}

.wrapper .admin-system .container .refreach-button {
    position: relative;
    background: transparent;
    width: 33px;
    height: 33px;
    border-radius: 50px;
    z-index: 99999999999999999999999999999999999;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.wrapper .admin-system .container .add-product-button:hover,
.wrapper .admin-system .container .add-affiliate-button:hover,
.wrapper .admin-system .container .reload-affiliates:hover,
.wrapper .admin-system .container .refreach-button:hover {
    background: white;
}

.wrapper .admin-system .container .refreach-button svg {
    width: 50%;
    height: 50%;
}

.wrapper .admin-system .container .reload-affiliates svg {
    color: black;
    width: 53%;
    height: 53%;
}

.wrapper .admin-system .container .add-product-button span,
.wrapper .admin-system .container .add-affiliate-button span {
    width: 60%;
    height: 60%;
    position: relative;
    transform: rotate(45deg);
}

.wrapper .admin-system .container .add-product-button.show span,
.wrapper .admin-system .container .add-affiliate-button.show span {
    transform: rotate(0);
}

.wrapper .admin-system .container .add-product-button span svg,
.wrapper .admin-system .container .add-affiliate-button span svg {
    color: black;
}

.wrapper .admin-system .products .product button.out-stocke::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 40%;
    height: 1px;
    background: black;
    content: '';
}

.wrapper .admin-system .products .product button.in-stocke::before {
    display: none;
}

.wrapper .admin-system .users .users-pn .user button svg,
.wrapper .admin-system .affiliates .affiliates-pn .affiliate button svg,
.wrapper .admin-system .salles .salle button svg,
.wrapper .admin-system .products .products-pn .product button svg {
    height: 40%;
    width: 40%;
    border-radius: 0;
}

.wrapper .admin-system .salles .salle:hover,
.wrapper .admin-system .affiliates .affiliates-pn .affiliate,
.wrapper .admin-system .users .users-pn .user:hover,
.wrapper .admin-system .salles .salle.checked {
    background: white;
}

.wrapper .admin-system .salles .salle div,
.wrapper .admin-system .users .users-pn .user div,
.wrapper .admin-system .affiliates .affiliates-pn .affiliate div,
.wrapper .admin-system .products .products-pn .product div {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    color: black;
    font-size: 10px;
    font-weight: 200;
    flex: 1;
    flex-wrap: nowrap;
    text-wrap: nowrap;
    padding-top: 4px;
    background: transparent;
    padding-left: 10px;
    height: 100%;
}

.wrapper .admin-system .affiliates .affiliates-pn .affiliate div {
    overflow: hidden;
}

.wrapper .admin-system .users .users-pn .user.title,
.wrapper .admin-system .affiliates .affiliates-pn .affiliate.title,
.wrapper .admin-system #salles .salle.title,
.wrapper .admin-system .products .products-pn .product.title {
    border: none;
    background: #ededed;
    position: sticky;
    top: 40px;
    z-index: 9999999;
    border-radius: 0;
    border: 2px solid #ededed;
    box-shadow: 0 -45px 0 5px #ededed;
}

.wrapper .admin-system .products .products-pn .product div.bonnus {
    color: green;
}

.wrapper .admin-system .users .users-pn .user div.score {
    flex: initial;
    width: 100px;
}

.wrapper .admin-system .users .users-pn .user div.username {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wrapper .admin-system .users .users-pn .user div.username:hover {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

.wrapper .admin-system .salles .salle.title:hover {
    background: transparent;
}

.wrapper .admin-system .salles .salle div.check {
    flex: initial;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 0;
}

.wrapper .admin-system .salles .salle div.check span {
    border: 1.5px solid rgb(0, 115, 255);
    border-radius: 5px;
    width: 10px;
    height: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    position: relative;
}

.wrapper .admin-system .salles .salle.checked div span {
    background: rgb(0, 115, 255);
}

.wrapper .admin-system .salles .salle div span svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    color: white;
    opacity: 0;
}

.wrapper .admin-system .salles .salle.checked div.check span svg {
    opacity: 1;
}

.wrapper .admin-system .salles .salle div.sku-class {
    overflow: none;
}

.wrapper .admin-system .salles .salle div.sku-class::before {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-75%);
    height: 30px;
    padding: 4px;
    padding-left: 15px;
    padding-right: 15px;
    background: white;
    border-radius: 25px;
    corner-shape: squircle;
    display: none;
    justify-content: center;
    align-items: center;
    content: attr(sku-data);
    box-shadow: 0 5px 10px #00000020;
    z-index: 9999999999999999;
}

.wrapper .admin-system .salles .salle div.sku-class:hover::before {
    display: flex;
}

.wrapper .admin-system .salles .salle.title div.sku-class::before,
.wrapper .admin-system .salles .salle.title div.sku-class:hover::before {
    display: none;
}

.wrapper .admin-system .affiliates .affiliates-pn .affiliate.title div.id,
.wrapper .admin-system .affiliates .affiliates-pn .affiliate div.id,
.wrapper .admin-system .salles .salle div.id,
.wrapper .admin-system .salles .salle.title div.id {
    flex: initial;
    background: transparent;
    padding: 0;
    padding-top: 0;
    padding-left: 20px;
    width: 100px;
    align-items: center;
}


.wrapper .admin-system .salles .salle.title div {
    color: black;
}


.wrapper .admin-system .salles .salle.title .state {
    min-width: 90px;
    min-width: 90px;
}

.wrapper .admin-system .salles .salle .state-switcher.Confirmed {
    color: rgb(0, 94, 255);
}

.wrapper .admin-system .salles .salle .state-switcher.New {
    color: black;
}

.wrapper .admin-system .salles .salle .state-switcher.Deliverd {
    color: rgb(0, 200, 0);
}

.wrapper .admin-system .salles .salle .state-switcher.Canceled {
    color: red;
}

.wrapper .admin-system .salles .salle .state-switcher.Delaied {
    color: orange;
}

.wrapper .admin-system .salles .salle .state-switcher.Returned {
    color: red;
}


.wrapper .admin-system .salles .salle img {
    width: 40px;
    height: 40px;
    position: relative;
    border-radius: 30px;
}

.wrapper .admin-system .salles .salle button {
    width: 40px;
    height: 40px;
    position: relative;
    border-radius: 30px;
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper .admin-system .salles .salle button img {
    position: relative;
    width: 35%;
    height: 35%;
    object-fit: cover;
}

.wrapper .admin-system .salles .state-switcher-panel {
    position: absolute;
    top: 70px;
    right: 150px;
    padding: 5px;
    display: none;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background: white;
    border-radius: 20px;
    gap: 3px;
    z-index: 999999999999999999999999;
    box-shadow: 0 5px 10px #00000020;
}

.wrapper .admin-system .salles .state-switcher-panel.show {
    display: flex;
}

.wrapper .admin-system .salles .state-switcher-panel .state-options {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    padding: 0 10px;
    min-height: 30px;
    max-height: 30px;
    width: calc(100% - 20px);
    transform: translateY(-50%) scale(1.1);
    opacity: 0;
    animation: logo_ani .5s ease calc(var(--i) * 0.1s) forwards;
}

.wrapper .admin-system .salles .state-switcher-panel .state-options:hover {
    background: #efefef;
    cursor: pointer;
}

.wrapper .admin-system .salles .state-switcher-panel .state-options p {
    display: flex;
    font-size: 13px;
    font-weight: 300;
    text-align: start;
    background: transparent;
    width: 100%;
}



.loading-data-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: white;
    box-shadow: 0 7px 15px #00000030;
    z-index: 99999999999999999999999;
    display: none;
    justify-content: center;
    align-items: center;
}

.loading-data-popup.show {
    display: flex;
}

.loading-data-popup span {
    position: relative;
    animation: loadingpageani .7s ease infinite;
}

@keyframes loadingpageani {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

footer {
    width: 100%;
    background: white;
    margin-top: 20px;
    padding-bottom: 20px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    corner-shape: squircle;
}

footer .footer-class {
    width: calc(100% - 30px);
    padding: 10px;
    background: rgb(213, 213, 213);
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    corner-shape: squircle;
    position: relative;
}


footer .footer-class .footer-logo {
    height: 70px;
    aspect-ratio: 1920 / 1080;
    background-image: url('Icons/extend-tr.png');
    background-size: cover;
    background-position: center;
}

footer .footer-class .footer-desc {
    display: flex;
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    padding: 15px;
}

footer .footer-class h1 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .footer-class .pages-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 7px;
    width: 100%;
}

footer .footer-class .pages-links a {
    font-size: 17px;
    font-weight: 300;
    background: var(--bg);
    padding: 10px 20px;
    border-radius: 15px;
    text-decoration: none;
    color: black;
}

@media (min-width: 768px) {

    @keyframes container {
        0% {
            transform: translateY(50%) scale(1.1);
            opacity: 0;
        }

        30% {
            transform: translateY(-5%) scale(1);
            opacity: 0.7;
        }

        100% {
            transform: translateY(0) scale(1);
            opacity: 1;
        }
    }

    .opener {
        display: none;
        flex-direction: row;
        justify-content: start;
        align-items: start;
        gap: 20px;
        overflow: hidden;
    }

    .opener .background-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9999;
        display: flex;
        transition: .3s;
    }

    .opener .background-image img {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .opener .image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .opener .image img {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }

    .opener .image::before {
        z-index: 1;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        content: '';
        background: linear-gradient(to bottom, #00000000, white);
    }

    .opener .container {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background: transparent;
        animation: none;
        z-index: 9;
    }

    .closeing {
        position: relative;
        width: 100%;
        background: #f2f2f2;
        height: 100%;
        z-index: -1;
    }

    .opener .container .product-profile {
        position: relative;
        height: calc(100% - 200px);
        aspect-ratio: var(--aspect-ratio);
        z-index: 2222;
    }

    .opener .container .product-profile .corners {
        position: absolute;
        width: 30px;
        height: 30px;
        animation: zooming 1s ease infinite;
        display: none;
    }

    @keyframes zooming {
        0% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    .opener .container .product-profile .corners:nth-child(1) {
        top: -5px;
        left: -5px;
        border-top: 2px solid black;
        border-left: 2px solid black;
    }

    .opener .container .product-profile .corners:nth-child(2) {
        bottom: -5px;
        left: -5px;
        border-bottom: 2px solid black;
        border-left: 2px solid black;
    }

    .opener .container .product-profile .corners:nth-child(3) {
        top: -5px;
        right: -5px;
        border-top: 2px solid black;
        border-right: 2px solid black;
    }

    .opener .container .product-profile .corners:nth-child(4) {
        bottom: -5px;
        right: -5px;
        border-bottom: 2px solid black;
        border-right: 2px solid black;
    }

    .opener .container .product-profile img {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .opener .container .buttons {
        position: relative;
        height: 60px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
        direction: rtl;
        margin-top: 30px;
    }

    .opener .container .buttons .add-to-cart-product-page {
        position: relative;
        min-width: initial;
        max-width: initial;
        width: initial;
        height: 60px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        direction: rtl;
        padding-left: 15px;
        padding-right: 20px;
        right: initial;
        box-shadow: none;
        transform: translateY(50%) scale(1.1);
        opacity: 0;
        animation: container 1s ease calc(var(--i) * 0.2s + .2s) forwards;
    }

    .opener .container .buttons .add-to-cart-product-page::before {
        position: absolute;
        bottom: 3px;
        left: 50%;
        transform: translateX(-50%);
        height: 50%;
        width: 80%;
        background: transparent;
        box-shadow: 0 7px 20px black;
        content: '';
        border-radius: 20px;
        z-index: -111;
    }

    .opener .container .buttons .add-to-cart-product-page::after {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: linear-gradient(145deg, #272727, #000, #000);
        content: '';
        border-radius: 25px;
        z-index: -100;
        transition: .3s ease;
        corner-shape: squircle;
    }

    .opener .container .buttons .more-about {
        background: transparent;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        transform: translateY(50%) scale(1.1);
        opacity: 0;
        animation: container 1s ease calc(var(--i) * 0.2s + .2s) forwards;
    }

    .opener .container .add-to-cart-product-page svg {
        position: relative;
        height: 70%;
        aspect-ratio: 1 / 1;
    }

    .opener .container .add-to-cart-product-page .product-page-price {
        position: relative;
        font-size: 20px;
        padding: 0 20px;
    }

    .opener .container .name-price {
        position: relative;
        width: 100%;
        text-align: center;
        margin-top: 70px;
        transform: translateY(50%) scale(1.1);
        opacity: 0;
        animation: container 1s ease calc(var(--i) * 0.2s + .2s) forwards;
    }

    .opener .container .name-price .product-page-name {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 20px;
        text-align: center;
    }


    .opener .container .product-page-head,
    .opener .container .product-page-desc {
        position: relative;
        width: 100%;
        text-align: center;
        font-size: 17px;
        font-weight: 400;
        transform: translateY(50%) scale(1.1);
        opacity: 0;
        animation: container 1s ease calc(var(--i) * 0.2s + .2s) forwards;
    }


    .store-page .product-grids {
        margin-top: 10px;

    }

    .store-page {
        transform: translateY(0) scale(1);
        filter: blur(0);
        transition: transform .8s ease, filter 1s ease;
    }

    .store-page.blur {
        transform: translateY(3px) scale(1.1);
        filter: blur(10px);
        pointer-events: none;
    }

    .store-page .product-grids .slider {
        display: block;
        column-count: 3;
        column-gap: 5px;
        width: 100%;
    }

    .store-page .product-grids .slider .product {
        width: calc(100% - 14px);
        margin-bottom: 7px;
        break-inside: avoid;
    }


    .phone {
        width: 100%;
        height: 100%;
        background: white;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .phone .spiler {
        position: relative;
        width: 50%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        gap: 5px;
        padding-top: 5px;
    }

    .phone .spiler .boxe {
        position: relative;
        width: calc(100% - 5px);
        background: rgb(248, 161, 0);
        border-radius: 50px;
    }

    .window {
        position: fixed;
        top: 0;
        left: 0;
        transform-origin: top left;
        transform: translateX(0) translateY(0) scaleX(0) scaleY(0);
        width: 100%;
        height: 100%;
        background: blue;
        opacity: 0;
    }



    .checkout-page .card-data {
        position: absolute;
        top: 90px;
        width: calc(100% - 20px);
        background: transparent;
        height: auto;
        max-height: calc(100% - 440px);
        display: grid;
        gap: 7px;
        grid-template-columns: 1fr 1fr 1fr;
        overflow: scroll;
    }

    .checkout-page .card-data .product-cart {
        width: calc(100% - 10px);
    }


    .checkout-page .total-price {
        width: 400px;
        border-radius: 50px;
        padding-bottom: 10px;
        left: calc(50% - 200px);
        bottom: 15px;
        display: flex;
    }

    .user-page .user-panel {
        position: fixed;
        top: 90px;
        left: 20px;
        width: 400px;


    }

    .user-page .user-panel .banner {
        position: relative;
        width: 100%;
        height: 200px;
    }

    /*
    @keyframes gradientFlow {
        background:
            radial-gradient(circle at 15% 50%, rgba(73, 255, 203, 0.4), transparent 50%),
            radial-gradient(circle at 85% 30%, rgba(255, 107, 107, 0.4), transparent 50%),
            radial-gradient(circle at 50% 80%, rgba(85, 98, 255, 0.4), transparent 50%),
            linear-gradient(135deg, #1a1b2f 0%, #2b214f 100%);
        background-size: 150% 150%;
        animation: gradientFlow 12s ease infinite;

        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }
        */
    .login-form,
    .new-login-panel,
    .edit-panel,
    .loader,
    .add-team-panel {
        width: 400px;
        left: calc(50% - 200px);
    }


    .shopping-cart {
        position: fixed;
        top: 70px;
        left: 20px;
        width: calc(100% - 40px);
        height: calc(100% - 150px);
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
        padding-top: 100px;
        padding-bottom: 50px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        overflow: scroll;
        background: #fff;
        gap: 7px;
        z-index: 99;
        transition: box-shadow .5s, transform 1.5s, scale 3s, opacity 2s;
        transform: translateY(110%);
        scale: 1.7;
        opacity: 1;
    }

    .shopping-cart::before {
        position: absolute;
        top: 10px;
        height: 5px;
        width: 50px;
        border-radius: 5px;
        background: gray;
        content: "";
        display: none;
        transform: translateY(-15px) scale(1.1);
        opacity: 0;
        animation: panels-tag 1s ease 1s forwards;
    }

    .shopping-cart.show {
        transform: translateY(0);
        scale: 1;
        opacity: 1;
        transition: box-shadow 1s .3s, transform .85s, scale 1.1s, opacity .3s;
    }

    .shopping-cart .characters .slide {
        display: block;
        column-count: 3;
        column-gap: 5px;
        width: 100%;

    }

    .shopping-cart .characters .slide .character {
        width: calc(100% - 14px);
        margin-bottom: 7px;
        break-inside: avoid;
        background: white;
    }

    .shopping-cart .logo .active-character .character {
        border: 5px solid white;
    }

    .new-login-panel {
        height: calc(90% - 30px);

    }

    .user-page-cover.blur {
        filter: blur(3px) saturate(0);
        transform: translateY(15px) scale(.99);
        opacity: .5;
        pointer-events: none;
    }

    svg {
        cursor: pointer;
    }

    .product-page .benefits {
        position: relative;
        width: calc(100% - 40px);
        height: 200px;
        display: flex;
        flex-direction: row;
        gap: 7px;
        margin-top: 15px;
    }

    .product-page .benefits .benefit {
        position: relative;
        width: 100%;
        height: 100%;
        background: white;
        border-radius: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
        transform: translateY(-50%) scale(1.1);
        opacity: 0;
        animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
    }

    .product-page .main-product-image {
        position: relative;
        width: calc(30% - 40px);
        background: linear-gradient(to bottom, #f3f3f3, white);
        aspect-ratio: 1 / 1;
        border-radius: 40px;
        margin-bottom: 70px;
        margin-top: 20px;
        display: flex;
        justify-content: center;
        align-items: end;
        transform: translateY(-50%) scale(1.1);
        opacity: 0;
        animation: logo_ani 1s ease calc(var(--i) * 0.2s) forwards;
    }

}