/* @import url("https://fonts.googleapis.com/css2?family=Rubik:wght@200;300;400;500;600;700&display=swap"); */

:root {
    color: rgb(170, 169, 169);
    /* --heading-font: "Rubik", sans-serif; */
    /* --body-font: "Rubik", sans-serif; */
    /* --body-font-window: 'SegoeUi', 'Segoe UI', sans-serif; */
    --heading: 58 69 89;
    --body: 0 0 0;
    --border: 228 16% 94%;
    --base: 31 171 137;
    --dark-blue: 222 98% 19%;
    --accent-h: 205;
    --accent-s: 100%;
    --accent-l: 14%;
    --accent-50: var(--accent-h) var(--accent-s) calc(var(--accent-l) + 25%);
    --accent-100: var(--accent-h) var(--accent-s) calc(var(--accent-l) + 20%);
    --accent-200: var(--accent-h) var(--accent-s) calc(var(--accent-l) + 15%);
    --accent-300: var(--accent-h) var(--accent-s) calc(var(--accent-l) + 10%);
    --accent-400: var(--accent-h) var(--accent-s) calc(var(--accent-l) + 5%);
    --accent: var(--accent-h) var(--accent-s) var(--accent-l);
    --accent-600: var(--accent-h) var(--accent-s) calc(var(--accent-l) - 5%);
    --accent-700: var(--accent-h) var(--accent-s) calc(var(--accent-l) - 10%);
    --accent-800: var(--accent-h) var(--accent-s) calc(var(--accent-l) - 15%);
    --accent-900: var(--accent-h) var(--accent-s) calc(var(--accent-l) - 20%);
    --primary: 245 82% 67%;
    --secondary: 210 7% 56%;
    --success: 147 67% 47%;
    --danger: 360 78% 62%;
    --warning: 29 100% 63%;
    --info: 203 89% 53%;
    --dark: 206 100% 0%;
    --teal: 174 100% 29%;
    --muted: 208 7% 47%;
    --white: 0 0% 100%;
    --light-h: 140;
    --light-s: 27%;
    --light-l: 98%;
    --light-50: var(--light-h) var(--light-s) calc(var(--light-l) + 33%);
    --light-100: var(--light-h) var(--light-s) calc(var(--light-l) + 20%);
    --light-200: var(--light-h) var(--light-s) calc(var(--light-l) + 15%);
    --light-300: var(--light-h) var(--light-s) calc(var(--light-l) + 10%);
    --light-400: var(--light-h) var(--light-s) calc(var(--light-l) + 5%);
    --light: var(--light-h) var(--light-s) var(--light-l);
    --light-600: var(--light-h) var(--light-s) calc(var(--light-l) - 5%);
    --light-700: var(--light-h) var(--light-s) calc(var(--light-l) - 10%);
    --light-800: var(--light-h) var(--light-s) calc(var(--light-l) - 15%);
    --light-900: var(--light-h) var(--light-s) calc(var(--light-l) - 20%);
    --dark-h: 0;
    --dark-s: 0%;
    --dark-l: 0%;
    --dark-50: var(--dark-h) var(--dark-s) calc(var(--dark-l) + 50%);
    --dark-100: var(--dark-h) var(--dark-s) calc(var(--dark-l) + 20%);
    --dark-200: var(--dark-h) var(--dark-s) calc(var(--dark-l) + 15%);
    --dark-300: var(--dark-h) var(--dark-s) calc(var(--dark-l) + 10%);
    --dark-400: var(--dark-h) var(--dark-s) calc(var(--dark-l) + 5%);
    --dark: var(--dark-h) var(--dark-s) var(--dark-l);
    --dark-600: var(--dark-h) var(--dark-s) calc(var(--dark-l) - 5%);
    --dark-700: var(--dark-h) var(--dark-s) calc(var(--dark-l) - 10%);
    --dark-800: var(--dark-h) var(--dark-s) calc(var(--dark-l) - 15%);
    --dark-900: var(--dark-h) var(--dark-s) calc(var(--dark-l) - 20%);
}

html {
    scroll-behavior: smooth;
}
@font-face {
    font-family: "SegoeUi";
    src: url("../../../font/Segoe UI.ttf") format("truetype");
    font-weight: normal;
}
@font-face {
    font-family: "SegoeBold";
    src: url("../../../font/Segoe UI Bold.ttf") format("truetype");
    font-weight: bold;
}

body {
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: rgb(var(--body));
    line-height: 1.6;
    display: flex;
    flex-flow: column;
    min-height: 100vh;
    justify-content: space-between;
    overflow: hidden;
    overflow-y: auto;
    font-family: -apple-system, BlinkMacSystemFont, "SegoeUi", Roboto, "Ubuntu",
        Cantarell, "Noto Sans", "Helvetica Neue", Arial, sans-serif;
}

.tag-selected-wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 6px 12px;
    background: #fff;
    border-radius: 30px;
    border: 1px solid #ddd;
    min-height: 52px;
}

.selected-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-chip {
    background: #f4f4f4;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #e2e2e2;
}

.tag-remove {
    cursor: pointer;
    font-size: 16px;
    color: #666;
    line-height: 1;
}

.clear-tags {
    position: absolute;
    right: 12px;
    font-size: 20px;
    cursor: pointer;
    color: #444;
}

.clear-tags:hover {
    color: #000;
}


p {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: rgb(var(--body));
}

a:hover {
    color: rgb(var(--base));
}

span,
sub,
sup,
a {
    display: inline-block;
}

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

.text--secondary {
    color: hsl(var(--secondary)) !important;
}

.text--success {
    color: hsl(var(--success)) !important;
}

.text--danger {
    color: hsl(var(--danger)) !important;
}

.text--warning {
    color: hsl(var(--warning)) !important;
}

.text--info {
    color: hsl(var(--info)) !important;
}

.text--dark {
    color: hsl(var(--dark)) !important;
}

.text--muted {
    color: hsl(var(--muted)) !important;
}

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

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

.bg--secondary {
    background-color: hsl(var(--secondary)) !important;
}

.bg--success {
    background-color: hsl(var(--success)) !important;
}

.bg--danger {
    background-color: hsl(var(--danger)) !important;
}

.bg--warning {
    background-color: hsl(var(--warning)) !important;
}

.bg--info {
    background-color: hsl(var(--info)) !important;
}

.bg--dark {
    background-color: hsl(var(--dark)) !important;
}

.bg--light {
    background-color: hsl(var(--light)) !important;
}

.bg--accent {
    background-color: #017a80 !important;
}

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

.bg_img {
    background-position: center;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.bg_fixed {
    background-attachment: fixed !important;
}

a.text-white:hover {
    color: rgb(var(--base));
}

.rtl {
    direction: rtl !important;
}

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

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -999;
}

.overlay.active {
    z-index: 111;
}

.overlay.overlay-color {
    z-index: 111;
    background-color: #00223570;
}

.pt-120 {
    padding-top: clamp(70px, 6vw, 100px);
}

.pt-100 {
    padding-top: clamp(70px, 6vw, 100px);
}

.pt-80 {
    padding-top: clamp(60px, 6vw, 80px);
}

.pt-60 {
    padding-top: clamp(40px, 4vw, 60px);
}

.pt-50 {
    padding-top: clamp(30px, 6vw, 50px);
}
.pt-40 {
    padding-top: clamp(30px, 6vw, 40px);
}

.pt-30 {
    padding-top: clamp(10px, 6vw, 30px);
}

.pb-120 {
    padding-bottom: clamp(70px, 6vw, 100px);
}

.pb-100 {
    padding-bottom: clamp(70px, 6vw, 100px);
}

.pb-80 {
    padding-bottom: clamp(60px, 6vw, 80px);
}

.pb-70 {
    padding-bottom: clamp(50px, 4vw, 70px);
}

.pb-60 {
    padding-bottom: clamp(40px, 4vw, 60px);
}

.pb-50 {
    padding-bottom: clamp(30px, 6vw, 50px);
}

.pb-30 {
    padding-bottom: clamp(10px, 6vw, 30px);
}

.deposit-preview .deposit-content ul li,
.deposit-preview .deposit-content,
.dashboard-widget,
.experties-meta,
.profile,
.story-item.recent-story,
.testimonial-item .testimonial-thumb-wrapper,
.rating,
.choose-item,
.menu,
.header-bottom-area,
.pagination,
.list.list-column {
    display: flex;
    flex-wrap: wrap;
}

.deposit-preview {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.video-thumb::before,
.story-meta .read-time::before,
.inner-banner::before,
.banner-section::before,
.video-button::before,
.video-button::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.or::before,
.or::after,
.footer-logo::before,
.footer-logo::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
}

.deposit-card,
.story-item.recent-story,
.header-trigger span::after,
.header-trigger span::before,
.header,
.btn,
.cmn--btn,
a,
img,
.title,
.name {
    transition: all 0.3s;
}

.story-item__content p,
.story-item__content .title a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
}

.account-status::before,
.influencer-item__content .name::before,
.breadcrumb li:nth-child(2)::before,
.menu li.has-sub-menu > a::after {
    position: absolute;
    font-weight: 900;
    font-size: 16px;
    font-family: "Line Awesome Free";
}

.list.list-style-one li::before {
    position: absolute;
    font-weight: 900;
    font-size: 16px;
    font-family: "Font Awesome 5 Free";
}

.list.list-column {
    flex-direction: column;
}

.list.list-style-one li {
    position: relative;
    padding: 6px 0;
    padding-left: 25px;
}

.list.list-style-one li::before {
    content: "\f30b";
    left: 0;
    top: 6px;
    color: rgb(var(--base));
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 500;
    line-height: 1.3;
    color: rgb(var(--heading));
    font-family: var(--heading-font);
    word-break: break-word;
}

h4,
h5,
h6 {
    font-weight: 500;
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
    color: rgb(var(--heading));
    word-break: break-word;
}

h1 {
    font-size: clamp(36px, 5vw, 48px);
}

@media (max-width: 1199px) {
    .banner-content h1 {
        font-size: clamp(30px, 5vw, 48px);
    }
}

h2 {
    font-size: clamp(30px, 4vw, 36px);
}

h3 {
    font-size: clamp(22px, 5vw, 26px);
}

h4 {
    font-size: clamp(20px, 6vw, 22px);
}

h5 {
    font-size: clamp(18px, 7vw, 20px);
}

h6 {
    font-size: 18px;
}

.fw-medium {
    font-weight: 500 !important;
}

.btn,
.cmn--btn {
    color: hsl(var(--white));
    padding: 8px 25px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    outline: none;
    border-radius: 8px;
    z-index: 1;
    border: 1px solid transparent;
}

@media (max-width: 1199px) {
    .btn,
    .cmn--btn {
        font-size: 18px;
    }
}

.btn.btn--lg,
.cmn--btn.btn--lg {
    padding: 13px 35px !important;
    font-size: 24px;
}

@media (max-width: 991px) {
    .btn.btn--lg,
    .cmn--btn.btn--lg {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .btn.btn--lg,
    .cmn--btn.btn--lg {
        font-size: 20px;
    }
}

.btn.btn--md,
.cmn--btn.btn--md {
    padding: 6px 20px !important;
    font-size: 15px;
}

.btn.btn--sm,
.cmn--btn.btn--sm {
    padding: 3px 7px !important;
    font-size: 13px;
}

.btn.btn--xs,
.cmn--btn.btn--xs {
    padding: 0px 10px !important;
    font-size: 13px;
}

.cmn--btn {
    background: rgb(var(--base));
}

.cmn--btn:hover {
    border-color: rgb(var(--base));
    background: transparent;
    color: rgb(var(--base));
}

.radius-0 {
    border-radius: 0 !important;
}

.radius-5 {
    border-radius: 5px !important;
}

.login-button {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    line-height: 1;
    background: rgb(var(--base));
    color: hsl(var(--white));
    font-size: 14px !important;
    padding: 0 !important;
    justify-content: unset !important;
}

.login-button::after {
    display: none;
}

.login-button:hover {
    color: hsl(var(--white));
}

@media (max-width: 450px) {
    .login-button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

.video-button {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    background: hsl(var(--white));
    color: rgb(var(--base));
    font-size: 26px;
    position: relative;
}

.video-button::before,
.video-button::after {
    border: 15px solid hsl(var(--white));
    animation: play-button 3s linear infinite;
}

.video-button::before {
    animation-delay: 0.7s;
}

.btn--primary {
    background-color: hsl(var(--primary));
    border: 1px solid hsl(var(--primary));
    color: hsl(var(--white));
}

.btn--primary:hover {
    color: hsl(var(--white));
    background-color: hsl(var(--primary) / 0.9);
}

.btn--secondary {
    background-color: hsl(var(--secondary));
    border: 1px solid hsl(var(--secondary));
    color: hsl(var(--white));
}

.btn--secondary:hover {
    color: hsl(var(--white));
    background-color: hsl(var(--secondary) / 0.9);
}

.btn--success {
    background-color: hsl(var(--success));
    border: 1px solid hsl(var(--success));
    color: hsl(var(--white));
}

.btn--success:hover {
    color: hsl(var(--white));
    background-color: hsl(var(--success) / 0.9);
}

.btn--danger {
    background-color: hsl(var(--danger));
    border: 1px solid hsl(var(--danger));
    color: hsl(var(--white));
}

.remove-disable-btn {
    background-color: hsl(var(--danger) / 0.5);
    border: none;
    color: hsl(var(--white));
}

.btn--danger:hover {
    color: hsl(var(--white));
    background-color: hsl(var(--danger) / 0.9);
}

.btn--warning {
    background-color: hsl(var(--warning));
    border: 1px solid hsl(var(--warning));
    color: hsl(var(--white));
}

.btn--warning:hover {
    color: hsl(var(--white));
    background-color: hsl(var(--warning) / 0.9);
}

.btn--info {
    background-color: hsl(var(--info));
    border: 1px solid hsl(var(--info));
    color: hsl(var(--white));
}

.btn--info:hover {
    color: hsl(var(--white));
    background-color: hsl(var(--info) / 0.9);
}

.btn--light {
    background-color: hsl(var(--light));
    border: 1px solid hsl(var(--light));
    color: hsl(var(--white));
}

.btn--light:hover {
    color: hsl(var(--white));
    background-color: hsl(var(--light) / 0.9);
}

.btn--dark {
    background-color: hsl(var(--dark));
    border: 1px solid hsl(var(--dark));
    color: hsl(var(--white));
}

.btn--dark:hover {
    background-color: hsl(var(--dark) / 0.9);
    color: hsl(var(--white));
}

.btn--base {
    background-color: rgb(var(--base));
    border: 1px solid rgb(var(--base));
    color: hsl(var(--white));
}

.btn--base:hover {
    color: hsl(var(--white));
    background-color: rgb(var(--base) / 0.9);
}

.btn--outline-primary {
    background-color: transparent;
    border: 1px solid hsl(var(--primary)) !important;
    color: hsl(var(--primary)) !important;
}

.btn--outline-secondary {
    background-color: transparent;
    border: 1px solid hsl(var(--secondary)) !important;
    color: hsl(var(--secondary)) !important;
}

.btn--outline-success {
    background-color: transparent;
    border: 1px solid hsl(var(--success)) !important;
    color: hsl(var(--success)) !important;
}

.btn--outline-danger {
    background-color: transparent;
    border: 1px solid hsl(var(--danger)) !important;
    color: hsl(var(--danger)) !important;
}

.btn--outline-warning {
    background-color: transparent;
    border: 1px solid hsl(var(--warning)) !important;
    color: hsl(var(--warning)) !important;
}

.btn--outline-info {
    background-color: transparent;
    border: 1px solid hsl(var(--info)) !important;
    color: hsl(var(--info)) !important;
}

.btn--outline-light {
    background-color: transparent;
    border: 1px solid hsl(var(--light)) !important;
    color: hsl(var(--light)) !important;
}

.btn--outline-dark {
    background-color: transparent;
    border: 1px solid hsl(var(--dark)) !important;
    color: hsl(var(--dark)) !important;
}

.btn--outline-base {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
    border: 1px solid transparent;
    color: rgb(var(--dark)) !important;
    transition: all 0.3s ease;
}

.btn--outline-base.active {
    background: linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box !important;
    border: 1.5px solid transparent !important;
    color: #fff !important;
}
.account-content-left .this-page-title {
    color: #252626;
    margin-bottom: 1.2rem;
    font-weight: 700;
    font-size: 2rem;
}

/* custom select */
.custom-select-bootstrap {
    width: 286px;
    border-right: 1px solid #dfdfdf;
}
.custom-banner-select .input-group .register-btn {
    border-radius: 15px;
    border-top-left-radius: 15px !important;
    border-bottom-left-radius: 15px !important;
    line-height: 1;
    padding: 14px 40px;
}
.custom-banner-select .custom-select-bootstrap .dropdown-menu {
    z-index: 9;
}
.social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #ffffff;
    color: #017a80;
    border-color: #ffffff;
}
.custom-select-bootstrap .btn {
    background-color: #fff;
    height: 45px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    color: #000;
    padding: 0 24px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.2s ease;
}
.footer--terms ul {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-align {
    align-items: center;
}
.footer--terms ul li a {
    color: #fff;
    transition: all 0.3s ease;
}
.custom-select-bootstrap .btn:focus,
.custom-select-bootstrap .btn:active {
    box-shadow: none;
    outline: none;
    border-color: #002b4e;
}

.custom-select-bootstrap .dropdown-toggle::after {
    position: absolute;
    right: 0.75rem;
    border: solid #000;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
    margin-left: 12px;
    vertical-align: middle;
    transition: 0.2s ease;
}

.custom-select-bootstrap.show .dropdown-toggle::after {
    transform: rotate(-135deg);
}

.platform-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.dropdown-menu {
    /* background: linear-gradient(hsl(var(--white)), hsl(var(--white))) padding-box, linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal))) border-box; */
    border: 2px solid transparent;
    border-radius: 20px;
    top: 116% !important;
    padding: 8px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    padding: 10px 24px;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: #f5f5f5;
}

/* end */
.account-content-right {
    display: flex;
    justify-content: center;
    gap: 0.9rem;
}

.account-content-right .btn {
    width: 150px;
    padding: 0.9rem 1rem !important;
}

.btn--outline-custom {
    background-color: transparent;
    border: 1px solid #d2d1d1 !important;
    color: #858585;
}

.btn--outline-custom.active {
    border-color: rgb(var(--base) / 0.7) !important;
    color: rgb(var(--base)) !important;
}
.image-uploader{
background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box!important;
    border: 1.5px solid transparent!important;
}
.border--create .form-group .select2{
	background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box!important;
    border: 1.5px solid transparent!important;
    border-radius: 5px;
}
.border--create .input-group-text{
    color: #fff;
    border: navajowhite;
}
.border--create .form--control{
	background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box!important;
    border: 1.5px solid transparent!important;
}
.bank-details-outer form .form-group input{
   background: linear-gradient(hsl(var(--white)), hsl(var(--white))) padding-box, linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal))) border-box;
    border: 1.5px solid transparent; 
}
.bank-details-outer form .form-group textarea{
   background: linear-gradient(hsl(var(--white)), hsl(var(--white))) padding-box, linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal))) border-box;
    border: 1.5px solid transparent; 
}
.copytext i{
color: #fff;
}
.border-gradient .btn--outline-custom.active {
    border-color: rgb(var(--base) / 0.7) !important;
    color: #fff !important;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)));
    /* border: 1px solid transparent; */
    color: hsl(var(--white)) !important;
    transition: all 5.3s ease;
}
.border-input-gradient .form--control:focus {
    border: none;
}
.border-input-gradient input {
    border: none;
}
.border-input-gradient {
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0.25rem;
}

.submit-btn:hover {
    background: linear-gradient(
        90deg,
        hsl(var(--teal)),
        hsl(var(--dark-blue))
    ) !important;
    color: #fff !important;
}

