:root {
    --color-0: #F052B9;
    --color-0-rgb: 240, 82, 185;
    --color-1: #DA43CC;
    --color-1-rgb: 218, 67, 204;
    --color-2: #9E2EBE;
    --color-2-rgb: 158, 46, 190;
    --color-3: #5533BF;
    --color-3-rgb: 85, 51, 191;
    --color-4: #4E52D7;
    --color-4-rgb: 78, 82, 215;
    --color-5: #060606;
    --color-5-rgb: 6, 6, 6;
    --color-6: #FFCE53;
    --color-7: #5A5554
}

.pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: #FFF;
    --bs-pagination-bg: #FFFFFF10;
    --bs-pagination-border-width: 1px;
    --bs-pagination-border-color: #FFFFFF10;
    --bs-pagination-border-radius: 0.375rem;
    --bs-pagination-hover-color: #000;
    --bs-pagination-hover-bg: var(--color-6);
    --bs-pagination-hover-border-color: var(--color-6);
    --bs-pagination-focus-color: var(--color-6);
    --bs-pagination-focus-bg: #FFFFFF10;
    --bs-pagination-focus-box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    --bs-pagination-active-color: #000;
    --bs-pagination-active-bg: var(--color-6);
    --bs-pagination-active-border-color: var(--color-6);
    --bs-pagination-disabled-color: #fff;
    --bs-pagination-disabled-bg: #000;
    --bs-pagination-disabled-border-color: #000;
    display: flex;
    padding-left: 0;
    list-style: none;
}

body {
    background-color: var(--color-5);
    color: #FFF
}

input.form-control,
input.form-control:focus {
    border-radius: 30px;
    border: 1px solid #fff;
    background-color: transparent;
    color: #FFF;
    text-align: center;
}

textarea.form-control,
textarea.form-control:focus {
    border-radius: 30px;
    border: 1px solid #fff;
    background-color: transparent;
    color: #FFF;
}

input.subscribe-control,
input.subscribe-control:focus {
    border-radius: 30px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border: 1px solid #000;
    background-color: transparent;
    color: #000;
}

.alert-danger {
    --bs-alert-color: #FFF;
    --bs-alert-bg: #FFFFFF10;
    --bs-alert-border-color: #FFFFFF10;
}

