/* intro */
        @keyframes pupup {
            0% {
                transform: scale(1)
            }

            18% {
                transform: scale(1)
            }

            80% {
                transform: scale(1)
            }

            100% {
                transform: scale(0)
            }
        }

        @keyframes pupup_logo {
            0% {
                transform: scale(1)rotate(0deg)
            }

            40% {
                transform: scale(1)rotate(0deg)
            }

            80% {
                transform: scale(1)rotate(0deg)
            }

            100% {
                transform: scale(0)rotate(0deg)
            }
        }

        body.index:before {
            content: "";
            width: 100%;
            height: 100%;
            background: #601bad;
            position: fixed;
            z-index: 99999;
            transform: scale(0);
            animation-name: pupup;

            animation-duration: 2.5s;
            background-size: 95px;
            background-repeat: no-repeat;
            background-position: center 3rem
        }

        body.index:after {
            content: "";
            width: 100%;
            height: 100%;
            top: 0;
            position: fixed;
            z-index: 999999;
            background: url("https://cdn.files.salla.network/homepage/998419903/0bab004c-5b15-4070-98e1-3b74f37ba744.webp");
            left: 0;
            background-repeat: no-repeat;
            background-position: center;
            background-size: 30%;
            animation-name: pupup_logo;
            transform: scale(0);
            animation-duration: 2.5s;

        }

        @media (min-width: 480px) {
            body.index:after {
                background-size: 25%;
            }
        }







        .top-navbar {
            display: none;
        }

        #mainnav,
        #mainnav i:before,
        #mainnav b {
            color: #ffffff !important;
        }

        .top-navbar,
        #mainnav,
        .inner,
        .sub-menu {
            background: #651aad !important;
        }

.s-block {
            margin-top: 0 !important;
        }

.store-footer{
    margin-top: 0 !important;
    background-color: rgb(75 19 129) !important;
    color: #fff;
}
.store-footer__inner{
    background: rgb(101 26 173)!important;
    color: #fff !important;
}