:root {
    --text-color: #ffffff;
    --text-color-2: #dddddd;
    --text-color-3: #b49baa;
    --background-color: #1a0f17;
    --background-color-2: #3e2a33;
    --header-sidebar: #2b1d26;
    --border-color: rgba(255, 255, 255, 0.2);
    --border-color-2: rgba(255, 255, 255, 0.8);
    --primary-color: #ff5c8a;
    --accent-color: #6c3fc6;

    --disabled-bg-color: #2c1c23;
    --disabled-text-color: #a6acb1;
    --disabled-border-color: rgba(255, 255, 255, 0.2);
}
.container-fluid {
    max-width: 1600px;
}
.form-label {
    color: var(--text-color);
}
.form-control {
    color: var(--text-color);
    background-color: var(--background-color);
    border-radius: 5px;
    padding: 10px 15px;
    border-color: var(--border-color);
    box-shadow: none !important;
}
.form-control:hover {
    background-color: var(--background-color);
    border-color: var(--border-color-hover, var(--border-color));
}
.form-control:focus {
    color: var(--text-color);
    background-color: var(--background-color);
    border-color: var(--focus-border-color, var(--primary-color));
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(245, 44, 202, 0.25);
}
.form-control:active {
    background-color: var(--background-color);
    border-color: var(--border-color-active, var(--primary-color));
}
.form-control:disabled,
.form-control[readonly] {
    background-color: var(--disabled-bg-color, #e9ecef);
    color: var(--disabled-text-color, #6c757d);
    border-color: var(--disabled-border-color, #ced4da);
    opacity: 1;
}
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
    opacity: 1;
    font-weight: 300;
}
.form-control::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}
.form-control.input-pink {
    background: var(--primary-color);
}
.form-select {
    color: #fff;
    background-image: url("../images/icons/arrow-down.svg");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}
.input-group {
    border: 1px solid var(--border-color);
    display: flex;
    overflow: hidden;
    border-radius: 5px;
}
.input-group:hover,
.input-group:focus-within {
    border-color: var(--primary-color);
}
.input-group .input-group-text,
.input-group .form-control {
    border: none;
    border-radius: 0;
    background: var(--background-color);
    box-shadow: none;
}
.input-group .form-control {
    flex: 1 1 auto;
}
.input-group .input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    padding-right: 0;
}
.form-check-input {
    accent-color: var(--primary-color);
    box-shadow: none;
}
.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(240, 172, 231, 0.1);
}
.dropdown-toggle::after {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-left: 0.4em;
    vertical-align: 0.1em;
    content: "";
    background-image: url("../images/icons/arrow-down.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border: none;
}
body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: "Outfit", sans-serif !important;
}
a {
    text-decoration: none;
    color: var(--text-color);
}
.cursor-pointer {
    cursor: pointer;
}
hr,
.border-top,
.border-left,
.border-right,
.border-bottom {
    border-color: var(--border-color-2);
}
.text-highlight {
    color: var(--primary-color);
}
.register-btn {
    font-size: 14px;
    padding: 6px 15px;
    border-radius: 5px;
    color: var(--text-color);
    background: linear-gradient(90deg, #ff5c8a 0%, #a48fe1 100%);
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}
.login-btn {
    font-size: 14px;
    padding: 5px 15px;
    border-radius: 5px;
    color: var(--text-color);
    background-color: transparent;
    border: 1px solid var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}
.register-btn:hover {
    background-color: #d3466e;
    color: var(--text-color);
}
.login-btn:hover {
    border-color: var(--primary-color);
    color: var(--text-color);
    background: var(--primary-color);
}
.otpinput {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
}
.otpinput .otpsingleinput {
    height: 60px;
    width: 60px;
    border-radius: 5px;
    border: 2px solid var(--border-color);
    background-color: var(--background-color);
    margin-right: 5px;
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    appearance: none;
    color: #fff;
}
.text-link {
    color: var(--primary-color);
    cursor: pointer;
}
.text-link:hover {
    color: #d3466e;
}
@media (min-width: 576px) {
    .modal-sm {
        --bs-modal-width: 380px;
    }
}
.modal-header {
    background: var(--background-color-2);
    border-color: var(--border-color);
}
.modal-header.modal-compact-header {
    padding-bottom: 0;
    border: 0;
}
.modal-close {
    border: 0;
    background-color: transparent;
    outline: none;
    border-radius: 50%;
    padding: 0;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-close img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.nav-togglemenu {
    height: 70px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 20px;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
}
.nav-togglemenu:hover {
    background-color: var(--border-color);
}
.nav-togglemenu .togglemenu-icon {
    height: 28px;
    width: 28px;
    object-fit: contain;
}
.navbar-header {
    height: 70px;
    background-color: var(--header-sidebar);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.logo-img {
    width: auto;
    height: 40px;
}
.header-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-right: 20px;
    z-index: 9999;
}
.header-user-img {
    height: 35px;
    width: 35px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
    flex-grow: 0;
    border: 2px solid var(--border-color);
}
.right-header {
    display: flex;
    justify-content: end;
    align-items: center;
}
.userloggedin-dropdown {
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px 5px 5px;
    font-weight: 600;
    color: var(--text-color-2);
    font-size: 15px;
    background: var(--background-color-2);
    border-radius: 50px;
    transition: all 0.2s ease;
}
.userloggedin-dropdown:hover,
.userloggedin-dropdown:focus,
.userloggedin-dropdown:active {
    color: var(--text-color);
    background: #49333d;
}
.app-sidebar {
    margin-top: 70px;
    width: 80px;
    height: 100%;
    background-color: var(--header-sidebar);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
}
.app-sidebar.expanded {
    width: 280px;
    position: fixed;
    z-index: 998;
}
.mini-sidebar-icons {
    margin-top: 15px;
    align-items: center;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    height: calc(100% - 170px);
}
.mini-sidebar-icons .mini-sidebar-icons-top {
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--background-color-2) var(--background-color);
}
.mini-sidebar-icons .mini-sidebar-icon-a {
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.mini-sidebar-icons .mini-sidebar-icon {
    height: 55px;
    width: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.mini-sidebar-profile-container {
    display: none;
}
.mini-sidebar-profile-container {
    display: none;
}
.app-sidebar.expanded .mini-sidebar-icons .mini-sidebar-icon {
    width: 100%;
    justify-content: start;
}
.mini-sidebar-icons .mini-sidebar-icon:hover {
    background-color: var(--primary-color);
    border: 3px solid rgba(0, 0, 0, 0.5);
    transition: all 0.1s ease-in-out;
    cursor: pointer;
}
.mini-sidebar-icons .mini-sidebar-icon-a.active .mini-sidebar-icon {
    background-color: var(--primary-color);
    border: 3px solid rgba(0, 0, 0, 0.5);
}
.mini-sidebar-profile-container .mini-sidebar-icon:hover,
.mini-sidebar-profile-container .mini-sidebar-icon-a.active .mini-sidebar-icon {
    background-color: var(--background-color-2);
    border: 3px solid rgba(255, 255, 255, 0.2);
}
.mini-sidebar-icons .mini-sidebar-icon .mini-sidebar-icon-img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.app-sidebar.expanded .mini-sidebar-icons .mini-sidebar-icon .mini-sidebar-icon-img {
    width: auto;
    margin-right: 15px;
}
.app-sidebar.expanded .mini-sidebar-icons .mini-sidebar-icon .mini-sidebar-icon-img.mini-siderbar-profile-img {
    height: 30px;
    width: 30px;
    object-fit: cover;
    border-radius: 50%;
}
.app-sidebar .mini-sidebar-icons .mini-sidebar-icon .mini-sidebar-icon-text {
    display: none;
    font-size: 16px;
    width: 180px;
    overflow-x: hidden;
    white-space: nowrap;
    white-space: nowrap;
}
.app-sidebar.expanded .mini-sidebar-icon-label {
    display: none;
}
.app-sidebar:not(.expanded) .mini-sidebar-icon-label {
    display: block;
    font-size: 11px;
    color: #fff;
    text-align: center;
    margin-top: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 70px;
}

.app-sidebar.expanded .mini-sidebar-icons .mini-sidebar-icon .mini-sidebar-icon-text {
    display: block;
}
.mini-sidebar-dropdown-menu {
    width: 100%;
}
.switch-btn-container {
    padding: 5px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
}
.switch-btn-container .switch-btn {
    background-color: transparent;
    color: var(--text-color);
    font-size: 16px;
    border-radius: 5px;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.switch-btn-container .switch-btn.active,
.switch-btn-container .switch-btn.active:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
}
.switch-btn-container .switch-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--text-color);
    cursor: pointer;
}
.switch-btn-container .switch-btn .switch-btn-icon {
    height: 20px;
    width: 20px;
    object-fit: contain;
    margin-right: 5px;
}
.app-page {
    padding-top: 70px;
    margin-left: 80px;
    padding-bottom: 75px;
}
.app-page.homepage {
    padding-bottom: 0;
}
.app-home {
    padding-top: 70px;
}
.title-container {
    padding: 10px 0;
}
.title-container .title {
    color: var(--text-color);
    font-weight: 700;
    font-size: 28px;
}
/*primarycard*/
.hovercard {
    background: var(--background-color-2);
    border: 2px solid var(--background-color);
    color: var(--text-color);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    position: relative;
}
.hovercard:hover {
    border: 2px solid var(--primary-color);
}
.hovercard .top-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 99;
    padding: 10px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    top: 10px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}
