:root {
    --first-font: "Exo 2", sans-serif;
    --second-font: "DM Sans", sans-serif;
    --first-color: #ff5733;
    --third-color: #16a085;
    --text-color: #f1f1f1;
    --light-yellow: #facc15;
    --body-text-color: #f1f1f1;
    --dark-black: #111;
    --body-bg-color: #0F0F0F;
    --error-color: #F74032;
    --success-color: #35AD65;
    --price-color: #FF9139;
    --delete-price-color: #555555;
    --border-color: #E4E4E4;
    --black: #181818;
    --white: #ffffff;
    --grey: #707070;
    --red: #F74032;
    --h1: normal 500 64px/1.3 var(--first-font);
    --h2: normal 500 42px/1.3 var(--first-font);
    --h3: normal 500 30px/1.3 var(--first-font);
    --h4: normal 500 26px/1.3 var(--first-font);
    --h5: normal 500 22px/1.3 var(--first-font);
    --h6: normal 500 18px/1.3 var(--second-font);
    --common-text: normal 400 16px/1.3 var(--second-font);
}



body,
html {
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
}

body::-moz-scrollbar {
    display: none;
}

svg,
img {
    max-width: 100%;
    display: block;
}

svg path {
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
}

a,
.btn,
button {
    text-decoration: none;
    outline: none;
    color: inherit;
    display: inline-block;
    cursor: pointer;
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
}

a,
a:hover,
a:focus,
a:active,
button,
button:hover,
button:focus,
input,
input:hover,
input:focus,
select,
select:hover,
select:focus,
textarea,
textarea:hover,
textarea:focus,
.btn,
.btn:hover,
.btn:focus,
.btn:active:focus,
.btn:active.focus,
.btn.active:focus,
.btn.active.focus {
    text-decoration: none;
    -webkit-text-decoration-skip: objects;
    outline: none;
}

.form-control:focus,
[type="text"]:focus,
[type="email"]:focus,
[type="checkbox"]:focus,
[type="password"]:focus,
[type="file"]:focus,
[type="radio"]:focus,
[type="button"]:focus,
[type="submit"]:focus,
[type="date"]:focus,
[type="time"]:focus,
[type="tel"]:focus,
[type="search"]:focus,
[type="button"]:focus,
[type="number"]:focus,
textarea:focus,
select:focus {
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}


/* ============================================= */
/* !!!!             FORM  CSS               !!!! */
/* ============================================= */
.form-control,
input:not([type="submit"]),
input:not([type="checkbox"]),
input:not([type="button"]),
input:not([type="radio"]),
select,
textarea {
    position: relative;
    border: 1px solid var(--border-color);
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: var(--white) !important;
}

textarea.form-control {
    resize: none;
}

form .row {
    margin: 0 -8px;
}

form .row [class*="col-"] {
    padding: 0 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--text-color);
    text-transform: capitalize;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
}

::-webkit-input-placeholder {
    color: var(--text-color);
}

:-ms-input-placeholder {
    color: var(--text-color);
}

::placeholder {
    color: var(--text-color);
}

::selection {
    background: rgba(246, 71, 18, 0.3);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000000s ease-in-out 0s;
    -webkit-transition: background-color 5000000s ease-in-out 0s;
    -moz-transition: background-color 5000000s ease-in-out 0s;
    -ms-transition: background-color 5000000s ease-in-out 0s;
    -o-transition: background-color 5000000s ease-in-out 0s;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

* {
    margin: 0;
    padding: 0;
    font-size: 100%;
    list-style: none;
    vertical-align: baseline;
}

body {
    font: var(--common-text);
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    background: var(--body-bg-color);
    color: var(--body-text-color);
}

.section-title {
    margin: 0 0 26px;
}

.section-title.common {
    gap: 15px;
    flex-wrap: wrap;
}

.section-title p {
    margin-top: 15px;
}

/* ============================================= */
/* !!!!         SITE TYPOGRAPHY CSS         !!!! */
/* ============================================= */
p,
li,
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
    font: var(--common-text);
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--white);
    font: var(--first-font);
    text-transform: capitalize;
}

h1,
.h1 {
    font: var(--h1);
}

h2,
.h2 {
    font: var(--h2);
}

h3,
.h3 {
    font: var(--h3);
}

h4,
.h4 {
    font: var(--h4);
}

h5,
.h5 {
    font: var(--h5);
}

h6,
.h6 {
    font: var(--h6);
}


body.active-menu,
body.no_scroll {
    overflow: hidden;
    position: relative;
}

.container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 15px;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--delete-price-color);
    cursor: pointer;
}

::-webkit-scrollbar-track {
    background: var(--border-color);
}

.img-wrapper,
.img-ratio {
    position: relative;
    width: 100%;
    display: block;
    padding-top: 100%;
}

.img-wrapper img,
.img-wrapper video,
.img-wrapper iframe,
.img-ratio img,
.img-ratio video,
.img-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* ============================================= */
/* !!!!          COMMON BUTTON              !!!! */
/* ============================================= */
.btn {
    position: relative;
    padding: 10px 15px;
    font: 500 16px var(--second-font);
    color: var(--white);
    background-color: var(--first-color);
    box-shadow: 0px 1px 5px rgba(255, 65, 108, 0.5);
    appearance: none;
    outline: none;
    line-height: 1;
    text-transform: capitalize;
    gap: 8px;
    border: transparent;
    display: inline-flex;
    align-items: center;
    text-align: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    overflow: hidden;
    z-index: 1;
}

button[disabled],
.btn[disabled] {
    cursor: not-allowed;
    opacity: 0.5;
}

button[disabled]:hover::before,
.btn[disabled]:hover::before,
.btn-secondary[disabled]:hover::before {
    display: none;
}

.btn::before { 
     background-color: var(--grey);
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    z-index: -1;
}

/* .btn:focus::before,
.btn:active::before, */
.btn:hover::before {
    height: 100%;
}

:not(.btn-check)+.btn:active,
.btn:hover,
/* .btn:focus, */
.btn:active {
    color: var(--white);
}

.btn svg {
    height: 16px;
    width: 16px;
}

.btn-secondary {
    background: var(--delete-price-color);
    color: var(--text-color);
}

.btn-secondary:before {
    background: var(--price-color);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    color: var(--white);
    border-color: var(--first-color);
}

.btn-secondary:hover svg path,
.btn-secondary:focus svg path,
.btn-secondary:active svg path {
    stroke: var(--white);
}

.btn-white {
    background: transparent;
    border: 1px solid var(--first-color);
    color: var(--first-color);
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active {
    border-color: var(--black);
}

.btn-white:hover svg path,
.btn-white:focus svg path,
.btn-white:active svg path {
    fill: var(--white);
}

.btn-transparent {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--black);
}

.btn-transparent:hover,
.btn-transparent:focus,
.btn-transparent:active {
    border-color: var(--first-color);
}

.btn-transparent svg path {
    stroke: var(--first-color);
}

.btn-transparent:hover svg path,
.btn-transparent:focus svg path,
.btn-transparent:active svg path {
    stroke: var(--black);
}

.btn-transparent svg {
    height: 20px;
    width: 20px;
}

/*** swiper slider ****/
.flex-slider {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.flex-slider .swiper-slide {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    height: auto;
}

.flex-slider .flex-card-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.flex-slider .flex-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
}

.swiper-button-prev,
.swiper-button-next {
    height: 40px;
    width: 40px;
    background-color: var(--first-color);
    z-index: 2;
    outline: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}

.swiper-button-next {
    right: 2px;
    left: auto;
    transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    -moz-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
}

