:root {
    --primary-color: var(--primary-color);
}
html {
    font-size: 100%;
    scroll-behavior: smooth;
    font-family: Cairo, sans-serif;
}

body {
    background-color: #ffffff;
    /* font-family: "Outfit", sans-serif; */
    font-family: Cairo, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5em;
    color: #282828;
    overflow-x: hidden;
}

.topsidenavecard {
    background-color: #eeeeee;
    border-radius: 10px;
    /* padding-top: 20px; */
    padding: 5px;
}

/* modal */

.text-blakegray {
    color: #323232;
    font-weight: 650;
}

/* end modal */

main {
    position: relative;
    border-radius: 20px 20px 0 0;
    background-color: #ffffff;
    z-index: 2;
}

.material-input {
    position: relative;
    margin-top: 0.4rem;
}

.material-input input {
    border: 1.5px solid #ccc;
    border-radius: 6px;
    padding: 1.2rem 0.75rem 0.5rem;
    width: 100%;
    font-size: 1rem;
    background-color: transparent;
    transition: all 0.2s ease-in-out;
}

.material-input input:focus {
    border-color: #adadad;
    border: 1.5px solid #adadad;
    outline: none;
}

.material-input label {
    position: absolute;
    left: 1rem;
    top: 0.75rem;
    background-color: white;
    padding: 0 0.25rem;
    color: #606060;
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
    pointer-events: none;
}

.material-input input:focus + label,
.material-input input:not(:placeholder-shown) + label {
    top: -0.1rem;
    left: 0.9rem;
    font-size: 0.85rem;
    color: #545454;
}
* LTR Default */ .material-input:not([dir="rtl"]) label {
    left: 1rem;
}

.material-input:not([dir="rtl"]) input:focus + label,
.material-input:not([dir="rtl"]) input:not(:placeholder-shown) + label {
    top: -0.8rem;
    left: 0.9rem;
}

/* RTL Support */
.material-input[dir="rtl"] label {
    right: 1rem;
    left: auto;
}

.material-input[dir="rtl"] input:focus + label,
.material-input[dir="rtl"] input:not(:placeholder-shown) + label {
    top: -0.8rem;
    right: 0.9rem;
    left: auto;
}

/* text-erea */

.material-input textarea {
    border: 1.5px solid #ccc;
    border-radius: 6px;
    padding: 1.2rem 0.75rem 0.5rem;
    width: 100%;
    font-size: 1rem;
    background-color: transparent;
    transition: all 0.2s ease-in-out;
    resize: vertical;
    min-height: 100px;
}

.material-input textarea:focus {
    border-color: #adadad;
    outline: none;
}

.material-input textarea:focus + label,
.material-input textarea:not(:placeholder-shown) + label {
    top: -0.8rem;
    font-size: 0.85rem;
    color: #545454;
}

/* RTL and LTR logic for textarea label is reused */
.material-input[dir="rtl"] label {
    right: 1rem;
    left: auto;
}

.material-input[dir="rtl"] textarea:focus + label,
.material-input[dir="rtl"] textarea:not(:placeholder-shown) + label {
    top: -0.8rem;
    right: 0.9rem;
    left: auto;
}

.material-input:not([dir="rtl"]) label {
    left: 1rem;
}

.material-input:not([dir="rtl"]) textarea:focus + label,
.material-input:not([dir="rtl"]) textarea:not(:placeholder-shown) + label {
    top: -0.8rem;
    left: 0.9rem;
}

/* end text erea */

/* start select */

.material-input select {
    border: 1.5px solid #ccc;
    border-radius: 6px;
    padding: 1.2rem 0.75rem 0.5rem;
    width: 100%;
    font-size: 1rem;
    background-color: transparent;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.2s ease-in-out;
    color: #2e2e2e;
}

.material-input select:focus {
    border-color: #adadad;
    outline: none;
}

.material-input select:focus + label,
.material-input select:not(:placeholder-shown) + label,
.material-input select:valid + label {
    top: -0.8rem;
    font-size: 0.85rem;
    color: #545454;
}

/* Position label initially */
.material-input label {
    position: absolute;
    top: 0.75rem;
    background-color: white;
    padding: 0 0.25rem;
    color: #606060;
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
    pointer-events: none;
}

/* LTR */
.material-input:not([dir="rtl"]) label {
    left: 1rem;
}

.material-input:not([dir="rtl"]) select:focus + label,
.material-input:not([dir="rtl"]) select:valid + label {
    left: 0.9rem;
}

/* RTL */
.material-input[dir="rtl"] label {
    right: 1rem;
    left: auto;
}

.material-input[dir="rtl"] select:focus + label,
.material-input[dir="rtl"] select:valid + label {
    right: 0.9rem;
    left: auto;
}

/* end select */

/* stepper */

.stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 2rem;
}

.stepper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 0.01rem 0.4rem;
    border: 2px solid #ccc;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.step.active {
    border-color: rgb(39, 39, 39);
    background-color: rgb(245, 245, 245);
    color: #2c2c2c;
}

.step.completed {
    border-color: #28a745;
    background-color: #28a745;
    color: #fff;
}

/* end stepper */

.amazon-btn {
    background-color: #0751c1; /* Amazon's signature blue */
    color: #ffffff; /* White text color */
    padding: 7px 20px; /* Generous padding for better button size */
    border-radius: 4px; /* Slightly rounded corners */
    font-weight: 700; /* Bold text for emphasis */
    font-size: 16px; /* Slightly larger font size */
    border: 1px solid transparent; /* No border, but can add if desired */
    cursor: pointer; /* Pointer cursor on hover */
    /* text-transform: uppercase; */
    transition: background-color 0.3s ease, box-shadow 0.3s ease,
        transform 0.2s ease; /* Smooth transitions */
    display: inline-block; /* Makes the button fit the content */
    min-width: 150px; /* Set a minimum width for consistency */
    text-align: center; /* Centers the text inside */
}

.amazon-btn:hover {
    background-color: #005a8c; /* Darker blue on hover */
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow on hover */
    transform: scale(1.01); /* Slightly enlarges on hover */
}

.amazon-btn:active {
    background-color: #045581; /* Even darker blue when the button is clicked */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Reduced shadow on click */
    transform: scale(
        0.88
    ); /* Slight shrink effect to mimic pressing the button */
}

.amazon-btn:focus {
    outline: none; /* Removes default outline */
    box-shadow: 0 0 0 2px rgba(2, 132, 197, 0.5); /* Blue focus ring */
}

.amazon-btn:disabled {
    background-color: #c0c0c0; /* Light grey when disabled */
    color: #8c8c8c; /* Dark grey text */
    cursor: not-allowed; /* Disable cursor */
    box-shadow: none; /* Remove shadow when disabled */
}

/*-------------------------------------------------
    [ ## common ]
*/
.back-btn {
    background-color: #303030; /* back's signature blue */
    color: #ffffff; /* White text color */
    padding: 7px 20px; /* Generous padding for better button size */
    border-radius: 4px; /* Slightly rounded corners */
    font-weight: 700; /* Bold text for emphasis */
    font-size: 16px; /* Slightly larger font size */
    border: 1px solid transparent; /* No border, but can add if desired */
    cursor: pointer; /* Pointer cursor on hover */
    text-transform: uppercase; /* Uppercase text for a bolder look */
    transition: background-color 0.3s ease, box-shadow 0.3s ease,
        transform 0.2s ease; /* Smooth transitions */
    display: inline-block; /* Makes the button fit the content */
    min-width: 150px; /* Set a minimum width for consistency */
    text-align: center; /* Centers the text inside */
}

.back-btn:hover {
    background-color: #3b3b3b; /* Darker blue on hover */
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow on hover */
    transform: scale(1.01); /* Slightly enlarges on hover */
}

.back-btn:active {
    background-color: #3a3939; /* Even darker blue when the button is clicked */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Reduced shadow on click */
    transform: scale(
        0.88
    ); /* Slight shrink effect to mimic pressing the button */
}

.back-btn:focus {
    outline: none; /* Removes default outline */
    box-shadow: 0 0 0 2px rgba(140, 140, 140, 0.5); /* Blue focus ring */
}

.back-btn:disabled {
    background-color: #b1b1b1; /* Light grey when disabled */
    color: #ffffff; /* Dark grey text */
    cursor: not-allowed; /* Disable cursor */
    box-shadow: none; /* Remove shadow when disabled */
}
/*  */
.successsubmit-btn {
    background-color: #17a97b; /* back's signature blue */
    color: #ffffff; /* White text color */
    padding: 7px 20px; /* Generous padding for better button size */
    border-radius: 4px; /* Slightly rounded corners */
    font-weight: 700; /* Bold text for emphasis */
    font-size: 16px; /* Slightly larger font size */
    border: 1px solid transparent; /* No border, but can add if desired */
    cursor: pointer; /* Pointer cursor on hover */
    text-transform: uppercase; /* Uppercase text for a bolder look */
    transition: background-color 0.3s ease, box-shadow 0.3s ease,
        transform 0.2s ease; /* Smooth transitions */
    display: inline-block; /* Makes the button fit the content */
    min-width: 150px; /* Set a minimum width for consistency */
    text-align: center; /* Centers the text inside */
}

.successsubmit-btn:hover {
    background-color: #15bc87; /* Darker blue on hover */
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow on hover */
    transform: scale(1.01); /* Slightly enlarges on hover */
}

.successsubmit-btn:active {
    background-color: #15bc87; /* Even darker blue when the button is clicked */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Reduced shadow on click */
    transform: scale(
        0.88
    ); /* Slight shrink effect to mimic pressing the button */
}

