    /*
    *
    * Theme : trendspherepro
    * Theme Creator: SMM Panel BD Lab 
    * Coded By : Shihab Mia
    * Whatsapp : +8801928884100
    * Email: smmpanelbdlab.com@gmail.com
    * Telegram: @shahinbhuiyan
    */

    /*
    * Modules button in new order page
    */
    .cool-button {
        display: inline-block;
        position: relative;
        background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
        color: #ffffff;
        font-size: 18px;
        font-weight: bold;
        padding: 16px 30px;
        border: none;
        border-radius: 15px;
        cursor: pointer;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 128, 255, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .cool-button:hover {
        transform: scale(1.07);
        box-shadow: 0 12px 30px rgba(0, 128, 255, 0.5);
    }

    .cool-button::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, #00c6ff33 10%, transparent 60%);
        animation: shine 3s infinite linear;
        z-index: 0;
    }

    .cool-button span {
        position: relative;
        z-index: 1;
    }

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

    /*
    * Perfectpanel Module
    */
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        }

        body, html {
        height: 100%;
        }

        .pp-modules-body {
        font-family: 'Segoe UI', sans-serif;
        background: linear-gradient(to bottom right, #f5f7fa, #c3cfe2);
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
        }

        .pp-title {
        color: #333;
        margin-bottom: 40px;
        font-size: 2.2rem;
        text-align: center;
        }

        .pp-module-grid {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 32px;
        max-width: 1200px;
        width: 100%;
        }

        .pp-module-box {
        border-radius: 20px;
        padding: 24px;
        color: white;
        width: 22%;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        transition: transform 0.4s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        }

        .pp-module-box:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .pp-fast-service {
        background: linear-gradient(135deg, #00c6ff, #0072ff);
        }

        .pp-top-service {
        background: linear-gradient(135deg, #7F00FF, #E100FF);
        }

        .pp-ai-support {
        background: linear-gradient(135deg, #ff416c, #ff4b2b);
        order: 2;
        }

        .pp-module-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
        font-weight: bold;
        }

        .pp-module-description {
        font-size: 1rem;
        margin-bottom: 16px;
        line-height: 1.5;
        }

        .pp-feature-list {
        list-style: none;
        padding: 0;
        margin-bottom: 20px;
        }

        .pp-feature-list li {
        margin-bottom: 6px;
        padding-left: 20px;
        position: relative;
        }

        .pp-feature-list li::before {
        content: "✅";
        position: absolute;
        left: 0;
        top: 0;
        }

        .pp-price {
        background: rgba(255, 255, 255, 0.2);
        padding: 10px 16px;
        border-radius: 50px;
        font-weight: bold;
        font-size: 1rem;
        text-align: center;
        display: inline-block;
        transition: background 0.3s ease;
        }

        .pp-module-box:hover .pp-price {
        background: rgba(255, 255, 255, 0.35);
        }

        .pp-order-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 18px;
    background-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: background 0.3s ease;
    text-align: center;
    }

    .pp-module-box:hover .pp-order-btn {
    background-color: rgba(255, 255, 255, 0.4);
    }



    /*
    * News & Updates
    */
    .unique-body-container {
        margin: 0;
        padding: 1.5rem;
        background: linear-gradient(135deg, #f1f8ff 0%, #c3e2fa 100%);
        font-family: 'Arial', sans-serif;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        }

        .unique-telegram-card {
        backdrop-filter: blur(15px) saturate(150%);
        -webkit-backdrop-filter: blur(15px) saturate(150%);
        background-color: rgba(255, 255, 255, 0.7);
        border-radius: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
        max-width: 600px;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        transition: 0.3s ease;
        }

        .unique-telegram-title {
        font-size: 1.6rem;
        color: #0088cc;
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-weight: 600;
        margin-bottom: 1.2rem;
        }

        .unique-telegram-content {
        font-size: 1.1rem;
        color: #333;
        line-height: 1.8;
        white-space: pre-line; /* Keeps the line breaks from the Telegram post */
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 1rem;
        padding: 1.5rem;
        }

        .unique-telegram-description {
        font-size: 1rem;
        color: #555;
        white-space: pre-line; /* Ensures new lines from the Telegram post appear correctly */
        margin-top: 1rem;
        }

        .unique-telegram-timestamp {
        margin-top: 1rem;
        font-size: 0.9rem;
        color: #777;
        text-align: right;
        }

        .unique-telegram-loading {
        text-align: center;
        font-size: 1rem;
        color: #888;
        }

    .unique-telegram-description img {
    max-width: 100%;
    border-radius: 0.75rem;
    margin-top: 1rem;
    display: block;
    height: auto;
    }
    /*
    * End Style of News & Updates
    */





    /*
    * Slideshow Style
    */


    .custom-slideshow-container {
        width: 100%;
        max-width: 1000px;
        margin: auto;
        padding: 20px 0;
        position: relative;
    }

    .custom-title {
        font-size: 28px;
        font-weight: bold;
        text-align: center;
        margin-bottom: 20px;
        color: #2c3e50;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }

    .custom-slideshow {
        width: 100%;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        overflow: hidden;
        position: relative;
    }

    .custom-slide {
        display: none;
        justify-content: center; /* Horizontally center the image */
        align-items: center; /* Vertically center the image */
        width: 100%;
        height: 500px; /* Set height for slides */
        position: relative;
    }

    .custom-slide.active {
        display: flex; /* Show active slide */
    }

    .custom-slideshow img {
        width: 500px; /* Fixed width for images */
        height: 500px; /* Fixed height for images */
        object-fit: contain; /* Ensure the full image is visible without distortion */
        border-radius: 8px;
        display: block;
        cursor: pointer; /* Pointer cursor to indicate image is clickable */
        transition: transform 0.3s ease; /* Smooth transition for zoom effect */
    }

    .custom-prev, .custom-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.6);
        color: white;
        border: none;
        padding: 10px 15px;
        font-size: 24px;
        font-weight: bold;
        cursor: pointer;
        border-radius: 50%;
        transition: 0.3s;
    }

    .custom-prev { left: 10px; }
    .custom-next { right: 10px; }

    .custom-prev:hover, .custom-next:hover {
        background: rgba(0, 0, 0, 0.8);
    }

    .custom-slide-text {
        position: absolute;
        bottom: 20px;
        left: 50%; /* Horizontally center the text */
        transform: translateX(-50%); /* Center the text by adjusting its position */
        color: white;
        font-size: 20px;
        font-weight: bold;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 10px 20px;
        border-radius: 5px;
        transition: opacity 0.3s ease-in-out;
        text-align: center; /* Ensure text is centered */
    }

    .zoomed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        cursor: zoom-out;
    }

    .zoomed img {
        max-width: 90%;
        max-height: 90%;
        transition: transform 0.3s ease;
    }
    /*
    * End of slideshow
    */




    /*
    * Fast Services
    */

    body.fast-services-body {
                display: flex;
                justify-content: center;
                align-items: center;
                height: 100vh;
                background-color: #f4f4f4;
                font-family: Arial, sans-serif;
                flex-direction: column;
            }
            .fast-services-note {
                background: #7993ca;
                padding: 10px 15px;
                border-left: 4px solid #647ca9;
                box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
                max-width: fit-content;
                font-size: 14px;
                border-radius: 6px;
                color: white;
                display: flex;
                align-items: center;
                gap: 5px;
                white-space: nowrap;
                margin-bottom: 20px;
            }
            .fast-services-note i {
                font-size: 16px;
            }
            .fast-services-note a {
                color: #ffeb99;
                text-decoration: none;
                font-weight: bold;
            }
            .fast-services-note a:hover {
                text-decoration: underline;
            }

    /*
    * end Fast Services
    */




    .navbar-default {
        background-color: #6279a5
    }

    .navbar .navbar-nav>li>a {
        color: #fff
    }

    * {
        margin: 0;
        padding: 0
    }

    body {
        padding: 0
    }

    body,
    p,
    a,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    li,
    ul,
    span {
        font-family: 'Poppins', sans-serif
    }

    #top-sec {
        padding: 120px 0;
        background-color: #6279a5
    }

    #top-sec .row {
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: space-between
    }

    .title-txt {
        font-size: 24px;
        color: #fff;
        font-weight: 700;
        margin-bottom: 0
    }

    .main-title {
        font-weight: 700;
        color: #fff
    }

    #top-sec .main-title {
        margin-top: 0;
        line-height: 1.4;
        font-size: 32px
    }

    .top-sec-ul {
        padding-left: 15px;
        margin: 10px 0
    }

    .top-sec-ul li p {
        color: #fff;
        font-size: 16px;
        margin-bottom: 0
    }

    .top-sec-ul li::marker {
        color: #fff
    }

    .btn.btn-primary,
    .btn.btn-secondary {
        background-color: #325d88;
        border-color: #325d88;
        font-size: 18px;
        font-weight: 500;
        color: #fff;
        border-radius: 100px;
        padding: 15px 30px;
        box-shadow: 0 5px 10px 0 #325d8850
    }

    .frm-wrap {
        background-color: rgba(255, 255, 255, 77%);
        box-shadow: -10px 10px 10px 0 rgba(0, 0, 0, 42%);
        padding: 10px 25px;
        border-radius: 12px
    }

    .frm-title {
        color: #050505;
        font-size: 36px;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 5px
    }

    .frm-txt {
        font-size: 16px;
        color: #050505;
        font-weight: 400;
        margin-bottom: 10px
    }

    .frm-wrap .checkbox label,
    .frm-wrap .have-acc,
    .frm-wrap .have-acc a {
        color: #919191
    }

    .form-group {
        position: relative
    }

    .inpt-icon {
        position: absolute;
        left: 5px;
        top: 50%;
        transform: translateY(-50%);
        height: 40px;
        width: 40px;
        line-height: 40px;
        color: #fff;
        background-color: #6279a5;
        text-align: center;
        border-radius: 100px
    }

    .form-control {
        height: 50px;
        border: 0;
        box-shadow: none;
        border-radius: 100px;
        font-size: 16px;
        color: #325d88;
        font-weight: 400
    }

    .inpt-icon+.form-control {
        padding-left: 55px
    }

    .form-control::placeholder {
        color: #c3c3c3;
        font-size: 14px;
        font-weight: 400;
        font-style: italic
    }

    .flex-box {
        display: flex;
        justify-content: space-between;
        align-content: center;
        align-items: center
    }

    #social {
        padding: 80px 0
    }

    .social-img {
        margin: 0 auto
    }

    .checkbox label {
        color: #fff
    }

    .reset-pswd {
        color: #fff;
        font-size: 14px
    }

    .have-acc {
        display: block;
        color: #fff
    }

    .have-acc a {
        color: #fff;
        font-weight: 500
    }

    .frm-wrap .btn.btn-primary {
        width: 100%;
        margin: 5px auto
    }

    .guest .navbar-default .container {
        background-color: #fff;
        border-radius: 100px
    }

    .guest .navbar .navbar-nav>li>a {
        font-size: 16px;
        font-weight: 400;
        color: #050505;
        border: 0;
        min-width: 100px;
        text-align: center;
        margin-left: 5px;
        margin-right: 5px
    }

    #social .media {
        background-color: #fff;
        box-shadow: 0 4px 0 3px #dedede;
        border-radius: 100px;
        padding: 15px
    }

    #social .media-left,
    #social .media-right,
    #social .media-body {
        vertical-align: middle
    }

    #social .media-body .media-heading {
        font-size: 24px;
        font-weight: 600;
        color: #000;
        padding-left: 10px
    }

    #how {
        padding: 80px 0
    }

    .title {
        font-size: 48px;
        font-weight: 700;
        color: #000;
        margin-bottom: 45px;
        line-height: 1.3
    }

    .how-wrap {
        position: relative;
        padding: 40px 20px
    }

    .how-iner {
        background-color: #f8f5f0;
        border-radius: 200px;
        padding: 25px 12px;
        box-shadow: -1px 1px 0 1px #6279a5
    }

    .how-body {
        display: flex;
        align-items: center;
        align-content: center;
        margin: 55px 15px 45px
    }

    .how-num {
        font-size: 48px;
        font-weight: 700;
        color: #222021;
        margin: 0
    }

    .how-txt {
        font-size: 16px;
        font-weight: 400;
        color: #222021;
        line-height: 1.3;
        margin: 0;
        padding-left: 6px
    }

    .how-wrap::after {
        content: '';
        background-image: url(https://i.imgur.com/hiiZSSk.png);
        width: 262px;
        height: 193px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: auto;
        background-size: 262px 214px
    }

    .how-wrap::before {
        content: '';
        background-image: url(https://i.imgur.com/dxcICpy.png);
        width: 260px;
        height: 193px;
        position: absolute;
        top: auto;
        left: -2px;
        right: 0;
        margin: auto;
        background-size: 260px 215px;
        bottom: 0;
        background-repeat: no-repeat;
        background-position: bottom center
    }

    .how-icon {
        width: 160px;
        height: 160px;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
        background-color: #6279a5;
        color: #fff;
        font-size: 60px;
        border-radius: 100px;
        margin: auto;
        box-shadow: -10px 10px 10px 0 rgba(0, 0, 0, 30%)
    }

    .row.how-row .col-sm-3:nth-child(2n+1) .how-wrap::before {
        display: none
    }

    .row.how-row .col-sm-3:nth-child(2n) .how-wrap::after {
        display: none
    }

    .how-wrap::after,
    .how-wrap::before {
        width: 305px;
        background-size: 303px 221px;
        left: 50%;
        transform: translateX(-50%);
        background-repeat: no-repeat;
        height: 221px
    }

    #providing {
        padding: 80px 0;
        background-color: #f8f5f0;
        overflow: hidden
    }

    #providing p {
        font-size: 18px;
        color: #050505;
        line-height: 1.4
    }

    #providing .title {
        margin-bottom: 20px
    }

    .btn.btn-secondary {
        background-color: #6279a5;
        border-color: #6279a5;
        box-shadow: 0 5px 10px 0 #6279a5
    }

    #providing .btn.btn-secondary {
        margin-top: 26px
    }

    #faq {
        padding: 80px 0;
        background-color: #fff
    }

    #faq .title {
        text-align: center
    }

    #faq .faq-row {
        margin-top: 80px
    }

    #faq .panel-default,
    #faq .panel-heading {
        background-color: #f8f5f0;
        border-color: transparent !important;
        border: transparent !important;
        color: #000
    }

    #faq .panel-default {
        border-radius: 12px !important;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 9%)
    }

    #faq .panel-heading {
        font-size: 18px;
        font-weight: 600;
        color: #071648;
        line-height: 1.4;
        text-shadow: none;
        padding: 0
    }

    #faq .panel-heading a {
        padding: 20px 45px 20px 20px;
        display: block;
        font-size: 18px;
        font-weight: 700;
        color: #000;
        line-height: 1.4;
        text-shadow: none;
        position: relative
    }

    #faq .panel-heading a[aria-expanded="true"] {
        background: transparent;
        color: #000;
        border-radius: 20px 20px 0 0
    }

    #faq .panel-default .panel-heading {
        border-radius: 12px;
        background-color: transparent
    }

    #faq .panel-default {
        border-radius: 20px !important;
        margin-bottom: 20px;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 9%)
    }

    .panel-body {
        border-top: 0 !important;
        color: #676767;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.6
    }

    #faq .panel-heading a::after {
        content: '+';
        position: absolute;
        font-size: 30px;
        font-weight: 400;
        right: 15px;
        top: 20px;
        width: 29px;
        height: 29px;
        background-color: #294e73;
        border-radius: 100%;
        display: grid;
        place-items: center;
        line-height: 0 !important;
        color: #fff
    }

    #faq .panel-heading a[aria-expanded="true"]::after {
        content: '-'
    }

    #faq .panel-body {
        color: #000;
        font-size: 16px
    }

    #client {
        padding: 80px 0;
        background-color: #f8f5f0
    }

    .client-slide {
        background-color: #fff;
        border-radius: 12px;
        padding: 25px 15px;
        margin: 7.5px
    }

    #client .stars {
        margin: 0 0 20px
    }

    .client-txt {
        font-size: 18px;
        color: #000;
        font-weight: 400;
        line-height: 1.4
    }

    .client-name span {
        font-size: 20px;
        font-weight: 600;
        color: #000;
        text-align: right;
        width: max-content;
        margin-left: auto;
        position: relative;
        display: block;
        background-color: #fff;
        padding: 0 10px;
        z-index: 1
    }

    .client-name {
        position: relative;
        margin-bottom: 0
    }

    .client-name::after {
        content: '';
        width: 80%;
        height: 5px;
        background-color: #7993c9;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 0
    }

    .slick-center .client-slide {
        background-color: #325d88
    }

    .slick-center .client-slide .client-name span {
        background-color: #325d88;
        color: #fff
    }

    .slick-center .client-slide .client-txt {
        color: #fff
    }

    #client .slick-dots {
        display: flex !important;
        flex-wrap: wrap;
        align-content: center;
        align-items: center;
        justify-content: center;
        list-style: none;
        margin-top: 35px
    }

    #client .slick-dots li button {
        font-size: 0;
        width: 30px;
        height: 30px;
        margin: 0 5px;
        background-color: #c7c7c7;
        box-shadow: 0 0 0 1px transparent;
        border-radius: 100px;
        border: 7px solid #f8f5f0
    }

    #client .slick-dots li.slick-active button {
        background-color: #6279a5;
        box-shadow: 0 0 0 1px #6279a5
    }

    .ftr-top {
        background-color: #6279a5;
        padding: 80px 0 20px
    }

    .ftr-txt {
        color: #fff;
        font-size: 18px;
        font-weight: 400;
        line-height: 1.4;
        margin: 25px 0
    }

    .ftr-title {
        font-size: 20px;
        font-weight: 700;
        color: #050505;
        border-bottom: 1px solid #325d88;
        padding-bottom: 15px;
        margin-bottom: 15px
    }

    .ftr-nav {
        list-style: none;
        padding: 0;
        margin: 0
    }

    .ftr-nav li a {
        display: block;
        color: #fff;
        font-size: 18px;
        margin-bottom: 10px;
        text-decoration: none !important
    }

    .newsletter .btn.btn-primary {
        width: 100%
    }

    .ftr-btm {
        background-color: #325d88;
        padding: 18px 0
    }

    .copyright {
        font-size: 14px;
        font-weight: 400;
        color: #fff;
        margin-bottom: 0
    }

    .providing-img-wrap img {
        display: block;
        margin-left: auto
    }

    .search-row .dropdown button {
        width: 100%;
        background-color: #6279a5;
        border-color: #6279a5;
        text-align: left
    }

    .guest .navbar-default,
    .guest .navbar-default .container {
        background-color: #6279a5
    }

    .guest .navbar .navbar-nav>li>a {
        color: #fff;
        font-size: 16px;
        font-weight: 400;
        border: 0;
        min-width: 100px;
        text-align: center;
        margin-left: 5px;
        margin-right: 5px
    }

    .page-title {
        font-size: 73px;
        color: #000;
        margin-bottom: 50px;
        line-height: 1.3
    }

    .search-row .input-group {
        background-color: #f8f5f0;
        border-radius: 100px;
        position: relative;
        height: 57px;
        width: 100%
    }

    .search-row .input-group .form-control {
        background: transparent;
        height: 57px;
        padding-left: 25px;
        font-size: 16px;
        color: #707070;
        box-shadow: none !important;
        border: 0
    }

    .search-row .input-group .input-group-btn button {
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 0;
        color: #6279a5;
        font-size: 25px
    }

    .search-row .input-group .input-group-btn {
        position: absolute;
        right: 35px;
        top: 50%;
        transform: translateY(-50%)
    }

    .auth .search-row .input-group .form-control {
        background-color: #fff;
        border-radius: 12px
    }

    .auth .search-row .input-group .input-group-btn {
        z-index: 2
    }

    .social-plat {
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        align-items: center;
        justify-content: center;
        list-style: none;
        padding: 0;
        margin: 25px auto
    }

    .social-plat li a {
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        align-items: center;
        font-size: 18px;
        font-weight: 700;
        color: rgba(0, 0, 0, 45%)
    }

    .social-plat li a img {
        margin-right: 8px
    }

    .social-plat li a {
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        align-items: center;
        font-size: 18px;
        font-weight: 700;
        color: rgba(0, 0, 0, 45%);
        margin: 0 4.5px
    }

    .social-plat li a:hover {
        text-decoration: none;
        color: #000
    }

    table {
        border-collapse: separate;
        border-spacing: 0 10px
    }

    .table thead tr th {
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        background-color: #3d79aa
    }

    .table thead tr th,
    .table tbody tr td {
        padding: 15px 20px !important
    }

    .table thead tr th:first-child,
    .table tbody tr td:first-child {
        border-radius: 8px 0 0 8px
    }

    .table thead tr th:last-child,
    .table tbody tr td:last-child {
        border-radius: 0 8px 8px 0
    }

    .table>thead>tr>th {
        vertical-align: middle;
        border-bottom: 0
    }

    .table tbody tr td {
        background-color: #f8f5f0;
        border: 0
    }

    .table>thead>tr>th,
    .table>tbody>tr>th,
    .table>tfoot>tr>th,
    .table>thead>tr>td,
    .table>tbody>tr>td,
    .table>tfoot>tr>td {
        vertical-align: middle
    }

    .table tbody tr td {
        color: #000;
        font-size: 14px
    }

    .ser-id {
        color: #000;
        padding: 8px 20px;
        border-radius: 100px;
        min-width: 50px;
        text-align: center
    }

    .refill {
        background-color: #3d79aa;
        color: #fff;
        padding: 11px 19px;
        border-radius: 100px;
        min-width: 100px;
        display: block;
        text-align: center;
        margin: 0;
        line-height: 1;
        box-shadow: none !important;
        font-size: 14px;
        padding: 16px
    }

    .service-description .btn.btn-primary {
        font-size: 14px;
        padding: 7px 20px;
        box-shadow: 0 0 16px 3px rgba(61, 121, 171, 30%);
        background-color: #6279a5;
        border-color: #6279a5
    }

    .service-name {
        max-width: 100%;
        min-width: 100%
    }

    .table tbody tr td.service-name i {
        color: #6279a5
    }

    .service-description .modal-header {
        background-color: #93c34b;
        border: 0;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    .service-description .modal-header::before {
        display: none
    }

    .service-description .modal-header .modal-title {
        color: #fff;
        width: fit-content
    }

    .service-description .modal-header .close {
        position: absolute;
        right: 15px;
        top: 15px
    }

    .service-description .modal-body {
        background-color: #f8f5f0
    }

/* Enhanced Service Details Styling for Min/Max/Average Time inside SERVICE dropdown ONLY */
.service-details {
    font-size: 0.85em;
    color: #666;
    margin-left: 10px;
    font-style: italic;
}

/* Service option container for enhanced layout - SERVICE DROPDOWN ONLY */
.service-option-container {
    padding: 6px 10px;
    line-height: 1.3;
    margin-bottom: 2px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    border-radius: 0px;
    position: relative;
    background-color: rgba(213, 111, 176, 0.02);
}

.service-option-container:last-child {
    border: none;
}

.service-option-container:hover {
    background-color: rgba(213, 111, 176, 0.08);
    border: none;
    border-radius: 0px;
    padding: 6px 10px; /* keep height stable on hover */
    box-shadow: 0 2px 8px rgba(213, 111, 176, 0.3);
}

.service-name-enhanced {
    font-weight: 400;
    color: #000000;
    margin-bottom: 0px;
    background: #faf8f4;
    padding: 4px 10px;
    border-radius: 9999px;
    display: inline-block;
    border: 1px solid #faf8f4;
    font-size: 14px;
    transition: all 0.2s ease;
    position: relative;
}

/* Create highlighted background for service ID numbers */
.service-name-enhanced::before {
    content: none; /* remove low-opacity ID box */
}

/* Ensure text stays on top of the highlight */
.service-name-enhanced {
    z-index: 1;
    position: relative;
}

.service-option-container:hover .service-name-enhanced {
    background: #7892c8;
    color: #ffffff;
}

.service-details-enhanced {
    margin-top: 2px;
    margin-left: 0;
    font-size: 0.82em;
    background: transparent;
    padding: 0;
    border-radius: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    border: none;
    box-shadow: none;
}

/* Service detail pills base styling */
.service-detail-min,
.service-detail-max,
.service-detail-time {
    display: inline-flex;
    align-items: center;
    margin: 2px 8px 2px 0;
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    color: #000000 !important;
    background: #faf8f4 !important;
    border: none !important;
    transition: all 0.2s ease;
}

.service-option-container:hover .service-detail-min,
.service-option-container:hover .service-detail-max,
.service-option-container:hover .service-detail-time {
    background: #7892c8 !important;
    color: #ffffff !important;
}

.service-details-content {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
}
/* Pill highlight for Service ID inside dropdown options */
.service-id-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 10px;
    margin-right: 8px;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    color: #fff !important;
    background: #7892c8 !important;
    border-radius: 9999px; /* oblong */
    white-space: nowrap;
}