select.form-select {
    border-radius: 30px;
    border: 1px solid #fff;
    background-color: transparent;
    color: #FFF;
    padding: .5rem 1rem;
    text-align: center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

textarea.form-control:focus,
input.form-control:focus,
select.form-select:focus {
    border-color: none !important;
    box-shadow: none !important;
    outline: 0 none !important;
    border: 1px solid #FFF !important
}

input.subscribe-control:focus {
    border-color: none !important;
    box-shadow: none !important;
    outline: 0 none !important;
    border: 1px solid #000 !important
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 300,
        'GRAD' 0,
        'opsz' 48
}

.extra-small-text {
    font-size: 0.7rem;
}

.small-text {
    font-size: 0.9rem
}

.cursor {
    cursor: pointer;
}



header {
    position: sticky;
    top: 0;
    z-index: 100000000;
}

header .icons a {
    color: #FFF;
    text-decoration: none;
}

header .icons a:hover {
    color: #FFF;
    text-decoration: none;
}

header .top-header {
    background: var(--color-5);
    color: #FFF;
}



header .bottom-header .logo {
    background-color: var(--color-6);
}

header .bottom-header .menu-bg {
    background-color: var(--color-5);
    color: #FFF
}

header .bottom-header .logo img {
    height: calc((2* 1.50rem + 0.9rem) * 0.5)
}

header .bottom-header .logo a {
    color: #000;
    text-decoration: none
}


header .menu>div {
    padding: 1.5rem 0.75rem;
    white-space: nowrap;
}

header .menu>div .extend {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    left: 200px;
    margin-top: 5.75rem;
    box-shadow: 0 0 10px #00000020;
    background: var(--color-5);
    width: calc(100% - 200px);
    transition: all 0.3s;
}

header .menu>div:hover .extend {
    visibility: visible;
    opacity: 1;
    margin-top: 1.5rem;
}

header .menu a {
    color: #FFF;
    text-decoration: none;
}

header .menu a:hover {
    color: #FFF;
    text-decoration: none
}

header .menu>div .extend .menu-cont {
    flex-wrap: wrap;
    display: flex
}

header .menu>div .extend .menu-item {

}

header .menu>div .extend .menu-item a {
    display: block;
}

header .menu>div .extend .menu-item a:hover {
    text-decoration: underline;
}

header .menu>div .extend .ads a {
    margin: 1.75rem;
    display: block
}

header .icons>div {
    padding-left: 1rem;
    white-space: nowrap;
}

.animated-line {
    height: 2px;
    background: var(--color-6);
    margin: auto;
    width: 100px;
    animation: infinite 3s animated-line;
}

@keyframes animated-line {
    0% {
        width: 100px;
    }

    50% {
        width: 50px;
    }

    100% {
        width: 100px;
    }
}

.button {
    background: var(--color-7);
    color: #FFF;
    border-radius: 30px;
    display: inline-flex;
    cursor: pointer;
    border: 1px solid #FFF
}

.button:hover {
    background: var(--color-6);
    color: #000;
    border: 1px solid var(--color-6)
}

/* Slideshow */

.homepage .slideshow-content h1 {
    font-size: calc(2.375rem + 1.5vw);
    transform: translateY(-3rem);
    opacity: 0;

}

.homepage .slideshow-content h1:first-of-type {
    animation: forwards 1.5s slideshow-content;
    animation-delay: 1000ms;
}

.homepage .slideshow-content h1:last-of-type {
    animation: forwards 1.5s slideshow-content;
    animation-delay: 500ms;
}

@keyframes slideshow-content {
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.homepage .slideshow .btn2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 48px;
    width: 48px;
    border-radius: 30px;
    background-color: #FFF;
    box-shadow: 0 0 10px #00000020;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 1002;
}


.homepage .slideshow .btn2.prev {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg width="12" height="12" viewBox="0 0 34 34" xmlns="http://www.w3.org/2000/svg"><title>Shape</title><path d="M33.6 14.7H8.043L19.782 2.961 16.8 0 0 16.8l16.8 16.8 2.961-2.961L8.043 18.9H33.6z" fill="%23000" fill-rule="evenodd"/></svg>');
    left: 1.5rem;

}

.homepage .slideshow .btn2.next {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg width="12" height="12" viewBox="0 0 34 34" xmlns="http://www.w3.org/2000/svg"><title>Shape</title><path d="M25.557 14.7L13.818 2.961 16.8 0l16.8 16.8-16.8 16.8-2.961-2.961L25.557 18.9H0v-4.2z" fill="%23000" fill-rule="evenodd"/></svg>');
    right: 1.5rem;
}


/* End Slideshow */

/* Categories slideshow */
.menu-item .gallery-cont .loading {
    background-image: url(/assets/frontend/loading.svg) !important;
    background-size: 10% !important;
    background-position: center center;
    background-repeat: no-repeat;
}

.menu-item .gallery-cont {
    position: relative;
}

.menu-item .gallery-cont .btn2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 48px;
    width: 48px;
    border-radius: 30px;
    background-color: #FFF;
    box-shadow: 0 0 10px #00000020;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 1002;
}


.menu-item .gallery-cont .btn2.prev {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg width="12" height="12" viewBox="0 0 34 34" xmlns="http://www.w3.org/2000/svg"><title>Shape</title><path d="M33.6 14.7H8.043L19.782 2.961 16.8 0 0 16.8l16.8 16.8 2.961-2.961L8.043 18.9H33.6z" fill="%23000" fill-rule="evenodd"/></svg>');
    left: 1.5rem;

}

.menu-item .gallery-cont .btn2.next {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg width="12" height="12" viewBox="0 0 34 34" xmlns="http://www.w3.org/2000/svg"><title>Shape</title><path d="M25.557 14.7L13.818 2.961 16.8 0l16.8 16.8-16.8 16.8-2.961-2.961L25.557 18.9H0v-4.2z" fill="%23000" fill-rule="evenodd"/></svg>');
    right: 1.5rem;
}

.menu-item .gallery {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
}

.menu-item .gallery::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}


.menu-item .gallery>a {
    display: flex;
    position: relative;
    z-index: 1000;
    scroll-snap-align: start;
    white-space: nowrap;
    margin-inline-end: 0.75rem;
    scroll-margin-inline-end: 0.75rem;
    background-size: 100%;
    width: 100%;
    height: calc(25vw * 414 / 280);
    background-position: center center;
    background-repeat: no-repeat;
    transition: background-size 1s;
    overflow: hidden;
}

