/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Typography
    [ ## Heading ]
    [ ## Others Typography ]
# Elements
    [ ## Font Size ]
    [ ## Font Weight ]
    [ ## Margin Element ]
    [ ## Padding Element ]
    [ ## Color Element ]
    [ ## Background Element ]
    [ ## Extra Background ]
    [ ## Social Element ]
    [ ## Overlay Element ]
    [ ## Lists ]
    [ ## Post, Page, Comments Table ]
    [ ## Others Element ]
    [ ## Grid Element ]
# Forms
	[ ## Buttons ]
	[ ## Fields ]
# Header Content
	[ ## Preloader ]
	[ ## Header ]
    [ ## Sticky header ]
# layout
    [ ## Hero Block ]
    [ ## Features ]
    [ ## Team ]
    [ ## Testimonial ]
    [ ## Sections ]
        [ ### Features Block ]
        [ ### Network Location ]
        [ ### Discount Block ]
        [ ### Vission Mission Block ]
        [ ### Work Brand ]
        [ ### Announcement ]
        [ ### Pricing ]
        [ ### Faqs ]
        [ ### Support Ticket ]
        [ ### Call To Action ]
        [ ### Founder Message Block ]
        [ ### Fan Fact Block ]
    [ ## Blog ]
# site content
	[ ## About Page ]
	[ ## Contact Page ]
	[ ## 404 Page ]
	[ ## Registration Page ]
	[ ## Posts and pages ]
	    [ ### Page Title ]
	    [ ### Breadcrumb ]
	    [ ### Page info Content ]
	[ ## Comments ]
	[ ## Widgets ]
	[ ## Widgets Content ]
# Footer
/*--------------------------------------------------------------
# abstracts
--------------------------------------------------------------*/
/*-------------------------------------------------
    [ ### font-variable start ]
*/
/*-------------------------------------------------
    [ ### font-variable end ]
*/
/*-------------------------------------------------
    [ ### font_family-variable start ]
*/
/*-------------------------------------------------
    [ ### font_family-variable end ]
*/
/*-------------------------------------------------
    [ ### font_size-variable start ]
*/
/*-------------------------------------------------
    [ ### font_size-variable end ]
*/
/*-------------------------------------------------
    [ ### line_height-variable start ]
*/
/*-------------------------------------------------
    [ ### line_height-variable start ]
*/
/*-------------------------------------------------
    [ ### initial-color-variable start ]
*/
/*-------------------------------------------------
    [ ### initial-color-variable end ]
*/
/*--------------------------------------------------------------
# base
--------------------------------------------------------------*/
/*-------------------------------------------------
    [ ## reset ]
*/
:root {
    --primary-color: #243B81; 
    --sidebar--color: #dee2e6;
    --primary-text: #6e6e6e; 
    --primary-color-5: #243b810f; 
    --primary-color-20: #05025117; 
    --border-main-color: #243b811f; 
    --secondary-color: #199BD7;
    --white-color: #ffffff;
    --title-color: #555555;
    --text-color: #344054;
    --gray-color: #e6e6e6;
    --text-error: #f02f2f;
    --bg-error: #ffc2c2;
    --light-text: #424242;
    --green-color: #008000;
    --green-color-5: #c4e2c4;
    
    
    --dark-primary-color: #081527 ;
    --dark-primary-color-5: #3a42504f ;
    --dark-primary-color-20: #081527  ;
    --dark-primary-color-25: #081527f5  ;
    --dark-secondary-color: #08152796  ;
    --dark-primary-text: #ddddddc7 ;
    --dark-primary-text-active: #f7f7f7 ;
    --dark-green-color: #88d0b0;
    --dark-green-color-5: #0b282e;
}


.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite;
}
.loader::before,
.loader::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 5px solid var(--primary-color);
    animation: prixClipFix 2s linear infinite;
}
.loader::after {
    border-color: var(--secondary-color);
    animation: prixClipFix 2s linear infinite,
        rotate 0.5s linear infinite reverse;
    inset: 6px;
}

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

@keyframes prixClipFix {
    0% {
        clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
    }
    25% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
    }
    50% {
        clip-path: polygon(
            50% 50%,
            0 0,
            100% 0,
            100% 100%,
            100% 100%,
            100% 100%
        );
    }
    75% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
    }
    100% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
    }
}

@import url('https://fonts.googleapis.com/css?family=Anton&display=swap" rel="stylesheet');
@import url("https://fonts.googleapis.com/css?family=Raleway");
html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: "Tajawal", sans-serif !important;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5em;
    color: #ebebeb;
    overflow-x: hidden;
}
@media only screen and (max-width: 991px) {
    body {
        font-size: 16px;
    }
}
@media only screen and (max-width: 575px) {
    body {
        font-size: 14px;
    }
}
a {
    display: inline-block;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

blockquote {
    margin: 0 0 1.3em;
}

p {
    margin-bottom: 15px;
    line-height: 1.7em;
}
p:last-child {
    margin-bottom: 0px;
}
@media only screen and (max-width: 1199px) {
    p {
        line-height: 1.7em;
    }
}

img {
    max-width: 100%;
    height: auto;
}

.exchange-area code {
    font-size: 20px;
    color: #1e9ff2;
}

code {
    color: #ff9f43;
    font-weight: 600;
}
code span {
    display: block;
    text-align: center;
    font-size: 16px;
    padding-bottom: 10px;
}

button:focus,
input:focus,
textarea:focus {
    outline: none;
}

button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    border: none;
    cursor: pointer;
}

input,
textarea {
    padding: 12px 25px;
    width: 100%;
}

span {
    display: inline-block;
}

a,
a:focus,
a:hover {
    text-decoration: none;
    color: inherit;
}

blockquote {
    background-color: #053473;
    padding: 40px;
    border-radius: 10px;
    font-weight: 500;
    font-style: italic;
    position: relative;
}
blockquote .quote-icon {
    position: absolute;
    top: 0;
    left: 5%;
    font-size: 120px;
    opacity: 0.1;
}

/*-------------------------------------------------
    [ ## padding ]
*/
.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-100 {
    padding-top: 100px;
}
@media only screen and (max-width: 991px) {
    .pt-100 {
        padding-top: 80px;
    }
}

.pt-120 {
    padding-top: 120px;
}
@media only screen and (max-width: 991px) {
    .pt-120 {
        padding-top: 100px;
    }
}

.pt-150 {
    padding-top: 150px;
}
@media only screen and (max-width: 991px) {
    .pt-150 {
        padding-top: 100px;
    }
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-100 {
    padding-bottom: 100px;
}
@media only screen and (max-width: 991px) {
    .pb-100 {
        padding-bottom: 80px;
    }
}

.pb-120 {
    padding-bottom: 120px;
}
@media only screen and (max-width: 991px) {
    .pb-120 {
        padding-bottom: 100px;
    }
}

.pb-150 {
    padding-bottom: 150px;
}
@media only screen and (max-width: 991px) {
    .pb-150 {
        padding-bottom: 100px;
    }
}

.ptb-10 {
    padding: 10px 0;
}

.ptb-20 {
    padding: 20px 0;
}

.ptb-30 {
    padding: 30px 0;
}

.ptb-40 {
    padding: 40px 0;
}

.ptb-50 {
    padding: 50px 0;
}

.ptb-60 {
    padding: 60px 0;
}

.ptb-80 {
    padding: 80px 0;
}

.ptb-100 {
    padding: 100px 0;
}
@media only screen and (max-width: 991px) {
    .ptb-100 {
        padding: 80px 0;
    }
}

.ptb-120 {
    padding: 120px 0;
}
@media only screen and (max-width: 991px) {
    .ptb-120 {
        padding: 100px 0;
    }
}

.ptb-150 {
    padding: 150px 0;
}
@media only screen and (max-width: 991px) {
    .ptb-150 {
        padding: 100px 0;
    }
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-120 {
    margin-top: 120px;
}

.mt-150 {
    margin-top: 150px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-80 {
    margin-bottom: 80px;
}
@media only screen and (max-width: 575px) {
    .mb-80 {
        margin-bottom: 40px;
    }
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb-150 {
    margin-bottom: 150px;
}

.mt-10-none {
    margin-top: -10px;
}

.mt-20-none {
    margin-top: -20px;
}

.mt-30-none {
    margin-top: -30px;
}

.mt-40-none {
    margin-top: -40px;
}

.mt-50-none {
    margin-top: -50px;
}

.mt-60-none {
    margin-top: -60px;
}

.mt-80-none {
    margin-top: -80px;
}

.mt-100-none {
    margin-top: -100px;
}

.mt-120-none {
    margin-top: -120px;
}

.mt-150-none {
    margin-top: -150px;
}

.mb-10-none {
    margin-bottom: -10px;
}

.mb-20-none {
    margin-bottom: -20px;
}

.mb-30-none {
    margin-bottom: -30px;
}

.mb-40-none {
    margin-bottom: -40px;
}

.mb-50-none {
    margin-bottom: -50px;
}

.mb-60-none {
    margin-bottom: -60px;
}

.mb-80-none {
    margin-bottom: -80px;
}
@media only screen and (max-width: 575px) {
    .mb-80-none {
        margin-bottom: -40px;
    }
}

.mb-100-none {
    margin-bottom: -100px;
}

.mb-120-none {
    margin-bottom: -120px;
}

.mb-150-none {
    margin-bottom: -150px;
}

/*-------------------------------------------------
    [ ## color ]
*/
.bg--primary {
    background-color: var(--primary-color) !important; 
}

.bg--primary-5 {
    background-color: var(--primary-color-5) !important; 
}
.bg--primary-20 {
    background-color: var(--primary-color-20) !important; 
}

.bg--secondary {
    background-color: var(--primary-color);
}

.bg--success {
    background-color: #28c76f;
}

.bg--danger {
    background-color: #d63384 !important;
}

.bg--warning {
    background-color: #ff9f43 !important;
}

.bg--info {
    background-color: #1e9ff2;
}

.bg--dark {
    background-color: #10163a;
}

.bg--base {
    background-color: var(--primary-color) !important;
}

.text--primary {
    color: var(--primary-color);
}

.text--secondary {
    color: #199BD7;
}

.text--success {
    color: #28c76f;
}

.text-danger {
    color: #d63384 !important;
}

.text--danger {
    color: #d63384;
}

.text--warning {
    color: #ff9f43;
}

.text--info {
    color: #1e9ff2;
}

.text--dark {
    color: #10163a;
}

.frontend__body .text--dark {
    color: #10163a;
}

.text--base {
    color: var(--primary-color) !important;
}

.border--primary {
    border: var(--primary-color);
}

.border--secondary {
    border: 1px solid var(--primary-color);
}

.border--success {
    border: 1px solid #28c76f;
}

.border--danger {
    border: 1px solid #ea5455;
}

.border--warning {
    border: 1px solid #ff9f43;
}

.border--info {
    border: 1px solid #1e9ff2;
}

.border--dark {
    border: 1px solid #10163a;
}

.border--base {
    border: 1px solid #e5e5e5 !important;
}

.section--bg {
    background-color: #050251 !important;
}

.bg--gray {
    background-color: #050251;
}

.border--rounded {
    border-radius: 3px !important;
}

.border--capsule {
    border-radius: 100px;
}

.box-shadow {
    -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
}

/*-------------------------------------------------
    [ ## scrollbar ]
*/
html::-webkit-scrollbar {
    height: 20px;
    width: 6px;
    background: #f1f1f1;
    border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 10px;
}

html::-webkit-scrollbar-corner {
    background: #999;
    border-radius: 10px;
}

.chat-container::-webkit-scrollbar {
    height: 20px;
    width: 6px;
    background: #f1f1f1;
    border-radius: 10px;
}

.chat-container::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 10px;
}

.chat-container::-webkit-scrollbar-corner {
    background: #999;
    border-radius: 10px;
}

/*-------------------------------------------------
    [ ## scrollToTop ]
*/
.scroll {
    cursor: pointer;
    width: 70px;
    height: 70px;
    position: fixed;
    bottom: 40px;
    right: -80px;
    border-radius: 100%;
    background-image: radial-gradient(
        circle farthest-corner at 10% 20%,
        #1370d9 0%,
        #255e9f 81.3%
    );
    color: #fff;
    font-size: 44px;
    font-weight: bold;
    text-align: center;
    -webkit-box-shadow: 0 0 5px 0px #888;
    box-shadow: 0 0 5px 0px #888;
    -webkit-transition: 300ms;
    transition: 300ms;
}

.scroll i {
    margin-top: 10px;
    text-shadow: 0 0 2px #fff;
}

.scroll:hover i {
    -webkit-animation-name: rotate;
    animation-name: rotate;
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

@-webkit-keyframes rotate {
    from {
        margin-top: 15px;
    }
    to {
        margin-top: 5px;
    }
}

@keyframes rotate {
    from {
        margin-top: 15px;
    }
    to {
        margin-top: 5px;
    }
}
.visible {
    right: 30px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    z-index: 999;
}

/*-------------------------------------------------
    [ ## Table ]
*/
.table-wrapper {
    background-color: #050251;
    padding: 30px;
    border-radius: 15px;
}

.custom-table {
    width: 100%;
    white-space: nowrap;
}
.custom-table thead tr {
    border-bottom: 1px solid rgba(42, 69, 116, 0.583);
}
.custom-table thead tr th {
    border: none;
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
    padding: 12px 15px;
}
.custom-table tbody tr {
    border-bottom: 1px solid rgba(42, 69, 116, 0.583);
}
.custom-table tbody tr td {
    border: none;
    font-weight: 500;
    color: #ebebeb;
    font-size: 14px;
    padding: 12px 15px;
}
.custom-table tbody tr td button,
.custom-table tbody tr td input[type="submit"],
.custom-table tbody tr td input[type="reset"],
.custom-table tbody tr td input[type="button"],
.custom-table tbody tr td .btn--base {
    padding: 8px 25px;
    font-size: 14px;
    border-radius: 8px;
}
.custom-table tbody tr td .btn--success {
    padding: 7px 18px;
    font-size: 14px;
    border-radius: 8px;
    color: #ffffff;
}
.custom-table thead tr th:last-child {
    text-align: end;
}
.custom-table tbody tr td:last-child {
    text-align: end;
}
/*-------------------------------------------------
    [ ## slider ]
*/
.swiper-notification {
    display: none;
}

.swiper-pagination {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 60px;
    z-index: 3;
}
.swiper-pagination .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: rgba(19, 186, 186, 0.2);
    opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    width: 25px;
    border-radius: 10px;
}

.slider-next,
.slider-prev {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 12px;
    background-color: #ffffff;
    border: 1px solid rgba(208, 203, 203, 0.2705882353);
    border-radius: 50%;
    color: #ebebeb;
    display: inline-block;
    text-align: center;
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    cursor: pointer;
    margin-top: 60px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.slider-next:hover,
.slider-prev:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.slider-next {
    margin-left: 10px;
}

/*-------------------------------------------------
    [ ## pagination ]
*/
.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 20px;
}
.pagination .page-item {
    text-align: center;
    padding: 3px;
}
.pagination .page-item a,
.pagination .page-item span {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid rgba(208, 203, 203, 0.2705882353);
    color: #fff;
    padding: 0;
    font-weight: 600;
    line-height: 30px;
    display: block;
    margin: 0;
}
.pagination .page-item.disabled span {
    border-radius: 8px;
    background: transparent;
    border: 1px solid rgba(208, 203, 203, 0.2705882353);
    color: #fff;
}
.pagination .page-item .page-link {
    border-radius: 8px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.pagination .page-item.active .page-link,
.pagination .page-item:hover .page-link {
    background-color: var(--primary-color);
    border-color: transparent;
    color: #ffffff;
}

/*-------------------------------------------------
    [ ## tab ]
*/
.nav-tabs {
    margin: 0;
    border: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 30px;
}
.nav-tabs .nav-link {
    padding: 30px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    background-color: #ffffff;
    border-radius: 15px;
    border: none;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.nav-tabs .nav-link .icon {
    width: 50px;
    height: 50px;
    font-size: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    border-radius: 30%;
    color: #ffffff;
    margin: 0 auto;
    margin-bottom: 20px;
}
/* .nav-tabs .nav-link.active {
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border: none;
    color: #fff;
} */
.nav-tabs .nav-link:nth-of-type(1n) .icon {
    background-color: #7367f0;
    -webkit-box-shadow: 0 2px 10px 0 rgba(115, 103, 240, 0.3);
    box-shadow: 0 2px 10px 0 rgba(115, 103, 240, 0.3);
}
.nav-tabs .nav-link:nth-of-type(2n) .icon {
    background-color: #28c76f;
    -webkit-box-shadow: 0 2px 10px 0 rgba(40, 199, 111, 0.3);
    box-shadow: 0 2px 10px 0 rgba(40, 199, 111, 0.3);
}
.nav-tabs .nav-link:nth-of-type(3n) .icon {
    background-color: #107be9;
    -webkit-box-shadow: 0 2px 10px 0 rgba(16, 123, 233, 0.3);
    box-shadow: 0 2px 10px 0 rgba(16, 123, 233, 0.3);
}
.nav-tabs .nav-link:not(:last-child) {
    margin-right: 30px;
}
@media only screen and (max-width: 1199px) {
    .nav-tabs .nav-link:not(:last-child) {
        margin-right: 5px;
    }
}

/*-------------------------------------------------
    [ ## card ]
*/
.custom-card .card-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.custom-card .card-body {
    background: #050251;
    padding: 30px;
    border-radius: 20px;
}
@media only screen and (max-width: 575px) {
    .custom-card .card-body {
        padding: 20px;
    }
}
.custom-card button,
.custom-card input[type="submit"],
.custom-card input[type="reset"],
.custom-card input[type="button"],
.custom-card .btn--base {
    padding: 12px 30px;
}

/*-------------------------------------------------
    [ ## modal ]
*/
.modal-content, .logout__modal {
    background: white;
    border-radius: 10px;
}



.dark-version .modal-content, .dark-version .logout__modal{
    background-color: var(--dark-primary-color) !important;
}

.modal-content .close {
    border-radius: 3px;
}

.modal-header, .logout__modal .modal-header{
    border-color: var(--primary-color-5);
    background-color: var(--primary-color-20) !important;
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.dark-version .modal-header{
    background-color: var(--dark-primary-color-5) !important;
}
.modal-header .btn-close {
    background-color: transparent;
    background-image: none;
    /* position: relative; */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    padding: 0px !important;
    margin: 0px !important;
    width: 20px;
    height: 20px;
}
.modal-header .btn-close i {
    position: absolute;
    top: 8px;
    left: 9px;
    color: white;
}

.btn-close .modal_close_btn{
    background-color: transparent !important;
}

.modal-body, .logout__modal .modal-body {
    background-color: white !important;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

.dark-version .modal-body, .dark-version .logout__modal .modal-body {
    background-color: var(--dark-primary-color) !important;
}



.modal-footer, .logout__modal .modal__footer {
    border-color: var(--primary-color-5);
    background-color: white !important;
}
.logout__modal .modal__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.dark-version .modal-footer, .dark-version .logout__modal .modal__footer {
    background-color: var(--dark-primary-color) !important;
}

/*-------------------------------------------------
    [ ## Heading ]
*/
h1,
h2,
h3,
h4,
h5,
h6, .frontend__body h1, .frontend__body h2, .frontend__body h3, .frontend__body h4, .frontend__body h5, .frontend__body h6 {
    clear: both;
    line-height: 1.3em;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    font-family: "Tajawal", sans-serif;
    font-weight: 600;
}


h1 {
    font-size: 55px;
}
@media only screen and (max-width: 1199px) {
    h1 {
        font-size: 50px;
    }
}
@media only screen and (max-width: 991px) {
    h1 {
        font-size: 40px;
    }
}
@media only screen and (max-width: 575px) {
    h1 {
        font-size: 30px;
    }
}

h2 {
    font-size: 35px;
}
@media only screen and (max-width: 991px) {
    h2 {
        font-size: 26px;
    }
}
@media only screen and (max-width: 575px) {
    h2 {
        font-size: 24px;
    }
}

h3 {
    font-size: 22px;
}
@media only screen and (max-width: 991px) {
    h3 {
        font-size: 21px;
    }
}

h4 {
    font-size: 18px;
}
@media only screen and (max-width: 991px) {
    h4 {
        font-size: 16px;
    }
}

h5 {
    font-size: 14px;
}
@media only screen and (max-width: 575px) {
    h5 {
        font-size: 14px;
    }
}

h6 {
    font-size: 12px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
    color: inherit;
    text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover {
    color: inherit;
    text-decoration: none;
}

.section-header {
    margin-bottom: 40px;
    position: relative;
}
@media only screen and (max-width: 991px) {
    .section-header {
        margin-bottom: 30px;
    }
}
.section-header .section-sub-title {
    font-size: 11px;
    padding: 5px 10px;
    background-color: #050251;
    text-transform: uppercase;
    border-radius: 7px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}
.section-header .section-title {
    margin-bottom: 0;
    text-transform: capitalize;
}
.section-header .section-title span {
    color: var(--primary-color);
}
.section-header p {
    margin-top: 10px;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/*-------------------------------------------------
    [ ## Buttons ]
*/
input[type="submit"]:hover {
    color: #ffffff;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    cursor: pointer;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
}
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
    outline: none;
}

button::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.btn {
    -webkit-transition: all 0.3s ease 0.02s;
    transition: all 0.3s ease 0.02s;
}

.btn:active,
.btn:focus {
    -webkit-box-shadow: 0 0px 0px rgba(0, 0, 0, 0.125) inset;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.125) inset;
}

.btn {
    border: 0px solid;
    border-radius: 0px;
    font-weight: 500;
    font-size: 16px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
@media only screen and (max-width: 767px) {
    .btn {
        font-size: 14px;
    }
}

.btn-rounded {
    border-radius: 3px;
}

.btn-capsule {
    border-radius: 100px;
}

/*-------------------------------------------------
    [ ## custom btn ]
*/
.btn--primary {
    background-color: #7367f0;
}

.btn--secondary {
    background-color: #868e96;
}

.btn--success {
    background-color: #28c76f;
}

.btn--danger {
    background-color: #d63384;
}

.btn--warning {
    background-color: #ff9f43;
}

.btn--info {
    background-color: #1e9ff2;
}

.btn--dark {
    background-color: #10163a;
}

.badge--primary::before {
    background-color: #7367f0;
}

.badge--secondary::before {
    background-color: #868e96;
}

.badge--success::before {
    background-color: #28c76f;
}

.badge--danger::before {
    background-color: #d63384;
}

.badge--warning::before {
    background-color: #ff9f43;
}

.badge--info::before {
    background-color: #1e9ff2;
}

.badge--dark::before {
    background-color: #10163a;
}

.border--primary {
    border: 1px solid var(--primary-color);
}

.border--secondary {
    border: 1px solid #868e96;
}

.border--success {
    border: 1px solid #28c76f;
}

.border--danger {
    border: 1px solid #ea5455;
}

.border--warning {
    border: 1px solid #ff9f43;
}

.border--info {
    border: 1px solid #1e9ff2;
}

.border--dark {
    border: 1px solid #10163a;
}

.badge {
    position: relative;
    font-weight: 400;
    border-radius: 0;
    padding: 0;
    font-size: 13px;
    background-color: transparent;
    padding-left: 15px;
}
.badge::before {
    position: absolute;
    content: "";
    top: 3px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.btn--base, .frontend__body .btn--base {
    position: relative;
    background: var(--primary-color);
    border-radius: 6px;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}



.btn--base i {
    font-size: 16px;
    position: relative;
    top: 1px;
}
.btn--base.active {
    background: transparent;
    color: var(--primary-color);
}
.btn--base.active:focus,
.btn--base.active:hover {
    color: #ffffff;
    background: var(--primary-color);
}
.btn--base:focus,
.btn--base:hover {
    color: var(--primary-color);
    background: white;
}
.change-mail-btn:focus,
.change-mail-btn:hover {
    background: var(--primary-color);
    border: solid 1px var(--white-color);
    color: var(--white-color);
}
@media only screen and (max-width: 991px) {
    .btn--base {
        padding: 10px 25px;
        font-size: 13px;
    }
}

.prmium--btn {
    background-color: #627afe;
    width: 100%;
    border-radius: 6px;
    padding: 8px;
    color: #ffffff;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}
.prmium--btn:hover {
    background-color: #4e62d6;
}

.gold--btn {
    background-color: #44cdd2;
    width: 100%;
    border-radius: 15px;
    padding: 8px;
    color: #ffffff;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}
.gold--btn:hover {
    background-color: #3ab1b6;
}

.Diamond--btn {
    background-color: #ff5e5e;
    width: 100%;
    border-radius: 15px;
    padding: 8px;
    color: #ffffff;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}
.Diamond--btn:hover {
    background-color: #d84545;
}

.discount--gold {
    background: #71cdcf;
    color: #fbffff;
    width: 98px;
    padding: 6px 8px;
    border-radius: 10px;
}

.discount--Platinum {
    background: #627afe;
    color: #fbffff;
    width: 98px;
    padding: 6px 8px;
    border-radius: 10px;
}

.discount--Diamond {
    background: #ff5e5e;
    color: #f0eded;
    width: 98px;
    padding: 6px 8px;
    border-radius: 10px;
}

.info-btn {
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 5px;
    color: #ffffff;
    font-size: 18px;
    display: none;
}
@media only screen and (max-width: 991px) {
    .info-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.chat-cross-btn {
    width: 25px;
    height: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #ea5455;
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
    display: none;
}
@media only screen and (max-width: 991px) {
    .chat-cross-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

/*-------------------------------------------------
    [ ## Fields ]
*/
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    outline: none;
}

input,
textarea {
    padding: 12px 20px;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: rgba(111, 108, 108, 0.518);
}
input::-moz-placeholder,
textarea::-moz-placeholder {
    color: rgba(111, 108, 108, 0.518);
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: rgba(111, 108, 108, 0.518);
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: rgba(111, 108, 108, 0.518);
}
input::placeholder,
textarea::placeholder {
    color: rgba(111, 108, 108, 0.518);
}

textarea {
    display: block;
    width: 100%;
    display: block;
    min-height: 118px;
}

input,
select,
textarea {
    border: 1px solid rgba(208, 203, 203, 0.2705882353);
    vertical-align: baseline;
    font-size: 100%;
    color: #ffffff;
}

label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}
label span {
    color: var(--primary-color);
}

/*-------------------------------------------------
    [ ## Forms ]
*/
select {
    outline: none;
    cursor: pointer;
}

option {
    color: #fff;
}

.input-group {
    margin-bottom: 0;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.input-group .nice-select {
    width: auto;
    padding: 0 30px 0 15px;
    background-color: #050251 !important;
    color: #ffffff !important;
    line-height: 45px;
}
.input-group .nice-select::after {
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: rgba(19, 186, 186, 0.2);
}

.input-group-append,
.input-group-prepend {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
}

.input-group-append input {
    border-radius: 5px 0 0 5px;
    border: 1px solid rgba(208, 203, 203, 0.2705882353);
    border-right: none;
    background-color: #ffffff;
}

.input-group-text {
    border: none;
    font-size: 16px;
    background: var(--primary-color);
    color: #ffffff;
    height: 45px;
    border-radius: 0 15px 15px 0;
    font-weight: 500;
}

.custom-check-group {
    display: block;
    margin-bottom: 12px;
}
.custom-check-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}
.custom-check-group input:checked + label::before {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.custom-check-group input:checked + label::after {
    content: "";
    display: block;
    position: absolute;
    top: 9px;
    left: 7px;
    width: 5px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.custom-check-group label {
    position: relative;
    cursor: pointer;
}
.custom-check-group label::before {
    content: "";
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #ffffff;
    border: 1px solid #d0d5dd;
    border-radius: 5px;
    padding: 8px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 8px;
    top: 0px;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-control {
    border: 1px solid rgba(208, 203, 203, 0.2705882353);
    font-size: 14px;
    height: 50px;
    color: #ebebeb;
}
.form-control:focus {
    color: #ebebeb;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid rgba(208, 203, 203, 0.2705882353);
}
.form-control::-webkit-input-placeholder {
    color: #ebebeb;
}
.form-control::-moz-placeholder {
    color: #ebebeb;
}
.form-control:-ms-input-placeholder {
    color: #ebebeb;
}
.form-control::-ms-input-placeholder {
    color: #ebebeb;
}
.form-control::placeholder {
    color: #ebebeb;
}

.form--control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.412);
    height: 45px;
    font-size: 14px;
    color: #ebebeb;
    border-radius: 8px;
    padding: 10px 25px;
    width: 100%;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.form--control:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    color: #ebebeb;
    border: 2px solid rgba(255, 255, 255, 0.412);
    background-color: rgba(255, 255, 255, 0.05);
}
.form--control::-webkit-input-placeholder {
    color: rgba(235, 235, 235, 0.2);
}
.form--control::-moz-placeholder {
    color: rgba(235, 235, 235, 0.2);
}
.form--control:-ms-input-placeholder {
    color: rgba(235, 235, 235, 0.2);
}
.form--control::-ms-input-placeholder {
    color: rgba(235, 235, 235, 0.2);
}
.form--control::placeholder {
    color: rgba(235, 235, 235, 0.2);
}
.form--control:disabled {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.fileholder.active {
    border: 0.125rem dashed #243b8130 !important;
}

.fileholder-drag-drop-title {
    color: #c4c5cf;
}

.fileholder-drag-drop-icon svg path:nth-child(2) {
    fill: var(--primary-color);
}

.fileholder-basic-loading-circle.one {
    border: 2px solid var(--primary-color);
}

.fileholder-basic-loading-circle.two {
    border: 2px solid var(--primary-color);
}

.fileholder-basic-loading-circle.three {
    border: 2px solid var(--primary-color);
}

.file-holder-wrapper {
    width: 400px;
}
@media only screen and (max-width: 575px) {
    .file-holder-wrapper {
        width: 100%;
    }
}

.fileholder.active {
    border: 0.125rem dashed #243b8130 !important;
}


.fileholder-drag-drop-title {
    color: #ebebeb;
}

.fileholder-drag-drop-icon svg path:nth-child(2) {
    fill: var(--primary-color);
}

.fileholder-basic-loading-circle.one {
    border: 2px solid var(--primary-color);
}

.fileholder-basic-loading-circle.two {
    border: 2px solid var(--primary-color);
}

.fileholder-basic-loading-circle.three {
    border: 2px solid var(--primary-color);
}

.radio-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: -3px -7px;
}
.radio-wrapper .radio-item {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin: 3px 7px;
}
.radio-wrapper .radio-item img {
    width: 60px;
    margin-right: 5px;
}

.radio-item [type="radio"]:checked {
    position: absolute;
    left: -9999px;
}

.radio-item [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.radio-item [type="radio"]:checked + label {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    border-radius: 8px;
    padding: 20px 25px;
    display: inline-block;
    color: #ffffff;
    width: 100%;
    text-align: center;
}

.radio-item [type="radio"]:not(:checked) + label {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px 25px;
    display: inline-block;
    color: #ebebeb;
    width: 100%;
    text-align: center;
}

.nice-select {
    height: 45px;
    line-height: 45px;
    float: unset;
    padding: 0 25px;
    color: #ffffff !important;
}
.nice-select .option.disabled {
    color: #ffffff;
}
.nice-select .list {
    background-color: rgba(31, 55, 97, 0.968627451);
    left: auto;
    right: 0;
    width: 100%;
    height: 130px;
    overflow-y: scroll;
}

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

.select2-container {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    width: 100%;
}

.selection {
    width: 100%;
}

.select2-selection--single {
    width: 100%;
    height: 45px !important;
    outline: none;
    font-size: 15px;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 10px 10px;
    border-radius: 5px;
    vertical-align: top;
    display: inline-block;
    border: 1px solid rgba(208, 203, 203, 0.2705882353) !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.select2-selection--single span {
    margin: 0;
    width: 100%;
    color: #ebebeb;
    line-height: initial;
    font-weight: 600;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: auto;
    position: absolute;
    top: 22px;
    right: 7px;
    width: 20px;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow
    b {
    border-color: #ebebeb transparent transparent transparent;
}

.select2-container--default.select2-container--open
    .select2-selection--single
    .select2-selection__arrow
    b {
    border-color: transparent transparent #ebebeb transparent;
}

.submit-btn {
    padding: 12px 20px;
    color: #ffffff;
    background: #050251;
    font-weight: 600;
    font-size: 14px;
    border-radius: 5px;
    font-family: "Tajawal", sans-serif;
}
@media only screen and (max-width: 991px) {
    .submit-btn {
        padding: 10px 20px;
    }
}

input:focus {
    border: 1px solid rgba(255, 255, 255, 0.396);
}

/*-------------------------------------------------
    [ ## Overlay Element ]
*/
.bg_img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat !important;
}

.bg-fixed {
    background-attachment: fixed;
}

.bg-overlay-base {
    position: relative;
    z-index: 2;
}

.bg-overlay-base:after {
    content: "";
    position: absolute;
    background-color: #001125;
    opacity: 0.6;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

@-webkit-keyframes scroll-down {
    0%,
    100% {
        -webkit-transform: translateY(5%);
        transform: translateY(5%);
    }
    50% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes scroll-down {
    0%,
    100% {
        -webkit-transform: translateY(5%);
        transform: translateY(5%);
    }
    50% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes scale {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
    }
    100% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}
@keyframes scale {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
    }
    100% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}
@-webkit-keyframes scale-up-one {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    40% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes scale-up-one {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    40% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@-webkit-keyframes ripple {
    0%,
    35% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
    }
}
@keyframes ripple {
    0%,
    35% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.8);
        transform: scale(1.8);
    }
}
@-webkit-keyframes wave {
    0% {
        -webkit-transform: rotate(1deg);
        transform: rotate(1deg);
    }
    100% {
        -webkit-transform: rotate(-1deg);
        transform: rotate(-1deg);
    }
}
@keyframes wave {
    0% {
        -webkit-transform: rotate(1deg);
        transform: rotate(1deg);
    }
    100% {
        -webkit-transform: rotate(-1deg);
        transform: rotate(-1deg);
    }
}
@-webkit-keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
/*--------------------------------------------------------------
    [ ## Header ]
--------------------------------------------------------------*/
/*-------------------------------------------------
    [ ## Preloader ]
*/
.preloader {
    position: fixed;
    z-index: 9999999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f7f7f7;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    margin-left: -60px;
    margin-top: -60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.loader-circle img {
    width: 40%;
    height: 40%;
    -o-object-fit: contain;
    object-fit: contain;
}

.loader-line-mask {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 120px;
    margin-left: -60px;
    margin-top: -60px;
    overflow: hidden;
    -webkit-transform-origin: 60px 60px;
    transform-origin: 60px 60px;
    -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
    mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
    -webkit-animation: rotate 1.2s infinite linear;
    animation: rotate 1.2s infinite linear;
}

.loader-line-mask .loader-line {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/*-------------------------------------------------
  [ ## Header ]
*/
.header-section {
    position: relative;
    z-index: 9;
}

.header-area {
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media only screen and (max-width: 570px) {
    .header-area {
        display: block;
    }
}

.social-icons li {
    padding: 0px 10px;
}

.contact .item {
    padding: 0px 10px;
    font-size: 16px;
}

.navber-section {
    background-color: #ffffff;
}
.navber-section .search input {
    padding: 10px;
    border-radius: 60px;
    margin-top: 5px;
    border: 1px solid rgba(208, 203, 203, 0.2705882353);
    width: 200px;
    height: 40px;
    font-size: 16px;
}
.navber-section .search input::-webkit-input-placeholder {
    color: #505050;
    font-size: 14px;
}
.navber-section .search input::-moz-placeholder {
    color: #505050;
    font-size: 14px;
}
.navber-section .search input:-ms-input-placeholder {
    color: #505050;
    font-size: 14px;
}
.navber-section .search input::-ms-input-placeholder {
    color: #505050;
    font-size: 14px;
}
.navber-section .search input::placeholder {
    color: #505050;
    font-size: 14px;
}
.navber-section .search button,
.navber-section .search input[type="button"],
.navber-section .search input[type="reset"],
.navber-section .search input[type="submit"] {
    padding: 5px 15px;
    border-radius: 50px;
    margin-left: 5px;
    margin-top: 5px;
    color: #ffffff;
    background-color: var(--primary-color);
}
.navber-section .search button:hover,
.navber-section .search input[type="button"]:hover,
.navber-section .search input[type="reset"]:hover,
.navber-section .search input[type="submit"]:hover {
    background-color: #15e0e0;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.header {
    background-color: transparent;
    width: 100%;
    z-index: 9;
}

.header-section.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    background-color: transparent;
    margin-top: 0;
    -webkit-animation-fill-mode: initial;
    animation-fill-mode: initial;
}
.header-section.header-fixed .header-top-area {
    display: none !important;
}
.header-section.header-fixed .header-bottom-area {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media only screen and (max-width: 991px) {
    .header-section.header-fixed .header-bottom-area {
        padding: 15px;
    }
}

.header-bottom-area {
    position: relative;
    background: transparent;
}
.header-bottom-area .navbar-expand-lg {
    background-color: transparent;
}
@media (max-width: 991px) {
    .header-bottom-area .navbar-collapse {
        background-color: transparent !important;
        padding: 0 !important;
    }
    .header-bottom-area .navbar-collapse .main-menu {
        padding: 15px 0;
    }
    .header-bottom-area .menu_has_children .sub-menu {
        display: none !important;
    }
    .header-bottom-area .menu_has_children .sub-menu li {
        width: 100%;
    }
    .header-bottom-area
        .navbar-collapse
        .main-menu
        .menu_has_children.show
        .sub-menu,
    .header-bottom-area
        .navbar-collapse
        .main-menu
        .menu_has_children.show
        .sub-menu {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
.header-bottom-area .navbar-collapse .main-menu li:last-child .sub-menu {
    left: auto;
    right: 0;
}
.header-bottom-area .navbar-collapse .main-menu {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media only screen and (max-width: 991px) {
    .header-bottom-area .navbar-collapse .main-menu {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}
.header-bottom-area .navbar-collapse .main-menu li {
    position: relative;
    padding-right: 40px;
}
@media only screen and (max-width: 1199px) {
    .header-bottom-area .navbar-collapse .main-menu li {
        padding-right: 22px !important;
    }
}
.header-bottom-area .navbar-collapse .main-menu li:last-child {
    padding-right: 0;
    margin-right: 0;
}
.header-bottom-area .navbar-collapse .main-menu li:hover .sub-menu {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}
.header-bottom-area .navbar-collapse .main-menu li.menu_has_children {
    position: relative;
}
.header-bottom-area .navbar-collapse .main-menu li.menu_has_children i {
    font-size: 12px;
    margin-left: 5px;
}
@media (max-width: 991px) {
    .header-bottom-area
        .navbar-collapse
        .main-menu
        li.menu_has_children::before {
        top: 12px;
        right: 15px;
    }
}
.header-bottom-area .navbar-collapse .main-menu li a {
    position: relative;
    padding: 30px 0;
    font-weight: 600;
    font-size: 16px !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #ebebeb;
    display: inline-block;
    font-size: 15px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 9;
}
.header-bottom-area .navbar-collapse .main-menu li a::after {
    position: absolute;
    content: "";
    bottom: 10px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.header-bottom-area .navbar-collapse .main-menu li a:hover {
    color: var(--primary-color);
}
.header-bottom-area .navbar-collapse .main-menu li a:hover::after {
    width: 100%;
}
.header-bottom-area .navbar-collapse .main-menu li a.active {
    color: var(--primary-color);
}
.header-bottom-area .navbar-collapse .main-menu li a.active::after {
    width: 100%;
}
@media (max-width: 991px) {
    .header-bottom-area .navbar-collapse .main-menu li a {
        padding: 12px 15px !important;
    }
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu {
    position: absolute;
    top: 60px;
    left: 0px;
    padding: 10px 5px;
    width: 180px;
    background-color: #050251;
    border: 1px solid rgba(208, 203, 203, 0.2705882353);
    border-radius: 15px;
    display: block;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 10;
}
@media only screen and (max-width: 991px) {
    .header-bottom-area .navbar-collapse .main-menu li .sub-menu {
        width: 180px;
    }
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li {
    margin-right: 0;
    padding-right: 0;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    position: relative;
    z-index: 2;
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li:last-child {
    border-bottom: 0px solid;
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li:hover a {
    color: var(--primary-color);
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li a {
    width: 100%;
    font-size: 12px;
    padding: 5px 15px;
    display: block;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li a::before {
    display: none;
}
@media (max-width: 991px) {
    .header-bottom-area .navbar-collapse .main-menu li .sub-menu {
        position: initial;
        opacity: 1;
        visibility: visible;
        display: none;
        -webkit-transition: none;
        transition: none;
    }
}
.header-bottom-area .navbar-collapse .main-menu li:last-child .sub-menu {
    left: auto;
    right: 0;
}

.site-logo {
    max-width: 160px;
}
@media only screen and (max-width: 991px) {
    .site-logo {
        max-width: 120px;
    }
}

.header-action {
    margin-left: 40px;
}
@media only screen and (max-width: 991px) {
    .header-action {
        margin-left: 12px;
    }
}
@media only screen and (max-width: 678px) {
    .header-action {
        display: flex ;
        flex-direction: column;
        gap: 10px;
    }
}

.language-select {
    background: transparent;
    color: #ffffff;
    padding: 5px 8px;
    border: 1px solid #ffffff38 !important;
    margin-left: 30px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

/* language section start */
.language-dropdown {
    position: relative;
    display: inline-block;
    /* margin: 5px 0 0 0; */
}
.language-dropdown li a {
    width: 100%;
    margin: 8px;
}

.dropdown-btn {
    cursor: pointer;
    background: transparent;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    list-style: none;
    padding: 0;
}
.language-dropdown ul.dropdown-menu {
    width: 50px;
}

.dropdown-menu li {
    cursor: pointer;
}

.language-dropdown .selected {
    font-weight: bold;
}

/* language section end */

@media only screen and (max-width: 991px) {
    .language-select {
        margin-left: 12px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 991px) {
    .header-link {
        display: none;
    }
}
.header-link a {
    color: #ffffff;
}
.header-link a i {
    color: var(--primary-color);
    margin-right: 5px;
    font-size: 16px;
}
.header-link a + a {
    margin-left: 20px;
}

.header-social li {
    display: inline-block;
    font-size: 13px;
    color: #ffffff;
}
.header-social li + li {
    margin-left: 15px;
}

.notification-icon {
    width: 42px;
    height: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ebebeb;
    border: 1px solid #353a68;
    border-radius: 10px;
    font-size: 20px;
}

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

.navbar-toggler span {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 14px;
}

.account-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.account-section.active {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0.2s ease-out;
    transition-delay: 0.2s ease-out;
}
.account-section.active .account-bg {
    -webkit-transition-timing-function: cubic-bezier(0.86, 0.27, 0.17, 0.2);
    transition-timing-function: cubic-bezier(0.86, 0.27, 0.17, 0.2);
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.account-section.active .account-bg::after {
    width: 100%;
}
.account-section.active .account-area {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition-timing-function: cubic-bezier(0.9, 0.25, 0.08, 0.2);
    transition-timing-function: cubic-bezier(0.9, 0.25, 0.08, 0.2);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 9;
}
.modal__home {
    top: 50%;
    transform: translateY(-50%) !important;
}
.account-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}
.account-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgb(10, 14, 23);
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(rgba(10, 14, 23, 0.8)),
        to(rgba(10, 14, 23, 0.8))
    );
    background: linear-gradient(
        90deg,
        rgba(10, 14, 23, 0.8) 0%,
        rgba(10, 14, 23, 0.8) 100%
    );
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.account-area {
    border-radius: 8px;
    position: relative;
    background-position: bottom;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    width: 430px;
    margin-left: auto;
    margin-right: auto;
    display: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    overflow-y: auto;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
@media only screen and (max-width: 600px) {
    .account-area {
        width: 400px;
    }
}
@media only screen and (max-width: 420px) {
    .account-area {
        width: 350px;
        padding: 15px;
    }
}
@media only screen and (max-width: 375px) {
    .account-area {
        width: 300px;
    }
}
.account-area.change-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media only screen and (max-width: 991px) {
    .account-area.change-form {
        display: block;
    }
}
.account-area .account-form-area {
    padding: 0;
    border-radius: 10px;
    position: relative;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
/* .account-area .account-close {
  width: inherit;
  text-align: center;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: var(--primary-color);
  border-radius: 50%;
} */
/* .account-area .account-close::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 20px;
  background: #fff;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  left: 11px;
  top: 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.account-area .account-close::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 20px;
  background: #fff;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  left: 11px;
  bottom: 47%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
} */
/* .account-area .account-close:hover::before,
.account-area .account-close:hover::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
} */

.account-area .account-logo {
    margin-bottom: 30px;
}

.account-area p {
    font-size: 12px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.5);
}

.account-area .account-form {
    background-color: #f7f7f7;
    padding: 16px;
    border-radius: 0px 0px 10px 10px;
}

.account-area .form-group {
    margin-bottom: 0;
}

.account-area .level-1 {
    color: #555;
    font-weight: 600;
}

.account-area .account-form label {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 600 !important;
    margin-bottom: 0;
    margin-top: 10px;
}

.account-area .account-form input {
    border: 1px solid #d0d5dd !important;
    background-color: #fff !important;
    padding: 10px;
    color: #344054 !important;
}

input::placeholder {
    color: #adadad !important;
}

.account-area .account-form input:focus {
    border-color: #328af1 !important;
}

.account-area .account-form input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.8) !important;
}

.account-area .account-form input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.8) !important;
}

.account-area .account-form input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.8) !important;
}

.account-area .account-form input::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.8) !important;
}

.account-area .account-form input::placeholder {
    color: rgba(213, 212, 212, 0.528) !important;
}

.account-area .account-form .forgot-item a {
    color: var(--primary-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.account-area .account-form .forgot-item a:hover {
    color: #d3d3d3;
}

.account-area .account-form .or-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 20px;
    gap: 37px;
}

.account-area .account-form .or-area .or-title {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.account-area .account-form .or-area .or-line {
    height: 1px;
    border: 0.5px solid rgba(255, 255, 255, 0.08);
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.account-area .account-form .account-item {
    color: rgba(255, 255, 255, 0.5);
}

.account-area .account-form .account-item a {
    color: var(--primary-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.account-area .account-form .account-item a:hover {
    color: #dedede;
}

.account-area .account-form .account-form-btn {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
}

.account-area .account-form .account-form-btn a {
    width: 35px;
    height: 35px;
    line-height: 30px;
    display: inline-block;
    text-align: center;
    background-color: rgba(50, 138, 241, 0.1);
    border: 0.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    margin: 8px;
    fill: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.account-area .account-form .account-form-btn a.facebook:hover {
    background-color: #3b5998;
}

.account-area .account-form .account-form-btn a.google:hover {
    background-color: #db4437;
}

.account-area .account-form .account-form-btn a.apple:hover {
    background-color: #000000;
}

/* .account-area .account-form .custom-check-group label {
  color: rgba(255, 255, 255, 0.5);
} */

.account-area .account-form .custom-check-group label a {
    color: var(--primary-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.show_hide_password {
    position: relative;
}

.show-pass {
    position: absolute;
    top: 50px;
    right: 20px;
    font-size: 12px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: var(--text-color)
}

.reset-new-password .show-pass{
    top: 13px
}

/*--------------------------------------------------------------
    [ ## Introduction ]
--------------------------------------------------------------*/
.banner-section {
    position: relative;
    z-index: 2;
}
.banner-section .baner-element {
    position: absolute;
    top: -40%;
    opacity: 0.08;
    z-index: -1;
}
@media only screen and (max-width: 1024px) {
    .banner-section .baner-element {
        top: -10%;
    }
}
@media only screen and (max-width: 768px) {
    .banner-section .baner-element {
        top: 0%;
    }
}

/*--------------------------------------------------------------
    [ ## Footer ]
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer-block
--------------------------------------------------------------*/
.footer-section {
    background-color: #050251;
    position: relative;
}

.footer-widget-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media only screen and (max-width: 1199px) {
    .footer-widget-wrapper {
        display: block;
    }
}

.footer-widget {
    width: 50%;
}
@media only screen and (max-width: 1199px) {
    .footer-widget {
        width: 100%;
        margin-bottom: 20px;
    }
}
.footer-widget .footer-logo {
    margin-bottom: 20px;
}

.footer-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -6px -15px;
    justify-content: end;
}
@media only screen and (max-width: 1199px) {
    .footer-list {
        margin-top: 15px;
        justify-content: left;
    }
}
.footer-list li {
    padding: 6px 15px;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}
.footer-list li:hover {
    color: var(--primary-color);
}

.footer-social li {
    display: inline-block;
    font-size: 18px;
}
@media only screen and (max-width: 575px) {
    .footer-social li {
        font-size: 14px;
    }
}
.footer-social li + li {
    margin-left: 20px;
}

.footer-bottom-area {
    border-top: 1px solid rgba(109, 109, 109, 0.719);
    padding-top: 40px;
    margin-top: 40px;
    text-align: center;
}
@media only screen and (max-width: 991px) {
    .footer-bottom-area {
        display: block !important;
        text-align: center;
    }
}

.copyright-area {
    margin-bottom: 20px;
}
.copyright-area p {
    margin-bottom: 0;
}
.copyright-area p span {
    color: var(--primary-color);
    font-weight: 500;
}

.social-area .footer-social a {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    font-size: 24px;
    color: var(--primary-color);
}
.social-area .footer-social a:hover {
    color: #fff;
}
@media only screen and (max-width: 991px) {
    .social-area {
        padding-bottom: 20px;
    }
}

/*--------------------------------------------------------------
# Pages
--------------------------------------------------------------*/
/*--------------------------------------------------------------
    [ ## team ]
--------------------------------------------------------------*/
/*--------------------------------------------------------------
    [ ## Testimonial ]
--------------------------------------------------------------*/
/*-------------------------------------------------
    [ ## Testimonial ]
*/
.testimonial-section {
    overflow: hidden;
}
.testimonial-section .client-img img {
    width: 70px;
    border-radius: 50%;
}

@media (min-width: 1320px) {
    .testimonial-section .container {
        padding-right: calc((100vw - 1176px) / 2);
        max-width: calc(1320px + (100vw - 1320px) / 2);
        left: calc((100vw - 1320px) / 4);
        position: relative;
        overflow: hidden;
    }
}
.testimonial-slider .swiper-android .swiper-slide,
.testimonial-slider .swiper-wrapper {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.testimonial-wrapper {
    padding: 40px;
    background-color: #050251;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
    border-radius: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.testimonial-wrapper .client-details {
    width: 100%;
}
.testimonial-wrapper .client-details img {
    width: 70px;
    border-radius: 50%;
}
.testimonial-wrapper .client-details p {
    font-size: 14px;
    margin: 0px;
}

.testimonial-thumb {
    position: relative;
    width: 168px;
}
.testimonial-thumb img {
    border-radius: 1.25rem;
}
.testimonial-thumb .testimonial-quote {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    line-height: 50px;
    background-color: var(--primary-color);
    border: 5px solid rgba(208, 203, 203, 0.2705882353);
    border-radius: 50%;
    text-align: center;
}
.testimonial-thumb .testimonial-quote .fill-white {
    fill: #ffffff;
}

.testimonial-section {
    padding-left: 30px;
}
@media only screen and (max-width: 991px) {
    .testimonial-section {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }
}
.testimonial-section .testimonial-ratings {
    margin-bottom: 15px;
}
.testimonial-section .testimonial-ratings i {
    color: #feb240;
}
.testimonial-section p {
    font-size: 18px;
}
.testimonial-section .testimonial-user-content .title span {
    color: var(--primary-color);
}

/*--------------------------------------------------------------
    [ ## Sections ]
--------------------------------------------------------------*/
.about-section .about-item .item-icon {
    position: relative;
    top: 5px;
    background-color: var(--primary-color);
    width: 20px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    color: #ffffff;
    border-radius: 5px;
    margin-right: 10px;
}

.feature-section .feature-item {
    background-color: #050251;
    padding: 20px;
    margin-top: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}
.feature-section .feature-item:hover {
    background-color: #053473;
}
.feature-section .feature-item a {
    color: var(--primary-color);
}

.how-it-works-section {
    text-align: center;
}
.how-it-works-section .how-it-works-wrapper {
    position: relative;
    z-index: 2;
}
.how-it-works-section .how-it-works-wrapper::after {
    position: absolute;
    content: "";
    top: 177px;
    left: 20%;
    width: 60%;
    height: 100%;
    border-top: 2px dashed rgba(255, 255, 255, 0.2);
    z-index: -1;
}
@media only screen and (max-width: 768px) {
    .how-it-works-section .how-it-works-wrapper::after {
        display: none;
    }
}
@media only screen and (max-width: 768px) {
    .how-it-works-section .how-it-work-number {
        margin-top: 15px;
    }
}
.how-it-works-section .how-it-work-number span {
    width: 80px;
    height: 80px;
    font-size: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
    margin: 0 auto;
}
.how-it-works-section .how-it-work-area {
    background-color: #050251;
    padding: 15px;
    margin-top: 50px;
    border-radius: 10px;
}
.how-it-works-section .how-it-work-area .how-it-work-icon {
    font-size: 50px;
    color: var(--primary-color);
}
.how-it-works-section .how-it-work-area .how-it-work-title {
    padding-top: 15px;
}

.service-section .service-item {
    background-color: #050251;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.service-section .service-item:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    background-color: #053473;
}
.service-section .service-item .service-icon img {
    width: 100px;
}
.service-section .service-item .service-content {
    padding-top: 15px;
}

.statistics-section {
    background-color: #050251;
}
.statistics-section .counter i {
    font-size: 50px;
    color: var(--primary-color);
}

.call-to-action-section .bg_img {
    border-radius: 10px;
}
.call-to-action-section .baner-area {
    padding-left: 60px;
}
@media only screen and (max-width: 480px) {
    .call-to-action-section .baner-area {
        padding-left: 10px;
    }
}
@media only screen and (max-width: 375px) {
    .call-to-action-section .baner-area .title {
        font-size: 22px;
    }
}

.blog-section .blog-item {
    background-color: #050251;
    border-radius: 10px;
}
.blog-section .blog-item .blog-content {
    padding: 20px;
}

.contact-section .contact-widget-box .contact-icon {
    font-size: 30px;
    color: var(--primary-color);
    padding-top: 10px;
}
.contact-section .contact-widget-box .contact-containt {
    padding-left: 15px;
}

.deposit-wrapper .deposit-form {
    background-color: #050251;
    padding: 40px 30px;
    border-radius: 10px;
}
@media only screen and (max-width: 575px) {
    .deposit-wrapper .deposit-form {
        padding: 20px;
    }
}

.testimonial-area {
    overflow: hidden;
}

.card-wrapper {
    background-color: #050251;
    padding: 30px 40px;
    border-radius: 10px;
}
.card-wrapper .card-balance span {
    font-size: 22px;
}
.card-wrapper .card-thumb {
    text-align: center;
}
.card-wrapper .card-thumb img {
    width: 300px;
}
.card-wrapper .card-content .card-details {
    margin: 10px 15px;
    font-size: 16px;
}
.card-wrapper .card-content .card-details .title {
    font-weight: 300;
    margin-top: 5px;
}
.card-wrapper .card-content .card-details .details-icon i {
    border-radius: 50px;
    background-color: var(--primary-color);
    padding: 10px;
    color: #ffffff;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}
.card-wrapper .card-content .card-details .details-icon i:hover {
    background-color: #463df5;
}

.card-custom-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.flip .logo {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 40px;
    height: 35px;
}
@media only screen and (max-width: 375px) {
    .buy-card {
        display: block !important;
    }
}
.card-body .form-group input {
    position: relative;
}
.card-body .form-group .field-icon {
    position: absolute;
    right: 30px;
    top: 45px;
}

.card-slider {
    overflow: hidden;
}

.deposit-form .form-group input {
    position: relative;
}
.deposit-form .form-group .currency {
    position: absolute;
    right: 0px;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 7.5px 21px;
    top: 37px;
    border: none;
    border-radius: 0px 10px 10px 0px;
    -webkit-border-radius: 0px 10px 10px 0px;
    -moz-border-radius: 0px 10px 10px 0px;
    -ms-border-radius: 0px 10px 10px 0px;
    -o-border-radius: 0px 10px 10px 0px;
}
@media only screen and (max-width: 991px) {
    .deposit-form .form-group .currency {
        padding: 9px 21px;
        top: 34px;
    }
}
@media only screen and (max-width: 575px) {
    .deposit-form .form-group .currency {
        padding: 10.5px 21px;
        top: 31px;
    }
}

@media only screen and (max-width: 991px) {
    .card-wrapper {
        display: block !important;
        text-align: center;
    }
    .card-wrapper .card-content .card-details {
        margin: 0;
    }
}
@media only screen and (max-width: 575px) {
    .card-wrapper {
        padding: 15px;
    }
}
.card-content {
    flex-wrap: wrap;
}

.deposit-form .preview-item {
    border-bottom: 1px solid rgba(208, 203, 203, 0.2705882353);
    padding-top: 15px;
    font-size: 14px;
}

.select2-container--default .select2-selection--single {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    color: #ebebeb;
}

.select2-dropdown {
    background-color: #050251;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    background-color: #050251;
}

.select2-container--default
    .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--primary-color);
}

.select2-container--default .select2-results__option--selected {
    background-color: var(--primary-color);
}

.otp-verification .account-form .form-group.digits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    direction: ltr;
}

.otp-verification .account-form .form-group input {
    margin: 6px 10px;
    border-radius: 8px;
    border-color: #d0d5dd !important;
    font-size: 45px !important;
    color: #adadad !important;
}

.forgot-password .forgot-password-area {
    max-width: 500px;
    margin: 0 auto;
}

.forgot-password .forgot-password-area form {
    padding: 16px;
    background-color: #f7f7f7;
    border-radius: 0 0 10px 10px;
}
.forgot-password .forgot-password-area form p {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-color)
}

.forgot-password .forgot-password-area form label {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 600 !important;
}

.forgot-password .forgot-password-area form input {
    border: 1px solid #d0d5dd !important;
    background-color: #fff !important;
    padding: 10px;
    color: var(--text-color)
}

.forgot-password .forgot-password-area .account-item a {
    color: var(--primary-color);
}

.change-mail-btn {
    color: var(--primary-color);
    background-color: #fff;
    border: 1px solid #e2e1ff;
}

.verification-otp .verification-otp-area .verification-otp-content p {
    font-size: 14px;
}
.verification-otp .verification-otp-area .account-item a {
    color: var(--primary-color);
}

.body-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 5;
    content: "";
    left: 0;
    top: 0;
    visibility: hidden;
}
@media only screen and (max-width: 1199px) {
    .body-overlay.active {
        visibility: visible;
    }
}

.body-overlay-t {
    position: fixed;
    width: 100%;
    height: 100%;
    display: block;
    background-color: transparent;
    z-index: 10;
    content: "";
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
}

.body-overlay-t.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
    [ ## Blog ]
--------------------------------------------------------------*/
/*-------------------------------------------------
    [ ### blog block ]
*/
.blog-item .blog-thumb {
    height: 250px;
    border-radius: 15px 15px 0px 0px;
    overflow: hidden;
}
.blog-item .blog-thumb-img {
    border-radius: 15px 15px 0px 0px;
    overflow: hidden;
}
.blog-item .blog-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.blog-item .blog-content {
    padding-top: 20px;
}
.blog-item .blog-content .title {
    margin-bottom: 20px;
    line-height: 1.8em;
}
.blog-item .blog-content .title a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.blog-item .blog-content .title a:hover {
    color: var(--primary-color);
}
.blog-item:hover .blog-thumb img {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
}

.blog-details-section .blog-item .blog-thumb {
    height: 500px;
}

.blog-list {
    margin-top: 30px;
    margin-bottom: 20px;
}
.blog-list li {
    position: relative;
    font-weight: 400;
    padding-left: 35px;
    padding-bottom: 15px;
}
.blog-list li::before {
    position: absolute;
    top: 2px;
    left: 0;
    content: "\f00c";
    font-family: "Line Awesome Free";
    width: 20px;
    height: 20px;
    line-height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    font-weight: 900;
}

.blog-tag-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px dashed rgba(208, 203, 203, 0.2705882353);
    padding-top: 20px;
    margin-top: 30px;
}
.blog-tag-wrapper span {
    font-weight: 600;
    margin-right: 10px;
}
.blog-tag-wrapper .blog-footer-tag li {
    display: inline-block;
    background: var(--primary-color);
    padding: 3px 10px;
    font-weight: 500;
    font-size: 14px;
    border-radius: 5px;
}
.blog-tag-wrapper .blog-footer-tag li + li {
    margin-left: 10px;
}

.blog-comment-area {
    margin-top: 30px;
}
.blog-comment-area .title {
    margin-bottom: 0 !important;
}

.blog-sidebar {
    position: sticky;
    top: 0;
}

.widget-box {
    background-color: #050251;
    padding: 30px;
    border-radius: 5px;
}
@media only screen and (max-width: 991px) {
    .widget-box {
        padding: 20px;
    }
}
.widget-box .widget-title {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
.widget-box .widget-title::before {
    position: absolute;
    content: "";
    top: 0;
    left: -30px;
    width: 3px;
    height: 20px;
    background-color: var(--primary-color);
}
@media only screen and (max-width: 991px) {
    .widget-box .widget-title::before {
        left: -20px;
    }
}

.category-widget-box .category-list {
    margin-bottom: -15px;
}
.category-widget-box .category-list li {
    padding: 7px 0;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
}
.category-widget-box .category-list li a {
    display: block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.category-widget-box .category-list li a:hover {
    color: var(--primary-color);
}
.category-widget-box .category-list li span {
    float: right;
}

.popular-widget-box {
    margin-bottom: -20px;
}

.single-popular-item {
    margin-bottom: 30px;
}
.single-popular-item .popular-item-thumb {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    overflow: hidden;
}
.single-popular-item .popular-item-thumb a {
    display: block;
    height: 100%;
}
.single-popular-item .popular-item-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.single-popular-item .popular-item-content {
    width: calc(100% - 90px);
    padding-left: 20px;
}
.single-popular-item .popular-item-content .title {
    margin-bottom: 0;
}
.single-popular-item .popular-item-content .title a {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.single-popular-item .popular-item-content .title a:hover {
    color: var(--primary-color);
}
.single-popular-item .popular-item-content span {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.tag-widget-box .tag-list {
    margin: -5px;
}
.tag-widget-box .tag-list li {
    display: inline-block;
    border: 1px solid rgba(208, 203, 203, 0.2705882353);
    color: #ffffff;
    font-size: 14px;
    border-radius: 5px;
    font-weight: 500;
    padding: 3px 15px;
    margin: 5px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.tag-widget-box .tag-list li:hover {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

/*--------------------------------------------------------------
    [ ## dashboard ]
--------------------------------------------------------------*/
/*-------------------------------------------------
      [ ### dashboard block ]
  */
.page-wrapper {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.sidebar::-webkit-scrollbar {
    display: none;
}

.sidebar {
    width: 250px;
    position: fixed;
    background: #050251;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 0 !important;
    padding: 24px 10px;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    overflow: hidden;
    overflow-y: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
}

@media only screen and (max-width: 1199px) {
    .sidebar {
        left: -300px;
    }
}
.sidebar.active {
    width: 60px;
}
.sidebar.active .user-name {
    display: none;
}
@media only screen and (max-width: 1199px) {
    .sidebar.active {
        width: 250px;
        left: 0;
    }
}
.sidebar-inner {
    height: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.sidebar.active .sidebar-menu .sidebar-menu-item a {
    padding: 12px 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media only screen and (max-width: 1199px) {
    .sidebar.active .sidebar-menu .sidebar-menu-item a {
        padding: 12px 15px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}
.sidebar.active .sidebar-menu .sidebar-menu-item .menu-icon {
    margin-right: 0;
}

@media only screen and (max-width: 1199px) {
    .sidebar.active .sidebar-menu .sidebar-menu-item .menu-icon {
        margin-right: 10px;
    }
}
.sidebar.active .sidebar-menu .sidebar-menu-item .sidebar-item-badge {
    display: none;
}

.sidebar.active .menu-title {
    display: none;
}

@media only screen and (max-width: 1199px) {
    .sidebar.active .menu-title {
        display: block;
    }
}
.sidebar.active .sidebar-doc-box {
    display: none;
}

@media only screen and (max-width: 1199px) {
    .sidebar.active .sidebar-doc-box {
        display: block;
    }
}
.sidebar:hover {
    width: 250px;
}

.sidebar:hover .sidebar-menu .sidebar-menu-item .menu-icon {
    margin-right: 10px;
}

.sidebar:hover .sidebar-menu .sidebar-menu-item .sidebar-item-badge {
    display: block;
}

.sidebar:hover .menu-title {
    display: inline-block;
}

.sidebar:hover .sidebar-doc-box {
    display: block;
}

@media only screen and (max-width: 1199px) {
    .sidebar {
        left: -300px;
    }
}
.sidebar-logo {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 24px;
    margin-bottom: 15px;
}

.sidebar-logo::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(rgba(224, 225, 226, 0)),
        color-stop(47.22%, rgb(224, 225, 226)),
        color-stop(94.44%, rgba(224, 225, 226, 0.157))
    );
    background: linear-gradient(
        90deg,
        rgba(224, 225, 226, 0) 0%,
        rgb(224, 225, 226) 47.22%,
        rgba(224, 225, 226, 0.157) 94.44%
    );
}

.sidebar-logo .sidebar-main-logo {
    max-width: 130px;
}

.sidebar-logo .sidebar-menu-bar {
    font-size: 14px;
    color: #94a9c9;
    background-color: transparent;
    display: none;
}
.sidebar-user-icon img {
    width: 120px;
    height: auto;
    border-radius: 50%;
    background-size: cover;
}
.sidebar-menu-wrapper {
    padding-top: 15px;
}

.sidebar-menu-header {
    position: relative;
    letter-spacing: 0.05em;
    font-size: 0.6875rem;
    font-weight: 500;
    margin-bottom: 15px;
    padding-left: 10px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-top: 20px;
}

.sidebar-menu-header::before {
    content: "--";
    position: absolute;
    left: 0;
    top: 0;
}

.sidebar-item-badge {
    margin-left: auto;
}

.sidebar-menu .sidebar-menu-item {
    position: relative;
    margin: 5px 0;
    border-radius: 15px;
}

.sidebar-menu .sidebar-menu-item::after {
    position: absolute;
    content: "";
    top: 0;
    right: -15px;
    width: 2px;
    height: 0;
    background-color: #1cc2e7;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.sidebar-menu .sidebar-menu-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 15px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.sidebar-menu .sidebar-menu-item a .menu-icon {
    width: 30px;
    height: 30px;
    background-color: rgba(12, 86, 219, 0.1);
    color: var(--primary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 10px;
    font-size: 18px;
    margin-right: 10px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.sidebar-menu .sidebar-menu-item.sidebar-dropdown a {
    position: relative;
}

.sidebar-menu .sidebar-menu-item.sidebar-dropdown a::after {
    position: absolute;
    top: 18px;
    right: 25px;
    font-family: "line Awesome Free";
    color: #94a9c9;
    font-weight: 700;
    content: "\f105";
    font-size: 12px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.sidebar-menu .sidebar-menu-item .sidebar-submenu {
    position: relative;
    display: none;
    z-index: 1;
}

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

.sidebar-menu .sidebar-menu-item .sidebar-submenu .sidebar-menu-item {
    letter-spacing: normal;
    color: #94a9c9;
    font-weight: 400;
    margin-top: 0;
    padding-left: 2px;
}

.sidebar-menu .sidebar-menu-item .sidebar-submenu .sidebar-menu-item a {
    padding: 10px 20px;
}

.sidebar-menu .sidebar-menu-item .sidebar-submenu .sidebar-menu-item a::after {
    display: none;
}

.sidebar-menu .sidebar-menu-item .sidebar-submenu .sidebar-menu-item a:hover {
    letter-spacing: 0px !important;
    font-weight: 700;
}

.sidebar-menu
    .sidebar-menu-item
    .sidebar-submenu
    .sidebar-menu-item
    a
    .menu-icon {
    font-size: 18px;
    margin-right: 8px;
}

.sidebar-menu .sidebar-menu-item:hover {
    letter-spacing: 0px !important;
    color: #1cc2e7;
    font-weight: 700;
}

.sidebar-menu .sidebar-menu-item.active {
    background-color: var(--primary-color-20);
    color: var(--primary-color) !important;
}


.sidebar-menu .sidebar-menu-item.active::after {
    height: 30px;
}

.sidebar-menu .sidebar-menu-item.active a::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sidebar-menu .sidebar-menu-item.active a .menu-icon {
    background-color: var(--primary-color-20);
    color: var(--primary-color) !important;
}

.sidebar-menu
    .sidebar-menu-item.active
    .sidebar-submenu
    .sidebar-menu-item
    a.active {
    color: var(--primary-color);
    font-weight: 700;
}

.sidebar-menu
    .sidebar-menu-item.active
    .sidebar-submenu
    .sidebar-menu-item
    a:hover {
    letter-spacing: 1px;
}

.sidebar-menu
    .sidebar-menu-item.active
    .sidebar-submenu
    .sidebar-menu-item
    a::before {
    display: none;
}

.sidebar-menu
    .sidebar-menu-item.active
    .sidebar-submenu
    .sidebar-menu-item
    a
    .menu-icon {
    width: auto;
    height: auto;
    display: block;
    background-color: transparent;
}

.sidebar-menu .sidebar-menu-item .sidebar-item-badge {
    margin-left: auto;
}

.sidebar-menu .sidebar-menu-item .sidebar-item-badge .badge {
    width: 20px;
    height: 20px;
    line-height: 20px !important;
    padding: 0 !important;
    background-color: #1cc2e7;
    font-size: 0.8em;
    border: none;
    margin-bottom: 0;
    border-radius: 50%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    display: inline-block;
}

.sidebar-doc-box {
    border-radius: 15px;
    padding: 15px;
    min-height: 190px;
    min-width: 218px;
}

.sidebar-doc-box .sidebar-doc-icon {
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--primary-color);
    color: #fff;
    border-radius: 10px;
    font-size: 20px;
    margin-bottom: 15px;
}

.sidebar-doc-box .sidebar-doc-content .title {
    margin-bottom: 2px;
}

.sidebar-doc-box .sidebar-doc-content .sidebar-doc-btn a {
    background: linear-gradient(
        126.97deg,
        rgba(6, 11, 40, 0.74) 28.26%,
        rgba(10, 14, 35, 0.71) 91.2%
    );
    padding: 14px 40px;
    font-size: 14px;
}

.main-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: calc(100vh - 65px);
    border-radius: 0 !important;
}

.navbar-wrapper {
    padding: 24px 0;
    margin-bottom: 24px;
    /*margin-left: 250px;
    */-webkit-transition: all 0.5s;
    transition: all 0.5s;
    border-bottom: 1px solid var(--primary-color-20);
}

.button__icon{
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-wrapper .navbar-wrapper__icon, .icon__default{
font-size: 24px;
    color: #6e6e6e;
}

.icon_svg__default{
    width: 24px;
    height: 24px;
    stroke: var(--primary-text);
}


.navbar-wrapper.active {
    margin-left: 85px;
}
@media only screen and (max-width: 1199px) {
    .navbar-wrapper.active {
        margin-left: 0;
    }
}
.navbar-wrapper.active .dashboard-title-part {
    padding: 0 10px 0 0;
}
.navbar-wrapper.active .dashboard-title-part .left .icon {
    display: block;
}
@media only screen and (max-width: 1199px) {
    .navbar-wrapper {
        margin-left: 0;
    }
}

.dashboard-title-part {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 20px 0 0;
    align-items: center;
}
@media only screen and (max-width: 1199px) {
    .dashboard-title-part {
        padding: 0 20px 0 10px;
    }
}
@media only screen and (max-width: 375px) {
    .dashboard-title-part {
        display: block;
    }
}
.dashboard-title-part .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.dashboard-title-part .left .icon {
    margin-right: 10px;
}
.dashboard-title-part .left .icon button,
.dashboard-title-part .left .icon input[type="button"],
.dashboard-title-part .left .icon input[type="reset"],
.dashboard-title-part .left .icon input[type="submit"] {
    font-size: 14px;
    color: #ffffff;
    background-color: transparent;
}
.dashboard-title-part .title {
    margin-bottom: 0;
}
.dashboard-title-part p {
    font-size: 12px;
    font-weight: 500;
}
.dashboard-title-part .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: -8px;
    gap: 10px;
}
@media only screen and (max-width: 375px) {
    .dashboard-title-part .right {
        padding-top: 20px;
    }
}

.dashboard-path {
    font-size: 15px;
    color: var(--light-text) !important
}
.dashboard-path .main-path {
    color: #ffffff;
    font-weight: 600;
}

.header-search-wrapper {
    width: 350px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(208, 203, 203, 0.2705882353);
    border-radius: 10px;
    margin: 8px;
}
@media only screen and (max-width: 767px) {
    .header-search-wrapper {
        width: 100%;
    }
}
.header-search-wrapper input {
    border: none;
    height: 40px;
    padding-left: 35px;
    padding-right: 20px;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
}
.header-search-wrapper input:focus {
    background-color: transparent;
    border: none;
}
.header-search-wrapper input::-webkit-input-placeholder {
    color: rgba(235, 235, 235, 0.3);
}
.header-search-wrapper input::-moz-placeholder {
    color: rgba(235, 235, 235, 0.3);
}
.header-search-wrapper input:-ms-input-placeholder {
    color: rgba(235, 235, 235, 0.3);
}
.header-search-wrapper input::-ms-input-placeholder {
    color: rgba(235, 235, 235, 0.3);
}
.header-search-wrapper input::placeholder {
    color: rgba(235, 235, 235, 0.3);
}
.header-search-wrapper span {
    position: absolute;
    font-size: 16px;
    line-height: 38px;
    color: rgba(235, 235, 235, 0.3);
    left: 10px;
    top: 1px;
}

.header-user-wrapper {
    margin: 8px;
}
.header-user-wrapper .header-user-thumb a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    overflow: hidden;
}
.header-user-wrapper .header-user-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.body-wrapper {
    padding-left: 285px;
    padding-right: 20px;
    padding-bottom: 20px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.body-wrapper.active {
    padding-left: 85px;
    padding-right: 10px;
}
@media only screen and (max-width: 1199px) {
    .body-wrapper {
        padding-left: 15px;
    }
}

.dashboard-header-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}
.dashboard-header-wrapper .title {
    margin-bottom: 0;
}
.dashboard-header-wrapper .dashboard-btn-wrapper .dashboard-btn a,
.dashboard-header-wrapper .dashboard-btn-wrapper .dashboard-btn button,
.dashboard-header-wrapper
    .dashboard-btn-wrapper
    .dashboard-btn
    input[type="button"],
.dashboard-header-wrapper
    .dashboard-btn-wrapper
    .dashboard-btn
    input[type="reset"],
.dashboard-header-wrapper
    .dashboard-btn-wrapper
    .dashboard-btn
    input[type="submit"] {
    padding: 8px 25px;
    font-size: 14px;
    border-radius: 8px;
}

.dashbord-item {
    background: #050251;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
    border-radius: 20px;
    padding: 20px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.dashbord-item .dashboard-content .sub-title {
    margin-bottom: 5px;
}
.dashbord-item .dashboard-content .title {
    margin-bottom: 0;
}
.dashbord-item .dashboard-icon {
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--primary-color);
    border-radius: 15px;
    font-size: 24px;
    overflow: hidden;
}
.dashbord-item .dashboard-icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.chart-wrapper {
    background: #001125;
    padding: 30px 10px;
    border-radius: 20px;
}
.chart-wrapper line {
    stroke: rgba(208, 203, 203, 0.2705882353);
}
.chart-wrapper .dashboard-header-wrapper {
    padding: 0 20px;
    margin-bottom: 0;
}

.apexcharts-legend-text {
    color: #ffffff !important;
}

.apexcharts-yaxis text {
    fill: #ffffff !important;
}

.apexcharts-grid line {
    stroke: rgba(208, 203, 203, 0.2705882353) !important;
}

.apexcharts-graphical line {
    stroke: rgba(208, 203, 203, 0.2705882353) !important;
}

.apexcharts-xaxis-texts-g text {
    fill: #ffffff !important;
}

.chart-area-footer {
    border-color: rgba(208, 203, 203, 0.2705882353);
}

.dashboard-list-wrapper .dashboard-list-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}
@media only screen and (max-width: 400px) {
    .dashboard-list-wrapper .dashboard-list-item {
        display: block;
    }
}
.dashboard-list-wrapper
    .dashboard-list-item.sent:hover
    .dashboard-list-user-wrapper
    .dashboard-list-user-icon,
.dashboard-list-wrapper
    .dashboard-list-item.sent.active
    .dashboard-list-user-wrapper
    .dashboard-list-user-icon {
    background-color: var(--primary-color);
}
.dashboard-list-wrapper
    .dashboard-list-item.receive:hover
    .dashboard-list-user-wrapper
    .dashboard-list-user-icon,
.dashboard-list-wrapper
    .dashboard-list-item.receive.active
    .dashboard-list-user-wrapper
    .dashboard-list-user-icon {
    background-color: #28c76f;
}

.dashboard-list-user-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.dashboard-list-user-wrapper .dashboard-list-user-icon {
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 50%;
    font-size: 30px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.dashboard-list-user-wrapper .dashboard-list-user-content {
    width: calc(100% - 60px);
    padding-left: 20px;
}
.dashboard-list-user-wrapper .dashboard-list-user-content .title {
    margin-bottom: 5px;
}

.dashboard-list-right {
    text-align: right;
}
@media only screen and (max-width: 400px) {
    .dashboard-list-right {
        text-align: center;
        padding-top: 15px;
    }
}
.dashboard-list-right .main-money {
    font-size: 16px;
}
.dashboard-list-right .exchange-money {
    margin-bottom: 0;
    font-weight: 500;
    letter-spacing: 1px;
}

.dashboard-list-item-wrapper {
    background-color: #050251;
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.dashboard-list-item-wrapper:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}
.dashboard-list-item-wrapper .dashboard-list-item {
    padding: 0;
    background-color: transparent;
    margin-bottom: 0;
}
.dashboard-list-item-wrapper .preview-list-wrapper {
    display: none;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.05);
}
.dashboard-list-item-wrapper .preview-list-wrapper .preview-list-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.dashboard-list-item-wrapper
    .preview-list-wrapper
    .preview-list-item
    .preview-list-user-wrapper
    .preview-list-user-icon {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.preview-list-wrapper {
    background: linear-gradient(
        127.09deg,
        rgba(29, 35, 74, 0.94) 19.41%,
        rgba(16, 22, 56, 0.49) 76.65%
    );
    border-radius: 15px;
    overflow: hidden;
}
.preview-list-wrapper .preview-list-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid rgba(148, 146, 146, 0.424);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px;
    font-size: 12px;
}
.preview-list-wrapper .preview-list-item .last {
    font-size: 20px;
    font-weight: 700;
}
@media only screen and (max-width: 575px) {
    .preview-list-wrapper .preview-list-item .last {
        font-size: 14px;
    }
}

.preview-list-user-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.preview-list-user-wrapper .preview-list-user-icon {
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 18px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.preview-list-user-wrapper .preview-list-user-content {
    padding-left: 20px;
}

.preview-list-right {
    text-align: right;
}
.deposit-form .note-area {
    font-size: 14px;
}
.note-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.support-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    border-radius: 10px;
}
@media only screen and (max-width: 991px) {
    .support-card {
        display: block;
    }
}

.card-header-user-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.card-header-user-area .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    vertical-align: bottom;
    border: 3px solid rgba(208, 203, 203, 0.2705882353);
}
.card-header-user-area .card-header-user-content {
    padding-left: 15px;
}
.card-header-user-area .card-header-user-content .title {
    margin-bottom: 0;
}
.card-header-user-area .card-header-user-content .sub-title {
    font-size: 12px;
    font-weight: 500;
}

.support-card-wrapper {
    width: calc(100% - 500px);
    background-color: #001125;
    overflow: hidden;
}
@media only screen and (max-width: 991px) {
    .support-card-wrapper {
        width: 100%;
    }
}
.support-card-wrapper .card-header {
    background-color: #050251;
    border-radius: 10px 10px 0 0;
}

.chat-container {
    position: relative;
    -ms-touch-action: auto;
    touch-action: auto;
    overflow-y: auto;
    max-height: 680px;
    min-height: 685px;
    padding: 30px 15px;
}
@media only screen and (max-width: 1800px) {
    .chat-container {
        max-height: 555px;
        min-height: 555px;
    }
}
@media only screen and (max-width: 1600px) {
    .chat-container {
        max-height: 450px;
        min-height: 455px;
    }
}
@media only screen and (max-width: 1440px) {
    .chat-container {
        max-height: 400px;
        min-height: 400px;
    }
}
@media only screen and (max-width: 768px) {
    .chat-container {
        max-height: 370px;
        min-height: 370px;
    }
}

.chat-container .media > * {
    margin: 0 10px;
}
.chat-container .media {
    padding: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 0;
    max-width: 80%;
}
@media only screen and (max-width: 575px) {
    .chat-container .media {
        max-width: 100%;
    }
}
.chat-container .media.media-chat-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    margin-left: auto;
}
.chat-container .media.media-chat-reverse .media-body p {
    background-color: var(--primary-color);
    color: #ffffff;
}
.chat-container .media.media-chat-reverse .media-body p::before {
    left: auto;
    right: -10px;
    background-color: var(--primary-color);
    -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
    clip-path: polygon(100% 50%, 0 0, 0 100%);
}
.chat-container .media .media-body p {
    position: relative;
    padding: 20px;
    background-color: #050251;
    font-size: 13px;
    border-radius: 10px;
    color: #fff;
    white-space: pre-wrap;
}
.chat-container .media .media-body p::before {
    position: absolute;
    content: "";
    top: 20px;
    left: -10px;
    -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
    background: #050251;
    width: 12px;
    height: 17px;
}
.chat-container .media .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    vertical-align: bottom;
    border: 3px solid rgba(208, 203, 203, 0.2705882353);
}

.chat-form .publisher {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 12px 20px;
    background-color: #050251;
    border-top: 1px solid rgba(208, 203, 203, 0.2705882353);
    border-radius: 0 0 10px 10px;
}
.chat-form .publisher .chatbox-message-part textarea {
    min-height: 20px !important;
    border-radius: 10px;
}

.chat-form .publisher .chatbox-message-part {
    width: calc(100% - 100px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.chat-form .publisher .publisher-input {
    font-weight: 500;
    font-size: 14px;
    border: none;
    outline: none !important;
    background-color: #001125;
    border-radius: 99px;
}
.chat-form .publisher .publisher-input::-webkit-input-placeholder {
    color: rgba(235, 235, 235, 0.3);
}
.chat-form .publisher .publisher-input::-moz-placeholder {
    color: rgba(235, 235, 235, 0.3);
}
.chat-form .publisher .publisher-input:-ms-input-placeholder {
    color: rgba(235, 235, 235, 0.3);
}
.chat-form .publisher .publisher-input::-ms-input-placeholder {
    color: rgba(235, 235, 235, 0.3);
}
.chat-form .publisher .publisher-input::placeholder {
    color: rgba(235, 235, 235, 0.3);
}
.chat-form .publisher .chatbox-send-part {
    width: 45px;
}
.chat-form .publisher .chatbox-send-part .chat-submit-btn {
    padding: 0;
    width: 45px;
    height: 45px;
    line-height: 45px;
    display: inline-block;
    text-align: center;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    font-size: 20px;
}
.chat-form .publisher .publisher-btn {
    width: 45px;
    height: 45px;
    background-color: #001125;
    color: #fff;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}
.chat-form .publisher .file-group input[type="file"] {
    position: absolute;
    opacity: 0;
    z-index: -1;
    width: 20px;
}
.chat-form .publisher .file-group label {
    margin-bottom: 0;
    cursor: pointer;
}

.support-profile-wrapper {
    background-color: #001125;
    width: 500px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
@media only screen and (max-width: 991px) {
    .support-profile-wrapper {
        position: fixed;
        right: -600px;
        top: 0;
        height: 100vh;
    }
}
@media only screen and (max-width: 575px) {
    .support-profile-wrapper {
        width: 100%;
    }
}
.support-profile-wrapper.active {
    right: 0;
}
.support-profile-wrapper .support-profile-header {
    padding: 20px;
    background-color: #050251;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.support-profile-wrapper .support-profile-header label {
    margin-bottom: 0;
}
.support-profile-wrapper .support-profile-body {
    padding: 20px;
}
.support-profile-wrapper .support-profile-list li {
    padding-top: 15px;
    font-weight: 700;
}
.support-profile-wrapper .support-profile-list li span,
.support-profile-wrapper .support-profile-list li p {
    float: right;
    font-weight: 500;
}
@media only screen and (max-width: 575px) {
    .support-profile-wrapper .support-profile-list li span,
    .support-profile-wrapper .support-profile-list li p {
        float: left;
    }
}
.support-profile-wrapper .support-profile-list li p {
    line-height: 2em;
    margin-top: 10px;
    margin-bottom: 15px;
}

.profile-body-wrapper {
    padding: 0 !important;
}

.profile-form-area {
    padding: 30px;
}

.profile-settings-wrapper .preview-thumb.profile-wallpaper {
    display: block;
    position: relative;
}
.profile-settings-wrapper .preview-thumb.profile-wallpaper .avatar-preview {
    width: 100%;
    height: 250px;
    border-radius: 0;
}
.profile-settings-wrapper
    .preview-thumb.profile-wallpaper
    .avatar-preview
    .profilePicPreview {
    width: 100%;
    height: 250px;
    border-radius: 20px 20px 0 0;
    border: none;
    background-color: var(--primary-color);
    position: relative;
}

.profile-thumb-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 0 1.5rem;
}
@media only screen and (max-width: 575px) {
    .profile-thumb-content {
        display: block;
        margin-top: 60px;
    }
}
.profile-thumb-content .profile-thumb {
    position: relative;
    display: inline-block;
    margin-right: 40px;
    margin-top: -100px;
}
.profile-thumb-content .profile-thumb .avatar-preview {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}
.profile-thumb-content .profile-thumb .avatar-preview .profilePicPreview {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(208, 203, 203, 0.2705882353);
    background-color: #050251;
    background-size: cover;
    background-repeat: no-repeat;
}
.profile-thumb-content .profile-thumb .avatar-edit {
    position: absolute;
    bottom: 0;
    right: 0;
}
.profile-thumb-content .profile-thumb .avatar-edit .profilePicUpload {
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
}
.profile-thumb-content .profile-thumb .avatar-edit label {
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: #ffffff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
}
.profile-thumb-content .profile-content {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
}
@media only screen and (max-width: 575px) {
    .profile-thumb-content .profile-content {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.profile-thumb-content .profile-content .username {
    font-size: 18px;
}
.profile-thumb-content .profile-content .user-info-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: -5px -10px;
}
.profile-thumb-content .profile-content .user-info-list li {
    margin: 5px 10px;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.profile-thumb-content .profile-content .user-info-list li i {
    font-size: 18px;
    margin-right: 5px;
    color: var(--primary-color);
}
.phone-code {
    border-radius: 15px 0px 0px 15px;
    -webkit-border-radius: 15px 0px 0px 15px;
    -moz-border-radius: 15px 0px 0px 15px;
    -ms-border-radius: 15px 0px 0px 15px;
    -o-border-radius: 15px 0px 0px 15px;
}
.pdf-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    position: fixed;
    overflow-y: scroll;
    left: 0;
    overflow: hidden;
    top: 0;
    z-index: 9;
    -webkit-transition: 0.7s ease;
    transition: 0.7s ease;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.pdf-area.active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.play-store-thumb {
    width: 193px;
    height: 193px;
    margin: 0 auto;
}
.play-store-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.header-notification-wrapper {
    position: relative;
}

.notification-wrapper {
    position: absolute;
    top: 47px;
    right: 0;
    width: 280px;
    background-color: #1c3259;
    border: 1px solid rgba(208, 203, 203, 0.2705882353);
    border-radius: 10px;
    z-index: 9;
    padding: 15px;
    text-align: left;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
@media only screen and (max-width: 991px) {
    .notification-wrapper {
        width: 250px;
    }
}
@media only screen and (max-width: 375px) {
    .notification-wrapper {
        left: 0;
    }
}
.notification-wrapper.active {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.notification-wrapper .notification-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 15px;
}
.notification-wrapper .notification-header .title {
    margin-bottom: 0;
}
.notification-wrapper .notification-header .sub-title {
    font-size: 12px;
}
.notification-wrapper .notification-list {
    margin-bottom: -15px;
}
.notification-wrapper .notification-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 12px;
    padding-bottom: 15px;
}
.notification-wrapper .notification-list li .thumb {
    width: 25px;
    height: 25px;
}
.notification-wrapper .notification-list li .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}
.notification-wrapper .notification-list li .content {
    width: calc(100% - 25px);
    padding-left: 10px;
}
.notification-wrapper .notification-list li .content .title-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 5px;
}
.notification-wrapper .notification-list li .content .title {
    margin-bottom: 0;
}
.notification-wrapper .notification-list li .content .time {
    color: var(--primary-color);
    font-weight: 600;
}
.notification-wrapper .notification-footer {
    font-size: 12px;
}

.exchange-area {
    background-color: #050251;
    padding: 30px 80px;
    border-radius: 15px;
    display: inline-block;
    text-align: center;
}
@media only screen and (max-width: 575px) {
    .exchange-area {
        padding: 30px 15px;
    }
}

.transfer-section .transfer-item {
    background: #050251;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
    border-radius: 20px;
    padding: 20px 30px;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    margin-top: 20px;
}
.transfer-section .transfer-item:hover {
    background: #090139;
    -webkit-box-shadow: 0 0 10px rgb(0, 0, 0);
    box-shadow: 0 0 10px rgb(0, 0, 0);
}
.transfer-section .transfer-item .transfer-name {
    padding-top: 15px;
}
.transfer-section .transfer-item .transfer-icon img {
    width: 100px;
}

.card-content .card-details {
    padding: 15px;
    font-size: 28px;
}

.modal-body .form-group input {
    position: relative;
}
.modal-body .form-group .currency {
    position: absolute;
    right: 13px;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 6px 20px;
    top: 38px;
    border: none;
    border-radius: 0px 8px 8px 0px;
    -webkit-border-radius: 0px 8px 8px 0px;
    -moz-border-radius: 0px 8px 8px 0px;
    -ms-border-radius: 0px 8px 8px 0px;
    -o-border-radius: 0px 8px 8px 0px;
}
@media only screen and (max-width: 991px) {
    .modal-body .form-group .currency {
        padding: 8px 20px;
        top: 35px;
    }
}
@media only screen and (max-width: 575px) {
    .modal-body .form-group .currency {
        padding: 9.5px 20px;
        top: 32px;
    }
}
.support-card-wrapper {
    width: calc(100% - 500px);
    background-color: #001125;
    overflow: hidden;
}
@media only screen and (max-width: 991px) {
    .support-card-wrapper {
        width: 100%;
    }
}
.support-card-wrapper .card-header {
    background-color: #050251;
    border-radius: 10px 0 0 0;
}

.review-area {
    background-color: #050251;
    padding: 40px;
    border-radius: 20px;
}

.payment-information .form-group {
    background-color: #050251;
    padding: 40px;
    border-radius: 20px;
}
.payment-information .form-group .logo {
    width: 200px;
}

.fileholder-underline {
    text-decoration: underline;
    cursor: pointer;
    position: relative !important;
}

.support-profile-wrapper {
    background-color: #02152c;
    width: 500px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
@media only screen and (max-width: 991px) {
    .support-profile-wrapper {
        position: fixed;
        right: -600px;
        top: 0;
        height: 100vh;
    }
}
@media only screen and (max-width: 575px) {
    .support-profile-wrapper {
        width: 100%;
    }
}
.support-profile-wrapper.active {
    right: 0;
}
.support-profile-wrapper .support-profile-header {
    padding: 17px;
    background-color: #050251;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.support-profile-wrapper .support-profile-header label {
    margin-bottom: 0;
}
.support-profile-wrapper .support-profile-body {
    padding: 20px;
}
.support-profile-wrapper .support-profile-list li {
    padding-top: 15px;
    font-weight: 700;
}
.support-profile-wrapper .support-profile-list li span,
.support-profile-wrapper .support-profile-list li p {
    float: right;
    font-weight: 500;
}
@media only screen and (max-width: 575px) {
    .support-profile-wrapper .support-profile-list li span,
    .support-profile-wrapper .support-profile-list li p {
        float: left;
    }
}
.support-profile-wrapper .support-profile-list li p {
    line-height: 2em;
    margin-top: 10px;
    margin-bottom: 15px;
}
.alert {
    font-size: 15px;
    letter-spacing: 0.3px;
    padding: 20px 24px;
}
[data-notify="icon"] {
    color: #fff;
    margin-right: 5px;
}
.alert.alert-success {
    background: #39da8a !important;
    color: #fff !important;
    -webkit-box-shadow: 0 3px 8px 0 rgba(57, 218, 138, 0.4);
    box-shadow: 0 3px 8px 0 rgba(57, 218, 138, 0.4);
    border: none;
}
.alert.alert-danger {
    background: #ea5455 !important;
    color: #fff !important;
    box-shadow: 0 3px 8px 0 rgba(234, 84, 85, 0.4);
    border: none;
}
.alert.alert-warning {
    background: #ff9f43 !important;
    color: #fff !important;
    box-shadow: 0 3px 8px 0 rgba(255, 159, 67, 0.4);
    border: none;
}
.alert strong {
    display: block;
}
.alert span {
    line-height: 1em;
}
.alert .close {
    position: absolute;
    background-color: transparent;
    color: #fff;
    opacity: 1;
    top: -4px;
    text-shadow: none;
    font-weight: 400;
    font-size: 24px;
}
.btn-ring {
    display: none;
    position: absolute;
    top: 6px;
    right: 3px;
}
.btn-ring::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    margin: 8px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    border-color: #ffffff transparent #ffffff transparent;
    -webkit-animation: ring 1.2s linear infinite;
    animation: ring 1.2s linear infinite;
}

button[disabled],
input[disabled][type="button"],
input[disabled][type="reset"],
input[disabled][type="submit"] {
    cursor: not-allowed;
    opacity: 0.65;
}
@-webkit-keyframes ring {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes ring {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.otp {
    width: 55px;
    height: 50px;
    text-align: center;
    padding: 0;
    border-radius: 5px;
}
.otp:focus {
    border: 2px solid var(--primary-color);
}
.otp.required {
    border: 3px solid #ea5455;
}
#time {
    color: #ea5455;
}
/*-------------------------------------------------
    [ ## switch ]
*/
.toggle-container .switch-toggles {
    position: relative;
    width: 175px;
    height: 35px;
    border-radius: 15px;
    background-color: #ffffff;
}
@media only screen and (max-width: 372px) {
    .toggle-container .switch-toggles {
        width: 135px;
    }
}
.toggle-container .switch-toggles::after {
    position: absolute;
    content: "";
    width: 50%;
    height: 35px;
    background: var(--primary-color);
    right: -1px;
    top: 0;
    border-radius: 0 15px 15px 0;
    -webkit-transition: all 0.7s cubic-bezier(0.545, 0, 0.05, 1);
    transition: all 0.7s cubic-bezier(0.545, 0, 0.05, 1);
}
.toggle-container .switch-toggles .switch {
    position: relative;
    width: 50%;
    line-height: 35px;
    float: left;
    text-align: center;
    z-index: 2;
    cursor: pointer;
    -webkit-transition: color 0.7s cubic-bezier(0.545, 0, 0.05, 1);
    transition: color 0.7s cubic-bezier(0.545, 0, 0.05, 1);
    font-weight: 500;
    border-radius: 15px;
    color: #52526c;
    margin-bottom: 0;
}
.toggle-container .switch-toggles .switch:nth-child(odd) {
    color: #ffffff;
}
.toggle-container .switch-toggles.active::after {
    background: var(--primary-color);
    -webkit-box-shadow: 0 5px 5px 0px rgba(90, 82, 120, 0.75);
    box-shadow: 0 5px 5px 0px rgba(90, 82, 120, 0.75);
    right: 50%;
    border-radius: 15px 0 0 15px;
}
.toggle-container .switch-toggles.active .switch {
    color: #52526c;
}
.toggle-container .switch-toggles.active .switch:nth-child(even) {
    color: #ffffff;
}
.cookie-main-wrapper {
    background-color: rgb(31, 41, 55);
    padding: 20px 30px;
    border-radius: 0.5rem 0.5rem 0 0;
    position: fixed;
    bottom: -300px;
    left: 0;
    width: 100%;
    z-index: 999;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.cookie-main-wrapper .cookie-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 70%;
}
@media only screen and (max-width: 767px) {
    .cookie-main-wrapper .cookie-content {
        width: unset;
    }
}
.cookie-main-wrapper .cookie-content svg {
    width: 40px;
    height: auto;
    fill: rgb(125, 211, 252);
    margin-right: 15px;
}
.cookie-main-wrapper .cookie-content p {
    width: calc(100% - 40px);
    color: rgb(255, 255, 255);
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 14px;
}
.cookie-main-wrapper .cookie-content p a {
    text-underline-offset: 2px;
    text-decoration-style: dotted;
    text-decoration-line: underline;
}
.cookie-main-wrapper .cookie-btn-area {
    padding-top: 15px;
}
.cookie-main-wrapper .cookie-btn-area button,
.cookie-main-wrapper .cookie-btn-area input[type="button"],
.cookie-main-wrapper .cookie-btn-area input[type="reset"],
.cookie-main-wrapper .cookie-btn-area input[type="submit"] {
    color: rgb(255, 255, 255);
    padding: 0.5rem 0.75rem;
    background-color: rgb(55, 65, 81);
    border-radius: 0.5rem;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.cookie-main-wrapper .cookie-btn-area button:hover,
.cookie-main-wrapper .cookie-btn-area input[type="button"]:hover,
.cookie-main-wrapper .cookie-btn-area input[type="reset"]:hover,
.cookie-main-wrapper .cookie-btn-area input[type="submit"]:hover {
    background-color: rgba(75, 85, 99, 0.8);
}

.stripe-modal {
    padding: 40px 40px;
}
.stripe-modal .modal-checkbox {
    border: 1px solid var(--primary-color);
    padding: 15px;
    border-radius: 10px;
    transition: all 0.6s;
}
.stripe-modal .modal-checkbox:hover {
    border: 1px solid var(--primary-color);
}
.stripe-modal .form-check .form-check-input {
    padding: 0px;
}
/* Language DIR */
[dir="rtl"] {
    direction: rtl;
}
[dir="rtl"] i {
    display: contents;
}
[dir="rtl"] .footer-top-area .footer-social li + li {
    margin-right: 20px;
    margin-left: 0px;
}
[dir="rtl"] .navbar-expand-lg .navbar-toggler {
    margin-right: auto !important;
    margin-left: 0 !important;
}
[dir="rtl"] .header-bottom-area .navbar-collapse .main-menu li {
    padding-left: 40px;
    padding-right: 0px;
}
[dir="rtl"] .header-bottom-area .navbar-collapse .main-menu {
    margin-right: auto !important;
}
[dir="rtl"] .shoping-banner .search-input .watch-search {
    padding-right: 70px;
}
[dir="rtl"] .contact-widget .contact-item-list li .contact-item-content {
    padding-right: 20px;
    padding-left: 0px;
}
[dir="rtl"] .account-area .account-close {
    left: 10px;
    right: auto;
}
[dir="rtl"] .show_hide_password .show-pass {
    left: 20px;
    right: auto;
}
[dir="rtl"] .account-form .form-control {
    padding-left: 45px;
}
[dir="rtl"] .custom-check-group label::before {
    margin-left: 10px;
    margin-right: 0px;
}
[dir="rtl"] .form-group .form-control {
    padding: 2px 10px !important;
}
[dir="rtl"] .about-section .about-item .item-icon {
    margin-left: 10px;
    margin-right: 0px;
}
[dir="rtl"] .call-to-action-section .baner-area {
    text-align: end;
}
[dir="rtl"] .footer-social li + li {
    margin-right: 20px;
    margin-left: 0px;
}
[dir="rtl"] .contact-section .contact-widget-box .contact-containt {
    padding-right: 15px;
    padding-left: 0px;
}
[dir="rtl"] .single-popular-item .popular-item-content {
    padding-right: 20px;
    padding-left: 0px;
}
[dir="rtl"] .blog-tag-wrapper .blog-footer-tag li + li {
    margin-right: 10px;
    margin-left: 0px;
}
[dir="rtl"] .blog-tag-wrapper span {
    margin-left: 10px;
    margin-right: 0px;
}
[dir="rtl"] .blog-list li {
    position: relative;
    font-weight: 400;
    padding-right: 35px;
    padding-bottom: 15px;
}
[dir="rtl"] .blog-list li::before {
    right: 0px;
    left: auto;
}
[dir="rtl"] .show-pass {
    left: 20px;
    right: auto;
}
[dir="rtl"] .sidebar {
    right: 0;
}

input.placeholder {
    color: #adadad !important;
}
.form-control::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #adadad !important;
    opacity: 1; /* Firefox */
}

.form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #adadad !important;
}

.form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #adadad !important;
}

@media only screen and (max-width: 1199px) {
    [dir="rtl"] .sidebar {
        right: -300px;
    }
}
@media only screen and (max-width: 1199px) {
    [dir="rtl"] .sidebar.active {
        right: 0px;
    }
}
[dir="rtl"] .body-wrapper {
    padding-right: 285px;
    padding-left: 20px;
}
@media only screen and (max-width: 1199px) {
    [dir="rtl"] .body-wrapper {
        padding-right: 15px;
    }
}
@media only screen and (max-width: 520px) {
    [dir="rtl"] .body-wrapper {
        padding-left: 8px;
    }
}
[dir="rtl"] .body-wrapper.active {
    padding-right: 85px;
    padding-left: 10px;
}
[dir="rtl"] .navbar-wrapper {
    margin-right: 0px;
    margin-left: 0px;
}
@media only screen and (max-width: 1199px) {
    [dir="rtl"] .navbar-wrapper {
        margin-right: 0;
    }
}
[dir="rtl"] .navbar-wrapper.active {
    margin-right: 85px;
}
@media only screen and (max-width: 1199px) {
    [dir="rtl"] .navbar-wrapper.active {
        margin-right: 65px;
    }
}
[dir="rtl"] .notification-wrapper {
    left: 0;
    right: auto;
}
[dir="rtl"] .notification-wrapper .notification-list li .content {
    padding-right: 10px;
}
[dir="rtl"] .dashboard-list-user-wrapper .dashboard-list-user-content {
    padding-right: 20px;
}
[dir="rtl"] .sidebar-menu .sidebar-menu-item a .menu-icon {
    margin-left: 10px;
    margin-right: 0px;
}
[dir="rtl"] .preview-list-user-wrapper .preview-list-user-content {
    padding-right: 20px;
    padding-left: 0px;
}
[dir="rtl"] .dashboard-title-part .left .icon {
    margin-left: 10px;
    margin-right: 0px;
}
[dir="rtl"] .deposit-form .form-group .currency {
    left: 0px;
    right: auto;
    border-radius: 10px 0px 0px 10px;
}
[dir="rtl"] .deposit-form .form-group input {
    padding-left: 85px;
    padding-right: 15px;
}
[dir="rtl"] .flip {
    direction: ltr;
}
[dir="rtl"] .card-wrapper .card-content .card-details .details-icon {
    border-radius: 50px;
    width: 40px;
    height: 40px;
    background-color: #00a3ff;
    color: #fff;
    transition: all 0.6s;
    margin: auto;
}
[dir="rtl"] .card-wrapper .card-content .card-details .details-icon i {
    display: block;
}
[dir="rtl"] .modal-body .form-group .currency {
    left: 12px;
    right: auto;
    border-radius: 15px 0px 0px 15px;
}
[dir="rtl"] .modal-body .form-group input {
    padding-left: 86px;
    padding-right: 20px;
}
/* [dir='rtl'] .modal-header .btn-close {
    margin: -0.5rem auto -0.5rem -0.5rem !important;
} */
[dir="rtl"] button,
[dir="rtl"] input,
[dir="rtl"] optgroup,
[dir="rtl"] select,
[dir="rtl"] textarea {
    line-height: normal;
}
[dir="rtl"] .card-body .form-group .field-icon {
    left: 30px;
    right: auto;
}
[dir="rtl"] .custom-check-group input:checked + label::after {
    right: 7px;
    left: auto;
}
[dir="rtl"] .support-card-wrapper .card-header {
    border-radius: 0px;
}
[dir="rtl"] .card-header-user-area .card-header-user-content {
    padding-right: 15px;
    padding-left: 0px;
}
[dir="rtl"] .preloader {
    direction: ltr;
}
[dir="rtl"] .category-widget-box .category-list li a {
    text-align: left;
}

.gift-card-form .form--control:focus {
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.gift-card-form .input-group-text {
    background-color: #0f101e;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gift-card-item .gift-card-thumb {
    cursor: pointer;
    height: 130px;
    border-radius: 6px;
    overflow: hidden;
}
.gift-card-item .gift-card-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 6px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.gift-card-item .gift-card-content {
    padding-top: 10px;
}
.gift-card-item .gift-card-content .title a:hover {
    text-decoration: underline;
}
.gift-card-item:hover .gift-card-thumb img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.gift-card-item.details {
    background-color: #0f101e;
    padding: 40px;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
@media only screen and (max-width: 767px) {
    .gift-card-item.details {
        display: block;
        padding: 20px;
    }
}
.gift-card-item.details .gift-card-thumb {
    width: 400px;
    height: 400px;
    cursor: unset;
}
@media only screen and (max-width: 767px) {
    .gift-card-item.details .gift-card-thumb {
        width: 100%;
    }
}
@media only screen and (max-width: 575px) {
    .gift-card-item.details .gift-card-thumb {
        height: 300px;
    }
}
.gift-card-item.details .gift-card-content {
    width: 52%;
    padding-left: 60px;
}
@media only screen and (max-width: 767px) {
    .gift-card-item.details .gift-card-content {
        width: 100%;
        padding-left: 0;
        padding-top: 30px;
    }
}
.gift-card-item.details .gift-card-content .sub-title {
    padding-top: 10px;
    font-size: 12px;
    font-weight: 600;
}
.gift-card-item.details .gift-card-details-form {
    margin-top: 20px;
}
.gift-card-item.details .gift-card-details-form button,
.gift-card-item.details .gift-card-details-form input[type="button"],
.gift-card-item.details .gift-card-details-form input[type="reset"],
.gift-card-item.details .gift-card-details-form input[type="submit"] {
    margin-top: 10px;
    padding: 10px 60px;
    width: 100%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.gift-card-item.details:hover .gift-card-thumb img {
    -webkit-transform: none;
    transform: none;
}

.gift-card-list-wrapper {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 40px;
}
.gift-card-list-wrapper .gift-card-list li {
    padding-bottom: 8px;
    font-size: 14px;
}

.iti__dropdown-content {
    background-color: #0f101e;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.iti__search-input {
    background-color: #0f101e;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dash-payment-item {
    /* padding: 20px 30px; */
    background: #0f101e;
    border-radius: 20px;
    margin-bottom: 25px;
}
.dash-payment-item .dash-payment-title-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
}
.dash-payment-item .dash-payment-title-area .dash-payment-badge {
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    background: var(--primary-color);
    border-radius: 50%;
    color: #fff;
}
.dash-payment-item .dash-payment-title-area .title {
    margin: 0;
    padding-left: 20px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}
.dash-payment-item:not(:last-child) {
    margin-bottom: 25px;
}
.dash-payment-item .dash-payment-body {
    padding-top: 25px;
    display: none;
}
.dash-payment-item.active {
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.dash-payment-item.active .dash-payment-body {
    display: block;
}
.dash-payment-item button.custom-button,
.dash-payment-item input.custom-button[type="button"],
.dash-payment-item input.custom-button[type="reset"],
.dash-payment-item input.custom-button[type="submit"] {
    min-width: 160px;
    text-align: center;
    border-radius: 5px;
}
@media screen and (max-width: 400px) {
    .dash-payment-item {
        padding: 15px;
    }
}

.virtual-card-btn-area a {
    padding: 5px 15px;
}

.gift-card-form .select2-container--default .select2-selection--single {
    border-radius: 5px 0 0 5px !important;
}
.gift-card-details-form .nice-select .list {
    height: auto !important;
}
.qr-code-image {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 5px !important;
}
.qr-code-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.payment-received-alert .txn-hash span {
    word-break: break-all;
}

.billing-heading {
    border-bottom: 1px solid rgba(148, 146, 146, 0.424);
    margin-bottom: 20px;
    padding-bottom: 10px;
}
.billing-list li {
    border-bottom: 1px solid #ffffff30;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.billing-list li span {
    font-size: 15px;
    color: #ffffff80;
    margin-bottom: 5px;
}
.billing-list li h6 {
    margin-bottom: 0;
}
.billing-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
/* bread-crumb-configs */
.breadcrumb-item {
    color: #424242;
    font-weight: 500;
    font-size: 0.875rem;
}

.breadcrumb-item.active,
.primary_color {
    color: #243B81;
}

.breadcrumb-item + .breadcrumb-item::before {
    float: right;
    content: ">";
    margin-left: 0.25rem;
}
.breadcrumb-item > a {
    all: unset;
    cursor: pointer;
}

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

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
    direction: unset !important;
}

/* modal start */

.modal-content {
    border-radius: 0.625rem;
}
.modal-header {
    display: flex;
    align-items: baseline;
    background-color: #e6e6e6;
    padding: 0.5rem;
    border-top-left-radius: 0.625rem;
    border-top-right-radius: 0.625rem;
    border-bottom: none;
}
.modal-title {
    font-size: 14px;
    font-weight: 700;
    color: #555555;
}
.btn-close:focus,
.btn-close:active {
    box-shadow: unset;
}

.modal-body,
.modal-footer {
    background-color: #f7f7f7;
}
.modal-footer {
    padding: 0 1rem 1rem;
    border: none;
}

.reset_password_modal__eye_icon {
    background-color: unset;
    position: absolute;
    left: 0;
    top: 2.75rem;
}

[dir="ltr"] .reset_password_modal__eye_icon {
    right: -90%;
}
.delete_account_modal__body > h6 {
    color: black;
    font-size: 15px;
    font-weight: 700;
}
.delete_account_modal__body > p {
    font-size: 14px;
    font-weight: 500;
}
.delete_account_modal__footer__actions {
    border-radius: 0.375rem;
    justify-content: center;
}
.confirm {
    background-color: var(--primary-color) !important  ;
}
.danger {
    border: 1px solid #ffc2c2;
    background-color: #feebeb !important  ;
}
.delete_account_modal__footer__actions:focus,
.delete_account_modal__footer__actions:active {
    box-shadow: unset;
}

/* modal end */

/* base button */
.primary__btn__base {
    border-radius: 8px !important;
    background: var(--primary-color) !important;
    color: white !important;
    padding: 10px 20px;
}
.secondary__btn__base {
    border-radius: 8px !important;
    background: #ffff;
    color: var(--primary-color) !important;
    padding: 10px 20px;
    border: solid 1px #e2e1ff !important;
    font-weight: 700 !important;
}

/* notification dropdown menu */
ul.dropdown-menu {
    width: 589px;
}

ul.dropdown-menu li + span {
    display: block;
    border-bottom: solid 1px #eef0f3;
    width: 95%;
    margin: 0 auto;
}
#notif__status {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
#notif__status.pending {
    background: #eaa829;
}
#notif__status.active {
    background: #28c76f;
}

@media (width <= 800px) {
    ul.dropdown-menu {
        width: 389px;
    }
}

/* ================ custom code style ===============*/
.page-wrapper {
    background-color: #ffffff;
}

.sidebar {
    /* margin: 16px 0; */
    background-color: var(--primary-color-5) !important;
    border-radius: 0px 16px 16px 0px;
    left: 0 !important;
    height: calc(100vh) !important;
    transition: all 0.7s;
}

.sidebar.open {
background-color: var(--sidebar--color) !important;
}

[dir="rtl"] .sidebar {
    left: unset !important;
    right: 0 !important;
    border-radius: 16px 0 0 16px;
}

.sidebar-logo {
    margin-bottom: 0 !important;
    /* padding-bottom: 0 !important; */
        border-bottom: 1px solid var(--primary-color-20);
}


.sidebar-logo::before {
    display: none;
}

.sidebar .sidebar-menu-item a {
    flex-wrap: nowrap;
    text-wrap: nowrap;
}

.sidebar .sidebar-menu-item a span {
    color: var(--primary-text);
}
.sidebar .sidebar-menu-item.active a span {
    color: var(--primary-color) !important;
    font-weight: 700;
}
.sidebar-menu-item .icon-default {
    display: inline;
}
.sidebar-menu-item.active .icon-default {
    display: none;
}
.sidebar-menu-item .icon-active {
    display: none;
}
.sidebar-menu-item.active .icon-active {
    display: inline;
}

.sidebar .sidebar-menu {
    padding: 0 !important;
}

.sidebar-menu .sidebar-menu-item.active {
    color: var(--primary-color) !important;
}

.sidebar .sidebar-menu-item img {
    margin-right: 8px;
}
[dir="rtl"] .sidebar .sidebar-menu-item img {
    margin-left: 8px;
    margin-right: 0;
}

.main-wrapper {
    background: var(--primary-color-5);
    width: calc(100% - 270px);
    margin-left: auto;
    border-radius: 16px 0 0 16px;
    min-height: 100vh;
}

[dir="rtl"] .main-wrapper {
    margin-left: unset;
    margin-right: auto;
    border-radius: 0 16px 16px 0;
}

.dashboard-title-part .left .icon,
.dashboard-title-part .left .dashboard-path a,
.dashboard-title-part .left .dashboard-path a .la-angle-right:before {
    color: #424242;
}

.dash .card {
    height: 100%;
}

.custom-dash .transaction__card {
    margin: 0 !important;
}

.logout-box {
    border-top: 1px solid #243B8121;
    position: absolute;
    bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    padding-top: 15px;
}
.logout-box .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
}
.logout-box .info img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
.logout-box .logout-btn img {
    transform: rotate(180deg);
}
[dir="rtl"] .logout-box .logout-btn img {
    transform: rotate(0);
}

.logout-box .title {
    color: #101828;
    font-size: 14px;
    font-weight: 700;
}
.logout-box .email {
    color: #475467;
    font-size: 14px;
    font-weight: 400;
}

.form-control::placeholder {
    color: #667085;
}

@media (max-width: 767px) {
    .sidebar {
        width: 0px;
        transform: translateX(-50px);
        visibility: hidden;
        opacity: 0;
        box-shadow: 1px 1px 1px #0000001f;
    }
    .sidebar.open {
        width: 250px;
        transform: translateX(0px);
        visibility: visible;
        opacity: 1;
    }
    .sidebar-logo a {
        transition: all 0.4s ease-in-out;
        /* display: none; */
    }
    .sidebar:hover .sidebar-logo a {
        /* display: block; */
        opacity: 1;
    }

    .sidebar:hover .sidebar-menu .menu-title {
        /* display: inline; */
        opacity: 1;
    }
    .main-wrapper {
        width: calc(100%);
        border-radius: 0 !important;
    }

    /* .sidebar:hover ~   .main-wrapper {
    width: calc(100% - 270px);
  } */
    .sidebar-menu-wrapper {
        transition: all 0.4s ease-in-out;
    }
    .sidebar:hover .sidebar-menu-wrapper {
        transform: translateY(0);
    }
    .logout-box .user-name {
        display: none;
    }
    .sidebar:hover .logout-box .user-name {
        display: block;
    }
    .logout-box .logout-btn {
        display: none;
    }
    .sidebar:hover .logout-box .logout-btn {
        display: inline;
    }
}

.dashboard-title-part .right {
    align-items: center;
}

.header-user-wrapper {
    margin: 0 !important;
}

.header-user-wrapper .header-user-thumb a {
    width: 42px;
    height: 42px;
}

/* ============logout popup =============== */
/* ============logout popup start =============== */
.mfp-content {
    max-width: 500px;
}
.mfp-content form button {
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    width: 100%;
    font-weight: 700;
}

.mfp-content form .modal-close {
    color: var(--primary-color) !important;
}

.mfp-content form .alert-submit-btn {
    background-color: var(--primary-color);
    color: #fff !important;
}

.white-popup.mfp-with-anim.medium {
    padding: 0 !important;
    border-radius: 10px;
    background-color: #f7f7f7;
}

.logout-header {
    background-color: #e6e6e6;
}

.white-popup.mfp-with-anim.medium .head {
    font-size: 14px;
    font-weight: 500;
    color: #344054 !important;
}

.card.modal-alert.border-0 {
    border-radius: 10px;
}
.modal-header.logout-header {
    border-radius: 10px 10px 0 0;
}

.mfp-content .card-body {
    border-radius: 10px;
}

.modal-header .btn-close {
    padding: 0.5rem 0.5rem;
    /* margin: -0.5rem -0.5rem -0.5rem auto !important; */
}
[lang="ar"] .modal-header .btn-close,
[dir="rtl"] .modal-header .btn-close {
    margin: 0 !important;
}

.modal-content,
.modal-content form {
    border-radius: 10px !important;
    overflow: hidden;
}

.modal-header, .logout__modal .modal-header, .logout__modal .modal__footer, .logout__modal .modal-body {
    padding: 10px !important;
}


.empty-transaction-card {
       /*padding-top: 50px;
       */display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: center;
       position: absolute;
       transform: translate(-50%, -50%) !important;
       top: 50%;
       left: 50%;
       -webkit-transform: translate(-50%, -50%) !important;
       -moz-transform: translate(-50%, -50%) !important;
       -ms-transform: translate(-50%, -50%) !important;
       -o-transform: translate(-50%, -50%) !important;
}
.balance__text {
    font-size: 12px;
    font-weight: bold;
}
#load-more-button {
    border: 1px solid var(--primary-color);
    border-radius: 46px;
    width: 178px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    padding: 10px 0;
}
#load-more-button img {
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    padding: 3px;
}

#load-more-button:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

#load-more-button:hover img {
    display: none;
}

[dir="rtl"] .limit__ltr {
    display: none !important;
}

[dir="ltr"] .limit__rtl {
    display: none !important;
}
.limit__rtl .charge-info span {
    position: static !important;
    font-weight: 500 !important;
}

html[dir="rtl"] fieldset,
html[dir="rtl"] fieldset * {
    transform: rotateY(180deg) !important;
}

.form-select {
    background-image: none !important;
}

[dir='ltr'] .deposit-withdraw .form-select#option_icon {
    padding-left: 1.95rem;
}
fieldset .dropdown__icon {
    width: 50px;
    position: absolute;
    right: -9px;
    top: -3px;
}
[dir='rtl'] fieldset .dropdown__icon {
    left: 9px !important;
}

fieldset{
    position:relative;
}
 fieldset .selected--option--icon{
    position: absolute;
    top: 5px;
    width: 25px;
}

[dir='ltr'] fieldset .selected--option--icon{
    left:5px;
}
[dir='rtl'] fieldset .selected--option--icon{
    left: 2%;
}

fieldset #networks-list{
    padding-right: 7.5px !important;
}

.verification-otp-content .form-group {
    direction: ltr;
}
.verification-otp-content p {
    color: #344054 !important;
}
.virtual_card_actions {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    border: 1px solid #d0ceff;
    border-radius: 0.625rem;
    box-shadow: 0 4px 7.3px 0 #243B8114;
    align-items: center;
}

@media (width <= 575px) {
    .card__scale {
        scale: 0.6;
    }
}

.new-password .new-password-area {
    background-color: #f7f7f7;
    border-radius: 10px;
}
.new-password .new-password-area form {
    padding: 16px;
}

.new-password .new-password-area label {
    color: var(--text-color)
}

.new-password .new-password-area input {
    border: 1px solid #d0d5dd !important;
    background-color: #fff !important;
    color: #344054 !important;
}

.btn--base:focus,
.btn--base:hover {
    color: var(--primary-color);
    background: white;
    border: 1px solid var(--primary-color);
}

.custom-form-logout {
    text-align: start;
    opacity: 1;
}

.btn-primary{
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}
.btn-primary:hover{
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

a:hover {
    color: var(--title-color) !important;
}

[type=email] {
    direction: inherit !important;
}

[dir='rtl'] .hide_rtl,[dir='ltr'] .hide_ltr{
    display: none;
}

@media (max-width: 475px){
       .start .box{
        padding: 40px !important 
    }
    section.about,
    section .about,
    section.services,
    section.faq,
    .faq .accordion .accordion-item .accordion-header button.collapsed,
    .faq .accordion .accordion-item .accordion-header button,
    .solutions,
     .top-services {
        padding-right: 10px !important;
        padding-left: 10px !important
    }
    section.about h1,
    .features h1,
    .how-work h3,
    .services h3,
    .statistics h3, 
    .faq h3,
    .solutions h3,
    .about h3,
    .start h1,
    .top-services h3{
        font-size: 30px !important
    }
    section.about p,
    section.features p, 
    .services p,
    .statistics p,
    .about p,
    .solutions p,
    .top-services p{
        font-size: 16px !important
    }
    .column__wrapper,
    .boxes__wrapper, 
    .services .service-card,
    .content.carousel__content{
        width: 100% !important;
        max-width: 100% !important
    }
    .statistics .statistics_items div:nth-of-type(2){
        border-right: none !important;
        border-left: none !important
    }
}


.shadow_sm{
    box-shadow: 0px 4px 7.3px 0px #243B8114;
}

.no_data_found{
        position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dark-version .sidebar-menu .sidebar-menu-item.active {
    background-color: var(--dark-primary-color-5) !important;
    color: var(--dark-primary-text-active) !important;
}

.dark-version .icon_svg__default{
    stroke: var(--dark-primary-text);
}

.dark-version .sidebar-logo {
    border-bottom: 1px solid var(--dark-primary-color-5);
}


.dark-version .page-wrapper {
    background-color: var(--dark-primary-color-25) ;
}

.dark-version .main-wrapper {
    background-color: var(--dark-primary-color) ;
}

.dark-version .navbar-wrapper  .navbar-wrapper__icon{ 
    color: var(--dark-primary-text) ;
}
.dark-version .navbar-wrapper  { 
    border-color: var(--dark-primary-color-5) ;
}
.dark-version h1,
.dark-version h2,
.dark-version h3,
.dark-version h4,
.dark-version h5,
.dark-version h6 {
    color: var(--dark-primary-text) ;
}
.dark-version p,
.dark-version li,
.dark-version span {
    color: var(--dark-primary-text) !important;
}
 p,
li,
 span, .frontend__body p, .frontend__body li, .frontend__body span, h4 {
    color: var(--title-color);
}

.frontend__body h1, .frontend__body h2, .frontend__body h3, .frontend__body h4, .frontend__body h5, .frontend__body h6 {
    clear: both;
    line-height: 1.3em;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    font-family: "Tajawal", sans-serif;
    font-weight: 600;
}

.outline__btn__primary{
    color: var(--primary-color);
border-radius: 8px;
border: 1px solid var(--primary-color);
display: flex;
align-items: center;
justify-content: end;
width: fit-content;
}
.dark-version .outline__btn__primary{
    color: var(--dark-primary-text);
}
.outline__btn__primary:hover{
    color: white !important;
    background-color: var(--primary-color);
}


.dark-version .dashboard-title-part .left .icon,.dark-version .dashboard-title-part .left .dashboard-path a, .dark-version .dashboard-title-part .left .dashboard-path a .la-angle-right:before {
    color: var(--dark-primary-text) !important;
}

.dark-version .card {
    background-color: var(--dark-primary-color-5) !important;
}
.dark-version button,
.dark-version input[type="button"],
.dark-version input[type="reset"],
.dark-version input[type="submit"] {
    color: #9097a7;
}

.dark-version .header-link {
    color: #9097a7;
}
.dark-version .header-top .header-version-bar {
    background-color: #282e38;
}
.dark-version .header-top .header-search-bar .header-search-wrapper {
    background-color: #313844;
}
.dark-version .header-top .header-notification-bar .notification-wrapper {
    background-color: #313844;
}
.dark-version .header-top .header-notification-bar .notification-wrapper span {
    color: #9097a7;
}
.dark-version .header-top .header-notification-bar .notification-footer a {
    color: var(--dark-primary-text-active);
}
.dark-version .header-top .header-support-bar .header-support-wrapper {
    background-color: #313844;
}
.dark-version .header-top .header-sales-bar .header-sales-wrapper {
    background-color: #313844;
}
.dark-version .header-top .header-project-bar .header-project-wrapper {
    background-color: #313844;
}
.dark-version .header-bottom .header-user-bar .header-user-wrapper {
    background-color: #313844;
}
.dark-version .dashboard-path i {
    color: #9097a7;
}
.dark-version .bling {
    background: #9097a7 !important;
}
.dark-version .bling::before {
    background: #9097a7 !important;
}
.dark-version .bling::after {
    background: #9097a7 !important;
}
.dark-version .settings-sidebar-area {
    background-color: #313844;
}
.dark-version .settings-sidebar-area .settings-sidebar-header {
    border-color: #3a4250;
}
.dark-version .custom-inner-card {
    background-color: #313844;
    border-color: #3a4250;
}
.dark-version .form--control {
    color: #9097a7;
}
.dark-version .picker {
    border-color: #3a4250;
}
.dark-version .picker input[type="color"]::-webkit-color-swatch {
    border-color: #3a4250;
}
.dark-version .picker input {
    background-color: #313844;
    color: #9097a7;
}
.dark-version .modal-content {
    background-color: #313844;
}
.dark-version .modal-content .modal-header {
    border-color: #3a4250;
}

.dark-version .modal-content .modal-footer {
    border-color: #3a4250;
}
.dark-version .nice-select .list {
    background-color: #313844;
}
.dark-version .nice-select .option.disabled {
    background-color: #282e38;
}
.dark-version .nice-select .option.selected.focus {
    background-color: #282e38;
}
.dark-version .support-card-wrapper {
    background-color: #313844;
}
.dark-version .select2-selection--single {
    border-color: #3a4250 !important;
}
.dark-version .chat-form .publisher {
    background-color: #313844;
    border-color: #3a4250;
}
.dark-version .chat-form .publisher .publisher-btn {
    background-color: #282e38;
    color: #9097a7;
}
.dark-version .chat-form .publisher .publisher-btn label {
    color: #9097a7;
}
.dark-version .chat-form .publisher .publisher-input {
    background-color: #282e38;
    color: #9097a7;
}
.dark-version
    .chat-form
    .publisher
    .publisher-input::-webkit-input-placeholder {
    color: #9097a7;
}
.dark-version .chat-form .publisher .publisher-input::-moz-placeholder {
    color: #9097a7;
}
.dark-version .chat-form .publisher .publisher-input:-ms-input-placeholder {
    color: #9097a7;
}
.dark-version .chat-form .publisher .publisher-input::-ms-input-placeholder {
    color: #9097a7;
}
.dark-version .chat-form .publisher .publisher-input::placeholder {
    color: #9097a7;
}
.dark-version .support-profile-wrapper {
    border-color: #3a4250;
}
.dark-version .support-profile-wrapper .support-profile-header {
    border-color: #3a4250;
}
.dark-version .card-header-user-area .avatar {
    border-color: #3a4250;
}
.dark-version .chat-container .media .media-body p {
    background-color: #282e38;
    color: #9097a7;
}
.dark-version .chat-container .media .media-body p::before {
    background: #282e38;
}
.dark-version .chat-container .media .avatar {
    border-color: #3a4250;
}
.dark-version
    .custom-card
    .card-body
    .card-form
    .toggle-container
    .switch-toggles {
    background-color: #282e38;
}
.dark-version .sidebar {
    background-color: #081527 !important;
}
.dark-version .sidebar-logo .sidebar-menu-bar {
    color: #9097a7;
}
.dark-version .sidebar-user-area {
    border-color: #3a4250;
}
.dark-version .sidebar-user-area .sidebar-user-thumb img {
    border-color: #3a4250;
}
.dark-version .custom-inner-card .card-inner-header {
    border-color: #3a4250;
}
.dark-version .nav-tabs {
    border-color: #3a4250;
}
.dark-version .richtexteditor.rte-modern {
    border-color: #3a4250;
}
.dark-version .user-profile-thumb {
    border-color: #3a4250;
}
.dark-version .user-profile-list-two li {
    background-color: #282e38;
    color: #ffffff;
}
.dark-version .user-profile-list-three li span {
    color: #ffffff;
}
.dark-version .user-profile-list li span {
    color: #ffffff;
}
.dark-version .user-profile-list.two li {
    background-color: #282e38;
    color: #ffffff;
}
.dark-version .user-profile-list.two li span {
    color: #9097a7;
}
.dark-version .sidebar-menu .sidebar-menu-item a .menu-icon {
    color: #9097a7;
}
.dark-version .sidebar-menu .sidebar-menu-item.active {
    color: var(--dark-primary-text-active);
}
.dark-version .sidebar-menu .sidebar-menu-item.active a .menu-title {
    color: var(--dark-primary-text-active) !important;
}
.dark-version .sidebar-menu .sidebar-menu-item.active ul li a .menu-title {
    color: var(--dark-primary-text);
}

.dark-version .dashbord-item {
    background-color: #313844;
}
.dark-version .chart-wrapper {
    background-color: #313844;
}
.dark-version .apexcharts-legend-text {
    color: #9097a7 !important;
}
.dark-version .apexcharts-yaxis text {
    fill: #9097a7 !important;
}
.dark-version .apexcharts-grid line {
    stroke: #3a4250 !important;
}
.dark-version .apexcharts-graphical line {
    stroke: #3a4250 !important;
}
.dark-version .apexcharts-svg path {
    stroke: #3a4250 !important;
}
.dark-version .apexcharts-xaxis-texts-g text {
    fill: #9097a7 !important;
}
.dark-version .chart-area-footer {
    border-color: #3a4250;
}
.dark-version .table-area {
    background-color: #313844;
}
.dark-version .custom-table thead tr {
    border-color: #3a4250;
}
.dark-version .custom-table thead tr th {
    color: var(--dark-primary-text-active);
}
.dark-version .custom-table tbody tr {
    border-color: #3a4250;
}
.dark-version .custom-table tbody tr td {
    color: #9097a7;
}
.dark-version .custom-table tbody tr td .user-list li img {
    border-color: #3a4250;
}
.dark-version .table-header .table-btn-area .table-search-wrapper {
    border-color: #3a4250;
}
.dark-version .table-header .table-btn-area .table-search-wrapper input {
    color: #9097a7;
}
.dark-version .form--control {
    background-color: #313844;
    border-color: #3a4250;
}
.dark-version select option {
    color: var(--dark-primary-text-active);
}
.dark-version .rte-modern.rte-desktop.rte-toolbar-default {
    background-color: #313844;
    border-color: #3a4250;
}
.dark-version .richtexteditor.rte-modern rte-toolbar {
    background-color: #313844;
    border-color: #3a4250;
}
.dark-version .richtexteditor.rte-modern rte-bottom {
    background-color: #313844;
}
.dark-version rte-content {
    background-color: #313844;
    border-color: #3a4250;
}
.dark-version .rte-modern rte-line-break {
    border-color: #3a4250;
}
.dark-version .custom-card {
    background-color: #313844;
}
.dark-version .custom-card .card-header {
    background: #313844;
    border-color: #3a4250;
}
.dark-version .custom-card .card-body .card-form label {
    color: var(--dark-primary-text-active);
}
.dark-version label {
    color: var(--dark-primary-text-active);
}
.dark-version .input-group-text {
    color: var(--dark-primary-text-active);
}
.dark-version .toggle-container .switch-toggles {
    background-color: #282e38;
}
.dark-version .pagination .page-item a,
.dark-version .pagination .page-item span {
    border-color: #3a4250;
}
.dark-version .pagination .page-item.disabled span {
    border-color: #3a4250;
}
.dark-version .copyright-area {
    background-color: #313844;
}
.dark-version .copyright-area p a,
.dark-version .copyright-area p span {
    color: var(--dark-primary-text-active);
}
.dark-version .filepond--panel-root {
    background-color: #282e38;
}
.dark-version .select2-container--default .select2-selection--multiple {
    background-color: transparent;
    border-color: #3a4250;
}
.dark-version
    .select2-container--default
    .select2-selection--multiple
    .select2-selection__choice {
    background-color: #282e38;
    border-color: #3a4250;
}
.dark-version
    .select2-container--default
    .select2-selection--multiple
    .select2-selection__choice__remove {
    background-color: #282e38 !important;
    border-color: #3a4250;
}

/*--------------------------------------------------------------
    [ ## Accordion Dark Mode ]
--------------------------------------------------------------*/
.dark-version {
    --accordion-bg: #313844;
    --accordion-color: var(--dark-primary-text-active);
    --accordion-border-color: #3a4250;
    --accordion-active-bg: #282e38;
    --accordion-active-color: #282e38;
}

.sidebar-menu-item svg{
    font-size: 22px;
    width: 20px;
}

.sidebar-menu-item .icon-active, .sidebar-menu-item .icon-default{
    margin-inline-end: 8px;

}
.sidebar-menu-item .icon-default_stroke{
    stroke: var(--primary-text);
}


.sidebar-menu-item .icon-active_stroke{
    stroke: var(--primary-color);
}

.dark-version .sidebar-menu-item .icon-default_stroke{
    stroke: var(--dark-primary-text);
}

.dark-version .sidebar-menu-item .icon-active_stroke{
       stroke: var(--dark-primary-text-active);
}

.sidebar-menu-item .icon-default_fill{
    fill: var(--primary-text);
}

.sidebar-menu-item .icon-active_fill{
    fill: var(--primary-color);
}

.dark-version .sidebar-menu-item .icon-default_fill{
    fill: var(--dark-primary-text);
}

.dark-version .sidebar-menu-item .icon-active_fill{
    fill: var(--dark-primary-text-active);
}

.card__background {
  background-color: white;
}
.dark-version .card__background {
  background-color: var(--dark-primary-color-5);
}

.header__card-title{
    background-color: var(--primary-color-20) !important; 
}
.dark-version .header__card-title{
    background-color: var(--dark-secondary-color) !important; 
}


label {
    color: var(--primary-text) !important;
    font-weight: 600 !important;
    margin-bottom: 0;
}

.dark-version label{
    color: var(--dark-primary-text) !important;
    font-weight: 600 !important;
}

.form-select, .form-control, 
.form-select option{
    background-color: var(--primary-color-20) !important;
    border: 1px solid var(--border-main-color) !important;
    color: var(--primary-text) !important;
    font-weight: 500 !important;
    margin-bottom: 8px;

}
.dark-version .form-select,
 .dark-version .form-control,
  .dark-version .form-select option{
    background-color: var(--dark-primary-color) !important;
    border: 1px solid var(--dark-primary-color-5) !important;
    color: var(--dark-primary-text) !important;
    font-weight: 500 !important;
}


.logout__modal_close_btn{
    border-color: var(--primary-color) !important;
    color: white !important;
}

.dark-version .dropdown-menu {
    background: var(--dark-primary-color-5);
}

.dark-version p, .dark-version li,.dark-version li a, .dark-version span{
    color: var(--dark-primary-text);
}
.dark-version li a:hover{
    color: var(--white-color) !important;
}

.dark-version nav ul li.nav-item::after {
    background: var(--dark-primary-text);
}

.show_data_btn:hover svg{
    fill: white !important;
}

.whatsapp_floating_btn{
    position: fixed;
    bottom: 50px;
    inset-inline-end: 50px;
    z-index: 999;
}

/* App Store Download Buttons */
.app-download-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-download-btn {
    display: inline-block;
    background-color: #000000;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    padding: 12px 20px;
    min-width: 200px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.app-download-btn:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.app-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .footer_links_social {
        justify-content: end;
        width: 100%;
    }
}

.app-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.app-text-small {
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    opacity: 0.9;
}

.app-text-large {
    font-size: 16px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.google-play-btn .app-text-large {
    font-weight: 500;
}

.app-store-btn .app-text-large {
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .app-download-btn {
        min-width: 180px;
        padding: 10px 16px;
    }
    
    .app-text-large {
        font-size: 14px;
    }
    
    .app-text-small {
        font-size: 9px;
    }
}

.add_card_details{
    border: 1px solid var(--green-color);
    background-color: var(--green-color-5);
    color: var(--green-color);
    border-radius: 10px;
    padding: 10px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}


.dark-version .add_card_details{
    background-color: var(--dark-green-color-5);
    border: 1px solid var(--dark-green-color);
    color: var(--dark-green-color);
}

.list_style_dot{
    list-style-type: disc;
    list-style-position: inside;
}

.list_style_dot li{
    font-weight: 700;
    font-size: 16px;
    color: var(--text-color);
}