body.auth {
	background-color:black;
	color:white;
}

:root {
    --white: #fff;
    --ctBlack: #000;
    --hoverColor: #1d1c20;
    --mainDarkColor: linear-gradient(90deg, #0b3d91, #1e88e5);
	--mainDarkColor2: linear-gradient(240deg, #0b3d91, #1e88e5);
    --borerColor: #2e323a;
    --primaryCtColor: #005eff;
    --colorBodyText: black;
	--colorBodyTextOld: #a9a9a9;
    --mainBodyColor: #111115;
}

/* Scroll  */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--hoverColor);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: transparent;
}
.flex-col {
    flex-direction: column;
}
.border-ra-10 {
    border-radius: 10px;
}
/* card design */
.ct-card {
    background-color: #2e323a;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.ct-card .effect_shimmer--spinner {
    align-items: center;
    bottom: 0;
    display: flex;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.ct-card .effect_shimmer--spinner div {
    animation: shimmerSpin 6s linear infinite;
    background: var(--border);
    background: conic-gradient(
        from 0deg at 50% 50%,
        #fff 0deg,
        transparent 60deg,
        transparent 300deg,
        #fff 1turn
    );
    height: 1000%;
    opacity: 0.5;
    width: 100%;
}

@keyframes shimmerSpin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(1turn);
    }
}

.ct-card .effect_shimmer--content {
    border-radius: 11px;
    margin: 1px;
    padding: 20px;
    position: relative;
    z-index: 1;
    min-height: 150px;
}

.ct-card .effect_shimmer--background {
    background: var(--mainDarkColor2);
    border-radius: 11px;
    bottom: 1px;
    left: 1px;
    position: absolute;
    right: 1px;
    top: 1px;
    z-index: 0;
}

/* siderbar Css  */
.siderbar-card .user-img {
    width: 60px;
    height: 60px;
    border-radius: 60px;
}
.siderbar-card .user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.siderbar-card .profile-name {
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
}
.siderbar-card .list-ul-ct {
    gap: 20px;
}
.siderbar-card .list-ul-ct .list-inline-item {
    background-color: #1d1c20;
    width: 40px;
    height: 40px;
    border-radius: 9px;
    transition: all 0.5s ease;
}
.siderbar-card .list-ul-ct .list-inline-item:hover {
    background-color: var(--ctBlack);
}
.siderbar-card .list-ul-ct .list-inline-item i {
    color: var(--white);
}
.siderbar-card {
    padding-bottom: 20px;
}
.sidebar .sidebar-sticky .nav {
    gap: 5px;
}

/* Header CSS */
.navbar-header {
    border-bottom: 1px solid var(--borerColor);
    background: var(--mainDarkColor2);
}
.navbar-header .navbar-brand img {
    filter: invert(1);
    height: 36px;
    width: auto;
}
.right-header-nav li a i {
    font-size: 18px;
    color: #a9a9a9 !important;
}
.right-header-nav .user-li-header a img {
    width: 36px;
    height: 36px;
    border-radius: 36px;
}
.right-header-nav .user-li-header .dropdown-toggle:after {
    color: var(--white);
}
.right-header-nav .language-header-li img {
    width: 22px;
    height: auto;
}
.right-header-nav .language-header-li span {
    display: inline;
    color: var(--white);
}
.right-header-nav .language-header-li .nav-link {
    gap: 6px;
}
.right-header-nav .language-header-li .dropdown-toggle:after {
    color: var(--white);
}
/* dropdown-menu  */

.dropdown-menu {
    background-color: var(--ctBlack);
    box-shadow: 0 0 20px 0 rgb(33 33 48) !important;
    border-radius: 12px;
    padding: 10px !important;
}
.dropdown-menu .dropdown-item {
    border-radius: 9px;
    margin-bottom: 3px;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}