.menu-item .gallery>a .button {
    background-color: var(--color-7);
    color: #FFF;
    border-radius: 30px;
    position: absolute;
    bottom: -100px;
    transition: bottom 1s;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
}

.menu-item .gallery>a .button:hover {
    background-color: var(--color-6);
    border: 1px solid var(--color-6);
    color: #000
}

.menu-item .gallery>a .title {
    color: #FFF;
    position: absolute;
    bottom: -100px;
    transition: bottom 1s;
    left: 50%;
    z-index: 1;
    font-weight: 700;
    transform: translate(-50%, -50%);
}


.menu-item .gallery>a:hover {
    background-size: 110%;
}

.menu-item .gallery>a:hover .button {
    bottom: 1rem
}

.menu-item .gallery>a:hover .title {
    bottom: 4.5rem
}

.menu-item .gallery>a:last-of-type {
    margin-inline-end: 0rem
}

@media only screen and (max-width:575px) {
    .menu-item .btn2 {
        display: none !important;
    }

    .menu-item .gallery>a {
        min-width: 80vw;
        max-width: 80vw;
        height: calc(80vw * 414 / 280);
    }
}

@media only screen and (min-width:576px) and (max-width:768px) {
    .menu-item .btn2 {
        display: none !important;
    }

    .menu-item .gallery>a {
        min-width: 45vw !important;
        max-width: 45vw !important;
        height: calc(45vw * 414 / 280);
    }
}

@media only screen and (min-width:769px) and (max-width:992px) {
    .menu-item .btn2 {
        display: none !important;
    }

    .menu-item .gallery>a {
        min-width: 25vw !important;
        max-width: 25vw !important;
        height: calc(25vw * 414 / 280);
    }
}

@media only screen and (min-width:993px) and (max-width:1199px) {
    .menu-item .gallery>a {
        min-width: 15vw !important;
        max-width: 15vw !important;
        height: calc(15vw * 414 / 280);
    }

}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .menu-item .gallery>a {
        min-width: 15vw !important;
        max-width: 15vw !important;
        height: calc(15vw * 414 / 280);
    }
}

@media only screen and (min-width:1400px) {

    .menu-item .gallery>a {
        min-width: 15vw !important;
        max-width: 15vw !important;
        height: calc(15vw * 414 / 280);

    }
}

/* End categories slideshow */


/* Categories slideshow */
.homepage .gallery-cont .loading {
    background-image: url(/assets/frontend/loading.svg) !important;
    background-size: 10% !important;
    background-position: center center;
    background-repeat: no-repeat;
}

.homepage .gallery-cont {
    position: relative;
}

.homepage .gallery-cont .btn2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 48px;
    width: 48px;
    border-radius: 30px;
    background-color: #FFF;
    box-shadow: 0 0 10px #00000020;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 1002;
}


.homepage .gallery-cont .btn2.prev {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg width="12" height="12" viewBox="0 0 34 34" xmlns="http://www.w3.org/2000/svg"><title>Shape</title><path d="M33.6 14.7H8.043L19.782 2.961 16.8 0 0 16.8l16.8 16.8 2.961-2.961L8.043 18.9H33.6z" fill="%23000" fill-rule="evenodd"/></svg>');
    left: 1.5rem;

}

.homepage .gallery-cont .btn2.next {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg width="12" height="12" viewBox="0 0 34 34" xmlns="http://www.w3.org/2000/svg"><title>Shape</title><path d="M25.557 14.7L13.818 2.961 16.8 0l16.8 16.8-16.8 16.8-2.961-2.961L25.557 18.9H0v-4.2z" fill="%23000" fill-rule="evenodd"/></svg>');
    right: 1.5rem;
}

.homepage .gallery {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
}

.homepage .gallery::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}


.homepage .gallery>a {
    display: flex;
    position: relative;
    z-index: 1000;
    scroll-snap-align: start;
    white-space: nowrap;
    margin-inline-start: 0.75rem;
    scroll-margin-inline-start: 0.75rem;
    background-size: 100%;
    width: 100%;
    height: calc(25vw * 414 / 280);
    background-position: center center;
    background-repeat: no-repeat;
    transition: background-size 1s;
    overflow: hidden;
}

.homepage .gallery>a .button {
    background-color: var(--color-7);
    color: #FFF;
    border-radius: 30px;
    position: absolute;
    bottom: -100px;
    transition: bottom 1s;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
}