.successsubmit-btn:focus {
    outline: none; /* Removes default outline */
    box-shadow: 0 0 0 2px rgba(140, 140, 140, 0.5); /* Blue focus ring */
}

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;
}
@media only screen and (max-width: 575px) {
    .exchange-area code {
        font-size: 16px;
    }
}

code {
    color: #488A99;
    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;
    padding-left: 2px;
    padding-right: 2px;
}

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

blockquote {
    background-color: #f8f9fa;
    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: #7367f0 !important;
}

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

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

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

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

.bg--golding {
    background-color: #f7a559 !important;
}

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

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

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

.text--primary {
    color: #7367f0;
}

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

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

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

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

.text--dangerwhite {
    color: #292828;
    font-weight: 650;
}

.text--warning {
    color: #488A99;
}

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

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

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

.border--primary {
    border: #7367f0;
}

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

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

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

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

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

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

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

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

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

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

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

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

*::-webkit-scrollbar-thumb {
    background: #0e71eb;
    border-radius: 10px;
}

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

/*-------------------------------------------------
    [ ## scrollToTop ]
*/
.progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 44px;
    width: 44px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
    mix-blend-mode: difference;
}
.progress-wrap::after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f077";
    text-align: center;
    line-height: 44px;
    font-size: 13px;
    font-weight: 900;
    color: #cccccc;
    left: 0;
    top: 0;
    height: 44px;
    width: 44px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.progress-wrap svg path {
    stroke: #cccccc;
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

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

.custom-table {
    width: 100%;
    white-space: nowrap;
}
.custom-table thead tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.custom-table thead tr th {
    border: none;
    font-weight: 650;
    color: #2f2e2e;
    font-size: 14px;
    padding: 12px 15px;
}
.custom-table thead tr th:last-child {
    text-align: right;
}
.custom-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.custom-table tbody tr:nth-of-type(2n) {
    background-color: #faf9f8;
}
.custom-table tbody tr td {
    border: none;
    font-weight: 500;
    color: #353535;
    font-size: 14px;
    padding: 12px 15px;
}
.custom-table tbody tr td:last-child {
    text-align: right;
}
.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 {
    padding: 6px 10px;
}
.custom-table tbody tr td .btn.chat-btn {
    position: relative;
}
.custom-table tbody tr td .btn.chat-btn .dot {
    position: absolute;
    content: "";
    top: -1px;
    right: -1px;
    width: 8px;
    height: 8px;
    background-color: #dc3545;
    border-radius: 50%;
}

/*-------------------------------------------------
    [ ## 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: 8;
}
.swiper-pagination .swiper-pagination-bullet {
    height: 7px;
    width: 7px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet-active {
    background-color: #ffffff;
}

.slider-next,
.slider-prev {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 12px;
    background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #c4c6c7;
    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(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0;
    font-weight: 600;
    line-height: 30px;
    font-size: 14px;
    display: block;
    margin: 0;
}
.pagination .page-item.disabled span {
    border-radius: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}
.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: #049ddf;
    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: #1f1f1f;
}
.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: #ffffff;
    padding: 3px;
    border-radius: 10px;
}

.custom-cardpalns .card-body {
    /* padding: 2px; */
    border-radius: 10px;
    border: 1.5px dashed #2ab8ff;
}

.custom-cardpalns.active .card-body {
    /* background: #ffffff;  */
    /* padding: 2px; */
    border-radius: 10px;
    border: 2.5px dashed #2ab8ff;
}

@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: 8px 30px;
}

.text-bluebold {
    color: #018cd2;
    font-weight: 650;
}

/*-------------------------------------------------
    [ ## switch ]
*/

.custom-toggle .toggle-container {
    margin: 0 auto;
}

/* الحاوية الرئيسية */
.toggle-container {
    width: 160px;
    margin-right: 10px;
}
/* حجم أصغر للشاشات الصغيرة */
@media only screen and (max-width: 575px) {
    .toggle-container {
        width: 180px;
    }
}

/* شريط التبديل */
.toggle-container .switch-toggles {
    position: relative;
    width: 100%;
    height: 32px;
    border-radius: 16px;
    background-color: rgb(36, 36, 36);
    display: flex;
    color: #005a8c;
    align-items: center;
    overflow: hidden;
}

/* المؤشر المتحرك */
.toggle-container .switch-toggles::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #066ac2;
    border-radius: 0 16px 16px 0;
    transition: all 0.3s ease;
}

/* الزرين داخل التبديل */
.toggle-container .switch-toggles .switch {
    flex: 1;
    height: 100%;
    text-align: center;
    line-height: 32px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    z-index: 1;
    color: #fff;
    transition: color 0.3s ease;
}

/* عندما تكون الحالة نشطة، يتحرك المؤشر إلى اليسار */
.toggle-container .switch-toggles.active::after {
    right: 50%;
    border-radius: 16px 0 0 16px;
}

/* الألوان في الوضع النشط */
.toggle-container .switch-toggles.active .switch {
    color: #fff;
}

/*-------------------------------------------------
    [ ## modal ]
*/
.modal-content {
    background-color: #ffffff;
}
.modal-content .close {
    border-radius: 3px;
}

.modal-header {
    border-color: rgba(255, 255, 255, 0.1);
}

.modal-footer {
    border-color: rgba(255, 255, 255, 0.1);
}
.modal-footer button,
.modal-footer input[type="submit"],
.modal-footer input[type="reset"],
.modal-footer input[type="button"] {
    padding: 8px 25px;
    font-size: 14px;
    border-radius: 8px;
    color: #1f1f1f !important;
}

.btn-close {
    background: #ffffff
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
        center/1em auto no-repeat;
}

/*-------------------------------------------------
    [ ## Heading ]
*/
h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    line-height: 1.3em;
    color: #323232;
    -webkit-font-smoothing: antialiased;
    /* font-family: "Outfit", sans-serif; */
    font-family: Cairo, sans-serif;
    font-weight: 605;
}

h1 {
    font-size: 53px;
}
@media only screen and (max-width: 1399px) {
    h1 {
        font-size: 50px;
    }
}
@media only screen and (max-width: 991px) {
    h1 {
        font-size: 30px;
    }
}
@media only screen and (max-width: 575px) {
    h1 {
        font-size: 35px;
    }
}
@media only screen and (max-width: 425px) {
    h1 {
        font-size: 30px;
    }
}
@media only screen and (max-width: 320px) {
    h1 {
        font-size: 24px;
    }
}

h2 {
    font-size: 40px;
}
@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: 24px;
}
@media only screen and (max-width: 991px) {
    h3 {
        font-size: 18px;
    }
}

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: 50px;
    position: relative;
}
@media only screen and (max-width: 991px) {
    .section-header {
        margin-bottom: 30px;
    }
}
.section-header .section-sub-title {
    font-size: 10px;
    letter-spacing: 2px;
    padding: 3px 10px;
    background: #ffffff;
    border: 1px solid var(--primary-color);
    text-transform: uppercase;
    border-radius: 5px;
    margin-bottom: 20px;
}
.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: #1f1f1f;
}

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: #dc3545;
}

.btn--warning {
    position: relative;
    background-color: #488A99;
    border-radius: 10px;
    color: #ffffff;
    padding: 13px 40px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.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: #dc3545;
}

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

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

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

.border--primary {
    border: 1px solid #7367f0;
}

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

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

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

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

.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 {
    position: relative;
    background: #0751c1;
    border-radius: 8px;
    color: #f7f6f6;
    padding: 8px 20px;
    /* margin-top: 15px; */
    font-size: 18px;
    font-weight: 520;
    text-align: center;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}
.btn--base i {
    font-size: 20px;
    font-weight: 900px;
    position: relative;
    top: 1px;
}
.btn--base.white {
    background: #ffffff;
    border: 1px solid #ffffff;
    color: #212121;
}
.btn--base.white.active {
    background-color: transparent;
    color: #ffffff;
}
.btn--base.white.active:focus,
.btn--base.white.active:hover {
    color: #212121;
    background: #ffffff;
}
.btn--base.white:focus,
.btn--base.white:hover {
    color: #212121;
    background: transparent;
}
.btn--base:focus,
.btn--base:hover {
    color: #ffffff;
}
@media only screen and (max-width: 991px) {
    .btn--base {
        padding: 10px 25px;
    }
}

.custom-btn {
    color: var(--primary-color) !important;
}

.customcard-prfile {
    /* background: #ffffff; */
    padding: 2px;
    padding-top: 5px;
    border-radius: 10px;
    margin: 2px;
}

.info-btn {
    width: 33px;
    height: 33px;
    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: #0751c1;
    border-radius: 5px;
    color: #ffffff;
    font-size: 19px;
    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: #20283E;
    border-radius: 5px;
    color: #ffffff;
    font-size: 17px;
    display: none;
    margin-top: 60px;
    /* position: absolute; */
    /* top: 10px;
    right: 10px; */
}
@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: #1f1f1f;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #1f1f1f;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #1f1f1f;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: #1f1f1f;
}
input::placeholder,
textarea::placeholder {
    color: #1f1f1f;
}

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

input,
select,
textarea {
    border: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: baseline;
    font-size: 100%;
    color: #1f1f1f;
}

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 {
    background: #f8f9fa;
    color: #1f1f1f;
}

