:root {
    --first-font: "Play", sans-serif;
    --second-font: "DM Sans", sans-serif;
    --first-color: #ff5733;
    --third-color: #16a085;
    --text-color: #707070;
    --light-yellow: #facc15;
    --body-text-color: #f1f1f1;
    --body-bg-color: #09090f;
    --dark-black: #111;
    --error-color: #F74032;
    --success-color: #35AD65;
    --price-color: #FF9139;
    --delete-price-color: #555555;
    --border-color: #555555;
    --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;
    border-radius: 6px !important;
    line-height: 1;
    color: var(--white);
    -webkit-border-radius: 6px !important;
    -moz-border-radius: 6px !important;
    -ms-border-radius: 6px !important;
    -o-border-radius: 6px !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(--white);
    text-transform: capitalize;
}

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

input::-webkit-autofill {
    color: var(--white) !important;
}

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

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

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

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

::selection {
    background: rgb(255 197 159 / 30%);
}

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;
    -webkit-text-fill-color: var(--white) !important;
}

/* 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-color: var(--body-bg-color);
    color: var(--body-text-color);
}
 
.section-title {
    margin: 0 0 26px;
}

.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,
.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);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--white);
}

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(--first-color);
    cursor: pointer;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background: var(--border-color);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.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(--third-font);
    color: var(--white);
    background-color: var(--first-color);
    /* background-image: linear-gradient(to right, #8961d7 0%, #b53dc6 51%, #d54dd2 100%); */
    box-shadow: 0px 1px 5px rgba(255, 65, 108, 0.5);
    appearance: none;
    outline: none;
    line-height: 1;
    text-transform: capitalize;
    gap: 10px;
    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-image: linear-gradient(to right, #c7004c 0%, #fb5050 51%, #ff0592 100%);
    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-secondary {
    background: var(--second-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(--black);
}

.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;
}

/* ========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: 70px;
}

.pb {
    padding-bottom: 70px;
}

.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 30px 10px 15px;
    min-width: 135px;
    border-radius: 50px;
    -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: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.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: 16px;
    -webkit-transition: transform 500ms linear, -webkit-transform 500ms linear;
    transition: -webkit-transform 500ms linear;
    -o-transition: transform 500ms linear, -webkit-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%);
    -moz-transition: transform 500ms linear, -webkit-transform 500ms linear;
    -ms-transition: transform 500ms linear, -webkit-transform 500ms linear;
}

.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(--white);
    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: 40px;
    left: auto;
    right: 0;
    width: 100%;
    border-radius: 6px;
    min-width: 100px;
    -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;
    color: var(--black) !important;
}

.nice-select .option {
    color: var(--black);
    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;
}

.select__option{
    color: var(--black) !important;
    -webkit-transition: all 500ms ease-in-out 0s;
    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;
}

.select__option:first-child{
    background-color: transparent !important;
}

.select__option:hover,
.select__option.focus,
.select__option.selected.focus {
    background-color: var(--first-color) !important;
    color: var(--white) !important;
}

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

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

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

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

.user-profile img {
    height: 22px;
    width: 22px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.user-profile-details img {
    height: 50px;
    width: 50px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* Close button inside sidebar header - visible only on mobile */
.close-sidebar-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 4px;
}

/* Upgrade Popup */
.upgrade-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.upgrade-popup .popup-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 0;
}