.register-url {
    color: hsl(var(--base));
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.btn--no-border {
    background-color: transparent;
    color: rgb(var(--base)) !important;
    font-size: 14px;
}

.badge--base {
    background-color: rgb(var(--base) / 0.15);
    border: 1px solid rgb(var(--base));
    color: rgb(var(--base));
}

.badge--primary {
    background-color: hsl(var(--primary) / 0.15);
    border: 1px solid hsl(var(--primary));
    color: hsl(var(--primary));
}

.badge--secondary {
    background-color: hsl(var(--secondary) / 0.15);
    border: 1px solid hsl(var(--secondary));
    color: hsl(var(--secondary));
}

.badge--success {
    background-color: hsl(var(--success) / 0.15);
    border: 1px solid hsl(var(--success));
    color: hsl(var(--success));
}

.badge--danger {
    background-color: hsl(var(--danger) / 0.15);
    border: 1px solid hsl(var(--danger));
    color: hsl(var(--danger));
}

.badge--warning {
    background-color: hsl(var(--warning) / 0.15);
    border: 1px solid hsl(var(--warning));
    color: hsl(var(--warning));
}

.badge--info {
    background-color: hsl(var(--info) / 0.15);
    border: 1px solid hsl(var(--info));
    color: hsl(var(--info));
}

.badge--dark {
    background-color: hsl(var(--dark) / 0.15);
    border: 1px solid hsl(var(--dark));
    color: hsl(var(--dark));
}

.badge {
    border-radius: 18px;
    padding: 4px 15px;
}
.order--badge{
    padding: 0;
    border-radius: 50%;
    display: flex;
    height: 1.2rem;
    font-size: 0.6rem;
    width: 1.2rem;
    align-items: center;
    top: 0.9rem;
    left: 4.8rem;
    position: absolute;
    justify-content: center;
}

.badge.badge--icon {
    padding: 9px;
    border-radius: 5px;
    font-size: 13px;
}

.badge.badge--lg {
    padding: 6px 16px;
}

.badge.badge--md {
    padding: 4px 12px;
}

.badge.badge--sm {
    padding: 3px 10px;
}

.badge--fill-primary {
    background-color: hsl(var(--primary));
    border: 1px solid hsl(var(--primary));
    color: hsl(var(--white));
}

.badge--fill-primary.style--two {
    background-color: hsl(var(--primary) / 0.15);
    border: 0;
    color: hsl(var(--primary)) !important;
}

.badge--fill-primary:hover {
    color: hsl(var(--white));
}

.badge--fill-secondary {
    background-color: hsl(var(--secondary));
    border: 1px solid hsl(var(--secondary));
    color: hsl(var(--white));
}

.badge--fill-secondary.style--two {
    background-color: hsl(var(--secondary) / 0.15);
    border: 0;
    color: hsl(var(--secondary)) !important;
}

.badge--fill-secondary:hover {
    color: hsl(var(--white));
}

.badge--fill-success {
    background-color: hsl(var(--success));
    border: 1px solid hsl(var(--success));
    color: hsl(var(--white));
}

.badge--fill-success.style--two {
    background-color: hsl(var(--success) / 0.15);
    border: 0;
    color: hsl(var(--success)) !important;
}

.badge--fill-success:hover {
    color: hsl(var(--white));
}

.badge--fill-danger {
    background-color: hsl(var(--danger));
    border: 1px solid hsl(var(--danger));
    color: hsl(var(--white));
}

.badge--fill-danger.style--two {
    background-color: hsl(var(--danger) / 0.15);
    border: 0;
    color: hsl(var(--danger)) !important;
}

.badge--fill-danger:hover {
    color: hsl(var(--white));
}

.badge--fill-warning {
    background-color: hsl(var(--warning));
    border: 1px solid hsl(var(--warning));
    color: hsl(var(--white));
}

.badge--fill-warning.style--two {
    background-color: hsl(var(--warning) / 0.15);
    border: 0;
    color: hsl(var(--warning)) !important;
}

.badge--fill-warning:hover {
    color: hsl(var(--white));
}

.badge--fill-info {
    background-color: hsl(var(--info));
    border: 1px solid hsl(var(--info));
    color: hsl(var(--white));
}

.badge--fill-info.style--two {
    background-color: hsl(var(--info) / 0.15);
    border: 0;
    color: hsl(var(--info)) !important;
}

.badge--fill-info:hover {
    color: hsl(var(--white));
}

.badge--fill-light {
    background-color: hsl(var(--light));
    border: 1px solid hsl(var(--light));
    color: hsl(var(--white));
}

.badge--fill-light.style--two {
    background-color: hsl(var(--light) / 0.15);
    border: 0;
    color: hsl(var(--light)) !important;
}

.badge--fill-light:hover {
    color: hsl(var(--white));
}

.badge--fill-dark {
    background-color: hsl(var(--dark));
    border: 1px solid hsl(var(--dark));
    color: hsl(var(--white));
}

.badge--fill-dark.style--two {
    background-color: hsl(var(--dark) / 0.15);
    border: 0;
    color: hsl(var(--dark)) !important;
}

.badge--fill-dark:hover {
    color: hsl(var(--white));
}
.border-gradient .custom--card .col-xxl-8 .form-group input{
    background: linear-gradient(hsl(var(--white)), hsl(var(--white))) padding-box, linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal))) border-box;
    border: 1.5px solid transparent;
}
.border-gradient .custom--card .col-xxl-8 .form-group .select2{
 background: linear-gradient(hsl(var(--white)), hsl(var(--white))) padding-box, linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal))) border-box;
    border: 1.5px solid transparent;
}
.border-gradient .border-inner-gradient input{
   background: linear-gradient(hsl(var(--white)), hsl(var(--white))) padding-box, linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal))) border-box;
    border: 1.5px solid transparent; 
}
.border-gradient .input-group .input-group-text.copytext{
    border: transparent;
} 

.badge--fill-base {
    background:linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)));
    border: 1px solid rgb(var(--base));
    color: hsl(var(--white));
}

.badge--fill-base.style--two {
    background-color: rgb(var(--base) / 0.15);
    border: 0;
    color: rgb(var(--base)) !important;
}

.badge--fill-base:hover {
    color: hsl(var(--white));
}

@media (max-width: 767px) {
    .table--responsive--md thead {
        display: none;
    }

    .table--responsive--md tbody tr {
        display: block;
    }

    .table--responsive--md tbody tr td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 767px) and (max-width: 991px) {
    .table--responsive--md tbody tr td {
        font-size: 14px !important;
    }
}

@media (max-width: 767px) {
    .table--responsive--md tbody tr td::before {
        content: attr(data-label);
        font-family: rgb(var(--heading));
        font-size: 16px;
        color: rgb(var(--heading));
        font-weight: 600;
    }
}

@media (max-width: 767px) and (max-width: 575px) {
    .table--responsive--md tbody tr td::before {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .table--responsive--lg thead {
        display: none;
    }

    .table--responsive--lg tbody tr {
        display: block;
    }

    .table--responsive--lg tbody tr td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 991px) and (max-width: 991px) {
    .table--responsive--lg tbody tr td {
        font-size: 14px !important;
        text-align: right !important;
        border-bottom: 1px solid hsl(var(--border));
    }
}

@media (max-width: 991px) {
    .table--responsive--lg tbody tr td:first-child {
        text-align: right !important;
    }
}

@media (max-width: 991px) {
    .table--responsive--lg tbody tr td::before {
        content: attr(data-label);
        font-family: rgb(var(--heading));
        font-size: 16px;
        color: rgb(var(--heading));
        font-weight: 600;
        text-align: left !important;
    }
}

@media (max-width: 991px) and (max-width: 575px) {
    .table--responsive--lg tbody tr td::before {
        font-size: 15px;
    }
}

@media (max-width: 1199px) {
    .table--responsive--xl thead {
        display: none;
    }

    .table--responsive--xl tbody tr {
        display: block;
    }

    .table--responsive--xl tbody tr:nth-child(even) td {
        background-color: hsl(var(--light)) !important;
    }

    .table--responsive--xl tbody tr td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 1199px) and (max-width: 991px) {
    .table--responsive--xl tbody tr td {
        font-size: 14px !important;
        text-align: right;
    }
}

@media (max-width: 1199px) {
    .table--responsive--xl tbody tr td::before {
        content: attr(data-label);
        font-family: rgb(var(--heading));
        font-size: 16px;
        color: rgb(var(--heading));
        font-weight: 600;
    }
}

@media (max-width: 1199px) and (max-width: 575px) {
    .table--responsive--xl tbody tr td::before {
        font-size: 15px;
    }
}

.table {
    margin: 0;
    color: rgb(var(--body));
    box-shadow: 0 2px 5px 2px hsl(var(--border) / 0.3);
}

tbody {
    border: 0 !important;
}

.table thead tr {
    border: 0;
}

.table thead tr th {
    background: #002a47;
    border: 2px solid #002a47;
    padding: 15px;
    color: hsl(var(--white));
    font-size: 14px;
    font-weight: 500;
}

.table tbody {
    font-size: 14px;
    border: 2px solid hsl(var(--border)) !important;
}

.table tbody tr td {
    border: 0;
    border-top: 2px solid hsl(var(--border));
}

.table tbody tr td {
    padding: 20px 15px;
    border-width: 1px;
    gap: 0 35px;
}

.table tbody tr td:first-child,
.table thead tr th:first-child {
    text-align: left;
}

.table tbody tr td:last-child,
.table thead tr th:last-child {
    text-align: right;
}

.table tbody tr:hover td {
    background: hsl(var(--white));
}

.table tbody tr:hover td:first-child {
    border-radius: 15px 0 0 15px;
}

.table tbody tr:hover td:last-child {
    border-radius: 0 15px 15px 0;
}

.form-label {
    font-size: 15px;
    font-weight: 500;
}

.form--control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid hsl(var(--border));
    outline: 0;
    box-shadow: none;
    color: rgb(var(--body));
}

::placeholder {
    font-size: 15px;
    font-weight: 300;
}

.form--control:focus {
    color: rgb(var(--body));
    border: 1px solid rgb(var(--base));
    outline: 0;
    box-shadow: none;
}

.form--control.style-two {
    border: 0;
    background: rgb(var(--base) / 0.1);
}

.input-group-text {
    background: #f4f4f4;
}

.input-group-text {
    border-color: #f4f4f4;
}

.form--control[type="file"] {
    line-height: 25px;
    padding: 12px 25px;
}

textarea.form--control {
    height: 130px;
}

input:autofill,
input:autofill:hover,
input:autofill:focus,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-text-fill-color: hsl(var(--black)) !important;
    transition: background-color 5000s ease-in-out 0s;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    background-color: #fff !important;
    -webkit-background-clip: text;
}

input:-webkit-autofill {
    color: #2a2a2a !important;
}

.input-group > select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.input-group select {
    background-color: transparent;
    border: none;
}

.custom--radio,
.custom--checkbox {
    position: relative;
    padding-left: 0;
}

.custom--checkbox input[type="checkbox"],
.custom--radio input[type="radio"] {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    cursor: pointer;
}

.custom--checkbox input[type="checkbox"]:checked ~ label::before,
.custom--radio input[type="radio"]:checked ~ label::before {
    border-width: 2px;
    border-color: rgb(var(--base)) !important;
}

.custom--checkbox input[type="checkbox"]:checked ~ label::after,
.custom--radio input[type="radio"]:checked ~ label::after {
    opacity: 1;
}

.custom--checkbox label,
.custom--radio label {
    margin-bottom: 0;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    font-weight: 400;
    position: relative;
}

.custom--checkbox label::before,
.custom--radio label::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 13px;
    height: 13px;
    border: 1px solid #bbb8b8;
    transform: translateY(-50%);
}

.custom--checkbox label::after,
.custom--radio label::after {
    position: absolute;
    content: "" !important;
    top: 50%;
    left: 4px;
    width: 5px;
    height: 5px;
    background-color: rgb(var(--base)) !important;
    opacity: 0;
    transform: translateY(-50%);
    margin-left: 0px !important;
}

.form--check {
    display: flex;
    flex-wrap: wrap;
}

.form--check a {
    display: inline;
}

.form--check .form-check-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: none !important;
    background-color: transparent;
    position: relative;
    border-radius: 2px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
    border: 2px solid transparent;

    transition: all 0.3s ease;
}
.login-wrapper .login-wrapper-inner {
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0.25rem;
}
.login-wrapper .login-wrapper-inner input {
    border: none;
}

.form--check .form-check-input:checked {
    /* background: linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal))) !important; */
    border-color: transparent !important;
    box-shadow: none;
}

.form--check .form-check-input:checked[type="checkbox"] {
    background-image: none;
}

.form--check .form-check-input:checked::before {
    position: absolute;
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
    border: 2px solid transparent;
    /* background: linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)));
  -webkit-text-fill-color:linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal))) ; */
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    transform: translate(-50%, -50%);
    font-size: 0.6rem;
    padding-left: 2px;
}

.form--check .form-check-label {
    width: calc(100% - 16px);
    padding-left: 8px;
    display: inline;
}

.forgot-url {
    font-size: 15px;
}