.input-group {
    margin-bottom: 0;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.input-group .nice-select {
    width: auto;
    padding: 0 30px 0 15px;
    font-weight: 650;
    border: none !important;
    background-color: #3683db !important;
    color: #ffffff !important;
    line-height: 49px;
}
.input-group .nice-select .option {
    color: #242424 !important;
}

.input-group .nice-select .option:hover {
    color: #ffffff !important;
}

.input-group .nice-select::after {
    border-bottom: 2px solid #e1e1e1;
    border-right: 2px solid #e1e1e1;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: rgba(68, 160, 141, 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(255, 255, 255, 0.1);
    border-right: none;
    background-color: #ffffff;
}

.input-group-text {
    border: none;
    font-size: 16px;
    background: var(--primary-color);
    color: #ffffff;
    height: 49px;
    border-radius: 0 10px 10px 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: #059fcf;
}
.custom-check-group input:checked + label::after {
    content: "";
    display: block;
    position: absolute;
    top: 6.5px;
    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: transparent;
    border: 1.5px solid #059fcf;
    border-radius: 5px;
    padding: 8px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 8px;
    top: -2px;
}
.custom-check-group label a {
    text-decoration: underline;
}

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

.form-control {
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    height: 50px;
    color: #c4c6c7;
}
.form-control:focus {
    color: #c4c6c7;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.form-control::-webkit-input-placeholder {
    color: #c4c6c7;
}
.form-control::-moz-placeholder {
    color: #c4c6c7;
}
.form-control:-ms-input-placeholder {
    color: #c4c6c7;
}
.form-control::-ms-input-placeholder {
    color: #c4c6c7;
}
.form-control::placeholder {
    color: #7b7c7c;
}

.form--control {
    background-color: #ffffff;
    border: 1px solid #dadada;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 49px;
    font-size: 14px;
    color: #363535;
    border-radius: 10px;
    padding: 6px 20px;
    width: 100%;
}
.form--control:focus {
    background-color: #ffffff;
    border: 1px solid #a4a3a3;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #363535;
}
.form--control::-webkit-input-placeholder {
    color: rgb(251, 251, 251);
}
.form--control::-moz-placeholder {
    color: rgb(251, 251, 251);
}
.form--control:-ms-input-placeholder {
    color: rgb(251, 251, 251);
}
.form--control::-ms-input-placeholder {
    color: rgb(251, 251, 251);
}
.form--control::placeholder {
    color: rgb(95, 94, 94);
}
.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: 2px dashed #a4a3a3;
}

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

.fileholder-drag-drop-icon svg path:nth-child(2) {
    fill: #a4a3a3;
}

.fileholder-basic-loading-circle.one {
    border: 2px solid #a4a3a3;
}

.fileholder-basic-loading-circle.two {
    border: 2px solid #a4a3a3;
}

.fileholder-basic-loading-circle.three {
    border: 2px solid #a4a3a3;
}

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

.fileholder.active {
    border: 2px dashed rgba(255, 255, 255, 0.1);
}

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

.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 #a4a3a3;
    /* background-color: #a4a3a3; */
    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 #1f1f1f;
    border-radius: 8px;
    padding: 20px 25px;
    display: inline-block;
    color: #1f1f1f;
    width: 100%;
    text-align: center;
}

.nice-select {
    height: 49px;
    line-height: 49px;
    border: 1px solid rgb(186, 186, 186) !important;
    float: unset;
    padding: 0 25px;
    color: #1f1f1f !important;
}
.nice-select .list {
    background-color: #ffffff;
    left: auto;
    right: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
}

.nice-select .option:hover,
/* .nice-select .option.focus, */
.nice-select .option.selected.focus {
    background-color: #1e7fcf;
    color: #ffffff;
}

.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: #b6defe;
    color: #333232;
}