.homepage .gallery>a .button:hover {
    background-color: var(--color-6);
    border: 1px solid var(--color-6);
    color: #000
}

.homepage .gallery>a .title {
    color: #FFF;
    position: absolute;
    bottom: -100px;
    transition: bottom 1s;
    left: 50%;
    z-index: 1;
    font-weight: 700;
    transform: translate(-50%, -50%);
}


.homepage .gallery>a:hover {
    background-size: 110%;
}

.homepage .gallery>a:hover .button {
    bottom: 1rem
}

.homepage .gallery>a:hover .title {
    bottom: 4.5rem
}

.homepage .gallery>a:last-of-type {
    margin-inline-end: 0.75rem
}

@media only screen and (max-width:575px) {
    .homepage .btn2 {
        display: none !important;
    }

    .homepage .gallery>a {
        min-width: 80vw;
        max-width: 80vw;
        height: calc(80vw * 414 / 280);
    }
}

@media only screen and (min-width:576px) and (max-width:768px) {
    .homepage .btn2 {
        display: none !important;
    }

    .homepage .gallery>a {
        min-width: 45vw !important;
        max-width: 45vw !important;
        height: calc(45vw * 414 / 280);
    }
}

@media only screen and (min-width:769px) and (max-width:992px) {
    .homepage .btn2 {
        display: none !important;
    }

    .homepage .gallery>a {
        min-width: 25vw !important;
        max-width: 25vw !important;
        height: calc(25vw * 414 / 280);
    }
}

@media only screen and (min-width:993px) and (max-width:1199px) {
    .homepage .gallery>a {
        min-width: 15vw !important;
        max-width: 15vw !important;
        height: calc(15vw * 414 / 280);
    }

}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .homepage .gallery>a {
        min-width: 15vw !important;
        max-width: 15vw !important;
        height: calc(15vw * 414 / 280);
    }
}

@media only screen and (min-width:1400px) {

    .homepage .gallery>a {
        min-width: 15vw !important;
        max-width: 15vw !important;
        height: calc(15vw * 414 / 280);

    }
}

/* End categories slideshow */

/* Amazon slideshow */
.amazon .gallery-cont .loading {
    background-image: url(/assets/frontend/loading.svg) !important;
    background-size: 10% !important;
    background-position: center center;
    background-repeat: no-repeat;
}

.amazon .gallery-cont {
    position: relative;
}

.amazon .gallery-cont .btn2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 48px;
    width: 48px;
    border-radius: 30px;
    background-color: #FFF;
    box-shadow: 0 0 10px #00000020;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 1002;
}


.amazon .gallery-cont .btn2.prev {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg width="12" height="12" viewBox="0 0 34 34" xmlns="http://www.w3.org/2000/svg"><title>Shape</title><path d="M33.6 14.7H8.043L19.782 2.961 16.8 0 0 16.8l16.8 16.8 2.961-2.961L8.043 18.9H33.6z" fill="%23000" fill-rule="evenodd"/></svg>');
    left: 1.5rem;

}

.amazon .gallery-cont .btn2.next {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg width="12" height="12" viewBox="0 0 34 34" xmlns="http://www.w3.org/2000/svg"><title>Shape</title><path d="M25.557 14.7L13.818 2.961 16.8 0l16.8 16.8-16.8 16.8-2.961-2.961L25.557 18.9H0v-4.2z" fill="%23000" fill-rule="evenodd"/></svg>');
    right: 1.5rem;
}

.amazon .gallery {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
}

.amazon .gallery::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}


.amazon .gallery>a {
    display: flex;
    position: relative;
    z-index: 1000;
    scroll-snap-align: start;
    white-space: nowrap;
    margin-inline-start: 0.75rem;
    scroll-margin-inline-start: 0;
    background-size: 100%;
    background-color: #000;
    width: 100%;
    height: 280px;
    background-position: center center;
    background-repeat: no-repeat;
    transition: background-size 1s;
    overflow: hidden;
}

.amazon .gallery>a:first-of-type {
    margin-inline-start: 0;
    scroll-margin-inline-start: 0;
}
.amazon .gallery>a .button {
    background-color: var(--color-7);
    color: #FFF;
    border-radius: 30px;
    position: absolute;
    bottom: -100px;
    transition: bottom 1s;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
}