.dropdown-menu .dropdown-item i {
    color: var(--white) !important;
}
/* Button Css */
.ct-button {
    background-image: linear-gradient(
        -45deg,
        #23d5ab,
        #23a6d5,
        #3d4ef2,
        #9207ff
    );
    border-radius: 100px;
    cursor: pointer;
    height: 52px;
    padding: 0 40px;
    min-width: -moz-fit-content;
    min-width: fit-content;
    overflow: hidden;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    text-decoration: none !important;
    color: var(--white);
}

.ct-button:hover {
    transform: scale(1.05);
}

.ct-button .inner-container {
    align-items: center;
    bottom: 0;
    display: flex;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.ct-button .spinner {
    animation: button-spin 3s linear infinite;
    background: conic-gradient(
        from 0deg at 50% 50%,
        hsla(0, 0%, 100%, 0.8) 0deg,
        transparent 60deg,
        transparent 300deg,
        hsla(0, 0%, 100%, 0.8) 1turn
    );
    height: 1000%;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

@keyframes button-spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(1turn);
    }
}

.ct-button .inner-background {
    /* background-color: #1d1c20; */
    background-image: url(../svg/dott-img.gif);
    background-repeat: repeat;
    background-size: cover;
    border-radius: 100px;
    bottom: 2px;
    left: 2px;
    position: absolute;
    right: 2px;
    top: 2px;
}