/* Enhanced dropdown option styling for SERVICE details ONLY */
#orderform-service option {
    padding: 8px 10px !important;
    white-space: pre-line;
    line-height: 1.5;
    font-family: inherit;
    position: relative;
    background: transparent; /* remove low-opacity left bar */
    border-left: none;
}

#orderform-service option.enhanced-option {
    background: linear-gradient(to right, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
}

/* NEVER affect category dropdown - keep original styling */
#orderform-category option {
    /* Original styling preserved */
    font-family: inherit;
}

/* Custom select dropdown styling for SERVICE details ONLY */
#orderform-service.nice-select .option,
#orderform-service + .chosen-container .chosen-drop .chosen-results li,
#orderform-service.selectpicker + .dropdown-menu li,
#orderform-service + .bootstrap-select .dropdown-menu li {
    line-height: 1.4;
    padding: 8px 10px;
    white-space: normal;
    border: none;
    border-radius: 0px;
    margin-bottom: 2px;
    background-color: rgba(213, 111, 176, 0.02);
    position: relative;
}

/* Highlight service ID in custom dropdown options */
#orderform-service.nice-select .option::before,
#orderform-service + .chosen-container .chosen-drop .chosen-results li::before,
#orderform-service.selectpicker + .dropdown-menu li::before,
#orderform-service + .bootstrap-select .dropdown-menu li::before {
    content: none; /* remove low-opacity left bar */
}

#orderform-service.nice-select .option:hover,
#orderform-service + .chosen-container .chosen-drop .chosen-results li:hover,
#orderform-service.selectpicker + .dropdown-menu li:hover,
#orderform-service + .bootstrap-select .dropdown-menu li:hover {
    background: linear-gradient(to right, #e3f2fd 0%, #bbdefb 100%);
    border: none;
    box-shadow: 0 2px 8px rgba(213, 111, 176, 0.3);
}

#orderform-service.nice-select .option .service-details-enhanced,
#orderform-service + .chosen-container .chosen-drop .chosen-results li .service-details-enhanced,
#orderform-service.selectpicker + .dropdown-menu li .service-details-enhanced,
#orderform-service + .bootstrap-select .dropdown-menu li .service-details-enhanced {
    margin-top: 2px;
    font-size: 0.82em;
    color: inherit;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* space between pills */
    margin-left: 0;
}

/* Service dropdown pills (scoped) */
#orderform-service.nice-select .option .service-detail-min,
#orderform-service.nice-select .option .service-detail-max,
#orderform-service.nice-select .option .service-detail-time,
#orderform-service + .chosen-container .chosen-drop .chosen-results li .service-detail-min,
#orderform-service + .chosen-container .chosen-drop .chosen-results li .service-detail-max,
#orderform-service + .chosen-container .chosen-drop .chosen-results li .service-detail-time,
#orderform-service.selectpicker + .dropdown-menu li .service-detail-min,
#orderform-service.selectpicker + .dropdown-menu li .service-detail-max,
#orderform-service.selectpicker + .dropdown-menu li .service-detail-time,
#orderform-service + .bootstrap-select .dropdown-menu li .service-detail-min,
#orderform-service + .bootstrap-select .dropdown-menu li .service-detail-max,
#orderform-service + .bootstrap-select .dropdown-menu li .service-detail-time {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    color: #000 !important;
    background: #7892c8 !important;
    border: none !important;
}

/* Select2 specific enhanced styling - SERVICE dropdown ONLY */
#orderform-service + .select2-container .select2-results__option {
    padding: 8px 12px !important;
    line-height: 1.4 !important;
    border: none !important;
    border-radius: 0px !important;
    margin-bottom: 2px !important;
    background-color: rgba(213, 111, 176, 0.02) !important;
    position: relative !important;
}

/* Highlight service ID in Select2 options */
#orderform-service + .select2-container .select2-results__option::before {
    content: none; /* remove low-opacity left bar */
}

#orderform-service + .select2-container .select2-results__option:hover {
    background: linear-gradient(to right, #e3f2fd 0%, #bbdefb 100%) !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(213, 111, 176, 0.3) !important;
}

#orderform-service + .select2-container .select2-results__option .service-option-container {
    width: 100%;
}

#orderform-service + .select2-container .select2-results__option .service-name-enhanced {
    font-weight: 600;
    color: #000;
    font-size: 12px;
    margin-bottom: 2px;
    background: #7892c8;
    padding: 4px 10px;
    border-radius: 9999px;
    display: inline-block;
    border: none;
}

#orderform-service + .select2-container .select2-results__option .service-details-enhanced {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border-left: 0;
    font-size: 0.82em;
    color: inherit;
    margin-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* space between pills */
}

#orderform-service + .select2-container .select2-results__option .service-detail-min,
#orderform-service + .select2-container .select2-results__option .service-detail-max,
#orderform-service + .select2-container .select2-results__option .service-detail-time {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    color: #000 !important;
    background: #7892c8 !important;
    border: none !important;
}

/* Default select styling for SERVICE details ONLY */
select#orderform-service {
    line-height: 1.5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

select#orderform-service option {
    padding: 12px 16px;
    white-space: pre-line;
    font-family: inherit;
    line-height: 1.6;
}

/* Additional styling for icons in service details */
.service-details-enhanced .service-details-content {
    letter-spacing: 0.3px;
}

/* Responsive adjustments - SERVICE dropdown ONLY */
@media (max-width: 768px) {
    #orderform-service .service-details-enhanced {
        font-size: 0.75em;
        padding: 1px 4px;
    }
    
    #orderform-service .service-option-container {
        padding: 2px 0;
    }
    
    #orderform-service option {
        padding: 8px 10px !important;
    }
}