.select2-dropdown {
    background-color: #f8f9fa;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.select2-search--dropdown .select2-search__field {
    background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

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

.select2-container--default .select2-results__option--selected {
    background-color: #5897fb;
}

.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: 49px !important;
    outline: none;
    background: transparent !important;
    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 rgb(201, 201, 201) !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.select2-selection--single span {
    margin: 0;
    width: 100%;
    color: #1f1f1f;
    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: #1f1f1f transparent transparent transparent;
}

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

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

/*-------------------------------------------------
    [ ## 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: #ffffff;
    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%;
    }
}
@-webkit-keyframes bounce {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(110px);
        transform: translateY(110px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes bounce {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(110px);
        transform: translateY(110px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes bounce1 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(180px);
        transform: translateY(180px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes bounce1 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(180px);
        transform: translateY(180px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
/*--------------------------------------------------------------
    [ ## Header ]
--------------------------------------------------------------*/
/*-------------------------------------------------
    [ ## Preloader ]
*/
.preloader {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    top: 0;
    z-index: 9999999;
    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: #f8f9fa;
}

.loading {
    position: fixed;
    float: left;
    top: 50%;
    left: 50%;
    height: 90px;
    padding: 0px;
    width: 95px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@-webkit-keyframes loading {
    0% {
        background: var(--primary-color);
    }
    30% {
        background: var(--primary-color);
    }
    50% {
        height: 70px;
        margin-top: 0px;
    }
    80% {
        background: var(--primary-color);
    }
    100% {
        background: var(--primary-color);
    }
}

@keyframes loading {
    0% {
        background: var(--primary-color);
    }
    30% {
        background: var(--primary-color);
    }
    50% {
        height: 70px;
        margin-top: 0px;
    }
    80% {
        background: var(--primary-color);
    }
    100% {
        background: var(--primary-color);
    }
}
.loading .loading-1 {
    height: 10px;
    width: 20px;
    background: var(--primary-color);
    display: inline-block;
    margin-top: 60px;
    -webkit-animation: loading 2.5s infinite;
    animation: loading 2.5s infinite;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
}

.loading .loading-2 {
    height: 10px;
    width: 20px;
    background: var(--primary-color);
    display: inline-block;
    margin-top: 60px;
    -webkit-animation: loading 2.5s infinite;
    animation: loading 2.5s infinite;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.loading .loading-3 {
    height: 10px;
    width: 20px;
    background: var(--primary-color);
    display: inline-block;
    margin-top: 60px;
    -webkit-animation: loading 2.5s infinite;
    animation: loading 2.5s infinite;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    -webkit-animation-delay: 0.75s;
    animation-delay: 0.75s;
}

.loading .loading-4 {
    height: 10px;
    width: 20px;
    background: var(--primary-color);
    display: inline-block;
    margin-top: 60px;
    -webkit-animation: loading 2.5s infinite;
    animation: loading 2.5s infinite;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.loading .loading-5 {
    height: 10px;
    width: 20px;
    background: var(--primary-color);
    display: inline-block;
    margin-top: 60px;
    -webkit-animation: loading 2.5s infinite;
    animation: loading 2.5s infinite;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    -webkit-animation-delay: 1.25s;
    animation-delay: 1.25s;
}

.loading .loading-6 {
    height: 10px;
    width: 20px;
    background: var(--primary-color);
    display: inline-block;
    margin-top: 60px;
    -webkit-animation: loading 2.5s infinite;
    animation: loading 2.5s infinite;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

.loading .loading-7 {
    height: 10px;
    width: 20px;
    background: var(--primary-color);
    display: inline-block;
    margin-top: 60px;
    -webkit-animation: loading 2.5s infinite;
    animation: loading 2.5s infinite;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    -webkit-animation-delay: 1.75s;
    animation-delay: 1.75s;
}

.loading .loading-8 {
    height: 10px;
    width: 20px;
    background: var(--primary-color);
    display: inline-block;
    margin-top: 60px;
    -webkit-animation: loading 2.5s infinite;
    animation: loading 2.5s infinite;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.loading .loading-9 {
    height: 10px;
    width: 20px;
    background: var(--primary-color);
    display: inline-block;
    margin-top: 60px;
    -webkit-animation: loading 2.5s infinite;
    animation: loading 2.5s infinite;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    -webkit-animation-delay: 2.25s;
    animation-delay: 2.25s;
}

.loading .loading-10 {
    height: 10px;
    width: 20px;
    background: var(--primary-color);
    display: inline-block;
    margin-top: 60px;
    -webkit-animation: loading 2.5s infinite;
    animation: loading 2.5s infinite;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

.custom-container {
    max-width: 1700px;
}

.row > * {
    position: relative;
}

@media (min-width: 1480px) {
    .col-xxl-4 {
        -ms-flex: 0 0 33.333333%;
        -webkit-box-flex: 0;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}
@media (max-width: 575px) {
    .col-xs-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }
}
@media only screen and (max-width: 575px) and (max-width: 400px) {
    .col-xs-6 {
        width: 100%;
    }
}
.fs-10px {
    font-size: 11px;
}

.op-6 {
    opacity: 0.6;
}

/*-------------------------------------------------
  [ ## Header ]
*/
.header-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    background-color: transparent;
}
.header-section.two {
    position: relative;
}
.header-section.two .header-bottom-area {
    background-color: #ffffff;
}
.header-section.two .header-bottom-area .header-action a {
    background-color: #363636;
}

.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-bottom-area {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-section.header-fixed .header-bottom-area .header-action a {
    background-color: #363636;
}

.header-bottom-area {
    position: relative;
    background: transparent;
}
@media only screen and (max-width: 991px) {
    .header-bottom-area {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
.header-bottom-area .navbar-expand-lg {
    background-color: transparent;
    padding: 0 !important;
}
@media (max-width: 991px) {
    .header-bottom-area .navbar-collapse {
        background-color: rgba(240, 240, 240, 0.726) !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: 500;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #1f1f1f;
    display: inline-block;
    font-size: 16px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 9;
}
.header-bottom-area .navbar-collapse .main-menu li a.active {
    color: var(--primary-color);
}
@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: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    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-language {
    margin-left: 30px;
}
@media only screen and (max-width: 991px) {
    .header-language {
        margin-left: 15px;
    }
}
.header-action {
    margin-left: 30px;
}
@media only screen and (max-width: 991px) {
    .header-action {
        margin-left: 12px;
        padding-bottom: 30px;
    }
}
.header-action a {
    background: #1c1c1c;
    padding: 11px 18px;
}
@media only screen and (max-width: 991px) {
    .header-action a {
        background-color: var(--primary-color);
        padding: 8px 15px;
        border-radius: 3px;
        margin-top: 10px;
        margin-left: 3px;
    }
}

.language-select {
    background: transparent;
    color: #1f1f1f;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
}
@media only screen and (max-width: 991px) {
    .language-select {
        margin-left: 0;
        max-width: 100px;
    }
}

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

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

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

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

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

/*--------------------------------------------------------------
    [ ## Introduction ]
--------------------------------------------------------------*/
.banner-section {
    position: relative;
    padding: 110px 0 40px 0;
    background-size: 100% !important;
    background-position: center bottom;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
}
@media only screen and (max-width: 991px) {
    .banner-section {
        padding: 150px 0 150px 0;
    }
}
.banner-section::after {
    content: "";
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0.8;
    -webkit-filter: blur(100px);
    filter: blur(100px);
}

.banner-content .sub-title {
    display: inline-block;
    font-size: 14px;
    color: var(--primary-color);
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
    .banner-content .sub-title {
        font-size: 10px;
    }
}
.banner-content .title {
    color: #1f1f1f;
    margin-bottom: 20px;
}
.banner-content .title span {
    padding: 0 0 10px;
    display: inline-block;
    margin-top: 0;
    overflow: hidden;
    vertical-align: top;
    position: relative;
    text-align: left;
}
.banner-content .title span b {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    color: var(--primary-color);
    top: 0;
    left: 0;
    font-weight: 500;
    opacity: 0;
}
.banner-content .title span b.is-visible {
    position: relative;
    opacity: 1;
}
.banner-content .title span::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: var(--primary-color);
}
.banner-content .banner-btn {
    margin: -5px;
    margin-top: 40px;
}
.banner-content .banner-btn a {
    margin: 5px;
}

.banner-form-wrapper {
    background: rgba(255, 255, 255, 0.01);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 40px 60px 40px;
    border-radius: 15px;
    position: relative;
    margin-left: 40px;
}
@media only screen and (max-width: 1199px) {
    .banner-form-wrapper {
        margin-left: 0;
        padding: 30px;
    }
}
.banner-form-wrapper .ribbon-top-right {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
    color: #1f1f1f;
    -webkit-transform: translate(2.35em, 1.4em) rotate(45deg);
    transform: translate(2.35em, 1.4em) rotate(45deg);
    width: 10em;
    height: 2.5em;
    text-align: center;
}
.banner-form-wrapper .ribbon-top-right::before,
.banner-form-wrapper .ribbon-top-right::after {
    content: "";
    position: absolute;
    inset: 0;
    -webkit-clip-path: polygon(
        2em 0,
        8em 0,
        10em 2em,
        10em 2.5em,
        9.5em 2em,
        0.5em 2em,
        0 2.5em,
        0 2em
    );
    clip-path: polygon(
        2em 0,
        8em 0,
        10em 2em,
        10em 2.5em,
        9.5em 2em,
        0.5em 2em,
        0 2.5em,
        0 2em
    );
}
.banner-form-wrapper .ribbon-top-right::before {
    top: 0.1em;
    height: 1.8em;
    border: 2px dotted rgba(0, 0, 0, 0.3);
    border-left: none;
    border-right: none;
}
.banner-form-wrapper .ribbon-top-right::after {
    z-index: -1;
    border-bottom: 0.5em solid #505050;
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    background: var(--primary-color);
}
.banner-form-wrapper .title {
    font-size: 30px;
    margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
    .banner-form-wrapper .title {
        font-size: 22px;
    }
}
@media only screen and (max-width: 400px) {
    .banner-form-wrapper .title {
        font-size: 23px;
    }
}
.banner-form-wrapper::before,
.banner-form-wrapper::after {
    content: "";
    position: absolute;
    top: 80px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 380px;
    height: 380px;
    background: -webkit-gradient(
        linear,
        left bottom,
        left top,
        from(#fff),
        to(transparent)
    );
    background: linear-gradient(to top, #fff, transparent);
    border-radius: 50%;
    opacity: 0.03;
    z-index: -1;
}
.banner-form-wrapper::before {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#fff),
        to(transparent)
    );
    background: linear-gradient(to bottom, #fff, transparent);
    width: 460px;
    height: 460px;
    top: 40px;
    opacity: 0.02;
    z-index: -2;
}

.banner-form {
    padding-top: 20px;
}
.banner-form .banner-form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding-left: 20px;
    margin-bottom: 20px;
}
@media only screen and (max-width: 575px) {
    .banner-form .banner-form-group {
        display: block;
        padding-left: 0;
    }
}
.banner-form .banner-form-group .left-field {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 184px;
    flex: 0 1 184px;
    max-width: 160px;
}
@media only screen and (max-width: 575px) {
    .banner-form .banner-form-group .left-field {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
        max-width: 100%;
    }
}
.banner-form .banner-form-group .left-field .field-input {
    display: table;
    position: relative;
    width: 100%;
    vertical-align: top;
}
.banner-form .banner-form-group .left-field .field-input .field-preffix {
    display: table-cell;
    background-color: transparent;
    height: 46px;
    line-height: 46px;
}
@media only screen and (max-width: 575px) {
    .banner-form .banner-form-group .left-field .field-input .field-preffix {
        padding-left: 20px;
    }
}
.banner-form .banner-form-group .left-field .field-input .field-select {
    margin-left: 5px;
    margin-right: 5px;
   
    border-radius: 10px;
    border: 1px solid var(--primary-color);
}
.banner-form
    .banner-form-group
    .left-field
    .field-input
    .field-select
    .nice-select {
    border: none !important;
    height: 46px;
    line-height: 46px;
    padding-left: 5px;
    /* margin-right: 5px; */
    /* background-color: transparent; */
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 0;
}
.banner-form
    .banner-form-group
    .left-field
    .field-input
    .field-select
    .nice-select
    .list {
    width: 100%;
}
.banner-form .banner-form-group .field-price {
    width: 100%;
}
.banner-form .banner-form-group .field-price .field-input {
    display: table;
    position: relative;
    width: 100%;
    vertical-align: top;
}
.banner-form .banner-form-group .field-price .field-input .field-preffix {
    display: table-cell;
    background-color: transparent;
    height: 46px;
    line-height: 46px;
    position: relative;
    padding-right: 15px;
}
@media only screen and (max-width: 767px) {
    .banner-form .banner-form-group .field-price .field-input .field-preffix {
        width: 80px;
        padding-left: 0;
    }
}
@media only screen and (max-width: 575px) {
    .banner-form .banner-form-group .field-price .field-input .field-preffix {
        padding-left: 20px;
    }
}
.banner-form
    .banner-form-group
    .field-price
    .field-input
    .field-preffix::after {
    position: absolute;
    top: 7px;
    bottom: 7px;
    right: 0;
    z-index: 2;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
    content: "";
}
.banner-form .banner-form-group .field-price .field-input input {
    /* background-color: transparent; */
    border-radius: 10px;

    /* height: 40px; */
    border: 1px solid var(--primary-color);
}
.banner-form .banner-form-group .right-field {
    position: relative;
    display: block;
    margin-left: -0.1rem;
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
}
.banner-form .banner-form-group .right-field .field-input {
    display: table;
    position: relative;
    width: 100%;
    vertical-align: top;
}
.banner-form .banner-form-group .right-field .field-input::before {
    position: absolute;
    top: 7px;
    bottom: 7px;
    left: 0;
    z-index: 2;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
    content: "";
}
@media only screen and (max-width: 575px) {
    .banner-form .banner-form-group .right-field .field-input::before {
        width: 100%;
        height: 1px;
        top: 0;
        bottom: 0;
    }
}
.banner-form .banner-form-group .right-field .field-input .banner-input {
    /* background-color: transparent; */
    height: 46px;
    line-height: 46px;
    border-radius: 10px;
    padding: 0 20px;
    position: relative;
    outline: none;
    border: 1px solid var(--primary-color);
}
.banner-form
    .banner-form-group
    .right-field
    .field-input
    .banner-input::placeholder {
    color: #7f8c8d;
}
.banner-form
    .banner-form-group
    .right-field
    .field-input
    .banner-input::before {
    color: #7f8c8d;
    -webkit-transition: 0.1s ease-out;
    transition: 0.1s ease-out;
    content: attr(data-placeholder);
}
.banner-form .banner-form-group .select-field {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 204px;
    flex: 0 1 204px;
    max-width: 240px;
    position: relative;
    padding-left: 15px;
}
@media only screen and (max-width: 575px) {
    .banner-form .banner-form-group .select-field {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
        max-width: 100%;
    }
}
.banner-form .banner-form-group .select-field::before {
    position: absolute;
    top: 7px;
    bottom: 7px;
    left: 0;
    z-index: 2;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
    content: "";
}
.banner-form .banner-form-group .select-field .field-select {
    padding-left: 5px;
}
.banner-form .banner-form-group .select-field .field-select .nice-select {
    border: 1px solid var(--primary-color) !important;
    height: 53px;
    border-radius: 10px;
    line-height: 51px;
    /* background-color: transparent; */
    padding-left: 15px;
}
.banner-form .banner-form-group .select-field .field-select .nice-select .list {
    width: 100%;
}

/*--------------------------------------------------------------
    [ ## Footer ]
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer-block
--------------------------------------------------------------*/
.footer-section {
    position: relative;
}
.footer-section .circle-blur {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary-color);
    -webkit-filter: blur(100px);
    filter: blur(100px);
    opacity: 0.5;
}

.footer-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;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}
@media only screen and (max-width: 991px) {
    .footer-wrapper {
        display: block;
    }
}

.footer-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -20px;
}
@media only screen and (max-width: 991px) {
    .footer-list {
        margin: -7px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}
.footer-list li {
    margin: 20px;
    font-size: 11px;
    color: #1f1f1f;
    text-transform: uppercase;
    letter-spacing: 2px;
}
@media only screen and (max-width: 991px) {
    .footer-list li {
        margin: 7px;
    }
}

.copyright-area p {
    font-size: 14px;
}

/*--------------------------------------------------------------
# Pages
--------------------------------------------------------------*/
/*--------------------------------------------------------------
    [ ## team ]
--------------------------------------------------------------*/
/*--------------------------------------------------------------
    [ ## Testimonial ]
--------------------------------------------------------------*/
/*-------------------------------------------------
    [ ## Testimonial ]
*/
.testimonial-section {
    position: relative;
    overflow: hidden;
}
.testimonial-section .circle-blur {
    position: absolute;
    top: 180px;
    right: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--primary-color);
    -webkit-filter: blur(100px);
    filter: blur(100px);
    opacity: 0.5;
}

.testimonial-slider {
    overflow: hidden;
}
.testimonial-slider .swiper-slide-active .testimonial-item::after {
    opacity: 1;
    bottom: -2px;
}

.testimonial-area {
    padding: 60px 100px;
    background: #fcfcfc;
    border-bottom: 3px solid var(--primary-color);
    border-radius: 5px;
}
@media only screen and (max-width: 991px) {
    .testimonial-area {
        padding: 60px;
    }
}
@media only screen and (max-width: 767px) {
    .testimonial-area {
        padding: 30px;
    }
}
@media only screen and (max-width: 575px) {
    .testimonial-area {
        padding: 20px;
    }
}

.testimonial-item {
    position: relative;
    text-align: center;
}

.testimonial-content .testimonial-ratings {
    margin-bottom: 30px;
}
.testimonial-content .testimonial-ratings i {
    color: var(--primary-color);
}
.testimonial-content p {
    font-size: 20px;
}
@media only screen and (max-width: 991px) {
    .testimonial-content p {
        font-size: 16px;
    }
}
@media only screen and (max-width: 575px) {
    .testimonial-content p {
        font-size: 14px;
    }
}
.testimonial-content .testimonial-user-wrapper {
    margin-top: 30px;
}
.testimonial-content .testimonial-user-wrapper .testimonial-user-thumb {
    width: 50px;
    height: 50px;
    margin: 0 auto;
}
.testimonial-content .testimonial-user-wrapper .testimonial-user-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}
.testimonial-content .testimonial-user-wrapper .testimonial-user-content {
    padding-top: 20px;
}

/*--------------------------------------------------------------
    [ ## Sections ]
--------------------------------------------------------------*/
/*--------------------------------------------------------------
    [ ## Sections ]
--------------------------------------------------------------*/
/*-------------------------------------------------
    [ ### brand block ]
*/
.brand-slider {
    overflow: hidden;
}

.brand-item {
    text-align: center;
}
.brand-item .front {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.brand-item .front img {
    -webkit-transition: none;
    transition: none;
}
.brand-item img {
    max-width: 100px;
    margin: auto;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.brand-item:hover .front {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}
.brand-item:hover .front img {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}
.brand-item:hover img {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
}

.line-head {
    position: relative;
    text-align: center;
    margin-top: 50px;
}
.line-head .title {
    display: inline-block;
    background: #f8f9fa;
    padding: 0 45px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.line-head .title::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: -1;
}

/*-------------------------------------------------
    [ ### about block ]
*/
.about-section {
    position: relative;
    overflow: hidden;
}
.about-section .circle-blur {
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--primary-color);
    -webkit-filter: blur(100px);
    filter: blur(100px);
    opacity: 0.5;
}

.about-thumb {
    position: relative;
}
.about-thumb img {
    width: 100%;
    border-radius: 25px;
}

.about-content .sub-title {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.about-content .title {
    margin-bottom: 20px;
}
.about-content .about-list {
    margin-top: 30px;
}
.about-content .about-list li {
    margin-bottom: 10px;
}
@media only screen and (max-width: 575px) {
    .about-content .about-list li {
        font-size: 14px;
    }
}
.about-content .about-list li i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.1);
    margin-right: 20px;
}
@media only screen and (max-width: 575px) {
    .about-content .about-list li i {
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 8px;
        margin-right: 10px;
    }
}

/*-------------------------------------------------
    [ ### service block ]
*/
.service-section {
    position: relative;
}
.service-section .circle-blur {
    position: absolute;
    top: -40px;
    left: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--primary-color);
    -webkit-filter: blur(100px);
    filter: blur(100px);
    opacity: 0.5;
}

.service-slider-wrapper {
    margin: -20px 0;
}

.service-slider {
    padding: 40px 0;
    overflow: hidden;
}
.service-slider .swiper-slide {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.service-slider .swiper-slide-active {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.service-slider .swiper-slide-active .service-item::after {
    width: 100%;
}

.service-item {
    position: relative;
    background-color: #f5f5f5;
    padding: 60px;
    border-radius: 25px;
    text-align: center;
}
.service-item::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 0 0 5px 5px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.service-item .service-icon {
    width: 70px;
    height: 70px;
    margin: -80px auto 40px auto;
    background-color: #ffffff;
    border: 1px solid var(--primary-color);
    padding: 15px;
    border-radius: 6px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    font-size: 35px;
}
.service-item .service-icon i {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.service-item .service-content .title {
    margin-bottom: 15px;
}

/*-------------------------------------------------
    [ ### feature block ]
*/
.feature-section {
    overflow: hidden;
}

.feature-content-wrapper .feature-content-header .sub-title {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.feature-content-wrapper .feature-content-header .title {
    margin-bottom: 40px;
}
.feature-content-wrapper .feature-item-wrapper {
    margin-bottom: -60px;
}
.feature-content-wrapper .feature-item-wrapper .feature-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
}
.feature-content-wrapper .feature-item-wrapper .feature-item::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 0;
    left: 30px;
    bottom: 0;
    border-left: 2px dashed var(--primary-color);
    z-index: -1;
}
.feature-content-wrapper
    .feature-item-wrapper
    .feature-item:last-child::before {
    display: none;
}
.feature-content-wrapper .feature-item-wrapper .feature-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 30px;
    border-radius: 5px;
    border: 1px solid transparent;
    background: #fcfbfb;
}
.feature-content-wrapper .feature-item-wrapper .feature-content {
    width: calc(100% - 60px);
    padding-left: 30px;
}

.feature-thumb {
    position: relative;
}
.feature-thumb::before,
.feature-thumb::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 360px;
    height: 360px;
    background: -webkit-gradient(
        linear,
        left bottom,
        left top,
        from(#fff),
        to(transparent)
    );
    background: linear-gradient(to top, #fff, transparent);
    border-radius: 50%;
    opacity: 0.03;
    z-index: -1;
}
.feature-thumb::before {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#fff),
        to(transparent)
    );
    background: linear-gradient(to bottom, #fff, transparent);
    width: 440px;
    height: 440px;
    opacity: 0.02;
    z-index: -2;
}

/*-------------------------------------------------
    [ ### faq block ]
*/
.faq-wrapper .faq-header {
    margin-bottom: 30px;
}
.faq-wrapper .faq-header .sub-title {
    font-size: 11px;
    padding: 5px 10px;
    background-color: #ffffff;
    text-transform: uppercase;
    border-radius: 7px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}
.faq-wrapper .faq-item {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.faq-wrapper .faq-item .faq-title {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    font-size: 18px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0;
}
@media only screen and (max-width: 575px) {
    .faq-wrapper .faq-item .faq-title {
        font-size: 16px;
    }
}
.faq-wrapper .faq-item .faq-title .title {
    width: calc(100% - 40px);
    display: inline-block;
    margin-bottom: 0;
}
.faq-wrapper .faq-item .faq-content {
    padding: 20px;
    display: none;
}
@media only screen and (max-width: 575px) {
    .faq-wrapper .faq-item .faq-content {
        margin-top: 15px;
    }
}
.faq-wrapper .faq-item .faq-content p {
    font-size: 16px;
}
.faq-wrapper .faq-item .right-icon {
    display: block;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    position: relative;
}
.faq-wrapper .faq-item .right-icon::before,
.faq-wrapper .faq-item .right-icon::after {
    position: absolute;
    content: "";
    background: #ffffff;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.faq-wrapper .faq-item .right-icon::before {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
}
.faq-wrapper .faq-item .right-icon::after {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
}
.faq-wrapper .faq-item.active .faq-content {
    display: block;
}
.faq-wrapper .faq-item.active.open .right-icon::before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}
.faq-wrapper .faq-item.open .right-icon::before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}

/*-------------------------------------------------
    [ ### app block ]
*/
.app-content {
    text-align: center;
}
.app-content .sub-title {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.app-content .title {
    margin-bottom: 20px;
}
.app-content .app-btn {
    margin: -5px;
    margin-top: 40px;
}
.app-content .app-btn a {
    margin: 5px;
}

/*-------------------------------------------------
    [ ### contact block ]
*/
.contact-form-area {
    margin-right: 40px;
}
@media only screen and (max-width: 991px) {
    .contact-form-area {
        margin-right: 0;
    }
}
.contact-form-area .contact-header {
    margin-bottom: 30px;
}
.contact-form-area .contact-header .sub-title {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-form textarea {
    min-height: 150px;
}

.contact-information {
    margin-bottom: 40px;
}
.contact-information p {
    font-size: 18px;
}
@media only screen and (max-width: 1199px) {
    .contact-information p {
        font-size: 14px;
    }
}

.contact-widget-box {
    background: rgba(255, 255, 255, 0.01);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
}
@media only screen and (max-width: 1199px) {
    .contact-widget-box {
        padding: 15px;
    }
}

.contact-widget-item-wrapper {
    margin-bottom: -20px;
}
.contact-widget-item-wrapper .contact-widget-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.contact-widget-item-wrapper .contact-widget-item .contact-widget-icon {
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    color: #1f1f1f;
    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;
}
.contact-widget-item-wrapper .contact-widget-item .contact-widget-icon svg {
    fill: #c4c6c7;
}
.contact-widget-item-wrapper .contact-widget-item .contact-widget-content {
    padding-left: 10px;
}
.contact-widget-item-wrapper
    .contact-widget-item
    .contact-widget-content
    .sub-title {
    font-size: 14px;
}

/*-------------------------------------------------
    [ ### account block ]
*/
.account-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    overflow: 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-area {
    /* background-color: #ffffff; */
    border-radius: 5px;
    position: relative;
    background-position: bottom;
    /* padding: 50px 30px; */
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    width: 500px;
    margin-left: auto;
    margin-right: auto;
    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;
    overflow: hidden;
    overflow-y: auto;
}
@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 p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 30px;
}

.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;
    gap: 37px;
}
.or-area .or-line {
    height: 1px;
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.or-area .or-title {
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 500;
}

.account-form-btn {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.account-form-btn a {
    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;
    text-align: center;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin: 8px;
}
.account-form-btn a.facebook {
    background-color: #3a5795;
}
.account-form-btn a.google {
    background-color: #4285f4;
}
.account-form-btn a.apple {
    background-color: #f9f5f5;
}
.account-form-btn a svg {
    fill: #1f1f1f;
}

.account-item label {
    font-weight: 500;
    font-size: 15px;
}
.account-item label a {
    font-weight: 600;
    background: var(--primary-color);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.terms-item label {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 0;
}
.terms-item label a {
    font-weight: 600;
    background: var(--primary-color);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: underline;
}

.account-footer p {
    font-size: 15px;
}

.account-thumb {
    position: relative;
}
.account-thumb .account-thumb-title {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}
.account-thumb::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(19%, rgba(2, 1, 1, 0)),
        color-stop(95%, #0a0b0f)
    );
    background-image: linear-gradient(
        180deg,
        rgba(2, 1, 1, 0) 19%,
        #0a0b0f 95%
    );
    border-radius: 5px;
}

.account-logo {
    margin-bottom: 30px;
    text-align: center;
}

.show_hide_password {
    position: relative;
}
.show_hide_password input {
    padding-right: 60px;
}
.show_hide_password .show-pass {
    position: absolute;
    font-size: 14px;
    top: 12px;
    right: 30px;
    cursor: pointer;
}
.show_hide_password .show-pass.two {
    top: 45px;
}

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

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

.sidebar {
    width: 265px;
    position: fixed;
    background: #f8f8f8;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-right: 1px solid #dddddd;
    /* border-radius: 15px 0 0; */
    /* padding: 10px; */
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 20;
    overflow: hidden;
    overflow-y: auto;
    /* -webkit-transition: all 0.3s;
    transition: all 0.3s; */
}
.sidebar.active {
    width: 60px;
}
@media only screen and (max-width: 1199px) {
    .sidebar.active {
        width: 250px;
        left: 0;
    }
}
.sidebar.active .sidebar-menu .sidebar-menu-item a {
    padding: 1px 2px;;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.navtop.active .sidebar-menu .sidebar-menu-item a {
    padding: 1px 2px;
    -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: 1px 2px;
        -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;
    }
}
@media only screen and (max-width: 1199px) {
    .sidebar {
        left: -300px;
    }
}
/* .sidebar:hover {
    width: 265px;
} */
.sidebar:hover .sidebar-menu .sidebar-menu-item a {
    padding: 1px 2px;
    /* -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; */
}
/* .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;
}

.sidebar-inner {
    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;
    height: 100%;
}

.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: 15px;
    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: 120px;
}
.sidebar-logo .sidebar-menu-bar {
    font-size: 14px;
    color: #252626;
    background-color: transparent;
    display: none;
}

.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-bottom: 5px;
    border-radius: 10px;
}
.sidebar-menu .sidebar-menu-item::after {
    position: absolute;
    content: "";
    top: 0;
    right: -15px;
    width: 2px;
    height: 0;
    background-color: var(--primary-color);
    -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: #242323;
    font-weight: 600;
    padding: 1px 2px;
    font-size: 13px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.sidebar-menu .sidebar-menu-item a .menu-icon {
    width: 36px;
    height: 36px;
    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: 20px;
    margin-right: 2px;
    -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: "Font Awesome 5 Free";
    color: #1f1f1f;
    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: #1f1f1f;
    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: 1px;
}
.sidebar-menu
    .sidebar-menu-item
    .sidebar-submenu
    .sidebar-menu-item
    a
    .menu-icon {
    font-size: 18px;
    margin-right: 18px;
}
.sidebar-menu .sidebar-menu-item:hover {
    letter-spacing: 1px;
    color: var(--primary-color);
    font-weight: 600;
}
.sidebar-menu .sidebar-menu-item.active {
    background-color: rgba(131, 207, 255, 0.301);
    /* color: #ffffff; */
}
.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: #feffff;
    color: #11aee7;
}
.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: var(--primary-color);
    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: 10px;
    padding: 15px;
    min-height: 184px;
    min-width: 218px;
    overflow: hidden;
}
.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: #edebeb;
    border-radius: 10px;
    font-size: 18px;
    margin-bottom: 15px;
}
.sidebar-doc-box .sidebar-doc-content .title {
    margin-bottom: 2px;
}
.sidebar-doc-box .sidebar-doc-content p {
    font-size: 14px;
    color: #1f1f1f;
}

.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: 100vh;
}

.navbar-wrapper {
    background-color: #0751c1;
    padding: 4px 0;
    margin-left: 230px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    /* box-shadow: 1px 2px1px .6px rgba(0, 0, 0, 0.1); */
}
.navbar-wrapper.active {
    margin-left: 60px;
}
.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 35px;
}
@media only screen and (max-width: 1199px) {
    .dashboard-title-part {
        padding: 0 20px 0 10px;
    }
}
@media only screen and (max-width: 767px) {
    .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: #1f1f1f;
    background-color: transparent;
}
.dashboard-title-part .title {
    margin-bottom: 0;
}
.dashboard-title-part p {
    font-size: 12px;
}
.font-bold-cards {
    font-weight: 700;
}
.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;
}
@media only screen and (max-width: 767px) {
    .dashboard-title-part .right {
        /* padding-top: 20px; */
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

.dashboard-path {
    font-size: 15px;
}
.dashboard-path .main-path {
    color: #1f1f1f;
    font-weight: 600;
}

.header-search-wrapper {
    width: 350px;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.1);
    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: 1px solid var(--primary-color);
}
.header-search-wrapper input::-webkit-input-placeholder {
    color: rgb(251, 251, 251);
}
.header-search-wrapper input::-moz-placeholder {
    color: rgb(251, 251, 251);
}
.header-search-wrapper input:-ms-input-placeholder {
    color: rgb(251, 251, 251);
}
.header-search-wrapper input::-ms-input-placeholder {
    color: rgb(251, 251, 251);
}
.header-search-wrapper input::placeholder {
    color: rgb(251, 251, 251);
}
.header-search-wrapper span {
    position: absolute;
    font-size: 16px;
    line-height: 38px;
    color: rgb(251, 251, 251);
    left: 10px;
    top: 1px;
}

.header-user-wrapper {
    margin: 8px;
}
.header-user-wrapper .header-user-thumb {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    overflow: hidden;
}
.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: 270px;
    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;
}
@media only screen and (max-width: 575px) {
    .dashboard-header-wrapper {
        display: block;
    }
    .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"] {
        width: 100%;
        margin-top: 10px;
    }
}
.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: 10px 25px;
    font-size: 14px;
    border-radius: 8px;
}

