@import url('./reset.css');
@import url('./helper.css');


/*
==============================
Preloader css
==============================
*/
.preloader-holder {
    position: fixed;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-color: #1a0b36;
    z-index: 9999;
}

.preloader {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    animation: rotatePreloader 2s infinite ease-in;
}

.preloader div {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.preloader div:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0%;
    width: 10%;
    height: 10%;
    transform: translateX(-50%);
    border-radius: 50%;
}

.preloader div:nth-child(1) {
    transform: rotateZ(0deg);
    animation: rotateCircle1 2s infinite linear;
    z-index: 9;
}

.preloader div:nth-child(2) {
    transform: rotateZ(36deg);
    animation: rotateCircle2 2s infinite linear;
    z-index: 8;
}

.preloader div:nth-child(3) {
    transform: rotateZ(72deg);
    animation: rotateCircle3 2s infinite linear;
    z-index: 7;
}

.preloader div:nth-child(4) {
    transform: rotateZ(108deg);
    animation: rotateCircle4 2s infinite linear;
    z-index: 6;
}

.preloader div:nth-child(5) {
    transform: rotateZ(144deg);
    animation: rotateCircle5 2s infinite linear;
    z-index: 5;
}

.preloader div:nth-child(6) {
    transform: rotateZ(180deg);
    animation: rotateCircle6 2s infinite linear;
    z-index: 4;
}

.preloader div:nth-child(7) {
    transform: rotateZ(216deg);
    animation: rotateCircle7 2s infinite linear;
    z-index: 3;
}

.preloader div:nth-child(8) {
    transform: rotateZ(252deg);
    animation: rotateCircle8 2s infinite linear;
    z-index: 2;
}

.preloader div:nth-child(9) {
    transform: rotateZ(288deg);
    animation: rotateCircle9 2s infinite linear;
    z-index: 1;
}

.preloader div:nth-child(10) {
    transform: rotateZ(324deg);
    animation: rotateCircle10 2s infinite linear;
    z-index: 0;
}

@keyframes rotatePreloader {
    0% {
        transform: translateX(-50%) translateY(-50%) rotateZ(0deg);
    }

    100% {
        transform: translateX(-50%) translateY(-50%) rotateZ(-360deg);
    }
}