@media screen and (max-width: 424px) {
    .form--check label {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 424px) {
    .form--check a {
        font-size: 0.9375rem;
    }
}

.select2-container {
    width: 100% !important;
}

.select2-container > span {
    width: 100%;
}

.dropdown-wrapper {
    display: none;
}

.custom--card {
    border: 1px solid transparent;
    border-radius: 5px;
    box-shadow: 0 0px 5px 0px hsl(var(--dark) / 0.08);
}

.custom--card .card-header,
.custom--card .card-footer {
    background: #ffff;
    color: hsl(var(--dark)) !important;
    text-align: center;
}

.custom--card .card-header .title,
.custom--card .card-footer .title {
    color: hsl(var(--dark)) !important;
    margin: 0;
}

.custom--card.card--primary .card-header,
.custom--card.card--primary .card-footer {
    background: rgb(var(--base));
}

.custom--card .card-header,
.custom--card .card-footer {
    padding: 15px 25px;
    border-color: hsl(var(--border)) !important;
}

@media (max-width: 575px) {
    .custom--card .card-header,
    .custom--card .card-footer {
        padding: 10px 20px;
    }
}

@media (max-width: 575px) {
    .custom--card .card-header,
    .custom--card .card-footer {
        padding: 8px 15px;
    }
}

.custom--card .card-body {
    padding: 25px;
}

@media (max-width: 575px) {
    .custom--card .card-body {
        padding: 20px;
    }
}

@media (max-width: 450px) {
    .custom--card .card-body {
        padding: 15px;
    }
}

.custom--card.card--lg .card-header,
.custom--card.card--lg .card-footer {
    padding: 20px 35px;
}

@media (max-width: 767px) {
    .custom--card.card--lg .card-header,
    .custom--card.card--lg .card-footer {
        padding: 15px 25px;
    }
}

@media (max-width: 575px) {
    .custom--card.card--lg .card-header,
    .custom--card.card--lg .card-footer {
        padding: 10px 20px;
    }
}

@media (max-width: 450px) {
    .custom--card.card--lg .card-header,
    .custom--card.card--lg .card-footer {
        padding: 8px 15px;
    }
}

.custom--card.card--lg .card-body {
    padding: 35px;
}

@media (max-width: 767px) {
    .custom--card.card--lg .card-body {
        padding: 25px;
    }
}

@media (max-width: 575px) {
    .custom--card.card--lg .card-body {
        padding: 20px;
    }
}

@media (max-width: 450px) {
    .custom--card.card--lg .card-body {
        padding: 15px;
    }
}

.custom--card.card--md .card-header,
.custom--card.card--md .card-footer {
    padding: 10px 20px;
}

.custom--card.card--md .card-body {
    padding: 20px 20px;
}

.custom--modal.modal {
    background-color: hsl(var(--black) / 0.45);
}

.custom--modal .modal-header {
    border-bottom: 0;
    padding: 16px;
}

.custom--modal .modal-content {
    background-color: hsl(var(--white));
    border-radius: 12px !important;
    padding: 20px;
}

@media screen and (max-width: 767px) {
    .custom--modal .modal-content {
        padding: 12px;
    }
}

.custom--modal .form--control {
    background-color: hsl(var(--black) / 0.04) !important;
    border: 0;
}

.custom--modal .btn-close {
    transition: 0.2s linear;
}

.custom--modal .btn-close:focus {
    box-shadow: none;
}

.custom--modal .btn-close:hover {
    background-color: hsl(var(--black) / 0.08);
    border-radius: 50%;
}

.custom--modal .modal-body {
    padding: 16px;
    background-size: 10px;
}

.custom--modal .modal-icon i {
    font-size: 2rem;
    color: hsl(var(--base));
    border: 3px solid hsl(var(--base));
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.custom--modal .modal-footer {
    border-top: 0;
    padding: 0 16px;
}
.exit-modal.modal-footer button.register-btn {
    border-radius: 10px;
    padding: 0.8rem 1.4rem;
    color: #017a80;
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
    border: 1px solid transparent;
}
.exit-modal.modal-footer a.register-btn {
    border-radius: 10px;
    background: linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box !important;
    border: 1.5px solid transparent !important;
    padding: 0.8rem 1.4rem;
}

.custom--modal .modal-dialog {
    -webkit-transform: scale(0.8) !important;
    transform: scale(0.8) !important;
}

.custom--modal.show .modal-dialog {
    -webkit-transform: none !important;
    transform: none !important;
}

.pagination {
    margin: 0;
    justify-content: center;
}

.pagination .page-item {
    text-align: center;
    padding: 3px;
}

.pagination .page-item a,
.pagination .page-item span {
    font-weight: 600;
    width: 40px;
    height: 40px;
    color: rgb(var(--base));
    line-height: 40px;
    padding: 0;
    border-radius: 3px !important;
    border-color: rgb(var(--base));
    box-shadow: none;
    outline: 0;
}

.pagination .page-item span {
    border: none;
}

.pagination .page-item.active span,
.pagination .page-item.active a,
.pagination .page-item:hover span,
.pagination .page-item:hover a {
    background: rgb(var(--base));
    color: hsl(var(--white));
    border-color: rgb(var(--base));
}

.pagination .page-item.disabled {
    cursor: no-drop !important;
}

.pagination .page-item.disabled span,
.pagination .page-item.disabled a {
    background: rgba(var(--white), 0.05);
    border: none;
    border: 1px solid hsl(var(--border));
    color: rgb(var(--body));
}
.header-bottom-area {
    padding: 0 2.875rem;
}

@keyframes move1 {
    0% {
        transform: translate(0);
    }

    25% {
        transform: translateX(25px);
    }

    75% {
        transform: translateX(-25px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes move2 {
    0% {
        transform: translate(0);
    }

    25% {
        transform: translateY(25px);
    }

    75% {
        transform: translateY(-25px);
    }

    100% {
        transform: translate(0px);
    }
}

.section-header {
    margin-bottom: 45px;
}

@media (max-width: 575px) {
    .section-header {
        margin-bottom: 35px;
    }
}

.section-header .subtitle {
    font-size: 18px;
    color: hsl(var(--success));
    margin-bottom: 3px;
}

.section-header__title {
    margin-bottom: 15px;
    position: relative;
}

.section-header p {
    font-size: 1.4rem;
}

.section-header .cmn--btn {
    margin-top: 30px;
}

@media (min-width: 576px) {
    .section-header .cmn--btn {
        margin-top: 45px;
    }
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 111;
    background-color: hsl(var(--white));
    box-shadow: 0 3px 12px hsl(var(--dark) / 0.08);
    border-bottom: 4px solid hsl(var(--teal));
}

.header.dash-header {
    position: sticky;
    box-shadow: 0 1px 12px hsl(var(--dark) / 0.08);
}

.header.sticky {
    background-color: hsl(var(--white));
    box-shadow: 0 3px 12px hsl(var(--dark) / 0.08);
}

.header-bottom {
    width: 100%;
    padding: 20px 0;
    padding: 15px 0;
}

@media (max-width: 991px) {
    .header-bottom {
        padding: 12px 0;
    }
}

.header-bottom-area {
    justify-content: space-between;
}

@media (min-width: 992px) {
    .header-bottom-area {
        position: relative;
    }
}

.header-close {
    position: absolute !important;
    right: 15px;
    top: 15px;
    line-height: 1;
    padding: 5px;
    width: auto !important;
}

.logo img {
    max-width: 16.875rem;
    max-height: 4rem;
}

@media (max-width: 1199px) {
    .logo img {
        max-width: 120px;
    }
}

@media (max-width: 767px) {
    .logo img {
        max-width: 130px;
    }
}

@media (max-width: 575px) {
    .logo img {
        max-width: 110px;
        max-height: 50px;
    }
}

.menu {
    align-items: center;
    margin: 0;
    position: relative;
    gap: 0.5rem;
}

.menu > .has-sub-menu {
    margin-right: 20px;
}

@media (max-width: 1199px) {
    .menu > .has-sub-menu {
        margin-right: 18px;
    }
}

@media (min-width: 992px) {
    .menu > .has-sub-menu.open .sub-menu {
        display: block !important;
    }
}

.menu .sub-menu li {
    width: 100%;
}

@media (min-width: 992px) {
    .menu .sub-menu {
        display: block !important;
    }
}

.menu li {
    position: relative;
}

.menu li:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.menu li.has-sub-menu > a {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.menu li.has-sub-menu > a::after {
    content: "\f107";
    right: 0;
    top: 50%;
    transform: translate(8px, -50%);
    font-size: 14px;
}

.menu li a {
    display: block;
    padding: 0.5rem 0.95rem;
    line-height: 1;
    font-size: 1.375rem;
    font-weight: 700;
    position: relative;
    color: hsl(var(--teal));
    background: linear-gradient(90deg, #012360 0%, #009584 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header.dash-header .menu li a {
    color: rgb(var(--body));
}

.header.dash-header .menu li a:hover {
    color: rgb(var(--base));
}

@media (min-width: 992px) {
    .header.sticky .menu li a {
        color: rgb(var(--body));
    }
}

/* @media (min-width: 1400px) {
	.menu li a {
		font-size: 17px;
	}
} */

@media (max-width: 1199px) {
    .menu li a {
        padding-inline: 10px;
    }
}

.menu .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 11;
}

@media (min-width: 992px) {
    .sub-menu {
        position: absolute;
        top: 100%;
        left: 0px;
        opacity: 0;
        visibility: hidden;
        min-width: 200px;
        transition: all ease 0.3s;
        transform: translateY(15px);
        box-shadow: 0 3px 12px 3px hsl(var(--dark) / 0.08);
        overflow: hidden;
        z-index: 11;
        padding: 10px;
        background: hsl(var(--white));
    }

    .sub-menu.from-right {
        left: auto;
        right: 0;
        max-width: 180px;
    }

    .sub-menu li {
        padding: 0;
    }

    .sub-menu li:last-child {
        border: none;
    }

    .sub-menu li a {
        font-size: 14px;
        padding: 7px 15px;
        display: block;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 1;
        color: rgb(var(--body));
    }

    .sub-menu li a:hover {
        padding-left: 20px;
        background: rgb(var(--base));
        color: hsl(var(--white)) !important;
    }

    .sub-menu:hover {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .sub-menu .sub-menu {
        visibility: hidden;
        opacity: 0;
        top: 5px;
        left: -100%;
        transform: translateY(-20px);
    }

    .sub-menu.has-sub-menu > a::after {
        transform: translateY(0px);
    }
}

@media (max-width: 1128px) {
    .header-trigger {
        display: block !important;
    }
    .mobile-login--head {
        display: flex !important;
        justify-content: space-between;
        margin-top: 1rem;
        align-items: center;
    }
    .header-close {
        display: block !important;
    }
    .menu > li:nth-last-child(1) {
        border-bottom: none;
    }

    .menu {
        position: absolute;
        top: 0;
        left: 0;
        padding: 30px;
        max-height: calc(100vh - 50px);
        min-width: 200px;
        width: 100%;
        visibility: hidden;
        transform-origin: top;
        transform: translateY(-30px) scaleY(0.6);
        opacity: 0;
        overflow-y: auto;
        transition: all ease 0.3s;
        background: linear-gradient(
            90deg,
            hsl(var(--dark-blue)),
            hsl(var(--teal))
        );
    }
    .menu li a {
        color: #fff !important;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: unset;
        background: none;
    }

    .menu.active {
        opacity: 1;
        transform: translateY(0) scaleY(1);
        visibility: visible;
        z-index: 111;
        top: 0px;
    }

    .menu .has-sub-menu {
        margin-right: 0;
    }

    .menu .has-sub-menu > a::after {
        transform: translate(-20px, -50%) !important;
    }

    .menu li {
        padding: 5px 5px;
        width: 100%;
        border-bottom: 1px solid hsl(var(--white) / 0.1);
    }

    .menu li:nth-last-child(1) {
        border-bottom: none;
    }

    .menu li a {
        padding-left: 0;
        color: hsl(var(--white));
    }

    .menu li.has-sub-menu a::after {
        transform: translate(-20px, -50%) !important;
    }

    .sub-menu {
        display: none;
        padding-left: 25px;
    }

    .menu li a.btn--base {
        width: fit-content;
        padding: 5px 15px;
    }
}

.header-trigger-wrapper {
    gap: 10px 25px;
}

@media (max-width: 374px) {
    .header-trigger-wrapper {
        gap: 12px;
    }
}

.header-trigger {
    cursor: pointer;
    margin-top: -10px;
}

.header-trigger.active span {
    background: none !important;
}

.header-trigger.active span::before {
    transform: rotate(-45deg) translate(-11px, 0px);
    background: var(--white);
}

.header-trigger.active span::after {
    transform: rotate(45deg) translate(-11px, 0px);
    background: var(--white);
}

.header-trigger span {
    width: 25px;
    height: 2px;
    background: rgb(var(--base));
    position: relative;
    transition: all ease 0.3s;
}

.header-trigger span::after,
.header-trigger span::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    background: rgb(var(--base));
}

.header-trigger span::after {
    bottom: -8px;
}

.header-trigger span::before {
    top: -8px;
}

.footer-links li {
    padding: 5px 0;
}

.footer-links li a:hover {
    color: rgb(var(--base));
}

.footer-top {
    gap: 10px 50px;
}

.footer-bottom {
    gap: 10px 25px;
}

.banner-section {
    padding: calc(130px + 80px) 0 0;
    position: relative;
    background-color: hsl(var(--white));
}

.overlay--dark {
    position: relative;
}

.overlay--dark::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: hsl(var(--accent));
}

.overlay--dark .container {
    position: relative;
    z-index: 1;
}

.banner-section .container {
    position: relative;
}

@media (max-width: 1199px) {
    .banner-section {
        padding: 150px 0 0;
    }
}

@media (max-width: 991px) {
    .banner-section {
        padding: 140px 0 50px;
    }
}

@media (max-width: 767px) {
    .banner-section {
        padding: 120px 0 80px;
    }
}

@media (max-width: 450px) {
    .banner-section {
        padding: 100px 0 60px;
    }
}

.banner-content {
    max-width: 100%;
    text-align: center;
}

@media (max-width: 1199px) {
    .banner-content {
        max-width: 550px;
    }
    .influencer-section .banner-content {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .banner-content {
        max-width: 650px;
        margin: 0 auto 0;
        text-align: center;
    }
}

.banner-content .title {
    color: #252626;
    font-size: 5rem;
    line-height: 1;
    max-width: 100%;
    margin: 0 auto;
    font-weight: 700;
    font-family: "Segoe UI", sans-serif;
}
.banner-content .title span {
    background: linear-gradient(90deg, #012360 0%, #009584 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.header-flex {
    gap: 4.5rem;
    align-items: center;
}
#search::placeholder {
    font-weight: 600;
    color: #808080;
}

.banner-content p {
    color: #252626;
    max-width: 63rem;
    font-size: 1.375rem;
    margin: 25px auto;
    font-weight: 700;
    font-weight: 600;
    font-family: "Segoe UI", sans-serif;
}

@media (max-width: 991px) {
    .banner-content p {
        margin-bottom: 40px;
        margin-top: 15px;
        font-size: 20px;
    }
}

@media (max-width: 450px) {
    .banner-content p {
        font-size: 18px;
    }
}

.banner-thumb {
    width: calc(100% - 650px);
}

@media (max-width: 1199px) {
    .banner-thumb {
        width: calc(100% - 550px);
    }
}

.banner-thumb img {
    max-width: 100%;
}

@media (min-width: 1400px) {
    .banner-thumb img {
        margin-top: -100px;
    }
}

@media (max-width: 991px) {
    .banner-thumb {
        width: 100%;
    }

    .banner-thumb img {
        width: 100%;
    }
}

.search-form {
    padding: 5px;
    outline: 5px solid hsl(var(--white) / 0.2);
    background: hsl(var(--white));
    border-radius: 50px;
    max-width: 80%;
    margin: 0 auto;
}

.search-form .form--group {
    position: relative;
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
    border: 2px solid transparent;
    border-radius: 15px;
    display: flex;
    padding: 0.5rem 0.5rem;
}

.search-form .form--group .icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: hsl(var(--dark) / 0.5);
    z-index: 11;
}

.search-form .form--control {
    padding-left: 22px;
    background: #fff;
    border: 0;
}

.search-form .btn {
    border-radius: 0 30px 30px 0;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tags li a {
    padding: 6px 15px;
    border-radius: 4px;
    border-radius: 25px;
    font-weight: 300;
    border-width: 1px !important;
}

.inner-banner {
    padding: calc(105px + 50px) 0 105px;
    position: relative;
}

@media (max-width: 991px) {
    .inner-banner {
        padding: calc(90px + 50px) 0 90px;
    }
}

@media (max-width: 767px) {
    .inner-banner {
        padding: calc(80px + 45px) 0 80px;
    }
}

@media (max-width: 450px) {
    .inner-banner {
        padding: calc(60px + 40px) 0 60px;
    }
}

.inner-banner::before {
    background-color: hsl(var(--accent) / 0.7);
}

.inner-banner .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    gap: 10px 20px;
    font-size: 18px;
    color: hsl(var(--white));
    margin-top: 15px;
}

@media (max-width: 767px) {
    .breadcrumb {
        font-size: 16px;
        margin-top: 10px;
    }
}

.breadcrumb li:nth-child(2) {
    position: relative;
    padding-left: 30px;
}

.breadcrumb li:nth-child(2)::before {
    content: "\f30b";
    left: 0;
    top: 3px;
}

.brand-item {
    max-width: 130px;
    margin: 0 auto;
}

.brand-item img {
    width: 100%;
}

.shape {
    position: absolute;
}

.about-thumb {
    padding-right: 80px;
    position: relative;
}

.about-thumb .thumb-content {
    max-width: 400px;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    position: absolute;
    top: 50%;
    right: 0;
    background-color: hsl(var(--accent)) !important;
}
.header-bottom .container-fluid {
    max-width: 1920px;
}

@media (max-width: 991px) {
    .about-thumb .thumb-content {
        top: -30px;
    }
}

@media (max-width: 500px) {
    .about-thumb {
        padding-right: 0;
    }

    .about-thumb .thumb-content {
        position: relative;
        max-width: 100%;
        margin-top: 5px;
        top: 0;
        padding: 20px;
    }
}

@media (max-width: 500px) and (max-width: 450px) {
    .about-thumb .thumb-content {
        padding: 20px 15px;
    }
}

.about-thumb img {
    border-radius: 5px;
}

.section-thumb img {
    width: 100%;
}

.choose-item:not(:last-child) {
    margin-bottom: 45px;
}

@media (max-width: 1399px) {
    .choose-item:not(:last-child) {
        margin-bottom: 35px;
    }
}

@media (max-width: 575px) {
    .choose-item:not(:last-child) {
        margin-bottom: 25px;
    }
}

@media (min-width: 1199px) {
    div[class*="col"]:nth-child(1) .choose-item {
        flex-direction: row-reverse;
    }

    div[class*="col"]:nth-child(1) .choose-item__content {
        text-align: right;
        padding-left: 0;
        padding-right: 20px;
    }
}

@media (max-width: 450px) {
    .choose-item {
        text-align: center;
    }
}

.choose-item__icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
    font-family: "Segoe UI", sans-serif;
    margin: 0 auto;
    color: rgb(var(--base));
    display: grid;
    place-items: center;
    border-radius: 5%;
}

@media (max-width: 450px) {
    .choose-item__icon {
        margin: 0 auto;
    }
}

.choose-item__content {
    /* width: calc(100% - 80px); */
    /* padding-left: 20px; */
}

@media (max-width: 450px) {
    .choose-item__content {
        width: 100%;
        padding-left: 0;
        padding-top: 15px;
    }
}

.choose-item__content .title {
    margin-bottom: 13px;
    font-family: "Segoe UI", sans-serif;
    color: #252626;
    font-weight: 700;
}
.choose-item__content p {
    color: #252626;
}

.influencer-item {
    text-align: center;
    background-color: hsl(var(--white));
    box-shadow: 0 0px 5px 0px hsl(var(--dark) / 0.08);
    height: 100%;
    border-radius: 5px;
    transition: 0.3s;
    position: relative;
    border: 1px solid #ebebeb;
}

.influencer-item .favoriteBtn {
    position: absolute;
    right: 15px;
    top: 15px;
}

.influencer-item .favoriteBtn.active {
    color: rgb(var(--base));
}

.influencer-item .favoriteBtn.active::before {
    color: rgb(var(--base));
}

.influencer-item:hover {
    box-shadow: 0 3px 25px 5px hsl(var(--dark) / 0.08);
    transform: translateY(-5px);
}

.influencer-item .influencer-thumb {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    position: relative;
    margin-top: 25px;
}

.influencer-item .influencer-thumb .influencer-status {
    width: 15px;
    aspect-ratio: 1;
    position: absolute;
    right: 8px;
    bottom: 8px;
    background: hsl(var(--dark-50));
    border-radius: 50%;
}

.influencer-item .influencer-thumb .influencer-status.active {
    background: hsl(var(--success));
}

.influencer-item .influencer-thumb img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: hsl(var(--light-600));
    border: 1px solid hsl(var(--dark) / 0.1);
}

.influencer-item__content,
.influencer-item .skills-wrapper {
    padding: 15px 20px;
}

.influencer-item__content .name {
    position: relative;
    display: inline-block;
    padding-right: 10px;
}

.influencer-item__content .name.verified::before {
    background: rgb(var(--base));
}

.influencer-item__content .short-des {
    color: hsl(var(--primary) / 0.9);
    margin-bottom: 10px;
}

.influencer-item__content .location {
    color: hsl(var(--dark) / 0.7);
}

.influencer-item .social-links {
    padding: 5px 20px;
    gap: 8px;
}

.influencer-item .social-links i {
    font-size: 18px;
    color: #a5a8ab;
    text-align: center;
}

.influencer-item .social-links li a {
    padding: 3px;
}

.influencer-item .social-links li a:hover {
    color: rgb(var(--base));
}

.influencer-item .btn i {
    margin-right: 7px !important;
}

.influencer-item .skills-wrapper {
    width: 100%;
    border-top: 1px solid #ebebeb;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    gap: 10px;
    flex-flow: wrap;
    align-items: center;
}

.influencer-item .skills-wrapper .skill {
    border: 1px solid #ebebeb;
    padding: 2px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    place-self: start;
}

.account-status {
    position: relative;
    padding-right: 10px;
}

.account-status.verified::before {
    background: rgb(var(--base));
}

.rating {
    color: rgb(var(--base));
}

.mb--30--unset {
    margin-bottom: -30px !important;
}

.testimonial-slider .slick-list {
    padding: 2px 3px 30px !important;
}

.testimonial-slider .single-slide {
    padding: 0 12px;
}
.testimonial-section {
    background: #d8ebea;
}
.testimonial-section .section-header h4 {
    color: #017a80;
    font-size: 1.125rem;
    font-weight: 600;
}
.testimonial-section .section-header h2 {
    color: #0f1125;
    margin-top: 1.27rem;
    font-weight: 700;
    font-size: 1.95rem;
}
.testimonial-section .section-header p {
    color: #252626;
    font-size: 1rem;
}
@media (max-width: 1199px) {
    .testimonial-slider .single-slide {
        padding: 0 9px;
    }
}

.testimonial-item {
    padding: 35px 20px;
    /* box-shadow: 0 0 5px 0 hsl(var(--dark) / 0.05); */
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
    border: 1px solid transparent;
    border-radius: 10px;
}

@media (max-width: 1199px) {
    .testimonial-item {
        padding: 30px 20px;
    }
}

/* --- Slick Arrow Base --- */
.profile-testimonial-slider .custom-arrow {
    top: 50%;
}
.custom-arrow {
    position: absolute;
    top: 75%;
    transform: translateY(-50%);
    z-index: 5;
    padding: 24px 24px;
    /* width: 30px;
    height: 30px; */
    border: none;
    border-radius: 16px;
    /* background: linear-gradient(90deg, #004e63 0%, #007e75 100%); */
    background: #fff;
    color: #017a80;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}
.home-testimonial .custom-arrow {
    border-radius: 1rem !important;
}
.testimonial-item__content {
    border-bottom: 1px solid #e9eff5;
    margin-bottom: 0.5rem;
}
.testimonial-slider {
    position: unset;
}

/* Hover effect */
.custom-arrow:hover {
    background: linear-gradient(90deg, #007e75 0%, #004e63 100%);
    transform: translateY(-50%) scale(1.05);
    color: #fff;
}
.testimonial-section .row {
    position: relative;
}
/* Position arrows */
.custom-arrow.slick-prev {
    left: 0.5rem;
}
.custom-arrow.slick-next {
    left: 4.2rem;
    right: unset;
}

/* Hide default slick arrows */
.slick-prev:before,
.slick-next:before {
    display: none;
}
button.custom-arrow:focus:not(:focus-visible) {
    background: linear-gradient(90deg, #007e75 0%, #004e63 100%);
    color: #fff;
}
.custom-arrow.slick-next:focus {
    background: linear-gradient(90deg, #007e75 0%, #004e63 100%);
    color: #fff;
}
.custom-arrow.slick-prev:focus {
    background: linear-gradient(90deg, #007e75 0%, #004e63 100%);
    color: #fff;
}

/* Responsive fix */
@media (max-width: 991px) {
    .custom-arrow {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
    .custom-arrow.slick-prev {
        left: 0.5rem;
    }
    .custom-arrow.slick-next {
        left: 4.2rem;
        right: unset;
    }
}

.testimonial-item__content .rating {
    margin-bottom: 15px;
}

.testimonial-item__content p {
    margin-bottom: 25px;
    font-size: 0.9rem;
}
.testimonial-content .name {
    font-size: 1rem;
    color: #0f1125;
    font-weight: 600;
}

.testimonial-item .testimonial-thumb-wrapper {
    align-items: center;
    gap: 10px 12px;
}

.testimonial-item .testimonial-thumb-wrapper .testimonial-thumb {
    width: 50px;
    aspect-ratio: 1;
}

.testimonial-item .testimonial-thumb-wrapper .testimonial-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-item .testimonial-thumb-wrapper .testimonial-content {
    text-align: left;
}

@media (max-width: 1199px) {
    .testimonial-item .testimonial-thumb-wrapper .testimonial-content .name {
        font-size: 18px;
    }
}

.testimonial-item .testimonial-thumb-wrapper .testimonial-content p {
    font-size: 15px;
}

.testimonial-item .icon {
    font-size: 42px;
    color: rgb(var(--base) / 0.9);
}

.search-top {
    padding: 25px;
    box-shadow: 0 2px 7px 3px hsl(var(--dark) / 0.08);
    border-radius: 7px;
}

#clearSearch {
    z-index: 9;
}

@media (max-width: 450px) {
    .search-top {
        padding: 20px;
    }
}

.search-top .btn {
    max-width: 150px;
    width: 100%;
}

@media (max-width: 991px) {
    .search-top .btn {
        max-width: 100%;
    }
}

.search-top .form-wrapper {
    width: calc(100% - 151px);
}

@media (max-width: 991px) {
    .search-top .form-wrapper {
        width: 150%;
    }
}

.story-meta .read-time {
    position: relative;
    padding-left: 15px;
}

.story-meta .read-time::before {
    background: hsl(var(--dark) / 0.5);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.story-item {
    padding: 18px;
    border-radius: 7px;
    box-shadow: 0 2px 7px 3px hsl(var(--dark) / 0.08);
}

.story-item__thumb img {
    width: 100%;
    border-radius: 15px;
}

.story-item__content {
    padding: 10px 5px;
}

.story-item__content .title {
    margin: 13px 0;
}

.story-item__content .title a {
    -webkit-line-clamp: 2;
}

.story-item__content p {
    -webkit-line-clamp: 3;
}

.story-item.recent-story {
    box-shadow: none;
}

.story-item.recent-story:hover {
    box-shadow: 0 3px 20px 3px hsl(var(--dark) / 0.08);
}

.story-item.recent-story .story-item__thumb {
    width: 90px;
    height: 80px;
}

.story-item.recent-story .story-item__thumb img {
    height: 100%;
    border-radius: 7px;
    object-fit: cover;
}

.story-item.recent-story .story-item__content {
    width: calc(100% - 90px);
    padding: 0;
    padding-left: 10px;
}

.story-item.recent-story .story-item__content .title {
    margin: 5px 0;
}

.details-content p {
    -webkit-line-clamp: unset;
}

.details-content p:not(.details-content p:last-child) {
    margin-bottom: 15px;
}

.blockquote {
    font-size: 18px;
    background: hsl(var(--accent-600) / 0.06);
    padding: 15px 20px;
    border-radius: 5px;
}

.sidebar {
    position: sticky;
    top: 90px;
}

.privacy-policy-content .title {
    margin-bottom: 15px;
}

.privacy-policy-content p {
    margin-bottom: 25px;
}

.content-item:last-child p:last-child {
    margin-bottom: 0;
}

.influencer-profile-wrapper {
    padding: 40px;
    border-radius: 5px;
    background: hsl(var(--white));
    position: relative;
    z-index: 1;
    box-shadow: 0 0px 5px 0px hsl(var(--dark) / 0.08);
}

@media (max-width: 991px) {
    .influencer-profile-wrapper {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .influencer-profile-wrapper {
        padding: 20px;
    }
}

.influencer-profile-wrapper .info li:not(:last-child) {
    position: relative;
}

/* .influencer-profile-wrapper .info li:not(:last-child)::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    border-right: 1px solid hsl(var(--dark) / 0.15);
    right: -50%;
} */
 .influencer-profile-wrapper .info li:last-child{
     border-right: none;
     padding-right: 0;
 }
 .influencer-profile-wrapper .info li{
    border-right: 1px solid hsl(var(--dark) / 0.15);
    padding-right: 3rem;
 }

@media (max-width: 1199px) {
    .influencer-profile-wrapper .info li:not(:last-child)::before {
        display: none;
    }
}

.influencer-profile-wrapper .list {
    gap: 10px 30px;
}

.influencer-profile-wrapper .buttons-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: column;
}

@media (max-width: 767px) {
    .influencer-profile-wrapper .buttons-wrapper {
        flex-direction: row;
    }
}

.cover-pic {
    max-width: 100%;
    height: 280px;
}

.cover-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile {
    gap: 15px 25px;
}

.profile .thumb {
    width: 130px;
    height: 130px;
}

.profile .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #ebebeb;
    background: #ffff;
}

.profile .content .title {
    font-size: 16px;
    margin: 8px 0 15px;
}

.price-rate sub {
    font-size: 65%;
    font-weight: 400;
}

.profile-content p {
    margin-bottom: 15px;
}

.video-thumb {
    position: relative;
    width: 100%;
    height: 350px;
}

.video-thumb::before {
    background: hsl(var(--dark));
    opacity: 0.7;
}

.video-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.video-thumb .video-button {
    position: absolute;
    left: 50%;
    top: 25%;
    transform: translateX(-50%);
}

.social-info {
    padding: 40px;
    background: hsl(var(--white));
    border-radius: 15px;
    margin-top: -100px;
    position: relative;
    z-index: 1;
    box-shadow: 0 3px 25px 5px hsl(var(--dark) / 0.08);
}

@media (max-width: 575px) {
    .social-info {
        padding: 25px;
    }

    .social-info div[class*="col"] {
        width: 50%;
    }
}

@media (max-width: 450px) {
    .social-info div[class*="col"] {
        width: 100%;
    }
}

div[class*="col"]:not(:last-child) .social-item {
    border-right: 1px solid hsl(var(--dark) / 0.1);
}

@media (max-width: 991px) {
    div[class*="col"]:nth-child(2) .social-item {
        border-right: 0;
    }
}

.social-item {
    text-align: center;
}

.social-item .icon {
    font-size: 50px;
    color: rgb(var(--base));
}

@media (max-width: 1199px) {
    .social-item .icon {
        font-size: 36px;
    }
}

.social-item .title {
    font-weight: 900;
    color: hsl(var(--dark) / 0.7);
}

@media (max-width: 1199px) {
    .social-item .title {
        font-size: 32px;
    }
}

.social-item p {
    color: hsl(var(--dark) / 0.7);
}

@media (max-width: 450px) {
    .social-item {
        border-right: 0 !important;
    }
}

.experties-meta {
    gap: 10px 25px;
    color: rgb(var(--base));
}

.contacts-info p {
    margin-bottom: 30px;
}

.contact-card {
    font-size: 14px;
}

.contact-img {
    max-width: 350px;
    width: 100%;
}

.contact-card .icon {
    font-size: 16px;
    color: rgb(var(--base));
}

.map-wrap iframe {
    width: 100%;
    height: 500px;
    margin-bottom: -8px;
}

.counter__item {
    border-radius: 5px;
    padding: 10px;
}

.counter__item .inner {
    display: flex;
    flex-wrap: wrap;
    padding: 30px;
    border-radius: 5px;
}

.counter__item-icon {
    font-size: 50px;
    line-height: 1;
    color: rgb(var(--base));
    width: 50px;
}

.counter__item-icon i {
    display: block;
}

.counter__item-title {
    font-size: 30px;
}

@media (max-width: 1400px) {
    .counter__item-title {
        font-size: 26px;
    }
}

.counter__item .info {
    font-size: 16px;
    color: #adadad;
}

@media (max-width: 1199px) {
    .counter__item .info {
        font-size: 14px;
    }
}

.counter__item-content {
    padding-left: 25px;
    width: calc(100% - 50px);
}

@media (max-width: 1400px) {
    .counter__item-content {
        width: calc(100% - 36px);
    }
}

.dashboard-widget {
    padding: 30px 25px;
    border-radius: 5px;
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
    border: 1.5px solid transparent;
}

.dashboard-widget__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 32px;
    border: 2px solid rgb(var(--base) / 0.7);
    color: rgb(var(--base));
    display: grid;
    place-items: center;
}

.dashboard-widget.widget--base .dashboard-widget__icon {
    border: 2px solid rgb(var(--base) / 0.7);
    color: rgb(var(--base));
}

.dashboard-widget.widget--secondary .dashboard-widget__icon {
    border: 2px solid hsl(var(--secondary) / 0.7);
    color: hsl(var(--secondary));
}

.dashboard-widget.widget--primary .dashboard-widget__icon {
    border: 2px solid hsl(var(--primary) / 0.7);
    color: hsl(var(--primary));
}

.dashboard-widget.widget--info .dashboard-widget__icon {
    border: 2px solid hsl(var(--info) / 0.7);
    color: hsl(var(--info));
}

.dashboard-widget.widget--success .dashboard-widget__icon {
    border: 2px solid hsl(var(--success) / 0.7);
    color: hsl(var(--success));
}

.dashboard-widget.widget--warning .dashboard-widget__icon {
    border: 2px solid hsl(var(--warning) / 0.7);
    color: hsl(var(--warning));
}

.dashboard-widget.widget--success .dashboard-widget__icon {
    border: 2px solid rgba(40, 200, 15, 0.7);
    color: rgb(40, 200, 15);
}

.dashboard-widget.widget--purple .dashboard-widget__icon {
    border: 2px solid rgba(128, 0, 128, 0.7);
    color: rgb(128, 0, 128);
}

.dashboard-widget.widget--danger .dashboard-widget__icon {
    border: 2px solid rgba(232, 14, 14, 0.7);
    color: rgb(232, 14, 14);
}

.dashboard-widget__content {
    width: calc(100% - 70px);
    padding-left: 25px;
}

.dashboard-widget__content .title {
    margin-top: 4px;
    font-size: 1.1rem;
}
/* Remove arrows in number input (Chrome, Safari, Edge, Opera) */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove arrows in Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.deposit-card {
    border-color: transparent !important;
    box-shadow: 0 3px 15px hsl(var(--dark) / 0.08);
}

.deposit-card:hover {
    box-shadow: 0 7px 25px hsl(var(--dark) / 0.2);
}

.deposit-card .card-header {
    background: hsl(var(--accent));
}

.deposit-card .card-header .card-title {
    color: hsl(var(--white));
}

.deposit-card img {
    width: 100%;
}

.deposit-card .card-footer {
    background: transparent;
}

.deposit-card .card-footer .cmn--btn {
    width: 100%;
}

@media (max-width: 991px) {
    .deposit-card .card-footer .cmn--btn {
        padding: 7px 25px !important;
    }
}

.deposit-preview {
    padding: 30px;
    border: 2px solid hsl(var(--border));
}

.deposit-preview .deposit-thumb {
    width: 40%;
}

.deposit-preview .deposit-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deposit-preview .deposit-content {
    width: 60%;
    border-left: none;
    border-radius: 0 5px 5px 0;
    padding-left: 30px;
}

@media (max-width: 1199px) {
    .deposit-preview .deposit-content ul li {
        font-size: 14px !important;
    }

    .deposit-preview {
        padding: 30px 20px;
    }
}

.deposit-preview .deposit-content ul {
    width: 100%;
    text-align: center;
}

.deposit-preview .deposit-content ul li {
    padding: 10px 0;
    font-size: 16px;
    justify-content: space-between;
    align-items: center;
}

.deposit-preview .deposit-content ul li:not(:last-child) {
    border-bottom: 1px dashed hsl(var(--border));
}

@media (max-width: 767px) {
    .deposit-preview {
        margin-left: auto;
        margin-right: auto;
        max-width: 400px;
        padding: 20px;
    }

    .deposit-preview .deposit-thumb {
        width: 100%;
    }

    .deposit-preview .deposit-content {
        padding-left: 0;
        padding-top: 20px;
        width: 100%;
        border-radius: 0 0 5px 5px;
    }
}

@media (max-width: 450px) {
    .deposit-preview {
        padding: 15px;
    }

    .deposit-preview .deposit-content li {
        font-size: 14px !important;
    }
}

.profile-thumb {
    padding: 8px;
   background: linear-gradient(hsl(var(--white)), hsl(var(--white))) padding-box, linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal))) border-box;
    border: 1.5px solid transparent;
}
.cmn--btn{
    background: linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)));
    border: none;
}
.cmn--btn:hover{
    background: linear-gradient(90deg, hsl(var(--teal)), hsl(var(--dark-blue)));
    color: #fff;
    border: none;
}

@media (max-width: 450px) {
    .profile-thumb {
        padding: 20px;
    }
}

.profile-thumb .thumb {
    position: relative;
}

.profile-thumb .thumb img {
    width: 100%;
}

.profile-thumb .update-thumb-icon {
    position: absolute;
    width: 35px;
    height: 35px;
    right: 0;
    bottom: 0;
    display: grid;
    place-items: center;
    font-size: 18px;
}

.chat__list {
    max-height: calc(100vh - 250px);
    overflow-y: auto;
    overflow-x: hidden;
}

@media screen and (min-width: 992px) {
}

.chat__list > li {
    width: 100%;
    padding: 5px 0;
}

.chat__list > li:last-child {
    border: none;
}

.chat__item {
    width: 100%;
}

.chat__item .item__inner {
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
}

.chat__item .item__inner .chat__meta {
    margin: 3px;
    margin-top: -25px;
    padding-left: 65px;
    font-size: 13px;
}

.chat__item .item__inner a {
    color: #456;
}

.chat__item.active .item__inner,
.chat__item:hover .item__inner {
    background: rgba(31, 31, 35, 0.05);
}

.chat__msg-body {
    max-height: calc(100vh - 450px);
    min-height: 400px;
    overflow-y: auto;
    background: #d3d3d329;
}

.chat__msg-body .msg__wrapper li .admin_message {
    padding: 10px 15px;
    background: rgba(255, 0, 0, 0.09);
    border-radius: 15px 15px 15px 0;
    font-size: 15px;
    display: inline-block;
}

.chat__msg-body .msg__wrapper li p {
    padding: 10px 15px;
    background: hsl(var(--dark) / 0.08);
    border-radius: 15px 15px 15px 0;
    font-size: 15px;
    display: inline-block;
}

@media (max-width: 450px) {
    .chat__msg-body .msg__wrapper li p {
        padding: 6px 13px;
        margin: 6px 0;
    }
}

.chat__msg-footer .send__msg .input-group {
    position: relative;
}

.chat__msg-footer .send__msg .form--control {
    padding: 10px 15px;
    height: unset !important;
}

.chat__msg-footer .send__msg .send-btn {
    height: 50px;
    font-size: 16px;
    color: hsl(var(--white));
    background: rgb(var(--base));
    border-radius: 5px !important;
}

.chat__msg-footer .send__msg .upload-file {
    cursor: pointer;
    z-index: 11;
    width: unset;
    border: 1px solid #ebebeb;
    font-size: 16px;
    border-radius: 3px;
    padding: 2px 6px;
    margin-top: 5px;
}

.msg__item .comment-img {
    max-width: 300px;
    width: 100%;
}

.msg__item .comment-img img {
    width: 100%;
}

.msg__item .post__creator-content {
    padding-top: 0;
}

.chat__msg-footer .send__msg .upload-file,
.chat__msg-footer .send__msg .upload-file i {
    color: #838383;
}

.msg__item .post__creator-content .comment-date {
    display: block;
    font-size: 11px;
}

.outgoing__msg .post__creator {
    flex-direction: row-reverse;
}

.chat__msg-footer {
    margin-top: 20px;
}

.outgoing__msg .post__creator-content {
    text-align: right;
    padding-left: 18px;
    padding-right: 18px;
}

.incoming__msg .post__creator-content {
    padding-left: 18px;
    padding-right: 18px;
}

.outgoing__msg .post__creator-content p {
    border-radius: 15px 15px 0 15px !important;
    background: hsl(var(--accent)) !important;
    color: hsl(var(--white));
}

.outgoing__msg .post__creator {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.post__creator-content {
    max-width: 90%;
}

.post__creator-thumb {
    align-items: center;
}

@media screen and (min-width: 768px) {
    .post__creator-content {
        max-width: 575px;
    }
}

.msg__wrapper li {
    list-style: none;
    padding: 5px 0;
}

.msg__wrapper li p {
    margin-bottom: 0;
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
    .currency--card {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }
}

.chatbox__list__wrapper .search-btn {
    border-radius: 0 5px 5px 0;
}

.or {
    position: relative;
    display: inline-block;
}

.or::before,
.or::after {
    background: hsl(var(--border));
    height: 1px;
    top: 49%;
    right: calc(100% + 15px);
}

.or::before {
    right: 0;
    left: calc(100% + 15px);
}

.alternate-account {
    gap: 10px 15px;
}

.alternate-account li a {
    width: 50px;
    height: 50px;
    font-size: 20px;
    background: rgb(var(--base) / 0.1);
    color: rgb(var(--base));
    display: grid;
    place-items: center;
    border-radius: 15px;
}

.alternate-account li a:hover {
    background: rgb(var(--base));
    color: hsl(var(--white));
}

.account-wrapper {
    padding: 30px;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .account-wrapper {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .account-wrapper {
        padding: 15px;
    }
}

.account-thumb-wrapper {
    position: relative;
    display: grid;
    place-items: center;
}

.account-thumb-wrapper .thumb {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.account-thumb-wrapper .thumb img {
    width: 100%;
}

.account-thumb-wrapper .content {
    padding: 100px 30px;
    display: grid;
    place-items: center;
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 575px) {
    .account-thumb-wrapper .content {
        padding: 60px 20px;
    }
}

.share-links i {
    border: 1px solid rgb(var(--base));
    padding: 5px;
    border-radius: 50%;
    margin: 0 5px;
    color: rgb(var(--base));
}

.share-links i:hover {
    border: 1px solid rgb(var(--base));
    padding: 5px;
    border-radius: 50%;
    margin: 0 5px;
    color: hsl(var(--white));
    background: rgb(var(--base));
}

.skill-card {
    background: linear-gradient(hsl(var(--white)), hsl(var(--white))) padding-box, linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal))) border-box;
    border: 1.5px solid transparent;
    /* background: #efefef; */
    display: inline-block;
    padding: 5px 15px;
    border-radius: 15px;
}
.footer-widget h6{text-align: center;}
.footer--data--flex{
    display: flex;
    gap: 1rem;
}
.skill-card span{
  background: linear-gradient(90deg, #012360 0%, #009584 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1rem;
    font-weight: 600;  
}

.rating .rating-form-group {
    position: relative;
    height: 24px;
    line-height: 24px;
    font-size: 24px;
    cursor: pointer;
}

.rating .rating-form-group .star-label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    cursor: pointer;
}

.rating .rating-form-group .star-label:last-child {
    position: static;
}

.rating .rating-form-group .star-label:nth-child(1) {
    z-index: 5;
}

.rating .rating-form-group .star-label:nth-child(2) {
    z-index: 4;
}

.rating .rating-form-group .star-label:nth-child(3) {
    z-index: 3;
}

.rating .rating-form-group .star-label:nth-child(4) {
    z-index: 2;
}

.rating .rating-form-group .star-label:nth-child(5) {
    z-index: 1;
}

.rating .rating-form-group .star-label input {
    display: none;
}

.rating .rating-form-group .star-label .icon {
    float: left;
    color: transparent;
}

.rating .rating-form-group .star-label:last-child .icon {
    color: hsl(var(--dark) / 0.4);
}

.rating .rating-form-group:not(:hover) label input:checked ~ .icon,
.rating .rating-form-group:hover label:hover input ~ .icon {
    color: rgb(var(--base));
}

.rating .rating-form-group label input:focus:not(:checked) ~ .icon:last-child {
    color: hsl(var(--white) / 0.1);
    text-shadow: 0 0 5px rgb(var(--base));
}

.maintenance-page {
    display: grid;
    place-content: center;
    width: 100vw;
    height: 100vh;
}

.maintenance-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fff;
    font-size: 26px;
    color: #e73d3e;
}