.dashboard-item-slider {
    overflow: hidden;
}

.dashbord-item {
    background: #ffffff;
    border-radius: 10px;
    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;
    font-size: 14px;
}
.dashbord-item .dashboard-content .sub-title span {
    font-weight: 700;
}
.dashbord-item .dashboard-content .title {
    margin-bottom: 0;
    font-size: 20px;
}
@media only screen and (max-width: 1199px) {
    .dashbord-item .dashboard-content .title {
        font-size: 18px;
    }
}
.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;
    color: var(--primary-color);
    border-radius: 10px;
    font-size: 40px;
    overflow: hidden;
}
.dashbord-item .dashboard-icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

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

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

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

.apexcharts-grid line {
    stroke: rgba(255, 255, 255, 0.1) !important;
}

.apexcharts-graphical line {
    stroke: rgba(255, 255, 255, 0.1) !important;
}

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

.chart-area-footer {
    border-color: rgba(255, 255, 255, 0.1);
}

.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: #272626;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}
@media only screen and (max-width: 575px) {
    .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: #f1f1f1;
}
.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: #f1f1f1;
}

.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: 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: rgba(255, 255, 255, 0.05);
    color: #0751c1;
    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: 575px) {
    .dashboard-list-right {
        text-align: left;
        padding-top: 15px;
    }
}
.dashboard-list-right .main-money {
    font-size: 16px;
    /* color: var(--primary-color); */
    color: #018cd2;
    font-weight: 650;
}
.dashboard-list-right .exchange-money {
    margin-bottom: 0;
    font-weight: 500;
    letter-spacing: 1px;
}