.swiper-button-prev {
    left: 2px;
    right: auto;
    transform: translate3d(-100%, 0, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    -o-transform: translate3d(-100%, 0, 0);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.swiper:hover .swiper-button-prev,
.swiper:hover .swiper-button-next {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
}

.swiper-button-next svg {
    transform: rotate(-180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.swiper-button-next svg path,
.swiper-button-prev svg path {
    fill: var(--white);
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.swiper-button-next:hover svg path,
.swiper-button-prev:hover svg path {
    fill: var(--black);
}

.swiper-button-prev svg,
.swiper-button-next svg {
    height: 22px;
    width: 22px;
}

/* ========preloader======= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-in-out, visibility 0s 0.5s;
}

#preloader.fade-in {
	opacity: 1;
	visibility: visible;
}

#preloader.fade-out {
	opacity: 0;
	visibility: hidden;
}

.bar-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.bar {
    width: 8px;
    height: 50px;
    background: linear-gradient(45deg, #ff0080, #ff8c00);
    border-radius: 5px;
    animation: bounce 1.2s infinite ease-in-out;
}

.bar:nth-child(1) {
    animation-delay: 0s;
}

.bar:nth-child(2) {
    animation-delay: 0.2s;
}

.bar:nth-child(3) {
    animation-delay: 0.4s;
}

.bar:nth-child(4) {
    animation-delay: 0.6s;
}

.bar:nth-child(5) {
    animation-delay: 0.8s;
}

#preloader h1 {
    color: var(--fff);
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeIn 1s ease-in-out infinite;
}

/* Animations */
@keyframes bounce {

    0%,
    100% {
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
        -moz-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
    }

    50% {
        transform: scaleY(1.5);
        -webkit-transform: scaleY(1.5);
        -moz-transform: scaleY(1.5);
        -ms-transform: scaleY(1.5);
        -o-transform: scaleY(1.5);
    }
}

@keyframes fadeIn {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ========overlay======= */
.overlay {
    content: " ";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.7);
    z-index: 4;
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
}

.overlay.active,
.overlay.qv_active {
    opacity: 1;
    visibility: visible;
}

.pt {
    padding-top: 50px;
}

.pb {
    padding-bottom: 50px;
}

.price {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    line-height: 1;
    gap: 10px;
}

.price ins {
    font-size: 20px;
    color: var(--price-color);
    font-weight: 400;
    text-decoration: none;
}

del {
    color: var(--delete-price-color);
    opacity: 0.7;
    text-decoration: line-through;
    font-weight: 500;
}

/* ============================================= */
/* !!!!          NICE SELECT CSS           !!!! */
/* ============================================= */
.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    cursor: pointer;
    display: inline-block;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    outline: none;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 500ms ease-in-out 0s;
    transition: all 500ms ease-in-out 0s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 10px 25px 10px 15px;
    min-width: 150px;
    border: 1px solid var(--body-text-color);
    border-radius: 10px;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.nice-select:after {
    content: '';
    display: block;
    height: 10px;
    width: 11px;
    pointer-events: none;
    position: absolute;
    right: 10px;
    top: 50%;
    background: url(../images/down.svg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 9px;
    -webkit-transition: -webkit-transform 500ms linear;
    transition: -webkit-transform 500ms linear;
    -o-transition: transform 500ms linear;
    transition: transform 500ms linear;
    transition: transform 500ms linear, -webkit-transform 500ms linear;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.nice-select.open:after {
    transform: translateY(-50%) rotate(180deg);
    -webkit-transform: translateY(-50%) rotate(180deg);
    -moz-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -moz-transform: scale(1) translateY(0);
    -o-transform: scale(1) translateY(0);
}

.nice-select.disabled {
    border-color: var(--border-color);
    color: var(--border-color);
    pointer-events: none;
}

.nice-select.disabled:after {
    border-color: #cccccc;
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.nice-select.right .list {
    left: auto;
    right: 0;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small:after {
    height: 4px;
    width: 4px;
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}

.nice-select .list {
    background-color: var(--grey);
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.7);
    box-sizing: border-box;
    margin-top: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 35px;
    left: auto;
    right: 0;
    width: 100%;
    border-radius: 6px;
    min-width: 110px;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 500ms cubic-bezier(0.5, 0, 0, 1.25), opacity .1500ms ease-out;
    transition: all 500ms cubic-bezier(0.5, 0, 0, 1.25), opacity .1500ms ease-out;
    z-index: 2;
    -moz-transform: scale(0.75) translateY(-21px);
    -o-transform: scale(0.75) translateY(-21px);
    -moz-transition: all 500ms cubic-bezier(0.5, 0, 0, 1.25), opacity .1500ms ease-out;
    -ms-transition: all 500ms cubic-bezier(0.5, 0, 0, 1.25), opacity .1500ms ease-out;
    -o-transition: all 500ms cubic-bezier(0.5, 0, 0, 1.25), opacity .1500ms ease-out;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 500;
    list-style: none;
    outline: none;
    text-align: left;
    -webkit-transition: all 500ms ease-in-out 0s;
    transition: all 500ms ease-in-out 0s;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 10px 10px;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    margin: 0 !important;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: var(--first-color);
}

.nice-select .option.selected {
    font-weight: bold;
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}

.languages .current {
    display: flex;
    align-items: center;
    gap: 5px;
}

.languages .current svg {
    display: none;
    height: 18px;
    min-width: 18px;
}

.nice-select.languages,
.nice-select.languages .list {
    min-width: auto;
}

.nice-select.languages {
    border: none;
    height: 36px;
    background-color: var(--first-color);
    padding: 7px 25px 7px 15px;
    line-height: 1.5;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.nice-select.languages:hover {
    background-color: var(--grey);
}

/* site header css */
.site-header {
    position: relative;
    z-index: 3;
}

.site-header.fixed .sticky_header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 3;
    width: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
}

.sticky_header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: linear-gradient(180deg, rgba(0, 0, 0, .7), transparent);
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .7) 10%, transparent);
}

.sticky_header.scrolled {
  background-color: var(--body-bg-color);
}

.site-header .main-navigationbar {
    padding: 10px 0;
}

.site-header .navigationbar-row {
    gap: 25px;
}

.site-header .main-navigationbar h1 {
    text-transform: capitalize;
}

.profile-header {
    position: relative;
    display: inline-block;
}

.profile-dropdown {
    display: none;
    position: absolute;
    top: 130%;
    right: 0;
    background-color: rgb(17, 17, 17);
    width: 220px;
    padding: 12px;
    border: 1px solid var(--grey);
    border-radius: 6px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.profile-dropdown.active {
    display: block;
}

.profile-info {
    display: flex;
    /* align-items: center; */
    margin-bottom: 10px;
}

.profile-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.profile-info .username {
    font-weight: bold;
    font-size: 14px;
}

.profile-info .email {
    font-size: 12px;
    color: rgb(187, 187, 187);
}

.profile-dropdown a.login-link {
    display: block;
    text-align: center;
    background-color: var(--first-color);
    padding: 8px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
}

.profile-dropdown a.login-link:hover {
    background-color: var(--grey);
}

.logo-col a {
    font: var(--first-font);
    display: inline-flex;
    gap: 10px;
    font-weight: 800;
    align-items: center;
    font-size: 20px;
}

.logo-col {
    display: flex;
    max-width: 200px;
    width: 100%;
}

.logo-col img {
    width: 35px;
    height: auto;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.site-header .menu-item-right {
    flex: 1;
    gap: 15px;
}

.search-header {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-direction: row-reverse;
}

.search-box {
    display: flex;
    border-radius: 6px;
    transition: all ease-in-out 0.4s;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
}

.search-box.active {
    max-width: 300px;
    width: 100%;
    transition: all ease-in-out 0 .4s !important;
    -webkit-transition: all ease-in-out 0 .4s !important;
    -moz-transition: all ease-in-out 0 .4s !important;
    -ms-transition: all ease-in-out 0 .4s !important;
    -o-transition: all ease-in-out 0 .4s !important;
}

.search-input {
    width: 0 !important;
    opacity: 0;
    border: none !important;
    background: transparent;
    outline: none;
    color: var(--white) !important;
    padding: 0px !important;
    font-size: 14px;
    transition: all ease-in-out 0.4s !important;
    -webkit-transition: all ease-in-out 0.4s !important;
    -moz-transition: all ease-in-out 0.4s !important;
    -ms-transition: all ease-in-out 0.4s !important;
    -o-transition: all ease-in-out 0.4s !important;
}

.search-wrp {
    margin-right: 12px;
    border-radius: 6px;
}

.search-box.active .search-wrp {
    padding: 8px;
    border: 1px solid var(--border-color);
}

/* .xgplayer.xgplayer-is-fullscreen video {
    height: 100% !important;
} */

.search-box.active .search-input {
    width: 100% !important;
    opacity: 1 !important;
}

.search-box .close-btn svg {
    display: none;
    margin-left: 10px;
    cursor: pointer;
    height: 12px;
    width: 12px;
    background: transparent;
    border: none;
}

.search-box.active .close-btn svg {
    display: block;
}

.site-header .main-navigationbar .menu-item-right>li.search-header>a {
    width: 35px;
    height: 35px;
    padding: 5px !important;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.site-header .main-navigationbar .menu-item-right>li a svg {
    height: 16px;
    width: 16px;
}

.site-header .main-navigationbar .menu-item-right>li a.btn {
    padding: 10px 12px;
    gap: 8px;
}

.site-header .main-navigationbar .menu-item-right>li.search-header>a:hover {
    border-color: var(--first-color);
}
 /* Latest search css start  */

.search-box.active {
    max-width: 340px; 
}

.search-box.active .search-wrp {
    width: 100%;
    gap: 15px;
    justify-content: space-between;
}
.search-suggestion-box {
  display: none;
  position: absolute;
  top: 100%;
  right: 40px;
  margin-top: 8px;
  background-color: rgb(34, 34, 34);
  padding: 15px;
  border-radius: 6px; 
  min-width: 300px;
  max-height: 240px;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  overflow-y: auto;
}

.suggest-title {
  font-weight: bold;
  margin-bottom: 8px; 
}

.suggest-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 12px;
}

.suggest-list li {
  font-size: 14px;
  margin-bottom: 8px;
}

.suggest-list li a:hover{
    color: var(--first-color);
}

.suggest-tags {
  display: flex;
  gap: 10px;
}

.suggest-tags span {
  background: rgb(51, 51, 51);
  padding: 4px 10px;
  border-radius: 14px;
  font-size: 13px;
}

body.no-scroll {
  overflow: hidden;
}
 /* Latest search css end  */
/**** SEARCH POPUP CSS ****/ 
.search-article .search-form-wrapper {
    max-width: 1000px;
    width: 100%;
}

.search-article .search-form-wrapper form { 
    position: relative;
    border: 1px solid var(--white);
} 

.search-article .search-form-wrapper .form-inputs {
    width: 100%;
    position: relative;  
}
  
.search-article .search-form-wrapper input {
    padding: 15px 60px 15px 20px !important; 
     width: 100% !important ; 
}

.search-article .search-form-wrapper .btn {
    position: absolute;
    right: 5px;
    top: 50%;
    width: 45px;
    padding: 0;
    height: calc(100% - 10px);
    border-radius: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.search-article .search-form-wrapper .btn svg {
    width: 16px;
    height: 16px;
    margin: 0 auto;
}

.search-article .search-form-wrapper .btn svg path {
    fill: var(--white) !important;
}
 
/********* mobile menu button **********/
.site-header .menu-right-item li.mobile-menu {
    display: initial;
}

.site-header .menu-right-item li a svg {
    width: 20px;
    height: 20px;
}

.site-header .mobile-menu {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.site-header .mobile-menu .mobile-menu-button {
    cursor: pointer;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    padding: 0;
    text-align: center;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: transparent;
    border: none;
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: tra nslate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.site-header .mobile-menu .mobile-menu-button div {
    width: 100%;
    height: 1.5px;
    margin: 5px 0;
    background: var(--white);
}

/* navigation arrow site header */
.site-header .main-navigationbar .main-nav>li>a:before {
    content: '';
    position: absolute;
    height: 4px;
    width: 4px;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--first-color);
    margin: 0 auto;
    border-radius: 5px;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    transition: all 500ms ease-in-out 0s;
    opacity: 0;
    visibility: hidden;
}

.site-header .main-navigationbar .main-nav>li>a:hover:before,
.site-header .main-navigationbar .main-nav>li.menu_active>a:before {
    opacity: 1;
    visibility: visible;
}

.site-header .main-navigationbar .main-nav>li:not(:last-of-type) {
    padding-right: 25px;
}

.site-header .main-navigationbar .main-nav .has-item>a {
    padding-right: 20px;
}

.site-header .main-navigationbar .main-nav>li>a {
    position: relative;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    font-weight: 500;
    line-height: 1;
    color: var(--text-color);
    text-transform: capitalize;
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
}

.site-header .main-navigationbar .main-nav>.menu-lnk.has-item>a:after,
.product-widget>.pro-itm>.acnav-label:after {
    content: "";
    position: absolute;
    top: 30%;
    right: 0;
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--white);
    border-left: 1px solid var(--white);
    transform: translateY(-50%) rotate(225deg);
    -webkit-transform: translateY(-50%) rotate(225deg);
    -moz-transform: translateY(-50%) rotate(225deg);
    -ms-transform: translateY(-50%) rotate(225deg);
    -o-transform: translateY(-50%) rotate(225deg);
    transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    z-index: 1;
}

.site-header .main-navigationbar .main-nav>li.menu_active.has-item>a:after,
.product-widget>.pro-itm.is_open>.acnav-label:after {
    border-top: 1px solid var(--first-color);
    border-left: 1px solid var(--first-color);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

/*** mega dropdown css  ***/
.site-header .main-navigationbar .main-nav>li.menu-lnk .menu-dropdown {
    position: absolute;
    top: 100%;
    background-color: var(--black);
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    padding: 15px;
    max-width: 150px;
    z-index: 3;
    border-top: 1px solid var(--border-color);
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    min-width: 200px;
}

.menu-items-col .main-nav>li.menu-lnk .menu-dropdown li {
    text-transform: capitalize;
}

.site-header .menu-dropdown ul>li:not(:last-of-type) {
    margin-bottom: 10px;
}

.site-header .menu-dropdown ul>li.list-title {
    margin-bottom: 20px;
}

.site-header .menu-dropdown ul>li span {
    padding: 0 0 5px;
    margin: 0 0 15px;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 1px solid var(--first-color);
    text-transform: uppercase;
}

.site-header .main-navigationbar .main-nav>li .menu-dropdown.open_menu {
    opacity: 1;
    visibility: visible;
    transform: scaleY(100%);
    -webkit-transform: scaleY(100%);
    -moz-transform: scaleY(100%);
    -ms-transform: scaleY(100%);
    -o-transform: scaleY(100%);
}

.site-header .menu-dropdown ul>li>a {
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    transition: all 500ms ease-in-out 0s;
    padding: 0;
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--text-color);
    gap: 10px;
    border-bottom: 1px solid transparent;
}

.site-header .main-navigationbar .main-nav>li>a:hover,
.site-header .menu-dropdown ul>li>a:hover {
    color: var(--first-color);
}

.site-header .menu-dropdown ul>li>a img {
    width: 18px;
}

.site-header .menu-item-right li>a,
.form-input {
    position: relative;
}

.megamenu-slider .img-wrapper {
    padding-top: 62%;
}

/**  mega menu css  **/
.site-header .main-navigationbar .menu-items-col .main-nav>li.menu-lnk .menu-dropdown.mega-menu {
    max-width: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.site-header .main-navigationbar .menu-items-col .main-nav>li.menu-lnk .menu-dropdown .mega-menu-container .row {
    row-gap: 20px;
}

/*****  MOBILE MENU CSS START  *****/
.mobile-menu-wrapper {
    position: fixed;
    z-index: 4;
    top: 0;
    height: 100%;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    transition: all 500ms ease-in-out 0s;
    -webkit-transform: translate(100%, 0px);
    -moz-transform: translate(100%, 0px);
    -ms-transform: translate(100%, 0px);
    -o-transform: translate(100%, 0px);
    transform: translate(100%, 0px);
    right: 0;
    display: block;
    width: 100%;
    max-width: 100%;
}

.mobile-menu-wrapper.active-menu {
    transform: translate(0%, 0px);
}

.mobile-menu-wrapper .menu-close-icon {
    text-align: right;
    padding: 15px 23px;
    /* background-color: var(--first-color); */
    background: rgb(18, 18, 19);
}

.mobile-menu-wrapper .menu-close-icon svg path {
    fill: var(--white);
}

.mobile-menu-bar {
    border-top: 1px solid;
}
.mobile-menu-wrapper .mobile-menu-bar>ul {
    height: calc(100vh - 38px);
    overflow: auto;
    padding: 24px;
    background: rgb(18, 18, 19);
}

.mobile-menu-wrapper .mobile-menu-bar>ul>li a {
    font-size: 18px;
    color: var(--white);
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-wrapper .mobile-menu-bar>ul>li {
    padding-bottom: 27px;
}

.mobile-menu-wrapper .mobile-menu-bar>ul>li>a {
    font-weight: 500;
    text-transform: capitalize;
}

.mobile-menu-wrapper .mobile-menu-bar>ul li>a svg path {
    fill: var(--white);
}

.mobile-menu-wrapper .mobile-menu-bar>ul>li:not(:first-child) {
    margin-top: 12px;
}

.mobile-menu-wrapper .mobile-menu-bar>ul>li a .close-menu-ioc {
    display: none;
}

.mobile-menu-wrapper .mobile-menu-bar>ul>li.is_open>a.acnav-label .menu-open-arrow {
    display: none;
}

.mobile-menu-wrapper .mobile-menu-bar>ul>li.is_open>a.acnav-label .close-menu-ioc {
    display: block;
}

.acnav-list {
    display: none;
    transition: all 0.5 ease-in-out;
}

.acnav-list.show {
    display: block;
}

.mobile-menu-wrapper.active_menu {
    transform: translate(0%, 0px);
    -webkit-transform: translate(0%, 0px);
    -moz-transform: translate(0%, 0px);
    -ms-transform: translate(0%, 0px);
    -o-transform: translate(0%, 0px);
}

.mobile-menu-wrapper .mobile-menu-bar>ul>li .menu-h-drop.is_open .acnav-label .close-menu-ioc {
    display: block;
}

.mobile-menu-wrapper .mobile-menu-bar>ul>li .menu-h-drop.is_open .acnav-label .menu-open-arrow {
    display: none;
}

.mobile-menu-wrapper .mobile-menu-bar>ul>li .mobile-menu-inner .menu-h-link ul li:not(:last-of-type) {
    margin-bottom: 10px;
}

.mobile-menu-wrapper .mobile-menu-bar>ul>li .mobile-menu-inner .menu-h-link ul li a {
    font-size: 14px;
    line-height: 16px;
    text-transform: capitalize;
    color: var(--body-text-color);
}

.mobile-menu-wrapper .mobile-menu-bar>ul>li a:hover,
.mobile-menu-wrapper .mobile-menu-bar>ul>li .mobile-menu-inner .menu-h-link ul li a:HOVER {
    color: var(--first-color);
}

.mobile-menu-wrapper .mobile-menu-bar>ul>li a svg {
    margin-left: auto;
    width: 14px;
}

.mobile-menu-wrapper .mobile-menu-bar .has-children>ul {
    margin: 12px 0 0;
    transition: all 500ms ease-in-out 0s;
}

.mobile-menu-wrapper .mobile-menu-bar .has-children>ul>li:not(:last-of-type) {
    margin-bottom: 12px;
}

.mobile-menu-wrapper .mobile-menu-bar .has-children>ul>li>a {
    font-size: 15px;
}

.mobile-menu-wrapper .mobile-menu-bar .has-children>ul>li>a.acnav-label {
    font-weight: 600;
    gap: 12px;
}

/*****  MOBILE MENU CSS END  *****/
/* ============================================= */
/* !!!!         back to top button        !!!! */
/* ============================================= */
.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 55px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    visibility: hidden;
    background: var(--white);
    -webkit-box-shadow: #0000004d 0 0 7px 0px;
    box-shadow: #0000004d 0 0 7px 0px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transform: translateY(15px);
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    animation: bounceUpDown 2s infinite ease-in-out;
    z-index: 2;
}

@keyframes bounceUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.progress-wrap svg.progress-circle path {
    stroke: var(--first-color);
    stroke-width: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap.active-progress:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 28px;
    height: 28px;
    margin: auto;
    background: url(../images/top-gif.gif) no-repeat;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

body.product .progress-wrap {
    bottom: 95px;
}

.progress-wrap.active-progress {
    opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
}

/****************  TABS CSS *****************/
.tabs-container {
    overflow: hidden;
}

.tab-content {
    visibility: hidden;
    opacity: 0;
    height: 0;
}

.tab-content.active {
    visibility: visible;
    opacity: 1;
    height: auto;
}

/* color chexckout  */
.custom-checkbox,
.colors-checkbox label {
    margin: 0;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
    box-align: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    position: relative;
    text-align: left;
}

.custom-checkbox input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
    position: absolute;
    opacity: 0;
    -ms-opacity: 0;
    -o-opacity: 0;
    -moz-opacity: 0;
    -webkit-opacity: 0;
    left: 0;
}

.color,
.custom-checkbox input[type="checkbox"]+span.color {
    display: inline-block;
    margin-right: 10px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    background-size: contain;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.custom-checkbox input[type="checkbox"]:checked+span.color {
    border-color: var(--first-color);
    background-color: var(--first-color);
}

.custom-checkbox input[type="checkbox"]:checked+span.color:after {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: 7px;
    width: 5px;
    height: 9px;
    border: 1px solid var(--white);
    border-width: 0px 1px 1px 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.color-name {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    cursor: pointer;
    text-transform: capitalize;
}

.colors-checkbox .color-count {
    font-size: 12px;
    min-width: 30px;
}

/* qty-spinner css */
.qty-spinner {
    border: 1px solid var(--border-color);
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    max-width: 95px;
    height: 35px;
    width: 100%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.qty-spinner button {
    background: transparent;
    padding: 0;
    margin: 0;
    border: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1;
}

.qty-spinner button svg {
    margin: auto;
    height: 10px;
    width: 10px;
}

.qty-spinner button svg path {
    fill: var(--black);
}

.qty-spinner input {
    border: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    width: 30px;
    color: var(--black);
    padding: 0;
    text-align: center;
    font-size: 14px;
    line-height: 1;
    margin: 0;
}

/** table css **/
@media (max-width: 767px) {
    table tr td::before {
        content: attr(data-label);
        display: block;
        text-align: start;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 14px;
    }

    table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
        display: none;
    }
}

table {
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: auto;
    text-align: left;
    border: 1px solid var(--border-color);
}

table tr {
    display: block;
}

@media (min-width: 576px) {
    .size-tbl table tr {
        display: table-row;
    }
}

table tr th {
    text-align: center;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 500;
    background-color: var(--first-color);
}

table tr td[data-label="Stamp ID"],
table tr td[data-label="Country"],
table tr td[data-label="Scott"] {
    font-weight: 700;
}

table tr td[data-label="Stamp ID"] {
    text-align: center;
    background-color: var(--white);
}

.cart-table thead tr {
    border: none;
}

.cart-table tr {
    border-bottom: 1px solid var(--border-color);
}

table tr td {
    padding: 5px 10px 5px;
    display: block;
    text-align: left;
    vertical-align: middle;
    font-size: 14px;
    text-align: center;
}

table tr {
    padding: 20px 0 0;
}

@media (min-width: 768px) {
    table tr td {
        display: table-cell;
    }

    table tr {
        display: table-row;
    }
}

.flex-slider .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
}

.flex-slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/***** HOME BANNER SECTION *****/ 

.main-banner-sec .banner-content-wrapper {
    position: relative;
    padding: 30% 0 25px;
    max-width: 700px;
    width: 100%;
    height: 100%; 
}

.main-banner-sec .banner-content-wrapper h2 {
    font: var(--h1);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: capitalize;
}

.home-banner-slider .banner-wrp>img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    z-index: -1;
}

.banner-content-wrapper p {
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.banner-content-wrapper .subtitle {
    text-transform: uppercase;
    padding-left: 8px;
    margin-bottom: 8px;
    display: block;
    border-left: 2px solid var(--success-color);
}

.banner-content-wrapper .section-title {
    margin: 0 0 15px;
}

.banner-wrp {
    position: relative;
    width: 100%;
    display: block;
    z-index: 1;
}

.banner-wrp::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 52%);
    z-index: -1;
    pointer-events: none;
}

.home-banner-slider {
    overflow: hidden;
}

.home-banner-slider .movie-features .rate {
    position: relative;
}

.home-banner-slider .movie-features .rate b {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 13px;
}

.home-banner-slider .imdb-img img {
    width: 40px;
    height: auto;
}

.home-banner-slider .movie-features {
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.home-banner-slider .movie-features .quality {
    height: 20px;
    line-height: 20px;
    display: inline-block;
    font-size: 13px;
    padding-left: 7px;
    border: 1px solid var(--white);
}

.home-banner-slider .movie-features .quality b {
    height: 19px;
    line-height: 20px;
    float: right;
    margin-left: 7px;
    padding: 0 7px;
    background: var(--white);
    color: var(--black);
}

.more-btn {
    max-width: 180px;
    width: 100%; 
}

/**** Video Popup  ****/
#video-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9;
    box-sizing: border-box;
}

.video-wrapper .custom-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 40%;
    max-width: 900px;
    display: block;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.video-wrapper video {
    border-radius: 10px;
}

.video-wrapper .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    z-index: 10;
    padding: 5px;
    cursor: pointer;
}

.video-wrapper .close-btn svg {
    width: 15px;
    height: 15px;
}

/*** product-card css ***/
.product-card { 
    transition: all 500ms ease-in-out; 
    margin: 6px;
    overflow: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;  
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    height: auto;
}
.popular-slider .swiper-slide {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    height: auto;
}
.popular-slider .swiper-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    height: auto;
}   
.product-card-inner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
}

.product-card .product-card-image {
    position: relative;
    overflow: hidden;
    transform: scale(1);
    transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.product-card:hover .product-card-image a {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.product-card-inner .product-content {
    position: relative;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: rgb(39 37 37 / 11%);
    height: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
}

.product-card-inner .product-label-wrp {
    position: absolute;
    top: 15px;
    right: 15px;
    left: auto;
    z-index: 1;
}

.product-card-inner .product-label-wrp .pro-btn svg {
    height: 20px;
    width: 20px;
}

.product-card-inner .product-label-wrp .pro-btn:hover svg {

    fill: var(--red);
}

.product-card-inner .pro-play-btn {
    position: absolute;
    top: 40%;
    left: 45%;
    border-radius: 50%;
    display: flex;
    padding: 5px;
    height: 40px;
    width: 40px;
    transform: translate(-50%, -50%) scale(0);
    transition: all 500ms ease-in-out;
    z-index: 2;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -moz-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    -o-transform: translate(-50%, -50%) scale(0);
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
}

.product-card:hover .pro-play-btn {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.popular-slider .product-card-image .img-wrapper {
    overflow: hidden;
    padding-top: 120%;
}

.login-extra .popular-slider .product-card-image .img-wrapper {
    padding-top: 95%;
}

.popular-slider .product-card-image .img-wrapper img {
    object-position: top center;
}

.popular-slider .product-card-image .img-wrapper::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(20 20 20 / 16%);
    transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    z-index: 1;
}

.product-card:hover {
    box-shadow: rgba(255, 87, 51, 0.6) 0px 2px 4px 0px, rgba(255, 87, 51, 0.6) 0px 2px 16px 0px;
}

.popular-slider .product-content h3 {
    font: var(--h6);
}

.popular-slider .product-content h3 a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-slider .product-content h3:hover {
    color: var(--first-color);
}

.popular-slider .product-content {
    padding: 15px;
    gap: 10px;
}

.popular-slider .product-content .movie-time {
    padding: 0;
    display: inline-block;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.popular-slider .product-content .movie-time li {
    list-style: none;
    margin: 0 15px 0px 0;
    padding: 0 10px 0px 0;
    font-size: 14px;
    line-height: normal;
    display: inline;
    align-items: center;
    position: relative;
}

.popular-slider .product-content .movie-time li:before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -2px;
    right: -2px;
    height: 4px;
    width: 4px;
    display: inline-block;
    background: var(--white);
    opacity: 0.8;
    -webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    border-radius: 900px;
}

.popular-slider .product-content .movie-time li:last-child {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
}

.popular-slider .product-content .movie-time li:last-child::before {
    display: none;
}

.popular-slider .product-content .movie-time .movie-categories {
    color: var(--first-color);
}

.popular-slider .product-card:hover .product-card-image .img-wrapper::after {
    background-color: rgba(0, 0, 0, 0.51);
}

.popular-slider .show-number {
    position: absolute;
    content: '';
    font-family: var(--first-font);
    font-size: 90px;
    top: 30%;
    left: 15px;
    width: auto;
    height: auto;
    transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    z-index: 1;
}

.popular-slider .product-card:hover .show-number {
    color: var(--light-yellow);
    top: 20%;
    font-size: 100px;
}

.mobile-slider-wrapper {
    position: relative;
    max-width: 360px;
    margin: 0 auto;
}

/** FOOTER STYLE CSS START **/
.site-footer {
    position: relative;
    background-color: rgba(40, 40, 40, 0.643);
    z-index: 1;
}

.footer-row {
    padding: 60px 0 40px;
}

.site-footer .footer-col:not(:first-child) {
    padding-left: 40px;
}

.site-footer .footer-col h2 {
    font: var(--h6);
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.site-footer .footer-col h2 span {
    font-weight: 600;
}

.site-footer .footer-widget ul.footer-acnav-list>li:not(:last-of-type) {
    margin-bottom: 15px;
}

.site-footer .footer-widget ul.footer-acnav-list>li a:hover {
    color: var(--first-color);
}

.footer-acnav-list.social-icons li a {
    gap: 10px;
}

.footer-acnav-list.social-icons li a .social-icon-svg {
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--first-color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.site-footer .footer-widget.community svg {
    height: 18px;
    width: 18px;
}

.site-footer .footer-widget.community ul li:hover svg path {
    fill: var(--first-color);
}

.site-footer .footer-widget.community ul li:hover {
    background-color: var(--white);
}

.site-footer .footer-widget.community svg path {
    fill: var(--white);
}

.site-footer .footer-widget ul li:not(.e-mail) a {
    text-transform: capitalize;
}

.site-footer .footer-widget.community ul li {
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease-in-out 0s;
    background-color: rgb(104, 104, 104);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
}

.footer-bottom-inner p a {
    display: inline-block;
    border-bottom: 1px solid transparent;
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
}

.footer-bottom-inner p a:hover {
    border-bottom-color: var(--first-color);
    color: var(--first-color);
}

.site-footer .footer-col .footer-acnav svg {
    height: 11px;
    width: 11px;
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
}

.site-footer .footer-col .footer-acnav svg path {
    fill: var(--white);
}

.site-footer .footer-social-icon li a:after,
.site-footer .footer-contacts li a:after,
.site-footer .footer-tags li a:after {
    display: none;
}

.site-footer .footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 15px 0;
}

.site-footer .social-img {
    margin-top: 12px;
    gap: 10px;
    display: inline-flex;
    align-items: center;
}

.site-footer .social-img li a svg {
    height: 20px;
    width: 20px;
}

.site-footer .footer-col-links:not(:last-of-type) {
    margin-bottom: 15px;
}

.site-footer .footer-col-links svg {
    width: 20px;
    height: 20px;
}

.site-footer .footer-col-links svg path {
    fill: var(--black);
}

.site-footer .footer-widget .footer-tags li {
    background-color: var(--white);
    color: var(--black);
}

.site-footer .footer-widget .footer-tags li a {
    padding: 5px 15px;
}

.site-footer .footer-subscribe-col {
    min-width: 400px;
    flex: 0 0 400px;
    -ms-flex: 0 0 400px;
    -webkit-box-flex: 0;
}

.footer-subscribe-col p {
    margin-bottom: 15px;
}

.site-footer .footer-col {
    flex: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    width: 100%;
}

/* Common Banner Section  */
.common-banner-sec {
    padding: 20px 0;
    padding-top: 80px;
}

.filter-cat li:not(:last-child):after {
    content: ">";
    position: absolute;
    right: 0px;
}

.filter-cat li:last-child {
    font-weight: 600;
}

.filter-cat li:not(:last-of-type) {
    padding-right: 20px;
    margin-right: 10px;
    position: relative;
}

.filter-cat {
    text-transform: capitalize;
    color: var(--white);
}

/* Movie section  */
.movie-section .movie-content-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.movie-content-info .poster {
    padding-top: 25%;
    flex: 1 1;
}

.movie-content-info .poster img {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.movie-content-info::-webkit-scrollbar-thumb {
    min-height: 5px;
    min-width: 10px;
}

.movie-content-info::-webkit-scrollbar-track {
    background: transparent;
}

.movie-info {
    flex: 2 1 500px;
}

.movie-info h2 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-info .stats,
.movie-info .quick-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.movie-info .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.movie-info .tags,
.movie-info .summary,
.movie-info h2 {
    margin-bottom: 15px;
}

.movie-info .tag {
    background: var(--black);
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
    transition: all ease-in-out;
    -webkit-transition: all ease-in-out;
    -moz-transition: all ease-in-out;
    -ms-transition: all ease-in-out;
    -o-transition: all ease-in-out;
}

.movie-info .tag:hover ,
.movie-info .tag.active {
    background-color: var(--first-color);
} 

.movie-info .buttons {
    display: flex;
    gap: 15px;
}

.download-btn {
    background-color: #333;
}

/* Episodes section  */
.episodes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.episodes-header .total {
    color: rgb(170, 170, 170);
}

.episodes-header .total:hover {
    color: var(--first-color);
}

.episode-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; 
}

.episode-list button, .episode-list a {
    background: rgb(34, 34, 34);
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all ease-in-out 0.3s ease;
    -webkit-transition: all ease-in-out 0.3s ease;
    -moz-transition: all ease-in-out 0.3s ease;
    -ms-transition: all ease-in-out 0.3s ease;
    -o-transition: all ease-in-out 0.3s ease;
}

.episode-list button:hover ,
.episode-list button.active,
.episode-list a:hover,
.episode-list a:active {
    background: var(--red);
}
.might-like-section .popular-slider.video-item
.episode-scroll-container {
    overflow: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    max-height: 150px;
    min-width: 100%;
} 

.all-tags-section .movie-content-info {
    overflow: auto;
    white-space: nowrap;
    padding: 0px 10px 10px 0px;
    max-height: 150px;
    min-width: 100%;
}

.all-tags-section .movie-info .tags {
    margin: 0;
}

/* all-movie-categories */
.movie-card {
    display: flex;
    background-color: rgb(30, 30, 30);
    border-radius: 12px;
    padding: 20px;
    gap: 20px;
    transition: all ease-in-out 500ms;
    -webkit-transition: all ease-in-out 500ms;
    -moz-transition: all ease-in-out 500ms;
    -ms-transition: all ease-in-out 500ms;
    -o-transition: all ease-in-out 500ms;
}

.movie-card:not(:last-child) {
    margin-bottom: 20px;
}

.movie-card .img-wrapper {
    padding-top: 15%;
    flex: 0 0 200px;
    overflow: hidden;
}

.movie-card .img-wrapper img {
    object-position: top center;
}

.movie-categories-header h2 {
    font-size: var(--h4);
    margin-bottom: 15px;
}

.movie-categories-header h2 svg,
.all-episodes-header h2 svg {
    width: 20px;
    height: auto;
}

.movie-card .ing-wrapper .poster {
    width: 120px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.movie-content {
    flex: 1;
}

.movie-content h3 {
    margin-bottom: 15px;
    font: var(--h6);
}

.movie-content .stats {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
    display: flex;
    gap: 12px;
}

.movie-content .description {
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.movie-content .buttons {
    display: flex;
    gap: 12px;
}

.movie-card:hover {
    background-color: #2e2e2e;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.movie-card:hover .poster {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
}

/* 1r 3g 2b 4y */
/* 3/10 + 4/10  */

/* hero section */
.hero-section .video-wrapper {
    position: relative;
    width: 400px;
    padding-top: 100%;
    margin: 0;
    top: inherit;
    transform: inherit;
    -webkit-transform: inherit;
    -moz-transform: inherit;
    -ms-transform: inherit;
    -o-transform: inherit;
}

.hero-section .video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
}

.scroll-area {
    overflow-y: auto;
    max-height: 100vh;
    padding-right: 10px;
}

.hero-section-inner {
    position: relative; 
    gap: 25px;
    display: inline-flex;
}

.hero-section-inner .back-btn {
    height: 32px;
    width: 32px;
    padding: 5px;
    display: none;
}

.hero-section-inner .video-sec {
    position: relative;
    padding: 25px 0 0px 0px;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 69%);  
  display: flex; 
  padding: 20px;
  gap: 15px;
  box-sizing: border-box;
  z-index: 2;
}

.video-point li:not(:last-child) {
    margin-bottom: 12px;
}

.video-point li span {
    color: var(--first-color);
}

.video-overlay .img-wrapper {
    width: 42%;
    padding-top: 60%; 
}

.video-overlay .img-wrapper img {
    object-fit: scale-down;
}

.video-overlay-content {
    display: flex; 
    flex-direction: column; 
   justify-content: center; 
   gap : 15px;
}   

.info-sec {
    padding: 25px 25px 25px 0px;
}

.hero-section-inner .video-sec .back-btn {
    position: absolute;
    left: 50px;
}

.lock-bg-icon {
    background-color: rgba(255, 88, 51, 0.585);
    padding: 4px;
    top: 0px;
    right: 0px;
    border-radius: 0px 6px 0px 0px;
    -webkit-border-radius: 0px 6px 0px 0px;
    -moz-border-radius: 0px 6px 0px 0px;
    -ms-border-radius: 0px 6px 0px 0px;
    -o-border-radius: 0px 6px 0px 0px;
}

.lock-bg-icon svg {
    height: 10px;
    width: 10px;
}

.all-episode:hover {
    color: var(--first-color);
}

.episode-number button:hover, .episode-number a:hover {
    color: var(--first-color);
}

.episode-number button, .episode-number a {
    position: relative;
    background-color: rgba(54, 65, 83, 0.737);

}

.episode-number button.active, .episode-number a.active {
    color: var(--white);
    z-index: 1;
}

.episode-number button.active::after, .episode-number a.active::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 6px;
    background-color: var(--black);
    background-image: url(/assets/images/waves.gif);
    z-index: 2;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.episodes-range {
    color: var(--grey);
}

.episodes-range.active {
    color: var(--first-color);
} 

/* top-up popup */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-box, .stripe-popup-box {
    background: var(--body-bg-color);
    padding: 25px;
    border-radius: 8px;
    max-width: 50%;
    width: 100%; 
    position: relative; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    height: 90vh;
    margin: 0px auto;
}

/* .stripe-popup-box{
    height: auto;
} */

.popup-close {
    position: absolute;
    right: 15px;
    top: 20px;
    cursor: pointer;
    font-size: 20px;
}

.popup-box .topup-section {
    max-width: 100%;
    padding: 0px;
    margin: 0px;
    box-shadow: none;
    background-color: transparent;
}
.top-up-points {
     border-bottom: 1px solid var(--grey);
     margin-bottom: 15px;
}
.top-up-points li {
     margin-bottom: 10px;
}
.top-up-points li span {
    color: var(--grey);
}
.payment-method i {
    margin-right: 10px;
}
/**** all episodes  ****/
.all-episodes-header {
    margin-bottom: 15px;
}

.all-episodes-header h2 {
    font-size: var(--h4);
}

.all-episode-card {
    align-items: center;
}

.all-episode-card .description {
    margin: 0px;
    color: rgb(156, 156, 156);
}

.all-episode-card h3 {
    font: var(--h5);
}

.all-episode-card .img-wrapper {
    min-height: 160px;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

.all-movie-categories .video-item:not(:last-child) {
    margin-bottom: 15px;
}

.video-item .movie-content .btn.play-btn::before{
    background-color: var(--delete-price-color);
}

.video-item .product-card ,
.popular-slider.video-item {
    height: 100%;
}
  
.video-item .product-card {
    margin: 0px;
}
.popular-slider.video-item {
    padding-bottom: 15px;
}
/***** Fandom sec css ******/
 
.blog-card {
    height: 100%;
    padding-bottom: 15px;
}

.blog-card .blog-card-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--white);
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.blog-card .blog-card-image {
    position: relative;
}

.blog-card .blog-card-image .blog-image {
    padding-top: 82%;
}

.blog-card-inner .blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    width: auto;
    height: auto;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 30px;
    font-weight: 700;
    background-color: var(--first-color);
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    justify-content: center;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.blog-card-inner .blog-content {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all ease-in-out 500ms;
    height: 100%;
    gap: 10px;
    padding: 15px;
    -webkit-transition: all ease-in-out 500ms;
    -moz-transition: all ease-in-out 500ms;
    -ms-transition: all ease-in-out 500ms;
    -o-transition: all ease-in-out 500ms;
}

.blog-card-inner .blog-content p {
    font-size: 14px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.blog-card-inner .blog-content h3,
.blog-card-inner .blog-content p {
    color: var(--black);
}

.blog-card-inner .blog-content h3 {
    font-size: var(--h4);
    transition: all ease-in-out 1ms;
    -webkit-transition: all ease-in-out 1ms;
    -moz-transition: all ease-in-out 1ms;
    -ms-transition: all ease-in-out 1ms;
    -o-transition: all ease-in-out 1ms;
}

.blog-card-inner .blog-content h3 a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    cursor: pointer;
    overflow: hidden;
}

.blog-card-inner .blog-content .fandom-date span {
    color: var(--grey);
    font-size: 12px;
}

.blog-card-inner:hover .blog-date {
     background-color: var(--delete-price-color);
    color: var(--white);
}

.blog-card-inner:hover {
    box-shadow: 0px 1px 7px 1px rgba(220, 53, 69, 0.831);
}

.blog-card-inner:hover .blog-content .fandom-date span {
    color: var(--black);
}

.blog-content h3:hover {
    color: var(--first-color);
}

/* article page css  */
.article-left-col,
.article-right-col {
    border: 1px solid var(--black);
    padding: 20px;
    background-color: rgba(35, 32, 32, 0.584);
}

.article-heading {
    flex-direction: column;
    gap: 15px;
}

.article-heading h2 {
    font: var(--h4);
}

.article-heading span {
    color: var(--error-color);
}

.article-img {
    margin: 20px 0px;
}

.article-img .img-ratio {
    padding-top: 50%;
}

.article-content p:not(:last-child) {
    margin-bottom: 15px;
}

.atricle-parts li:not(:last-child) {
    margin-bottom: 10px;
}

.atricle-parts li {
    color: var(--third-color);
}
 
.reviews-section .section-title {
    font: var(--h4);
    margin: 12px 0px;
    border-left: 5px solid #b53dc6;
    padding-left: 10px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.review-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -moz-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -ms-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 2px 4px rgba(181, 61, 198, 0.3);
}

.review-card .img-wrapper {
    padding-top: 70%;
}

.review-image {
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
}

.review-card:hover .review-image {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.review-card .review-content {
    padding: 15px;
}

.review-card .movie-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.review-card .movie-review {
    font-size: 14px;
    margin-bottom: 10px;
}

.review-card .stars {
    display: flex;
    gap: 2px;
}

.review-card .star {
    font-size: 18px;
    color: var(--grey);
}

.review-card .star.filled {
    color: var(--light-yellow);
}

.article-left-col {
    flex: 1;
    overflow-y: auto;
    max-height: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    background-color: rgb(28, 28, 28);
    padding: 15px;
    margin-top: 20px;
    gap: 15px;
    border: 1px solid var(--border-color);
}

.nav-item {
    display: flex;
    flex-direction: column;
    max-width: 45%;
}

.nav-item strong {
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--light-yellow);
}

.nav-item a {
    text-decoration: none;
    margin: 2px 0;
    color: var(--white);
    transition: color 0.3s ease;
}

.nav-item.next {
    text-align: end;
}

.nav-item a:hover {
    color: var(--first-color);
}

.article-form label {
    margin: 15px 0;
    font-size: 15px;
}
.xgplayer {
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}
.xgplayer video {
    height: auto !important;
}
.xgplayer .xgplayer-controls ,
.xgplayer .xgplayer-replay ,
.xgplayer .xgplayer-start {
    z-index: 2;
}
/**** log in page  ****/
.login-extra {
    padding: 20px;
}

.login-extra .tabs {
    display: flex;
    justify-content: space-between;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
}

.login-extra .tabs.main-tabs{
    border: unset;
    border-radius: 0;
    margin-bottom: 0;
    flex-direction: column;
}

.login-extra .wallet-tabs .tabs{
    justify-content: flex-start;
    border: 0;
    border-radius: 0;
}

.login-extra .tab {
    flex: 1;
    justify-content: center;
    align-items: center;
    padding: 12px;
    gap: 10px;
    display: flex;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
    font-weight: 500;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
}

.login-extra .tab svg {
    height: 20px;
    width: 20px;
}

/* .login-extra .tab:hover, */
.login-extra .tab.active {
    background: linear-gradient(224deg, hsla(0, 0%, 6%, 0), #0a0a0a 46%, hsla(0, 0%, 9%, .77));
    color: var(--first-color);
}

.login-extra .tab:hover{
    color: var(--first-color);
}

.login-extra .wallet-tabs .tabs .tab.active,
.login-extra .wallet-tabs .tabs .tab:hover{
    background-color: unset;
    background: unset;
    color: var(--first-color);
}

.login-extra .wallet-tabs .tabs .tab::after{
    content: '';
    width: 0;
    height: 4px;
    border-radius: 20px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--first-color);
    transition: width ease-in-out 0.3s;
    -webkit-transition: width ease-in-out 0.3s;
    -moz-transition: width ease-in-out 0.3s;
    -ms-transition: width ease-in-out 0.3s;
    -o-transition: width ease-in-out 0.3s;
}

.login-extra .wallet-tabs .tabs .tab:hover:after,
.login-extra .wallet-tabs .tabs .tab.active:after{
    width: 50%;
}

.login-extra .wallet-tabs .tabs .tab{
    flex: none;
    border: unset;
    position: relative;
    /* border-left: 1px solid var(--border-color); */
}

.login-extra .wallet-tabs .tabs .tab:first-child{
    border: unset;
}

.login-extra .tabs.main-tabs .tab{
    border-radius: 6px;
    border: 1px solid var(--border-color);
    margin-bottom: 5px;
    flex: 0;
}

.account-balance {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    flex: 1;
}

.log-in-sec-new .account-balance{
    border: unset;
    border-radius: 0;
    padding: 15px;
    background: linear-gradient(224deg, hsla(0, 0%, 6%, 0), #0a0a0a 46%, hsla(0, 0%, 9%, .77));
}

.account-balance h3 {
    margin-bottom: 15px;
    font: var(--h3);
}

.balance-items {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.balance-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.balance-item svg {
    height: 24px;
    width: 24px;
}

.balance-item .label {
    color: var(--third-color);
}

.balance-item .value {
    font-size: 16px;
    font-weight: bold;
}

/**** log in profile ****/
.profile-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    flex: 1;
    gap: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.log-in-sec-new .profile-box{
    border: unset;
    border-radius: 0;
    box-shadow: unset;
    padding: 15px;
}

.profile-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.profile-box .profile-info {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.profile-box .profile-photo{
    width: 50px;
    height: 50px;
}

.profile-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.profile-id {
    font-size: 14px;
    color: rgb(119, 119, 119);
}

/**** wallet section ****/
.wallet-section {
    margin: 20px auto;
}

.wallet-section h2 {
    margin-bottom: 15px;
    font: var(--h3);
}

.table-container {
    overflow-x: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.responsive-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 290px;
}

.responsive-table th,
.responsive-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}
.coin-container {
    max-height: calc(50px * 7);
    overflow-y: auto;
    border: 1px solid var(--border-color);
}
.coin-tables thead th {
    position: sticky;
    top: 0;
    z-index: 1;
}
.coin-tables th,
.coin-tables td {
    text-align: center;
    border-right: 1px solid var(--border-color);
}

.responsive-table th i {
    margin-right: 8px;
}

.responsive-table tbody tr:hover {
    background-color: rgba(66, 232, 213, 0.064);
}

@media (max-width: 768px) {
    .responsive-table thead {
        display: none;
    }

    .responsive-table td {
        display: flex;
        justify-content: space-between;
        border-bottom: none;
        gap: 15px;
    }

    .responsive-table tbody tr:nth-child(odd) {
        background-color: rgba(144, 137, 248, 0.067);
    }
}


.popup-box .topup-section h2 {
    font: var(--h3);
    margin-bottom: 15px;
}

/**** top up page  ****/
.topup-section {
    max-width: 80%;
    margin: 20px auto;
    background-color: rgb(17, 17, 17);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.topup-section .section-heading { 
    margin-bottom: 20px;
    color: var(--light-yellow);
}

.topup-section .section-heading i {
    margin-right: 10px;
}

.new-user-offer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #61045f38, #aa076b38);
    border-radius: 10px;
    padding: 15px;
    grid-area: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.new-user-offer.active {
    border: 2px solid rgb(255, 64, 129);
}

.offer-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.offer-icon {
    font-size: 2.5rem;
    color: var(--light-yellow)
}

.offer-amount {
    font-size: 1.5rem;
    font-weight: bold;
}

.coin-packages .bonus {
    color: var(--first-color);
    font-weight: 500;
    font-size: 14px;
}

.offer-label {
    color: rgb(255, 64, 129);
    font-size: 0.85rem;
    margin-top: 4px;
}

.offer-price {
    font-size: 1.2rem;
    font-weight: bold;
}

.bonus-tag {
    background: rgb(255, 64, 129);
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 5px;
    margin-left: 8px;
}

.coin-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.coin-packages .package {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgb(30, 30, 30);
    border-radius: 8px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all ease-in-out 500ms;
}

.coin-packages .package:hover {
    transform: scale(1.05);
}

.coin-packages .package.active{
    border: 1px solid rgb(255, 64, 129);
}

.coin-packages .coins {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font: var(--h5);
    font-weight: bold;
    padding: 15px;
}

.coin-packages .price {
    color: var(--light-yellow);
    padding: 5px;
    justify-content: center;
    background-color: rgb(51, 51, 51);
}

.payment-method h3 {
    margin-bottom: 20px;
}

.methods {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.method {
    background-color: rgb(51, 51, 51);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    transition: all ease-in-out 500ms;
    -webkit-transition: all ease-in-out 500ms;
    -moz-transition: all ease-in-out 500ms;
    -ms-transition: all ease-in-out 500ms;
    -o-transition: all ease-in-out 500ms;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
 
.method:hover {
    background-color: var(--delete-price-color);
}

.method.selected{
    border: 1px solid var(--first-color);
}

/* OMEGA */
/**** Reels Popup ****/
.reels-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.reels-popup.hidden {
    display: none;
}

.reels-popup-content {
    background-color: rgb(27, 27, 27);
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
    text-align: center;
}

.reels-popup-content video {
    border-radius: 10px;
    max-height: 550px;
}

.reels-popup-content .close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    height: 16px;
    width: 16px;
    cursor: pointer;
}

/** CMS PAGE  **/
.cms-page h4 {
    font: var(--h6);
}

.cms-page h4,
.cms-page h6 {
    margin-bottom: 20px;
    background-color: var(--delete-price-color); 
    padding: 10px;
    color: var(--white);
}

.cms-page h5 {
    margin-bottom: 20px;
    padding: 0px 10px;
}

.cms-page p:not(:last-of-type) {
    margin-bottom: 25px;
}

.cms-page p {
    padding-left: 15px;
}

.cms-page ul {
    margin: 0px 15px 25px;
    padding-left: 20px;
}

.cms-page ul li {
    list-style: disc;
}

.cms-page ul li:not(:last-of-type) {
    margin-bottom: 10px;
}

/*** Choose Plan page  ***/
.plan-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.plan-container h2 {
    margin-bottom: 10px;
}

.plan-container .subtitle {
    margin-bottom: 30px;
}

.plan-container .plans {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.plan-card {
    background: rgb(28, 28, 28);
    border: 1px solid var(--delete-price-color);
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    position: relative;
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: var(--error-color);
}

.plan-card h3 {
    margin-bottom: 10px;
}

.plan-card .price {
    font-size: 18px;
    color: var(--error-color);
    margin-bottom: 15px;
    justify-content: center;
}

.plan-card ul {
    margin-bottom: 20px;
}

.plan-card ul li {
    margin-bottom: 10px;
}

.popular {
    border: 2px solid var(--red);
}

.badge {
    background: var(--error-color);
    font-size: 0.8rem;
    padding: 5px 10px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
} 

/****** log in page css *******/
.log-in-page {
  position: relative;
  min-height: 100vh;
  background: url('/assets/images/signin_new.png') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.log-in-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.621);  
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  z-index: 0;
}

.log-in-page .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  max-width: auto;
  width: auto;
  padding: 0px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}  
  
.log-in-page .form-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 25px;
  border-radius: 10px;
  width: 450px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  text-align: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.log-in-page .form-container h2 {
    font: var(--h3);
    margin-bottom: 20px;
}
.log-in-page .social-login {
  display: flex;
  flex-direction: column;
  gap: 12px;
    padding-top: 22px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: all ease-in-out 500ms;
  -webkit-transition: all ease-in-out 500ms;
  -moz-transition: all ease-in-out 500ms;
  -ms-transition: all ease-in-out 500ms;
  -o-transition: all ease-in-out 500ms;
}
 
.social-btn svg  {
    height: 25px;
    width: 25px;
}
.social-btn.google {
  background-color: rgb(219, 68, 55); 
}

.social-btn.facebook {
  background-color: rgb(24, 119, 242); 
}

.social-btn.apple {
  background-color: rgb(0, 0, 0); 
}

.separator {
  margin: 25px 0;
  text-align: center;
  position: relative;
  font-size: 14px; 
}

.separator::before,
.separator::after {
  content: "";
  height: 1px;
  width: 40%;
  background: rgb(204, 204, 204);
  position: absolute;
  top: 50%;
}

.separator::before {
  left: 0;
}

.separator::after {
  right: 0;
}
 
.separator span {
    background: rgb(0 0 0 / 52%);
    padding: 5px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.log-in-page .form-container form {
  display: flex;
  flex-direction: column;
  gap: 15px; 
} 
.log-in-page .form-container form input {
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
} 
.signup-text {
  margin-top: 15px;
  font-size: 13px;
}
.signup-text a { 
  text-decoration: underline;
}

/* Error Page  */
.error-sec {
    padding: 160px 0px;
}
.error-inner {
    text-align: center;
}
.error-inner h2 {
    font-size: 100px;
}
.error-inner h3 {
    font-size: 40px;
}
.error-inner h2 , .error-inner h3 ,.error-inner p {
    margin-bottom: 20px;
}
.swiper-pagination-bullet {
  background-color: #ccc;
  opacity: 1;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin: 0 4px;
  transition: all 0.3s ease;
}

/* Active dot style (bar look) */
.swiper-pagination-bullet-active {
  background-color: #ffffff;
  width: 24px;
  height: 6px;
  border-radius: 3px;
}

.login-image {
    text-align: -webkit-center;
}
.login-image > img {
    width: 35%;
}
.signin-footer {
    text-align: center;
    margin-top: 60px;
    font-size: 12px;
    font-weight: 500;
    color: #ababab;
    line-height: 18px;
}
.signin-footer > a {
    color: #ffffff;
}
.episode-view-main {
    padding-top: 80px;
}
#video-player {
    border-radius: 1%;
}

.video-loader {
  border: 6px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid var(--first-color);
  width: 60px;
  height: 60px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.video-loder-div {
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* maintenance page */

.under-maintenance .container{
    height: 100dvh;
}

.maintenance-title {
    margin-bottom: 1rem;
    font-size: 3rem;
}

.container .what-is-up {
    width: 100%;
    display: block;
    vertical-align: middle;
    text-align: center;
    box-sizing: border-box;
}

.container .what-is-up .spinny-cogs {
    display: block;
    margin-bottom: 2rem;
    color: var(--first-color);
}

@-webkit-keyframes fa-spin-one {
    0% {
        transform: translateY(-2rem) rotate(0deg);
    }
    100% {
        transform: translateY(-2rem) rotate(-359deg);
    }
}

@keyframes fa-spin-one {
    0% {
        transform: translateY(-2rem) rotate(0deg);
    }
    100% {
        transform: translateY(-2rem) rotate(-359deg);
    }
}

.fa-spin-one, .container .what-is-up .spinny-cogs .fa:nth-of-type(1) {
    -webkit-animation: fa-spin-one 1s infinite linear;
    animation: fa-spin-one 1s infinite linear;
}

@-webkit-keyframes fa-spin-two {
    0% {
        transform: translateY(-0.5rem) translateY(1rem) rotate(0deg);
    }
    100% {
        transform: translateY(-0.5rem) translateY(1rem) rotate(-359deg);
    }
}

@keyframes fa-spin-two {
    0% {
        transform: translateY(-0.5rem) translateY(1rem) rotate(0deg);
    }
    100% {
        transform: translateY(-0.5rem) translateY(1rem) rotate(-359deg);
    }
}

.fa-spin-two, .container .what-is-up .spinny-cogs .fa:nth-of-type(3) {
    -webkit-animation: fa-spin-two 2s infinite linear;
    animation: fa-spin-two 2s infinite linear;
}