.hovercard .top-icon:hover {
    background: rgba(0, 0, 0, 0.8);
}
.hovercard .top-left-icon {
    left: 10px;
}
.hovercard .top-right-icon {
    right: 10px;
    background: var(--primary-color);
}
.hovercard .top-right-icon:hover {
    background: #d3466e;
}
.hovercard .top-left-icon-img,
.hovercard .top-right-icon-img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}
.card-hover-container {
    position: relative;
    overflow: hidden;
    height: 420px;
    width: 100%;
    border-radius: 15px;
}
.card-hover-container .hovercard-img,
.card-hover-container .hovercard-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.card-hover-container .hovercard-video {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    z-index: 1;
}
.card-hover-container.has-video .hovercard-video {
    display: block;
}
.card-hover-container.has-video .hovercard-img {
    visibility: hidden;
}
.hovercard .card-hover-header {
    position: absolute;
    margin-top: 10px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    z-index: 2;
}
.hovercard .card-hover-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    padding: 15px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 1) 95%);
    overflow: hidden;
    box-sizing: border-box;
    z-index: 2;
}
.hovercard .card-hover-body .card-hover-text-container {
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 100%;
}
.hovercard .card-hover-body .card-title-container {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    overflow: hidden;
    flex-wrap: wrap;
}
.hovercard .card-hover-body .card-title {
    font-size: 20px;
    color: var(--text-color);
    line-height: normal;
    font-weight: 700;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
    min-width: 0;
    margin-right: 5px;
    margin-bottom: 5px;
}
.hovercard .card-hover-body .card-title-container .hovercard-badge {
    position: relative;
    font-weight: 600;
    font-size: 12px;
    border-radius: 8px;
    padding: 3px 8px;
    white-space: nowrap;
    flex-shrink: 0;
    color: transparent;
    background: linear-gradient(90deg, #fd5d8c, #a58fe1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hovercard .card-hover-body .card-title-container .hovercard-badge::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}
.hovercard .card-hover-body .card-title-container .hovercard-badge::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 8px;
    background: linear-gradient(90deg, #fd5d8c, #a58fe1);
    padding: 1px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    background-clip: border-box;
}
.hovercard .card-hover-body .card-text {
    font-size: 14px;
    color: var(--text-color-2);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.4em * 3);
}
.swiper {
    width: 100%;
    height: 300px;
    border-radius: 10px;
}
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    font-weight: 900;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 22px;
}
.swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    width: 15px;
    border-radius: 10px;
}
.swiper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/*Bootstrap accordion */