.upgrade-popup .popup-content {
    position: relative;
    background: var(--black);
    color: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: popupFadeIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-animation: popupFadeIn 0.3s ease;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.upgrade-popup .popup-content h2 {
    text-align: center;
    margin-bottom: 20px;
}

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

.upgrade-popup .plan {
    background: #292929;
    border-radius: 10px;
    padding: 20px;
    flex: 1 1 200px;
    min-width: 230px;
    max-width: 250px;
    text-align: center;
    border: 2px solid transparent;
    transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-ou t 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;
}

.upgrade-popup .plan:hover {
    border-color: var(--first-color);
}

.upgrade-popup .plan h3 {
    margin-bottom: 10px;
    font-size: var(--h4);
}

.upgrade-popup .plan .price {
    font-size: 24px;
    margin-bottom: 15px;
    justify-content: center;
    color: var(--price-color);
}

.upgrade-popup .plan ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.upgrade-popup .plan ul li {
    margin: 8px 0;
}

.upgrade-popup .select-btn {
    background-color: var(--price-color);
    color: var(--black);
    border: none;
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
}

.upgrade-popup .select-btn:hover {
    background-color: var(--price-color);
}

.upgrade-popup .plan:hover {
    background: linear-gradient(180deg, #0a2031, #5f136a);
    transform: scale(1.05);
}

.upgrade-popup .plan:hover .select-btn {
    background: var(--black);
    color: var(--white);
}

.upgrade-popup .close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 1.5rem;
    background: none;
    color: var(--white);
    border: none;
    cursor: pointer;
}

/* ============================================= */
/* !!!!         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);
    background-image: linear-gradient(-225deg, #FFFEFF 0%, #D7FFFE 100%);
    -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: 5;
}

@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);
    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);
}


/* Sidebar Styles */

.sidebar-menu {
    list-style: none;
    padding: 0;
    max-height: 100vh;
    overflow-y: auto;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    padding: 5px;
    border-radius: 3px;
    border: none;
    background-image: linear-gradient(45deg, #874da2 0%, #c43a30 100%);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.mobile-menu-btn {
    display: none;
}

.mobile-menu-btn svg path {
    fill: var(--white);
}

.mobile-menu-btn svg {
    height: 15px;
    width: 15px;
}

.sidebar-menu li {
    margin-bottom: 10px;
}

.sidebar-menu li {
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.logo-col {
    gap: 12px;
    margin: 0 15px;
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
}

.sidebar-header {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-menu li a {
    gap: 10px;
    display: flex;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    perspective: 1000px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.sidebar-menu li a i {
    font-size: 16px;
    transition: transform 0.4s ease, color 0.3s ease;
    -webkit-transition: transform 0.4s ease, color 0.3s ease;
    -moz-transition: transform 0.4s ease, color 0.3s ease;
    -ms-transition: transform 0.4s ease, color 0.3s ease;
    -o-transition: transform 0.4s ease, color 0.3s ease;
}

.sidebar-menu li a:hover, .sidebar-menu li a.active {
    color: var(--light-yellow);
    border-left: 1px solid var(--first-color);
    background-color: rgba(127, 115, 115, 0.341);
}

.sidebar-menu li a:hover i, .sidebar-menu li a.active i {
    transform: rotateY(20deg) scale(1.1);
    color: var(--second-color);
}

.sidebar-menu li a:hover::after, .sidebar-menu li a.active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    border-left: 1px solid transparent;
    transition: transform 0.3s ease;
    transform: translateY(-50%);
    height: 70%;
    width: 4px;
    background-color: var(--second-color);
    border-radius: 2px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
}

.sidebar-menu li a span {
    transition: text-shadow 0.3s ease;
    -webkit-transition: text-shadow 0.3s ease;
    -moz-transition: text-shadow 0.3s ease;
    -ms-transition: text-shadow 0.3s ease;
    -o-transition: text-shadow 0.3s ease;
}

.sidebar-menu li a:hover span, .sidebar-menu li a.active span {
    text-shadow: 0 0 6px rgba(255, 165, 0, 0.7);
}

/* Main Content Styles */
.main-content {
    position: relative;
    margin-left: 300px;
    padding: 20px;
    width: calc(100% - 300px);
    z-index: 1;
}

.hidden {
    display: none;
}

/* Table Styles */
table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-top: 20px;
}

.table-responsive {
    display: block;
}

table th,
table td {
    padding: 10px !important;
    text-align: left;
    border: 1px solid var(--delete-price-color);
}

table th {
    background-color: var(--first-color) !important;
    font-family: var(--first-font);
    color: var(--white) !important;
}

.table> :not(caption)>*>* {
    background-color: #383838;
    color: var(--white);
}

.table-striped>tbody>tr:nth-of-type(even)>* {
    background-color: var(--body-bg-color);
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
    background-color: rgba(9, 9, 15, 0.468);
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgb(106 106 106 / 23%);
}

.user-table th,
.user-table td {
    border: none !important;
}

.tbl_img {
    max-width: 50px;
    max-height: 50px;
    object-fit: cover;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
}

table.dataTable th,
table.dataTable td {
    padding: 10px 28px !important;
    vertical-align: middle !important;
    white-space: nowrap;
}

.user-table td.user-data {
    max-width: 400px;
    width: 100%;
    white-space: normal;
}

.dataTables_length label {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 18px;
    margin-bottom: 20px;
    gap: 10px;
}

div.dataTables_wrapper div.dataTables_filter input {
    border-radius: 4px !important;
    background: transparent;
    color: white;
    border: 1px solid var(--border-color);
    -webkit-border-radius: 4px !important;
    -moz-border-radius: 4px !important;
    -ms-border-radius: 4px !important;
    -o-border-radius: 4px !important;
}
div.dataTables_wrapper div.dataTables_filter input:focus {
    border: 1px solid #fff;
}   
table.dataTable td {
    width: 100%;
} 
.user-table td.sorting_1 {
    width: auto;
}

/* .dataTables_filter .form-select , */
.dataTables_length label select {
    padding: 6px 20px !important;
    border: 1px solid var(--border-color);
    color: var(--white);
    background-color: transparent;
    background-image: none;
}

.dataTables_length label select option {
    color: var(--white);
    background-color: #d33838d3 !important;
}

.dataTables_length label select option:focus {
    color: #ffffff;
    background-color:#ff5733 !important;
}
.table .form-select {
    width: auto;
}
/* .movie-table {
    table-layout: fixed !important;
    width: 100% !important;
} */
/* table card css  */
.card {
    border: 1px solid var(--border-color);
    position: relative;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px 0 rgb(88 88 88 / 10%) !important;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    background: var(--theme-dark);
    color: var(--text-white) !important;
}

.card .card-header {
    border-bottom-color: var(--border-color);
    line-height: 30px;
    -ms-grid-row-align: center;
    align-self: center;
    width: 100%;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    position: relative;
}

.card .card-header::before {
    content: "";
    position: absolute;
    left: 0px;
    height: 26px;
    width: 4px;
    background: var(--first-color);
    top: 50%;
    bottom: 0;
    transform: translateY(-50%);
    border-radius: 0 10px 10px 0;
}

/* Sidebar Styling for Dark Mode */
.sidebar {
    width: 280px;
    height: 100%;
    padding: 20px 0px 0px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-right: 1px solid var(--border-color);
}


.sidebar a img {
    width: 40px;
    height: 40px;
}

/* Navbar Styling for Dark Mode */
.navbar {
    background-color: #222222;
    color: #E0E0E0;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar h1 {
    font-size: 28px;
    color: #3498db;
}

.navbar button {
    background-color: #3498db;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.navbar button:hover {
    background-color: #2980b9;
}

.site-header {
    margin-bottom: 25px;
}

.site-header .about-profile-left .input-wrapper {
    gap: 10px;
    padding: 10px 15px;
    background: rgba(164, 164, 164, 0.184);
    box-shadow: transparent;
    backdrop-filter: blur(10px);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.site-header .about-profile-left .input-wrapper input {
    padding: 0px;
    border: none;
}

.site-header .about-profile-left .input-wrapper:hover {
    box-shadow: rgba(222, 46, 84, 0.4) 0px 0px 0px 2px, rgba(80, 22, 255, 0.65) 0px 4px 1px -2px, rgba(255, 0, 0, 0.258) 0px 1px 0px inset;
}

ul.tabs {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 10px;
    border-bottom: 1px solid var(--grey);
    margin-bottom: 20px;
}

ul.tabs li {
    font-family: var(--first-font);
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
}

ul.tabs li.active {
    font-weight: 600;
    background-color: var(--third-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/**** Dashboard Section ****/

.dashboard-blog-content-top a {
    gap: 10px;
    display: flex;
    color: var(--price-color);
    font-weight: 500;
    align-items: center;
    font-size: 18px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.dashboard-blog-content-top a svg {
    height: 18px;
    width: 18px;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    grid-auto-rows: minmax(50px, auto);
    width: 100%;
}

.dashboard-blog {
    background-color: #1e1e2c;
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
    padding: 20px 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.dashboard-blog:hover {
    box-shadow: rgba(21, 188, 138, 0.35) 0px 3px 4px;
}

.dashboard-blog:hover .dashboard-blog-content-top a {
    color: var(--red);
}

.dashboard-blog-content-top {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    text-align: right;
    height: 100%;
}

.dashboard-blog-content {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.dashboard-blog p {
    font-size: 22px;
    margin: 0;
    font-weight: 500;
    padding: 0 0 5px;
}

.dashboard-blog-content-top h5 {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.card-icon {
    background: var(--body-bg-color);
    border: 1px solid var(--border-color);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 10px 10px -10px #181b25;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.card-icon svg {
    width: 100%;
    stroke: var(--white);
    max-width: 30px;
    height: 30px;
}

.dashboard-blog-content h4 {
    margin: 0;
    text-transform: capitalize;
    margin-bottom: 5px;
}

/**** Content ( Movies & Tv Shows ) Section ****/
.table-layout-fixed {
    table-layout: fixed !important;
    width: 100% !important;
}
.report-column-name { 
    white-space: wrap !important; 
}  
.movie-table td .img-wrapper {
   display: flex;
	justify-content: center;  /* Horizontal center */
	align-items: center;      /* Vertical center */
	height: 100%;
}

.movie-table td .img-wrapper img {
	max-width: 60px;
    border-radius: 5%;
}

.movie-table td .img-wrapper img,
.top-contents-table td .img-wrapper img {
    object-position: top;
}

.top-contents-table td .img-wrapper {
    /* padding-top: 13%; */
    width: 60px;
    overflow: hidden;
    height: 60px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.top-contents-table td.content-img .content-img-wrp {
    align-items: center;
    gap: 15px;
}

/* edit popup  */
.edit-heading {
    margin: 15px 0px;
    padding: 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--delete-price-color);
}

.common-popup .edit-close-btn {
    background-color: var(--first-color);
    border-radius: 5px;
    padding: 5px;
    height: 25px;
    min-width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    border: none;
    z-index: 1;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.common-popup .edit-close-btn svg {
    height: 14px;
    width: 14px;
}

.common-popup {
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    max-height: 90vh;
    max-width: 600px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    margin: 0 auto;
    color: var(--black);
    background-color: var(--body-bg-color);
    overflow: hidden;
    box-shadow: rgba(68, 165, 238, 0.3) 0px 1px 2px 0px, rgba(208, 79, 227, 0.15) 0px 2px 6px 2px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transform: translateY(-50%) scale(0);
    -webkit-transform: translateY(-50%) scale(0);
    -moz-transform: translateY(-50%) scale(0);
    -ms-transform: translateY(-50%) scale(0);
    -o-transform: translateY(-50%) scale(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: 5;
}

.common-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
    -webkit-transform: translateY(-50%) scale(1);
    -moz-transform: translateY(-50%) scale(1);
    -ms-transform: translateY(-50%) scale(1);
    -o-transform: translateY(-50%) scale(1);
}

.edit-inner {
    max-height: 70vh;
    overflow-y: auto;
    padding: 0 20px 20px;
}

.edit-inner .nice-select {
    padding: 12px 20px;
}
.edit-inner .nice-select:focus, .settings-form .nice-select:focus {
    background-color: var(--black);
    color: var(--white);
}

/* Featured Content Slider */
.featured-content {
    margin: 0 15px 20px;
}

.featured-content h6 {
    margin-bottom: 15px;
}

.featured-item {
    padding-top: 25%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
}

.featured-slider .swiper-wrapper,
.series-slider .swiper-wrapper {
    padding-bottom: 40px;
}

.movie-name {
    padding: 10px 8px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 8px;
    overflow: hidden;
    position: absolute;
    bottom: 0px;
    right: 0px;
    left: 0px;
    z-index: 1;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.movie-name p {
    font-size: 14px;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    color: var(--white);
}

.movie-name span {
    font-size: 12px;
    color: var(--white);
}

.content-popup {
    max-width: 95%;
}
 
.actors-table td .img-wrapper ,
.live-tv-table td .img-wrapper {
    /*padding-top: 6%;
    */width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
} 
.notification-table.noti-wrp.dataTable td {
    white-space: inherit;
}
.notification-edit-popup .edit-inner .form-group:last-child,
.notification-add-popup .edit-inner .form-group:last-child {
    margin: 0px;
}
/* Shorting arrow none */
th.sorting::before,
th.sorting::after,
th.sorting_asc::before,
th.sorting_asc::after,
th.sorting_desc::before,
th.sorting_desc::after {
  display: none !important;
}

/**** Upload images css  ****/
.form-img-upload .upload-options {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9; 
}

.form-img-upload .upload-options label {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
}

.form-img-upload .upload-options input {
    opacity: 0;
    z-index: 0;
    height: 100%;
}

.form-img-upload .upload-box {
    position: relative;
    cursor: pointer;
}

.form-img-upload .upload-label {
    display: block;
    position: relative;
}

.form-img-upload .upload-label img {
    border-radius: 8px;
    transition: 0.3s;
}
 
.form-img-upload .custom_img {
    height: 150px;
    max-height: 150px;
    min-height: 150px;
    width: 170px;
    max-width: 170px;
    min-width: 170px;
    position: relative;
    overflow: hidden;
    object-fit: cover;
    background: rgb(118 118 128 / 12%);
    border: 1px solid #313131;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    outline: 1.5px solid rgb(221 221 221 / 20%);
    outline-offset: -1.5px;
}
/**** genres section  ****/

.genres-table td.sorting_1 ,
.live-tv-table td.sorting_1 {
    width: 100%;
}

/**** live-tv section  ****/ 

.live-tv-img .img-wrapper {  
    /* padding-top: 30%; */
    height: 60px;
    width: 60px;
    background-color: var(--white);
    overflow: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.live-tv-img .img-wrapper img {
    padding: 5px;
}
.live-tv-channels-table .live-tv-img .img-wrapper img {
    padding: 0px;  
} 
.live-tv-channels-edit-popup .edit-inner .nice-select {
    padding: 14px 20px;
}



 
  









.swiper-pagination-bullet,
.swiper-pagination-bullet {
    width: 25px;
    height: 3px;
    border-radius: 2px;
    background-color: var(--white);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
} 

/* Preloader Styling */
#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;
}

.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;
} 
/* Hide Content Initially */
#content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* 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;
    }
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.badges {
    margin-bottom: 15px;
}

.badge {
    background: var(--grey);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
}

.rating-value {
    color: var(--text-color);
}

.admin-actions .btn {
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    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;
}

.admin-actions .btn:hover {
    background-color: #444;
}

/**** movie management table css  ****/
.table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.trending-table {
    margin-bottom: 15px;
    min-width: 600px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.trending-table thead {
    background: linear-gradient(to right, #1e293b, #0f172a);
}

.trending-table th,
.trending-table td {
    white-space: nowrap;
}

.trending-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.trending-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.badge-up {
    background-color: var(--success-color);
}

.badge-down {
    background-color: var(--error-color);
}

/**** Public Interest Chart  ****/
.fancy-card {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5);
    margin-top: 30px;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.fancy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 2px 4px rgb(2 71 96 / 78%);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
}

.fancy-card .header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.fancy-card h2 {
    font-size: 24px;
    font-weight: 500;
    color: var(--light-yellow);
}

.chart-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 15px;
    width: 100%;
    height: 300px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.blur-overlay {
    backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/**** public-reviews-section  */
.public-reviews-section {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border-radius: 6px;
    padding: 20px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.public-reviews-section h2 {
    font-size: 24px;
    color: var(--light-yellow);
    margin-bottom: 15px;
}

.public-reviews-section .header {
    margin-bottom: 20px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 15px;
}

.review-card {
    background: linear-gradient(to right top, #1e293b, #0f172a);
    border-radius: 10px;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    -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;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.review-header h4 {
    font-size: 14px;
    color: var(--first-color);
}

.review-user {
    font-size: 12px;
    color: var(--border-color);
    margin-left: 6px;
}

.stars {
    color: var(--light-yellow);
    font-size: 12px;
}

/***** Tv Show Reviw Section  *****/
.tvshow-reviews-section {
    background: #1b1b29;
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.tvshow-header h2 {
    margin-bottom: 10px;
    font-size: 24px;
    color: var(--light-yellow);
}

.tvshow-subtext {
    margin-bottom: 15px;
    display: block;
}

.tvshow-reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.tvshow-review-card {
    background: #27293d;
    border-radius: 12px;
    padding: 15px;
    flex: 1 1 calc(33.333% - 20px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
}

.tvshow-review-card:hover {
    transform: translateY(-5px);
}

.tvshow-review-header {
    display: flex;
    gap: 5px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.tvshow-review-header h4 {
    font-size: 16px;
}

.tvshow-review-user {
    font-size: 12px;
    margin-left: 8px;
}

.tvshow-review-comment {
    font-size: 14px;
}


/**** User overview section  ****/
.overview-user-section {
    padding-bottom: 40px;
}

.overview-user-section h2 {
    margin-bottom: 20px;
}

.user-overview-section {
    display: grid;
    border-radius: 15px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-family: var(--second-font);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.user-card {
    background: rgba(46, 46, 46, 0.329);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    -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;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.user-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-profile-details {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: var(--first-color);
    color: var(--white);
}

.dropdown-menu {
    top: 8px !important;
}

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

.user-info {
    color: var(--white);
}

.username {
    font: var(--h5);
    margin: 0;
    color: var(--first-color);
}

.user-card .email {
    font-size: 14px;
    margin: 5px 0;
}

.user-card .role {
    color: var(--light-yellow);
    font-size: 14px;
}

.user-card .label {
    color: rgba(194, 194, 194, 0.902);
    font-weight: 500;
}

.user-card .user-details {
    display: grid;
    gap: 6px;
    font: var(--common-text);
    color: var(--body-text-color);
}

.user-card .status.success {
    color: var(--success-color);
    font-weight: 600;
}

.user-card .user-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.user-card .btn {
    padding: 8px 14px;
    border-radius: 8px;
    border: none;
    font: var(--h6);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    background: var(--third-color);
    color: var(--white);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.user-card .btn.edit:hover {
    background: var(--light-yellow);
}

.user-car .btn.suspend:hover {
    background: var(--error-color);
}

.user-card .btn.delete:hover {
    background: var(--red);
}

/**** user-activity-analytics section  ****/
.user-activity-analytics {
    background: rgb(24 24 24 / 32%);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 25px;
    font-family: var(--second-font);
    color: var(--white);
    box-shadow: 0 2px 4px rgb(213 102 123 / 25%);
    margin-bottom: 40px;
}

.analytics-header h2 {
    font: var(--h4);
    color: var(--light-yellow);
    margin-bottom: 15px;
}

.analytics-subtext {
    margin-bottom: 15px;
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.analytics-box {
    background: rgba(152, 168, 238, 0.039);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: left;
    transition: 0.3s ease;
    box-shadow: inset 0 0 0 transparent;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.analytics-box:hover {
    transform: translateY(-5px);
    box-shadow: inset 0 0 15px var(--third-color);
}

.analytics-box h4 {
    color: var(--light-yellow);
    margin-bottom: 10px;
    font: var(--h6);
}

.analytics-box p {
    font: var(--common-text);
    color: var(--body-text-color);
}

/***** subscription user plan section  *****/
.subscription-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    font-family: var(--second-font);
    color: var(--body-text-color);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.subscription-section .section-title {
    font: var(--h4);
    color: var(--light-yellow);
}

.subscription-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(335px, 1fr));
    gap: 15px;
}

.subscription-card,
.billing-history-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: 0.3s ease;
}

.subscription-card:hover,
.billing-history-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.plan-type {
    font-size: 18px;
    color: var(--success-color);
}

.subscription-card p {
    margin: 10px 0;
}

.subscription-card p>span {
    margin-right: 5px;
}

.plan-type.premium {
    color: var(--price-color);
}

.plan-typ .label {
    color: var(--grey);
}

.plan-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.billing-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    gap: 12px;
    border-bottom: 1px solid var(--body-text-color);
    font-size: 15px;
}

.billing-history-card h4 {
    margin-bottom: 10px;
}

.invoice-link {
    color: var(--light-yellow);
    text-decoration: underline;
    font-size: 13px;
}

/* Dashboard Container */
.dashboard-container {
    padding: 20px;
    padding-top: 50px;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background-color: #1e1e2c;
}

/* KPI Cards */

.kpi-cards {
    display: grid;
    grid: 1fr / auto auto auto auto;
    gap: 15px;
    margin-bottom: 30px;
}

.kpi-card {
    background: rgb(243 164 220 / 1%);
    backdrop-filter: blur(5px);
    padding: 15px;
    border-radius: 10px;
    min-width: 140px;
    text-align: center;
    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;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.kpi-card h3 {
    font-family: var(--first-font);
    font: var(--h5);
}

.kpi-card:hover {
    transform: scale(1.05);
}

.kpi-card .counter {
    font-size: 22px;
    color: var(--light-yellow);
    margin: 10px 0;
}

.progress-bar {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    height: 6px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.progress-fill {
    height: 100%;
    background: var(--success-color);
    width: 0%;
    transition: width 1s ease-in-out;
}

.charts-section {
    height: 400px;
}

.charts-section canvas {
    width: 100% !important;
}

/****** log in page css *******/
.log-in-page {
    background: none;
    background-color: var(--dark-black);
}

.log-in-page::before {
    display: none;
}

.log-in-page .container {
    display: flex;
    max-width: 100%;
    padding: 0px;
    height: 100vh;
}

.log-in-page .image-section {
    flex: 1;
    background: url('../images/signin_new.png') no-repeat center center/cover;
}

.log-in-page .form-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--dark-black);
}

.log-in-page .form-container {
    width: 100%;
    max-width: 500px;
    padding: 30px;
    margin: 25px;
    background-color: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    border-radius: 8px;
    animation: shadowPulse 3s ease-in-out infinite;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    -webkit-animation: shadowPulse 3s ease-in-out infinite;
}

.log-in-page .form-container h2 {
    margin-bottom: 10px;
    font-size: 32px;
    color: var(--light-yellow);
}

.log-in-page .form-container p,
.log-in-page .input-group {
    margin-bottom: 15px;
}

.log-in-page .input-group label {
    margin-bottom: 10px;
}

.log-in-page .actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.log-in-page .forgot-password {
    text-decoration: none;
    font-size: 12px;
    color: var(--light-yellow);
}

.log-in-page .forgot-password:hover {
    text-decoration: underline;
}

.log-in-page .signup-link {
    font-size: 12x;
    margin-top: 15px;
}

.log-in-page .signup-link a {
    color: var(--first-color);
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}

/*** log out page ***/
.log-out-wrp {
    text-align: center;
}

.log-out-wrp img {
    margin: 0 auto 20px;
    width: 40px;
    animation: zoomInOut 2s ease-in-out infinite;
    -webkit-animation: zoomInOut 2s ease-in-out infinite;
}

@keyframes zoomInOut {

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

    50% {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
    }
}

/* Fade-in Animation */
@keyframes shadowPulse {
    0% {
        box-shadow: 0 0 0px rgba(255, 87, 51, 0.6);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 87, 51, 0.6);
    }
    100% {
        box-shadow: 0 0 0px rgba(255, 87, 51, 0.6);
    }
}

/***** report-builder-section  *****/
.report-builder-section {
    background-color: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 15px;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 5px rgb(77 49 134 / 40%);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.report-builder-section h2 {
    font: var(--h3);
    margin-bottom: 15px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.report-builder-section>p {
    margin-bottom: 20px;
}

.report-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    transform-style: preserve-3d;
}

.feature-card {
    background-color: rgba(31, 31, 31, 0.511);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    transition: transform 0.6s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.05);
    transform: rotateY(0deg);
    animation: floatCard 6s ease-in-out infinite;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    -webkit-transition: transform 0.6s ease, box-shadow 0.3s ease;
    -moz-transition: transform 0.6s ease, box-shadow 0.3s ease;
    -ms-transition: transform 0.6s ease, box-shadow 0.3s ease;
    -o-transition: transform 0.6s ease, box-shadow 0.3s ease;
    -webkit-animation: floatCard 6s ease-in-out infinite;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
}

.feature-card svg {
    width: 25px;
    height: 25px;
}

.feature-card svg path {
    stroke: var(--third-color);
}

.feature-card:hover {
    transform: rotateY(10deg) translateY(-5px);
    box-shadow: 0 2px 6px rgba(255, 87, 51, 0.3);
    -webkit-transform: rotateY(10deg) translateY(-5px);
    -moz-transform: rotateY(10deg) translateY(-5px);
    -ms-transform: rotateY(10deg) translateY(-5px);
    -o-transform: rotateY(10deg) translateY(-5px);
}

.feature-icon {
    margin: 0 auto;
    height: 45px;
    width: 45px;
    margin-bottom: 15px;
}

.feature-title {
    font: var(--h5);
    color: var(--light-yellow);
    margin-bottom: 10px;
}

.feature-description {
    font-size: 14px;
}

@keyframes floatCard {

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

    50% {
        transform: translateY(-5px) rotateY(2deg);
    }
}

.builder-footer {
    margin-top: 15px;
    text-align: center;
}

.builder-footer span {
    color: var(--success-color);
}

/**** communication-logs  ****/
.communication-logs {
    background-color: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 20px;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.communication-logs h2 {
    font: var(--h3);
}

.communication-logs>p {
    margin-bottom: 20px;
}

.communication-logs .swiper {
    padding-bottom: 30px;
}

.communication-logs .swiper-slide {
    background-color: 0 3px 5px rgb(0 199 255 / 5%);
    border-left: 5px solid var(--third-color);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 12px;
    flex-direction: column;
    justify-content: center;
    animation: fadeInSlide 0.8s ease;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-animation: fadeInSlide 0.8s ease;
}

.communication-logs .log-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.communication-logs .log-desc {
    font-size: 14px;
    font-weight: 200;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.communication-logs .swiper-pagination-bullets {
    bottom: 0 !important;
}

.communication-logs .swiper-pagination-bullet-active {
    background-color: var(--third-color) !important;
}

/***** flowgrid-section *****/

.flowgrid-section {
    position: relative;
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(145deg, rgba(22, 160, 133, 0.05), rgba(0, 0, 0, 0.5));
    backdrop-filter: blur(60px);
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.flowgrid-section::before,
.flowgrid-section::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.15), transparent);
    filter: blur(120px);
    z-index: 0;
}

.flowgrid-section::before {
    top: -60px;
    left: -60px;
}

.flowgrid-section::after {
    bottom: -100px;
    right: -150px;
}

.flowgrid-title {
    font: var(--h3);
    margin-bottom: 20px;
}

.flow-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    backdrop-filter: blur(40px);
    border: 1px solid transparent;
    transition: all 0.4s ease;
    isolation: isolate;
    cursor: pointer;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.flow-card:hover {
    transition: all 0.4s ease;
    border: 1px solid var(--light-yellow);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.flow-icon {
    font-size: 32px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--light-yellow), var(--third-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.flow-card h3 {
    font: var(--h5);
    color: var(--light-yellow);
    margin-bottom: 15px;
}

.flow-desc {
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.flow-line.left {
    left: calc(50% - 190px);
}

.flow-line.right {
    right: calc(50% - 190px);
}

.flow-swiper {
    padding: 0 0px 40px;
}

/**** security-reports-section  ****/

.security-reports-section {
    margin-top: 40px;
    padding: 30px 40px;
    background: radial-gradient(circle at 30% 30%, rgba(22, 160, 133, 0.2), rgba(0, 0, 0, 0.7));
    backdrop-filter: blur(60px);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.security-title {
    font: var(--h3);
    margin-bottom: 15px;
}

.security-purpose {
    margin-bottom: 20px;
}

.security-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    border-left: 3px solid var(--light-yellow);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.timeline-block {
    position: relative;
    margin: 20px 0;
    padding-left: 60px;
}

.timeline-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: -20px;
    background: linear-gradient(135deg, var(--third-color), var(--light-yellow));
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 0 10px var(--third-color);
}

.timeline-content h4 {
    font: var(--h5);
    color: var(--light-yellow);
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 14px;
}

/** security-reports-section  **/
.general-settings-section {
    margin-bottom: 40px;
}

.settings-form .nice-select,
.setting-group .form-group .nice-select {
    border-radius: 5px;
    padding: 14px 20px 14px 14px;
    width: 100%;
    border: 1px solid var(--border-color);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

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

.settings-form input::placeholder,
.settings-form textarea::placeholder {
    color: var(--white) !important;
}

.setting-section .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.setting-section .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.setting-section .slider {
    position: absolute;
    cursor: pointer;
    background-color: var(--grey);
    border-radius: 34px;
    transition: 0.4s;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.setting-section .slider::before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: var(--white);
    transition: 0.4s;
    border-radius: 50%;
}

.setting-section input:checked+.slider {
    background-color: var(--third-color);
}

.setting-section input:checked+.slider::before {
    transform: translateX(28px);
}

.setting-btn {
    margin: 0 auto;
}

/* Root Section */
.subscription-plans-section {
    margin-top: 40px;  
    border-radius: 10px; 
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

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

.group-header h3 {
    font: var(--h4);
    margin-bottom: 10px;
}

.group-header p {
    font-size: 14px;
    margin-bottom: 15px;
}

/* Plan Cards */
.plan-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.plan-card {
    flex: 1 1 220px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    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-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.plan-card:hover {
    box-shadow: 0 4px 6px rgba(98, 234, 255, 0.416);
}

.plan-card h5 {
    color: var(--light-yellow);
    margin-bottom: 10px;
}

.plan-card .price {
    margin-bottom: 10px;
    justify-content: center;
}

.plan-card .features li:not(:last-child) {
    margin-bottom: 10px;
}

/* Currency/Tax */

.tax-rate-field .input-wrapper {
    position: relative;
}

.tax-rate-field input::placeholder {
    color: var(--white) !important;
}

.tax-rate-field .suffix {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    pointer-events: none;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.tax-rate-field .note {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: var(--light-yellow);
}

/* Payment Gateways */
.payment-gateways {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.gateway-option {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    height: 35px;
    padding: 8px 10px;
    border-radius: 5px;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.gateway-option:hover {
    border: 2px solid var(--first-color);
}

.gateway-option img {
    width: 32px;
    height: auto;
}

/* Save Button */
.action-footer {
    margin-top: 15px;
}

.profile-pic-upload p {
    font-size: 10px;
}

.profile-pic-upload img {
    width: 60px;
    height: 60px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

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

.personal-info-section {
    margin-top: 40px;
}

/* Media Gallery Section */
.video-prv-btn {
    padding: 5px 10px;
    border-radius: 5px;
    background-color: var(--first-color);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.video-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: calc(100% - 25px * 2);
    background: rgba(0, 0, 0, 0.8);
    z-index: 2;
    justify-content: center;
    align-items: center;
}

.popup-content {
    position: relative;
    background: var(--black);
    padding: 20px;
    margin: 50px auto;
    border-radius: 10px;
    max-width: 500px;
}

.popup-content video {
    width: 100%;
    height: 600px;
}

.close-popup {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
} 
/* Notification Settings Section */
.notification-settings {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    padding: 30px;
    background-color: rgba(77, 77, 77, 0.24);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(254, 35, 35, 0.1);
}

.notification-settings h2 {
    margin-bottom: 0px;
}

/* Notification Option */

.option-label {
    font-size: 18px;
    margin-bottom: 10px;
}

.option-description {
    font-size: 14px;
    margin-bottom: 15px;
}

/* Checkbox Container */
.checkbox-container {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #555;
    gap: 15px;
}

.preference-item input {
    width: 16px;
}

.preference-item,
.preferences-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Toggle Switch Style */
.toggle-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333;
}

.notification-option .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.notification-option .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.notification-option .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ea8bf2b5;
    transition: .4s;
    border-radius: 34px;
}

.notification-option .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 50%;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

.notification-option input:checked+.slider {
    background-color: var(--light-yellow);
}

.notification-option input:checked+.slider:before {
    transform: translateX(26px);
}

.notification-option .toggle-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
}

/**** activity-logs  ****/
.activity-logs {
    margin-top: 40px;
    background: rgba(24, 24, 24, 0.208);
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(239, 47, 47, 0.07);
}

.log-section:not(:last-child) {
    margin-bottom: 20px;
}

.log-section h3 {
    font-size: 20px;
    color: var(--light-yellow);
    margin-bottom: 8px;
}


/* Login History Table */
.log-table th,
.log-table td {
    border: 1px solid var(--white);
}

/* Admin Actions */
.action-log {
    padding-top: 15px;
}

.action-log li {
    margin-bottom: 10px;
    padding: 10px 15px;
    background-color: rgba(238, 245, 255, 0.196);
    border-left: 4px solid var(--light-yellow);
    border-radius: 6px;
}

.action-log li span {
    margin-right: 8px;
    color: var(--third-color);
}
 

.dataTables_filter {
    margin-bottom: 12px !important;
} 

.dataTables_paginate,
.dataTables_info {
    margin-top: 15px !important;
} 

.paginate_button.active a {
    border: 1px solid var(--first-color);
    background-color: var(--first-color);
}

.paginate_button a{
    color: var(--first-color);
}

.pagination {
    gap: 10px !important;
}

.paginate_button {
    overflow: hidden !important;
    border-radius: 5px !important;
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    -ms-border-radius: 5px !important;
    -o-border-radius: 5px !important;
}
 
/**** Check Box Slider ****/
.checkbox-slider input:checked~span {
    background: var(--first-color);
}

.checkbox-slider input:checked~span:after {
    left: 26px;
    background: whitesmoke;
}

.checkbox-slider input:checked~span:active::after {
    background: whitesmoke;
}

.checkbox-slider input:not(:checked)~span:active {
    background: #a3a3a3;
}

.checkbox-slider input:not(:checked)~span:active::after {
    background: rgb(248, 248, 248);
}

.checkbox-slider .toggle_background {
    display: flex;
    align-items: center;
    width: 58px;
    height: 32px;
    position: relative;
    cursor: pointer;
    background: #babacc;
    border-radius: 2em;
    border: 2px transparent solid;
    transition: all 0.3s;
}

.checkbox-slider .toggle_background::after {
    content: "";
    display: flex;
    position: absolute;
    width: 26px;
    height: 26px;
    left: 2px;
    top: 1px;
    border-radius: 50px;
    background: #f0f5f9;
    transition: all 0.3s;
    box-shadow: 2px 2px 5px rgba(110, 110, 110, 0.253);
}

.checkbox-slider .circle-icon {
    position: absolute;
    right: 15%;
    border: solid 1px rgb(35, 35, 35);
    border-radius: 50%;
    width: 5px;
    height: 5px;
    top: 53%;
    transform: translateY(-50%);
}

.checkbox-slider .vertical_line {
    position: absolute;
    left: 22%;
    background: rgb(241, 241, 241);
    width: 2px;
    height: 8px;
}

.flatpickr-current-month{
    display: flex;
}

.breadcrumb-item.active{
    color: var(--first-color);
}

.breadcrumb-item+.breadcrumb-item::before{
    color: var(--white);
}

table.dataTable thead {
    visibility: collapse;
}

div.dataTables_scrollHead table thead {
    visibility: visible;
}

.tbl-layout-fixed{
    table-layout: fixed !important;
}

.ck.ck-editor__main > .ck-editor__editable{
    background-color: transparent !important;
}

.ck.ck-editor__editable.ck-focused:not(.ck-editor__nested-editable){
    border: 1px solid var(--border-color) !important;
}

.ck.ck-editor__main>.ck-editor__editable:not(.ck-focused){
    border-color: var(--border-color) !important;
}

.select__control{
    background-color: transparent !important;
    border: 1px solid var(--border-color) !important;
}

.select__control--is-focused{
    box-shadow: unset !important;
}

.select__input-container{
    color: var(--white) !important;
}

.select__menu{
    z-index: 10 !important;
}

.select__multi-value,
.select__multi-value__label,
.select__multi-value__remove{
    background-color: var(--first-color) !important;
    color: var(--white) !important;
    border-radius: 2px !important;
}

div.dataTables_processing>div:last-child>div{
    background: var(--first-color);
}

textarea.cke_source{
    color: var(--black);
}
.ads_block_card {
    background-color: #1e1e2c !important;
    border: 1px solid var(--border-color) !important;
}
.ads_logo_item {
    width: 210px;
    height: 58px;
    padding: 10px;
    margin-bottom: 15px;
    box-shadow: none;
    text-align: center;
}
.ads_logo_item img {
    width: 100%;
    height: 34px;
    object-fit: contain;
    box-shadow: none;
    border: 0;
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
}

.ads_block_card h4 {
    font-weight: 800;
    font-size: 20px;
}

.btn-success {
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.padding-checkbox {
    padding-left: 20px !important;
}
.form-select:focus {
    border-color: #ffffff;
    box-shadow: 0 0 0 .25rem #d3383840;
}
table.dataTable td {
    border-right: 1px solid var(--border-color) !important;
    border-bottom: 1px solid var(--border-color) !important;
}
table.dataTable {
    border: 1px solid var(--border-color) !important;
}
table.table-bordered.dataTable thead tr:first-child th {
    text-align: center;
}
table.dataTable thead th {
    text-align: center;
}
table.movie-table tbody td {
    text-align: center !important;
}

.tabs {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid rgba(46, 46, 46, 0.329); /* Darker border for tabs */
    padding-bottom: 5px;
}

.tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tab:hover {
    background-color: #555555; /* Lighter gray on hover */
}

.tab.active {
    background-color: var(--first-color); /* Orange-red for active tab */
    color: var(--white);
    font-weight: bold;
    border-bottom: 2px solid var(--first-color); /* Highlight active tab */
}

.tab-content-data {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px; /* Slightly lighter dark background for content */
    padding: 20px;
    border-radius: 0 8px 8px 8px;
    border-top: none;
}
.coin-title-login {
    background-color: rgb(255, 222, 173);
    color: rgb(255, 140, 0);
    border-radius: 10px;
    padding: 8px 16px;
    border: none;
}
.coin-watch-ads {
    background-color: rgb(255, 239, 179);
    color: rgb(214, 140, 0);
    border-radius: 10px;
    padding: 8px 16px;
    border: none;
}
.daily-check-in {
    background-color: rgb(212, 246, 195);
    color: rgb(0, 128, 0);
    border-radius: 10px;
    padding: 8px 16px;
    border: none;
} 

.movie-table th,
.movie-table td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.firebase-json {
    color: white !important;
    background-color: transparent !important;
    border-color: #555555 !important;
}

.firebase-json:focus {
    border-color: #555555 !important;
}

.reports-section {
    padding-top: 30px;
}

.chart-select {
  position: absolute;
  top: 10px;
  right: 36px;
  width: 150px;
  z-index: 10;
}

/* series cards css  */
.series-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 12px;
}

.series-cards .cards {
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    padding: 12px;
    background: var(--black);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.series-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    grid-row: span 2;
}

.series-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.series-card-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.series-card-date {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.series-card-title {
    font-size: 16px;
    font-weight: 500;
}

.series-card-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.series-card-footer .card-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
}

.series-card-footer .card-info .info-item {
    display: flex;
    gap: 4px;
    font-size: 13px;
    align-items: center;
}

.series-card-footer .card-info .label {
    opacity: 0.8;
}

.series-card-footer .card-info strong {
    color: var(--third-color);
}

.series-card-footer .card-toggles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.series-card-footer .card-actions {
    display: flex;
    gap: 8px;
}

.series-card-footer .btn {
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    color: var(--white);
    cursor: pointer;
}

.service-search .input-wrapper {
    display: inline-flex;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(164, 164, 164, 0.184);
    box-shadow: transparent;
    backdrop-filter: blur(10px);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.service-search .input-wrapper input {
    padding: 0px;
    border: none;
}

.service-search .input-wrapper:hover {
    box-shadow: rgba(222, 46, 84, 0.4) 0px 0px 0px 2px, rgba(80, 22, 255, 0.65) 0px 4px 1px -2px, rgba(255, 0, 0, 0.258) 0px 1px 0px inset;
}

/* color chexckout  */
.custom-checkbox,
.colors-checkbox label {
    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;
}

.custom-checkbox input[type="checkbox"] {
    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: 8px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    background-size: contain;
    width: 16px;
    height: 16px;
    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);
}

.colors-checkbox .color-name {
    font-weight: 400;
    font-size: 13px;
    color: var(--white);
}

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

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

.dataTables_scroll + .dataTables_processing{
    display: none !important;
}

.dataTables_processing{
    position: unset !important;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}

/* 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;
}