.influencer-profile-sidebar {
    margin-bottom: 30px;
}

.table--form {
    width: 50%;
}

@media (max-width: 768px) {
    .table--form {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .menu li a.active {
        color: rgb(var(--base)) !important;
    }
}

.education-content {
    border-bottom: 1px solid #f3f3f3;
}

.education-content:last-child {
    border-bottom: none;
}

.cmn--tabs {
    gap: 10px;
}

.cmn--tabs .nav-item .nav-link {
    border-color: rgb(var(--base));
    border-radius: 5px;
}

.cmn--tabs .nav-item .nav-link:hover,
.cmn--tabs .nav-item .nav-link.active {
    background-color: rgb(var(--base));
    color: hsl(var(--white));
}

.filter-toggle {
    font-size: 18px !important;
}

.nicEdit-main {
    outline: 0;
}

.ticket-reply-user {
    border: 1px solid rgb(var(--base) / 0.8) !important;
}

.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9999;
    background-color: hsl(var(--white));
    display: grid;
    place-items: center;
    margin: 0;
}

.main-loader {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto;
}

.loader-inner {
    position: absolute;
    top: 50%;
    left: 50%;
}

.loader-inner .loader {
    width: 106px;
    height: 106px;
    border-radius: 50%;
}

.loader-inner .loader:before,
.loader-inner .loader:after {
    bottom: 18px;
}

.loader-inner .loader:before {
    left: 18px;
}

.loader-inner .loader:after {
    right: 18px;
}

.loader-inner .box {
    top: 18px;
    left: 18px;
    -webkit-transform-origin: 33px 33px;
    transform-origin: 33px 33px;
    -webkit-animation-name: roll;
    animation-name: roll;
}

.loader {
    position: absolute;
    color: rgb(var(--base));
    border: 2px solid;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: loading;
    animation-name: loading;
}

.loader:before,
.loader:after {
    content: "";
    position: absolute;
    width: 32px;
    height: 32px;
    background: rgb(var(--base));
    border-radius: 4px;
}

.loader:before {
    left: 2px;
}

.loader:after {
    right: 2px;
}