.accordion-item {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    color: var(--text-color-2);
}

.accordion-button {
    background-color: var(--background-color);
    color: var(--text-color);
    box-shadow: none;
    border: none;
    font-size: 20px;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    color: var(--text-color);
    background-color: var(--background-color-2);
    box-shadow: none;
    border: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background-color: var(--background-color-2);
    color: var(--text-color-2);
    padding-top: 0;
    font-size: 16px;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}
/* footer */
.footer {
    background-color: var(--background-color-2);
    color: var(--text-color-2);
    padding: 40px 0;
}
.footer a {
    color: var(--text-color-2);
    text-decoration: none;
}
.footer .footer-title {
    color: var(--text-color);
    font-size: 14px;
}
.footer .footer-link {
    padding: 5px 0px;
    display: block;
    font-size: 15px;
}
.footer .footer-link:hover {
    color: var(--text-color);
}
.footer-logo {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
}
.social-icons .social-icon {
    margin-right: 10px;
    font-size: 1.2rem;
    color: var(--text-color-2);
    width: 35px;
    height: 35px;
    display: inline-block;
}
.social-icons .social-icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.social-icons .social-icon:hover {
    color: var(--primary-color);
}
.social-icons a:hover {
    color: var(--primary-color);
}
.confirm-btn {
    padding: 10px 15px;
    border-radius: 5px;
    color: var(--text-color);
    font-weight: 600;
    background-color: #35d300;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
}
.confirm-btn:hover {
    background-color: #329b36;
    color: var(--text-color);
}
.primary-btn {
    padding: 10px 15px;
    border-radius: 5px;
    color: var(--text-color);
    font-weight: 600;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    transition: all 0.2s ease;
}
.primary-btn.gradient-btn {
    background: linear-gradient(90deg, #ff5c8a 0%, #a48fe1) !important;
    color: #fff;
}
.primary-btn:hover {
    background-color: #d3466e;
    color: var(--text-color);
}
.primary-btn.gradient-btn:hover {
    opacity: 0.9;
    color: #fff;
}
.primary-btn.white-btn {
    color: #000;
    background-color: #fff;
}
.primary-btn.fadedark-btn {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
}
.primary-btn.white-btn:hover {
    color: #000;
    background-color: #eee;
}
.primary-btn.fadedark-btn:hover {
    background-color: rgba(0, 0, 0, 0.3);
}
.primary-btn .icon {
    width: 25px;
    height: 25px;
}
.primary-btn .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.primary-btn.primary-btn-sm {
    font-size: 14px;
    padding: 8px 10px;
}
.primary-btn.border-0 {
    border: 0 !important;
}
.btn-outline-pink {
    padding: 8px 15px;
    border-radius: 5px;
    color: var(--primary-color);
    font-weight: 600;
    background-color: transparent;
    border: 2px solid var(--primary-color) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    transition: all 0.2s ease;
}
.btn-outline-pink:hover {
    background-color: rgba(0, 0, 0, 0.3);
}
.font-small-14 {
    font-size: 14px;
}
.dropdown-menu {
    background: var(--background-color);
    border: 2px solid var(--border-color);
}
.dropdown-item {
    color: var(--text-color);
}
.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--primary-color);
    color: var(--text-color);
}
.aig-modal .modal-content {
    border-radius: 10px;
    overflow: hidden;
}
.aig-modal .modal-body {
    background-color: var(--background-color-2);
}
.aig-modal .modal-body .row {
    flex: 1 1 auto;
    height: 100%;
}
.aig-modal-image-container {
    width: 100%;
    height: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.aig-modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.aig-modal-title {
    font-size: 20px;
    color: var(--text-color);
    line-height: normal;
    font-weight: 700;
    margin-bottom: 0;
}
.aig-modal-footer {
    border-top: 1px solid var(--border-color);
    margin-top: 10px;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
}
.mob-footer-icons {
    height: 60px;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    background: var(--background-color);
    border-top: 1px solid var(--border-color);
    width: calc(100% - 70px);
    z-index: 997;
    margin-left: 80px;
    display: none;
}
.mob-footer-icons .mob-footer-icon {
    height: 30px;
    width: 30px;
    object-fit: contain;
}
.mob-footer-icons .mob-footer-icon .mob-footer-icon-img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.mob-footer-icons .mob-footer-icon .mob-footer-icon-img.userprofileicon {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--border-color);
}
.profile-img-container {
    position: relative;
    justify-content: center;
    display: flex;
    align-items: end;
    background-color: var(--background-color);
    border-radius: 6px;
    width: 100%;
    max-width: 330px;
}
.profile-img-container .profile-img img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--border-color) !important;
}
.upload-icon-container {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
.upload {
    bottom: 10px;
    right: 10px;
    background-color: var(--background-color);
    border-radius: 50px;
    border: 2px solid var(--border-color);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 10px;
    color: var(--text-color-2);
    font-size: 15px;
    transition: all 0.2s ease-in-out;
}
.upload:hover {
    border-color: var(--primary-color);
}
.upload-icon-container .profile-pic-upload-icon {
    width: 25px;
    height: 25px;
}
.page-upgrade-banner {
    background-color: var(--background-color-2);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.page-upgrade-banner .page-upgrade-left {
    display: flex;
    justify-content: start;
    align-items: center;
    min-width: 200px;
}
.page-upgrade-banner .page-upgrade-banner-text {
    font-size: 16px;
    font-weight: 600;
}
.page-upgrade-banner .page-upgrade-banner-plan {
    font-size: 16px;
    color: var(--primary-color);
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    padding: 2px 15px;
    background-color: var(--background-color);
    display: block;
}
.card {
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}
.card-section {
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}
.card-section .card-section-body {
    padding: 15px;
}
.card-section .card-section-body:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}
.card-section .card-section-body .card-section-title {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
}
.card-section .card-section-body .card-section-p {
    color: var(--text-color-3);
    font-size: 16px;
}
.default-title {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
}
.text-color-red {
    color: #ff3f3f !important;
}
.text-color-1 {
    color: var(--text-color) !important;
}
.text-color-2 {
    color: var(--text-color-2) !important;
}
.text-color-3 {
    color: var(--text-color-3) !important;
}
.text-color-primary {
    color: var(--primary-color) !important;
}
.bg-color-1 {
    background: var(--background-color);
}
.bg-color-2,
.modal-body.bg-color-2 {
    background: var(--background-color-2);
}
.bg-color-primary {
    background: var(--primary-color);
}
.btn-gradient-primary {
    padding: 10px 20px;
    color: var(--text-color);
    /* background: linear-gradient(135deg, #ff5c8a, #6c3fc6); */
    background: linear-gradient(90deg, #ff5c8a 0%, #a48fe1 100%);
    border-radius: 5px;
    transition: all 0.1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 0;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
}
.btn-gradient-primary .icon {
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-gradient-primary .icon img {
    height: auto;
    width: 100%;
    object-fit: contain;
}
.btn-gradient-primary.lg {
    padding: 15px 20px;
}
.btn-gradient-primary.hover-bg:hover {
    color: var(--text-color);
    box-shadow: none !important;
    background: linear-gradient(90deg, #a48fe1 0%, #ff5c8a 100%);
}
.btn-gradient-primary:hover {
    color: var(--text-color);
    box-shadow: rgba(255, 221, 252, 0.2) 0px 7px 29px 0px;
}
.btn-red {
    padding: 10px 20px;
    color: #fff;
    background: #ff3f3f;
    border-radius: 5px;
    transition: all 0.1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid #ff3f3f;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    white-space: nowrap;
    cursor: pointer;
}
.btn-red:hover {
    color: #fff;
    background: #ce2727;
    border-color: #ce2727;
}
.btn-outline-red {
    padding: 10px 20px;
    color: #ff3f3f;
    background: transparent;
    border-radius: 5px;
    transition: all 0.1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid #ff3f3f;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    white-space: nowrap;
    cursor: pointer;
}
.btn-outline-red:hover {
    background: rgba(255, 255, 255, 0.1);
}
.token-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--background-color-2);
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.2s ease;
}
.token-btn.header {
    padding: 5px;
    background: #3e2a33;
}
.token-btn .token-btn-left-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    flex-grow: 0;
    margin-right: 2px;
    padding-right: 5px;
    border-right: 1px solid var(--border-color);
}
.token-btn .token-btn-text {
    font-size: 16px;
    color: var(--text-color);
    font-weight: normal;
    padding: 0 10px;
    font-weight: 600;
}
.token-btn.header .token-btn-left-icon {
    height: 35px;
    width: 35px;
}
.token-btn.header .token-btn-text {
    padding: 0 5px;
    font-size: 15px;
    color: var(--text-color-2);
}
.token-btn:hover {
    background: #573e49;
}
.tokenbadge {
    padding: 3px 10px; /*0px 8px 0px 0px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: normal;
    color: var(--text-color);
    background-color: var(--background-color);
    border-radius: 50px;
}
.tokenbadge .token-icon {
    width: 20px;
    height: 20px;
    border-radius: 50px;
}
.tokenbadge .token-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.border-gradient-left,
.border-gradient-right {
    flex: 1;
    height: 1px;
    display: block;
}
.border-gradient-left {
    background: linear-gradient(to left, rgba(255, 255, 255, 0.5), transparent);
    margin-right: 10px;
}
.border-gradient-right {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.5), transparent);
    margin-left: 10px;
}
/* App Home */

.btn-hue-container {
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0px 0px 10px 0px rgba(250, 169, 115, 0.36) inset;
    backdrop-filter: blur(10px);
}
.btn-hue-primary {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    padding: 2px 15px;
    border-radius: 50px;
    border: 1px solid rgba(250, 250, 250, 0.1);
}
.home-header-link {
    font-size: 14px;
    color: #fff;
    font-family: "Inter", sans-serif;
    padding: 1px 10px;
}
.home-header-link.active,
.home-header-link:hover {
    color: #ff5c8a;
}
.header-hue-container-border {
    padding: 5px;
    border-radius: 50px;
    border: 1px solid rgba(250, 250, 250, 0.1);
    backdrop-filter: blur(10px);
}
.navbar-header.app-home {
    padding: 42px 0;
}
.app-home-title-container {
    text-align: center;
    width: 100%;
}
.app-home-title {
    font-size: 42px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}
.icon-45 {
    width: 45px;
    height: 45px;
    object-fit: contain;
}
.app-home-btn-primary {
    background: linear-gradient(94.77deg, #943dff 0%, #f26179 50.31%, #ffab36 100%);
    box-shadow: 0px 0px 20px 0px rgba(255, 255, 255, 1) inset;
    font-size: 16px;
    color: #fff;
    padding: 10px 25px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    transition: all 0.3s ease;
    background-size: 120% 200%;
}
.app-home-btn-primary:hover {
    background-position: 100% 50%;
    box-shadow: none;
}
.app-home-title-2 {
    font-size: 42px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}
.font-inter {
    font-family: "Inter", sans-serif;
}
.font-poppins {
    font-family: "Poppins", sans-serif;
}
.fs-7 {
    font-size: 15px;
}
.fw-500 {
    font-weight: 500;
}
.app-home-hue-card-container {
    box-shadow: 0px 7px 7px -2.5px rgba(255, 255, 255, 0.13) inset;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.app-home-hue-card {
    background: rgba(62, 42, 51, 1);
    padding: 15px;
    box-shadow: 0px 0px 10px 0px rgba(250, 250, 250, 0.25) inset;
    border-radius: 20px;
}
.app-home-hue-card .icon-container {
    margin-top: 10px;
    width: 95px;
    height: 95px;
    overflow: hidden;
    border-radius: 50%;
}
.app-home-hue-card .icon-container .icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.app-home-hue-card .pricing-container {
    display: flex;
    align-items: baseline;
}
.app-home-hue-card .pricing-container .pricing-text {
    font-size: 38px;
    font-family: "Inter", sans-serif;
    margin-bottom: 0;
}
.pricing-featurelist .featurelistitem {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.pricing-featurelist .featurelistitem .listtext {
    margin-bottom: 0;
    font-family: "Inter", sans-serif;
    margin-left: 15px;
}
.icon-25 {
    width: 25px;
    height: 25px;
}
.badge-primary-gradient {
    display: inline-block;
    padding: 4px 8px;
    font-size: 14px;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 50px;
    background: linear-gradient(90deg, #ff6a00 0%, #f43f5e 50%, #6d28d9 100%);
}
.text-gradient {
    background: linear-gradient(270deg, #fac175 0%, #ff006a 68%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}
.text-gradient-2 {
    background: linear-gradient(90deg, #8b5cf6 0%, #fb7185 50%, #fab570 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}
.intro-text-container .intro-title-text {
    font-size: 54px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    text-align: center;
    line-height: 70px;
    margin: 15px 0;
}
.intro-slider {
    width: 100%;
    height: 400px;
}
.intro-slider .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
.intro-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.blog-card {
    font-family: "Inter", sans-serif;
    padding: 20px;
}
.blog-card .blog-img-container {
    width: 100%;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
}
.blog-card .blog-img-container .blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-card .blog-title {
    font-size: 18px;
}
.blog-card p {
    font-size: 14px;
}
.banner-title-text {
    font-size: 54px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    text-align: center;
    line-height: 70px;
}
.app-home-banner-card {
    background: rgba(62, 42, 51, 1);
    padding: 15px;
    box-shadow: 0px 0px 10px 0px rgba(250, 250, 250, 0.25) inset;
    border-radius: 20px;
}
.app-home-banner-text {
    margin-bottom: 0;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    max-width: 450px;
    text-align: center;
}
.app-home-banner-bg {
    background-image: url("../images/home/banner-bg.png");
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 45px 15px;
}
.bounce {
    display: inline-block;
    animation: bounce 1s infinite;
}
@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.home-header.active .icon-close {
    display: none;
}
.image-col-slider {
    display: flex;
    height: calc(100vh - 150px);
    overflow: hidden;
}
.image-col-slider-col {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.image-col-slider-track {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    will-change: transform;
    width: 100%;
}
.image-col-slider-col img {
    width: 100%;
    display: block;
    border-radius: 0;
    object-fit: cover;
}
.menu-toggle {
    cursor: pointer;
}
@media (max-width: 1200px) {
    .card-hover-container {
        height: 360px;
    }
    .intro-animated-icon {
        height: 80px;
        width: 80px;
        object-fit: contain;
    }
    .intro-text-container .intro-title-text {
        font-size: 42px;
        line-height: 48px;
        margin: 25px 0;
    }
}
@media (max-width: 767px) {
    .no-scroll {
        overflow: hidden;
        height: 100vh;
    }
    .app-page {
        margin-left: 0;
        padding-top: 60px;
    }
    .card-hover-container {
        height: 280px;
    }
    .hovercard .card-hover-body .card-text {
        font-size: 14px;
        line-height: normal;
    }
    .hovercard .card-hover-body .card-title-container .hovercard-badge {
        font-size: 10px;
    }
    .navbar-header {
        height: 60px;
    }
    .header-menu {
        padding-right: 10px;
    }
    .nav-togglemenu {
        height: 60px;
        width: 40px;
        border-right: 0;
        margin-right: 5px;
    }
    .logo-img {
        height: 35px;
    }
    .userloggedin-dropdown {
        font-size: 15px;
    }
    .header-user-img {
        height: 35px;
        width: 35px;
    }
    .aig-modal .modal-body .aig-modal-image-container {
        display: none;
    }
    .app-sidebar {
        margin-top: 60px;
        width: 0;
        z-index: -1;
        display: none;
    }
    .app-sidebar.expanded {
        width: 280px;
        display: block;
        z-index: 999;
        margin-top: 60px;
    }
    .mob-footer-icons {
        display: flex;
        width: 100%;
        margin-left: 0;
    }
    .intro-animated-icon {
        height: 60px;
        width: 60px;
        object-fit: contain;
    }
    .app-home-title {
        font-size: 32px;
    }
    .app-home-title-2 {
        font-size: 30px;
    }
    .home-header .home-nav-header {
        display: none;
    }
    .home-header.active .home-nav-header {
        display: block;
        height: calc(100vh - 80px);
        width: 100%;
        position: absolute;
        z-index: 999;
        top: 80px;
        padding: 0;
        border: 0;
        border-radius: 0;
    }
    .home-header.active .home-nav-header .btn-hue-container {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        flex-direction: column;
        border-radius: 0;
        box-shadow: none;
        overflow-y: scroll;
    }
    .home-header.active .home-header-link {
        padding: 15px 10px;
        font-size: 22px;
        font-weight: 600;
    }
    .intro-slider {
        width: 100%;
        height: 320px;
    }
    .intro-text-container .intro-title-text {
        font-size: 32px;
        line-height: 38px;
        margin: 25px 0;
    }
    .image-col-slider {
        display: flex;
        height: 340px;
        overflow: hidden;
    }
    .home-header.active .icon-close {
        display: block;
    }
    .mini-sidebar-profile-container {
        display: block;
    }
}
@media (max-width: 576px) {
    .homebanner {
        width: calc(100% + 24px);
        margin-left: -12px;
    }
    .homebanner .swiper {
        border-radius: 0 !important;
    }
    .logo-img {
        height: 28px;
    }
    .home-header .logo-img {
        height: 34px;
    }
    .register-btn,
    .login-btn {
        text-align: center;
        font-size: 12px;
        padding: 5px;
    }
    .title-container .title {
        font-size: 24px;
    }
    .accordion-button {
        font-size: 18px;
    }
    .hovercard .card-hover-body .card-title {
        font-size: 18px;
    }
    .token-btn.header .token-btn-text {
        font-size: 14px;
    }
    .intro-animated-icon {
        height: 40px;
        width: 40px;
        object-fit: contain;
    }
    .intro-text-container .intro-title-text {
        font-size: 26px;
        line-height: 30px;
        margin: 25px 0;
    }
    .app-home-title {
        font-size: 20px;
    }
    .app-home-title .icon-45 {
        height: 25px;
        width: 25px;
    }
    .fs-6 {
        font-size: 16px;
    }
    .app-home-title-2 {
        font-size: 20px;
    }
    .app-home-hue-card .pricing-container .pricing-text {
        font-size: 26px;
    }
    .listtext {
        font-size: 14px;
    }
    .banner-title-text {
        font-size: 24px;
        line-height: 30px;
    }
    .app-home-banner-text {
        font-size: 14px;
    }
    .intro-slider {
        width: 100%;
        height: 280px;
    }
    .hovercard .card-hover-body .card-text {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.7);
    }
    .hovercard .card-hover-header .badge.bg-dark {
        background-color: rgba(33, 37, 41, 0.6) !important;
    }
}
@media (max-width: 576px) {
    .swiper {
        width: 100%;
        height: auto;
    }
    .swiper img {height: auto;}
}
.primary-text{
    color: #ff5c8a;
}

.cookie-consent{position:fixed!important;bottom:0;padding:15px;background-color:#2b1d26;color:#dddddd;border-top:1px solid #ffffff4d;width:100%;z-index:99}
.cookie-consent .cookies-btn{background-color:#ff5c8a;color:#fff;border-radius:5px;padding:10px 15px;font-size:14px;cursor: pointer;}
.cookie-consent .accept-cookies-btn{background-color:#ff5c8a;color:#fff;border-radius:5px;padding:10px 15px;font-size:14px;cursor: pointer;}
.cookie-consent .reject-cookies-btn{background-color:#ff5c8a;color:#fff;border-radius:5px;padding:10px 15px;font-size:14px;cursor: pointer;}
.fs-7{font-size:0.9rem!important}
input.text-lowercase::placeholder {
    text-transform: none !important; /* or capitalize, uppercase, inherit, etc. */
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff;
    -webkit-box-shadow: 0 0 0 30px #1a0f17 inset !important;
    /* transition: background-color 5000s ease-in-out 0s; */
    caret-color:#ffffff;
}

.aig-modal-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal-md{
    --bs-modal-width:600px;
}
.maintenance-container-w6{
    max-width: 600px;
}

.maintenance-container-w8{
    max-width: 800px;
}

.maintenance-container {
    text-align: center;
    padding: 3rem;
    background: #000000;
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    /* max-width: 600px; */
    width: 100%;
    position: relative;
    overflow: hidden;
    animation: containerFade 0.6s ease-out;
}

.maintenance-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF5C8A, transparent);
    animation: scanline 2s linear infinite;
}

.maintenance-container > .icon {
    margin-bottom: 1.5rem;          
}

.maintenance-container > .gear {
    width: 100%;
    height: 100%;
    border: 4px solid #60a5fa;
    border-radius: 50%;
    position: relative;
    animation: spin 4s linear infinite;
}

.maintenance-container > .gear::before,
.maintenance-container > .gear::after {
    content: '';
    position: absolute;
    background: #60a5fa;
    border-radius: 2px;
}

.maintenance-container > .gear::before {
    width: 4px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 -30px 0 #60a5fa, 0 30px 0 #60a5fa;
}

.maintenance-container > .gear::after {
    width: 20px;
    height: 4px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: -30px 0 0 #60a5fa, 30px 0 0 #60a5fa;
}

.maintenance-container > h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    animation: titleSlide 0.6s ease-out;
}

.maintenance-container > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 2rem;
    animation: textFade 0.6s ease-out 0.2s both;
}

.maintenance-container > .status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 9999px;
    font-size: 0.875rem;
    color: #ffffff;
    animation: statusPulse 2s infinite;
}

.maintenance-container > .status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #FF5C8A;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes containerFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleSlide {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes textFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes scanline {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes statusPulse {
    0%, 100% {
        background: rgba(96, 165, 250, 0.1);
    }
    50% {
        background: rgba(96, 165, 250, 0.2);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@media (max-width: 640px) {
    .maintenance-container {
        padding: 2rem;
        border-radius: 16px;
    }

    .maintenance-container > h1 {
        font-size: 2rem;
    }

    .maintenance-container > p {
        font-size: 1rem;
    }
}
.blur-6{
    filter: blur(6px);
}
.blur-8{
    filter: blur(8px);    
}
.blur-10{
    filter: blur(10px);
}
.flex-grow-1{
    flex-grow: 1;
}
.ml-0{
    margin-left: 0px !important;
}
.mr-0{
    margin-right: 0px !important;
}
.timer-banner {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
    color: white;
    padding: 8px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1040;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.timer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.timer-boxes {
    display: flex;
    gap: 4px;
}

.time-box {
    background: white;
    color: #333;
    border-radius: 6px;
    padding: 2px 4px;
    min-width: 35px;
    font-weight: bold;
    /* font-size: 20px; */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.time-lable {
    font-size: 6px;
    text-transform: uppercase;
    opacity: 0.9;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:-3px;
}

.time-box.flip {
    animation: flipAnimation 0.6s ease;
}
@keyframes flipAnimation {
    0% {
        transform: rotateX(0deg);
    }
    50% {
        transform: rotateX(90deg);
    }
    100% {
        transform: rotateX(0deg);
    }
}
.time-box.pulse {
    animation: pulseAnimation 0.5s ease;
}

@keyframes pulseAnimation {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
}
.time-header-margin{
    margin-top:50px;
}
@media (max-width: 395px) {
    .time-header-margin{
        margin-top:89px;
    }
    .app-sidebar.expanded {
        margin-top: 59px;
    }
}