.sidebar-wrap {
    background-color: #6279a5;
    width: 250px;
    position: fixed;
        left: 0;
        top: 0;
        z-index: 9;
        height: 100%;
        transition: all .5s ease;
        background-image: url(https://storage.perfectcdn.com/hc35c3/qmxz1b392ww6gqwz.png);
        background-size: cover
    }

    .page-wrap {
        padding: 15px 15px 15px 265px;
        border-radius: 8px;
        transition: all .5s ease
    }

    .sidebar-logo {
        padding: 25px 50px;
        text-align: center;
        margin-bottom: 10px
    }

    .sidebar {
        padding-left: 30px;
        list-style: none;
        margin: 0
    }

    .sidebar li a {
        border-radius: 100px 0 0 100px;
        display: block;
        font-size: 16px;
        font-weight: 500;
        color: #fff;
        padding: 12px 0 12px 15px;
        margin-bottom: 12px;
        position: relative
    }

    .sidebar li a .navbar-icon {
        color: #325d88
    }

    .sidebar li.active a,
    .sidebar li a:hover,
    .sidebar li.active a:hover {
        background-color: #f8f5f0;
        color: #325d88;
        text-decoration: none
    }

    .sidebar li.active a::after,
    .sidebar li a:hover::after,
    .sidebar li.active a:hover::after,
    .sidebar li a:hover::before,
    .sidebar li.active a:hover::before,
    .sidebar li.active a::before {
        content: '';
        position: absolute;
        background-image: url(https://i.imgur.com/DRsNBsM.png);
        width: 28px;
        height: 28px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        top: -27px;
        right: -1px
    }

    .sidebar li.active a::before,
    .sidebar li a:hover::before,
    .sidebar li.active a:hover::before {
        top: auto;
        bottom: -27px;
        transform: rotate(-90deg)
    }

    .auth {
        background-color: #f8f5f0
    }

    .page-wrap .navbar-default li a {
        font-size: 15px;
        font-weight: 500;
        color: #fff
    }

    .page-wrap .navbar-default li a i {
        color: #356086;
        font-size: 18px;
        margin-right: 5px
    }

    .page-wrap .navbar-default li.welcome a {
        font-size: 18px;
        font-weight: 700;
        color: #fbfbfb
    }

    .page-wrap .navbar-default {
        background-color: #6279a5;
        border-radius: 8px
    }

    .wrapper.toggle .sidebar-wrap {
        left: -250px;
        transition: all .5s ease;
        z-index: 9999
    }

    .wrapper.toggle .page-wrap {
        padding-left: 15px;
        transition: all .5s ease
    }

    .auth .well {
        background-color: #fbfbfb;
        border: 1px solid #dfd7ca;
        border-radius: 8px
    }

    .auth .nav-tabs {
        border: 0;
        margin-bottom: 20px
    }

    .auth .nav-tabs li a {
        color: #325d88;
        font-size: 14px;
        font-weight: 500;
        border-radius: 8px;
        border: 1px solid #d3e3b4;
        margin-right: 8px;
        background-color: #d3e3b4
    }

    .auth .nav-tabs li.active a,
    .auth .nav-tabs li a:hover {
        background-color: #6279a5;
        color: #fff
    }

    .row.order-tab-row .order-left_edited .nav-tabs a>span {
        display: flex;
        justify-content: flex-start;
        align-items: center
    }

    .auth .nav-tabs li a i {
        margin-right: 5px
    }

    .auth .control-label {
        color: #325d88;
        font-size: 12px;
        font-weight: 400;
        margin-bottom: 0
    }

    .auth .form-control,
    .auth #service_description .panel-body {
        background-color: #fbfbfb;
        border: 1px solid #dfd7ca;
        border-radius: 8px;
        height: 44px
    }

    .auth #service_description .panel-body {
        height: auto
    }

    .auth .btn.btn-primary {
        display: block;
        width: 100%;
        padding: 12px 30px;
        border-radius: 8px
    }

    .result-box .media {
        background-color: #fff;
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 15px;
        border: 1px solid #dfd7ca
    }

    .result-box .media .media-heading {
        font-size: 16px;
        font-weight: 600;
        color: #000
    }

    .result-box .media .media-heading+h5 {
        font-size: 14px;
        font-weight: 600;
        color: #000
    }

    .result-box .media .media-right i {
        font-size: 20px;
        color: #325d88
    }

    .result-box .media-left,
    .result-box .media-right,
    .result-box .media-body {
        vertical-align: middle
    }

    .toggle .page-wrap .navbar-default li.pinner a i::before {
        content: "\f347"
    }

    .social-plat li a i {
        color: #6279a5;
        font-size: 20px;
        margin-right: 12px
    }

    .social-plat.justify-content {
        justify-content: space-between
    }

    .auth #service-table .btn.btn-primary {
        padding: 6.5px 15px;
        border-radius: 100px;
        min-width: 130px;
        font-size: 16px
    }

    .auth .form-control,
    .auth #service_description .panel-body {
        color: #000;
        font-weight: 500
    }

    .cat-name td {
        background-color: #6279a5 !important;
        border-radius: 8px !important;
        color: #fff !important;
        text-align: center;
        font-size: 18px !important;
        letter-spacing: 1px
    }

    .refill.no-refill {
        background-color: red
    }

    .btn.btn-primary.border-btn {
        background: #f8f5f0;
        border-color: #f8f5f0;
        box-shadow: 0 5px 10px 0 #325d8850;
        color: #325d88
    }

    .btn.btn-primary.border-btn:hover {
        box-shadow: 0 5px 10px 0 #ffffff50
    }

    #top-sec .btn.btn-primary.border-btn {
        margin-right: 12px;
        background-color: rgba(50, 93, 126, 50%);
        color: #fff
    }

    .new-wrap {
        background-color: #fff;
        padding: 15px 15px 0;
        border-radius: 8px;
        margin-bottom: 15px;
        border: 1px solid #dfd7ca
    }

    .news-title {
        font-size: 14px;
        font-weight: 600;
        color: #000;
        margin-bottom: 30px
    }

    .news-list li {
        position: relative;
        padding-left: 80px;
        margin-bottom: 40px
    }

    .news-date {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 13px;
        color: #7c7c71;
        font-weight: 300
    }

    .single-news p {
        font-size: 12px;
        font-weight: 500;
        color: #000;
        margin-bottom: -25px;
        margin-left: -25px
    }

    .news-price {
        color: #6279a5
    }

    .news-list li::after {
        content: attr(num);
        background-color: #6279a5;
        color: #fff;
        width: 50px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%)
    }

    .news-list {
        list-style: none
    }

    .news-list li::before {
        content: '';
        height: 50px;
        width: 2px;
        position: absolute;
        left: 25px;
        background-image: url(https://i.imgur.com/Ss7AY2p.png);
        background-repeat: repeat-y
    }

    .news-list li:last-child::before {
        display: none
    }

    .new-inner {
        height: 120px;
        overflow: visible;
        padding-top: 8px
    }

    .service-name {
        min-width: 350px;
        max-width: 350px;
        width: 350px
    }

    #orderform-service option {
        display: block;
        white-space: normal;
        word-break: break-word;
        width: 200px
    }

    #dropdownMenu3 .float-right,
    #order-dd .float-right {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%)
    }

    #order-cItem,
    #order-sItem {
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 5px 10px;
        width: 100%;
        text-align: left;
        color: #000;
        border-bottom: 1px solid #6279a5
    }

    #order-dd #order-services {
        white-space: nowrap
    }

    #order-dd {
        overflow: hidden
    }

    #order-dd #order-services {
        white-space: nowrap;
        width: 96%;
        display: block;
        overflow: hidden
    }

    #order-cItem:hover,
    #order-sItem:hover {
        background-color: #6279a5;
        color: #fff
    }

    #category-drop,
    #orders-drop {
        height: 500px;
        overflow-y: auto
    }

    #order-category,
    #order-services {
        font-size: 14px
    }

    #category-drop {
        width: 100%
    }

    .brand-category {
        display: flex;
        align-content: center;
        align-items: center;
        background-color: #d3e3b4;
        border-radius: 5px;
        padding: 5px;
        margin-bottom: 15px;
        font-size: 14px;
        font-weight: 500;
        color: #325d88;
        border: 1px solid #d3e3b4
    }

    .brand-category:hover,
    .brand-category.active {
        background-color: #6279a5;
        color: #fff;
        text-decoration: none
    }

    .brand-category .icon {
        font-size: 18px;
        margin-right: 10px
    }

    .new-order-cat {
        color: #325d88;
        font-size: 16px;
        font-weight: 700
    }

    .guest .navbar-brand img {
        padding: 0 0
    }

    .sidebar-logo img {
        display: block;
        margin: auto
    }

    .user-blnce {
        padding: 0 25px 25px;
        text-align: center
    }

    .user-blnce .blnce {
        font-size: 28px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 0
    }

    .user-blnce .user {
        color: #fff;
        font-size: 14px;
        line-height: 1
    }

    #order-cItem,
    #order-sItem {
        font-size: 13px
    }

    #order-sItem>span,
    #order-sItem b,
    #order-dd #order-services b,
    #order-cItem>span {
        display: none
    }

    #order-category span,
    #order-services>span {
        display: none
    }

    .side-toggle {
        position: fixed;
        left: 5px;
        top: 30px;
        background-color: #325d88;
        height: 35px;
        width: 35px;
        border-radius: 25px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        align-content: center;
        justify-content: center;
        font-size: 27px;
        color: #fff;
        z-index: 999999
    }

    .toggle .side-toggle {
        transform: rotate(180deg);
        transition: .2s ease-in-out
    }

    .welcome a span {
        font-size: 14px;
        letter-spacing: 1.4px;
        line-height: 1
    }

    .welcome .welcom-blnce {
        font-size: 18px
    }

    .page-wrap .navbar-default li a i {
        font-size: 20px;
        color: #325d88
    }

    .page-wrap .navbar-default li a:hover {
        border-color: transparent !important
    }

    .page-wrap .navbar-default li a.dropdown-toggle,
    .page-wrap .navbar-default li .dropdown-menu li a,
    .page-wrap .navbar-default .dropdown li a {
        color: #325d88
    }

    .page-wrap .navbar-default li .dropdown-menu li.active a {
        color: #fff
    }

    .user-blnce {
        background-color: #6279a5;
        width: 80%;
        margin: auto;
        border-radius: 8px;
        margin-bottom: 25px
    }

    .user-blnce .user {
        color: #fff;
        font-size: 14px;
        line-height: 1
    }

    #order-form select {
        font-size: 14px;
        font-weight: 400
    }

    .result-box .media .media-heading+h5 {
        font-size: 12px;
        font-weight: 400
    }

    #order_check .form-group__label-title {
        font-size: 12px;
        font-weight: 400
    }

    .result-box .media .media-heading {
        font-size: 14px;
        font-weight: 600
    }

    .result-box .media {
        margin-bottom: 5px;
        padding: 8px 15px
    }

    .user-blnce .user {
        margin-bottom: 0
    }

    .user-blnce {
        padding-bottom: 12px
    }

    .user-blnce {
        padding: 0;
        border-radius: 12px
    }

    .user-blnce .blnce {
        background-color: #325d88;
        border-radius: 12px 12px 0 0;
        padding: 4px
    }

    .user-blnce .user {
        padding: 12px;
        font-size: 16px
    }

    .auth .form-group {
        margin-bottom: 6px
    }

    .auth .navbar-right li a {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        align-content: center;
        color: #325d88
    }

    .auth .navbar-right li a[href="/addfunds"] {
        background-color: #f8f5f0
    }

    .sidebar li a .navbar-icon {
        color: #fff
    }

    .sidebar li.active a .navbar-icon,
    .sidebar li a:hover .navbar-icon,
    .sidebar li.active a:hover .navbar-icon {
        color: #325d88
    }

    .auth #service-table .btn.btn-primary {
        font-size: 14px
    }

    .auth #service-table .service-description .btn.btn-primary {
        width: max-content
    }

    .auth .sidebar-logo img {
        filter: brightness(100) !important
    }

    .ftr-top img.img-rseponsive {
        width: 100%
    }

    .auth textarea.form-control {
        height: 180px
    }

    .ftr2-top {
        background-color: #325d88;
        padding: 70px 0 35px
    }

    .ftr2-nav {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        list-style: none;
        padding: 0
    }

    .ftr2-nav li a {
        color: #fff;
        font-size: 16px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-right: 15px
    }

    .ftr2-nav li a i {
        width: 45px;
        height: 45px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        background-color: #6279a5;
        justify-content: center;
        border-radius: 100px;
        font-size: 20px;
        margin-right: 12px
    }

    .payop-wrap {
        width: 50%;
        margin: 25px auto;
        background-color: #fff;
        padding: 15px;
        border-radius: 15px
    }

    .payop-wrap img {
        max-width: 100px
    }

    .payop-wrap p {
        text-align: center
    }

    .payop-wrap img {
        margin: 12px auto
    }

    .ftr2-bottom {
        background-color: #6279a5;
        padding: 15px;
        text-align: center
    }

    .copyight {
        color: #fff;
        font-size: 16px;
        margin: 0
    }

    .top-sec-status-wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        align-content: center;
        background-color: #fff;
        padding: 8px;
        border-radius: 100px;
        box-shadow: 0 3px 0 2px #325d88
    }

    .top-sec-status-icon {
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        align-items: center;
        justify-content: center;
        border-radius: 100px;
        background-color: #325d88;
        width: 45px;
        height: 45px;
        color: #fff;
        font-size: 30px
    }

    .top-sec-status-txt {
        flex: 0 0 calc(100% - 60px);
        max-width: calc(100% - 60px);
        margin-bottom: 0;
        padding-left: 15px;
        color: #050505;
        font-size: 18px;
        font-weight: 600
    }

    #top-sec {
        padding-bottom: 0;
        position: relative
    }

    .top-sec-status {
        margin-top: 35px;
        position: relative;
        z-index: 1
    }

    #top-sec.home-top-sec::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        background-color: #fff;
        height: 35px;
        bottom: 0;
        z-index: 0
    }

    #getstarted .title {
        margin-bottom: 12px;
        font-size: 32px
    }

    .row.steps-row {
        margin-top: 50px
    }

    .steps-wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        align-content: center;
        margin-bottom: 20px
    }

    .steps-left {
        flex: 0 0 135px;
        max-width: 135px;
        background-color: #6279a5;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        align-content: center;
        justify-content: center;
        color: #fff;
        height: 135px;
        border-radius: 100px;
        border: 1px dashed #6279a5;
        box-shadow: inset 0 0 0 20px #fff;
        font-size: 40px;
        font-weight: 600
    }

    .steps-right {
        flex: 0 0 calc(100% - 135px);
        max-width: calc(100% - 135px);
        padding-left: 20px
    }

    .steps-title {
        color: #050505;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px
    }

    .steps-txt {
        color: #848484;
        font-size: 14px;
        line-height: 1.4;
        margin: 0
    }

    #getstarted {
        padding: 80px 0;
        background-color: #f7f7f7
    }

    #ourservices {
        padding: 80px 0;
        background-color: #f7f7f7
    }

    .ourserivces-img img {
        display: block;
        margin: auto
    }

    #ourservices .btn.btn-primary {
        margin-top: 30px
    }

    .row.ourservices-row {
        margin-top: 80px
    }

    .row.ourservices-row .title {
        margin-bottom: 12px
    }

    .ourservices-infobox {
        background-color: #fff;
        border: 1px solid #e1e1e1;
        border-radius: 12px;
        padding: 15px;
        margin-top: 30px;
        min-height: 300px
    }

    .ourservices-infobox-title {
        color: #000;
        font-size: 18px;
        font-weight: 600;
        line-height: 1.4;
        margin-bottom: 15px
    }

    .ourservices-infobox-txt {
        color: #848484;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 0
    }

    #delivery {
        padding: 80px 0;
        background-color: #fff
    }

    .delivery-title {
        color: #000;
        font-size: 24px;
        line-height: 1.4;
        margin-bottom: 12px
    }

    .delivery-txt {
        color: #848484;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px
    }

    .delivery-box {
        margin-bottom: 35px
    }

    #delivery .row {
        display: flex;
        align-items: center;
        align-content: center;
        flex-wrap: wrap
    }

    .what-slider {
        margin-top: 60px
    }

    #what {
        background-color: #f7f7f7;
        padding: 80px 0
    }

    .what-icon {
        width: 58px;
        height: 58px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        align-content: center;
        justify-content: center;
        background-color: #7993c9;
        border-radius: 100px;
        color: #fff;
        font-size: 34px;
        margin-bottom: 20px
    }

    .what-title {
        color: #000;
        font-size: 17px;
        font-weight: 600;
        line-height: 1.4;
        margin-bottom: 10px
    }

    .what-txt {
        color: #848484;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.6;
        margin-bottom: 0
    }

    .what-slide {
        background-color: #fff;
        padding: 20px;
        border-radius: 12px;
        margin: 15px;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 10%)
    }

    .what-slider-nav {
        margin-top: 50px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        align-content: center;
        justify-content: center
    }

    .what-slider-nav .slick-arrow {
        background-color: #325c87;
        border: 0;
        color: #fff;
        width: 42px;
        height: 42px;
        box-shadow: none;
        border-radius: 100px;
        margin: 0 5px;
        font-size: 30px
    }

    #pay-method {
        background-color: #f7f7f7;
        padding-bottom: 80px
    }

    #client {
        background-color: #f7f7f7
    }

    .ftr-top {
        background-color: #325d88;
        padding: 80px 0 20px
    }

    .ftr-title {
        color: #fff
    }

    .ftr-btm {
        background-color: #6279a5
    }

    #ready {
        background-color: #6279a5;
        padding: 30px 0
    }

    #ready .row {
        display: flex;
        align-items: center;
        align-content: center
    }

    #ready .title {
        margin-bottom: 0;
        color: #fff
    }

    #ready .btn.btn-primary {
        width: 100%
    }

    .social-ul {
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        align-items: center;
        list-style: none;
        padding: 0;
        margin: 0
    }

    .social-ul li a {
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        background-color: #6279a5;
        width: 35px;
        height: 35px;
        border-radius: 100px;
        color: #fff;
        font-size: 19px;
        margin-right: 9px
    }

    .social-title.ftr-title {
        margin-top: 25px;
        margin-bottom: 0
    }

    #ready .title {
        text-align: center;
        margin-bottom: 25px;
        font-size: 42px
    }

    #ready .btn.btn-primary {
        width: max-content;
        margin: auto;
        display: block
    }

    #google_translate_element div {
        font-size: 0 !important
    }

    #google_translate_element a {
        display: none
    }

    #google_translate_element {
        margin-top: 12px;
        margin-bottom: 12px
    }

    #google_translate_element select {
        height: 38px;
        margin: 0;
        background: transparent;
        border: 0;
        color: #050505;
        font-weight: 700
    }

    .auth #google_translate_element select {
        background-color: #f8f5f0;
        padding: 12px;
        margin: 0 5px 0 0 !important;
        border-radius: 5px;
        height: 40px;
        color: #325d88
    }

    .ftr-logo img {
        width: auto;
        margin: 0 auto;
        max-width: 250px
    }

    .sidebar-new {
        width: 280px;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 9;
        height: 100%;
        overflow-y: auto;
        padding: 20px;
        transition: all 350ms linear
    }

    .sidebar-profile-wrap {
        background: rgba(124, 150, 206, 1);
        background: -moz-linear-gradient(left, rgba(124, 150, 206, 1) 0%, rgba(98, 121, 165, 1) 100%);
        background: -webkit-gradient(left top, right top, color-stop(0%, rgba(124, 150, 206, 1)), color-stop(100%, rgba(98, 121, 165, 1)));
        background: -webkit-linear-gradient(left, rgba(124, 150, 206, 1) 0%, rgba(98, 121, 165, 1) 100%);
        background: -o-linear-gradient(left, rgba(124, 150, 206, 1) 0%, rgba(98, 121, 165, 1) 100%);
        background: -ms-linear-gradient(left, rgba(124, 150, 206, 1) 0%, rgba(98, 121, 165, 1) 100%);
        background: linear-gradient(to right, rgba(124, 150, 206, 1) 0%, rgba(98, 121, 165, 1) 100%);
        padding: 15px;
        border-radius: 12px;
        text-align: center
    }

    .sidebar-profile-wrap .sidebar-profile {
        display: block;
        margin: auto auto 12px
    }

    .username {
        color: #fff;
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 5px
    }

    .blance {
        font-size: 14px;
        font-weight: 500;
        color: #fff !important;
        text-decoration: none !important
    }

    .inner-wrap {
        padding: 15px 15px 15px 280px;
        transition: all 350ms linear
    }

    .sidebar-nav-wrap {
        background-image: url(https://storage.perfectcdn.com/hc35c3/qmxz1b392ww6gqwz.png);
        background-position: center;
        background-size: cover;
        border-radius: 20px;
        padding: 20px;
        margin-top: 25px
    }

    .sidebar-nav {
        list-style: none;
        padding: 0
    }

    .sidebar-nav li a {
        font-size: 16px;
        font-weight: 400;
        color: #fff;
        line-height: 1.2;
        display: flex;
        align-items: center;
        align-content: center;
        margin-bottom: 5px;
        text-decoration: none !important;
        padding: 5px;
        border-radius: 100px
    }

    .sidebar-nav li.active a,
    .sidebar-nav li.active a:hover,
    .sidebar-nav li a:hover,
    .sidebar-nav .order_nav.open>a {
        background-color: #2a4f74;
        color: #fff
    }

    .sidebar-nav li a .menu-icon {
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        align-items: center;
        justify-content: center;
        color: #fff;
        width: 30px;
        height: 30px;
        border-radius: 100px;
        margin-right: 5px;
        font-size: 12px
    }

    .sidebar-nav li.active>a .menu-icon,
    .sidebar-nav li.active>a:hover .menu-icon,
    .sidebar-nav li>a:hover .menu-icon,
    .sidebar-nav .order_nav.open>a .menu-icon {
        background-color: #fff;
        color: #2a4f74 !important
    }

    .top-bar {
        margin: 0 15px 20px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        align-content: center;
        justify-content: space-between
    }

    .top-bar-left-ul {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0;
        align-items: center;
        align-content: center
    }

    .pinner {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
        color: #2a4f74;
        background-color: #fff;
        font-size: 16px;
        border-radius: 8px;
        cursor: pointer
    }

    .pinner-wrap {
        margin-right: 12px
    }

    .bread a {
        font-size: 14px;
        color: #000;
        font-weight: 400;
        line-height: 1.4;
        text-decoration: none !important
    }

    .status-box {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        align-content: center;
        padding: 40px 15px;
        border-radius: 25px;
        margin-bottom: 15px;
        background-color: #fff;
        cursor: pointer
    }

    .status-box-left {
        flex: 0 0 50px;
        max-width: 50px
    }

    .status-box-right {
        flex: 0 0 calc(100% - 50px);
        max-width: calc(100% - 50px);
        padding-left: 15px
    }

    .status-box-icon {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
        background: rgba(124, 150, 206, 1);
        background: -moz-linear-gradient(left, rgba(124, 150, 206, 1) 0%, rgba(98, 121, 165, 1) 100%);
        background: -webkit-gradient(left top, right top, color-stop(0%, rgba(124, 150, 206, 1)), color-stop(100%, rgba(98, 121, 165, 1)));
        background: -webkit-linear-gradient(left, rgba(124, 150, 206, 1) 0%, rgba(98, 121, 165, 1) 100%);
        background: -o-linear-gradient(left, rgba(124, 150, 206, 1) 0%, rgba(98, 121, 165, 1) 100%);
        background: -ms-linear-gradient(left, rgba(124, 150, 206, 1) 0%, rgba(98, 121, 165, 1) 100%);
        background: linear-gradient(to right, rgba(124, 150, 206, 1) 0%, rgba(98, 121, 165, 1) 100%);
        border-radius: 100px;
        font-size: 25px;
        color: #fff
    }

    .status-box-title {
        font-size: 14px;
        margin-bottom: 0;
        line-height: 1.4;
        color: #313030;
        font-weight: 400;
        text-decoration: none
    }

    .status-box-txt {
        font-size: 20px;
        color: #313030;
        font-weight: 600;
        margin-bottom: 0;
        text-decoration: none
    }

    .status-box-link {
        font-size: 14px;
        color: #7c96cf;
        font-weight: 600;
        text-decoration: underline
    }

    .status-box:hover {
        background: rgba(124, 150, 206, 1);
        background: -moz-linear-gradient(left, rgba(124, 150, 206, 1) 0%, rgba(98, 121, 165, 1) 100%);
        background: -webkit-gradient(left top, right top, color-stop(0%, rgba(124, 150, 206, 1)), color-stop(100%, rgba(98, 121, 165, 1)));
        background: -webkit-linear-gradient(left, rgba(124, 150, 206, 1) 0%, rgba(98, 121, 165, 1) 100%);
        background: -o-linear-gradient(left, rgba(124, 150, 206, 1) 0%, rgba(98, 121, 165, 1) 100%);
        background: -ms-linear-gradient(left, rgba(124, 150, 206, 1) 0%, rgba(98, 121, 165, 1) 100%);
        background: linear-gradient(to right, rgba(124, 150, 206, 1) 0%, rgba(98, 121, 165, 1) 100%);
        text-decoration: none
    }

    .status-box:hover .status-box-icon {
        background: transparent;
        background-color: #fff;
        color: #313d54
    }

    .status-box:hover .status-box-title,
    .status-box:hover .status-box-txt,
    .status-box:hover .status-box-link {
        color: #fff;
        text-decoration: none;
        border: 0;
        outline: none
    }

    .status-box:hover .status-box-link {
        color: #2a4f74
    }

    .wrapper.toggle .inner-wrap {
        padding-left: 15px
    }

    .wrapper.toggle .sidebar-new {
        left: -280px
    }

    .auth .well {
        background-color: #fff;
        border: 0;
        border-radius: 20px
    }

    .new-order-cat {
        color: #000;
        font-size: 24px;
        font-weight: 600;
        line-height: 1.2
    }

    .brand-category {
        background-color: #f8f5f0;
        border-color: #f8f5f0;
        border-radius: 15px;
        padding: 12px;
        font-size: 20px;
        color: #294f74;
        font-weight: 400
    }

    .brand-category .icon {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        max-width: 40px;
        display: flex;
        align-items: center;
        font-size: 30px
    }

    .auth .form-control,
    .auth #service_description .panel-body {
        background-color: #faf8f4;
        border-color: #faf8f4;
        border-radius: 12px;
        color: #07022e
    }

    .auth .btn.btn-primary {
        width: auto;
        border-radius: 100px;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 1px
    }

    .auth .nav-tabs li a {
        color: #07022e;
        border-radius: 100px;
        border: 1px solid #f8f5f0;
        background-color: #f8f5f0;
        display: flex;
        align-items: center;
        border: 0
    }

    .auth .nav-tabs li a i {
        background-color: #2a4f75;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
        color: #fff;
        border-radius: 100px;
        font-size: 17px
    }

    .auth .nav-tabs li.active a,
    .auth .nav-tabs li a:hover {
        background-color: #294d72;
        color: #fff;
        border: 0
    }

    .auth .nav-tabs li.active a i,
    .auth .nav-tabs li a:hover i {
        background-color: #fff;
        color: #294d72
    }

    .hello {
        text-align: center;
        color: #000;
        font-size: 16px;
        font-weight: 600
    }

    .order-right_edited .nav-tabs {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: flex-start
    }

    .order-right_edited .nav-tabs .nav-item {
        float: unset !important;
        margin-bottom: 10px
    }

    .order-right_edited .nav-tabs .nav-item a {
        padding: 10px !important
    }

    .auth .nav-tabs li a i {
        width: 30px !important;
        height: 30px !important;
        font-size: 14px !important
    }

    .auth .order-right_edited .media {
        background-color: #faf8f4;
        padding: 14px 16px;
        border: 0;
        height: auto;
        border-radius: 15px;
        overflow: visible
    }

    .auth .order-right_edited .example-link-wrap .media-body {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
        padding: 0;
        background: transparent !important;
        border-radius: 0;
        overflow: visible
    }

    .auth .order-right_edited .example-link-wrap .media-body>* {
        margin-bottom: 0
    }

    .auth .order-right_edited .example-link-wrap .media-body .media-heading {
        font-size: 14px;
        font-weight: 700
    }

    .auth .order-right_edited .example-link-wrap .media-body h5 {
        font-size: 16px;
        font-weight: 400
    }

    .auth .order-right_edited .result-box>.media-heading,
    .auth .well.order-right_edited .new-wrap .news-title,
    .auth .order-tab-row #order-form .control-label {
        font-size: 14px !important;
        font-weight: 500 !important;
        color: #07022e
    }

    .auth .order-right_edited .order-services-row .result-box .media {
        margin-top: 0
    }

    .auth .order-right_edited .order-services-row .result-box {
        margin-top: 20px
    }

    .auth .order-right_edited .order-services-row .media-body {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 100%
    }

    .auth .order-right_edited .order-services-row .media-body .service-icons {
        background-color: #6278a7;
        width: 35px;
        height: 35px;
        display: grid;
        place-items: center;
        border-radius: 100%;
        color: #fff;
        margin-right: 10px
    }

    .auth .order-right_edited .order-services-row .media-body h5 {
        margin-bottom: 0 !important
    }

    .auth .order-right_edited .order-services-row .media {
        padding: 7px 10px !important
    }

    .auth .order-right_edited .order-services-row .media-body h5 {
        font-size: 14px;
        font-weight: 400;
        color: #000
    }

    .auth .order-right_edited .result-box-desc {
        margin-top: 20px
    }

    .auth .order-right_edited .result-box-desc .media {
        height: auto;
        padding: 30px 20px
    }

    .auth .order-right_edited .result-box-desc .media h5,
    .auth .order-right_edited .result-box-desc .media p {
        font-size: 14px;
        color: #000;
        font-weight: 400
    }

    .auth .order-right_edited .new-wrap {
        border: 0
    }

    .auth .well.order-right_edited .new-wrap .new-inner {
        background: #faf8f4;
        height: 140px;
        scrollbar-width: thin
    }

    .auth .well.order-right_edited .contact-detals {
        margin: auto;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background-color: #faf8f4;
        padding: 30px 20px;
        border-radius: 20px
    }

    .auth .well.order-right_edited .contact-detals a {
        color: #98c953;
        font-weight: 500;
        font-size: 18px;
        text-decoration: none
    }

    .auth .well.order-right_edited .contact-detals h3 {
        color: #07022e
    }

    .auth .welcome-title_funds {
        font-size: 18px;
        font-weight: 400
    }

    .auth .add-fund_form form {
        background-color: #faf8f4;
        border-radius: 30px;
        padding: 20px
    }

    .auth .add-fund_form form .form-control {
        background-color: #fff;
        border-radius: 30px
    }

    .auth .add-fund_form form .btn.btn-primary {
        width: 100% !important
    }

    .auth .add-fund_form form .control-label {
        color: #000;
        font-size: 18px
    }

    .auth .payment-tabs .nav-tabs {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap
    }

    .auth .payment-tabs .nav-tabs .nav-item a {
        min-width: 80px;
        border-radius: 10px;
        height: 58px;
        margin-bottom: 12px;
        display: grid;
        place-items: center;
        padding: 0;
        transition: all .3s ease-in
    }

    .auth .payment-tabs .nav-tabs .nav-item:hover a,
    .auth .payment-tabs .nav-tabs .nav-item.active:hover a,
    .auth .payment-tabs .nav-tabs .nav-item.active a {
        background-color: #fff !important;
        box-shadow: 0 7px 13px 3px rgba(0, 0, 0, 0.25)
    }

    .auth .payment-tabs .pay-method_tabs {
        padding: 20px 10px
    }

    .auth .payment-tabs .pay-method_tabs .main-heading_method {
        font-size: 30px;
        font-weight: 600
    }

    .auth .payment-tabs .pay-method_tabs .sub-heading_method {
        font-size: 18px;
        font-weight: 500
    }

    .auth .payment-tabs .pay-method_tabs ul {
        padding-left: 20px;
        font-size: 16px !important
    }

    .auth .payment-tabs .pay-method_tabs ul li {
        font: inherit !important
    }

    .auth .pay-methods-slider .slick-slide {
        max-width: 72px;
        height: 44px;
        background-color: #faf8f4;
        margin: 0 2px;
        display: grid;
        place-items: center;
        border-radius: 10px;
        transition: background .1s linear
    }

    .auth .pay-methods-slider .slick-slide:hover {
        background-color: #a6d365
    }

    .auth .pay-methods-slider .slick-arrow {
        position: absolute;
        z-index: 2;
        transform: translatey(36%);
        background-color: transparent;
        border: 0;
        font-size: 20px
    }

    .auth .pay-methods-slider .right-arrow {
        right: -10px;
        top: 0
    }

    .auth .pay-methods-slider .left-arrow {
        left: -12px
    }

    .auth .funds-table {
        padding: 20px
    }

    .auth .funds-table h5 {
        font-size: 24px;
        font-weight: 600
    }

    .auth .funds-table .table thead tr th {
        background: #6279a5;
        color: #000;
        font-weight: 400;
        font-size: 18px
    }

    .funds-table .table thead tr th:first-child,
    .funds-table tbody tr td:first-child {
        border-radius: 30px 0 0 30px
    }

    .funds-table .table thead tr th:last-child,
    .funds-table tbody tr td:last-child {
        border-radius: 0 30px 30px 0
    }

    .funds-table tbody tr td {
        background: #fff;
        font-size: 18px
    }

    .api table {
        border-spacing: 20px 10px;
        padding: 20px 0
    }

    .api td {
        border-radius: 30px !important;
        font-size: 18px !important
    }

    .api th {
        background-color: #f8f5f0 !important;
        color: #000 !important;
        font-weight: 400 !important;
        border-radius: 30px !important
    }

    .api .php-example_btn a {
        border-radius: 50px;
        background: #2b5278;
        color: #fff;
        outline: 0;
        box-shadow: none;
        border: 0;
        padding: 20px;
        font-size: 14px
    }

    .api .width-40 {
        width: 50% !important
    }

    .auth .db-tabs .nav-tabs li a i {
        background: transparent !important;
        color: #000 !important;
        font-size: 18px !important
    }

    .auth .db-tabs .nav-tabs li a {
        border-radius: 18px;
        font-size: 18px;
        height: 60px;
        background-color: #fff
    }

    .auth .db-tabs .nav-tabs li a:hover,
    .auth .db-tabs .nav-tabs li.active a {
        background-color: #294d72 !important
    }

    .auth .db-tabs .nav-tabs li a:hover i,
    .auth .db-tabs .nav-tabs li.active a i {
        background-color: none !important;
        color: #fff !important
    }

    .auth .db-tabs .nav-tabs {
        display: flex;
        justify-content: flex-start;
        align-items: center
    }

    .auth .db-tabs .nav-tabs .nav-item {
        flex: 1
    }

    .auth .db-tabs .well {
        padding: 40px 30px
    }

    .auth .db-tabs .well h3 {
        font-size: 30px;
        font-weight: 600;
        color: #000
    }

    .auth .db-tabs .well h5 {
        font-size: 24px;
        color: #000;
        font-weight: 600
    }

    .auth .db-tabs .well ul {
        padding-left: 34px;
        list-style: none
    }

    .auth .db-tabs .well ul li {
        font-weight: 600;
        font-size: 18px
    }

    .auth .ref-title {
        font-size: 30px;
        font-weight: 600;
        padding-left: 30px
    }

    .auth .ref-link_container {
        background: #fff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 30px;
        border-radius: 20px
    }

    .auth .ref-link_container .ref-link h6 {
        font-size: 24px;
        font-weight: 600
    }

    .auth .ref-link_container .ref-link .afiliat_link {
        font-size: 18px;
        margin-bottom: 0
    }

    .auth .ref-link_container .copy-aff-link {
        color: #000;
        font-size: 20px
    }

    .auth .copy-btn_container {
        position: relative;
        isolation: isolate
    }

    .auth .copy-btn_container span {
        font-size: 14px;
        background: #A9A9A9;
        padding: 5px;
        border-radius: 4px;
        position: absolute;
        width: 158px;
        top: -42px;
        left: -86px;
        color: #fff;
        pointer-events: none;
        opacity: 0;
        transition: all 300ms linear
    }

    .auth .db-container .contact_details {
        margin-top: 30px;
        padding: 30px
    }

    .auth .db-container .contact_details h4 {
        font-size: 30px;
        font-weight: 600
    }

    .auth .db-container .contact_details ul {
        list-style: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 40px
    }

    .auth .db-container .contact_details .icon {
        width: 30px;
        height: 30px;
        display: grid;
        margin-right: 10px;
        border-radius: 100%;
        background-color: #6378a7;
        place-items: center;
        color: #fff;
        font-size: 16px
    }

    .auth .db-container .contact_details li {
        font-size: 20px;
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 20px
    }

    .auth .db-container .contact_details .contact-title {
        font-weight: 600
    }

    .auth .db-container .faq-row .well {
        padding: 30px
    }

    .auth .db-container .faq-row .faq-title {
        font-size: 36px;
        font-weight: 600;
        color: #000
    }

    .auth .db-container #faq {
        padding: 0 !important;
        background-color: transparent
    }

    .auth .db-container #faq .faq-row {
        margin-top: 0;
        background: #fff;
        margin-left: 1px;
        padding: 20px;
        border-radius: 20px
    }

    .auth .db-container .faq-row .ticket-form h6 {
        font-size: 30px;
        font-weight: 600;
        margin-top: 40px
    }

    .auth .db-container .faq-row .ticket-form form {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column
    }

    .auth .db-container .faq-row .ticket-form input {
        width: 70%;
        border: 0;
        background-color: #f8f5f0;
        margin-bottom: 10px;
        height: 44px;
        border-radius: 10px
    }

    .auth .db-container .faq-row .ticket-form a {
        background-color: #284c70;
        border: 0;
        padding: 16px 30px;
        border-radius: 20px;
        color: #fff;
        font-size: 18px;
        text-decoration: none
    }

    .auth .ticket-btn-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center
    }

    .auth .ticket-btn-row .ticket-btn_container {
        margin-right: 10px;
        min-width: 106px
    }

    .auth .ticket-btn-row .brand-category {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center
    }

    .auth .ticket-btn-row .brand-category .icon {
        margin-right: 0;
        margin-right: 0;
        color: #000;
        font-size: 20px;
        display: flex;
        justify-content: center;
        align-items: center
    }

    .auth .ticket-btn-row .brand-category .cat-name {
        font-size: 16px;
        color: #000
    }

    .auth .ticket-btn-row .brand-category {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-width: inherit
    }

    .auth .ticket-btn-row .brand-category:hover {
        background-color: #284c70;
        text-decoration: none
    }

    .auth .ticket-btn-row .brand-category:hover .icon {
        color: #fff
    }

    .auth .ticket-btn-row .brand-category:hover .cat-name {
        color: #fff
    }

    .auth .brand-category {
        padding: 0 12px
    }

    .auth .brand-category .media:first-child{
        margin-top: 15px
    }

    .auth .brand-category .icon {
        padding: 6px;
        font-size: 22px
    }

    .auth .brand-cat-row .brand-category .media-body {
        font-size: 16px
    }

    .auth .ticket-frm-body .extraoption_order label span,
    .auth .add-fund_form .extraoption_order label span {
        min-width: 114px;
        height: 40px;
        background-color: #faf8f4;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 20px;
        font-size: 16px !important;
        font-weight: 400;
        cursor: pointer;
        padding: 0 8px
    }

    .auth .add-fund_form .extraoption_order label span {
        background-color: #fff !important
    }

    .auth .ticket-frm-body .extraoption_order input:checked~span,
    .auth .add-fund_form .extraoption_order input:checked~span {
        background-color: #284d71 !important;
        color: #fff !important
    }

    .auth .ticket-frm-body .extraoption_order label input,
    .auth .add-fund_form .extraoption_order label input {
        display: none
    }

    .auth .ticket-frm-body .extraoption_order,
    .auth .add-fund_form .extraoption_order {
        margin: 20px 0
    }

    .auth .ticket-frm-body #want,
    .auth .ticket-frm-body #want1,
    .auth .ticket-frm-body .extraoption-label {
        height: 0 !important;
        padding: 0;
        margin: 0 !important;
        pointer-events: none;
        opacity: 0;
        position: absolute
    }

    .auth #ticketsend .control-label {
        color: #000;
        font-size: 14px
    }

    .auth .ticket_history-table .ticket_history-title {
        font-size: 24px;
        font-weight: 600
    }

    .auth .ticket_history-table thead th {
        background-color: #a2d05f !important;
        font-size: 14px;
        font-weight: 500
    }

    .auth .ticket_history-table thead th:first-child {
        border-radius: 40px 0 0 40px
    }

    .auth .ticket_history-table thead th:last-child {
        border-radius: 0 40px 40px 0
    }

    .auth .ticket_history-table #history-search input {
        border-radius: 30px !important;
        background-color: #f8f5f0
    }

    .auth .ticket_history-table #history-search .input-group-btn button {
        font-size: 14px;
        background-color: #2d547c;
        border: 0;
        color: #fff;
        border-radius: 30px !important;
        padding: 10px 24px;
        margin-left: 10px !important
    }

    .auth .ticket_order-form .form-control {
        background-color: #f8f5f0 !important
    }

    .auth .ticket_history-table #history-search {
        margin: 30px 0
    }

    .auth .ticket_history-table tbody .Answered,
    .auth .ticket_history-table tbody .Pending,
    .auth .ticket_history-table tbody .Closed {
        color: #fff;
        padding: 8px 16px;
        border-radius: 30px
    }

    .auth .ticket_history-table tbody .Answered {
        background-color: #00b67a
    }

    .auth .ticket_history-table tbody .Pending {
        background-color: #0f8cff
    }

    .auth .ticket_history-table tbody .Closed {
        background-color: #fd0000
    }

    .auth .ticket_history-table tbody tr td {
        background: #fff
    }

    .auth .ticket_history-table tbody tr td a {
        color: #000
    }

    .auth .pay-methods-slider .slick-track {
        min-width: 100% !important
    }

    .auth .pay-methods-slider .slick-slide {
        max-width: 100% !important
    }

    .auth .pay-methods-slider {
        margin: 10px 0 20px
    }

    .auth .user-acc_setting .control-label {
        font-size: 24px !important;
        color: #000 !important;
        font-weight: 600 !important
    }

    .auth .acc_setting .main-title {
        font-size: 24px !important;
        color: #000
    }

    .auth .acc_setting .acc_details .control-label {
        font-size: 18px;
        color: #000
    }

    .auth .acc_setting .acc_details .form-group {
        margin: 20px 0
    }

    .auth .main-faq #faq {
        padding: 0 !important;
        background: transparent !important
    }

    .auth .main-faq .panel-default .panel-heading {
        border-radius: 30px !important;
        background-color: #fff !important
    }

    .auth .main-faq #faq .panel-default {
        box-shadow: none !important
    }

    .auth .main-faq #faq .panel-body {
        background-color: transparent;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 10px 16px rgba(0, 0, 0, 0.25)
    }

    .auth .main-faq #faq .panel-heading a {
        background: #274a6e !important;
        color: #fff;
        border-radius: 20px 20px 0 0
    }

    .auth .main-faq #faq .panel-heading a.collapsed {
        background: #fff !important;
        border-radius: 30px !important;
        color: #000
    }

    .auth .main-faq #faq .collapse.in .panel-body {
        background-color: rgba(255, 255, 255, 1)
    }

    .auth .main-faq #faq .panel-heading a::after {
        background-color: #fff;
        color: #274a6e
    }

    .auth .main-faq #faq .panel-heading a.collapsed::after {
        background-color: #274a6e;
        color: #fff
    }

    .auth .main-faq #faq .faq-icon_img img {
        margin-left: auto
    }

    .auth .order-history .order-history_search .input-group {
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    .auth .order-history .order-history_search .input-search-btn .btn {
        min-width: 170px;
        border-radius: 30px;
        height: 60px;
        border: 0;
        box-shadow: none;
        color: #fff;
        background-color: #2c5279
    }

    .auth .order-history .order-history_search .form-control {
        background-color: #fff;
        height: 60px;
        border-radius: 30px;
        padding-left: 20px
    }

    .auth .order-history .nav-pills {
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin: 24px 0
    }

    .auth .order-history .nav-pills a {
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        border-radius: 30px;
        height: 57px;
        padding: 0 29px
    }

    .auth .order-history .nav-pills a img {
        margin-right: 5px
    }

    .auth .order-history .nav-pills li:first-child a {
        background-color: #2b5177
    }

    .auth .order-history .nav-pills li:nth-child(2) a,
    .auth .order-history tbody td span.Pending {
        background: linear-gradient(90deg, rgba(187, 160, 48, 1) 26%, rgba(209, 184, 84, 1) 100%) !important
    }

    .auth .order-history .nav-pills li:nth-child(3) a,
    .auth .order-history tbody td span.progress {
        background: linear-gradient(90deg, rgba(8, 163, 177, 1) 26%, rgba(5, 195, 212, 1) 100%) !important
    }

    .auth .order-history .nav-pills li:nth-child(4) a,
    .auth .order-history tbody td span.Completed {
        background: linear-gradient(90deg, rgba(28, 180, 7, 1) 26%, rgba(29, 214, 5, 1) 100%) !important
    }

    .auth .order-history .nav-pills li:nth-child(5) a,
    .auth .order-history tbody td span.Partial {
        background: linear-gradient(90deg, rgba(255, 171, 0, 1) 26%, rgba(255, 141, 0, 1) 100%) !important
    }

    .auth .order-history .nav-pills li:nth-child(6) a,
    .auth .order-history tbody td span.Processing {
        background: linear-gradient(90deg, rgba(185, 9, 121, 1) 26%, rgba(215, 4, 138, 1) 100%) !important
    }

    .auth .order-history .nav-pills li:last-child a,
    .auth .order-history tbody td span.Canceled {
        background: linear-gradient(90deg, rgba(222, 7, 8, 1) 26%, rgba(246, 2, 7, 1) 100%) !important
    }

    .auth .order-history thead th {
        background-color: #6279a5 !important;
        font-size: 14px !important;
        font-weight: 500 !important
    }

    .auth .order-history thead th:first-child,
    .auth .order-history tbody td:first-child {
        border-radius: 40px 0 0 40px
    }

    .auth .order-history thead th:last-child,
    .auth .order-history tbody td:last-child {
        border-radius: 0 40px 40px 0
    }

    .width-30 {
        width: 30% !important;
        word-break: break-all !important;
        min-width: 200px !important
    }

    .auth .order-history tbody td span {
        color: #fff;
        padding: 12px 14px;
        border-radius: 30px;
        display: flex;
        justify-content: center;
        align-items: center
    }

    .auth .order-history tbody td.status_col-edited img {
        margin-right: 4px
    }

    .auth .order-history tbody td {
        background-color: #f8f5f0 !important
    }

    .auth #faq .section-title {
        font-size: 48px;
        font-weight: 600;
        color: #000
    }

    .cat_filter-social h4 {
        font-size: 24px;
        font-weight: 600
    }

    .cat_filter-social .social-plat a {
        background-color: #f8f5f0;
        margin-right: 20px;
        min-width: inherit;
        margin-bottom: 20px;
        padding: 10px;
        border-radius: 20px;
        color: #294f74;
        font-weight: 500;
        font-size: 16px;
        height: 40px;
        justify-content: flex-start;
        padding-left: 20px
    }

    .cat_filter-social .social-plat {
        justify-content: space-between
    }

    .cat_filter-social .social-plat a img {
        width: 28px
    }

    .cat_filter-social .social-plat li {
        min-width: 230px;
        flex: 1
    }

    .cat_filter-social .social-plat a:hover {
        color: #fff !important;
        background-color: #6378a7
    }

    .cat_filter-social .social-plat a .service_icon {
        width: 28px;
        height: 28px;
        margin-right: 10px
    }

    .cat_filter-social .social-plat a .service_icon i {
        color: #3e536b !important;
        font-size: 28px;
        margin-right: 0
    }

    .cat_filter-social .social-plat a .service_icon.service_icon-ellipsis {
        background-color: #3e536b;
        border-radius: 100%;
        display: flex;
        justify-content: center;
        align-items: center
    }

    .cat_filter-social .social-plat a .service_icon.service_icon-infinity {
        width: fit-content
    }

    .cat_filter-social .social-plat a .service_icon.service_icon-ellipsis i {
        color: #fff !important;
        font-size: 20px !important
    }

    .cat_filter-social .social-plat a:hover .service_icon i {
        color: #fff !important
    }

    .cat_filter-social .social-plat a:hover .service_icon.service_icon-ellipsis {
        background-color: #fff
    }

    .cat_filter-social .social-plat a:hover .service_icon.service_icon-ellipsis i {
        color: #3e536b !important
    }

    .cat_filter-social {
        padding-bottom: 0
    }

    .search-row .services_search-container {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        padding: 10px 20px;
        border-radius: 50px;
        height: 68px;
        margin: 16px 0
    }

    .search-row .services_search-container .dropdown {
        height: inherit !important
    }

    .search-row .services_search-container .dropdown button {
        background-color: transparent !important;
        color: #000;
        font-size: 16px !important;
        font-weight: 600;
        border: 0;
        box-shadow: none;
        padding: 0 20px;
        min-width: 180px;
        height: inherit;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-left: 0
    }

    .search-row .services_search-container .services_icon {
        width: 35px;
        height: 35px;
        display: grid;
        place-items: center;
        border-radius: 100%;
        color: #fff !important;
        background-color: #2c5379;
        margin-right: 10px
    }

    .search-row .services_search-bar {
        height: 100% !important;
        background-color: transparent !important;
        isolation: isolate;
        border-radius: 0 !important
    }

    .search-row .services_search-bar .form-control:focus {
        z-index: 0 !important
    }

    .search-row .services_search-bar .services_search-icon {
        position: absolute;
        left: 5px;
        z-index: 3;
        transform: translateY(-50%);
        top: 50%;
        color: #2a5076;
        pointer-events: none
    }

    .search-row .services_search-bar .form-control {
        padding-left: 30px !important
    }

    .search-row .services_search-bar .input-group-btn {
        width: fit-content
    }

    .search-row .services_search-bar .input-group-btn .btn {
        background-color: #2c537a !important;
        font-size: 16px !important;
        color: #fff !important;
        min-width: 130px;
        padding: 14px !important;
        border-radius: 50px
    }

    .search-row .services_search-bar .input-group-btn {
        right: -10px
    }

    .search-row .services_search-container .filter_cat-name {
        display: flex;
        justify-content: center;
        align-items: center
    }

    #service-table thead th {
        background-color: #6378a7;
        font-size: 14px !important;
        color: #000;
        font-weight: 400
    }

    #service-table thead th:first-child {
        border-radius: 100px 0 0 100px
    }

    #service-table thead th:last-child {
        border-radius: 0 100px 100px 0
    }

    #service-table tbody tr td {
        background-color: #fff !important;
        font-size: 14px !important
    }

    #service-table tbody tr td:first-child {
        border-radius: 50px 0 0 50px
    }

    #service-table tbody tr td:last-child {
        border-radius: 0 50px 50px 0
    }

    #service-table tbody tr:nth-child(2n) td {
        background-color: #d9e0ef !important
    }

    #service-table tbody .cat-name td {
        background-color: transparent !important;
        color: #000 !important;
        text-align: start;
        font-size: 20px !important;
        font-weight: 600 !important
    }

    #service-table tbody tr td.min_font-red {
        color: red
    }

    #service-table tbody tr td.max_font-green {
        color: #007900
    }

    #service-table tbody tr td.service-description button,
    #service-table tbody tr td.service-description .service_buy-btn,
    .order-history tbody tr td.order_again .service_buy-btn {
        background-color: #284c70;
        box-shadow: none;
        border: 0;
        min-width: 100px !important;
        padding: 12px !important;
        font-weight: 400
    }

    #service-table tbody tr td.service-description .service_buy-btn,
    .order-history tbody tr td.order_again .service_buy-btn {
        color: #fff !important;
        border-radius: 100px;
        text-decoration: none !important
    }

    .order-history tbody tr td.order_again .service_buy-btn {
        display: inline-block
    }

    #service-table tbody tr td.service-description .service_description-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap
    }

    #service-table tbody tr td .fav_icons-container {
        display: flex;
        justify-content: space-around
    }

    #service-table tbody tr td .fav_icons-container span {
        color: #000
    }

    #service-table tbody tr td .fav_icons-container span .fas.fa-bell {
        color: red
    }

    #service-table .service-description .modal-header .close {
        color: #fff;
        font-weight: 500 !important;
        font-size: 28px;
        background-color: transparent !important;
        opacity: 1;
        min-width: fit-content !important;
        padding: 0 !important
    }

    #service-table tbody tr td.service-description .modal-content {
        border-radius: 20px !important;
        overflow: hidden
    }

    #service-table tbody tr td.service-description .modal-header {
        padding-right: 50px !important
    }

    .auth #service-table {
        height: 80vh;
        overflow: auto;
        display: block;
        scrollbar-width: thin;
        scrollbar-color: #6378a7 #e1f7c5
    }

    .auth #service-table thead {
        position: sticky;
        top: 0
    }

    .guest #service-table tbody tr td.service-description .service_description-container {
        justify-content: center
    }

    .service_update thead th {
        background-color: #315c86 !important;
        font-size: 14px !important;
        font-weight: 500 !important
    }

    .service_update thead th:first-child,
    .service_update tbody td:first-child {
        border-radius: 50px 0 0 50px !important
    }

    .service_update thead th:last-child,
    .service_update tbody td:last-child {
        border-radius: 0 50px 50px 0 !important
    }

    .service_update tbody td .update {
        border-radius: 100px
    }

    .service_update tbody td .update.enabled {
        background-color: #03c5dc
    }

    .service_update tbody td .update.decreased {
        background-color: #dc0303 !important
    }

    .auth .order-tab-row .nav-tabs a {
        margin-top: 8px !important
    }

    .auth .order-tab-row .search-by-id-wrap .search_by-container {
        position: relative !important;
        isolation: isolate !important;
        display: flex;
        margin-bottom: 20px
    }

    .auth .order-tab-row .search-by-id-wrap .search_by-container .btn {
        position: absolute;
        z-index: 10;
        right: 10px;
        top: 3px;
        padding: 10px;
        min-width: 80px
    }

    .auth .top-bar .top-bar-right .dropdown-currencies .nav_item-icon,
    .auth .top-bar .top-bar-right .languages-drop .nav_item-icon {
        width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 100%;
        color: #fff;
        background: linear-gradient(to right, rgba(124, 150, 206, 1) 0%, rgba(98, 121, 165, 1) 100%);
        margin-right: 5px
    }

    .auth .top-bar .top-bar-right-ul {
        list-style: none;
        display: flex;
        justify-content: flex-end;
        align-items: center
    }

    .auth .top-bar .top-bar-right .dropdown-currencies a,
    .auth .top-bar .top-bar-right .languages-drop a {
        display: flex;
        justify-content: center;
        align-items: center;
        color: #000;
        flex-wrap: nowrap;
        margin-right: 10px
    }

    .auth .top-bar .top-bar-right .dropdown-currencies .badge {
        background-color: transparent;
        color: #000;
        font-weight: 600 !important;
        padding-left: 0
    }

    .auth .top-bar .top-bar-right-ul .nav_link-item {
        color: #2c537a;
        font-size: 18px;
        margin-right: 10px
    }

    .auth .top-bar .top-bar-right-ul #profileDropdown {
        background-color: transparent;
        box-shadow: none;
        border: 0;
        padding: 0 !important;
        display: flex;
        justify-content: center;
        align-items: center
    }

    .auth .top-bar .top-bar-right-ul #profileDropdown img {
        width: 50px
    }

    .auth .top-bar .top-bar-right-ul #profileDropdown .username {
        color: #000;
        margin-left: 5px
    }

    .auth .top-bar-right .pf_dropdown .dropdown-item {
        padding-left: 10px;
        color: #000;
        min-width: 100%;
        display: inline-block;
        text-decoration: none
    }

    .auth .top-bar-right .pf_dropdown .dropdown-item:hover {
        background-color: #a2d05f;
        color: #fff !important
    }

    .terms h4 {
        font-size: 18px;
        font-weight: 500
    }

    .terms p {
        font-size: 14px
    }

    .auth .add-fund_form .extraoption_order {
        display: flex;
        justify-content: center;
        align-items: center
    }

    .auth .add-fund_form .extraoption_order label {
        flex: 1;
        margin-right: 10px
    }

    .api .api_details-main h5 {
        font-size: 24px;
        font-weight: 400;
        width: fit-content;
        padding-bottom: 5px;
        border-bottom: 2px solid #325d88
    }

    .api .api_details-main h4 {
        font-size: 18px;
        font-weight: 400
    }

    .api .api_details-main .row>div {
        margin-top: 30px
    }

    .mode-btn-wrap .mode-btn {
        width: 50px;
        background: #e9eed6;
        font-size: 18px;
        border-radius: 150px;
        height: 26px;
        display: flex;
        justify-content: flex-start;
        padding: 0 4px;
        align-items: center;
        margin-right: 10px;
        cursor: pointer
    }

    .mode-btn-wrap .mode-btn-icon {
        width: 24px;
        height: 24px;
        font-size: 14px;
        display: grid;
        place-items: center;
        border-radius: 100%;
        background-color: #294f74;
        color: #fff
    }

    .auth .notification_panel .notify-icon {
        font-size: 40px;
        background-color: #b7df7b;
        width: 80px;
        height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 100%;
        color: #fff;
        margin: auto
    }

    .auth .notification_panel .notify-status {
        display: none
    }

    .auth .notification_panel .notify-box-wrap.active .notify-status {
        display: block;
        text-align: center;
        font-size: 12px;
        font-weight: 500;
        background-color: #313d54;
        color: #fff;
        margin-bottom: 10px;
        position: absolute;
        top: calc(-34px);
        left: calc(50% - 36px);
        padding: 5px 16px;
        border-radius: 8px
    }

    .auth .notification_panel .card-title {
        font-size: 26px;
        font-weight: 600
    }

    .auth .notification_panel .card-body>.text-center p {
        color: #000;
        font-size: 18px
    }

    .auth .notification_panel .card-body>.notify-btn-wrap {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column
    }

    .auth .notification_panel .notify-title-row {
        margin-bottom: 50px
    }

    .auth .notification_panel .card-body>.notify-btn-wrap a {
        margin-bottom: 5px;
        min-width: 130px;
        font-size: 14px;
        font-weight: 500 !important;
        padding: 10px
    }

    .auth .notification_panel .all-service_col .notify-box-wrap {
        width: 40%;
        margin: 20px auto
    }

    .auth .notification_panel .notify-box-wrap .card-body {
        position: relative;
        isolation: isolate
    }

    .auth.darkmode .mode-btn-wrap .mode-btn {
        justify-content: flex-end;
        background-color: #20332a
    }

    body.auth.darkmode {
        background-color: #091623
    }

    .auth.darkmode .status-box {
        background-color: #06223f
    }

    .auth.darkmode a,
    .auth.darkmode li,
    .auth.darkmode label,
    .auth.darkmode p,
    .auth.darkmode h1,
    .auth.darkmode h2,
    .auth.darkmode h3,
    .auth.darkmode h4,
    .auth.darkmode h5,
    .auth.darkmode h6 {
        color: #fff !important
    }

    .auth.darkmode .well {
        background-color: #06223f
    }

    .auth.darkmode .brand-company .brand-category,
    .auth.darkmode .cat_filter-social .social-plat a {
        background-color: #052647;
        border-color: #052647
    }

    .auth.darkmode .brand-company .brand-category:hover,
    .auth.darkmode .cat_filter-social .social-plat a:hover {
        background-color: #a7d466
    }

    .auth.darkmode .nav-tabs li a {
        background-color: #091623
    }

    .auth.darkmode .nav-tabs li a:hover,
    .auth.darkmode .nav-tabs li.active a {
        background-color: #284d71
    }

    .auth.darkmode .form-control,
    .auth.darkmode #service_description .panel-body {
        background-color: #052545 !important;
        border-color: #052545 !important;
        color: #fff !important
    }

    .auth.darkmode .nav-tabs li.active a i,
    .auth.darkmode .nav-tabs li a:hover i {
        background-color: #7891c7;
        color: #fff
    }

    .auth.darkmode .order-right_edited .media {
        background-color: #052545
    }

    .auth.darkmode tbody td {
        background-color: #052545 !important;
        color: #fff
    }

    .auth.darkmode .pay-methods-slider .slick-slide {
        background-color: #7891c7
    }

    .auth.darkmode form {
        background-color: #06223f
    }

    .auth.darkmode .add-fund_form .extraoption_order label span {
        background-color: #091623 !important
    }

    .auth.darkmode .payment-tabs .nav-tabs .nav-item a {
        background-color: #7891c7
    }

    .auth.darkmode .well.order-right_edited .new-wrap .new-inner,
    .auth.darkmode .well.order-right_edited .new-wrap {
        background: #052545 !important
    }

    .auth.darkmode .well.order-right_edited .contact-detals {
        background-color: #052545 !important
    }

    .auth.darkmode .dropdown-menu {
        background-color: #052545
    }

    .auth.darkmode .order-history .order-history_search .input-group {
        background-color: #091623
    }

    .auth.darkmode .ticket-btn-row .brand-category {
        background-color: #284c70;
        border-color: #284c70
    }

    .auth.darkmode .ticket-btn-row .brand-category .icon,
    .auth.darkmode .ticket-btn-row .brand-category .cat-name {
        color: #fff !important
    }

    .auth.darkmode .ticket-btn-row .brand-category:hover {
        background-color: #7891c7;
        border-color: #7891c7
    }

    .auth.darkmode .ticket-frm-body .extraoption_order label span,
    .auth.darkmode .add-fund_form .extraoption_order label span {
        background-color: #091623
    }

    .auth.darkmode .search-row .services_search-container {
        background-color: #052545
    }

    .auth.darkmode button,
    .auth.darkmode #service-table tbody .cat-name td {
        color: #fff !important
    }

    .auth.darkmode #service-table tbody tr td {
        background-color: #052545 !important
    }

    .auth.darkmode .ser-id {
        color: #fff !important
    }

    .auth.darkmode #service-table tbody .cat-name td {
        background-color: transparent !important
    }

    .auth.darkmode pre {
        color: #fff !important
    }

    .auth.darkmode .user-acc_setting .control-label {
        color: #fff !important
    }

    .auth.darkmode .main-faq #faq .panel-heading a.collapsed {
        background-color: #052647 !important
    }

    .auth.darkmode .main-faq #faq .panel {
        background-color: transparent !important
    }

    .auth.darkmode .main-faq .panel-default .panel-heading {
        background-color: transparent !important
    }

    .auth.darkmode .main-faq #faq .collapse.in .panel-body {
        background-color: rgba(255, 255, 255, .1);
        color: #fff
    }

    .auth.darkmode .ref-link_container {
        background-color: #06223f
    }

    .auth.darkmode .db-container #faq .faq-row {
        background-color: #06223f
    }

    .auth.darkmode #faq .panel-default,
    .auth.darkmode #faq .panel-heading {
        background-color: #284c70
    }

    .auth.darkmode #faq .panel-body {
        color: #fff !important
    }

    .auth.darkmode .top-bar .top-bar-right-ul .nav_link-item {
        color: #284c71 !important
    }

    .auth.darkmode .top-bar .top-bar-right .dropdown-currencies .badge {
        color: #fff !important
    }

    .auth.darkmode .notification_panel .notify-status {
        color: #fff
    }

    .auth .notification_panel .notify-box-wrap.active {
        background-color: #313d54 !important
    }

    .auth .notification_panel .notify-box-wrap.active .card-title {
        color: #fff
    }

    .auth .notification_panel .notify-box-wrap.active .card-body>.text-center p {
        color: #fff
    }

    .auth.darkmode .notify-modal .modal-content {
        background-color: #06223f !important
    }

    .auth .sub-ed {
        display: none
    }

    .auth .sidebar-nav .order_nav .caret {
        transition: all 350ms linear
    }

    .auth .sidebar-nav .order_nav.open .caret {
        rotate: 180deg
    }

    .auth .order_nav.open .dropdown-menu {
        background-color: transparent;
        border: 0;
        width: 100%;
        border-radius: 10px;
        padding: 0 !important;
        position: static;
        margin-top: 0;
        box-shadow: none
    }

    .auth .order_nav.open .dropdown-menu a:hover {
        background: transparent
    }

    .auth .order_nav.open .dropdown-menu a {
        padding: 10px 16px !important;
        padding-right: 0 !important;
        margin-bottom: 0;
        margin-left: 20px;
        border-left: 3px solid #fff;
        border-radius: 0;
        position: relative
    }

    .auth .order_nav.open .dropdown-menu a::before {
        content: "";
        position: absolute;
        width: 12px;
        height: 12px;
        border-radius: 100%;
        background-color: #fff;
        left: -7px
    }

    .auth .order_nav.open .dropdown-menu a::after {
        content: "";
        position: absolute;
        width: 14px;
        height: 3px;
        background-color: #fff;
        left: 0
    }

    .sidebar-nav .order_nav.open>a {
        margin-bottom: 0
    }

    .auth .sidebar-nav-wrap .sidebar-nav {
        display: flex;
        flex-direction: column
    }

    .auth #statics_user-details .modal-content {
        background-color: #f8f5f0;
        border-radius: 20px
    }

    #statics_user-details .modal-header::before,
    #statics_user-details .modal-header::after {
        display: none
    }

    #statics_user-details .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: 0
    }

    #statics_user-details .modal-header .modal-title {
        font-size: 24px;
        color: #294f74;
        font-weight: 600
    }

    #statics_user-details .modal-header .close {
        color: #000;
        opacity: 1;
        font-size: 28px;
        font-weight: 400
    }

    #statics_user-details .modal-body .nav-tabs {
        display: flex;
        justify-content: flex-start;
        align-items: center
    }

    #statics_user-details .modal-body .nav-tabs .nav-link span {
        min-width: 50px;
        display: flex;
        justify-content: flex-start;
        align-items: center
    }

    #statics_user-details .modal-body .nav-tabs .nav-item {
        flex: 1
    }

    #statics_user-details .nav-tabs .nav-item i {
        background: linear-gradient(to right, rgba(124, 150, 206, 1) 0%, rgba(98, 121, 165, 1) 100%)
    }

    #statics_user-details .nav-tabs .nav-item.active i,
    #statics_user-details .nav-tabs .nav-item.active:hover i,
    #statics_user-details .nav-tabs .nav-item:hover i {
        background: #fff
    }

    .auth #statics_user-details .modal-content .user_header {
        display: flex;
        justify-content: flex-start;
        align-items: center
    }

    .auth #statics_user-details .modal-content .user_header .user_rating-status {
        margin-bottom: 0;
        font-size: 24px;
        margin-left: 5px;
        color: #294f74;
        font-weight: 600
    }

    .auth #statics_user-details .modal-content .user_header .rating_icon-star {
        font-size: 20px;
        color: #f2d422;
        text-shadow: -3px 3px 0 rgba(244, 139, 25, .125)
    }

    .auth #statics_user-details .modal-content .user_header .user_status-limits {
        margin-left: 30px;
        font-size: 24px;
        font-weight: 500;
        color: #294f74
    }

    .auth #statics_user-details .modal-content .user_status-advantages {
        list-style: none;
        margin-top: 20px;
        font-size: 18px;
        font-weight: 500;
        color: #1b1b1b
    }

    .auth #statics_user-details .nav-tabs li a {
        background-color: #fff
    }

    .auth #statics_user-details .nav-tabs li.active a,
    .auth #statics_user-details .nav-tabs li:hover a,
    .auth #statics_user-details .nav-tabs li.active:hover a {
        background-color: #284c70
    }

    .auth #statics_user-details .modal-body .rating_list-advancements h5 {
        font-size: 18px;
        font-weight: 600;
        color: #294f74;
        line-height: normal
    }

    .auth #statics_user-details .modal-body .rating_list-advancements ul {
        list-style: none;
        margin-bottom: 0
    }

    .auth #statics_user-details .modal-body .rating_list-advancements ul li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 5px;
        padding: 8px;
        background-color: #f8f5f0;
        font-size: 14px;
        font-weight: 500;
        color: #294f74;
        border-radius: 8px
    }

    .auth #statics_user-details .modal-body .rating_list-advancements ul li span:first-child {
        color: #313d54
    }

    .well.cat_filter-social {
        padding: 10px 20px;
        margin-bottom: 10px;
        background-color: #fff;
        border: 0;
        border-radius: 20px
    }

    .cat_filter-social h4 {
        margin: 0;
        font-size: 20px
    }

    .cat_filter-social .social-plat {
        margin-top: 10px;
        margin-bottom: 0
    }

    .cat_filter-social .social-plat a {
        margin: 0 2px 5px
    }

    #service-table.table thead tr th,
    #service-table.table tbody tr td {
        padding: 5px !important
    }

    #service-table tbody .cat-name td {
        font-size: 18px !important
    }

    .refill {
        min-width: 130px
    }

    .search-row .services_search-container {
        margin: 0
    }

    .auth #service-table {
        height: auto
    }

    .services_search-container .dropdown-menu {
        height: 300px;
        overflow-y: auto
    }

    .link-wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        align-content: center;
        justify-content: center;
        cursor: pointer
    }

    .link-txt {
        color: #000 !important;
        padding: 0 !important;
        margin-right: 9px
    }

    .copybtn {
        color: #6279a5;
        text-decoration: none !important;
        background: transparent;
        border: 0
    }

    #service-table tbody tr td.service-description button,
    #service-table tbody tr td.service-description .service_buy-btn,
    .order-history tbody tr td.order_again .service_buy-btn {
        min-width: 125px !important;
        text-align: center
    }

    .order-actions .btn {
        min-width: 125px !important;
        padding: 11.5px !important
    }

    .order-actions {
        width: auto
    }

    .ticket-message-block .col-md-11 {
        background-color: transparent !important
    }

    .ticket-message-right .ticket-message {
        background-color: #3f6c80 !important;
        color: #fff
    }

    .ticket-message-left .ticket-message {
        background-color: #7992c8 !important;
        color: #fff
    }

    .ticket-message-name {
        border: 1px solid #fff;
        padding: 2px 15px;
        border-radius: 100px;
        width: max-content;
        display: block;
        text-align: center;
        min-width: 50px;
        margin-bottom: 15px
    }

    .ticket-message-right .ticket-message-name {
        background-color: #7992c8
    }

    .ticket-message-left .ticket-message-name {
        background-color: #3f6c80
    }

    .languages-drop .dropdown-menu li.active a {
        color: #fff !important
    }

    .languages-drop .dropdown-menu li a {
        margin-right: 0 !important
    }

    .select2-container .dropdown-menu>li>a {
        white-space: normal !important
    }

    .select2-dropdown,
    .select2-dropdown .dropdown-menu {
        background-color: #ccc
    }

    .select2-dropdown .dropdown-menu li a {
        font-size: 12px;
        padding: 3px 10px
    }

    .auth #order-form .btn.btn-primary {
        width: 100%;
        border-radius: 12px;
        height: 44px;
        padding-top: 0;
        padding-bottom: 0
    }

    .order_nav .dropdown-backdrop {
        display: none
    }

    .auth .db-tabs .nav-tabs li a i {
        font-size: 14px !important;
        margin-right: 5px;
        width: auto !important;
        height: auto !important
    }

    .sidebar-nav li.panel {
        background-color: transparent;
        margin: 0
    }

    .auth #google_translate_element select {
        color: #000;
        font-weight: 600 !important
    }

    .google-translate-wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        align-content: center
    }

    .google-translate-wrap .nav_item-icon {
        width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 100%;
        color: #fff;
        background: linear-gradient(to right, rgba(124, 150, 206, 1) 0%, rgba(98, 121, 165, 1) 100%)
    }

    #statics_user-details .modal-body .nav-tabs .nav-item {
        z-index: 1
    }

    #statics_user-details .modal-body .nav-tabs {
        margin-top: 15px;
        padding: 10px
    }

    #statics_user-details .modal-body .nav-tabs li a {
        margin-right: 5px
    }

    #statics_user-details .modal-body .nav-tabs {
        margin-top: 15px;
        padding: 10px
    }

    #statics_user-details .modal-body .nav-tabs li a {
        margin-right: 5px
    }

    .mutli-img {
        background-image: url(https://i.23robo.info/projects/dripfeed/img/multi-img.webp)
    }

    .topp-status-icon {
        width: 81px;
        height: 81px;
        border-radius: 100px;
        display: inline-flex
    }

    .top-sec-status-txt {
        flex: 0 0 calc(100% - 96px);
        max-width: calc(100% - 96px)
    }

    .topp-status-icon1 {
        background-position: -22px -107px
    }

    .topp-status-icon2 {
        background-position: -126px -107px
    }

    .topp-status-icon3 {
        background-position: -229px -113px
    }

    .ourserviceicon {
        width: 71px;
        height: 76px;
        display: block
    }

    .ourserviceicon1 {
        background-position: -22px -20px
    }

    .ourserviceicon2 {
        background-position: -275px -20px
    }

    .ourserviceicon3 {
        background-position: -103px -20px
    }

    .ourserviceicon4 {
        background-position: -185px -20px
    }

    .auth .ticket-btn-row {
        justify-content: center
    }

    .auth .ticket-btn-row .ticket-btn_container {
        flex: 0 0 24%;
        max-width: 24%;
        margin: 0 .5%
    }

    #top-sec .btn.btn-primary {
        padding: 10px 30px
    }

    @media(min-width: 979px) {
        #statics_user-details .modal-dialog {
            width: 800px
        }
    }

    @media(max-width: 1199px) {
        .wrapper .inner-wrap {
            padding-left: 280px !important
        }

        .wrapper.toggle .inner-wrap {
            padding-left: 15px !important
        }

        .auth .wrapper .top-bar .top-bar-left {
            margin-left: 280px
        }

        .auth .wrapper.toggle .top-bar .top-bar-left {
            margin-left: 0
        }

        .auth .order-history .nav-pills {
            flex-wrap: wrap;
            justify-content: flex-start
        }

        .auth .order-history .nav-pills a {
            margin-bottom: 5px;
            margin-right: 10px
        }

        .auth #service-table .btn.btn-primary {
            margin-bottom: 5px
        }

        .wrapper .top-bar {
            justify-content: flex-end !important
        }

        .wrapper.toggle .top-bar {
            justify-content: space-between !important
        }

        .sidebar-logo {
            padding: 5px 20px;
            display: block
        }

        .sidebar-new {
            padding-top: 10px
        }

        .row.stats-box-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center
        }

        .row.stats-box-row .col-md-3 {
            flex: 0 0 50%;
            max-width: 50%
        }

        .sidebar-nav li.panel {
            background-color: transparent !important;
            margin-bottom: 0
        }

        .auth .brand-category {
            padding: 0 2px;
            margin-bottom: 10px
        }

        .brand-category .icon {
            margin-right: 0
        }

        .auth .brand-cat-row .brand-category .media-body {
            font-size: 14px;
            line-height: 1.1
        }

        .sidebar-nav-wrap {
            height: calc(100% - 20px)
        }
    }

    @media(max-width:980px) {
        .container {
            width: 100%
        }

        .row.how-row {
            margin: 0
        }

        .how-wrap::after,
        .how-wrap::before {
            width: 245px;
            background-size: 247px 221px
        }

        .how-iner {
            border-radius: 200px;
            padding: 25px 12px
        }

        .client-txt {
            font-size: 13px
        }

        .client-name span {
            font-size: 16px
        }

        .client-name::after {
            content: '';
            width: 90%;
            height: 3px
        }

        .ftr-txt {
            font-size: 16px;
            margin: 15px 0
        }

        .ftr-title {
            font-size: 18px;
            padding-bottom: 10px;
            margin-bottom: 10px
        }

        .ftr-nav li a {
            font-size: 15px;
            margin-bottom: 5px
        }

        .how-body {
            margin: 35px 15px 25px
        }

        .how-icon {
            width: 120px;
            height: 120px;
            font-size: 38px
        }

        .table thead tr th,
        .table thead:first-child>tr:first-child>th,
        .table tbody:first-child>tr:first-child>td,
        .table tbody tr td {
            padding: 4px !important;
            font-size: 11px !important
        }

        .ser-id {
            padding: 4px 8px;
            min-width: 20px
        }

        .table tbody tr td.service-name {
            min-width: 520px;
            max-width: 100%;
            width: auto
        }

        #service-table thead tr th.width-service-name {
            min-width: auto
        }

        .refill {
            padding: 5px 10px;
            min-width: 80px
        }

        .service-description .btn.btn-primary {
            padding: 5px 10px
        }

        .auth ul.nav.navbar-nav.navbar-left-block {
            float: none;
            display: block
        }

        .auth ul.nav.navbar-nav.navbar-left-block li {
            float: none;
            text-align: center
        }

        .auth ul.nav.navbar-nav.navbar-right.navbar-right-block {
            float: none !important;
            justify-content: center;
            display: flex
        }

        .brand-cat-row .col-sm-3 {
            width: 33.333%;
            padding-left: 5px;
            padding-right: 5px
        }

        .brand-category {
            padding: 12px;
            margin-bottom: 10px;
            font-size: 16px
        }

        .table tbody tr td.service-name {
            min-width: auto;
            max-width: 275px
        }

        .auth .navbar-collapsed-before .navbar-nav li {
            width: auto
        }

        .page-wrap .navbar-default li.welcome a {
            margin-bottom: 0
        }

        .auth .container-fluid {
            padding: 0
        }

        .auth #service-table .service-description .btn.btn-primary {
            width: 100px;
            white-space: normal;
            min-width: auto
        }
    }

    @media(max-width: 991px) {

        .auth .top-bar .pf_dropdown .username,
        .auth .top-bar .pf_dropdown .caret {
            display: none
        }

        .table thead tr th,
        .table thead:first-child>tr:first-child>th,
        .table tbody:first-child>tr:first-child>td,
        .table tbody tr td {
            padding: 10px !important;
            font-size: 12px !important
        }

        .search-row .services_search-container {
            background-color: transparent;
            height: auto;
            flex-wrap: wrap;
            justify-content: flex-start;
            border-radius: 20px
        }

        .search-row .services_search-container .dropdown {
            background-color: #fff;
            margin-bottom: 10px;
            padding: 10px 13px;
            border-radius: 50px
        }

        .search-row .services_search-bar {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            flex-wrap: wrap;
            height: auto !important
        }

        .auth .search-row .input-group .form-control {
            border-radius: 50px
        }

        .search-row .input-group .input-group-btn {
            position: static;
            transform: translateY(0px);
            margin-top: 10px
        }

        .search-row .services_search-bar .form-control {
            padding-left: 40px !important
        }

        .search-row .services_search-bar .services_search-icon {
            position: absolute;
            left: 14px;
            z-index: 3;
            top: 28px;
            color: #2a5076;
            pointer-events: none
        }

        .auth.darkmode .search-row .services_search-container .dropdown,
        .auth.darkmode .search-row .input-group .form-control {
            background-color: #2c537a !important
        }

        .auth .notification_panel .all-service_col .notify-box-wrap {
            width: 100%
        }
    }

    @media(max-width: 767px) {
        .auth .top-bar .bread {
            display: none
        }

        .auth .wrapper .top-bar .top-bar-left,
        .auth .wrapper.toggle .top-bar .top-bar-left {
            margin-left: 10px;
            order: 2
        }

        .auth .top-bar {
            justify-content: flex-end
        }

        .auth .brand-company .brand-cat-row {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap
        }

        .auth .brand-company .brand-cat-row>div {
            min-width: 180px !important;
            flex: 1
        }

        .auth .ticket-frm-body .extraoption_order label span,
        .auth .add-fund_form .extraoption_order label span {
            min-width: 100px
        }

        .table-responsive {
            border: 0
        }

        .wrapper.toggle .top-bar {
            justify-content: flex-end !important
        }

        .auth .db-container .contact_details ul {
            grid-template-columns: 1fr
        }

        .auth .db-tabs .nav-tabs {
            flex-wrap: wrap
        }

        .auth .db-tabs .nav-tabs .nav-item {
            flex: unset;
            margin-bottom: 10px
        }

        .auth .notification_panel .notify-title-row {
            margin-bottom: 10px
        }
    }

    @media (max-width:550px) {
        #top-sec {
            padding: 120px 0 50px
        }

        .title-txt {
            font-size: 18px;
            margin-bottom: 0
        }

        .main-title {
            font-size: 36px;
            line-height: 1.4
        }

        #top-sec .row {
            display: block
        }

        .frm-wrap {
            margin: 25px auto 0;
            box-shadow: 0 0 10px 0 rgba(0, 0, 0, 42%);
            padding: 20px 15px
        }

        #social,
        #providing,
        #faq,
        #client {
            padding: 40px 0
        }

        .social-img {
            margin: 0 auto 25px
        }

        #social .media {
            padding: 12px;
            margin-bottom: 25px;
            box-shadow: 0 0 10px 1px #dedede
        }

        #social .media-body .media-heading {
            font-size: 20px;
            padding-left: 6px
        }

        #how {
            padding: 0 0 40px
        }

        .title {
            font-size: 34px;
            margin-bottom: 25px
        }

        #providing p {
            font-size: 15px
        }

        #providing .btn.btn-secondary {
            margin-top: 6px;
            margin-bottom: 15px
        }

        .btn.btn-primary,
        .btn.btn-secondary {
            padding: 12px 20px;
            font-size: 14px
        }

        #faq .faq-row {
            margin-top: 12px
        }

        #faq .panel-heading a {
            font-size: 15px;
            padding: 12px 45px 12px 12px
        }

        #faq .panel-body {
            font-size: 14px
        }

        #client .slick-dots li button {
            width: 20px;
            height: 20px;
            margin: 0 2.5px;
            border: 4px solid #f8f5f0
        }

        #client .slick-dots {
            margin-top: 20px
        }

        .ftr-top {
            padding: 40px 0 20px
        }

        .ftr-txt {
            font-size: 14px;
            line-height: 1.4
        }

        .top-sec-ul li p {
            font-size: 15px
        }

        .frm-title {
            font-size: 28px;
            margin-bottom: 12px
        }

        .frm-txt {
            font-size: 14px
        }

        .client-txt {
            font-size: 15px
        }

        .ftr-nav li a {
            font-size: 15px
        }

        .ftr-title {
            font-size: 18px;
            margin-top: 15px
        }

        .providing-img-wrap img {
            margin: 20px auto 0
        }

        .how-wrap::after,
        .how-wrap::before {
            display: none
        }

        .how-wrap {
            padding: 0;
            margin-bottom: 15px
        }

        .how-iner {
            display: flex;
            align-items: center;
            align-content: center;
            padding: 15px 12px
        }

        .how-icon {
            width: 70px;
            height: 70px;
            font-size: 40px;
            box-shadow: 0 0 10px 0 rgba(0, 0, 0, 30%);
            margin: 0;
            flex: 0 0 70px;
            max-width: 70px
        }

        .how-num {
            font-size: 36px
        }

        .how-body {
            margin: 0 12px;
            flex-direction: column;
            justify-content: flex-start;
            align-content: flex-start;
            align-items: flex-start
        }

        .page-title {
            font-size: 35px;
            margin-bottom: 20px
        }

        .search-row .dropdown {
            margin-bottom: 15px
        }

        .search-row .dropdown .dropdown-menu {
            width: 100%
        }

        .search-row .input-group .form-control,
        .search-row .input-group {
            height: 40px
        }

        .search-row .input-group .input-group-btn button {
            font-size: 18px
        }

        .social-plat li {
            flex: 0 0 50%;
            max-width: 50%;
            margin-bottom: 12px
        }

        .table-responsive {
            border: 0
        }

        .table thead tr th {
            font-size: 14px
        }

        .table thead tr th,
        .table tbody tr td {
            padding: 10px 15px !important
        }

        .auth #navbar {
            display: flex;
            justify-content: center;
            border: 0
        }

        .welcome {
            display: none !important
        }

        .page-wrap .navbar-default li {
            display: inline-block
        }

        .auth .navbar {
            min-height: auto
        }

        .page-wrap .navbar-default li a {
            font-size: 0;
            padding: 0 10px
        }

        .page-wrap .navbar-default li a i {
            color: #356086;
            font-size: 18px;
            margin-right: 5px;
            line-height: 34px
        }

        .auth #navbar .navbar-right-block {
            display: none;
            transition: all .5s ease
        }

        .auth .toggle #navbar .navbar-right-block {
            display: block;
            transition: all .5s ease
        }

        .wrapper.toggle .page-wrap {
            padding-left: 15px;
            transition: all .5s ease
        }

        .auth .nav-tabs li a {
            margin-right: 5px
        }

        .auth .form-control,
        .auth #service_description .panel-body {
            font-size: 14px
        }

        .auth #navbar .navbar-left-block {
            margin-left: auto
        }

        .auth .toggle #navbar .navbar-left-block {
            margin-left: 0
        }

        .sidebar-wrap {
            z-index: 9999
        }

        .page-wrap {
            padding: 15px
        }

        .page-wrap .navbar-default li a.dropdown-toggle {
            font-size: 11px
        }

        .page-wrap .navbar-default li a i {
            margin: 0
        }

        .auth .navbar-right li a[href="/addfunds"] {
            border-radius: 100px
        }

        .row.brand-cat-row {
            display: flex;
            flex-wrap: wrap
        }

        .row.brand-cat-row .col-sm-3 {
            flex: 0 0 50%;
            max-width: 50%
        }

        .brand-category {
            font-size: 12px;
            margin-bottom: 5px
        }

        .brand-category .icon {
            font-size: 14px;
            margin-right: 5px
        }

        .auth .navbar-right .dropdown {
            display: none
        }

        .user-blnce .blnce {
            font-size: 16px
        }

        .user-blnce .user {
            font-size: 11px
        }

        .languages-drop {
            display: block
        }

        .languages-drop .dropdown-toggle {
            position: relative;
            width: 100%
        }

        .languages-drop .dropdown-menu {
            width: 100%;
            background-color: #6279a5;
            border: 0;
            box-shadow: none;
            padding-left: 5px
        }

        .auth .nav-tabs li a {
            margin-right: 2.5px;
            padding: 8px 10px;
            font-size: 13px
        }

        .ftr2-top {
            padding: 30px 0 15px
        }

        .ftr2-nav {
            justify-content: flex-start
        }

        .ftr2-nav li {
            flex: 0 0 100%;
            max-width: 100%
        }

        .ftr2-nav li a {
            margin-bottom: 10px
        }

        .payop-wrap {
            width: 100%
        }

        .ourservices-infobox {
            min-height: auto
        }

        .auth .status-box {
            padding: 20px 15px
        }

        .auth .top-bar .top-bar-right-ul {
            align-items: flex-end;
            flex-wrap: wrap
        }

        .auth .top-bar .top-bar-right-ul .nav_link-item {
            width: 35px;
            height: 35px;
            background: #fff;
            display: grid;
            place-items: center;
            border-radius: 8px;
            transition: all 350ms linear;
            text-decoration: none
        }

        .auth .top-bar .top-bar-right-ul .nav_link-item:hover {
            color: #fff;
            background-color: #9bcc57
        }

        .auth .top-bar .pinner {
            color: #fff;
            background-color: #313d54
        }

        .auth .brand-company .brand-cat-row>div {
            min-width: 160px !important
        }

        .status-box-txt {
            font-size: 16px
        }

        .status-box-title {
            font-size: 12px
        }

        .auth .brand-cat-row .brand-category .media-body {
            font-size: 14px
        }

        .brand-cat-row .brand-category .media-body {
            font-size: 14px
        }

        .auth .order-right_edited .example-link-wrap .media-body h5 {
            font-size: 14px
        }

        .auth .order-history .nav-pills a {
            height: 37px;
            padding: 0 16px;
            font-size: 14px
        }

        .auth .order-history .nav-pills {
            margin-bottom: 10px
        }

        .auth .order-history .order-history_search .input-group {
            flex-wrap: wrap
        }

        .auth .order-history .order-history_search .form-control {
            height: 50px;
            margin-bottom: 10px
        }

        .auth .order-history .order-history_search .input-search-btn .btn {
            min-width: 160px;
            height: 50px
        }

        .sidebar-nav li a {
            font-size: 12px
        }

        .sidebar-new {
            width: 228px
        }

        .auth .btn.btn-primary {
            font-size: 12px
        }

        .new-order-cat {
            font-size: 20px
        }

        .auth .add-fund_form .extraoption_order {
            flex-wrap: wrap
        }

        .auth .payment-tabs .pay-method_tabs .main-heading_method {
            font-size: 20px
        }

        .auth .payment-tabs .pay-method_tabs .sub-heading_method {
            font-size: 16px
        }

        .auth .payment-tabs .pay-method_tabs ul {
            font-size: 14px !important
        }

        .auth .payment-tabs .nav-tabs {
            margin-bottom: 0
        }

        .auth .ticket-btn-row .brand-category .cat-name {
            font-size: 12px
        }

        .auth .ticket-btn-row .ticket-btn_container {
            min-width: 80px
        }

        .auth .ticket_history-table .ticket_history-title {
            font-size: 20px
        }

        .auth .ticket_history-table #history-search .input-group {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            flex-wrap: wrap
        }

        .auth .ticket_history-table #history-search input {
            margin-bottom: 10px
        }

        .cat_filter-social .social-plat a {
            font-size: 12px;
            padding-left: 10px
        }

        .auth .cat_filter-social {
            padding: 10px
        }

        .auth .cat_filter-social .social-plat a {
            margin-left: 0;
            margin-bottom: 5px;
            min-width: 150px !important
        }

        .cat_filter-social .social-plat li {
            min-width: unset;
            flex: 1
        }

        .api .api_details-main .row>div {
            margin-top: 20px
        }

        .auth .top-bar {
            margin-left: 0;
            margin-right: 0
        }

        .auth .top-bar .top-bar-right-ul .nav_link-item {
            margin-right: 8px
        }

        .pinner-wrap {
            margin-right: 0
        }

        .auth #faq .section-title {
            font-size: 24px
        }

        .auth #faq .panel-heading a::after {
            top: 10px
        }

        .auth .db-tabs .nav-tabs li a {
            font-size: 14px;
            height: 50px
        }

        .auth .db-tabs .well {
            padding: 20px 10px
        }

        .auth .db-tabs .well h3 {
            font-size: 20px
        }

        .auth .db-tabs .well h5 {
            font-size: 18px
        }

        .auth .db-tabs .well ul li {
            font-size: 14px
        }

        .auth .ref-title {
            font-size: 22px
        }

        .auth .ref-link_container .ref-link h6 {
            font-size: 18px
        }

        .auth .ref-link_container .ref-link .afiliat_link {
            font-size: 14px
        }

        .auth .db-container .contact_details h4 {
            font-size: 22px
        }

        .auth .db-container .contact_details {
            margin-top: 20px;
            padding: 10px
        }

        .auth .db-container .contact_details li {
            font-size: 14px
        }

        .auth .db-container .faq-row .faq-title {
            font-size: 24px
        }

        .auth .db-container #faq .faq-row {
            padding: 0
        }

        .auth .db-container .faq-row .ticket-form h6 {
            font-size: 24px;
            margin-top: 20px
        }

        .auth .db-container .faq-row .ticket-form a {
            padding: 10px 20px;
            font-size: 14px
        }

        .auth .notification_panel .notify-title-row .new-title {
            font-size: 24px;
            margin-bottom: 0
        }

        .auth .notification_panel .notify-title-row .new-title br {
            display: none
        }
    }

    .frm-wrap {
        box-shadow: 0 0 20px 0 rgba(0, 0, 0, 42%);
        background-color: rgba(124, 150, 206, 77%);
    }

    .frm-wrap .checkbox label,
    .frm-wrap .have-acc,
    .frm-wrap .have-acc a,
    .frm-title,
    .frm-txt {
        color: #fff;
    }

    /*######################*/
    .tab-content .active {
        display: block;
    }

    /* Home Section */

    @media only screen and (max-width: 1199px) {
        .guest .navbar .navbar-nav>li>a {
            margin-left: 5px !important;
            margin-right: 0 !important;
            min-width: 0 !important;
        }

        .navbar-nav,
        .navbar-form {
            padding-top: 8px !important;
        }

        #top-sec {
            padding: 135px 0 120px !important;
        }

        .top-sec-status {
            margin-top: 0 !important;
            transform: translateY(115px) !important;
        }

        #ourservices {
            padding: 0 !important;
            padding-bottom: 50px !important;
        }

        #how {
            padding: 50px 0 !important;
        }

        .how-wrap {
            position: relative;
            padding: 25px 10px !important;
        }

        .how-iner {
            padding: 16px 10px !important;
        }

        .how-num {
            font-size: 35px !important;
        }

        .how-icon {
            width: 140px !important;
            height: 140px !important;
        }

        .how-wrap::after,
        .how-wrap::before {
            width: 250px !important;
            background-size: 248px 221px !important;
            left: 50% !important;
            transform: translateX(-52%) !important;
            height: 220px;
        }

        #faq .faq-row {
            margin-top: 50px !important;
        }

        #client .stars {
            padding-top: 10px !important;
        }

        .client-txt {
            font-size: 16px !important;
        }

        .client-name span {
            width: auto !important;
            font-size: 18px !important;
            text-align: left !important;
            padding: 0 0 !important;
        }

        .col-sm-6 {
            width: 44% !important;
        }
    }

    @media only screen and (max-width: 991px) {
        .top-sec-status-wrap {
            margin: 13px !important;
        }

        .row.top-sec-status {
            padding-bottom: 70px;
        }

        #top-sec .row {
            display: flex;
            flex-direction: column !important;
            align-items: center;
            align-content: center;
            justify-content: space-between;
        }

        .ourserviceicon2 {
            background-position: -275px -20px;
            margin: 0 auto !important;
        }

        .ourserviceicon3 {
            background-position: -103px -20px;
            margin: 0 auto !important;
        }

        .ourserviceicon4 {
            background-position: -185px -20px;
            margin: 0 auto !important;
        }

        .ourserviceicon1 {
            background-position: -22px -20px;
            margin: 0 auto !important;
        }

        #top-sec .top_sec_respnsive {
            display: flex;
            flex-direction: column !important;
        }

        #top-sec {
            padding: 195px 0 120px !important;
        }

        .frm-wrap {
            margin-top: 40px;
        }

        #social {
            padding: 70px 0;
        }

        .row.steps-row {
            margin-top: 20px;
        }

        #getstarted {
            padding: 0 !important;
            background-color: #f7f7f7;
        }

        .getstarted-img-wrap img {
            margin: 0 auto;
        }

        .title {
            margin-bottom: 10px;
            margin-top: 30px;
        }

        #ourservices .btn.btn-primary {
            margin-top: 10px;
        }

        .row.ourservices-row {
            margin-top: 30px !important;
        }

        .ourservices-infobox {
            background-color: #fff;
            border: 1px solid #e1e1e1;
            border-radius: 12px;
            padding: 15px;
            margin-top: 30px;
            min-height: 0 !important;
            text-align: center !important;
        }

        .ourservices-infobox-img.img-responsive {
            margin: 0 auto;
        }

        .delivery-img-wrap img {
            margin: 0 auto;
        }

        #what {
            background-color: #f7f7f7;
            padding: 0 !important;
            padding-bottom: 50px !important;
        }

        #how {
            padding: 30px !important;
        }

        .how-wrap::after,
        .how-wrap::before {
            display: none !important;
        }

        .how-icon {
            width: 100px !important;
            height: 100px !important;
        }

        .how-body {
            display: block !important;
            align-items: center;
            align-content: center;
            margin: 28px 15px 45px !important;
        }

        .how-num {
            font-size: 28px !important;
        }

        .how-txt {
            font-size: 14px !important;
            padding-left: 0 !important;
        }

        .how-wrap {
            position: relative;
            padding: 0 !important;
        }

        .how-iner {
            height: 250px !important;
        }

        #faq {
            padding: 20px !important;
        }

        #faq .faq-row {
            margin-top: 20px !important;
            margin: 0 auto !important;
        }

        #client {
            padding: 30px !important;
            background-color: #f8f5f0;
        }

    }

    @media only screen and (max-width: 767px) {
        .top-sec-status-wrap {
            width: 80% !important;
            margin: 0 auto !important;
            margin-top: 20px !important;
            gap: 10px !important;
        }

        #top-sec .row {
            display: block !important;
        }

        #google_translate_element {
            text-align: center !important;
        }

        #top-sec {
            padding: 0 !important;
            padding-top: 115px !important;
        }

        .top-sec-status-icon {
            width: 40px !important;
            height: 40px !important;
        }

        .top-sec-status-txt {
            padding-left: 5px !important;
            font-size: 13px !important;
        }

        .top-sec-status {
            margin-top: 50px !important;
            transform: translateY(0) !important;
        }

        .title {
            font-size: 35px;
        }

        .steps-wrap {
            transform: translateY(30px) !important;
        }

        .ourserivces-img img {
            margin-top: 50px !important;
        }

        .title {
            font-size: 35px;
            font-weight: 700;
            color: #000;
            margin-bottom: 10px !important;
        }

        #ourservices .btn.btn-primary {
            margin-top: 20px !important;
        }

        .row.ourservices-row {
            margin-top: 20px !important;
        }

        #delivery {
            padding: 50px 0 !important;
        }

        .delivery-img-wrap img {
            margin: 0 115px !important;
        }

        .delivery-img-wrap img {
            margin: 0 30px !important;
        }

        #social {
            padding: 50px !important;
        }

        .how-iner {
            margin-top: 20px !important;
            height: auto !important;
        }

        .how-body {
            margin: 10px !important;
            text-align: center;
        }

        .ready_title {
            text-align: center;
            margin: 0 auto !important;
        }
    }

    @media only screen and (max-width: 575px) {
        .top-sec-status-wrap {
            width: 100% !important;
        }

        .main-title {
            font-size: 24px !important;
            line-height: 1.2 !important;
        }

        .top-sec-ul {
            padding-left: 15px;
            margin: 20px 0 !important;
        }

        .top-sec-status {
            margin-top: 24px !important;
            transform: translateY(0) !important;
            padding-bottom: 40px !important;
        }

        .top-sec-status-wrap {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            align-content: center;
            background-color: #ffffff;
            padding: 10px !important;
            border-radius: 100px;
            box-shadow: 0 3px 0 2px #325d88;
            margin-top: 15px !important;
            gap: 8px !important;
        }

        #social {
            padding: 0 !important;
        }

        .title {
            font-size: 29px !important;
        }

        .txt {
            font-size: 14px !important;
        }

        .steps-left {
            max-width: 120px !important;
            height: 120px !important;
        }

        .btn.btn-primary,
        .btn.btn-secondary {
            font-size: 14px !important;
        }

        .delivery-img-wrap img {
            margin: 0 !important;
        }

        .how-iner {
            display: block !important;
            border-radius: 20px !important;
        }

        .how-icon {
            width: 70px !important;
            height: 70px !important;
            margin: 0;
            flex: 0 0 70px;
            max-width: 70px;
            margin: 0 auto !important;
        }

        .what-slider {
            margin-top: 25px !important;
        }

        .what-slider-nav {
            margin-top: 20px !important;
        }

        #what {
            padding-bottom: 30px !important;
        }

        .steps-left {
            max-width: 100px !important;
            height: 100px !important;
        }

        .steps-right {
            transform: translateY(14px);
        }

        #faq {
            padding: 0 !important;
        }

        #pay-method {
            padding-bottom: 30px !important;
        }

        .ready_title .title {
            margin-bottom: 10px;
            margin-top: 15px;
        }

        #ready {
            background-color: #93c34b;
            padding: 15px 0 !important;
        }

        #top-sec {

            position: unset !important;
        }

        .social-img {
            margin: 25px auto 25px !important;
        }

        .service-description .modal-header .modal-title {
            padding-top: 25px !important;
        }

        .top-sec-status-txt {
            flex: 0 0 calc(100% - 102px) !important;
            max-width: calc(100% - 102px) !important;
        }

        .ourserviceicon {
            margin: auto !important;
        }
    }

    /* services-section */

    @media only screen and (max-width: 991px) {
        .guest .search-row .services_search-container .dropdown {
            background-color: #fff;
            margin-bottom: 10px;
            padding: 12px 26px;
            border-radius: 50px;
            margin-left: 5px !important;
        }

        #search_service {
            background-color: #fff;
            border-radius: 15px !important;
        }
    }

    @media only screen and (max-width: 550px) {
        .guest .cat_filter-social .social-plat a {
            width: 42px !important;
            height: 42px !important;
            align-items: center !important;
            justify-content: center !important;
            text-align: center !important;
        }

        .guest .cat_filter-social .social-plat a img {
            margin: 0 auto !important;
        }

        .guest .search-row .services_search-container {
            justify-content: center !important;
            padding: 6px 0 !important;
        }

        .guest .social-plat li a .sp-one {
            display: none !important;
        }

        .guest .search-row .services_search-container .dropdown {
            background-color: #fff;
            margin-bottom: 10px;
            padding: 8px 4px !important;
            border-radius: 50px;
            width: 100% !important;
            margin-left: 8px !important;
        }

        .guest .search-row .services_search-container {
            justify-content: left !important;
        }

        .guest .search-row .services_search-bar .services_search-icon {
            position: absolute;
            left: 14px;
            z-index: 3;
            top: 26px !important;
            color: #2a5076;
            pointer-events: none;
        }

        .guest .modal-body {
            padding: 12px !important;
            width: 100% !important;
            white-space: normal !important;
        }

        .guest .service-description .modal-header .modal-title {
            color: #fff;
            width: 100% !important;
            white-space: normal !important;
            padding-top: 0 !important;
        }

        .guest #search_service {
            background-color: #fff !important;
            width: 100% !important;
            height: 50px !important;
            border-radius: 100px !important;
        }

        .guest .cat_filter-social .social-plat li {
            min-width: unset;
            flex: unset !important;
        }

        .guest .cat_filter-social .social-plat {
            justify-content: center !important;
        }

        .guest .cat_filter-social .social-plat a .service_icon.service_icon-ellipsis {
            width: 22px !important;
            height: 22px !important;
            margin-right: 0 !important;
        }

        .guest .cat_filter-social .social-plat a .service_icon.service_icon-infinity {
            width: fit-content;
            padding-top: 2px !important;
        }

        .guest .cat_filter-social .social-plat a .service_icon {
            margin-right: 0 !important;
        }

        .guest .cat_filter-social .social-plat a .service_icon i {
            font-size: 24px !important;
        }

        .guest .cat_filter-social .social-plat a .service_icon.service_icon-ellipsis i {
            font-size: 16px !important;
        }

        .guest .cat_filter-social .social-plat a .service_icon.service-icon-hero {
            padding-top: 2px !important;
        }
    }



    /* How-its-works */

    @media only screen and (max-width: 991px) {
        #how_works-section .step_row-container .step-works_img {
            margin: 0 auto !important;
        }

        #how_works-section .header_row-works .step_title {
            font-size: 25px !important;
        }
    }

    @media only screen and (max-width: 575px) {
        #how_works-section .header_row-works .step_title {
            font-size: 25px !important;
        }
    }


    /* API-section */

    @media only screen and (max-width: 380px) {
        .well-float {
            width: 100% !important;
        }

        .well {
            padding: 13px !important;
        }

        .text-right {
            text-align: right;
            padding-bottom: 15px !important;
        }
    }

    /* New Order Dropdwon Edited Codes */

    #field-orderform-fields-average_time {
        font-size: 14px;
        font-weight: 300;
    }

    .gizli {
        display: none !important;
        opacity: 0 !important;
        overflow: hidden !important;
    }

    .auth .form-control {
        color: #000;
        font-weight: unset;
        font-size: 14px;
    }

    #statics_user-details .modal-body .nav-tabs {
        flex-wrap: wrap;
    }

    #statics_user-details .modal-body .nav-tabs li {
        margin-bottom: 5px;
    }

    .select2-container .select2-selection__text {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .select2-dropdown.dropdown-menu {
        border: 1px solid #a0a0a0 !important;
        padding: 3px;
        border-radius: 4px;
    }

    .select2-dropdown .dropdown-menu li a {
        font-size: 14px;
        padding: 3px 10px;
    }

    .select2-dropdown,
    .select2-dropdown .dropdown-menu {
        background-color: #fff;
    }

    .select2-results__options.dropdown-menu>.active>a,
    .select2-results__options.dropdown-menu>.active>a:hover,
    .select2-results__options.dropdown-menu>.active>a:focus,
    .select2-results__options.dropdown-menu>li>a:hover,
    .select2-results__options.dropdown-menu>li>a:focus {
        color: #000;
        background-color: #e0e0e6;
    }

    .select2-container--default .select2-results>.select2-results__options {
        max-height: 450px;
    }

    .select2-container--default .select2-results>.select2-results__options .select2-results__option a {
        font-size: 14px !important;
        padding: 3px 5px;
        line-height: 1.2;
    }

    .select2-container--default .select2-results>.select2-results__options .select2-results__option a {
        white-space: nowrap !important;
    }

    .select2-dropdown.dropdown-menu {
        background-color: #ebe4e4 !important;
        border-color: #ebe4e4 !important;
    }

    .select2-dropdown,
    .select2-dropdown .dropdown-menu {
        /*background-color: #ebe4e4;*/
        background-color: #fff;
    }

    .select2-results__options.dropdown-menu {
        width: max-content;
        min-width: 100%;
    }

    #brandCategoryWrapper > a > *{
        pointer-events: none;
    }

    #brandCategoryWrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0px 10px;
    }

    @media only screen and (max-width: 992px) {
        #brandCategoryWrapper {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    @media only screen and (max-width: 768px) {
        #brandCategoryWrapper {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    @media only screen and (max-width: 550px) {
        #brandCategoryWrapper {
            grid-template-columns: repeat(3, 1fr);
        }
    }