.box {
    position: absolute;
    width: 32px;
    height: 32px;
    background: rgb(var(--base));
    border-radius: 4px;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes roll {
    33% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    67%,
    100% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

@keyframes roll {
    33% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    67%,
    100% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

@-webkit-keyframes loading {
    50% {
        -webkit-transform: translate(-50%, -50%) rotate(45deg);
        transform: translate(-50%, -50%) rotate(45deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(45deg);
        transform: translate(-50%, -50%) rotate(45deg);
    }
}

@keyframes loading {
    50% {
        -webkit-transform: translate(-50%, -50%) rotate(45deg);
        transform: translate(-50%, -50%) rotate(45deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(45deg);
        transform: translate(-50%, -50%) rotate(45deg);
    }
}

.scrollToTop {
    width: 44px;
    height: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    z-index: 999;
    bottom: 30px;
    right: 30px;
    font-size: 18px;
    position: fixed;
    -webkit-transform: translateY(150px);
    transform: translateY(150px);
    background: rgb(var(--base));
    border-radius: 35px;
}

.scrollToTop:hover {
    color: #fff;
}

.scrollToTop.active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation: bounceInDown 2s;
    animation: bounceInDown 2s;
}

.influencer-item__content a.active {
    color: rgb(var(--base));
}

.service-item {
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #ebebeb;
    box-shadow: 0 0 5px 0 hsl(var(--dark) / 0.05);
    height: 100%;
}

.service-item__thumb {
    background-color: rgb(var(--base));
    text-align: center;
    position: relative;
}

.service-item__content .service-rating,
.rating {
    font-size: 14px;
    color: #ff9900;
}

.service-item__thumb img {
    width: 100%;
    margin: 0 auto;
}

.service-item .influencer-thumb img {
    width: 55px;
    height: 55px;
    border-radius: 100%;
    object-fit: cover;
    border: 1px solid #c2c2c2;
    background: #fff;
}

.service-item__content {
    padding: 20px;
    padding-top: 0;
}

.service-price {
    padding: 5px 15px;
    background-color: rgb(var(--base) / 0.16);
    color: rgb(var(--base));
    border-radius: 25px;
    font-weight: 400;
}

.service-item__content .influencer-thumb {
    transform: translateY(-50%);
    margin-bottom: -15px;
}

.service-item__content .name {
    font-weight: 300;
    font-size: 16px;
}

.service-item__content .title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

.service-footer {
    gap: 10px;
}

.fs--20px {
    font-size: 20px;
}

.fs--15px {
    font-size: 15px;
}

.fs--14px {
    font-size: 14px;
}

.fs--13px {
    font-size: 13px;
}

.sidebar-widget {
    box-shadow: 0 3px 8px 1px hsl(var(--dark) / 0.06);
    padding: 25px;
    width: 100%;
}

.sidebar-widget .custom--radio label {
    font-size: 16px;
}

@media (max-width: 1199px) {
    @media (min-width: 992px) {
        .sidebar-widget {
            padding: 15px;
            font-size: 14px;
        }
    }
}

@media (max-width: 991px) {
    @media (min-width: 768px) {
    }
}

.sidebar-widget__title {
    padding-bottom: 10px;
    margin-bottom: 18px;
    border-bottom: 1px solid hsl(var(--border));
}

.priceBtn {
    border-radius: 0 5px 5px 0 !important;
}

.langSel {
    background-color: transparent;
    color: rgb(var(--body));
}

.langSel:focus {
    color: hsl(var(--white));
}

.langSel:focus option {
    color: hsl(var(--dark));
}

.border-top {
    border-top: 1px solid hsl(var(--white) / 0.1) !important;
}

.info.border-top {
    border-top: 1px solid hsl(var(--dark) / 0.1) !important;
}

.review-item .thumb {
    width: auto !important;
    height: auto !important;
}

.review-item .thumb img {
    width: 50px;
    height: 50px;
}

.review-item .name {
    font-size: 16px;
}

.review-item .profile {
    gap: 10px;
}

.review-item.border-top {
    border-top: 1px solid hsl(var(--dark) / 0.07) !important;
}

.dash-sidebar {
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
    border: 2.5px solid transparent;
    border-radius: 8px;
    top: 90px;
    padding: 25px;
    box-shadow: 0 0 5px 0px hsl(var(--dark) / 0.08);
    background-color: hsl(var(--white));
}

@media (max-width: 1199px) {
    .dash-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        overflow-y: auto;
        z-index: 111;
        min-width: 250px;
        max-width: 350px;
        transform: translateX(-100%);
        transition: 0.3s;
    }

    .dash-sidebar.active {
        transform: translate(0);
    }

    .dash-sidebar .sidebar-close {
        position: absolute;
        right: 10px;
        top: 10px;
        padding: 5px;
        line-height: 1;
    }
}

.dash-sidebar li a {
    padding: 10px 0;
    border-top: 1px dashed hsl(var(--border));
    display: block;
    position: relative;
}

.dash-sidebar li:first-child a {
    border-top: 0;
}

.slider-nav-thumb img {
    max-width: 100%;
}

.slider-preview-thumb img {
    width: 100%;
    object-fit: cover;
}

.dashboard-toggler-wrapper {
    /* background-color: rgb(var(--base)); */
    background: linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)));
    color: #fff;
    padding: 5px 10px;
}

.dashboard-toggler {
    font-size: 20px;
    color: hsl(var(--white));
}

.sidebar-submenu {
    padding-left: 25px;
    display: none;
}

.sidebar-menu li.sidebar-submenu__open .sidebar-submenu {
    display: block;
}

.sidebar-menu li.sidebar-submenu__open > a {
    color: rgb(var(--base));
}

.sidebar-menu > li.has-submenu {
    position: relative;
}

.sidebar-menu i {
    margin-right: 3px;
}

.sidebar-menu > li.has-submenu::before {
    font-family: "Line Awesome Free";
    content: "\f105";
    font-weight: 900;
    font-size: 14px;
    position: absolute;
    right: 0px;
    top: 13px;
}

.sidebar-submenu > li a.active {
    color: rgb(var(--base));
}

@media (max-width: 1199px) {
    .filter-sidebar {
        padding-top: 50px;
    }
}

.nav-link:focus,
.nav-link:hover {
    color: rgb(var(--base));
}

.sidebar-menu li a.active {
    color: rgb(var(--base));
}

.footer-widget .social-links a i {
    width: 25px;
    height: 25px;
    color: #ffff;
    background-color: rgb(var(--base));
    text-align: center;
    line-height: 25px;
    border-radius: 2px;
}

.footer-widget .social-links [class*="facebook"] {
    background-color: #1877f2 !important;
}

.footer-widget .social-links [class*="twitter"] {
    background-color: #1d9bf0 !important;
}

.footer-widget .social-links [class*="linkedin"] {
    background-color: #0072b1 !important;
}

.footer-widget .social-links [class*="whatsapp"] {
    background-color: #25d366 !important;
}

.footer-widget .social-links [class*="line"] {
    background-color: #07b53b !important;
}

.footer-widget .social-links [class*="youtube"] {
    background-color: #ff0000 !important;
}

.footer-widget .social-links [class*="instagram"] {
    background: #d6249f;
    background: radial-gradient(
        circle at 30% 107%,
        #fdf497 0%,
        #fdf497 5%,
        #fd5949 45%,
        #d6249f 60%,
        #285aeb 90%
    );
}

.influencer-item .social-links a:hover i {
    color: rgb(var(--base));
}

label.required:after {
    content: "*";
    color: #dc3545 !important;
    margin-left: 2px;
    font-weight: 200;
}

.form-group {
    margin-bottom: 1rem !important;
}

:-webkit-autofill {
    -webkit-text-fill-color: rgb(var(--heading)) !important;
    -webkit-box-shadow: 0 0 0px 1000px hsl(var(--white)) inset;
}
.login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    font-size: 16px;
    line-height: 1;

    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
    border: 1px solid transparent;
    color: #017a80;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box !important;
    color: #fff;
    border-color: transparent;
}

.register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.25rem;
    line-height: 1;
    font-size: 1.125rem;
    font-family: "Segoe UI", sans-serif;
    border: none;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)));
    color: #fff;
}
.register-btn:hover {
    background: linear-gradient(
        0deg,
        hsl(var(--dark-blue)),
        90deg,
        hsl(var(--teal))
    );
}

.register-btn:hover {
    /* background:
    linear-gradient(hsl(var(--white)), hsl(var(--white))) padding-box,
    linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal))) border-box; */
    background: linear-gradient(90deg, hsl(var(--teal)), hsl(var(--dark-blue)));
    /* transform: translateY(-2px); */
    /* color: hsl(var(--dark-blue)); */
    color: #fff;
}

.account-tab-nav {
    border-bottom: none;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.border-table tbody {
    border: 1px solid #011d60 !important;
}
.border-gradient .table thead{
    background: linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)));
}
.border-gradient .btn--base{
     background: linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)));
     border: none;
}
.border-gradient .btn--base.btn:disabled{
background: none;
border: 1px solid #bfbbbb;
}
.border-gradient .deposit-info__input .form-control{
background: none!important;
border: none!important;
}
.border-gradient .custom--card .flex-grow-1 input{
    background: linear-gradient(hsl(var(--white)), hsl(var(--white))) padding-box, linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal))) border-box;
    border: 1.5px solid transparent; 
    border-radius: 5px;
}
.border-gradient .custom--card .flex-grow-1 .select2{
    background: linear-gradient(hsl(var(--white)), hsl(var(--white))) padding-box, linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal))) border-box;
    border: 1.5px solid transparent; 
    border-radius: 5px;
    
}
.border-gradient .addAttachment{
    padding: 0.5rem 0.6rem;
    font-size: 0.9rem;
}
.border-gradient .btn--base:hover{
  color: #fff;
  background: linear-gradient(90deg, hsl(var(--teal)), hsl(var(--dark-blue)));  
}
.btn--outline-custom{
 background: linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)));
 color: #fff;
 padding: 0.5rem 0.9rem !important
}
.btn--outline-custom:hover{
  color: #fff;
  background: linear-gradient(90deg, hsl(var(--teal)), hsl(var(--dark-blue)));  
}
.border-gradient .custom--card form .form--group input,textarea{
    background: linear-gradient(hsl(var(--white)), hsl(var(--white))) padding-box, linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal))) border-box;
    border: 1.5px solid transparent;
}
.border-gradient .custom--card form .form--group .select2{
    background: linear-gradient(hsl(var(--white)), hsl(var(--white))) padding-box, linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal))) border-box;
    border: 1.5px solid transparent;
    border-radius: 5px;
}
.border-gradient .custom--card form .form--group textarea{
    background: linear-gradient(hsl(var(--white)), hsl(var(--white))) padding-box, linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal))) border-box;
    border: 1.5px solid transparent;
}
.border-gradient .table thead th{
    background: none;
    border: none;
}
.border-gradient {
    border-radius: 5px;
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
    border: 2.5px solid transparent;
    padding: 1rem;
}
.account-tab-nav .nav-item {
    width: 50%;
    text-align: center;
}

.account-tab-nav .nav-item .nav-link {
    padding: 15px 30px;
    border: none !important;
    background-color: #f1f1f1;
    color: #6f6f6f;
    -webkit-border-radius: 0;
}

.account-tab-nav .nav-item {
    width: 50%;
    text-align: center;
}

.account-tab-nav .nav-item .nav-link.active {
    background-color: rgb(var(--base));
    color: #ffffff;
}

.register-title {
    text-align: center;
    padding: 0 0 20px 0;
    margin-bottom: 20px;
    font-size: 25px;
}

.register-card {
    position: relative;
    text-align: center;
    border: 1px solid #d5d5d5;
    padding: 30px;
    border-radius: 5px;
    cursor: pointer;
}

.register-card .register-thumb img {
    height: 50px;
    width: 50px;
}

.register-card h6 {
    margin-top: 15px;
}

.register-checkbox {
    position: absolute;
    top: 0px;
    right: 15px;
}

.register-card:hover {
    background-color: rgb(var(--base) / 0.08);
}

.btn--register {
    background-color: rgb(var(--base) / 0.08);
    border: 1px solid rgb(var(--base) / 0.08);
    color: rgb(var(--base));
}

.btn--register:hover {
    cursor: no-drop;
}

.faq-wrapper {
    padding: 1.875rem 3.125rem;
}

@media (max-width: 991px) {
    .faq-wrapper {
        padding: 1.25rem 1.875rem;
    }
}

@media (max-width: 575px) {
    .faq-wrapper {
        padding: 0.9375rem;
    }
}

.faq-single__header::after {
    position: absolute;
}

.faq-single__header,
.faq-single__header::after,
.faq-single__title {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.faq-single.active .faq-single__header {
    background-color: #fff;
}

.faq-single.active .faq-single__title,
.faq-single.active .faq-single__header::after {
    color: #000;
}

.faq-single {
    border-bottom: 1px solid #e5e5e5;
}

.faq-single:last-child {
    border-bottom: none;
}

.faq-single__header {
    cursor: pointer;
    padding: 20px;
    position: relative;
}

.faq-single__header::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    background-image: url("../../../../assets/images/frontend/why_choose_us/down-arr.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    z-index: 5;
}

.faq-single__content {
    display: none;
    padding: 20px;
}

.faq-single__title {
    font-size: 1.5rem;
    padding-right: 20px;
    color: #000;
    font-weight: 700;
}

@media (max-width: 420px) {
    .faq-single__title {
        font-size: 1rem;
    }
}

.faq-single.active .faq-single__content {
    background-color: fff;
}

.faq-single.active .faq-single__header::after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(180deg);
}
.faq-single__content p {
    color: #3c3c43d9;
    font-size: 1.2rem;
}

.btn-check:focus + .btn,
.btn:focus {
    box-shadow: none !important;
}

.image-upload .thumb .profilePicPreview {
    width: 100%;
    height: 310px;
    display: block;
    border: 3px solid #f1f1f1;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    background-size: cover !important;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.image-upload .thumb .profilePicPreview.logoPicPrev {
    background-size: contain !important;
    background-position: center;
}

.image-upload .thumb .profilePicUpload {
    font-size: 0;
    opacity: 0;
}

.image-upload .thumb .avatar-edit label {
    text-align: center;
    line-height: 45px;
    font-size: 18px;
    cursor: pointer;
    padding: 2px 25px;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.16);
    transition: all 0.3s;
}

.image-upload .thumb .avatar-edit label:hover {
    transform: translateY(-3px);
}

.image-upload .thumb .profilePicPreview .remove-image {
    position: absolute;
    top: -9px;
    right: -9px;
    text-align: center;
    width: 55px;
    height: 55px;
    font-size: 24px;
    border-radius: 50%;
    background-color: #df1c1c;
    color: #fff;
    display: none;
}

.image-upload .thumb .profilePicPreview.has-image .remove-image {
    display: block;
}

.category-item {
    text-align: center;
}

.category-thumb {
    width: 45px;
    height: 45px;
    margin-inline: auto;
    object-fit: contain;
    margin-bottom: 20px;
    position: relative;
}

.category-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-thumb::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    background: #ddd;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    transition: 0.3s;
}

.category-item:hover .category-thumb::before {
    width: 75px;
    background: rgb(var(--base));
}

.cate-container {
    gap: 40px 0;
}

.cate-outer {
    width: calc(100% / 5);
}

@media (max-width: 991px) {
    .cate-outer {
        width: calc(100% / 5);
    }
}

@media (max-width: 767px) {
    .category-thumb {
        width: 35px;
        height: 35px;
    }

    .cate-outer {
        width: calc(100% / 5);
    }

    .cate-title {
        font-size: 14px;
    }
}

@media (max-width: 550px) {
    .cate-outer {
        width: calc(100% / 4);
    }
}

@media (max-width: 500px) {
    .cate-outer {
        width: calc(100% / 3);
    }
}

@media (max-width: 420px) {
    .cate-outer {
        width: calc(100% / 2);
    }
}

.why-choose {
    z-index: 1;
}

.why-thumb {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 500px;
    z-index: -1;
}

@media (max-width: 575px) {
    .container {
        max-width: 450px;
    }
}

.col-form-label {
    padding-top: 0;
}

@media (max-width: 991px) {
    .header.dash-header .menu li a {
        color: hsl(var(--white));
    }
}

.message-loader-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(var(--white) / 0.7);
}

.message-loader {
    height: 3.5rem;
    width: 3.5rem;
    border-radius: 50%;
    border: 6px solid rgb(var(--base));
    border-top-color: hsl(var(--white));
    box-sizing: border-box;
    background: transparent;
    animation: loadingg 1s linear infinite;
}

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

    0% {
        transform: rotate(-360deg);
    }
}

.register-disable {
    text-align: center;
}
/* quick categories */
.quick-categories-outer {
    display: flex;
    justify-content: center;
    gap: 0.9rem;
    padding-top: 2rem;
}
.quick-search-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.4rem 0.7rem;
    border-radius: 50px;
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
    border: 1px solid transparent;
    cursor: pointer;
}
.influencer-section .container-fluid {
    padding: 0 5.4375rem;
    max-width: 1920px;
}
.quick-search-title {
    font-size: 1rem;
    font-weight: 600;
    color: #252626;
}

.disabled-btn {
    opacity: 0.4;
    cursor: not-allowed !important;
    pointer-events: none;
    filter: blur(5px);
    background-color: #d3d3d3 !important;
    border-color: #c0c0c0 !important;
}
.locked-btn-message {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #d9534f; /* red warning text */
    text-align: center;
}