.dashboard-list-item-wrapper {
    background-color: #ffffff;
    /* padding: 8px 8px; */
    border-radius: 10px;
    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.89);
}
.dashboard-list-item-wrapper .preview-list-wrapper .preview-list-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.89);
}
.dashboard-list-item-wrapper
    .preview-list-wrapper
    .preview-list-item
    .preview-list-user-wrapper
    .preview-list-user-icon {
    color: #1f1f1f;
    border: 1px solid rgba(255, 255, 255, 0.89);
}

.preview-list-header {
    margin-bottom: 20px;
}
.preview-list-header .preview-status-btn-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: -3px;
}
.preview-list-header .preview-status-btn-wrapper .preview-status-btn {
    margin: 3px;
}
.preview-list-header .preview-status-btn-wrapper .preview-status-btn button,
.preview-list-header
    .preview-status-btn-wrapper
    .preview-status-btn
    input[type="button"],
.preview-list-header
    .preview-status-btn-wrapper
    .preview-status-btn
    input[type="reset"],
.preview-list-header
    .preview-status-btn-wrapper
    .preview-status-btn
    input[type="submit"] {
    padding: 5px 20px;
    font-size: 12px;
    border-radius: 3px;
}

.preview-list-wrapper {
    background: linear-gradient(
        127.09deg,
        #f3f6f5 19.41%,
        rgba(255, 255, 255, 0.89) 76.65%
    );
    border-radius: 10px;
    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 rgb(234, 231, 231);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px;
}
@media only screen and (max-width: 575px) {
    .preview-list-wrapper .preview-list-item {
        display: block;
    }
}
.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 #098bd6;
    color: #098bd6;
    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;
}
@media only screen and (max-width: 575px) {
    .preview-list-right {
        text-align: left;
        padding-top: 10px;
    }
}