@keyframes rotateCircle1 {
    0% {
        opacity: 0;
    }

    0% {
        opacity: 1;
        transform: rotateZ(36deg);
    }

    7% {
        transform: rotateZ(0deg);
    }

    57% {
        transform: rotateZ(0deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

@keyframes rotateCircle2 {
    5% {
        opacity: 0;
    }

    5.0001% {
        opacity: 1;
        transform: rotateZ(0deg);
    }

    12% {
        transform: rotateZ(-36deg);
    }

    62% {
        transform: rotateZ(-36deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

@keyframes rotateCircle3 {
    10% {
        opacity: 0;
    }

    10.0002% {
        opacity: 1;
        transform: rotateZ(-36deg);
    }

    17% {
        transform: rotateZ(-72deg);
    }

    67% {
        transform: rotateZ(-72deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

@keyframes rotateCircle4 {
    15% {
        opacity: 0;
    }

    15.0003% {
        opacity: 1;
        transform: rotateZ(-72deg);
    }

    22% {
        transform: rotateZ(-108deg);
    }

    72% {
        transform: rotateZ(-108deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

@keyframes rotateCircle5 {
    20% {
        opacity: 0;
    }

    20.0004% {
        opacity: 1;
        transform: rotateZ(-108deg);
    }

    27% {
        transform: rotateZ(-144deg);
    }

    77% {
        transform: rotateZ(-144deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

@keyframes rotateCircle6 {
    25% {
        opacity: 0;
    }

    25.0005% {
        opacity: 1;
        transform: rotateZ(-144deg);
    }

    32% {
        transform: rotateZ(-180deg);
    }

    82% {
        transform: rotateZ(-180deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

@keyframes rotateCircle7 {
    30% {
        opacity: 0;
    }

    30.0006% {
        opacity: 1;
        transform: rotateZ(-180deg);
    }

    37% {
        transform: rotateZ(-216deg);
    }

    87% {
        transform: rotateZ(-216deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

@keyframes rotateCircle8 {
    35% {
        opacity: 0;
    }

    35.0007% {
        opacity: 1;
        transform: rotateZ(-216deg);
    }

    42% {
        transform: rotateZ(-252deg);
    }

    92% {
        transform: rotateZ(-252deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

@keyframes rotateCircle9 {
    40% {
        opacity: 0;
    }

    40.0008% {
        opacity: 1;
        transform: rotateZ(-252deg);
    }

    47% {
        transform: rotateZ(-288deg);
    }

    97% {
        transform: rotateZ(-288deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

@keyframes rotateCircle10 {
    45% {
        opacity: 0;
    }

    45.0009% {
        opacity: 1;
        transform: rotateZ(-288deg);
    }

    52% {
        transform: rotateZ(-324deg);
    }

    102% {
        transform: rotateZ(-324deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}


/*
==============================
Exetend css
==============================
*/
.d-card,
.has_submenu>a,
.or-text,
.account-page .img-wrapper,
.sp_referral_item .sp_referral_level_inner,
.sp_testimonial_item .sp_testimonial_thumb_area,
.sp_testimonial_area,
.testimonial-section,
.sp_team_item .sp_team_content,
.team-section,
.work-section,
.sp_pricing_item .package-features li,
.sp_pricing_item .pricing-header .left .icon,
.sp_pricing_item.popular,
.plan-section,
.sp_overview_item .sp_overview_caption,
.sp_overview_item .sp_overview_icon,
.sp_overview_wrapper div[class*=col-],
.overview-section,
.sp_benefit_item .sp_benefit_icon,
.about-section,
.sp_choose_item .sp_choose_icon,
.sp_choose_item,
.choose-section,
.sp_page_breadcrumb li,
.sp_page_banner,
.sp_banner_thumb,
.sp_banner,
.sp_subscription_form,
.sp_footer_menu_area,
.sp_brand_item,
.tab-btn-group .tab-btn,
.sp_badge,
.sp_check_list li,
body {
    position: relative;
}

.has_submenu>a::before,
.or-text::before,
.account-page .img-wrapper .account-line-bg,
.sp_referral_item .sp_referral_level_inner::before,
.sp_testimonial_item .sp_testimonial_thumb_area .slick-arrow,
.sp_testimonial_item .sp_testimonial_thumb_area .shape-circle span[class*=dot],
.sp_testimonial_item .sp_testimonial_thumb_area .shape-circle,
.sp_testimonial_item .sp_testimonial_thumb_area::before,
.sp_testimonial_area::before,
.testimonial-section div[class*=right-shape],
.sp_team_item .sp_team_content::after,
.team-section::before,
.work-section::before,
.sp_pricing_item .package-features li::before,
.sp_pricing_item .pricing-header .left .icon::before,
.sp_pricing_item.popular::before,
.plan-section .plan-el,
.sp_overview_item .sp_overview_caption::after,
.sp_overview_item .sp_overview_icon::after,
.sp_overview_wrapper div[class*=col-]::after,
.overview-section::after,
.overview-section::before,
.sp_benefit_item .sp_benefit_icon i,
.about-section .about-el,
.about-section::before,
.sp_choose_item .sp_choose_icon i,
.sp_choose_item .sp_choose_icon::after,
.choose-section::before,
.sp_page_breadcrumb li::after,
.sp_page_banner::before,
.sp_banner_thumb::before,
.sp_subscription_form button,
.back-to-top::after,
.back-to-top,
.sp_brand_item::after,
.sp_brand_slider .slick-list::after,
.sp_header,
.tab-btn-group .tab-btn::after,
.sp_badge::before,
.sp_check_list li::before {
    position: absolute;
}

.sp_banner .sp_banner_bottom_shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.or-text,
.account-page .img-wrapper,
.sp_testimonial_item .sp_testimonial_thumb_area,
.sp_testimonial_area,
.sp_team_item .sp_team_content,
.team-section,
.work-section,
.sp_pricing_item .pricing-header .left .icon,
.sp_pricing_item.popular,
.plan-section,
.about-section,
.sp_choose_item .sp_choose_icon,
.choose-section,
.sp_page_banner,
.sp_banner_thumb,
.sp_banner {
    z-index: 1;
}

.or-text::before,
.account-page .img-wrapper .account-line-bg,
.sp_testimonial_item .sp_testimonial_thumb_area .shape-circle,
.sp_testimonial_item .sp_testimonial_thumb_area::before,
.sp_team_item .sp_team_content::after,
.team-section::before,
.work-section::before,
.sp_pricing_item .pricing-header .left .icon::before,
.plan-section .plan-el,
.about-section .about-el,
.about-section::before,
.sp_choose_item .sp_choose_icon::after,
.choose-section::before,
.sp_page_banner::before,
.sp_banner_thumb::before,
.sp_banner .sp_banner_bottom_shape {
    z-index: -1;
}

.d-card,
.sidebar-menu>li a,
.user-sidebar,
.other-login-btns .other-login-btn i,
.other-login-btns .other-login-btn,
.sp_referral_item .sp_referral_level,
.sp_team_item .sp_team_content::after,
.sp_team_item .sp_team_content,
.sp_team_item .sp_team_thumb,
.sp_choose_item .sp_choose_icon::after,
.sp_choose_item .sp_choose_icon,
.sp_choose_item,
.sp_social_links li a,
.sp_header .sp_site_menu li .dropdown-menu li a,
.sp_header .sp_site_menu li .dropdown-menu,
.tab-btn-group .tab-btn::after,
.sp_site_checkbox label::before,
.form-control,
body {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.sidebar-menu>li.active a,
.other-login-btns .other-login-btn:hover,
.sp_referral_item .sp_referral_level_inner,
.sp_testimonial_item .sp_testimonial_thumb_area .slick-arrow,
.sp_testimonial_item .sp_testimonial_thumb_area .shape-circle span[class*=dot],
.testimonial-section .right-shape-1,
.sp_team_item .sp_team_thumb_inner,
.sp_work_item .sp_work_number,
.sp_pricing_item .package-features li::before,
.sp_pricing_item .pricing-header .left .icon::before,
.sp_pricing_item.popular::before,
.sp_overview_item .sp_overview_icon::after,
.sp_social_links li a:hover,
.sp_subscription_form button,
.back-to-top .back-to-top-inner,
.sp_brand_item::after,
.tab-btn-group .tab-btn::after,
.view-btn,
.sp_theme_btn,
.preloader div:before {
    background-color: var(--clr-main);
}

.account-page .img-wrapper,
.sp_contact_form,
.sp_contact_item,
.blog-widget,
.sp_blog_item,
.sp_testimonial_area::before,
.sp_pricing_item,
.sp_choose_item,
.sp_page_banner::before,
.sp_page_banner,
.sp_copy_right_area,
.sp_brand_slider .slick-list::after,
.sp_brand_wrapper,
.sp_header .sp_site_menu li .dropdown-menu,
.sp_header.header-fixed .sp_header_main,
.sp_site_card,
.input-group .input-group-text,
.form-select,
.select,
.sp_theme_btn2 {
    background-color: var(--clr-secondary);
}

.pagination .page-item .page-link,
.accordion-item .accordion-header .accordion-button:not(.collapsed) {
    background-color: #fff;
}

.has_submenu .submenu li.active a,
.sidebar-menu>li a:hover,
.user-sidebar .sidebar-bottom-box .upgrade-plan,
.sp_contact_item .sp_contact_content a:hover,
.sp_contact_item .sp_contact_icon,
.sp_blog_meta li i,
.sp_referral_item .sp_referral_content .referral-percentage,
.sp_pricing_item .pricing-header .left .icon i,
.sp_overview_item .sp_overview_icon i,
.sp_page_breadcrumb li a,
.sp_banner .sp_banner_title span,
.sp_footer_menu li a:hover,
.social-icons li a:hover,
.hc-list>li>a i,
.hc-list>li>a:hover,
.sp_header .sp_site_menu li .dropdown-menu li a:hover,
.sp_header .sp_site_menu li a:hover,
.sp_header .sp_site_menu li a:focus,
.sp_header .site-logo.site-title,
.tab-btn-group .tab-btn.active,
.sp_input_icon_field .form-control:focus~i,
.sp_site_table thead th,
.sp_check_list li::before,
.sp_theme_top_caption i,
.sp_theme_top_caption i.las,
.sp_theme_top_title span {
    color: var(--clr-main);
}

.mobile-bottom-menu li a.active,
.signal-widget-list li .caption,
.list-group-item,
.d-card-icon,
.sidebar-menu>li.active a,
.dropdown-menu .dropdown-item,
.user-dropdown .user-btn span,
.other-login-btns .other-login-btn:hover,
.sp_referral_item .sp_referral_level_inner,
.sp_testimonial_item .sp_testimonial_thumb_area .slick-arrow,
.sp_pricing_item .pricing-header .left .content p span,
.sp_pricing_item.popular::before,
.sp_page_breadcrumb li,
.sp_social_links li a,
.sp_subscription_form button,
.back-to-top .back-to-top-inner a,
.menu-toggle,
.changeLang:hover,
.changeLang:focus,
.changeLang,
.modal-header .close,
.input-group .input-group-text,
.view-btn:hover,
.view-btn,
.sp_theme_btn2:hover,
.sp_theme_btn2,
.sp_theme_btn:hover,
.sp_theme_btn {
    color: #fff;
}

.accordion-item .accordion-header .accordion-button:not(.collapsed),
.accordion-item .accordion-header .accordion-button,
.form-select,
.select,
.form-control:focus,
.form-control,
[data-caption]::before,
.caption-list li .caption {
    color: #fff;
}

.other-login-btns .other-login-btn,
.sp_contact_item .sp_contact_content a,
.sp_blog_btn,
.sp_team_item .sp_team_content ul li a,
.sp_footer_menu li a,
.sp_header .sp_site_menu li a,
.tab-btn-group .tab-btn,
.custom-nav-tabs .nav-item .nav-link,
.text-p {
    color: #bebebe;
}

.signal-details-thumb img,
.payment-box .payment-box-thumb img,
.single-recent-transaction img,
.user-dropdown .user-btn img,
.short-post .thumb img,
.sp_blog_item .sp_blog_thumb img,
.sp_testimonial_item .sp_testimonial_thumb_area img,
.sp_team_item .sp_team_thumb_inner img {
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.signal-widget-list li,
.signal-info-list .signal-single-list,
.singnal-card .singnal-card-top,
.single-recent-transaction,
.sidebar-menu>li a,
.user-header,
.other-login-btns,
.account-page,
.short-post,
.sp_blog_btn,
.sp_blog_meta,
.sp_referral_item .sp_referral_level_inner,
.sp_referral_item,
.sp_testimonial_item .sp_testimonial_thumb_area .slick-arrow,
.sp_testimonial_item,
.sp_team_item .sp_team_content ul,
.sp_pricing_item .package-features li::before,
.sp_pricing_item .pricing-header .left,
.sp_pricing_item .pricing-header,
.sp_benefit_item,
.sp_page_breadcrumb,
.sp_banner .sp_banner_bottom_shape,
.sp_social_links li a,
.sp_social_links,
.back-to-top .back-to-top-inner a,
.social-icons,
.hc-list,
.modal-header .close,
.btn-close,
.sp_input_icon_field i {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.d-card-icon,
.account-page .img-wrapper,
.sp_referral_item .sp_referral_level_inner,
.sp_testimonial_item .sp_testimonial_thumb_area .slick-arrow,
.sp_team_item .sp_team_content ul,
.sp_work_item .sp_work_number,
.sp_pricing_item .package-features li::before,
.sp_social_links li a,
.back-to-top .back-to-top-inner a,
.modal-header .close,
.btn-close,
.sp_input_icon_field i,
.view-btn,
.sp_theme_btn {
    justify-content: center;
}

.signal-widget-list li,
.signal-info-list .signal-single-list,
.singnal-card .singnal-card-top,
.single-recent-transaction,
.d-card-icon,
.sidebar-menu>li a,
.user-header,
.account-page .img-wrapper,
.sp_blog_btn,
.sp_blog_meta,
.sp_referral_item .sp_referral_level_inner,
.sp_testimonial_item .sp_testimonial_thumb_area .slick-arrow,
.sp_testimonial_item,
.sp_team_item .sp_team_content ul,
.sp_work_item .sp_work_number,
.sp_pricing_item .package-features li::before,
.sp_pricing_item .pricing-header .left,
.sp_pricing_item .pricing-header,
.sp_page_breadcrumb,
.sp_social_links li a,
.sp_social_links,
.back-to-top .back-to-top-inner a,
.sp_header .sp_site_menu,
.modal-header .close,
.btn-close,
.view-btn,
.sp_theme_btn2,
.sp_theme_btn,
.sp_theme_top_caption {
    align-items: center;
}

.d-card-icon,
.sp_work_item .sp_work_number,
.sp_choose_item .sp_choose_icon,
.view-btn,
.sp_theme_btn2,
.sp_theme_btn,
.sp_theme_top_caption {
    display: inline-flex;
}

.signal-details-thumb,
.singnal-card .singnal-card-thumb,
.payment-box .payment-box-thumb,
.payment-box,
.d-card,
.short-post .thumb,
.blog-details-img,
.sp_blog_item .sp_blog_thumb,
.sp_testimonial_item .sp_testimonial_thumb_slider,
.sp_testimonial_item .sp_testimonial_thumb_area .sp_testimonial_thumb {
    overflow: hidden;
}

.signal-details-thumb img,
.payment-box .payment-box-thumb img,
.user-header,
.or-text::before,
.short-post .thumb img,
.blog-details-img img,
.sp_blog_item .sp_blog_thumb img,
.sp_testimonial_item .sp_testimonial_thumb_area img,
.sp_testimonial_area::before,
.sp_team_item .sp_team_thumb_inner img,
.sp_page_banner::before,
.sp_banner .sp_banner_bottom_shape,
.sp_header,
.tab-btn-group .tab-btn::after,
.custom-nav-tabs .nav-item .nav-link {
    width: 100%;
}

.signal-details-thumb img,
.payment-box .payment-box-thumb img,
.d-card.d-icon-card,
.sp_contact_item,
.short-post .thumb img,
.blog-details-img img,
.sp_blog_item .sp_blog_thumb img,
.sp_testimonial_item .sp_testimonial_thumb_area img,
.sp_team_item .sp_team_thumb_inner img,
.sp_pricing_item,
.sp_choose_item,
.sp_page_banner::before,
.back-to-top .back-to-top-inner a {
    height: 100%;
}

.d-card:not(.not-hover):hover,
.sp_team_item:hover .sp_team_thumb,
.sp_choose_item:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.d-card.d-icon-card,
.user-sidebar .sidebar-bottom-box,
.or-text,
.account-page .copy-right-text,
.account-page .form-wrapper .inner-wrapper .title,
.sp_team_item,
.sp_work_item,
.sp_overview_item,
.sp_choose_item,
.sp_brand_item {
    text-align: center;
}

.has_submenu .submenu,
.other-login-btns .other-login-btn,
.sp_blog_item .sp_blog_thumb,
.sp_social_links li a,
.sp_subscription_form button,
.sp_header .sp_site_menu li .dropdown-menu,
.modal-header .close,
.sp_site_checkbox label::before,
.form-control,
.view-btn,
.btn {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.payment-box,
.d-card,
.sp_contact_item,
.blog-widget,
.sp_blog_item,
.sp_work_item,
.sp_site_card {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.signal-widget-list,
.signal-widget,
.signal-details-thumb,
.signal-details-wrapper,
.d-left-wrapper,
.sidebar-menu>li.active a,
.user-sidebar .sidebar-bottom-box,
.sp_contact_form,
.blog-details-img,
.sp_pricing_item,
.sp_choose_item {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.single-recent-transaction img,
.d-card-icon,
.user-dropdown .user-btn img,
.sp_testimonial_item .sp_testimonial_thumb_slider,
.sp_testimonial_item .sp_testimonial_thumb_area .slick-arrow,
.sp_testimonial_item .sp_testimonial_thumb_area img,
.sp_testimonial_item .sp_testimonial_thumb_area .sp_testimonial_thumb,
.sp_testimonial_item .sp_testimonial_thumb_area .shape-circle span[class*=dot],
.sp_testimonial_item .sp_testimonial_thumb_area::before,
.sp_team_item .sp_team_content::after,
.sp_work_item .sp_work_number,
.sp_pricing_item .package-features li::before,
.sp_pricing_item .pricing-header .left .icon::before,
.sp_overview_item .sp_overview_icon::after,
.overview-section::after,
.overview-section::before,
.sp_choose_item .sp_choose_icon::after,
.sp_banner_thumb::before,
.sp_badge::before {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}


/*
============================== 
Cookie css 
============================== 
*/
.cookies-card {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 9;
    justify-content: center;
    background-color: var(--separator-bg);
    border-radius: 8px;
}

.cookies-card.style-full {
    width: 420px;
    max-width: calc(100% - 30px);
}

.cookies-card-inner {
    padding: 1.875rem;
}

@media (max-width: 575px) {
    .cookies-card-inner {
        padding: 1.25rem;
    }
}

.cookies-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #DED4CD;
    font-size: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cookies-card__content {
    width: 100%;
    margin-bottom: 0;
    font-size: 0.875rem;
}

.cookies-card__btn {
    width: 100%;
}

.cookies-btn {
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    border: 1px solid #848484;
    margin: 3px 5px;
    display: inline-block;
    font-size: 14px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    width: calc(50% - 12px);
    text-align: center;
}

.cookies-btn.js-cookie-consent-agree {
    background-color: #DED4CD;
    color: #363636;
}

.cookies-btn:hover {
    background-color: #DED4CD;
    color: #363636;
}


/*
==============================
Header css
==============================
*/
.sp_header.header-fixed {
    position: fixed;
    z-index: 3;
}

.sp_header.header-fixed .sp_header_info_bar {
    display: none;
}

.sp_header.header-fixed .sp_header_main {
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.03);
}

.sp_header {
    top: 0;
    left: 0;
    z-index: 2;
}

.sp_header_main {
    background-color: transparent;
    padding: 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 1199px) {
    .sp_header_main {
        padding: 0.625rem 0;
    }
}

.sp_header .site-logo img {
    max-width: 13.4375rem;
    max-height: 4.0625rem;
}

@media (max-width: 1399px) {
    .sp_header .site-logo img {
        max-height: 2.8125rem;
    }
}

.sp_header .sp_site_menu {
    margin-left: 4.375rem;
}

@media (max-width: 1199px) {
    .sp_header .sp_site_menu {
        margin-left: 0;
        padding: 0.9375rem 0;
    }
}

.sp_header .sp_site_menu li {
    position: relative;
}

@media (max-width: 1199px) {
    .sp_header .sp_site_menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
}

.sp_header .sp_site_menu li:last-child a {
    padding-right: 0;
}

.sp_header .sp_site_menu > li > a {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    padding: 1.75rem 0.9375rem 1.75rem 0;
}

@media (max-width: 1399px) {
    .sp_header .sp_site_menu li a {
        padding: 1.25rem 0.9375rem 1.25rem 0;
    }
}

@media (max-width: 1199px) {
    .sp_header .sp_site_menu li a {
        color: #fff;
        padding: 0.5rem 0;
        display: block;
    }
}

.sp_header .sp_site_menu li .dropdown-menu {
    position: absolute;
    width: 220px;
    top: 105%;
    left: 0;
    z-index: 9999;
    padding: 0.3125rem 0;
    box-shadow: 0px 5px 15px 0 rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    border: 1px solid rgba(255, 255, 255, 0.0745098039);
    display: block;
}

.sp_header .sp_site_menu li .dropdown-menu.active {
    display: block;
}

@media (max-width: 1199px) {
    .sp_header .sp_site_menu li .dropdown-menu {
        opacity: 1;
        visibility: visible;
        display: none;
        position: static;
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        width: 100%;
        background-color: #1a0b36;
        border: none;
        padding: 0 0.9375rem;
    }
    .sp_header .sp_site_menu li .dropdown-menu.show {
        display: block;
    }
}

.sp_header .sp_site_menu li .dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.0745098039);
}

@media (max-width: 1199px) {
    .sp_header .sp_site_menu li .dropdown-menu li {
        border-color: rgba(255, 255, 255, 0.15);
    }
}

.sp_header .sp_site_menu li .dropdown-menu li:last-child {
    border-bottom: none;
}

.sp_header .sp_site_menu li .dropdown-menu li a {
    padding: 0.5rem 1.25rem;
    display: block;
    color: #bebebe;
    position: relative;
    font-size: 0.875rem;
    text-transform: capitalize;
}

@media (max-width: 1199px) {
    .sp_header .sp_site_menu li .dropdown-menu li a {
        color: #fff;
        padding: 0.5rem 0;
    }
}

.sp_header .sp_site_menu li .dropdown-menu li+li {
    margin-left: 0;
}

.sp_header .sp_site_menu li:hover>.dropdown-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.sp_header .sp_site_menu li+li {
    margin-left: 1.25rem;
}

@media (max-width: 1199px) {
    .sp_header .sp_site_menu li+li {
        margin-left: 0;
    }
}

.navbar-action {
    margin-left: 1.875rem;
}

@media (max-width: 1199px) {
    .navbar-action {
        margin-left: 0;
    }
}

.sp_header_info_bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.0745098039);
}

.hc-list>li {
    padding: 0.625rem 1.25rem;
    border-right: 1px solid rgba(255, 255, 255, 0.0745098039);
}

@media (max-width: 991px) {
    .hc-list>li {
        border-right: none;
    }
}

.hc-list>li:first-child {
    padding-left: 0;
}

.hc-list>li>a {
    color: white;
}

.hc-list>li>a i {
    margin-right: 4px;
}

.changeLang {
    background-color: transparent;
    padding: 0.1875rem 0.3125rem;
    border: none;
}

.changeLang option {
    color: #363636;
}

.social-icons li {
    padding: 0 0.75rem;
}

.social-icons li:first-child {
    padding-left: 0;
}

.social-icons li:last-child {
    padding-right: 0;
}

.social-icons li a {
    color: white;
}

.h-get-btn {
    color: #9c0ac1 !important;
    font-weight: 500;
}

@media (max-width: 1199px) {
    .navbar-collapse {
        margin-top: 20px !important;
        background-color: #150A2A;
        padding: 0 1.875rem 1.25rem 1.875rem;
    }
}

@media (max-width: 767px) {
    .navbar-collapse {
        max-height: 20rem;
        overflow: auto;
    }
}

.navbar-toggler {
    padding: 0;
    border: none;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.menu-toggle {
    margin: 10px 0;
    position: relative;
    display: block;
    width: 2.1875rem;
    height: 1.25rem;
    cursor: pointer;
    background: transparent;
    border-top: 2px solid;
    border-bottom: 2px solid;
    font-size: 0;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
}

.menu-toggle:before,
.menu-toggle:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    background: currentColor;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: -webkit-transform 0.25s ease-in-out;
    -webkit-transition: -webkit-transform 0.25s ease-in-out;
    -o-transition: -webkit-transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out;
    -moz-transition: -webkit-transform 0.25s ease-in-out;
    -ms-transition: -webkit-transform 0.25s ease-in-out;
}

@media (max-width: 1199px) {

    .menu-toggle:before,
    .menu-toggle:after {
        background-color: #fff;
    }
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}


/*
==============================
Footer css
==============================
*/
.sp_brand_wrapper {
    padding: 3.75rem 0;
}

@media (max-width: 1399px) {
    .sp_brand_wrapper {
        padding: 1.875rem 0;
    }
}

.sp_brand_slider .slick-list {
    margin: 0 -0.9375rem;
}

.sp_brand_slider .slick-list::after {
    content: "";
    top: 50%;
    right: 0;
    width: 2px;
    height: 30px;
    margin-top: -15px;
}

.sp_brand_slider .sp_brand_slide .sp_brand_item {
    padding: 0 0.9375rem;
}

.sp_brand_item::after {
    content: "";
    top: 50%;
    right: 0;
    width: 1px;
    height: 30px;
    opacity: 0.25;
    margin-top: -15px;
}

.sp_brand_item img {
    display: inline-block;
    max-height: 85px;
}

@media (max-width: 1399px) {
    .sp_brand_item img {
        max-height: 65px;
    }
}

.site-logo img {
    max-height: 3.4375rem;
}

.sp_footer_menu_area {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
}

@media (max-width: 1399px) {
    .sp_footer_menu_area {
        padding-top: 4.375rem;
        padding-bottom: 3.125rem;
    }
}

@media (max-width: 991px) {
    .sp_footer_menu_area {
        padding-bottom: 5rem;
    }
}

@media (max-width: 767px) {
    .sp_footer_menu_area {
        padding-bottom: 4.375rem;
    }
}

.back-to-top {
    top: -25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
}

.back-to-top::after {
    content: "";
    top: -5px;
    left: -4px;
    width: 53px;
    height: 60px;
    overflow: hidden;
    display: inline-block;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-image: url(../images/elements/hex-shape.png);
    mask-image: url(../images/elements/hex-shape.png);
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;
    background-color: #1a0b36;
    z-index: -1;
}

@media (max-width: 1399px) {
    .back-to-top::after {
        width: 50px;
        height: 57px;
    }
}

.back-to-top .back-to-top-inner {
    width: 45px;
    height: 50px;
    overflow: hidden;
    display: inline-block;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-image: url(../images/elements/hex-shape.png);
    mask-image: url(../images/elements/hex-shape.png);
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1399px) {
    .back-to-top .back-to-top-inner {
        width: 42px;
        height: 47px;
    }
}

.back-to-top .back-to-top-inner a {
    font-size: 1.375rem;
}

.sp_footer_item .sp_footer_item_title {
    margin-bottom: 1.5625rem;
}

@media (max-width: 991px) {
    .sp_footer_item .sp_footer_item_title {
        margin-bottom: 0.9375rem;
    }
}

.sp_footer_menu li+li {
    margin-top: 0.625rem;
}

.sp_subscription_form button {
    top: 50%;
    right: 5px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100% - 10px);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.sp_social_links {
    margin: -0.1875rem -0.4375rem;
}

.sp_social_links li {
    padding: 0.1875rem 0.4375rem;
}

.sp_social_links li a {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.0745098039);
    font-size: 0.9375rem;
}

.sp_social_links li a:hover {
    border-color: #9c0ac1;
}

.sp_copy_right_area {
    padding: 1.25rem 0;
}


/*
==============================
Banner css
==============================
*/
.sp_banner {
    padding-top: 15rem;
    padding-bottom: 4.375rem;
}

@media (max-width: 1399px) {
    .sp_banner {
        padding-top: 10.625rem;
        padding-bottom: 1.875rem;
    }
}

.sp_banner .sp_banner_bottom_shape {
    bottom: 0;
    left: 0;
    align-items: flex-end;
    height: auto;
    opacity: 0.2;
}

.sp_banner .sp_banner_bottom_shape img {
    width: 100%;
}

.sp_banner .sp_banner_title {
    font-size: 4.125rem;
}

@media (max-width: 1399px) {
    .sp_banner .sp_banner_title {
        font-size: 3.25rem;
    }
}

@media (max-width: 1199px) {
    .sp_banner .sp_banner_title {
        font-size: 3rem;
    }
}

@media (max-width: 575px) {
    .sp_banner .sp_banner_title {
        font-size: 2.25rem;
    }
}

.sp_banner .sp_banner_title span {
    font-weight: 400;
}

@media (max-width: 1399px) {
    .sp_banner .sp_check_list li {
        font-size: 1rem;
    }
}

.sp_banner_thumb {
    text-align: right;
}

.sp_banner_thumb::before {
    content: "";
    bottom: -100px;
    right: -100px;
    width: 550px;
    height: 550px;
    background: var(--clr-main);
    background: radial-gradient(circle, var(--clr-main) 0%, rgba(28, 142, 106, 0) 70%, rgba(0, 212, 255, 0) 100%);
    filter: blur(20px);
    opacity: 0.2;
}

.sp_banner_thumb img {
    max-height: 575px;
}

@media (max-width: 1399px) {
    .sp_banner_thumb img {
        max-height: 480px;
    }
}


/*
==============================
Page Banner css
==============================
*/
.sp_page_banner {
    padding-top: 11.25rem;
    padding-bottom: 3.75rem;
}

.sp_page_banner::before {
    content: "";
    top: 0;
    left: 0;
    opacity: 0.75;
}

.sp_page_breadcrumb li {
    padding: 0 0.625rem;
}

.sp_page_breadcrumb li:last-child::after {
    display: none;
}

.sp_page_breadcrumb li::after {
    content: "/";
    top: 0;
    right: -0.1875rem;
}


/*
==============================
Choose section css
==============================
*/
.choose-section::before {
    content: "";
    top: 15%;
    left: -18%;
    width: 35%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.015));
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    -webkit-transform: rotate(-41deg);
    -ms-transform: rotate(-41deg);
    transform: rotate(-41deg);
}

.sp_choose_item {
    position: relative;
    padding: 2.1875rem 1.875rem;
}

.sp_choose_item::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border: 3px solid var(--clr-main);
    opacity: 0.43;
}

.sp_choose_item:hover::before {
    opacity: 1;
}

@media (max-width: 1199px) {
    .sp_choose_item {
        padding: 1.5625rem 1.25rem;
    }
}

.sp_choose_item:hover .sp_choose_icon {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

.sp_choose_item:hover .sp_choose_icon::after {
    opacity: 0.2;
}

.sp_choose_item .sp_choose_icon::after {
    content: "";
    bottom: -15px;
    left: 50%;
    width: 100px;
    height: 15px;
    margin-left: -50px;
    background: radial-gradient(circle, var(--clr-main) 0%, rgba(28, 142, 106, 0) 70%, rgba(0, 212, 255, 0) 100%);
    filter: blur(5px);
    opacity: 0;
}

.sp_choose_item .sp_choose_icon img {
    max-height: 110px;
}

@media (max-width: 1399px) {
    .sp_choose_item .sp_choose_icon img {
        max-height: 90px;
    }
}

.sp_choose_item .sp_choose_icon i {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    line-height: 1;
    font-size: 2.25rem;
}

@media (max-width: 1399px) {
    .sp_choose_item .sp_choose_icon i {
        font-size: 2rem;
    }
}

.sp_choose_item .sp_choose_content {
    margin-top: 1.5625rem;
}


/*
==============================
About css
==============================
*/
.about-section::before {
    content: "";
    top: -15%;
    right: -18%;
    width: 35%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.015));
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    -webkit-transform: rotate(-41deg);
    -ms-transform: rotate(-41deg);
    transform: rotate(-41deg);
}

.about-section .about-el {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0.1;
}

.about-thumb img {
    max-height: 550px;
}


/*
==============================
Benefit css
==============================
*/
.sp_benefit_thumb {
    width: 120%;
    margin-left: -10%;
}

.sp_benefit_item {
    align-items: flex-start;
}

@media (max-width: 991px) {
    .sp_benefit_item {
        padding: 1.5625rem;
        background-color: #150A2A;
        border: 1px solid rgba(255, 255, 255, 0.0745098039);
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
        height: 100%;
        justify-content: center;
        text-align: center;
    }
}

.sp_benefit_item:hover .sp_benefit_icon {
    animation: fadeInUp 0.7s 1 linear;
}

.sp_benefit_item .sp_benefit_icon {
    width: 70px;
}

.sp_benefit_item .sp_benefit_icon i {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    line-height: 1;
    font-size: 1.75rem;
}

.sp_benefit_item .sp_benefit_content {
    width: calc(100% - 70px);
    padding-left: 1.6875rem;
}

@media (max-width: 991px) {
    .sp_benefit_item .sp_benefit_content {
        width: 100%;
        padding-left: 0;
        margin-top: 1.5625rem;
    }
}

@media (max-width: 991px) {
    .sp_benefit_item .sp_benefit_content .title {
        font-size: 1.25rem;
    }
}

.sp_benefit_item+.sp_benefit_item {
    margin-top: 40px;
}


/*
==============================
Overview css
==============================
*/
.overview-section {
    margin: 3.75rem 0;
}

@media (max-width: 767px) {
    .overview-section {
        margin: 1.875rem 0;
    }
}

.overview-section::before {
    content: "";
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    border: 15px solid var(--clr-main);
    filter: blur(5px);
    opacity: 0.35;
}

@media (max-width: 767px) {
    .overview-section::before {
        display: none;
    }
}

.overview-section::after {
    content: "";
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    border: 25px solid var(--clr-main);
    filter: blur(5px);
    opacity: 0.35;
}

@media (max-width: 1399px) {
    .overview-section::after {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 767px) {
    .overview-section::after {
        display: none;
    }
}

@media (max-width: 991px) {
    .sp_overview_wrapper {
        padding: 2.5rem 0;
    }
}

.sp_overview_wrapper div[class*=col-]:nth-child(odd)::after {
    top: 0;
    background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.137));
}

.sp_overview_wrapper div[class*=col-]:nth-child(even)::after {
    bottom: 0;
    background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0.137));
}

.sp_overview_wrapper div[class*=col-]:last-child::after {
    display: none;
}

@media (max-width: 991px) {
    .sp_overview_wrapper div[class*=col-]:nth-child(2)::after {
        display: none;
    }
}

.sp_overview_wrapper div[class*=col-]::after {
    content: "";
    right: 0;
    width: 1px;
    height: 100%;
    opacity: 0.15;
}

.sp_overview_item {
    padding: 3.125rem 1.875rem;
}

@media (max-width: 1399px) {
    .sp_overview_item {
        padding: 1.875rem 1.875rem 1.375rem 1.875rem;
    }
}

@media (max-width: 991px) {
    .sp_overview_item {
        padding: 0 1.25rem;
    }
}

@media (max-width: 575px) {
    .sp_overview_item {
        padding: 0;
    }
}

.sp_overview_item .sp_overview_icon::after {
    content: "";
    top: 0;
    left: 48%;
    width: 35px;
    height: 35px;
    opacity: 0.15;
}

@media (max-width: 1399px) {
    .sp_overview_item .sp_overview_icon::after {
        width: 28px;
        height: 28px;
    }
}

.sp_overview_item .sp_overview_icon i {
    font-size: 3rem;
    line-height: 1;
}

@media (max-width: 1399px) {
    .sp_overview_item .sp_overview_icon i {
        font-size: 2rem;
    }
}

.sp_overview_item .sp_overview_content {
    margin-top: 1.5625rem;
}

@media (max-width: 1399px) {
    .sp_overview_item .sp_overview_content {
        margin-top: 0.625rem;
    }
}

.sp_overview_item .sp_overview_caption {
    padding-bottom: 1.875rem;
}

@media (max-width: 1399px) {
    .sp_overview_item .sp_overview_caption {
        padding-bottom: 0.75rem;
        font-size: 0.9375rem;
    }
}

.sp_overview_item .sp_overview_caption::after {
    content: "";
    left: 50%;
    bottom: 5px;
    height: 20px;
    width: 1px;
    background-color: #fff;
    opacity: 0.15;
}

@media (max-width: 1399px) {
    .sp_overview_item .sp_overview_caption::after {
        bottom: -3px;
        height: 15px;
    }
}

.sp_overview_item .sp_overview_amount {
    font-size: 2.25rem;
}

@media (max-width: 1399px) {
    .sp_overview_item .sp_overview_amount {
        font-size: 2rem;
    }
}


/*
==============================
Plan section css
==============================
*/
.plan-section .plan-el {
    top: 60%;
    left: 50%;
    width: 90%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0.45;
}

.sp_pricing_item {
    padding: 2.1875rem;
    display: flex;
    flex-flow: column;
}

.sp_pricing_item.popular {
    padding-top: 3.125rem;
}

.sp_pricing_item.popular::before {
    content: attr(data-package);
    top: -12px;
    left: 50%;
    padding: 0.4375rem 2.1875rem;
    font-size: 0.875rem;
    line-height: 1;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    clip-path: polygon(0 0, 100% 0, 90% 46%, 100% 100%, 0 100%, 15% 50%);
}

.sp_pricing_item .pricing-header {
    justify-content: space-between;
    margin: -0.625rem -0.9375rem;
}

.sp_pricing_item .pricing-header .left {
    padding: 0.625rem 0.9375rem;
}

.sp_pricing_item .pricing-header .left .icon {
    width: 50px;
}

.sp_pricing_item .pricing-header .left .icon::before {
    content: "";
    top: 0;
    right: 5px;
    width: 35px;
    height: 35px;
    opacity: 0.25;
}

.sp_pricing_item .pricing-header .left .icon i {
    font-size: 38px;
    -webkit-transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    transform: rotate(-25deg);
}

.sp_pricing_item .pricing-header .left .content {
    width: calc(100% - 50px);
    padding-left: 0.625rem;
}

.sp_pricing_item .pricing-header .left .content .package-name {
    font-size: 1.25rem;
}

.sp_pricing_item .pricing-header .left .content p {
    color: #8d8d8d;
}

.sp_pricing_item .pricing-header .right {
    padding: 0.625rem 0.9375rem;
}

.sp_pricing_item .pricing-header .right .package-price {
    font-size: 1.75rem;
}

.sp_pricing_item .pricing-body {
    padding: 1.25rem 0;
    margin: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.0745098039);
    border-bottom: 1px solid rgba(255, 255, 255, 0.0745098039);
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
}

.sp_pricing_item .package-features li+li {
    margin-top: 1.25rem;
}

.sp_pricing_item .package-features li {
    padding-left: 2.5rem;
    word-break: break-word;
}

.sp_pricing_item .package-features li::before {
    content: "\f00c";
    top: 0;
    left: 0;
    font-family: "Line Awesome Free";
    font-weight: 900;
    width: 22px;
    height: 22px;
    line-height: 1;
    font-size: 0.875rem;
}


/*
==============================
Work section css
==============================
*/
.work-section::before {
    content: "";
    top: 15%;
    left: -18%;
    width: 35%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.015));
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    -webkit-transform: rotate(-42deg);
    -ms-transform: rotate(-42deg);
    transform: rotate(-42deg);
}

.sp_work_item {
    padding: 2.5rem 1.875rem;
    background-color: #150A2A;
}

@media (max-width: 991px) {
    .sp_work_item {
        padding: 1.5625rem;
        background-color: #150A2A;
        border: 1px solid rgba(255, 255, 255, 0.0745098039);
    }
}

.sp_work_item .sp_work_number {
    width: 55px;
    height: 55px;
    font-weight: 500;
    font-size: 1.5rem;
}

.sp_work_item .sp_work_content {
    margin-top: 1.5625rem;
}


/*
==============================
Team section css
==============================
*/
.team-section::before {
    content: "";
    top: 0;
    right: -18%;
    width: 35%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.025));
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    -webkit-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    transform: rotate(-30deg);
}

.sp_team_item:hover .sp_team_content::after {
    top: -25px;
    opacity: 0.25;
}

.sp_team_item .sp_team_thumb {
    width: 178px;
    height: 200px;
    overflow: hidden;
    display: inline-block;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-image: url(../images/elements/hex-shape.png);
    mask-image: url(../images/elements/hex-shape.png);
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;
}

.sp_team_item .sp_team_thumb_inner {
    width: 178px;
    height: 200px;
}

.sp_team_item .sp_team_content {
    margin-top: 0.9375rem;
}

.sp_team_item .sp_team_content::after {
    content: "";
    top: -20px;
    left: 50%;
    width: 100px;
    height: 15px;
    margin-left: -50px;
    background: radial-gradient(circle, var(--clr-main) 0%, rgba(28, 142, 106, 0) 70%, rgba(0, 212, 255, 0) 100%);
    filter: blur(5px);
    opacity: 0;
}

.sp_team_item .sp_team_content ul li a {
    padding: 0 8px;
}

.sp_team_slider .slick-list {
    margin: -0.9375rem;
}

.sp_team_slider .sp_team_slide {
    padding: 0.9375rem;
}


/*
==============================
Testimonial section css
==============================
*/
.testimonial-section div[class*=right-shape] {
    z-index: 2;
}

.testimonial-section .right-shape-1 {
    top: 300px;
    right: 0;
    width: 250px;
    height: 350px;
    clip-path: polygon(0 62%, 100% 0, 100% 34%, 0 100%);
    opacity: 0.15;
}

.testimonial-section .right-shape-2 {
    right: 150px;
}

.sp_testimonial_area::before {
    content: "";
    top: 40px;
    left: 0;
    height: calc(100% - 80px);
    z-index: -2;
}

@media (max-width: 767px) {
    .sp_testimonial_area::before {
        top: auto;
        bottom: 0;
        height: calc(100% - 40px);
    }
}

@media (max-width: 767px) {
    .sp_testimonial_item {
        justify-content: center;
    }
}

.sp_testimonial_item .sp_testimonial_thumb_area {
    width: 350px;
    height: 350px;
}

@media (max-width: 1399px) {
    .sp_testimonial_item .sp_testimonial_thumb_area {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 380px) {
    .sp_testimonial_item .sp_testimonial_thumb_area {
        width: 250px;
        height: 250px;
    }
}

.sp_testimonial_item .sp_testimonial_thumb_area::before {
    content: "";
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border: 3px solid #1a0b36;
}

.sp_testimonial_item .sp_testimonial_thumb_area .shape-circle {
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    animation: circle 20s infinite linear;
}

.sp_testimonial_item .sp_testimonial_thumb_area .shape-circle span[class*=dot] {
    filter: blur(2px);
}

.sp_testimonial_item .sp_testimonial_thumb_area .shape-circle .dot-1 {
    width: 12px;
    height: 12px;
    top: 61px;
    left: 44px;
}

.sp_testimonial_item .sp_testimonial_thumb_area .shape-circle .dot-2 {
    width: 15px;
    height: 15px;
    bottom: 58px;
    left: 45px;
}

.sp_testimonial_item .sp_testimonial_thumb_area .shape-circle .dot-3 {
    width: 12px;
    height: 12px;
    top: 50%;
    right: -5px;
}

.sp_testimonial_item .sp_testimonial_thumb_area .sp_testimonial_thumb {
    width: 350px;
    height: 350px;
}

@media (max-width: 1399px) {
    .sp_testimonial_item .sp_testimonial_thumb_area .sp_testimonial_thumb {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 380px) {
    .sp_testimonial_item .sp_testimonial_thumb_area .sp_testimonial_thumb {
        width: 250px;
        height: 250px;
    }
}

.sp_testimonial_item .sp_testimonial_thumb_area .slick-arrow {
    top: 50%;
    z-index: 1;
    width: 38px;
    height: 38px;
    margin-top: -19px;
}

.sp_testimonial_item .sp_testimonial_thumb_area .testi-prev {
    left: -8px;
}

.sp_testimonial_item .sp_testimonial_thumb_area .testi-next {
    right: -8px;
}

.sp_testimonial_item .sp_testimonial_content_area {
    width: calc(100% - 350px);
    padding: 5rem 3.75rem 5rem 3.75rem;
}

@media (max-width: 991px) {
    .sp_testimonial_item .sp_testimonial_content_area {
        padding: 5rem 0rem 5rem 3.75rem;
    }
}

@media (max-width: 767px) {
    .sp_testimonial_item .sp_testimonial_content_area {
        width: 100%;
        text-align: center;
        padding: 2.5rem 0 4.375rem 0;
    }
}

.sp_testimonial_item .sp_testimonial_thumb_slider {
    width: 350px;
    height: 350px;
}

@media (max-width: 380px) {
    .sp_testimonial_item .sp_testimonial_thumb_slider {
        width: 250px;
        height: 250px;
    }
}

@-webkit-keyframes circle {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes circle {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-ms-keyframes circle {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes circle {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/*
==============================
Referral section css
==============================
*/
@media (max-width: 575px) {
    .sp_referral_item {
        justify-content: center;
        text-align: center;
    }
}

.sp_referral_item .sp_referral_level {
    width: 71px;
    height: 80px;
    overflow: hidden;
    display: inline-block;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-image: url(../images/elements/hex-shape.png);
    mask-image: url(../images/elements/hex-shape.png);
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.sp_referral_item .sp_referral_level_inner {
    width: 71px;
    height: 80px;
    font-weight: 500;
    font-size: 1.375rem;
    z-index: 1;
}

.sp_referral_item .sp_referral_level_inner::before {
    content: "";
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #000;
    opacity: 0.15;
    z-index: -1;
}

.sp_referral_item .sp_referral_content {
    width: calc(100% - 71px);
    padding-left: 1.25rem;
}

@media (max-width: 575px) {
    .sp_referral_item .sp_referral_content {
        width: 100%;
        padding-left: 0;
        margin-top: 1.25rem;
    }
}

.sp_referral_item .sp_referral_content .referral-title {
    font-size: 1.125rem;
}


/*
==============================
Blog section css
==============================
*/
.sp_blog_item {
    padding: 0.625rem;
}

.sp_blog_item .sp_blog_thumb {
    height: 215px;
}

@media (max-width: 1399px) {
    .sp_blog_item .sp_blog_thumb {
        height: 235px;
    }
}

.sp_blog_item .sp_blog_content {
    padding: 0.9375rem 0.625rem 0.625rem 0.625rem;
}

.sp_blog_item .sp_blog_title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sp_blog_meta {
    margin: -0.3125rem -0.625rem;
}

.sp_blog_meta li {
    font-size: 0.9375rem;
    padding: 0.3125rem 0.625rem;
}

.sp_blog_btn {
    justify-content: space-between;
    padding-top: 0.9375rem;
    margin-top: 1.5625rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sp_blog_list_post_box .sp_blog_list_post + .sp_blog_list_post {
    margin-top: 35px;
}

.sp_blog_list_post {
    display: flex;
    flex-wrap: wrap;
}

.sp_blog_list_post_thumb {
    width: 200px;
    border-radius: 8px;
    overflow: hidden;
}

.sp_blog_list_post_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.sp_blog_list_post_content {
    width: calc(100% - 200px);
    padding-left: 25px;
}

.sp_blog_list_post_content .sp_blog_title {
    font-size: 20px;
}

.sp_blog_list_post_content .sp_blog_btn {
    padding-top: 10px;
    margin-top: 10px;
}

.sp_blog_list_post.sp_blog_list_post-two .sp_blog_list_post_thumb {
    width: 150px;
}

.sp_blog_list_post.sp_blog_list_post-two .sp_blog_list_post_content {
    width: calc(100% - 150px);
}

.sp_blog_list_post.sp_blog_list_post-two .sp_blog_list_post_content .sp_blog_title {
    font-size: 22px;
}

.sp_blog_list_post_content .sp_blog_title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recent-post-slider .slick-list {
    margin: 0 -15px;
}

.recent-post-slider .slide-item {
    padding: 0 15px;
}

@media (max-width: 575px) {
    .sp_blog_list_post .sp_blog_list_post_thumb {
        width: 100%;
    }
    .sp_blog_list_post .sp_blog_list_post_content {
        width: 100%;
        padding-left: 0;
        padding-top: 15px;
    }
}


/*
==============================
Blog details section css
==============================
*/
.blog-details-img {
    max-height: 500px;
}

.blog-widget {
    padding: 1.5625rem;
}

.blog-widget .blog-widget-title {
    margin-bottom: 0.9375rem;
}

.short-post-wrapper .short-post {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.0745098039);
}

.short-post-wrapper .short-post:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.short-post .thumb {
    width: 80px;
    height: 55px;
}

@media (max-width: 1199px) {
    .short-post .thumb {
        width: 65px;
        height: 50px;
    }
}

.short-post .content {
    width: calc(100% - 80px);
    padding-left: 1.25rem;
}

@media (max-width: 1199px) {
    .short-post .content {
        width: calc(100% - 65px);
    }
}

.short-post .content .title a {
    font-size: 1.125rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sp_social_links ul {
    display: flex;
    flex-wrap: wrap;
    margin: -0.1875rem -0.4375rem;
}


/*
==============================
Contact section css
==============================
*/
.sp_contact_item {
    padding: 1.5625rem;
    border: 1px solid rgba(255, 255, 255, 0.0745098039);
}

.sp_contact_item .sp_contact_icon {
    font-size: 1.75rem;
}

.sp_contact_item .sp_contact_content {
    margin-top: 1.25rem;
}

.sp_contact_item .sp_contact_content .caption {
    color: #b3b3b3;
}

.sp_contact_form {
    padding: 1.875rem;
}


/*
==============================
Account Page css
==============================
*/
.account-page {
    min-height: 100vh;
}

.account-page .form-wrapper {
    width: 650px;
    padding: 1.875rem 3.125rem;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

@media (max-width: 575px) {
    .account-page .form-wrapper {
        padding: 1.875rem 1.25rem;
    }
}

@media (max-width: 1199px) {
    .account-page .form-wrapper {
        width: 50%;
    }
}

@media (max-width: 991px) {
    .account-page .form-wrapper {
        width: 100%;
    }
}

.account-page .form-wrapper .inner-wrapper {
    padding: 3.125rem 0;
}

.account-page .form-wrapper .inner-wrapper .title {
    margin-bottom: 2.5rem;
}

.account-page .img-wrapper {
    width: calc(100% - 650px);
    display: flex;
    flex-flow: column;
}

@media (max-width: 1199px) {
    .account-page .img-wrapper {
        width: 50%;
    }
}

@media (max-width: 991px) {
    .account-page .img-wrapper {
        display: none;
    }
}

.account-page .img-wrapper .account-img {
    max-height: 700px;
}

@media (max-width: 1399px) {
    .account-page .img-wrapper .account-img {
        max-height: 550px;
    }
}

.account-page .img-wrapper .account-line-bg {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media (max-width: 1399px) {
    .account-page.registration-page .form-wrapper {
        width: 50%;
    }
}

@media (max-width: 1199px) {
    .account-page.registration-page .form-wrapper {
        width: 55%;
    }
}

@media (max-width: 991px) {
    .account-page.registration-page .form-wrapper {
        width: 100%;
    }
}

@media (max-width: 1399px) {
    .account-page.registration-page .img-wrapper {
        width: 50%;
    }
}

@media (max-width: 1199px) {
    .account-page.registration-page .img-wrapper {
        width: 45%;
    }
}

.or-text {
    margin: 1.875rem 0;
}

.or-text::before {
    content: "";
    top: 50%;
    left: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.or-text span {
    background-color: #1a0b36;
    padding: 0 0.9375rem;
}

.other-login-btns .other-login-btn {
    flex-grow: 1;
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.0745098039);
    margin: 0.3125rem 0.625rem;
}

.other-login-btns .other-login-btn:first-child {
    margin-left: 0;
}

.other-login-btns .other-login-btn:last-child {
    margin-right: 0;
}

.other-login-btns .other-login-btn:hover i {
    color: #fff !important;
}

.other-login-btns .other-login-btn i {
    margin-right: 0.3125rem;
}

.other-login-btns .other-login-btn i[class*=fa-facebook] {
    color: #3868cd;
}

.other-login-btns .other-login-btn i[class*=fa-google] {
    color: #db3236;
}


/*
==============================
Dashboard css
==============================
*/
@media (min-width: 1400px) {
    .d-custom-left {
        width: calc(100% - 390px);
    }

    .d-custom-right {
        width: 390px;
    }
}

@media (min-width: 1400px) and (max-width: 1650px) {
    .custom-xxl-6 {
        width: 50%;
    }
}

.user-pages-body {
    background-color: #1E1F25;
}

.user-pages-body .card,
.user-pages-body .sp_site_card,
.user-pages-body .modal-content,
.user-pages-body .payment-box {
    background-color: #1E1F25;
}

.user-pages-body .sp_pricing_item,
.user-pages-body .payment-box {
    background-color: #131517;
}

.user-pages-body .sp_site_table thead th {
    background-color: #131517;
    color: #fff;
}

.user-pages-body .sp_site_table thead th:first-child {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.user-pages-body .sp_site_table thead th:last-child {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.user-pages-body .form-control[readonly],
.user-pages-body .form-control:disabled,
.user-pages-body .form-control[disabled] {
    background-color: rgba(191, 191, 191, 0.1019607843);
}

.user-pages-body .list-group-item {
    background-color: #131517;
}

.user-pages-body .form-select,
.user-pages-body .select {
    background-color: transparent;
}

.user-pages-body .form-select option,
.user-pages-body .select option {
    background-color: #131517;
}

.user-header {
    position: fixed;
    top: 0;
    left: 0;
    justify-content: space-between;
    padding: 0.625rem 1.875rem;
    background-color: #1E1F25;
    z-index: 2;
    height: 75px;
}

@media (max-width: 1399px) {
    .user-header {
        padding: 0.625rem 0.9375rem;
        height: 60px;
    }
}

.user-header .site-logo {
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 1399px) {
    .user-header .site-logo img {
        max-height: 40px;
    }
}

@media (max-width: 1199px) {
    .user-header .site-logo {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 575px) {
    .user-header .site-logo {
        max-width: 145px;
        max-height: 35px;
    }
}

.sidebar-toggeler {
    display: none;
}

@media (max-width: 1199px) {
    .sidebar-toggeler {
        display: inline-flex;
        background-color: #1a0b36;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.0745098039);
        width: 40px;
        height: 35px;
        justify-content: center;
        align-items: center;
        font-size: 1.25rem;
        margin-left: auto;
        margin-trim: 0.75rem;
    }
}

@media (max-width: 575px) {
    .sidebar-toggeler {
        display: none;
    }
}

.user-dropdown .sp_theme_btn.btn-sm {
    font-size: 12px;
    padding: 0.375rem 0.625rem;
}

.user-dropdown .user-btn {
    background-color: transparent;
}

.user-dropdown .user-btn::after {
    border-top-color: #fff;
}

.user-dropdown .user-btn img {
    width: 35px;
    height: 35px;
    margin-right: 0.375rem;
}

@media (max-width: 575px) {
    .user-dropdown .user-btn span {
        display: none;
    }
}

.dropdown-menu {
    background-color: #131517;
    border: 1px solid rgba(255, 255, 255, 0.0745098039);
}

.dropdown-menu .dropdown-item {
    font-size: 0.9375rem;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #1a0b36;
}

.user-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 270px;
    height: 100vh;
    z-index: 3;
    background-color: #1E1F25;
    display: flex;
    flex-flow: column;
}

.user-sidebar.active {
    left: 0;
}

@media (max-width: 1399px) {
    .user-sidebar {
        width: 220px;
    }
}

@media (max-width: 1199px) {
    .user-sidebar {
        left: -100%;
        border-right: 1px solid rgba(255, 255, 255, 0.0745098039);
    }
}

@media (max-width: 575px) {
    .user-sidebar {
        width: 280px;
        padding-bottom: 75px;
    }
}

.user-sidebar .site-logo {
    padding: 0.625rem 1.25rem;
    margin-bottom: 1.875rem;
}

@media (max-width: 1399px) {
    .user-sidebar .site-logo img {
        max-height: 40px;
    }
}

.user-sidebar .user-sidebar-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 15px;
}

@media (max-width: 1199px) {
    .user-sidebar .user-sidebar-bottom {
        display: none;
    }
}

.user-sidebar .user-sidebar-bottom .user-sidebar-bottom-title {
    font-size: 18px;
}

.user-sidebar .countdown-wrapper {
    display: flex;
    justify-content: center; 
    margin-top: 10px;
}

.user-sidebar .countdown-wrapper .countdown-single {
    width: 45px; 
    height: 40px; 
    background-color: #131517; 
    border-radius: 3px; 
    margin: 3px; 
    text-align: center;
    line-height: 40px; 
    font-size: 14px; 
    font-weight: 500; 
}

.user-sidebar .countdown-wrapper .countdown-single span {
    width: 100%;
    line-height: 1;
    font-weight: 400;
}

.user-sidebar #countdown .upgrade-text {
    color: #c0c0c0;
    font-size: 14px;
    background-color: #131517;
    padding: 15px;
    border-radius: 5px;
}

.user-sidebar #countdown .upgrade-text i {
    font-size: 20px;
    color: var(--clr-main);
    margin-right: 5px;
}

.sidebar-menu {
    max-height: calc(100vh - 230px);
    overflow-y: auto;
    padding: 0 0.9375rem;
}

@media (max-width: 1399px) {
    .sidebar-menu {
        padding-right: 0;
    }
}

@media (max-width: 1199px) {
    .sidebar-menu {
        padding-right: 0.9375rem;
    }
}

.sidebar-menu>li+li {
    margin-top: 0.625rem;
}

.sidebar-menu>li a {
    color: #c0c0c0;
    padding: 0.625rem 0.9375rem;
    font-size: 1rem;
}

.sidebar-menu>li a i {
    font-size: 1.125rem;
    width: 40px;
    background: linear-gradient(var(--clr-main), #fff);
    background: -webkit-linear-gradient(var(--clr-main), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.1875rem;
}

.sidebar-menu {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.05) #150A2A;
}

.sidebar-menu::-webkit-scrollbar {
    width: 12px;
}

.sidebar-menu::-webkit-scrollbar-track {
    background: #1E1F25;
}

.sidebar-menu::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 3px solid #1E1F25;
}

.has_submenu>a::before {
    content: "\f078";
    top: 16px;
    right: 3px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.6875rem;
}

.has_submenu .submenu {
    display: none;
    background-color: #131517;
    padding: 0.625rem 0;
    margin-left: 0.875rem;
}

.sidebar-menu .has_submenu.open .submenu {
    display: block;
}

.has_submenu .submenu li a {
    padding: 0.375rem 0.9375rem 0.375rem 2.5rem;
}

@media (max-width: 1399px) {
    .has_submenu .submenu li a {
        font-size: 0.875rem;
    }
}

.dashbaord-main {
    background-color: #1E1F25;
    padding: 6.25rem 1.875rem 1.875rem 18.75rem;
}

@media (max-width: 1399px) {
    .dashbaord-main {
        padding: 3.75rem 0.9375rem 1.875rem 14.6875rem;
    }
}

@media (max-width: 1199px) {
    .dashbaord-main {
        padding-left: 0.9375rem;
    }
}

@media (max-width: 575px) {
    .dashbaord-main {
        padding: 5rem 0.9375rem 6.25rem 0.9375rem;
    }
}

.d-left-wrapper {
    background-color: #131517;
    padding: 1.875rem;
}

@media (max-width: 1399px) {
    .d-left-wrapper {
        padding: 0.9375rem;
    }
}

@media (max-width: 575px) {
    .d-left-wrapper {
        padding: 0;
        background-color: transparent;
    }
}

@media (max-width: 575px) {
    .d-left-wrapper .d-card {
        background-color: #131517;
    }
}

.dashboard-top {
    margin-bottom: 2.1875rem;
}

.dashboard-top .left h4 {
    font-size: 1.5rem;
}

.table-date {
    font-size: 15px;
}

.d-card {
    padding: 1.5625rem;
    background-color: #1E1F25;
    border: 1px solid rgba(255, 255, 255, 0.0745098039);
}

.d-card:not(.not-hover):hover {
    border-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 1399px) {
    .d-card {
        padding: 0.9375rem;
    }
}

.d-card-icon {
    width: 75px;
    height: 75px;
    font-size: 2.25rem;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .d-card-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .d-card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
}

.d-card-content {
    margin-top: 1.5625rem;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .d-card-content {
        width: calc(100% - 75px);
        margin-top: 0;
        padding-left: 1.25rem;
    }
}

@media (max-width: 575px) {
    .d-card-content {
        margin-top: 0.9375rem;
    }
}

.d-card .d-card-amount {
    margin-bottom: 0.3125rem;
    font-size: 1.375rem;
    font-size: 1.25rem;
}

@media (max-width: 575px) {
    .d-card .d-card-amount {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .d-card .d-card-caption {
        font-size: 0.875rem;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .d-card.d-icon-card {
        display: flex;
        flex-wrap: wrap;
        text-align: left;
        align-items: center;
    }
}

@media (max-width: 1399px) {
    .d-card.user-card .user-card-title {
        font-size: 1.125rem;
    }
}

@media (max-width: 1399px) {
    .d-card.user-card .btn {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
}

.d-card-balance {
    font-size: 2.375rem;
    color: #fff;
}

@media (max-width: 1399px) {
    .d-card-balance {
        font-size: 1.625rem;
    }
}

.d-left-countdown {
    margin-bottom: 20px;
    display: none;
}

@media (max-width: 1199px) {
    .d-left-countdown {
        display: block;
    }
}

.d-left-countdown #countdownTwo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.d-left-countdown .d-left-countdown-title {
    font-size: 18px;
    margin-right: 20px;
}

.d-left-countdown #countdownTwo .upgrade-text {
   font-size: 14px; 
}

.d-left-countdown #countdownTwo .upgrade-text i {
    color: var(--clr-main);
}

.d-left-countdown .countdown-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.d-left-countdown .countdown-wrapper .countdown-single {
    width: 45px; 
    height: 40px; 
    background-color: #1E1F25; 
    border-radius: 3px; 
    margin: 3px 5px; 
    text-align: center;
    line-height: 40px; 
    font-size: 14px; 
    font-weight: 500; 
}

@media (max-width: 575px) {
    .d-left-countdown #countdownTwo {
        justify-content: center;
    }
    .d-left-countdown .countdown-wrapper {
        width: 100%;
        margin-top: 7px;
    }
    .d-left-countdown .countdown-wrapper .countdown-single {
        background-color: #131517;
    }
}

.d-left-countdown .countdown-wrapper .countdown-single span {
    width: 100%;
    line-height: 1;
    font-weight: 400;
}

.d-left-countdown #countdown .upgrade-text {
    color: rgb(245, 47, 63);
    font-size: 14px;
}

.recent-transaction-list .single-recent-transaction+.single-recent-transaction {
    margin-top: 1.25rem;
}

.single-recent-transaction img {
    width: 43px;
    height: 43px;
}

.single-recent-transaction .content {
    width: calc(100% - 100px);
}

.single-recent-transaction .content .title {
    font-size: 1.0625rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.single-recent-transaction .content span {
    font-size: 0.875rem;
}

.single-recent-transaction .recent-transaction-amount {
    width: 100px;
    text-align: right;
}

.payment-box {
    background-color: #150A2A;
}

.payment-box .payment-box-thumb {
    height: 175px;
}

@media (min-width: 1400px) and (max-width: 1600px) {
    .payment-box .payment-box-thumb {
        height: 150px;
    }
}

@media (max-width: 575px) {
    .payment-box .payment-box-thumb {
        height: 140px;
    }
}

.payment-box .payment-box-content {
    padding: 1.25rem;
}

@media (min-width: 1400px) and (max-width: 1600px) {
    .payment-box .payment-box-content {
        padding: 0.9375rem;
    }
}

@media (max-width: 575px) {
    .payment-box .payment-box-content {
        padding: 0.9375rem;
    }
}

.payment-box .payment-box-content .title {
    font-size: 1.25rem;
}

@media (min-width: 1400px) and (max-width: 1600px) {
    .payment-box .payment-box-content .title {
        font-size: 1.125rem;
    }
}

@media (max-width: 575px) {
    .payment-box .payment-box-content .title {
        font-size: 1rem;
    }
}

.list-group-item {
    background-color: #1a0b36;
    border: 1px solid rgba(255, 255, 255, 0.0745098039);
}

.singnal-card {
    background-color: #131517;
    border-top: 5px solid #9c0ac1;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.singnal-card .singnal-card-top,
.singnal-card .singnal-card-body {
    padding: 1.25rem;
}

.singnal-card .singnal-card-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    justify-content: space-between;
}

.singnal-card .singnal-card-top .left .status {
    font-size: 0.875rem;
    padding: 1px 6px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.singnal-card .singnal-card-top .left .status.sell {
    background-color: rgba(255, 159, 67, 0.15);
    color: #ff9f43;
}

.singnal-card .singnal-card-top .left .status.buy {
    background-color: rgba(40, 199, 111, 0.15);
    color: #10a373;
}

.singnal-card .singnal-card-body .title {
    margin-bottom: 1.25rem;
}

.singnal-card .singnal-card-thumb {
    max-height: 175px;
}

.view-signal-btn {
    padding: 0.375rem 0.9375rem;
    font-size: 0.875rem;
    background-color: #9c0ac1;
    color: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-top: 0.375rem;
}

.view-signal-btn:hover {
    color: #fff;
}

.signal-info-list .signal-single-list {
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.signal-info-list .signal-single-list:last-child {
    border-bottom: none;
}

.signal-info-list .signal-single-list .caption i {
    width: 35px;
    color: #fff;
}

.signal-details-wrapper {
    padding: 1.5625rem;
    background-color: #131517;
}

.signal-details-thumb {
    max-height: 500px;
}

.signal-widget {
    padding: 1.5625rem;
    background-color: #131517;
}

.signal-widget-list {
    border: 1px solid rgba(255, 255, 255, 0.0745098039);
    background-color: #1E1F25;
}

.signal-widget-list li {
    justify-content: space-between;
    padding: 0.625rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.0745098039);
}

.signal-widget-list li:last-child {
    border-bottom: none;
}

.signal-widget-list li .caption i {
    width: 35px;
}

.mobile-bottom-menu-wrapper {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #131517;
    box-shadow: 0 -10px 5px rgba(0, 0, 0, 0.06);
    z-index: 9999;
}

@media (max-width: 575px) {
    .mobile-bottom-menu-wrapper {
        display: block;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }
}

.mobile-bottom-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.mobile-bottom-menu li {
    width: 20%;
}

.mobile-bottom-menu li a {
    padding: 12px 6px;
    text-align: center;
    display: block;
    color: #b6b6b6;
}

.mobile-bottom-menu li a.active i::after {
    opacity: 1;
}

.mobile-bottom-menu li a i {
    position: relative;
    z-index: 1;
}

.mobile-bottom-menu li a i::after {
    position: absolute;
    content: "";
    top: -5px;
    left: -7px;
    width: 30px;
    height: 30px;
    background-color: var(--clr-main);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
}

.mobile-bottom-menu li a span {
    display: block;
    font-size: 10px;
    font-weight: 500;
    margin-top: 3px;
}

.card-body .instruction * {
    color: #fff !important;
}

::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.card-bg {
    background-color: #131517 !important;
}

.search-form {
    position: relative;
    min-width: 250px;
}

.search-form .form-control {
    padding-right: 50px;
}

.search-form button {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 35px;
    height: 35px;
    background-color: var(--clr-main);
    color: #fff;
    border-radius: 5px;
    border: none;
}

.pagination .page-item .page-link {
    background-color: #131517;
}

.apexcharts-tooltip.apexcharts-theme-light {
    border: 1px solid #707070 !important;
    background: #2c2c2cf5 !important;
}

.apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title {
    background: #303030 !important;
    border-bottom: 1px solid #5e5e5e !important;
}