/* end */
/* influencer-social */
.listing-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.listing-row .profile-listing-holder {
    width: 24%;
    min-width: 245px;
    cursor: pointer;
    position: relative;
}
.link-spanner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.profile-listing-img-holder {
    width: 100%;
    height: 320px;
    position: relative;
    border-radius: 9px;
    background-color: black;
    overflow: hidden;
}
.profile-listing-img-holder .profile-listing-badge-holder {
    position: absolute;
    top: 10px;
    left: 8px;
    z-index: 1;
    display: flex;
}
.profile-listing-img-holder .profile-listing-badge {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 14px;
    padding: 5px;
    margin-right: 5px;
    box-shadow: rgba(120, 120, 170, 0.3) 0 2px 10px 0;
    border: 1px solid white;
}
.profile-listing-img-holder .profile-listing-badge-title {
    font-weight: 400;
    margin-right: 0.3rem;
    font-family: "Segoe UI", sans-serif;
    font-size: 0.9rem;
    color: #000000;
}
.profile-flex {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.profile-listing-holder:hover .profile-listing-img {
    transform: scale(1.1);
}
.profile-listing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    -webkit-mask-image: linear-gradient(
        to top,
        rgb(0 0 0 / 50%) 10%,
        rgba(0, 0, 0, 1)
    );
    transition: transform 0.4s cubic-bezier(0.17, 0.67, 0.13, 1.02) 0s;
}
.profile-listing-owner-holder {
    position: absolute;
    bottom: 8px;
    left: 8px;
    display: flex;
    align-items: center;
}
.profile-listing-owner-info-holder {
    display: flex;
    flex-direction: column;
}
.profile-platform-badge {
    height: auto;
    background-color: white;
    width: fit-content;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.5rem;
    border: 1px solid white;
    border-radius: 50px;
    margin-bottom: 0.24rem;
    display: flex;
}
.profile-listing-platform-img {
    width: 12px;
    height: 12px;
    margin-right: 5px;
}
.profile-listing-followers {
    font-size: 65%;
    font-weight: 600;
    font-family: "Segoe UI", sans-serif;
}
.profile-listing-owner-name {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-family: "Segoe UI", sans-serif;
    color: white;
    font-weight: 500;
}
.profile-listing-review-holder {
    font-weight: 500;
    display: flex;
    align-items: center;
}
.profile-listing-review-img {
    width: 12px;
    margin: 0 3px 0 7px;
}
.profile-listing-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2% 0 1% 0;
}
.profile-listing-title {
    font-size: 1rem;
    font-weight: 300;
    margin: 0;
    height: 18px;
}
.profile-listing-price {
    font-weight: 600;
    font-size: 1.3rem;
}
.profile-listing-category {
    color: rgb(151, 163, 197);
    font-size: 1.1rem;
}
.influencer-section .section-header__title {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(90deg, #012360 0%, #009584 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}
.influencer-section .section-header {
    margin-bottom: 0;
}
.view-all {
    color: #000;
    font-size: 1.5rem;
    margin-right: 1.9rem;
    list-style: none;
    margin-left: auto;
    font-weight: 700;
}
.categores-title .section-header .section-header__title span {
    background: linear-gradient(90deg, #012360 0%, #009584 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.categores-title .section-header .section-header__title {
    color: #252626;
    font-weight: 700;
    font-family: "Segoe UI", sans-serif;
    font-size: 2.8rem;
}
.categores-title .section-header .section-header__title p {
    color: #252626;
    font-size: 1rem;
}
.categores-title .section-header {
    max-width: 50rem;
    margin: 0 auto 2rem;
}
/* end */
/* diffrent-categories */
.categories-diffrent .category-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    /* border-radius: 50px;
    background: linear-gradient(hsl(var(--white)), hsl(var(--white))) padding-box, linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal))) border-box;
    border: 1px solid transparent;
        padding: 0.8rem 0.8rem; */
}
.categories-diffrent .category-item .category-thumb {
    width: 1.525rem;
    height: 1.525rem;
    object-fit: contain;
    margin-bottom: 0;
    position: relative;
    margin-inline: unset;
}
.categories-diffrent .category-thumb::before {
    display: none;
}
.categories-diffrent {
    max-width: 60rem;
    margin: 1rem auto 0;
    gap: 10px 10px;
}
.category-item .fs--12px {
    font-size: 1.2rem;
}
.categoreies-btn .register-btn {
    border-radius: 14px;
}

/* end */
/* hire influencer */
.influencer--layout {
    display: flex;
    gap: 1.9rem;
    margin-top: 2rem;
}
.influencer--inner {
    width: 33.3%;
    background-color: #d8ebea;
    border-radius: 22px;
    padding: 2.75rem 2.125rem;
    text-align: left;
}
.influencer--inner h4 {
    color: #252626;
    font-weight: 700;
    font-family: "Segoe UI", sans-serif;
    font-size: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.influencer--inner p {
    color: #252626;
    font-size: 1.1rem;
    font-family: "Segoe UI", sans-serif;
}
.global-outer .choose-item {
    flex-direction: column;
    text-align: center;
    padding: 0 1rem;
}
.global-outer {
    margin-top: 1rem;
}
.faq-outer .section-header__title {
    background: linear-gradient(70deg, #012360 0%, #009584 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-family: "Segoe UI", sans-serif;
    font-size: 2.8rem;
}
.section-title-influencer .section-header {
    display: flex;
    align-items: baseline;
    font-size: 150%;
    font-weight: 600;
    margin: 0;
}
.section-subtitle {
    display: flex;
    align-items: center;
    margin: 4px 0 8px 0;
    font-size: 92%;
    font-weight: 400;
    color: gray;
}
.section-subtitle p {
    font-size: 1.275rem;
    color: #252726;
}
.search-page .search-form {
    max-width: 70rem;
    margin: 0 auto;
}
.search-page .search-form .form--group {
    align-items: center;
}
.search-page .input-group {
    margin-bottom: 0;
}
.search--dropdown--menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.search--dropdown--menu .platform-name {
    color: #252626;
}
.search--dropdown--menu .custom-select-bootstrap {
    border-right: none;
    width: 11.875rem;
}

.search--dropdown--menu .custom-select-bootstrap .btn {
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
    border: 1.5px solid transparent;
    border-radius: 25px;
    padding: 0.5rem 2rem 0.5rem 1.25rem;
    font-weight: 500;
    color: #000;
    background-color: #fff;
    transition: all 0.3s ease;
    height: auto;
    max-width: 11rem;
}

.search--dropdown--menu .custom-select-bootstrap .btn:hover {
    background-color: #f8f9fa;
}

.search--dropdown--menu .custom-select-bootstrap .dropdown-menu {
    border-radius: 12px;
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    transform: none !important;
    z-index: 9;
    inset: inherit !important;
}

.search--dropdown--menu .custom-select-bootstrap .dropdown-item {
    font-size: 15px;
    color: #333;
    border-radius: 6px;
    padding: 8px 12px;
}

.search--dropdown--menu .custom-select-bootstrap .dropdown-item:hover {
    background-color: #e6f4f9;
}

.search--dropdown--menu .form-check-input {
    accent-color: #007b8f;
}
.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #004b84, #00a4a4) border-box;
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-checkbox:checked {
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #004b84, #00a4a4) border-box;
}

.custom-checkbox:checked::after {
    content: "✔";
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: #006b8f;
    font-weight: bold;
}
.dropdown-menu {
    border-radius: 12px;
    min-width: 220px;
}

.dropdown-item {
    font-size: 15px;
    color: #333;
    border-radius: 6px;
    padding: 8px 12px;
}

.dropdown-item:hover {
    background-color: #e6f4f9;
}
.reset-class {
    text-decoration: underline;
    font-size: 1rem;
    font-weight: 400;
    width: 10%;
    margin-top: 1.5rem;
}

.mobile-nav-holder {
    position: fixed;
    display: none;
    bottom: 0;
    left: 0;
    z-index: 10000;
    height: 65px;
    border-top: 1px solid rgb(221, 221, 221);
    background-color: white;
    width: 100%;
    justify-content: center;
}
.mobile-nav-holder .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: gray;
    text-decoration: none;
}
.nav-img-holder {
    position: relative;
}
.nav-img-stroke {
    stroke: rgb(176, 176, 176);
    stroke-width: 2.5px;
}
.nav-img {
    display: block;
    height: 24px;
    width: 24px;
    fill: rgb(176, 176, 176);
}
.nav-txt {
    font-size: 10px;
    margin-top: 8px;
}
.load-more {
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
    border: 1.5px solid transparent;
    border-radius: 10px;
    color: #017a80;
    padding: 10px 18px;
}
.load-more svg {
    margin-left: 1rem;
}
.search-reset-form {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}
.content-profile-pad {
    padding: 0 25px;
}
.search-reset-form .search--dropdown--menu {
    width: 95%;
}
.profile-subheader {
    background: #d8ebea;
    position: fixed;
    padding-top: 5.9rem;
    top: 0rem;
    width: 100%;
    z-index: 99;
}
.profile-right-section .profile-listing-owner-name {
    color: #252626;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    justify-content: center;
}
.profile-right-section .img-content img {
    width: 100%;
    object-fit: cover;
    max-width: 9.2rem;
    border-radius: 50%;
    height: 9.2rem;
}
.profile-right-section .profile-left-section {
    color: #252626;
    margin: 0 auto;
    font-size: 1.125rem;
}
.profile-subheader ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2.95rem;
    list-style: none;
    margin: 0;
    height: 52px;
}
.profile-subheader ul li {
    position: relative;
}
.profile-drop .platform-name {
    font-size: 1rem;
}
.profile-right-section .service-item {
    border: none;
    box-shadow: unset;
}
.profile-right-section .dropdown-menu {
    top: 96% !important;
}
.profile-subheader ul li a {
    font-size: 1.125rem;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    padding: 8px 0;
    display: inline-block;
    transition: color 0.3s ease;
}
.profile-subheader a:hover {
    color: #007b83; /* subtle hover tone */
}
.profile-subheader li.active a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background-color: #000;
    border-radius: 3px;
}
.profile-right-section {
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
    border: 1.5px solid transparent;
    border-radius: 10px;
    padding: 1.9rem 1.8rem;
    text-align: center;
}
.profile-right-section .img-content {
    margin-bottom: 1rem;
}
.profile-right-section h4 {
    color: #000;
    margin-top: 1.2rem;
    font-size: 1.6rem;
    font-weight: 700;
}
.profile-right-section .profile-drop {
    margin-top: 1.2rem;
}
.profile-right-section .profile-drop .custom-select-bootstrap {
    border: none;
    margin: 0 auto;
    width: 100%;
}
.profile-right-section .profile-drop .custom-select-bootstrap .btn {
    border: 1px solid #e9e9e9;
    padding: 4px 18px;
    border-radius: 25px;
    height: 4rem;
}
.profile-right-section .profile-drop .custom-select-bootstrap .btn .d-flex {
    gap: 0.8rem;
    font-size: 0.8rem;
}
.profile-right-section > p {
    text-align: left;
    font-size: 1rem;
    margin-top: 1.3rem;
    margin-bottom: 2rem;
    color: #252626;
}
.profile-right-section .register-btn {
    border-radius: 10px;
    width: 100%;
    padding: 0.8rem 2.25rem;
}
.profile-right-section #addToCartBtn.register-btn {
    background: linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box !important;
    border: 1.5px solid transparent;
}
.profile-right-section p:last-child {
    font-size: 1rem;
    text-align: center;
    margin-top: 1.3rem;
    margin-bottom: 0;
    color: #252626;
}
.profile--detail--outer {
    position: relative;
    padding: 5.3rem 0;
}
.how-it-work-btn {
    color: #3a9c94;
    font-size: 1rem;
    text-align: center;
    margin-top: 1.2rem;
}
.profile--inner--section {
    gap: 1.3rem;
}
.profile-right-section-outer {
    width: 30%;
}
.profile-left-section-inner {
    width: 70%;
}
/* .single-slide1 img {
  width: 100%;
  border-radius: 10px;
  border: 2px solid #ddd;
  transition: transform 0.3s ease;
}
.single-slide1 img:hover {
  transform: scale(1.05);
} */

.profile-testimonial {
    width: 100%;
}
.single-slide1:first-child img {
    border-top-left-radius: 16px;
}

.profile-testimonial-slider {
    width: 100%;
}

.single-slide1 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-slide1:hover {
    transform: translateY(-6px);
}

.single-slide1 img {
    width: 100%;
    height: 24.8125rem;
    object-fit: cover;
    border-radius: 0;
    /* 1st visible image - top-left corner */
    .slick-slide:nth-child(1) img {
        border-top-left-radius: 1rem;
    }

    /* 3rd visible image - top-right corner */
    .slick-slide:nth-child(3) img {
        border-top-right-radius: 1rem;
    }
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

/* Slick arrow styling */
.slick-prev,
.slick-next {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.slick-prev:hover,
.slick-next:hover {
    background-color: #0e6251;
    border-color: #0e6251;
    color: #fff;
}

.slick-prev {
    left: -45px;
}

.slick-next {
    right: -45px;
}

/* Remove slick default outline */
.slick-prev:focus,
.slick-next:focus {
    outline: none;
    box-shadow: none;
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .single-slide1 img {
        height: 300px;
        object-position: top;
    }
}

@media (max-width: 600px) {
    .single-slide1 img {
        height: 260px;
    }
}

.profile-arrow {
    color: #000;
    border-radius: 50%;
}
.custom-arrow.profile-arrow.slick-next {
    left: unset;
    right: 0.5rem;
}
.audience-gender-section h6 {
    font-weight: 700;

    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(90deg, #012360 0%, #009584 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.125rem;
}
.loaction-flex > div {
    font-size: 1.125rem;
}
.audience-graph {
    display: flex;
    gap: 3rem;
    margin-top: 3.2rem;
}
.audience-gender-section {
    width: 50%;
}
.audience-location-section {
    width: 50%;
}
.audience-location-section h6 {
    color: #000;
    font-size: 1.125rem;
    font-weight: 700;
}
.audience-age-section h6 {
    color: #000;
    font-size: 1.125rem;
    font-weight: 700;
    margin-left: 1.7rem;
}
.audience-age-section {
    width: 50%;
}
.profile-left-section-inner {
    border: 1px solid #e9e9e9;
    border-radius: 1rem;
    padding-bottom: 3.2rem;
}
.profile--testimonial--detail {
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
}
.profile--share-icon {
    display: flex;
    gap: 2rem;
}
.profile-quick {
    padding-bottom: 15px;
}
.hr-line {
    margin: 18px 0px;
    opacity: 0.1;
    background: #e4e4e4;
}
.respond-details h4 {
    color: #252626;
    margin-bottom: 0.3rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: "Segoe UI", sans-serif;
}
.respond-details p {
    margin-bottom: 0.7rem;
    color: #252626;
    font-family: "Segoe UI", sans-serif;
    font-size: 1rem;
}
.respond-details p:last-child {
    margin-bottom: 3rem;
}
/* .respond-profile{
 padding-left: 25px;	
} */
.respond-profile {
    display: flex;
    align-items: baseline;
    font-size: 150%;
    font-weight: 600;
    margin: 0;
}
.respond-profile h5 {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(90deg, #012360 0%, #009584 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.share-profile-detail {
    display: flex;
    gap: 2.1rem;
}
.profile--testimonial--detail .profile-img-content .profile-listing-owner-name {
    color: #252626;
    font-size: 1.525rem;
    font-weight: 700;
}
.profile--testimonial--detail
    .profile-img-content
    .profile-listing-owner-name
    span {
    font-weight: 400;
    font-size: 1.2rem;
}
.profile--testimonial--detail .profile-left-section {
    width: 100%;
    display: flex;
    align-items: start;
    flex-direction: column;
    color: #252626;
    font-size: 1.1rem;
    gap: 0.4rem;
}
.profile--testimonial--detail .profile-left-section .profile-flex {
    margin-top: 0.65rem;
}
.profile--testimonial--detail
    .profile-left-section
    .profile-flex
    .profile-platform-badge {
    border: 1px solid #d3d3d3;
    padding: 0.25rem 0.56rem;
}
.profile-quick .quick-categories-outer {
    justify-content: flex-start;
    padding: 0px 25px;
}
.profile-quick .quick-categories-outer .quick-search-item {
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
    border: 1.5px solid transparent;
}
.profile-quick .quick-categories-outer .quick-search-item .quick-search-title {
    background: linear-gradient(90deg, #012360 0%, #009584 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Tabs styling */
.nav-pills .nav-link {
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
    border: 1.5px solid transparent;
    color: #0c3b3c;
    font-weight: 500;
    border-radius: 8px;
    width: 9.1875rem;
    margin-right: 8px;
    padding: 8px 20px;
    box-shadow: none !important;
}
.nav-pills .nav-link.active {
    background: linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box !important;

    border: 1.5px solid transparent !important;
    color: #fff;
    border: 1.5px solid #f2f2f2;
    box-shadow: none !important;
}

/* Package radio section */
.package-option {
    border-radius: 10px;
    padding: 0 1rem;
    margin-bottom: 2.2rem;
    transition: 0.3s;
}
.package-option .img-pack {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.package-option:hover {
    background-color: #f9fdfc;
    border-color: #b8e0de;
}
.package-option label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
}
/* .package-option input[type="radio"] {
      accent-color: #007c77;
      margin-right: 12px;
    } */

.package-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: white;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.3s;
    vertical-align: middle;
    margin-right: 10px;
}
/* .package-option input[type="radio"]::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 50%;
      padding: 2px; 
      background: linear-gradient(135deg, #012360, #009584);
      -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
              mask-composite: exclude;
    } */
/* .package-option  input[type="radio"]::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 10px;
      height: 10px;
      background: linear-gradient(135deg, #012360, #009584);
      border-radius: 50%;
      transform: translate(-50%, -50%) scale(0);
      transition: 0.2s ease-in-out;
    } */

/* .package-option  input[type="radio"]:checked::after {
      transform: translate(-50%, -50%) scale(1);
    } */
/* Radio button reset */
.package-option input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #012360, #009584) border-box;
    transition: 0.2s;
}

/* Inner dot */
.package-option input[type="radio"]::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #012360, #009584);
    transform: scale(0);
    transition: 0.2s ease-in-out;
}

/* Checked state */
.package-option input[type="radio"]:checked::after {
    transform: scale(1);
}

.package-desc {
    margin-left: 2.4375rem;
    font-size: 1rem;
    font-weight: 400;
    color: #252626;
}
.package-option > div {
    align-items: center;
    display: flex;
}
.price {
    font-weight: 700;
    font-size: 1.5rem;
    color: #252626;
}
.counter-section {
    display: flex;
    gap: 7rem;
}
.counter-section h3 {
    color: #000;
    font-size: 1.9rem;
    font-weight: 700;
}
.review-profile-text {
    font-size: 1.5rem;
    display: flex;
    font-weight: 700;
    align-items: center;
    gap: 1rem;
}
.count-inner {
    text-align: center;
}
.counter-section p {
    color: #000000;
    font-size: 1.1rem;
}
.back-span.yellow-back {
    background: #ffeab5;
}
.package-option strong {
    margin-left: 8px;
    color: #252626;
    font-weight: 700;
    font-size: 1.4rem;
}
.profile-ul-tabs {
    margin-top: 0.835rem;
}
.brand-profile .brand-profile-inner {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
}
.back-span {
    background: #c2ffd5;
    height: 3.4875rem;
    width: 3.4875rem;
    justify-content: center;
    display: flex;
    align-items: center;
    border-radius: 50%;
}
.back-span span {
    font-size: 1.4rem;
    font-weight: 700;
}
.brand-profile .brand-profile-inner .brand-decrip h4 {
    font-size: 1.275rem;
    font-weight: 700;
    color: #000;
}
.brand-profile .brand-profile-inner .brand-decrip h5 {
    font-size: 1rem;
    color: #000000;
    margin-bottom: 0.4rem;
}
.brand-profile .brand-profile-inner .brand-decrip p {
    color: #808080;
    font-size: 1rem;
}

.how--it--work--outer {
    text-align: center;
    position: relative;
    padding-bottom: 60px;
}
.how-it-work {
    padding-top: 5.5rem;
}
.how--it--work--outer h2 {
    background: linear-gradient(90deg, #012360 0%, #009584 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4rem;
    font-weight: 700;
    position: relative;
    color: #000;
    font-family: "Segoe UI", sans-serif;
}
.how--it--work--outer h4 {
    color: #252626;
    font-size: 2.8rem;
    font-weight: 600;
}
.upfront-inner-outer {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.upfront-inner-outer .upfront-inner {
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
    border: 1.5px solid transparent;
    padding: 4.7rem 6.6rem;
    border-radius: 25px;
    width: 48%;
    text-align: center;
}
.track-banner img {
    width: 100%;
}
.upfront-inner h6 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 1.125rem;
    color: #252626;
}
.upfront-inner p {
    font-size: 1.125rem;
    color: #252626;
}
.track-layout .influencer--inner {
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
    border: 1.5px solid transparent;
}

.profile--share-icon .profile-img-detail img {
    width: 6.4rem;
    object-fit: cover;
    height: 6.4rem;
    border-radius: 50%;
}

.location-progress {
    width: 100%;
    height: 0.3rem;
    border-radius: 10px;
    appearance: none;
    -webkit-appearance: none;
    background: #e6e6e6; /* fallback background */
    overflow: hidden;
}

/* Progress bar fill (WebKit browsers like Chrome, Edge, Safari) */
.location-progress::-webkit-progress-bar {
    background: #e6e6e6;
    border-radius: 10px;
}

.location-progress::-webkit-progress-value {
    background: linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)));
    border-radius: 10px;
    transition: width 0.3s ease-in-out;
}
.loaction-flex {
    display: flex;
    justify-content: space-between;
}

/* Firefox support */
.location-progress::-moz-progress-bar {
    background: linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)));
    border-radius: 10px;
}
.profile .thumb {
    width: 100px;
    height: 100px;
}

/* Audience Analytics Styles */
.audience-analytics-section {
    margin: 2rem 0;
    background: #fff;
    padding: 0;
}

.audience-location-section,
.audience-age-section,
.audience-gender-section {
    margin-bottom: 2.5rem;
}
.gender-item .label,
.value {
    font-size: 1.125rem;
}

.audience-location-section h6,
.audience-age-section h6,
.audience-gender-section h6 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #252626;
    line-height: 1.4;
}

/* Age Bars (Vertical) - Exact Match with Gradient */
.age-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    height: 240px;
    padding: 0 5px;
    margin-top: 10px;
}

.age-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
    max-width: 80px;
}

.age-percentage {
    font-size: 1.125rem;
    font-weight: 400;
    color: #252626;
    margin-bottom: 1.6rem;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-bar-wrapper {
    flex: 1;
    width: 24%;
    background-color: #eeeeee;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 0;
    height: 100%;
    overflow: hidden;
}

.age-bar {
    width: 100%;
    background: linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)));
    border-radius: 8px;
    transition: height 0.6s ease;
    min-height: 4px;
    position: relative;
}

.age-label {
    font-size: 1.125rem;
    color: #252626;
    margin-top: 10px;
    text-align: center;
    font-weight: 400;
}

.gender-chart-wrapper {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.gender-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gender-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    font-size: 1.125rem;
    font-weight: 400;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}
.gender-item .dot-label {
    font-weight: 700;
}
.gender-item .dot-span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gender-item.active .dot {
    background: linear-gradient(90deg, #012360, #009584);
}

.gender-item .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}
.dot {
    background: #d3d3d3;
}

.gender-item .value {
    margin-left: auto;
    font-weight: 700;
}
.service-inner-row .profile-listing-img-holder {
    height: 23.75rem;
}
.service-inner-row .profile-listing-img-holder .blog-head {
    position: absolute;
    top: 50%;
    left: 50%; /* always center horizontally */
    transform: translate(-50%, -50%); /* perfect centering */
    z-index: 2;
    text-align: center;
    width: 100%;
}
.service-inner-row .profile-listing-img-holder .blog-head h5 {
    font-size: 1.825rem;
    font-weight: 700;
    color: #fff;
}
/* --- Base Styles for the Drawer --- */
.sidebar-cart {
    /* Positioning & Size */
    position: fixed;
    top: 0;
    right: 0;
    width: 32.5rem;
    height: 100%;
    z-index: 1000;
    background-color: #fff;
    color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-out;
    transform: translateX(100%);
    display: flex;
    flex-direction: column;
}
.sidebar-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.567rem;
}
.sidebar-cart-title {
    background: linear-gradient(90deg, #012360 0%, #009584 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.3rem;
    font-weight: 700;
}
.sidebar-cart-close > img {
    padding: 0.5rem 0rem 0.5rem 0rem;
    border-radius: 50%;
    border: 1px solid #fefefe;
    cursor: pointer;
}
.search-checkout-added {
    flex: 1;
    min-height: 65%;
    flex-direction: column;
}
.search-checkout-item-holder {
    position: relative;
    /* border-bottom: 1px solid #f5f5f5; */
    padding: 0rem 1.567rem 2rem 1.567rem;
}
.search-checkout-item {
    display: flex;
    border-bottom: 1px solid #edeaea;
    align-items: center;
    padding-bottom: 2rem;
    gap: 1.125rem;
}

.search-checkout-item-img {
    min-width: 3.9rem;
    width: 3.9rem;
    height: 3.9rem;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
}
.search-checkout-item-info-holder {
    width: 100%;
}
.search-checkout-item-title-holder {
    font-size: 1.125rem;
    font-weight: 700;
    color: #252626;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
.search-checkout-item-name {
    font-size: 1rem;
    color: #656565;
    font-weight: 400;
    margin-top: 2px;
    cursor: pointer;
    width: fit-content;
}

/* --- State Class: Visible --- */
.sidebar-cart.is-open {
    /* Slides the panel back into view (0% translation) */
    transform: translateX(0);
}
.sidebar-footer {
    padding: 1rem;
}
.sidebar-footer .register-btn {
    width: 100%;
    border-radius: 0.9rem;
    padding: 1.4rem;
    margin-bottom: 0.7rem;
}

/* --- Overlay (Optional but Recommended) --- */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none; /* Allows clicks to pass through when hidden */
    transition: opacity 0.3s ease-out;
}

.overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}
.how--it--work--outer .respond-profile {
    justify-content: center;
}
.search-checkout-cart-items {
    flex: 1;
    overflow-y: scroll;
}
.search-checkout-cart-number-holder {
    padding: 1rem;
    border-top: 1px solid #ededed;
}
.search-checkout-estimate-holder {
    margin: -3% auto 3.1% auto;
}
.search-checkout-width-holder {
    width: calc(100% - 2.2rem);
}
.cart-price-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.125rem;
    margin-top: 3%;
    color: #222;
}
.tooltip-area {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #252626;
}
.tooltip-area h6 {
    color: #252626;
    font-weight: 600;
    font-size: 1.125rem;
}
.tooltip-img {
    width: 12px;
    height: 12px;
    margin-left: 4px;
    filter: brightness(0);
    opacity: 0.7;
}
.total-cart-price-row {
    font-weight: 600;
    color: #252626;
}
.service-outer .listing-row {
    justify-content: space-between;
    gap: 0rem;
}