.amazon .gallery>a .title {
    color: #FFF;
    text-shadow: 1px 1px #000;
    position: absolute;
    word-wrap: break-word;
    white-space: normal;
    top: 1rem;
    left:1rem;
    right:1rem;
    z-index: 2;
}

.amazon .gallery>a .button:hover {
    background-color: var(--color-6);
    border: 1px solid var(--color-6);
    color: #000
}


.amazon .gallery>a:hover {
    background-size: 110%;
}

.amazon .gallery>a:hover .button {
    bottom: 1rem
}

.amazon .gallery>a:last-of-type {
    margin-inline-end: 0
}

@media only screen and (max-width:575px) {
    .amazon .btn2 {
        display: none !important;
    }

    .amazon .gallery>a {
        min-width: 80vw;
        max-width: 80vw;
        height: 280px;
    }
}

@media only screen and (min-width:576px) and (max-width:768px) {
    .amazon .btn2 {
        display: none !important;
    }

    .amazon .gallery>a {
        min-width: 45vw !important;
        max-width: 45vw !important;
        height: 280px;
    }
}

@media only screen and (min-width:769px) and (max-width:992px) {
    .amazon .btn2 {
        display: none !important;
    }

    .amazon .gallery>a {
        min-width: 25vw !important;
        max-width: 25vw !important;
        height: 280px;
    }
}

@media only screen and (min-width:993px) and (max-width:1199px) {
    .amazon .gallery>a {
        min-width: 15vw !important;
        max-width: 15vw !important;
        height: 280px;
    }

}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .amazon .gallery>a {
        min-width: 15vw !important;
        max-width: 15vw !important;
        height: 280px;
    }
}

@media only screen and (min-width:1400px) {

    .amazon .gallery>a {
        min-width: 15vw !important;
        max-width: 15vw !important;
        height: 280px;

    }
}

/* End Amazon slideshow */


/* Explore */
.homepage .explore {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    grid-auto-flow: row;
    grid-template-areas:
        "t l o"
        "t l p";
}