.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;
    }
}
.support-chat-area {
    height: 85%;
}

.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;
    object-fit: cover;
    border-radius: 50%;
    vertical-align: bottom;
    border: 3px solid rgba(255, 255, 255, 0.89);
}
.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: #f1f1f1;
    overflow: hidden;
}
@media only screen and (max-width: 991px) {
    .support-card-wrapper {
        width: 100%;
    }
}
.support-card-wrapper .card-header {
    background-color: #ffffff;
    border-radius: 10px 10px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-container {
    position: relative;
    -ms-touch-action: auto;
    touch-action: auto;
    overflow-y: auto;
    min-height: 73vh;
    max-height: 73vh;
    padding: 30px 15px;
    display: flex;
    flex-direction: column-reverse;
}
.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: rgb(12, 122, 195);
    color: #ffffff;
}
.chat-container .media.media-chat-reverse .media-body p::before {
    left: auto;
    right: -10px;
    background-color: rgb(12, 122, 195);
    -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: 9.5px 8px;
    background-color: #f8f9fa;
    font-size: 13px;
    border-radius: 10px;
    color: #1f1f1f;
}
.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: #f8f9fa;
    width: 12px;
    height: 17px;
}
.chat-container .media .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    vertical-align: bottom;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.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: #ffffff;
    border-top: 1px solid rgb(251, 251, 251);
    border-radius: 0 0 10px 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: #f8f9fa;
    border-radius: 25px;
    min-height: 60px;
}
.chat-form .publisher .publisher-input::-webkit-input-placeholder {
    color: rgb(251, 251, 251);
}
.chat-form .publisher .publisher-input::-moz-placeholder {
    color: rgb(251, 251, 251);
}
.chat-form .publisher .publisher-input:-ms-input-placeholder {
    color: rgb(251, 251, 251);
}
.chat-form .publisher .publisher-input::-ms-input-placeholder {
    color: rgb(251, 251, 251);
}
.chat-form .publisher .publisher-input::placeholder {
    color: rgb(251, 251, 251);
}
.chat-form .publisher .chatbox-send-part {
    width: 45px;
}
.chat-form .publisher .chatbox-send-part .chat-submit-btn {
    padding: 0;
    width: 49px;
    height: 49px;
    line-height: 48px;
    display: inline-block;
    text-align: center;
    background-color: #0751c1;
    color: #ffffff;
    border-radius: 50%;
    font-size: 22px;
}
.chat-form .publisher .publisher-btn {
    width: 45px;
    height: 45px;
    background-color: #efefef;
    color: #0751c1;
    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: #fdfdfd;
    width: 550px;
    -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;
        z-index: 9;
    }
}
@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: 18px;
    background-color: #ffffff;
    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: 0 20px 20px 20px;
    min-height: 80vh;
    max-height: 80vh;
    overflow-y: auto;
    margin-top: 20px;
}
.support-profile-wrapper .support-profile-list li {
    padding: 15px;
    border-bottom: 1px solid #dedddd;
}
.support-profile-wrapper .support-profile-list li p {
    line-height: 2em;
    margin-top: 10px;
    margin-bottom: 15px;
}
.support-profile-list {
    background: linear-gradient(
        127.09deg,
        #fefefe 19.41%,
        rgba(254, 253, 252, 0.49) 76.65%
    );
    border-radius: 5px;
    padding-top: 10px;
}
.support-profile-box {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

.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-thumbsidnav.profile-wallpaper
    .avatar-preview {
    width: 20%;
    height: 250px;
    border-radius: 0;
}

.profile-settings-wrapper
    .preview-thumb.profile-wallpaper
    .avatar-preview
    .profilePicPreview {
    width: 20%;
    height: 250px;
    border-radius: 10px 10px 0 0;
    border: none;
    background-color: #ffffff;
    position: relative;
}
.profile-settings-wrapper
    .preview-thumb.profile-wallpaper
    .avatar-preview
    .profilePicPreview {
    width: 100%;
    height: 250px;
    border-radius: 10px 10px 0 0;
    border: none;
    background-color: #ffffff;
    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: 50px;
    height: 50px;
    border-radius: 50%;
}

.profile-thumb-content .profile-thumb .avatar-preview .profilePicPreview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffffff;
    background-size: cover;
    background-repeat: no-repeat;
}
.profile-thumb-content
    .profile-thumb
    .avatar-preview
    .profilePicPreviewthumbsidnav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffffff;
    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);
}

.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: 190px;
    margin: 0 auto;
}
.play-store-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

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

.notification-icon {
    position: relative;
    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(62, 62, 62, 0.849);
    color: #f8f8f8;
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    border-radius: 10px;
    font-size: 20px;
}

.notification-icon .bling-area {
    position: absolute;
    top: -6px;
    right: 12px;
}

.notification-icon .bling-area .bling {
    position: relative;
    z-index: 1;
    height: 5px;
    width: 5px;
    text-align: center;
    border-radius: 50%;
    background: var(--primary-color);
    display: inline-block;
}

.notification-wrapper {
    position: absolute;
    top: 47px;
    right: 0;
    width: 280px;
    max-height: 400px;
    overflow-y: auto;
    background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    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;
    }
}
.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;
    border-radius: 50%;
    overflow: hidden;
}
.notification-wrapper .notification-list li .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.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: #f8f9fa;
    padding: 2px 10px;
    border-radius: 10px;
    display: flex;
    text-align: center;
}
@media only screen and (max-width: 575px) {
    .exchange-area {
        padding: 10px 15px;
    }
}

/*--------------------------------------------------------------
    [ ## Blog ]
--------------------------------------------------------------*/
/*-------------------------------------------------
    [ ### blog block ]
*/
.blog-item {
    background-color: #ffffff;
    border-radius: 5px;
    overflow: hidden;
}
.blog-item .blog-thumb {
    position: relative;
    padding-left: 50px;
    overflow: hidden;
}
.blog-item .blog-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.blog-item .blog-thumb .blog-tags {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 13px;
    font-weight: 500;
    background: #ffffff;
    display: inline-block;
}
.blog-item .blog-thumb .blog-tags a {
    padding: 7px 10px;
}
.blog-item .blog-thumb .blog-tags .tags {
    background-color: #f8f9fa;
}
.blog-item .blog-content {
    padding: 40px 30px;
    padding-left: 50px;
}
.blog-item .blog-content .title a {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.blog-item .blog-content .title a:hover {
    color: var(--primary-color);
}
.blog-item .blog-content .blog-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
    position: absolute;
    top: 10px;
    left: -40px;
    -webkit-transform: rotate(-90deg) translateX(-50%);
    transform: rotate(-90deg) translateX(-50%);
}
.blog-item .blog-content .blog-info .author {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 15px;
    font-weight: 500;
}
.blog-item .blog-content .blog-info .date {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.7;
}
.blog-item .blog-content .blog-btn {
    padding-top: 10px;
}

.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: "Font Awesome 5 Free";
    width: 20px;
    height: 20px;
    line-height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    font-size: 11px;
    color: #212121;
    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(255, 255, 255, 0.1);
    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: #ffffff;
    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: 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;
}
.category-widget-box .category-list li a {
    display: block;
}
.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 span {
    font-size: 14px;
    margin-bottom: 5px;
}

.tag-widget-box .tag-list {
    margin: -5px;
}
.tag-widget-box .tag-list li {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    border-radius: 5px;
    padding: 3px 15px;
    margin: 5px;
}