/* range data */

/* CSS: add to your stylesheet */
.min-max-slider-wrapper {
    max-width: 820px;
    margin: 0 auto;
}

.min-max-slider {
    position: relative;
    height: 6px; /* space left/right inside modal */
    user-select: none;
}

/* Base range styling (apply to both inputs) */
.min-max-slider .range {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    left: 0;
    top: 0; /* align track vertically */
    width: 100%;
    height: 6px;
    background: transparent;
    pointer-events: auto;
}

/* track for WebKit: keep it transparent, we'll draw background on container */
.min-max-slider .range::-webkit-slider-runnable-track {
    height: 6px;
    background: transparent;
    border-radius: 6px;
}

.min-max-slider .range::-moz-range-track {
    height: 6px;
    background: transparent;
    border-radius: 6px;
}

/* thumbs */
.min-max-slider .range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    margin-top: -11px; /* centering against track */
    border-radius: 50%;
    background: linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)));
    cursor: pointer;
}

.min-max-slider .range::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border: 4px solid white;
    border-radius: 50%;
    background: linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)));
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}
.range-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.25rem;
}
.min-max-slider[data-track-fill] {
    background: linear-gradient(90deg, #e6e6e6 0%, #e6e6e6 100%);
    border-radius: 6px;
    position: relative;
}
.followers-modal {
    border-radius: 25px;
    border: none;
    padding: 32px 45px;
}
.followers-modal .modal-header {
    position: relative;
}
.register--modal--outer .followers-modal {
    padding: 1rem;
}
.register--modal--outer .followers-modal .modal-body {
    padding: 1rem 0;
}
.register--modal--outer .followers-modal .modal-body h6 {
    color: #262626;
}
.custom-close {
    position: absolute;
    top: 1.35rem;
    right: 1.5rem;
    border: none;
    background: none;
}
.followers-modal .modal-footer {
    margin-top: 1.2rem;
}
.followers-modal .modal-title {
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    background: linear-gradient(90deg, #012360 0%, #009584 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.followers-modal .range-inner p {
    font-weight: 700;
    margin-bottom: 10px;
    color: #252626;
    font-size: 20px;
}
.follower-modal-outer {
    max-width: 730px;
}
.followers-modal .range-inner h4 {
    font-size: 30px;
    font-weight: 700;
    color: #252626;
}

.followers-modal .register-btn {
    border-radius: 0.825rem;
    padding: 0.8rem 2rem;
    font-size: 1.125rem;
}
/* legend (optional) */
.min-max-slider .legend {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-top: 36px;
    opacity: 0.5;
    padding: 0 4px;
}
.search-page .banner-content.title {
    color: #252626;
    font-weight: 700;
    text-transform: capitalize;
    font-family: "Segoe UI", sans-serif;
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.search-page .banner-content.title span {
    background: linear-gradient(90deg, #012360 0%, #009584 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.location-faq .faq-single__header {
    padding: 0;
}
.location-faq .faq-single__header .faq-single__title {
    font-size: 1.105rem;
    color: #252626;
}
.location-faq .faq-single__header::after {
    width: 1.9rem;
    height: 1.9rem;
    right: 0;
}
.location-faq .faq-wrapper {
    padding: 0;
}
.location-faq {
    margin-bottom: 1.523rem;
    padding-bottom: 0.975rem;
    border-bottom: 1px solid transparent;
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
}

/* Custom Select (Gradient Border) */
.custom-select-wrapper {
    position: relative;
}

.custom-select {
    border: 1px solid transparent;
    border-radius: 14px;
    background-clip: padding-box;
    background-color: #fff;
    padding: 16px 18px;
    font-size: 15px;
    height: 60px;
    background-image: linear-gradient(#fff, #fff),
        linear-gradient(90deg, #012360, #009584);
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: none;
}

.custom-select:focus {
    outline: none;
    box-shadow: none;
    border-color: transparent;
}
.location-select-outer {
    width: 100%;
    border-radius: 14px;
    color: #25262680;
    border-right: none;
    border: 1px solid transparent;
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
}
.location-select {
    padding: 0.2rem 0.5rem;
    width: 100%;
    border: none;
}
.location-faq .faq-single__content {
    padding: 1.83rem 0 0.855rem 0;
    background-color: none;
}
.location-faq .selected-country-tag {
    border: 1px solid transparent;
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 0.5rem 1.25rem;
    border-radius: 1.5rem;
    font-size: 1rem;
    color: #262626;
}
.location-faq .selected-country-tag .fas.fa-times {
    background: linear-gradient(90deg, #012360 0%, #009584 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.location-faq #cityListContainer {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    inset: inherit !important;
    top: 110% !important;
}
.location-faq #stateListContainer {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    inset: inherit !important;
    top: 110% !important;
}
.location-faq .selected-country-tag .country-name {
    font-size: 1rem;
    color: #262626;
}
.location-faq .selected-countries-container {
    margin-top: 0.9rem;
}
.location-select .dropdown-menu {
    transform: none !important;
    border: 1px solid #eee !important;
    top: 105% !important;
}
.location-select .platform-name {
    color: #25262680;
}
.modal-content-scroll {
    /* overflow-y: scroll; */
    max-height: 70vh;
    width: calc(83% - 40px);
    margin: 0 auto;
}
.how-it-works-step {
    display: flex;
    align-items: center;
    margin: 0 auto 5% auto;
}
.money-icon path {
    fill: url(#moneyGradient);
}
.background-modal {
    background: rgba(44, 46, 50, 0.6);
}
.how-it-works-img-holder {
    position: relative;
    background-color: #f5f5f5;
    padding: 0.7rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.9rem;
}
/* .how-it-works-img {
    width: 1.55rem;
} */
.how-it-works-txt {
    font-size: 1.125rem;
}
.influencer-section .section-header__title.service-head {
    font-size: 2rem;
}
.show-all-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2%;
}

/* Each image/video card */
.show-all-holder-3 .img,
.portfolio-content-holder {
    width: 32%;
    aspect-ratio: 3 / 4; /* maintains consistent ratio without fixed height */
    border-radius: 12px;
    object-fit: cover;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    margin-bottom: 2%;
}

/* ---------- Images & Videos ---------- */
.show-all-holder-3 .img img,
.portfolio-content-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* ---------- Play Button Overlay ---------- */
.play-btn-holder {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, transparent 0%, #0000009e 100%);
    border-radius: 50%;
    padding: 8px;
    cursor: pointer;
    z-index: 2;
    transition: opacity 0.3s ease;
}

/* optional hover effect */
.portfolio-content-holder:hover .play-btn-holder {
    opacity: 1;
}

/* play icon itself */
.play-btn {
    width: 2.25rem;
    height: 2.25rem;
    display: block;
}

/* ---------- Modal Styling ---------- */
#galleryModal .modal-content-scroll {
    overflow-y: auto;
    width: calc(100% - 40px);
    padding: 1rem 0;
}

/* hide default scrollbar */
::-webkit-scrollbar {
    width: 0;
    display: none;
}

/* remove max-width limit inside modal */
#galleryModal .follower-modal-outer {
    max-width: unset;
}
.share-row .share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
    color: white;
    padding: 16px;
    margin-left: 5px;
}
.share-row .input {
    width: 100%;
    border-radius: 8px;
    background-color: white;
    border: 1px solid rgba(191, 203, 218, 0.9);
    transition-duration: 0.3s;
}
.share-register .register-btn {
    width: 100%;
    margin: 0 auto 5% auto;
    padding: 1rem;
}
.share-register .register-btn:last-child {
    margin-bottom: 0;
}
.share-row {
    display: flex;
    margin: 0 auto 5% auto;
}
.share-row .share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)));
    color: #fff;
    border: none;
    color: white;
    padding: 16px;
    margin-left: 5px;
}
.faq-single.active .faq-single__content {
    background-color: unset;
}
.mobile-search {
    display: none;
}
.menu li.active {
    color: #fff;
    border-radius: 9px;
    background: linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)));
    padding: 0.1rem 0.3rem;
}
.menu li.active a {
    -webkit-text-fill-color: #fff;
}
.meassage-btn {
    margin-top: 1rem;
}
.meassage-btn .register-btn {
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
    border: 1px solid transparent;
    color: #017a80;
    transition: all 0.3s ease;
}
/* Space ONLY between slides */
.profile-testimonial-slider .slick-slide {
    margin: 0 0.2rem !important;
}

/* Remove outer spacing */
.profile-testimonial-slider .slick-list {
    margin: 0 -0.2rem !important;
}

/* Remove inner padding if any */
.profile-testimonial-slider .single-slide1 {
    padding: 0 !important;
}
.select-profile-data {
    position: relative;
}
.profile-drop select {
    border: 1px solid #e9e9e9;
    border-radius: 25px;
    appearance: none;
    padding: 1.2rem 2.8rem 1.2rem 1.2rem;
    font-weight: 700;
    color: #252626;
    font-size: 0.85rem;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    width: 100%;
}
.heart-icon {
    transition: transform 0.3s ease;
}

.heart-icon.active path {
    stroke:none;
    fill: red;
}
.heart-icon.animate {
    transform: scale(1.4);
}

.heart-icon.animate-back {
    transform: scale(1);
    transition: transform 0.3s ease;
}

.select-profile-data::after {
    content: "";
    position: absolute;
    right: 1.3rem;
    top: 1.5rem;
    transform: rotate(270deg);
    width: 0.6rem;
    height: 1rem;
    background-image: url("../../../../assets/images/frontend/feature/left-arrow.png");
    background-size: cover;
    pointer-events: none; /* don’t block clicks */
}
.share-profile-detail a:hover {
    color: #252626;
}
.profile-drop .form-control:focus {
    border: 1px solid #e9e9e9;
    box-shadow: none;
}
.meassage-btn .register-btn:hover {
    background: linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)));
    color: #fff;
    border-color: transparent;
    border: 1px solid navajowhite;
}
.profile-quick .quick-categories-outer {
    padding-left: 0;
}
.profile-fixed-outer {
    position: sticky;
    top: 11rem;
}

/* end */

/* place order */
.place-order-outer {
    display: flex;
    padding-top: 4rem;
    gap: 3rem;
}

.place-order-outer .place-order-left {
    width: 60%;
}
.place-order-outer .place-order-right {
    width: 40%;
}
.place-order-left h4 {
    color: #252626;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.place-order-left p {
    color: #252626;
    font-size: 1rem;
    margin-bottom: 1.825rem;
}
.place-order-profile {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.125rem;
}
.place-order-profile h6 {
    color: #252626;
    font-weight: 700;
    font-size: 1.125rem;
}
.profile-input-section {
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
    border: 1px solid transparent;
    border-radius: 14px;
    padding: 1rem 1.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.8rem;
}
.profile-input-place {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.place-text-area h6 {
    font-size: 1.2rem;
    color: #262626;
    margin-bottom: 1.2rem;
    font-weight: 600;
}
.place-text-area textarea {
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
    border: 1px solid transparent;
    border-radius: 14px;
    width: 100%;
    resize: none;
    padding: 0.8rem;
}
.profile-input-place span {
    font-size: 1.125rem;
    font-weight: 700;
    color: #afafaf;
}

.profile-input-section h5 {
    color: #252626;
    font-weight: 700;
    font-size: 1.5rem;
}
.place-checkout .package-holder {
    display: flex;
    align-items: center;
    padding-bottom: 3%;
    border-bottom: 1px solid #e4e4e4;
}
.place-checkout .package-title {
    font-weight: 700;
    font-size: 1.5rem;
}
.place-checkout .price-row strong {
    font-weight: 700;
}
.place-checkout .tooltip-fee {
    font-size: 1.125rem;
}
.place-checkout .price-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.125rem;
    margin-top: 3%;
}
.checkout-place-order .register-btn {
    width: 100%;
    margin-top: 1.6rem;
    border-radius: 14px;
}
.secure-stripe {
    margin-top: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
}
.secure-stripe span {
    font-size: 0.9rem;
    color: #000000;
    font-weight: 400;
}
.place-order-scroll {
    overflow-y: scroll;
    flex: 1;
    max-height: 402px;
}
.place-text-area {
    margin-top: 1rem;
}
.search-checkout-item-remove {
    position: absolute;
    top: 6px;
    right: 25px;
    color: #aaa;
    cursor: pointer;
    font-size: 60%;
}
.search-drop-item-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.search-drop-item-flex .search-checkout-item-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #252626;
}
input[type="range"] {
    pointer-events: none !important; /* disable track click */
}

input[type="range"]::-webkit-slider-thumb {
    pointer-events: auto !important; /* thumb is draggable */
    cursor: pointer;
}
.span-first-name {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: #fff;
    color: Teal;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50%;
}
.header-infuencer {
    display: flex;
    gap: 2.2rem;
    padding: 0.65rem 1rem;
}
.cart-btn-login {
    font-weight: 600;
    font-size: 1.125rem;
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
    border: 2px solid transparent;
    color: #252626;
    gap: 0.4rem;
    position: relative;
    padding: 1.3rem 2.26rem 0.8rem 2.26rem;
}
.cart-btn-login.register-btn:hover {
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
    border: 2px solid transparent;
    color: #252626;
}
.cart-notification-btn {
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    top: -13px;
    right: -6px;
    color: white;
    font-size: 0.6rem;
    font-weight: bold;
}
.notification {
    background-color: teal;
    position: absolute;
    border-radius: 50%;
}
.profile-platform-badge img {
    width: 1.25rem;
    height: 1.2rem;
}

.categories-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 12px;
}

.cate-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    background: linear-gradient(hsl(var(--white)), hsl(var(--white)))
            padding-box,
        linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
            border-box;
    border: 2px solid transparent;
    font-size: 16px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
    transition: 0.25s ease;
}

.cate-pill:hover {
    border-color: #00beb0;
    transform: translateY(-2px);
}