.ct-button .highlight {
    background-color: #ffffff29;
    border-radius: 100px;
    bottom: 0;
    filter: blur(0.5rem);
    height: 33.33%;
    left: 50%;
    opacity: 1;
    position: absolute;
    transform: translate(-50%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 80%;
}

.ct-button:hover .highlight {
    height: 66.66%;
    opacity: 1;
}

.ct-button p {
    font-family: SemiBold, system-ui, sans-serif;
    position: relative;
    color: #fff;
    font-size: 16px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ct-button-2 */
.ct-button-2 {
    height: 52px;
    padding: 0 40px;
    border: 1px solid #a9a9a9;
    border-radius: 100px;
    cursor: pointer;
    min-width: fit-content;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
    background: var(--mainBodyColor);
    font-family: system-ui, sans-serif;
    color: var(--white) !important;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.ct-button-2:hover {
    transform: scale(1.05);
}
.ct-table-btn {
    background: linear-gradient(180deg, #2693ff 0, var(--primaryCtColor) 100%);
    border-radius: 6px;
    cursor: pointer;
    gap: 6px;
    height: 32px;
    min-width: -moz-fit-content;
    min-width: fit-content;
    overflow: hidden;
    padding: 0 12px;
    position: relative;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: -moz-fit-content;
    width: fit-content;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    box-shadow: inset 0 2px 1px hsla(0, 0%, 100%, 0.25),
        0 0 0 2px hsla(0, 0%, 100%, 0.1);
    border: 0;
}
.ct-table-btn:hover {
    box-shadow: inset 0 2px 4px hsla(0, 0%, 100%, 0.25);
}
/* top-chartSet-images-bg*/
.top-chartSet-images-bg::before {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath fill='rgba(0,0,0,0.1)' fill-rule='evenodd' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4Zm-1 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-9-10h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm9-10v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-9-10h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm9-10v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-9-10h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm9-10v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-9-10h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Z' data-name='Path 3' opacity='.5'/%3E%3Cpath fill='rgba(0,0,0,0.1)' fill-rule='evenodd' d='M6 5V0H5v5H0v1h5v94h1V6h94V5Z' data-name='Path 4'/%3E%3C/svg%3E");
    content: "";
    filter: invert(1);
    height: 80vh;
    -webkit-mask-image: linear-gradient(0deg, transparent, #fff 50%);
    mask-image: linear-gradient(0deg, transparent, #fff 50%);
    opacity: 0.4;
    position: absolute;
    top: 0;
    width: 100%;
}
.top-chartSet-images-bg .gradient {
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    z-index: 2;
}
.top-chartSet-images-bg .gradient div {
    background-image: radial-gradient(at 27% 37%, #3a8bfd 0, transparent 0),
        radial-gradient(at 97% 21%, #72fe7d 0, transparent 50%),
        radial-gradient(at 52% 99%, #fd3a4e 0, transparent 50%),
        radial-gradient(at 10% 29%, #855afc 0, transparent 50%),
        radial-gradient(at 97% 96%, #e4c795 0, transparent 50%),
        radial-gradient(at 33% 50%, #8ca8e8 0, transparent 50%),
        radial-gradient(at 79% 53%, #eea5ba 0, transparent 50%);
    cursor: pointer;
    filter: blur(100px) saturate(150%);
    height: 200px;
    opacity: 0.3;
    width: 50%;
}
.primary-text-color {
    color: var(--primaryCtColor);
}
/* Login Page Css start */
.login-select-lau .dropdown-toggle {
    color: #fff;
    font-size: 16px;
}
.login-select-lau .dropdown-toggle img {
    width: 24px;
    height: auto;
}
.login-card-width {
    max-width: 500px;
    width: 100%;
}
.main-height-login-section {
    min-height: calc(100vh - 60px);
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.main-height-login-section .login-logo img {
    filter: invert(1);
    margin-bottom: 30px;
    height: 44px;
    width: auto;
}
.main-height-login-section .card-title {
    font-size: 28px;
    font-weight: 400;
    text-align: center;
    line-height: normal;
}
.form-group .form-control {
    color: var(--white);
    height: 100%;
    padding: 0 10px 0 20px;
    width: 100%;
    background-color: var(--hoverColor);
    border: 1px solid var(--borerColor);
    border-radius: 8px;
    cursor: pointer;
    height: 50px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    caret-color: var(--white);
}
.form-group .form-control:focus {
    border-color: var(--primaryCtColor);
}

.main-height-login-section .custom-control {
    margin: 26px 0 0 0;
}
.main-height-login-section .custom-control-label {
    cursor: pointer;
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
    color: var(--colorBodyText);
    padding-left: 10px;
}
.custom-control-label:after,
.custom-control-label:before {
    height: 20px;
    width: 20px;
    top: 0;
    background-color: transparent;
    border-color: var(--subtitle);
    cursor: pointer;
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label:before {
    border-color: var(--subtitle);
}
.login-btn-block .ct-button {
    min-width: 150px;
    margin: 10px auto 30px auto;
}
.main-height-login-section .forgot {
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
    color: var(--colorBodyText);
}
.main-height-login-section .dont-account-text a {
    color: var(--primaryCtColor);
}
.provide-text {
    font-size: 16px;
    color: var(--colorBodyText);
}
/* Login Page Css End */
.aside-border {
    background-color: var(--borerColor);
    height: 1px;
    -webkit-mask-image: linear-gradient(
        270deg,
        transparent,
        #fff 30%,
        #fff 70%,
        transparent
    );
    mask-image: linear-gradient(
        270deg,
        transparent,
        #fff 30%,
        #fff 70%,
        transparent
    );
    min-height: 1px;
}
.right-header-nav .text-muted {
    font-size: 18px;
    color: var(--white);
}
.right-header-nav .bg-lighter {
    background-color: rgb(255 255 255 / 50%); /* 50% transparent */
    color: var(--subtitle);
}
/* welcome-section-dash */
input:-webkit-autofill,
select:-webkit-autofill {
    background-color: #1d1c20 !important;
    -webkit-box-shadow: 0 0 0px 1000px #1d1c20 inset !important;
    -webkit-text-fill-color: var(--white) !important;
}

input:-moz-autofill,
select:-moz-autofill {
    background-color: #1d1c20 !important;
    color: #fff !important;
}

input:-ms-autofill,
select:-ms-autofill {
    background-color: #1d1c20 !important;
    color: #fff !important;
}
h2.main-title-dashboard.text-center {
	color: white !important;
}
p.main-title-dashboard.text-center {
	color: white !important;
}
.dashboard-container {
    max-width: 1400px;
    margin: auto;
    width: 100%;
}
.main-title-dashboard {
    color: var(--black);
    font-size: clamp(30px, 5vw, 45px);
    font-weight: 900;
}
.sub-title-dashboard {
    color: var(--white);
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 500;
}
.text-16 {
    font-size: 16px;
    color: var(--colorBodyText);
    font-weight: 500;
    line-height: 24px;
}
.gap-2 {
    gap: 12px;
}
.gap-3 {
    gap: 16px;
}
.text-20 {
    color: var(--subtitle);
    font-size: 20px;
    line-height: 26px;
}
.list-style-none {
    list-style: none;
}
.welcome-section-dash .welcome-content {
    width: 100%;
    max-width: 600px;
}
.banner-slider-swiper {
    background-color: var(--ctBlack);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgb(255, 255, 255, 0.2);
}
.welcome-section-dash .need-help-section {
    margin-top: 80px;
}
.need-help-section {
    margin-top: 30px;
    min-height: 350px;
}
/* Pricing Box Css Start*/
.pricing-section .ct-card .card-header p {
    color: var(--white);
    font-size: 20px;
    line-height: normal;
    font-weight: 700;
    text-transform: capitalize;
	margin-top:20px;
}
.pricing-section .ct-card .card-body .price-heading {
    color: var(--white);
    margin-top: 10px;
    font-size: 37px;
    font-weight: 500;
    margin-bottom: 25px;
}
.pricing-section .ct-card .card-body .price-heading sub {
    color: var(--colorBodyText);
    font-size: 16px;
}
.pricing-section .ct-card .card-body .list-title {
    background: linear-gradient(-45deg, #23a6d5, var(--primaryCtColor));
    -webkit-background-clip: text;
    color: var(--primaryCtColor);
    -webkit-text-fill-color: transparent;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}
.pricing-section .ct-card .card-body .list li {
    font-weight: 400;
}
.pricing-section .ct-card .card-footer .payment-buttons {
    gap: 10px;
}
.pricing-section .ct-card .link-icone {
    font-size: 20px;
    line-height: 20px;
    color: #25cd90;
    font-family: system-ui, sans-serif;
    font-weight: 900;
}
/* Pricing Box Css End*/

/* Modal  Css Start*/
.ct-modal-section {
    backdrop-filter: saturate(180%) blur(13px);
    background-color: rgba(14, 14, 17, 0.5);
}
.ct-modal-section .modal-content {
    background-color: transparent;
}
.ct-modal-section .modal-dialog {
    max-width: 700px;
}
.ct-modal-section .modal-content .modal-header {
    padding: 0;
    background-color: transparent;
    border: 0;
}
.ct-modal-section .modal-content .modal-header .modal-title {
    font-size: 30px;
    color: var(--white);
    font-weight: 600;
    line-height: normal;
}
.ct-modal-section .model-close-ct {
    opacity: 1;
}
/* Modal  Css End*/

/* faq-section-ct Start */

.section_faq .faq-card-header .btn-link:after {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 18 10'%3E%3Cpath d='M254.6 477.479c5.111-4.207 307.117-307.256 307.117-307.256s14.488-16.272 36.122-16.24c23.342.036 38.586 16.113 38.586 16.113S939.167 475.94 940.854 477.463c26.346 23.792 15.158 59.476 1.973 73.893-14.221 15.55-46.497 24.142-74.508-2.255-2.968-2.797-263.473-263.585-263.473-263.585s-3.709-4.693-7.365-4.855c-3.231-.144-7.798 4.788-7.798 4.788S332.794 543.858 326.478 549.801c-13.864 13.046-50.015 27.094-74.199 2.218-34.039-35.013-1.559-71.346 2.321-74.54' style='fill:%23fff' transform='matrix(-.02471 0 0 -.02374 23.75 13.557)'/%3E%3C/svg%3E");
    background-size: cover;
    content: "";
    height: 10px;
    min-width: 18px;
    transition: 0.3s ease;
    width: 18px;
    display: block;
    transition: all 0.5s ease;
    transform: rotate(180deg);
}
.section_faq .faq-card-header .btn-link.collapsed:after {
    transform: rotate(0deg);
}
.section_faq .faq-card-header .btn-link {
    padding: 20px 0;
    color: var(--white);
    display: flex;
    font-size: 18px;
    text-align: left;
}
.section_faq .faq-card-header .btn-link:hover {
    text-decoration: none;
}
.section_faq .card-body span {
    line-height: 24px;
}
.main-faq-card:not(:last-child) {
    border-bottom: 1px solid var(--borerColor);
}
/* faq-section-ct End */
/* affiliates-box */
.affiliates-box .text {
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
    background: linear-gradient(-45deg, #23a6d5, var(--primaryCtColor));
    -webkit-background-clip: text;
    color: white;
}
.invit-text {
    color: var(--colorBodyText);
    font-weight: 400;
}
/* ct-nav-tabs Start  */
.ct-nav-tabs ul {
    margin: 0 0 30px 0;
    padding: 8px;
    border: 0;
	background: var(--mainDarkColor2);
    border: 1px solid hsla(0, 0%, 100%, 0.08);
    width: 100%;
    border-radius: 12px;
    justify-content: space-evenly;
    flex-wrap: nowrap;
    align-items: center;
}
.ct-nav-tabs ul .nav-item {
    width: 100%;
    text-align: center;
}
.ct-nav-tabs ul .nav-item .nav-link {
    width: 100%;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    font-size: 16px;
    color: var(--white);
    cursor: pointer;
    display: block;
    border: 0 !important;
    border-radius: 6px;
    font-weight: 600;
}
.ct-nav-tabs ul .nav-item .nav-link.active {
    color: var(--ctBlack);
    background-color: var(--white);
}
.form-group select {
    background-image: linear-gradient(45deg, transparent 50%, gray 50%),
        linear-gradient(135deg, gray 50%, transparent 50%),
        linear-gradient(to right, #000000, #ccc);
    background-position: calc(100% - 20px) calc(1em + 6px),
        calc(100% - 15px) calc(1em + 6px), calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 32px;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 45px !important;
}

/* ct-nav-tabs End */

/* qr Code Css start */
.section_bento .qr-icon {
    background-image: radial-gradient(
            circle farthest-side at 0 100%,
            #3d4ef2,
            transparent
        ),
        radial-gradient(circle farthest-side at 100% 0, #23a6d5, transparent),
        radial-gradient(circle farthest-side at 100% 100%, #23d5ab, transparent),
        radial-gradient(circle farthest-side at 0 0, #9207ff, #141316);
    border-radius: 14px;
    padding: 2px;
    position: relative;
    width: 280px;
}

.section_bento .qr-icon .qr-bg {
    background-image: linear-gradient(145deg, #201f22, #050505);
    border-radius: 12px;
    box-shadow: 0 6px 8px 1px #00000080;
    height: 100%;
    position: relative;
    width: 100%;
}

.section_bento .qr-icon .qr-bg .inner-qr-scal {
    padding: 20px;
}

.section_bento .qr-icon img {
    width: 100%;
    height: 100%;
}

.section_bento .qr-icon .ct-button-2 {
    margin-top: 20px;
}
.svg-scaner-q svg {
    width: 100% !important;
    height: 100% !important;
    border-radius: 6px;
}
/* qr Code Css  End */

.ct-upload-btn {
    background-image: linear-gradient(
        -45deg,
        #23d5ab,
        #23a6d5,
        #3d4ef2,
        #9207ff
    );
    box-shadow: inset 0 2px 1px hsla(0, 0%, 100%, 0.25),
        0 0 0 2px hsla(0, 0%, 100%, 0.1);
    border-radius: 6px;
    cursor: pointer;
    gap: 6px;
    min-width: -moz-fit-content;
    min-width: fit-content;
    overflow: hidden;
    padding: 12px 12px;
    position: relative;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--white);
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
    border: 0;
}
.ct-upload-btn:hover {
    color: var(--white);
    transform: scale(0.99);
}
.upload-images-block {
    background: var(--mainDarkColor2);
    border: 1px solid var(--borerColor);
    border-radius: 20px;
    overflow: hidden;
    padding: 24px;
}
.upload-card-img {
    border-radius: 12px;
    border: 1px dashed var(--borerColor);
    padding: 20px;
    text-align: center;
    background-color: var(--hoverColor);
    transition: all 0.5s ease;
}

.upload-images-block .croppie-container .cr-boundary {
    width: 100% !important;
}
.upload-images-block .cr-slider-wrap input {
    background-color: var(--white);
}

/* Table Css Start */
.table-responsive table {
    min-width: 600px;
}
.table-responsive::-webkit-scrollbar-thumb {
    background: var(--mainDarkColor);
}
.table-responsive thead th {
    font-size: 16px;
    color: var(--white);
    background-color: var(--mainDarkColor);
    font-weight: 400;
    line-height: 24px;
    border: 0;
    white-space: nowrap;
    vertical-align: middle;
}
.table-responsive thead th:first-child {
    border-radius: 10px 0 0 10px;
    padding-left: 18px;
}
.table-responsive thead th:last-child {
    border-radius: 0px 10px 10px 0;
}
.table-responsive tbody td {
    font-size: 15px;
    color: white;
    font-weight: 400;
    line-height: 24px;
    border: 0;
    vertical-align: middle;
}
.table-add-button .icons {
    color: var(--colorBodyText);
    transition: all 0.5s ease;
}
.table-add-button .icons:hover {
    color: var(--primaryCtColor);
}

/* Table Css End */
.swal-modal {
    background-color: var(--mainBodyColor) !important;
    border: 1px solid var(--borerColor) !important;
    border-radius: 12px;
}
.swal-modal .swal-title {
    font-size: 30px;
    color: var(--white);
    font-weight: 600;
    line-height: normal;
}
.swal-modal .swal-text {
    font-size: 16px;
    color: var(--colorBodyText);
    font-weight: 500;
    text-align: center;
    line-height: 24px;
}
.swal-button-container {
    display: flex;
    justify-content: center;
}
.swal-button-container .swal-button {
    background-image: linear-gradient(
        -45deg,
        #23d5ab,
        #23a6d5,
        #3d4ef2,
        #9207ff
    );
    box-shadow: inset 0 2px 1px hsla(0, 0%, 100%, 0.25),
        0 0 0 2px hsla(0, 0%, 100%, 0.1);
    transition: all 0.5s ease;
}
.swal-button-container .swal-button:hover {
    transform: scale(0.99);
}
.swal-overlay--show-modal {
    backdrop-filter: saturate(180%) blur(13px);
    background-color: rgba(14, 14, 17, 0.5);
}
/* alert-notification */
.alert {
    border-radius: 12px;
    border: 0;
    font-size: 16px;
    line-height: 24px;
}
.alert i {
    margin-right: 10px;
}
.alert.alert-success {
    background-color: #28a74620;
    color: #28a745;
}
.alert.alert-danger {
    background-color: #fd000021;
    color: #e94848;
}
.an-link {
    background: linear-gradient(-45deg, #23a6d5, var(--primaryCtColor));
    -webkit-background-clip: text;
    color: var(--primaryCtColor);
    -webkit-text-fill-color: transparent;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}
/* qr-code-details */
.qr-code-details {
    /* padding-left: 40px; */
}
.checkBox-label input[type="checkbox"] {
    accent-color: var(--primaryCtColor);
    width: 18px;
    height: 18px;
}
/* backup-url-li */
.backup-url-li {
    gap: 8px;
}
.backup-url-li li {
    padding: 6px 6px 6px 35px;
    font-weight: 400;
    word-break: break-all;
}
.backup-url-li li::before {
    content: "∞";
    position: absolute;
    left: 10px;
    top: 7px;
    font-size: 18px;
    line-height: 18px;
    color: #25cd90;
    font-family: system-ui, sans-serif;
    font-weight: 900;
}
.url-group input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primaryCtColor);
}

/* qr-code-type-buttons */
.qr-code-type-buttons {
    gap: 10px;
}
/* Styling for the buttons */
.qr-code-type-buttons .btn-dark {
  margin: 0 !important;
  background-image: linear-gradient(#242325, #171619);
  border: 2px solid #181818;
  border-radius: 12px;
  box-shadow: inset 0 1px 2px #525154, 0 3px 10px #00000059;
  cursor: pointer;
  gap: 6px;
  min-width: 42px;
  position: relative;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 16px;
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 9px 12px;
  margin-bottom: 10px; /* Add margin at the bottom */
  width: 100%; /* Ensure buttons take full width */
  box-sizing: border-box; /* Prevent overflow from padding */
}

/* Layout for qr-code-type-buttons */
.qr-code-type-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px; /* Ensures space between buttons */
}

/* Button style for mobile view: 2 per row */
@media (max-width: 768px) {
  .qr-code-type-buttons .btn-dark {
    width: 100%; /* Ensure two buttons per row */
  }
}

/* Button style for larger screens */
@media (min-width: 1024px) {
  .qr-code-type-buttons .btn-dark {
    width: auto;  /* Revert to default width */
  }
}


.qr-code-type-buttons .btn-dark.active {
    color: #20ff00 !important;
}
.qr-code-type-buttons .btn-dark:focus {
    outline: none !important;
    box-shadow: inherit !important;
}
.qr-textarea-h {
    min-height: 80px;
    padding-top: 8px !important;
}
.welcome-list-dot {
    padding-left: 18px;
}
.datepicker tbody tr > td span.month.focused,
.datepicker tbody tr > td span.month:hover,
.datepicker tbody tr > td span.year.focused,
.datepicker tbody tr > td span.year:hover,
.datepicker tbody tr > td.day.active,
.datepicker tbody tr > td.day:hover,
.datepicker thead th.datepicker-switch:hover,
.datepicker thead th.next:hover,
.datepicker thead th.prev:hover {
    background-image: linear-gradient(
        -45deg,
        #23d5ab,
        #23a6d5,
        #3d4ef2,
        #9207ff
    ) !important;
}
.datepicker table tr td span,
.datepicker thead th.datepicker-switch,
.datepicker thead th.next,
.datepicker thead th.prev,
.datepicker td,
.datepicker th {
    color: #fff;
}
.datepicker-dropdown:after {
    border-bottom: 6px solid #000000;
}
.mt-30-nav {
    margin-top: 30px;
}
.paymentList-section .ct-table-btn {
    min-width: 130px;
}
.yourQr-code-table tr td:first-child,
.yourQr-code-table tr th:first-child{
    min-width: 220px;
}
/* Media
=============================
=====================*/
@media (min-width: 1500px) {
    .flex-2xl-nowrap {
        flex-wrap: nowrap !important;
    }
}
@media (max-width: 1400px) {
    .section_bento .qr-icon {
        width: 197px;
    }
}
@media (max-width: 991px) {
    .navbar {
        background-color: var(--mainDarkColor);
    }
    .navbar-brand-wrapper {
        border-right: 0;
    }
    .md-menu-bar button.navbar-toggler {
        color: var(--white);
    }
    .right-header-nav .user-li-header {
        margin-left: 10px;
    }
    .navbar-brand-wrapper {
        width: 200px;
        padding-left: 20px;
    }
    .navbar-header #top-navigation {
        flex-wrap: wrap;
        padding: 11px 0;
        column-gap: 12px;
    }
}

@media (max-width: 768px) {
    .card.qr-md-card {
        background-color: transparent;
        border: 0;
    }
    .card.qr-md-card .card-body {
        padding: 0;
    }
    .qr-code-table-re table {
        min-width: auto !important;
    }
    .qr-code-table-re table tr {
        border: 1px solid var(--borerColor);
        border-radius: 12px;
        background-color: #1d1c20;
        box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06), 0 1px 0 0 rgba(0, 0, 0, 0.02);
        padding: 10px 12px;
    }
    .qr-code-table-re table .table-add-button {
        background-color: var(--mainBodyColor);
        padding: 12px;
        border-radius: 10px;
    }
    .qr-code-table-re table tr td[data-label="ID"]::before {
        width: 49px;
        text-align: left;
    }
    .qr-code-table-re table tr td[data-label="Active URL"]::before {
        width: 100px;
        text-align: left;
    }
    .qr-code-section_bento {
        width: 100%;
    }
    .qr-code-section_bento.section_bento .qr-icon {
        width: 100%;
    }
}
@media (max-width: 600px) {
    .main-authentication .grid-qrcode-data {
        flex-direction: column;
        text-align: center;
    }
    .section_bento .qr-icon {
        width: 100%;
        margin: 0 auto;
        max-width: 320px;
    }
    .main-authentication .ct-button {
        margin: 0 auto;
    }
    .ct-nav-tabs ul {
        flex-direction: column;
        gap: 15px;
    }
    .qr-code-section_bento.section_bento .qr-icon {
        max-width: 100%;
    }
    .announcements .dropdown-menu {
        min-width: 294px !important;
        width: 100% !important;
        left: -106px;
    }
}
@media (max-width: 500px) {
    .welcome-section-dash .need-help-section {
        margin-top: 50px;
        min-height: 301px;
    }
}

/* ct-button-2 */
.ct-button-4 {
    height: 52px;
    padding: 0 40px;
    border: 1px solid #a9a9a9;
    border-radius: 100px;
    cursor: pointer;
    min-width: fit-content;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: inherit;
    background: var(--mainBodyColor);
    font-family: system-ui, sans-serif;
    color: var(--white) !important;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.ct-button-4:hover {
    transform: scale(1.05);
}

/* ct-button-2 */
.ct-button-5 {
    height: 52px;
    padding: 0 40px;
    border: 1px solid #a9a9a9;
    border-radius: 100px;
    cursor: pointer;
    min-width: fit-content;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    background: var(--mainBodyColor);
    font-family: system-ui, sans-serif;
    color: var(--white) !important;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
	margin-bottom:15px;
}

.ct-button-5:hover {
    transform: scale(1.05);
}

/* Social Login Buttons */
.social-login-section {
    margin: 20px 0;
    text-align: center;
}

.social-login-section .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px;
    margin-bottom: 15px;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-buttons .btn {
    margin-bottom: 10px;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.social-buttons .btn:last-child {
    margin-bottom: 0;
}

.social-buttons .btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.social-buttons .btn:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Facebook Button */
.btn-facebook {
    background-color: #4267b2;
    color: white;
    border-color: #4267b2;
}

.btn-facebook:hover {
    background-color: #365899;
    border-color: #365899;
    color: white;
    box-shadow: 0 4px 8px rgba(66, 103, 178, 0.3);
}

.btn-facebook:focus {
    box-shadow: 0 0 0 0.2rem rgba(66, 103, 178, 0.25);
}

/* Google Button */
.btn-google {
    background-color: #db4437;
    color: white;
    border-color: #db4437;
}

.btn-google:hover {
    background-color: #c23321;
    border-color: #c23321;
    color: white;
    box-shadow: 0 4px 8px rgba(219, 68, 55, 0.3);
}

.btn-google:focus {
    box-shadow: 0 0 0 0.2rem rgba(219, 68, 55, 0.25);
}

/* Twitter Button */
.btn-twitter {
    background-color: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.btn-twitter:hover {
    background-color: #1a91da;
    border-color: #1a91da;
    color: white;
    box-shadow: 0 4px 8px rgba(29, 161, 242, 0.3);
}

.btn-twitter:focus {
    box-shadow: 0 0 0 0.2rem rgba(29, 161, 242, 0.25);
}

/* Icon spacing */
.social-buttons .btn i {
    margin-right: 8px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .social-buttons .btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .social-login-section .text-muted {
        font-size: 13px;
    }
}

/* Dark theme compatibility */
@media (prefers-color-scheme: dark) {
    .social-login-section .text-muted {
        color: rgba(255, 255, 255, 0.6) !important;
    }
}