.homepage .explore .t {
    grid-area: t;
    background-image: url(images/category.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.homepage .explore .l {
    grid-area: l;
    background-image: url(images/category.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.homepage .explore .o {
    grid-area: o;
    background-image: url(images/category.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.homepage .explore .p {
    grid-area: p;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-image: url(images/category.jpg);
    background-size: 100%;
    justify-content: center;
    background-position: center center;
}

.homepage .explore .t,
.homepage .explore .l,
.homepage .explore .o,
.homepage .explore .p {
    transition: background-size 0.3s linear;
}

.homepage .explore .t:hover,
.homepage .explore .l:hover,
.homepage .explore .o:hover,
.homepage .explore .p:hover {
    background-size: 110%;
}

/* End Explore */

/* Product slideshow */
.homepage .news-cont .loading {
    background-image: url(/assets/frontend/loading.svg) !important;
    background-size: 10% !important;
    background-position: center center;
    background-repeat: no-repeat;
}

.homepage .news-cont {
    position: relative;
}

.homepage .news-cont .btn2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 48px;
    width: 48px;
    border-radius: 30px;
    background-color: #FFF;
    box-shadow: 0 0 10px #00000020;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 1002;
}


.homepage .news-cont .btn2.prev {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg width="12" height="12" viewBox="0 0 34 34" xmlns="http://www.w3.org/2000/svg"><title>Shape</title><path d="M33.6 14.7H8.043L19.782 2.961 16.8 0 0 16.8l16.8 16.8 2.961-2.961L8.043 18.9H33.6z" fill="%23000" fill-rule="evenodd"/></svg>');
    left: 1.5rem;

}

.homepage .news-cont .btn2.next {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg width="12" height="12" viewBox="0 0 34 34" xmlns="http://www.w3.org/2000/svg"><title>Shape</title><path d="M25.557 14.7L13.818 2.961 16.8 0l16.8 16.8-16.8 16.8-2.961-2.961L25.557 18.9H0v-4.2z" fill="%23000" fill-rule="evenodd"/></svg>');
    right: 1.5rem;
}

.homepage .news {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
}

.homepage .news::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}


.homepage .news>div {
    display: flex;
    position: relative;
    z-index: 1000;
    scroll-snap-align: start;
    white-space: nowrap;
    margin-inline-end: 1.5rem;
    scroll-margin-inline-end: 1.5rem;
    width: 100%;
    overflow: hidden;
}

.homepage .news>div .photo {
    height: calc(25vw * 16 / 9 / 2);
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}


.homepage .news>div:last-of-type {
    margin-inline-end: 0;
    scroll-margin-inline-end: 0;
}

@media only screen and (max-width:575px) {
    .homepage .btn2 {
        display: none !important;
    }

    .homepage .news>div {
        min-width: 80%;
        max-width: 80%;
    }

    .homepage .news>div .photo {
        height: calc(80vw * 16 / 9 /2) !important;
    }

}

@media only screen and (min-width:576px) and (max-width:768px) {
    .homepage .btn2 {
        display: none !important;
    }

    .homepage .news>div {
        min-width: 45vw !important;
        max-width: 45vw !important;
    }

    .homepage .news>div .photo {
        height: calc(45vw * 16 / 9 / 2) !important;
    }
}

@media only screen and (min-width:769px) and (max-width:992px) {
    .homepage .btn2 {
        display: none !important;
    }

    .homepage .news>div {
        min-width: 45vw !important;
        max-width: 45vw !important;
    }

    .homepage .news>div .photo {
        height: calc(45vw * 16 / 9 / 2);
    }
}

@media only screen and (min-width:993px) and (max-width:1199px) {
    .homepage .news>div {
        min-width: 45vw !important;
        max-width: 45vw !important;
    }

    .homepage .news>div .photo {
        height: calc(45vw * 16 / 9 / 2);
    }

}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .homepage .news>div {
        min-width: 25vw !important;
        max-width: 25vw !important;
    }

    .homepage .news>div .photo {
        height: calc(25vw * 16 / 9 / 2);
    }
}

@media only screen and (min-width:1400px) {

    .homepage .news>div {
        min-width: calc(33.33333% - 3rem /3) !important;
        max-width: calc(33.33333% - 3rem /3) !important;
    }

    .homepage .news>div .photo {
        height: calc(25vw * 16 / 9 / 2);
    }
}

/* End Product slideshow */

/* Info */
.info {
    background: var(--color-6);
    color: #000
}

/* End Info */

/* Pre-footer */
.pre-footer {
    background: var(--color-5);
    background-image: url(/assets/images/plus-01-01.svg);
    background-size: 50px;
    height: 75vh;
}

/* Pre-footer */

/* Footer */
.footer {
    background: var(--color-6);
    color: #000
}

.footer .social-icons a svg {
    height: 1rem;
    margin-right: 0.5rem;
    fill: #000
}

.footer .links a {
    display: flex;
    color: #000;
    margin-bottom: 0.5rem;
    flex-direction: column;
    text-decoration: none;
}
.sub-footer .links a {
    display: flex;
    color: #FFF;
    margin-bottom: 0.5rem;
    flex-direction: column;
    text-decoration: none;
}

.footer .links a:hover {
    text-decoration: underline;
}
.sub-footer .links a:hover {
    text-decoration: underline;
}

.footer input.form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.footer .button {
    background-color: #000;
    border: 1px solid #000;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.footer .button:hover {
    background-color: #000;
    border: 1px solid #000;
    color: #FFF;
}

/* Footer */

/* Sub Footer */
.sub-footer {
    background-color: var(--color-5);
}

.sub-footer svg {
    margin-left: 0.5rem
}

/* End Sub Footer */


/* Category */
.category .filters {
    position: sticky;
    top: 120px;
    height: calc(100vh - 120px);
    overflow-y: scroll;
    align-self: flex-start;
    padding-right: 16px
}

.category .filters::-webkit-scrollbar {
    width: 4px;
}

.category .filters::-webkit-scrollbar-track {
    background: transparent;
}


.category .filters::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
}

.category .filters::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.category .filters h6 {
    color: #FFF;
    margin-bottom: 1rem
}

.category .filters>div {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #FFFFFF10
}

.category .filters>div:last-of-type {
    border-bottom: none
}

.category .filters .categories a {
    padding-bottom: 0.6rem;
}

.category .filters .color a {
    width: 2rem;
    height: 1.5rem;
    margin: 0 0.5rem 0.5rem 0;
}

.category .filters .brand a {
    padding-bottom: 0.6rem;
    text-decoration: none;
    color: var(--bs-body-color);
}

.category .filters .brand .tickbox {
    height: 1.5rem;
    width: 1.5rem;
    border: 1px solid #d8d8d8
}

.category .filters .brand .tickbox.sel {
    background-color: var(--color-3);
    border: 1px solid var(--color-3);
    display: flex;
    align-items: center;

    justify-content: center;
    color: #FFF;
}

.category .filters .brand .tickbox.sel .material-symbols-outlined {
    font-size: 1rem;
}

.category-title {}


/* Product */
.product-cont .loading {
    background-image: url(/assets/frontend/loading.svg) !important;
    background-size: 10% !important;
    background-position: center center;
    background-repeat: no-repeat;
}

.product-cont {
    position: relative;
}

.category .products .product {
    width: 135px;
    margin: auto;
}

.category .products .product .photo {
    height: 200px;
    width: 135px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: auto;
    opacity: 1.0;
    transition: background-image 0.5s cubic-bezier(0, 0, .3, 1);
}



.category .products .product .buttons {
    position: absolute;
    bottom: -100px;
    transition: bottom 1s;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
}

.category .products .product .buttons .material-symbols-outlined {
    background: #000;
    color: #FFF;
    padding: 0.5rem;
    margin: 0 0.5rem;
    border-radius: 100%;
    cursor: pointer;
}

.category .products .product:hover .buttons {
    bottom: 1rem
}

/* End Category */




/* Slider */
input[type=range] {
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    margin: 0;
    padding: 0 2px;
    /* Add some L/R padding to ensure box shadow of handle is shown */
    overflow: hidden;
    border: 0;
    border-radius: 2px;
    outline: none;
    overflow: visible;
    background: linear-gradient(#00000010, #00000010) no-repeat center;
    /* Use a linear gradient to generate only the 2px height background */
    background-size: 100% 4px;
    pointer-events: none;
}

input[type=range]:active,
input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-thumb {
    height: 32px;
    width: 32px;
    border-radius: 32px;
    border: 8px solid rgba(var(--color-3-rgb), 0.3);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: var(--color-3);
    position: relative;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    pointer-events: all;
}

input[type=range]::-moz-range-thumb {
    height: 16px;
    width: 16px;
    border-radius: 32px;
    border: 8px solid rgba(var(--color-3-rgb), 0.3);
    -moz-background-clip: padding-box;
    background-clip: padding-box;
    background-color: var(--color-3);
    position: relative;
    cursor: pointer;
    -moz-appearance: none;
    appearance: none;
    pointer-events: all;
}

input[type=range]::-webkit-slider-thumb::before {
    content: ' ';
    display: block;
    position: absolute;
    top: 13px;
    left: 100%;
    width: 2000px;
    height: 2px;
}

input[type=range]::-moz-range-thumb::before {
    content: ' ';
    display: block;
    position: absolute;
    top: 13px;
    left: 100%;
    width: 2000px;
    height: 2px;
}

.multi-range {
    position: relative;
    display: block;
    height: 50px;
}

.multi-range input[type="range"] {
    position: absolute;
}


.multi-range input[type=range]:nth-child(2) {
    background: none;
}

/* End Slider */

/* Filters */
.filters-static {
    z-index: 1003;
    background-color: #000;
    bottom: 0;
}

.filters-static a {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

/* Buttons */
.button {
    border-radius: 30px;
    border: 1px solid #FFF;
    background: transparent;
    text-decoration: none;
    color: #FFF;
}

.button:hover {
    background-color: var(--color-6);
    border: 1px solid var(--color-6);
    color: #000;
    text-decoration: none;
}

.button.active {
    background-color: var(--color-6);
    border: 1px solid var(--color-6);
    color: #000;
    text-decoration: none;
}

.button-black {
    border-radius: 30px;
    outline: double 3px #000;
    background: #000;
    color: #FFF;
    text-decoration: none;
    animation: button 2s infinite
}

@keyframes button {
    0% {
        outline: double 3px #000;
    }
    50% {
        outline: double 8px #000;
    }
    100% {
        outline: double 3px #000
    }
}

.products a {
    color: #FFF;
    text-decoration: none;
}

.products a:hover {
    color: #FFF;
    text-decoration: none;
}

.button-black:hover {
    text-decoration: none;
    color: #FFF;
}

/* Event */
.event .filters {
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.event .event-desc a  {
    color:#FFF;
    text-decoration: underline;
}

.event .sharer,
.event .sharer:hover {
    text-decoration: none;
    color: #FFF
}

.event .op {
    animation: op 0.10s infinite;
    animation-iteration-count: 7;

}

.event .delay {
    animation-iteration-count: 10;
    animation-delay: 0.05s;
}
@keyframes op {
    0% {
        top:0;
        content: "0";
    }
    50% {
        top:calc(-4rem)
    }
    51% {
        top:calc(4rem)
    }
    100% {
        top:0
    }
}

.event .bg-blur {
    width: 100%;
    z-index: -1;
    filter: blur(40px);
    background-size: cover;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.event .event-image {
    margin: auto;
    width: 280px;
    height: 414px;
    transition: box-shadow 1s;
}
.event .event-image:hover {
    box-shadow: 0 0 40px 0 #FFFFFF50;
}

.dot {
    animation: dot 3s infinite;
    position: relative;
}


@keyframes dot {
    0% {
        bottom:0
    }
    50% {
        bottom:20px
    }
    100% {
        bottom:0
    }
}

.event .light-grey {
    color: lightgrey
}

.event .m-left {
    margin-left: 100px;
}

@media only screen and (max-width:575px) {
    .event .m-left {
        margin-left: 0;
    }
}

.event .profile-image {
    flex: 0 0 48px;
    height: 48px;
    background-size: cover;
    border-radius: 6px;
}

.event .plus {
    flex: 0 0 48px;
    height: 48px;
    background-color: #000;
    border-radius: 6px;
}

/* Use Account */
.account .profile-image {
    width: 100px;
    display: block;
    height: 100px;
    border-radius: 100px;
    background-position: center center;
    border: 4px solid #FFF;
    background-size: cover;
    background-color: #fff;
    margin: auto;
}

.account .menu a {
    color: #FFF;
    text-decoration: none
}

.account .menu a:hover {
    color: var(--color-6);
    text-decoration: none
}

.account .bg {
    background: #FFFFFF10;
    border-radius: 30px;
}

.account a.delete {
    color: #FFF;
    text-decoration: none;
}

.account a.delete:hover {
    color: #FFF;
    text-decoration: none;
}

.account .profile-menu {
    position: sticky;
    top: 120px;
    overflow-y: scroll;
    align-self: flex-start;
}

.overlay {
    height: 0%;
    width: 0%;
    position: fixed;
    z-index: 300000000000;
    background-color: #000;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
}

.overlay.active {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.overlay .closebtn {
    position: fixed;
    top: 10px;
    cursor: pointer;
    right: 10px;
}

.overlay-content {
    width: 30%;
    color: #FFF;
    padding: 3rem 0;
    flex-direction: column;
}

#date .overlay-content {
    align-items: center;
    justify-content: center;
    display: flex;
}

@media only screen and (max-width:575px) {
    .overlay-content {
        width: 80%
    }

    #date .overlay-content {
        width: 100% !important;
    }
}

@media only screen and (min-width:576px) and (max-width:768px) {
    .overlay-content {
        width: 60%
    }
}

@media only screen and (min-width:769px) and (max-width:992px) {
    .overlay-content {
        width: 60%
    }
}

@media only screen and (min-width:993px) and (max-width:1199px) {}

@media only screen and (min-width:1200px) and (max-width:1399px) {}

@media only screen and (min-width:1400px) {}

/* Calendar */
#calendar {
    border-collapse: collapse;
    width: 100%;
}

#previous,
#next {
    background: var(--color-6);
    border: 0;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 30px
}

#thead-month {
    color: #ccc
}

#thead-month tr th {
    padding: 0.5rem 0
}

#calendar td,
#calendar th {
    text-align: center;
}

.date-picker.selected {
    color: #FFF;
}

.date-picker span {
    padding: 10px;
    display: block;
    cursor: pointer;
}

.date-picker.selected span {
    background: var(--color-6);
    color: #000;
    border-radius: 30px;
}

#month-present {
    text-align: center;
    margin-top: 0;
    line-height: 24px;
    font-size: 1.2rem;
    margin-bottom: 0
}

#year-present {
    text-align: center;
    margin-top: 0;
}

#previous,
#next {
    display: inline-block
}

#next {
    float: right;
}

/* End Calendar */

/* Homepage slider */
.homepage .home-blur {
    animation:home 20s forwards;
    background-position: top center;
}
@keyframes home {
    0% {
        background-position: top center;
    }
    100% {
        background-position: bottom center;
    }
    
}
/* End Homepage slider */