.cate-pill span {
    font-size: 20px;
    line-height: 1;
}
.profile-listing-badge-img {
    width: 0.83rem;
    margin-right: 3px;
}
.tooltip-data {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.tooltip-data .tooltip-txt {
    visibility: hidden;
    width: 230px;
    background-color: #fff;
    color: #000000;
    font-weight: 400;
    text-align: center;
    border-radius: 6px;
    padding: 0.35rem;
    position: absolute;
    z-index: 1;
    top: 20px;
    left: -115px;
    font-size: 0.6rem;
    box-shadow: rgba(120, 120, 170, 0.15) 0 2px 16px 0;
}
.tooltip-txt {
    left: 0 !important;
    width: 125px !important;
    top: 2.3rem !important;
}
.tooltip-data:hover .tooltip-txt {
    visibility: visible;
}
.platform-follower-blur {
    filter: blur(5px);
    pointer-events: none;
}
.position-cart {
    position: relative;
    height: auto;
    width: 1.5rem;
    cursor: pointer;
}
.search-checkout-cart-items .empty-cart {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.search-checkout-cart-items .empty-cart h4 {
    display: block;
    margin-top: 1rem;
    padding-bottom: 1rem;
    line-height: 1;
    font-size: 1.575rem;
    font-weight: 900;
    position: relative;
    color: hsl(var(--teal));
    background: linear-gradient(90deg, #012360 0%, #009584 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.search-checkout-cart-items .empty-cart p {
    font-size: 1rem;
    color: #252626;
    padding: 0 6%;
}
.info--profile--log li h4 {
    font-size: 1rem;
}
.info--profile--log li span {
    font-size: 1rem;
}
/* This wrapper is important */
.search-suggestion-wrap {
    position: relative;
    width: 100%;
}

/* Dropdown Box */
.search-suggestion-box {
    position: absolute;
    top: 4rem;
    left: 0;
    width: calc(100% - 0rem);
    max-height: 26.25rem;
    overflow-y: auto;
    background: #fff;
    border-radius: 14px;
    padding: 20px 25px;
    box-shadow: rgba(120, 120, 170, 0.3) 0 2px 10px 0;
    z-index: 9;
    display: none;
}
.custom-banner-select .input-group {
    flex-wrap: nowrap;
}
.suggestion--data--outer {
    width: 100%;
    position: relative;
}

/* Title */
.suggestion-title {
    font-weight: 600;
    font-size: 0.95rem;
    text-align: left;
    margin-bottom: 0.95rem;
}

/* Tag layout */
.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Individual tags */
.suggestion-tags button {
    padding: 8px 14px;
    border-radius: 8px;
    background: #f3f3f3;
    border: 1px solid #e5e5e5;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s ease;
}

.suggestion-tags button:hover {
    background: #e9e9e9;
}
.dashboard-widget-link {
    display: block;
    text-decoration: none;
    color: inherit; /* optional */
}
.order--table--data tr{
    margin-bottom: 1rem;
    border: 1px solid #c2c2c2;
}
.suggestion--data--outer{
        padding-right: 1rem;
     
    }

/* end */
/* end */

/* mobile media query */
@media (max-width: 1569px) {
    .profile-listing-img-holder .profile-listing-badge-title {
        font-size: 0.6rem;
    }
}
@media (max-width: 1400px) {
    .counter__item .inner {
        padding: 20px;
    }
    .search--dropdown--menu .custom-select-bootstrap {
        /* width: 9.575rem; */
        width: fit-content;
    }
    .search-reset-form .search--dropdown--menu {
        width: 100% !important;
        /* overflow-x: scroll; */
        padding: 2% 1% 1% 1%;
        margin: 0 auto;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        scrollbar-width: none;
    }
    .reset-class {
        padding: 0% 1% 1% 1%;
        margin-top: 0 !important;
    }
    .search-reset-form {
        gap: 0.5rem !important;
        flex-wrap: wrap;
    }
    .counter__item-icon {
        font-size: 36px;
        width: 36px;
    }
}
@media (max-width: 1374px) {
    .profile-right-section .profile-left-section {
        font-size: 0.9rem;
    }
    .how--it--work--outer h2 {
        font-size: 3rem;
    }
    .how--it--work--outer h4 {
        font-size: 2.2rem;
    }
    .listing-row .profile-listing-holder {
        width: 23.5%;
    }
    .nav-pills .nav-link {
        width: 7.1875rem;
    }
    .profile-subheader {
        top: 0rem;
        padding-top: 5rem;
    }
    .profile-subheader ul {
        gap: 2.5rem;
    }
    .profile-subheader ul li a {
        font-size: 1rem;
    }
    .search-checkout-added {
        min-height: 60%;
    }
    .quick-search-title {
        font-size: 0.8rem;
    }
    .profile-listing-title {
        font-size: 0.9rem;
    }
    .menu li a {
        font-size: 1.175rem;
    }
    .banner-content .title {
        font-size: 4.2rem;
    }
    .banner-content p {
        max-width: 52rem;
        font-size: 1.175rem;
    }
    .logo img {
        max-width: 11.875rem;
    }
    .profile-fixed-outer {
        top: 9rem;
    }
    /* .profile-right-section .img-content img {
        max-width: 8.2rem;
    } */
    .header-bottom {
        padding: 0.8rem 0;
    }
    .span-first-name {
        width: 1.8rem;
        height: 1.8rem;
    }
    .cart-notification-btn {
        width: 0.8rem;
        height: 0.8rem;
        top: -0.5rem;
        right: -0.2rem;
        font-size: 0.6rem;
    }
    .cart-btn-login {
        padding: 0.9rem 2.26rem 0.43rem 2.26rem;
        font-size: 1.1rem;
    }
    .profile-right-section h4 {
        margin-top: 0.6rem;
        font-size: 1rem;
    }
    .profile-right-section {
        padding: 1.5rem 1.6rem;
    }
    .profile-right-section .profile-drop {
        margin-top: 0.8rem;
    }
    .profile-drop select {
        padding: 0.6rem 1.1rem 0.6rem 1.1rem;
    }
    .profile--detail--outer {
        padding: 4.5rem 0;
    }
    .select-profile-data::after {
        width: 0.5rem;
        height: 0.8rem;
        right: 1.3rem;
        top: 0.9rem;
    }
    .respond-profile h5 {
        font-size: 1.3rem;
    }
    .profile-right-section .img-content img {
        max-width: 7rem;
        border-radius: 50%;
        height: 7rem;
    }
    .profile-right-section .register-btn {
        font-size: 0.8rem;
    }
    .meassage-btn .register-btn {
        font-size: 0.8rem;
    }
    .profile-right-section {
        padding: 1.2rem 1.4rem;
    }
    .profile-right-section .profile-listing-owner-name {
        font-size: 1.2rem;
    }
}
@media (max-width: 1290px) {
    /* .profile-subheader{
		top: 5.7rem;
	} */
}
@media (max-width: 1200px) {
    .quick-categories-outer {
        overflow-x: scroll;
        padding: 4% 1% 3% 1%;
        margin: 0 auto;
        justify-content: flex-start;
        gap: 12px;
        scrollbar-width: none;
    }
    .quick-search-item {
        min-width: fit-content;
    }
    .search-page .search--dropdown--menu {
        /* overflow-x: scroll;
	scrollbar-width: none; */
    }
    .banner-content .title {
        font-size: 2.252rem;
    }
    .search-reset-form {
        flex-wrap: wrap;
    }
    .search-reset-form .search--dropdown--menu {
        width: 100%;
    }
    .reset-class {
        width: 100%;
        margin: 0;
    }
    .tiktok-influencer .listing-row {
        flex-wrap: wrap;
        overflow-x: unset;
    }

    .tiktok-influencer .listing-row .profile-listing-holder {
        margin: 0;
        width: 32%;
    }
    .listing-row {
        overflow-x: scroll;
        margin-top: 4%;
        flex-wrap: nowrap;
        scrollbar-width: none;
    }
    .listing-row .profile-listing-holder {
        margin: 0 3% 0 0;
    }
}
@media (max-width: 1161px) {
    .banner-content .title {
        max-width: 650px;
        margin: 0 auto 0;
    }
    .banner-content {
        max-width: none;
    }
    .search-suggestion-box {
        padding: 1rem 0.7rem;
    }
    .header-bottom-area {
        padding: 0 1.875rem;
    }
}
@media (max-width: 1128px) {
    /* .profile-subheader {
        top: 5.2rem;
    } */
}
@media (max-width: 992px) {
    .search-form {
        max-width: 100%;
    }
    .place-order-outer {
        flex-wrap: wrap;
    }
    .place-order-outer .place-order-left {
        width: 100%;
    }
    .place-order-outer .place-order-right {
        width: 100%;
    }

    .search-checkout-item {
        padding-bottom: 1.3rem;
    }
    .search-checkout-item-holder {
        padding: 0rem 1.567rem 1.3rem 1.567rem;
    }
    .location-select.custom-select-bootstrap {
        width: 100%;
    }
    .quick-categories-outer {
        padding: 0% 1% 3% 1%;
    }
    .upfront-inner-outer .upfront-inner {
        width: 100%;
    }
    .show-all-holder-3 .img,
    .portfolio-content-holder {
        width: 48%;
        height: 45vw;
    }
    .tiktok-influencer .listing-row .profile-listing-holder {
        width: 48%;
    }
    .cate-outer {
        width: calc(100% / 5);
    }
    .categores-title .section-header .section-header__title {
        font-size: 2.2rem;
    }
    .testimonial-section .col-lg-3 {
        display: none;
    }
    .testimonial-section .col-lg-9 {
        width: 100%;
    }
    .custom-arrow.slick-prev {
        left: 0.5rem;
    }
    .custom-arrow.slick-next {
        right: 0.5rem;
        left: unset;
    }
    .custom-arrow {
        top: 30%;
    }
    /* .mobile-login--head{
display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    align-items: center;	
} */
    .mobile-login--head a {
        margin-top: 0 !important;
    }
    .profile--inner--section {
        flex-wrap: wrap;
    }
    .profile-right-section-outer {
        width: 100%;
    }
    .profile-left-section-inner {
        width: 100%;
    }
    .profile-subheader ul {
        gap: 2rem;
    }
    /* .profile-subheader{
	top: 5rem;
} */
    .profile--detail--outer {
        padding: 85px 0 30px;
    }
}

@media (max-width: 768px) {
       #ethnicityList{
        inset: 40px 0px auto 3px !important;
    }
    #contentTypeList{
        inset: 40px 0px auto 3px !important
    }
 

    .search--dropdown--menu .custom-select-bootstrap .dropdown-menu {
        inset: 0px 0px auto auto !important;
        top: 123% !important;
    }

    .influencer-section .container-fluid {
        padding: 0 2.4375rem;
    }
    .age-bars {
        height: 200px;
        gap: 8px;
    }
    .modal-content-scroll {
        width: 100%;
    }
    .sidebar-footer {
        padding-bottom: 6rem;
    }
    .sidebar-cart-close > img {
        padding: 0;
    }
    .how--it--work--outer h4 {
        font-size: 1.4rem;
    }
    .how--it--work--outer h2 {
        font-size: 2rem;
    }

    .age-percentage {
        font-size: 1.125rem;
        margin-bottom: 8px;
    }

    .age-label {
        font-size: 1.125rem;
        margin-top: 8px;
    }

    .age-bar-wrapper {
        border-radius: 6px;
    }

    .age-bar {
        border-radius: 6px;
    }

    .footer-align {
        padding: 0px 24px;
    }
    .custom-select-bootstrap #platformSelect.btn {
        padding-left: 0 !important;
    }
    .search-page .custom-select-bootstrap .btn {
        padding-left: 1rem !important;
    }
    .custom-banner-select .custom-select-bootstrap .dropdown-menu {
        top: 123% !important;
    }
    .mobile-nav-holder {
        display: flex;
    }
    .mobile-nav-holder .header-trigger{
        margin-top: 0   ;
    }
    .footer {
        padding: 30px 0 100px 0;
    }
    .cate-outer {
        width: calc(100% / 2.5);
    }
    .search-form .dropdown-menu-end[data-bs-popper] {
        left: 0;
    }

    #desktopFooter {
        display: block !important;
    }
    .footer-align {
        flex-wrap: wrap;
        justify-content: center !important;
    }
    .platform-name {
        display: none;
    }

    /* Only default "Any" text should show on mobile */
    .platform-name-default {
        display: inline !important;
    }
    .custom-select-bootstrap {
        width: 64px;
    }

    .banner-section {
        padding: 140px 0 12px;
    }
    .search-page-drop .platform-name {
        display: block !important;
    }
    .container {
        max-width: 716px;
    }
    .tiktok-influencer .listing-row .profile-listing-holder {
        width: 48%;
    }
    .location-select-outer {
    }
    .follower-modal-outer {
        max-width: 546px;
        width: 100% !important;
    }
    .profile--inner--section {
        flex-direction: column-reverse;
    }
    .profile-subheader {
        display: none;
    }
    .profile--detail--outer {
        padding: 40px 0 30px;
    }
    .hr-line {
        margin: 0.9rem 0;
    }
    .gender-chart-wrapper {
        justify-content: center;
    }
    .profile-left-section-inner {
        padding-bottom: 2rem;
    }
    .profile-right-section > p {
        margin-top: 1.2rem;
        margin-bottom: 1rem;
    }
    .profile--inner--section {
        gap: 1rem;
    }
    .respond-details p:last-child {
        margin-bottom: 1rem;
    }
    .profile-right-section h4 {
        margin-top: 1rem;
    }
    .profile-right-section {
        padding: 15px 20px 24px 20px;
    }
}
@media (max-width: 767px) {
    .mobile-search {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .mobile-search svg {
        width: 2rem;
        height: 2rem;
    }
    .influencer-profile-wrapper .info li{
        border-right:none;
        padding-right: 0;
    }
    /* .custom-banner-select .input-group .register-btn{
	display: none;
} */
    .header-bottom-area {
        padding: 0;
    }
    .audience-graph {
        flex-wrap: wrap;
        gap: 0;
    }
    .audience-gender-section {
        margin-top: 1rem;
    }
    .audience-age-section h6 {
        margin-left: 0;
    }
    .audience-location-section {
        width: 100%;
    }
    .audience-age-section {
        width: 100%;
    }

    .search-reset-form {
        flex-wrap: wrap;
    }
    .reset-class {
        margin-top: 0;
    }

    .footer-align {
        flex-direction: column;
    }

    .global-outer > div {
        flex-wrap: wrap;
        justify-content: center;
    }
    .global-outer .choose-item {
        width: 50%;
    }
    .influencer--layout {
        flex-wrap: wrap;
        justify-content: center;
    }
    .influencer--inner {
        width: 47%;
    }
}
@media (max-width: 692px) {
    .profile-subheader ul {
        gap: 1.5rem;
    }
    .profile-subheader ul li a {
        font-size: 1rem;
    }
}
@media (max-width: 680px) {
    .cart-btn-login {
        border: none;
        background: none;
    }

    .header-infuencer.register-btn {
        padding: 0.275rem 0.275rem;
    }
    .header-infuencer .d-svg {
        display: none;
    }
    .cart-btn-login .d-none-mobile {
        display: none;
    }
    .header-infuencer {
        gap: 1rem;
        padding: 0.5rem 1.45rem;
    }
    .span-first-name {
        width: 1.7rem;
        height: 1.7rem;
    }

    .tiktok-influencer .listing-row .profile-listing-holder {
        width: 100%;
    }
    .quick-categories-outer {
        padding: 2% 1% 3% 1%;
    }
}
@media (max-width: 576px) {
    .sidebar-cart{
        padding-bottom: 4rem;
    }
    .profile-testimonial-slider .single-slide1 {
        padding: 0;
    }
    .profile-drop .register-btn {
        padding: 0.975rem 0.85rem;
    }
    .search-checkout-added {
        min-height: 50%;
    }

    .follower-modal-outer {
        max-width: 100%;
        margin: 0;
        padding: 0 1rem;
        width: 100% !important;
    }
    .followers-modal .range-inner h4 {
        font-size: 1rem;
    }
    .followers-modal .range-inner p {
        font-size: 1rem;
    }
    .custom-banner-select .input-group .register-btn {
        font-size: 0.8rem;
        padding: 0.575rem 0.85rem;
    }
    .register-btn {
        padding: 0.575rem 0.85rem;
        line-height: 1;
        font-size: 0.9rem;
    }
    .search-page .custom-select-bootstrap .btn {
        padding-left: 0.7rem !important;
    }
    .service-inner-row .profile-listing-img-holder {
        height: 14.75rem;
    }
    .upfront-cost-outer {
        padding-top: 1.8rem;
    }
    .track-outer-section {
        padding-top: 1.5rem;
        padding-bottom: 2.5rem;
    }
    .track-banner {
        margin-top: 1.2rem;
    }
    .search-suggestion-box{
        max-height: 12.25rem;
    }
    #clearSearch{
           right: 0.6rem!important;
    top: 50%!important;
    }
    .suggestion--data--outer{
        padding-right: 2rem;
     
    }
}
@media (max-width: 575px) {
    .search-suggestion-box{
        top: 3rem;
    }
    .categories-diffrent {
        justify-content: space-between !important;
    }
    .categories-wrapper {
        justify-content: start;
    }
    .categories-diffrent .category-item {
        justify-content: space-between;
        width: 100%;
    }
    .cate-pill {
        width: 11rem;
        padding: 8px 18px;
    }
    .header-infuencer {
        gap: 1rem;
        padding: 0.5rem 1.45rem;
    }
    .span-first-name {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.8rem;
    }
    .categoreies-btn .register-btn {
        padding: 0.8rem 1.5rem;
    }
    .categoreies-btn .register-btn {
        padding: 1rem 2rem;
    }
    .categories-diffrent .category-item {
        align-items: baseline;
        /* justify-content: start;
	padding: 0.4rem 1rem; */
    }
    .text-center.categoreies-btn .register-btn.mt-5 {
        margin-top: 2rem !important;
    }

    .categoreies-btn .register-btn.mt-5 {
        margin-top: 2rem;
    }
    .faq-outer {
        padding-top: 30px !important;
    }
    .custom-arrow {
        padding: 20px 20px;
    }

    .profile-subheader ul {
        gap: 1rem;
    }
    .search-form {
        max-width: 100%;
    }
    .menu li a {
        font-size: 1.1rem;
    }
    .show-all-holder-3 .img,
    .portfolio-content-holder {
        width: 100%;
        height: 60vw;
    }
    .container {
        max-width: 504px;
    }
    .tiktok-influencer .listing-row .profile-listing-holder {
        width: 100%;
    }
    .influencer-section .container-fluid {
        padding: 0 1.4375rem;
    }
    .profile--testimonial--detail {
        flex-wrap: wrap;
    }
    .share-profile-detail {
        margin-top: 1rem;
    }
    .profile-quick .quick-categories-outer {
        padding: 0px 0px;
    }
    .counter-section h3 {
        font-size: 1.2rem;
    }
    .counter-section p {
        font-size: 1rem;
    }
    .counter-section {
        gap: 2.5rem;
    }
    .banner-content .title {
        font-size: 1.652rem;
    }
    .banner-content p {
        font-size: 1rem;
    }
    .influencer-section .section-header__title {
        font-size: 1.4rem;
    }
    .section-subtitle p {
        font-size: 1rem;
    }
    .view-all {
        font-size: 1.1rem;
        margin-right: 0;
    }
    .profile-listing-price {
        font-size: 1rem;
    }
    .profile-listing-title {
        font-size: 0.8rem;
    }
    .profile-listing-category {
        font-size: 1rem;
    }
    .categores-title .section-header .section-header__title {
        font-size: 1.4rem;
    }
    .section-header p {
        font-size: 1rem;
    }
    .pb-80 {
        padding-top: clamp(30px, 6vw, 50px);
    }
    .category-item .fs--12px {
        font-size: 0.8rem;
    }
    .categories-diffrent .category-item .category-thumb {
        width: 20px;
    }
    .categores-title .section-header {
        margin: 0 auto 1rem;
    }
    .influencer--inner {
        padding: 1.75rem 1.325rem;
        width: 100%;
    }
    .faq-single__title {
        font-size: 1.125rem;
    }

    .followers-modal .modal-title {
        font-size: 1.3rem;
    }
    .how-it-works-txt {
        font-size: 1rem;
    }
    .custom-close {
        top: 1.1rem;
        right: 0rem;
    }
    .place-order-left h4 {
        font-size: 1.4rem;
    }
    .profile-input-section h5 {
        font-size: 0.9rem;
    }
    .profile-input-place span {
        font-size: 1rem;
    }
    .checkout-place-order .register-btn {
        padding: 1.1rem 2rem;
    }
    .place-checkout .package-title {
        font-weight: 700;
        font-size: 1.2rem;
    }
    .location-faq.faq-outer {
        padding-top: 1rem !important;
    }
    .followers-modal {
        padding: 1rem;
    }
    .share-row .share-btn {
        padding: 0.5rem;
        margin-left: 5px;
        font-size: 0.8rem !important;
    }
    .nav-pills .nav-link {
        width: 100%;
    }
    .influencer-section .search-page {
        padding-top: 70px;
    }

    .how--it--work--outer {
        padding-bottom: 0.89rem;
    }
    .upfront-inner p {
        font-size: 1rem;
    }
    .upfront-inner h6 {
        font-size: 1.5rem;
    }
    .upfront-inner-outer .upfront-inner {
        padding: 2rem 2rem;
    }
    .profile-ul-tabs {
        gap: 0.5rem;
    }
    .price {
        font-size: 1.2rem;
    }
    .package-option strong {
        font-size: 1.2rem;
    }
    .profile-right-section {
        padding: 22px 22px 22px 22px;
    }
    .audience-gender-section {
        width: 100%;
    }

    .sidebar-cart {
        width: 100%;
    }
    .custom-arrow {
        top: 50%;
    }

    .faq-single__content p {
        font-size: 1rem;
    }
    .faq-outer .section-header__title {
        font-size: 2rem;
    }
    .banner-section {
        padding: 110px 0 12px;
    }
    .sidebar-cart-close > img {
        padding: 0;
    }
    .package-option label {
        gap: 0.5rem;
        margin-bottom: 0.5rem;
        flex-wrap: wrap;
    }
    .package-option {
        padding: 0;
    }
    .package-desc {
        margin-left: 0;
    }

    .search--dropdown--menu .custom-select-bootstrap {
        width: 6.165rem;
    }
    .search-reset-form .search--dropdown--menu {
        gap: 0.5rem;
    }
    .search-page-drop .platform-name {
        font-size: 0.7rem;
    }
    .custom-select-bootstrap .dropdown-toggle::after {
        right: 0.6rem;
        border-width: 0 2px 2px 0;
        padding: 2px;
        margin-left: 12px;
    }
    .custom-banner-select .custom-select-bootstrap .btn {
        height: 30px;
        padding-left: 0 !important;
    }

    .custom-banner-select .form--control {
        height: 30px;
    }
    .input-group input::placeholder {
        font-size: 0.8rem;
    }
    .search-page .banner-content.title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .influencer-section .section-header__title.service-head {
        font-size: 1.8rem;
    }
    .account-section.min-vh-100 {
        display: block !important;
        padding-top: 2rem;
        min-height: auto !important;
    }
    .custom-checkbox {
        width: 1.2rem;
        height: 1.2rem;
    }
    .search--dropdown--menu .custom-select-bootstrap .dropdown-item {
        font-size: 0.7rem;
    }
    .custom-select-bootstrap .btn {
        font-size: 0.7rem;
    }
    .dropdown-item {
        font-size: 0.7rem;
    }
}
@media (max-width: 500px) {
    .profile--share-icon {
        gap: 1rem;
    }

    .logo img {
        max-width: 10.875rem;
    }
    .listing-row .profile-listing-holder {
        width: 100%;
    }
    .influencer--inner {
        width: 100%;
    }
    .global-outer .choose-item {
        width: 100%;
    }
    .gender-chart-wrapper {
        flex-wrap: wrap;
    }
}
@media (max-width: 430px) {
    .logo img {
        max-width: 9.375rem;
    }
}
@media (max-width: 400px) {
    .suggestion-tags {
        gap: 0.4rem;
    }
    .suggestion-tags button {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }
    .sidebar-footer {
        padding: 0rem 1rem;
    }
    .search-checkout-cart-number-holder {
        padding: 0.5rem 1rem;
    }
    .sidebar-cart-header {
        padding: 1.167rem 1.567rem;
    }
    .sidebar-footer .checkout--btn {
        background: linear-gradient(
                    90deg,
                    hsl(var(--dark-blue)),
                    hsl(var(--teal))
                )
                padding-box,
            linear-gradient(90deg, hsl(var(--dark-blue)), hsl(var(--teal)))
                border-box !important;
        border: 1.5px solid transparent !important;
    }
    .sidebar-footer .register-btn {
        padding: 1.1rem;
    }
    .search-checkout-item {
        padding-bottom: 1.2rem;
    }
    .search-drop-item-flex .search-checkout-item-price {
        font-size: 1rem;
    }
    .search-checkout-item-holder {
        padding: 0rem 1.567rem 1.2rem 1.567rem;
    }
    .search-checkout-item-img {
        min-width: 3rem;
        width: 3rem;
        height: 3rem;
    }
    .profile--testimonial--detail
        .profile-img-content
        .profile-listing-owner-name {
        font-size: 1.225rem;
    }
    .package-option .img-pack {
        gap: 0.2rem;
    }
    .cate-pill {
        width: 10.2rem;
    }
    .search-page .custom-select-bootstrap .btn {
        padding-left: 0.6rem !important;
    }
    /* .header-trigger-wrapper .register-btn{
		font-size: 14px;
		    padding: 14px 7px;
	} */
    .profile--testimonial--detail .profile-left-section {
        font-size: 0.8rem;
    }
    .share-profile-detail {
        gap: 1.5rem;
    }
    .profile-testimonial .custom-arrow {
        padding: 1rem;
    }
    .profile-right-section .img-content img {
        max-width: 7rem;
    }
}
@media (max-width: 380px) {
.logo img {
        max-width: 8.375rem;
    }
}
@media (max-width: 361px) {
    .cate-pill {
        width: 10.1rem;
    }
}

/* end */