.white-popup {
    background: #fcfbfb;
}
.white-popup .card {
    background: #fcfbfb;
}
.mfp-close-btn-in .mfp-close {
    color: #212121;
}
.kyc-data li {
    padding-top: 15px;
}
.kyc-data li .kyc-title {
    color: #212121;
    font-weight: 600;
}
.escrow-profile-header {
    display: block !important;
    padding: 12px 18px !important;
}
.escrow-details-btn-wrapper {
    margin: -3px;
}
.escrow-details-btn-wrapper button {
    padding: 8px 20px !important;
    font-size: 15px;
    width: 48%;
    margin: 3px;
}
/* rtl ltr  */
.rtl {
    direction: rtl;
}
.rtl .ms-auto {
    margin-left: 0 !important;
    margin-right: auto !important;
}
.rtl .progress-wrap {
    right: auto;
    left: 30px;
}
.rtl .header-bottom-area .navbar-collapse .main-menu li {
    padding-right: 0;
    padding-left: 40px;
}
.rtl .banner-content .title span {
    text-align: right;
}
.rtl .banner-content .title span b {
    left: auto;
    right: 0;
}
.rtl .banner-content .title span::after {
    right: auto;
    left: 0;
}
.rtl .banner-form .banner-form-group {
    padding-left: 0;
    padding-right: 20px;
}
.rtl .banner-form .banner-form-group .left-field .field-input .field-select {
    padding-left: 20px;
    margin-left: 5px;
    border: 1px solid var(--primary-color);
}
.rtl .banner-form .banner-form-group .right-field {
    margin-left: 0;
    margin-right: -0.1rem;
}
.rtl .banner-form .banner-form-group .right-field .field-input::before {
    left: auto;
    right: 0;
}
.rtl .banner-form .banner-form-group .field-price .field-input .field-preffix {
    padding-right: 0;
    padding-left: 15px;
}
.rtl
    .banner-form
    .banner-form-group
    .field-price
    .field-input
    .field-preffix::after {
    right: auto;
    left: 0;
}
.rtl .banner-form .banner-form-group .select-field {
    padding-left: 0;
    padding-right: 15px;
}
.rtl .banner-form .banner-form-group .select-field::before {
    left: auto;
    right: 0;
}
.rtl .banner-form .banner-form-group .select-field .field-select {
    padding-left: 20px;
}
.rtl .about-content .about-list li i {
    margin-right: 0;
    margin-left: 20px;
}
.rtl .feature-content-wrapper .feature-item-wrapper .feature-content {
    padding-left: 0;
    padding-right: 30px;
}
.rtl .feature-content-wrapper .feature-item-wrapper .feature-item::before {
    left: auto;
    right: 30px;
}
.rtl .blog-item .blog-thumb {
    padding-left: 0;
    padding-right: 50px;
}
.rtl .blog-item .blog-thumb .blog-tags {
    right: auto;
    left: 0;
}
.rtl .blog-item .blog-content {
    padding-left: 0;
    padding-right: 50px;
}
.rtl .blog-item .blog-content .blog-info {
    left: auto;
    right: -40px;
}
.rtl .widget-box .widget-title::before {
    left: auto;
    right: -30px;
}
.rtl .single-popular-item .popular-item-content {
    padding-left: 0;
    padding-right: 20px;
}
.rtl .contact-widget-item-wrapper .contact-widget-item .contact-widget-content {
    padding-left: 0;
    padding-right: 10px;
}
.rtl .show_hide_password .show-pass {
    right: auto;
    left: 30px;
}
.rtl .show_hide_password input {
    padding-right: 25px;
    padding-left: 60px;
}
.rtl .custom-check-group label::before {
    margin-right: 0;
    margin-left: 8px;
}
.rtl .custom-check-group input:checked + label::after {
    left: auto;
    right: 7px;
}
.rtl .sidebar-menu .sidebar-menu-item a .menu-icon {
    margin-right: 0;
    /* margin-left: 10px; */
}
.rtl .dashboard-title-part .left .icon {
    margin-right: 0;
    margin-left: 10px;
}
.rtl .apexcharts-legend-marker {
    margin-right: 0;
    margin-left: 3px;
}
.rtl .toggle-container {
    margin-right: 0;
    margin-left: 10px;
}
.rtl .notification-wrapper .notification-list li .content {
    padding-left: 0;
    padding-right: 10px;
}
.rtl .notification-wrapper .notification-list li .content .sub-title {
    text-align: right;
}
.rtl .dashboard-list-user-wrapper .dashboard-list-user-content {
    padding-left: 0;
    padding-right: 20px;
}
.rtl .sidebar {
    left: auto;
    right: 0;
}
@media only screen and (max-width: 1199px) {
    .rtl .sidebar {
        right: -300px;
    }
}
@media only screen and (max-width: 1199px) {
    .rtl .sidebar.active {
        right: 0;
    }
}
.rtl .body-wrapper {
    padding-right: 270px;
    padding-left: 20px;
}
.rtl .body-wrapper.active {
    padding-left: 10px;
    padding-right: 85px;
}
@media only screen and (max-width: 1199px) {
    .rtl .body-wrapper {
        padding-right: 15px;
    }
    .rtl .body-wrapper.active {
        padding-right: 15px;
    }
}
.rtl .navbar-wrapper {
    margin-left: 0;
    margin-right: 230px;
}
.rtl .navbar-wrapper.active {
    margin-right: 60px;
}
@media only screen and (max-width: 1199px) {
    .rtl .navbar-wrapper {
        margin-right: 0;
    }
    .rtl .navbar-wrapper.active {
        margin-right: 0;
    }
}
.rtl .dashboard-title-part {
    padding: 0 35px 0 20px;
}
@media only screen and (max-width: 767px) {
    .rtl .dashboard-title-part .right {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}
@media only screen and (max-width: 575px) {
    .rtl .dashboard-list-right {
        text-align: right;
    }
}
.rtl .preview-list-user-wrapper .preview-list-user-content {
    padding-left: 0;
    padding-right: 20px;
}
@media only screen and (max-width: 575px) {
    .rtl .preview-list-right {
        text-align: right;
    }
}
.rtl .chat-container .media .media-body p::before {
    left: auto;
    right: -10px;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
}
.rtl .chat-container .media.media-chat-reverse .media-body p::before {
    left: -10px;
    right: auto;
    clip-path: polygon(100% 100%, 100% 0, 0 50%);
}
.rtl .chat-container .media.media-chat-reverse {
    margin-left: 0;
    margin-right: auto;
}
.rtl .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3),
.input-group:not(.has-validation)
    > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-radius: 10px;
}

.rtl
    .input-group
    > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
        .valid-feedback
    ):not(.invalid-tooltip):not(.invalid-feedback) {
    border-radius: 10px;
}

.ltr .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3),
.input-group:not(.has-validation)
    > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-radius: 10px;
}

.ltr
    .input-group
    > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
        .valid-feedback
    ):not(.invalid-tooltip):not(.invalid-feedback) {
    border-radius: 10px;
}

.rtl
    .input-group
    > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
        .valid-feedback
    ):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-right: 0;
    border-radius: 10px;
}

/* Shared base selector for input group items */
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3),
.input-group:not(.has-validation)
    > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-radius: 10px;
}

/* RTL-specific styling */
[dir="rtl"]
    .input-group:not(.has-validation)
    > .dropdown-toggle:nth-last-child(n + 3),
[dir="rtl"]
    .input-group:not(.has-validation)
    > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-radius: 10px;
}

[dir="rtl"]
    .input-group
    > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
        .valid-feedback
    ):not(.invalid-tooltip):not(.invalid-feedback) {
    border-radius: 10px;
}

/* LTR-specific styling */
[dir="ltr"]
    .input-group:not(.has-validation)
    > .dropdown-toggle:nth-last-child(n + 3),
[dir="ltr"]
    .input-group:not(.has-validation)
    > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-radius: 10px;
}

[dir="ltr"]
    .input-group
    > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
        .valid-feedback
    ):not(.invalid-tooltip):not(.invalid-feedback) {
    border-radius: 10px;
}

.rtl .btn-close {
    margin-right: auto;
    margin-left: 0;
}
.rtl .sidebar:hover .sidebar-menu .sidebar-menu-item .menu-icon {
    margin-right: 0;
    margin-left: 10px;
}
.rtl .close {
    right: auto !important;
    left: 10px;
}
.rtl .header-action {
    margin-left: 0;
}

/*-------------------------------------------------
    [ ## cookie block ]
*/
.cookie-main-wrapper {
    background-color: rgb(233, 233, 233);
    padding: 20px 30px;
    border-radius: 20px;
    position: fixed;
    bottom: -300px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 80%;
    z-index: 999;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    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;
}
@media only screen and (max-width: 767px) {
    .cookie-main-wrapper {
        display: block;
        width: 90%;
    }
}
.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;
    }
}
@media only screen and (max-width: 575px) {
    .cookie-main-wrapper .cookie-content {
        width: 100%;
        display: block;
    }
}
.cookie-main-wrapper .cookie-content svg {
    width: 40px;
    height: auto;
    fill: rgb(125, 211, 252);
    margin-right: 15px;
}
@media only screen and (max-width: 575px) {
    .cookie-main-wrapper .cookie-content svg {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
.cookie-main-wrapper .cookie-content p {
    width: calc(100% - 40px);
    color: #212121;
    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;
}
@media only screen and (max-width: 575px) {
    .cookie-main-wrapper .cookie-content p {
        width: 100%;
        display: block;
    }
}
@media only screen and (max-width: 767px) {
    .cookie-main-wrapper .cookie-btn-area {
        margin-top: 20px;
    }
}
.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: #212121;
    padding: 0.5rem 0.75rem;
    background-color: rgb(249, 249, 248);
    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(252, 252, 251, 0.986);
}
/*-------------------------------------------------
    [ ## cookie block end ]
*/
.space-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}
.qr-code-thumb {
    width: 220px;
    height: 220px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fdfdfd;
}
.qr-code-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
