:root {
    --bg-color: #6DD8E4;
    --bg-color-2: #E7F4F5;
    --bg-color-3: #ECF5F6;
    --text-color-black: #14161F;
    --text-color-2: #6B7280;
    --text-color-3: #3BC1D0;
    --border-color: #C4C4C4;
}

.password_section {
    position: relative;
}

.password_section button {
    background: transparent;
    border: none;
    color: var(--headings-color);
    position: absolute;
    right: 10px;
    top: 48px;
}

.hidePassword {
    display: none;
}

.btn-spinner {
    /* margin: 100px auto; */
    /* width: 50px; */
    height: 30px;
    text-align: center;
    font-size: 10px;
    display: flex;
    gap: 5px;
    justify-content: center;
}

.btn-spinner>div {
    background-color: #fff;
    height: 100%;
    width: 3px;
    display: inline-block;

    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.btn-spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.btn-spinner .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.btn-spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.btn-spinner .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {

    0%,
    40%,
    100% {
        -webkit-transform: scaleY(0.4)
    }

    20% {
        -webkit-transform: scaleY(1.0)
    }
}

@keyframes sk-stretchdelay {

    0%,
    40%,
    100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}

.spinnerButton,
.modalSpinnerButton {
    display: none;
}

.campaign-hr-image {
    width: 50px;
    border-radius: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 15px;
}

.campaign-hr-btn {
    justify-content: space-between
}

.campaign-hr-btn a {
    padding: 5px 7px !important;
}

.campaign-hr-list p {
    font-size: 15px;
}

.campaign-details {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em;
    max-height: 3em;
}

.border-left-campaign {
    border-left: 1px solid #f4f4f4;
}

.btn-link {
    color: var(--bg-color);
    background-color: transparent;
    border: none;
    font-size: 15px;
    text-decoration: none;
}

.listing-thumbIn-slider:before {
    z-index: unset;
}

.user_setting .dropdown-menu.show {
    padding: 10px 16px;
}

.user_setting .dropdown-menu .dropdown-item {
    padding: 7.5px 20px;
}

.creator-contact-btn .dropdown-menu {
    width: 100%;
    padding: 0px;
}

.creator-contact-btn .dropdown-menu li a.first-item {
    font-size: 18px;
    cursor: default;
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: 600;
}

.creator-contact-btn .dropdown-menu li a.first-item:hover {
    background-color: white;
}

.creator-contact-btn .dropdown-menu li button.action-item,
.creator-contact-btn .dropdown-menu li a.action-item {
    padding: 14px 14px;
    font-size: 16px;
    font-weight: 600;
}

.dropdown-toggle::after {
    display: none;
}

.creator-contact-btn .ud-btn i {
    transform: none;
}

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

.wire-attachments {
    padding: 14px 20px;
}

.loadersmall {
    border: 3px solid #f3f3f3;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    border-top: 3px solid #555;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: block;
    margin: auto;
}


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

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

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

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

.preloader2 {
    background-color: #eaeaea;
    height: 100%;
    left: 0px;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 99999;
    opacity: 0.5;
    background-size: 100px 100px;
    display: none;
}

.select2-container--default .select2-selection--multiple,
.select2-container--default .select2-selection--single {
    border: 1px solid #E9E9E9 !important;
    border-radius: 8px !important;
    line-height: 1.5 !important;
    height: 45px !important;
    padding: 8px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 2 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    line-height: 1 !important;
}

.select2-selection ul li.select2-selection__choice {
    line-height: 1.8 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__arrow,
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 55px !important;
    right: 15px !important;
}

.select2-container--default .select2-results__option {
    color: #6B7280 !important;
    font-size: 14px;
    padding: 8px;
    border-radius: 8px;
    margin-top: 2px;
}

.custom-category-class .select2-results__option {
    padding: 0px !important;
}

.custom-category-class .select2-results__option label {
    padding: 0px 8px 0px 35px !important;
    line-height: 1.5;
}

.custom-category-class .custom_checkbox .checkmark {
    top: 0;
    left: 8px;
    bottom: 0;
    margin: auto;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #E7F4F5 !important;
    color: #6B7280 !important;
    font-size: 14px;
    padding: 8px;
    border-radius: 8px;
}

.select2-container .select2-dropdown--below {
    box-shadow: 0px 1px 2px 0px #0000000D;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 10px 16px;
    margin-top: 6px;
    border-top: 1px solid #E5E7EB !important;
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background: #E7F4F5 !important;
    color: #3BC1D0;
    border-color: #E7F4F5 !important;
    margin-top: 0px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    float: right;
    margin-left: 7px;
}

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

.select2-dropdown.select2-dropdown--below {
    border-color: #e9e9e9 !important;
}

.select2-container--default .select2-search--inline .select2-search__field {
    color: #6B7280;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #E5E7EB !important;
    border-radius: 8px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    background: url(/images/arrow_down.png) no-repeat right center;
    background-size: 12px;
    top: -3px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

#mega-menu .menu li a.dropdown:after {
    content: '';
}

.service-single-img {
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
}

.payment_method_info {
    display: flex;
    gap: 10px;
}

.profile_icon {
    width: 39px;
    height: 39px;
    display: flex;
    border-radius: 50px;
    background: #F3F4F6;
    color: #3B82F6;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.user_setting .dropdown-menu .dropdown-item {
    padding: 7.5px 15px;
    font-size: 13px;
}

.user_setting .dropdown-menu.show {
    padding: 15px 15px;
}

.user_setting .dropdown-menu .dropdown-item.active,
.user_setting .dropdown-menu .dropdown-item.active span,
.user_setting .dropdown-menu .dropdown-item:hover,
.user_setting .dropdown-menu .dropdown-item:hover span {
    background-color: #6dd8e4;
}

.side-box-shadow {
    box-shadow: 3px 2px 4px -2px #0000001F;
}

.border-10-radius {
    border-radius: 10px;
}

.list-filter .card {
    border: 0px;
    background-color: #fff;
    padding: 15px;
}

.list-filter .card-header {
    background-color: transparent;
    border-bottom: 0px;
    padding: 0px;
    justify-content: space-between;
}

.list-filter .card-header h4 {
    font-size: 20px;
    color: #333333;
}

.list-filter .card-body label {
    color: #374151;
    font-size: 14px;
}

input.amount,
input.amount2,
input.amount3,
input.amount4 {
    width: 100px;
}

.range-wrapper input:focus-visible {
    border: 1px solid #E9E9E9;
}

.form-control {
    color: #6B7280;
    border: 1px solid #E5E7EB;
}

.campaign-header-title {
    font-size: 22px;
    font-weight: 500;
}

.listing-title {
    color: #333333;
    font-size: 18px;
    font-weight: 600;
}

.list-content .list-title {
    color: #333333;
    font-size: 16px;
    margin-bottom: 0px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    display: block;
}

.list-content {
    padding: 10px !important;
}

.listing-style1 {
    padding: 8px;
    box-shadow: 2px 3px 20px -2px #00000026;
    border: none;
    border-radius: 10px;
}

.list-content .list-text {
    font-size: 12px;
    color: #6B7280;
}

.campaign-title {
    display: flex;
    justify-content: space-between;
}

.campaign-list-content .review-meta p,
.campaign-list-color {
    color: #616161;
    font-size: 14px;
}

.gap-10 {
    gap: 10px;
}

.details-section .card {
    border-radius: 15px;
    box-shadow: 2px 2px 10px 0px #0000001A;
    border: none;
}

.campaign-details-title {
    color: #333333;
    font: 10px;
    font-weight: 600;
}

.posted-title {
    font-size: 16px;
    color: #616161;
}

.inner-card {
    border: 1px solid #E7E7E7;
    padding: 40px 20px 40px 20px;
    gap: 50px;
    border-radius: 20px;
    opacity: 0px;
}

.about-buyer {
    background-color: #F9FAFB !important;
    border: none !important;
    border: 1px solid #E8E8E8;
}

.about-buyer h4 {
    color: #333333;
    font-size: 20px;
}

.about-buyer .about-info-text {
    font-size: 16px;
    color: #333333;
}

.about-buyer .about-info-desc {
    font-size: 14px;
    color: #616161;
}

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

.font-weight-bold {
    font-weight: bold;
}

.price_symbol {
    position: absolute;
    right: 15px;
    top: 46px;
}

.form-control {
    height: 48px;
}

.employer-box {
    border-radius: 10px;
}

.employer-box-shadow {
    box-shadow: 2px 3px 20px -2px #00000026;
}

.employer-box .details p {
    color: #616161;
    font-size: 14px;
}

.list-filter .search_area label {
    top: 8px;
}

.details-section p.list-inline-item {
    color: #616161;
    font-size: 14px;
}

.cursor-pointer {
    cursor: pointer;
}

.details-section .freelancer-single-style img {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.brand-campaign .campaign-category {
    color: #6B7280;
    font-size: 12px;
}

.brand-campaign .details h5 {
    font-size: 16px;
    color: #333333;
    font-weight: 600;
}

.brand-campaign .campaign-attr {
    font-size: 14px;
    color: #616161;
}

.brand-campaign {
    padding: 25px;
    border-radius: 10px;
}

.brand-campaign .campaign-hr-btn {
    gap: 20px;
}

.brand-campaign .campaign-hr-btn a {
    width: 100%;
}

.login-title {
    font-size: 26px;
    font-weight: bold;
}

.sub-title {
    color: #6B7280;
    font-size: 14px;
}

.sc-login {
    border: 1px solid #D0D0D0;
    padding: 15px;
    border-radius: 8px;
    color: #374151;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.login-with-username {
    position: relative;
    font-size: 16px;
    color: #6B7280;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    text-align: center;
    width: 100%;
}

.login-with-username::before,
.login-with-username::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 25%;
    height: 0.5px;
    background-color: #c4c4c4;
}

.login-with-username::before {
    left: 0;
    transform: translateY(-50%);
}

.login-with-username::after {
    right: 0;
    transform: translateY(-50%);
}

.login-placeholder-img {
    position: absolute;
    left: 10px;
    top: 17px;
}

.login-input {
    padding-left: 40px;
    border-radius: 12px;
    background-color: #fff;
    height: 60px;
}

.login-password-img {
    position: absolute;
    right: 10px;
    top: 17px;
}

.custom_checkbox .checkmark {
    border-color: #C4C4C4;
}

.custom_checkbox {
    color: #6B7280;
}

.login-info .btn-thm {
    /* padding: 14px 20px 14px 20px; */
    border-radius: 12px;
}

.signup-message {
    font-size: 18px;
}

.signup-message span {
    color: #949494;
}

.choose-username {
    font-size: 18px;
    color: #374151;
}

/* Hide the radio button */
.account-type-label .form-check-input {
    display: none;
}

.account-type-label {
    border-radius: 12px;
    width: 100%;
    text-align: center;
    height: 100%;
}

/* Apply border when the radio is not checked */
.log-reg-form {
    height: 100%;
}
.account-type-label .form-check-input:not(:checked)+.log-reg-form {
    border: 1px solid #E5E7EB;
}

/* Optional: Border style when checked */
.account-type-label .form-check-input:checked+.log-reg-form {
    border: 1px solid #6DD9E5;
    box-shadow: 0px 6px 24px 0px #6DD9E526;
}

.account-type-label .form-check-input:checked+.log-reg-form h5,
.account-type-label .form-check-input:checked+.log-reg-form svg {
    color: #6DD9E5;
    /* Customize checked label color */
}

.account-type-label .form-check-input:checked+.log-reg-form img {
    filter: invert(100%) sepia(5%) saturate(2400%) hue-rotate(140deg) brightness(100%) contrast(89%);
}

.bg-left {
    position: absolute;
    left: 0;
    height: 100%;
    z-index: -1;
}

.bg-top-left {
    position: absolute;
    top: 0;
    z-index: -1;
}

.bg-right {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.bg-bottom-right {
    position: absolute;
    right: 0;
    z-index: -1;
}

.bg-bottom-right-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.welcome-trusted-text .text-content {
    font-size: 18px;
    color: #374151;
    font-weight: 600;
}

.welcome-large-title {
    font-family: Bai Jamjuree;
    font-size: 56px;
    font-weight: 700;
    color: #14161F;
}

.welcome-large-title-2 {
    font-family: Bai Jamjuree !important;
    font-size: 46px;
    font-weight: 700;
}

.welcome-content-text {
    font-size: 18px;
    font-weight: 500;
}

.welcome-grow-content .iconbox-style1 {
    box-shadow: 0px 8px 54px 0px #0000000D;
    border-radius: 20px;
    text-align: center;
    padding: 10px !important;
}

.welcome-grow-content .details .title {
    font-size: 18px;
    font-weight: 600;
}

.welcome-grow-content .details .text {
    font-size: 15px;
    color: #6B7280;
}

.item-card .listing-style1 {
    box-shadow: 4px 4px 34px 0px #0000000F;
    border-radius: 20px;
    padding: 15px;
    margin: 0px;
}

.item-card .listing-style1 .list-thumb img {
    border-radius: 20px;
    /* height: 200px; */
    height: 260px;
    object-fit: contain
}

.item-card .service-basic-info {
    margin-top: 8px;
    padding-bottom: 15px;
    border-bottom: 1px solid #F0F0F0;
}

.item-card .service-name a,
.item-card .service-followers h6 {
    color: var(--text-color-black);
    font-size: 18px;
    font-weight: 600;
}

.service-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    display: block;
}

.item-card .service-name p,
.item-card .service-followers p {
    color: var(--text-color-2);
    font-size: 12px;
    font-weight: 600;
}

.item-card .card-middle {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

.item-card .card-middle .category {
    background-color: var(--bg-color-2);
    border-radius: 8px;
    font-size: 12px;
    padding: 5px;
    color: var(--text-color-3);
    font-weight: 600;
}

.category-tag {
    background-color: var(--bg-color-2);
    border-radius: 8px;
    font-size: 12px;
    padding: 5px;
    color: var(--text-color-3);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 6px;
}

.item-card .card-price {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

.item-card .card-price .price-title {
    color: var(--text-color-2);
    font-size: 14px;
    font-weight: 600;
}

.item-card .card-price .price-main {
    color: var(--text-color-black);
    font-size: 20px;
    font-weight: 600;
}

.ud-btn-hover:hover {
    background-color: '';
}

.all_creators {
    background-color: var(--bg-color);
    border-radius: 20px;
    padding: 70px 30px 25px 30px;
    height: 100%;
}

.all_creators .show_all_img {
    margin-bottom: 20px;
}

.all_creators .show_all {
    font-size: 30px;
    color: #FFFFFF;
    margin: 0;
    font-weight: 600;
}

.all_creators .img-1 {
    position: absolute;
}

.all_creators .img-2 {
    float: right;
    margin-top: 54px;
}

.all-btn {
    border: 1px solid #C4C4C4;
    border-radius: 12px;
    padding: 16px 26px;
    color: var(--text-color-black);
    font-size: 18px;
    font-weight: 600;
}

.home-category {
    border: 1px solid var(--border-color);
    border-radius: 15px;
    display: flex;
    gap: 20px;
    padding: 10px;
    align-items: center;
}

.home-category-content p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color-black);
}

.client-quotes {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.quote-content {
    font-size: 20px;
    color: var(--text-color-2);
}

.quote-by-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color-black);
}

.quote-by-position {
    color: var(--text-color-2);
    font-size: 12px;
    font-weight: 500;
}

.home-quotes .item .testimonial-style1 {
    box-shadow: 0px 0px 34px 0px #0000001A;
    border-radius: 12px;
}

.quotes-slider .owl-nav {
    position: absolute;
    top: 35%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.quotes-slider .owl-nav .owl-prev {
    position: absolute;
    left: -30%;
    border-radius: 6px;
    background-color: #F8FAFF;
    border: 1px solid #C4C4C4;
}

.quotes-slider .owl-nav .owl-prev div {
    border-radius: 6px;
    background-color: #F8FAFF;
    border: 1px solid #C4C4C4;
    padding: 7px 13px;
}

.quotes-slider .owl-nav .owl-next {
    position: absolute;
    right: -30%;
    padding: 13px;
    border-radius: 6px;
    background: var(--bg-color) !important;
}

.quotes-slider .owl-nav i {
    font-size: 24px;
    /* Icon size */
    color: #333;
    /* Icon color */
}

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

.welcome-p-text {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0px 160px;
    text-align: center;
}

.find-work-btn {
    padding: 10px 18px;
    border-radius: 6px;
    background-color: white;
    color: var(--text-color-black);
    font-size: 14px;
    font-weight: 600;
}

.find-creator-btn {
    padding: 10px 18px;
    border: 1px solid #FFFFFF;
    border-radius: 6px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
}

.find-creator-btn:hover {
    color: #FFFFFF;
}

.subscribe-newsletter {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color-black);
}

.subscribe-newsletter div {
    border: 1px solid #F1F3F7;
    border-radius: 8px;
    box-shadow: 0px 1px 4px 0px #19213D14;

    padding: 6px 7px;
    width: 100%;
    justify-content: space-between;
    background-color: white;
}

.subscribe-newsletter .user-type {
    border: 1px solid #F1F3F7;
    border-radius: 8px;
    box-shadow: 0px 1px 4px 0px #19213D14;
    display: flex;
    padding: 6px 7px;
    width: 100%;
    justify-content: space-between;
    background-color: white;
    margin-top: 10px;
}

.subscribe-newsletter .user-type label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
}

.subscribe-newsletter .newsletter-input {
    width: 100%;
    border: none;
    font-size: 14px;
    color: #6D758F;
}

.subscribe-newsletter button {
    padding: 5px 12px;
    border-radius: 4px;
    background: var(--bg-color);
    color: white;
    border: none;
    font-size: 12px;
    font-weight: 600;
}

.customRadio {
    accent-color: var(--bg-color);
    width: 20px;
    height: 20px;
}

.footer-cat-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color-black);
}

.home-banner-section {


    text-align: center;

}

.home-banner {
    padding: 150px 10px;
    background: url("/images/front/home.png");
    background-repeat: no-repeat;
}

.home-banner h1 {
    font-size: 66px;
    font-family: Bai Jamjuree;
}

.home-banner-text {
    font-size: 18px;
    color: #374151;
    font-weight: 500;
}

.home-search {
    width: 500px;
    border: 1px solid #C4C4C4;
    box-shadow: 0px 4px 12px 0px #0000001A;
    display: flex;
    outline: none;
    border-radius: 15px;
    padding: 10px;
    background-color: white;
}

.home-search input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #6B7280;
}

.home-search button {
    background-color: var(--bg-color);
    padding: 5px 10px;
    border-radius: 8px;
    border: none;
}

.service-search {
    width: 100%;
    box-shadow: 4px 7px 24px 0px #0000000D;
    display: flex;
    outline: none;
    border-radius: 10px;
    padding: 7px 12px;
    background-color: white;
}

.service-search input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #6B7280;
}

.service-search button {
    background-color: var(--bg-color);
    padding: 5px 10px;
    border-radius: 8px;
    border: none;
}

.campaign-search {
    width: 100%;

    display: flex;
    outline: none;

    display: flex;
}

.campaign-search .search-input {
    box-shadow: 4px 7px 24px 0px #0000000D;
    border-radius: 10px;
    padding: 7px 12px;
    background-color: white;
    width: 100%;
}

.campaign-search input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #6B7280;
}

.service-search input::placeholder,
.campaign-search input::placeholder {
    color: #6B7280;
}

.campaign-search button {
    background-color: var(--bg-color);
    border-radius: 8px;
    border: none;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.thm-login-btn {
    border-radius: 10px;
    padding: 8px 20px;
    height: 46px;
}

.footer-style1.at-home7,
.footer-style1.at-home8 {
    background-color: transparent;
}

.service-banner {
    background-color: var(--bg-color-3);
    border: 1px solid #C8E0E3;
    border-radius: 20px;
    padding: 10px;
    padding-bottom: 0;
    padding-right: 0;
}

.service-banner h4 {
    color: #333333;
    font-size: 22px;
    font-weight: 500;
}

.service-banner .service-banner-content {
    align-self: center;
    padding: 20px;
    width: 100%;
    position: relative;
}

.service-banner img {
    float: right;
}

.filter-card {
    box-shadow: 4px 4px 24px 0px #0000000F;
    border-radius: 10px;
    padding: 20px;
}

.filter-card h4 {
    font-size: 16px;
    color: #374151;
    font-weight: 600;
    margin-bottom: 25px;
}

.filter-card .custom_checkbox {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    font-family: Poppins;
    line-height: 30px;
}

.sidebar-accordion .card-header:before,
.list-sidebar-style1 .card-header:before {
    content: "";
}

.filter-card .custom_checkbox .checkmark {
    top: 7px;
}

.service-list-item .listing-style1 {
    box-shadow: 4px 4px 34px 0px #0000000F;
    border-radius: 20px;
    padding: 15px;
}

.service-list-item .listing-style1 .list-meta .fz14 {
    font-weight: 600;
    color: #14161F;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
    display: inline-block;
    vertical-align: top;
}

.price-main {
    color: var(--text-color-black);
    font-size: 20px;
    font-weight: 600;
}

.checkcontainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #6B7280;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkcontainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radiobtn {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    border: 1px solid #E5E7EB;
}

.checkcontainer .radiobtn:after {
    top: 6px;
    left: 6px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: white;
    border: none;
}

.radiobtn:after {
    content: "";
    position: absolute;
    display: none;
}

.checkcontainer input:checked~.radiobtn:after {
    display: block;
}

.checkcontainer input:checked~.radiobtn {
    background-color: var(--bg-color);
}

.service-sorting {
    position: relative;
}

.service-sorting .left-img {
    position: absolute;
    top: 0;
    left: 14px;
    bottom: 0;
    margin: auto;
}

.service-sorting .right-img {
    position: absolute;
    top: 0;
    right: 14px;
    bottom: 0;
    margin: auto;
}

.service-sorting select {
    border: none;
    box-shadow: 4px 7px 24px 0px #0000000D;
    border-color: transparent;
    outline: none;
    padding-left: 45px;
    font-size: 14px;
    font-weight: 400;
    color: #6B7280;
}

.service-title {
    color: #14161F;
    font-size: 22px;
    font-weight: 600;
}

.service-details .service-header .fz14 {
    color: var(--text-color-2);
    font-weight: 500;
}

.service-action {
    display: flex;
    align-items: center;
    justify-content: end;
}

.heart {
    filter: brightness(0) saturate(100%) invert(16%) sepia(90%) saturate(7500%) hue-rotate(-20deg) brightness(1) contrast(1);
}

.service-details-info {
    box-shadow: 4px 4px 34px 0px #0000000F;
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
}

.service-details-info .iconbox-style1 {
    margin-bottom: 0px;
}

.service-details-info .title {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.service-details-info .text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color-2);
}

.service-details-info .iconbox-style1 .icon:before {
    content: "";
    background: transparent;
}

.service-details-info .iconbox-style1.contact-style .details {
    padding-left: 15px;
}

.service-single-sldier .owl-nav button {
    box-shadow: 2px 4px 14px 0px #0000001A !important;
    height: 42px !important;
    width: 42px !important;
    line-height: normal !important;
}

.service-single-sldier:after {
    background-color: transparent;
}

.service-desc {
    font-size: 18px;
    color: #333333;
    font-weight: 600;
}

.service-content {
    font-size: 15px;
    color: #6B7280;
    font-weight: 500;
}

.service-addons-list button {
    box-shadow: 4px 4px 34px 0px #0000000F;
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 20px 30px;
    outline: none;
    border: none;
    position: relative;
    margin-bottom: 20px;

}

.service-addons-list button .price {
    font-size: 24px;
    font-weight: 600;
    position: absolute;
    right: 30px;
    top: 34px;
    color: #374151;
}

.service-details-section .price-widget {
    box-shadow: 4px 4px 34px 0px #0000000F;
    background-color: #FFFFFF;
    border: none;
    border-radius: 20px;
    padding: 30px;
}

.service-price-title {
    font-size: 20px;
    color: #333333;
    font-weight: 500;
}

.service-price {
    font-size: 24px;
    color: #333333;
    font-weight: 600;
    margin-top: 30px;
}

.service-category-option ul {
    padding: 0px;
}

.service-category-option ul li {
    color: #6B7280;
    font-size: 14px;
    font-weight: 500;
}

.service-category-option ul li img {
    margin-right: 10px;
}

.btn-thm {
    height: 44px;
    box-shadow: 0px 1px 2px 0px #0000000D;
    padding: 7px 22px;
    border-radius: 8px;
}

.ud-btn-2 {
    border: none;
    border-radius: 4px;
    display: inline-block;
    font-family: var(--title-font-family);
    font-weight: 700;
    font-size: 13px;
    font-style: normal;
    letter-spacing: 0em;
    padding: 3px 6px 3px 6px;
    position: relative;
    overflow: hidden;
    text-align: center;
    z-index: 0;
    transition: all 0.4s ease;
}

.creator_name {
    font-size: 18px;
    color: #333333;
    font-weight: 600;
    /* font-family: Poppins; */
}

.creator-details a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.creator-details a span {
    font-size: 14px;
    color: #616161;
    font-weight: 500;
}

.creator-current-info {
    font-size: 16px;
    color: #6B7280;
    font-weight: 500;
}

.creator-info a {
    font-size: 16px;
    font-weight: 500;
    color: #6B7280;
}

.creator-info-value {
    font-size: 14px;
    color: #374151;
    font-weight: 600;
}

header.nav-innerpage-style .ace-responsive-menu a.active-menu {
    color: #6DD8E4;
    border-bottom: 2px solid var(--bg-color);
}

.filter-heading {
    color: #333333;
    font-size: 20px;
    font-weight: 500;
}

.filter-title {
    display: flex;
    justify-content: space-between;
}

.filter-reset-link {
    color: #6DD9E5;
    font-size: 16px;
    font-weight: 500;
}

.employyer_details_title {
    font-size: 26px;
    font-weight: 600;
    color: #333333;
}

.total-review-box {
    background-color: #DFF3F5;
    height: 230px;
    border-radius: 8px;
    width: 298px;
}

.total-review-box .t-review {
    font-size: 60px;
    font-weight: 700;
    color: #374151;
}

.review-list .progress-bar {
    background-color: var(--bg-color);
}

.customer_rating {
    color: #6B7280;
    font-size: 16px;
    font-weight: 500;
    margin-top: 15px;
}

.review-list .value {
    color: #374151;
    font-weight: 400;
}

.reviewer_name {
    font-size: 17px;
    font-weight: 500;
    color: #1D2939;
}

.review_date {
    font-size: 13px;
    font-weight: 400;
    color: #4F547B;
    margin-left: 15px;
}

.review-text {
    font-size: 15px;
    font-weight: 400;
    color: #667085;
}

.lefttside-hidden-bar .hsidebar-content {
    padding-bottom: 200px;
}

.form-control:focus {
    border: 1px solid #6DD9E5;
}

select option {
    color: #6B7280;
}

select option:hover {
    background: #E7F4F5 !important;
}

select option:checked {
    margin: 40px;
    background: #E7F4F5;
    color: #6B7280;
}


#toast-container>.customer-success {

    background-color: #54D680;
    /* Change background color for success */
    color: #ffffff;
    /* Text color */
    border: 1px solid #54D680;
    box-shadow: 0px 6px 25px 0px #54D68040;
    /* Optional: Add a border */
    padding-left: 50px;
    /* Add space for the icon */
    background-image: url('/images/icons/success.png');
    /* Path to your success icon */
    background-repeat: no-repeat;
    background-position: 10px center;
    /* Position the icon */
    background-size: 30px 30px;
    border-radius: 10px;
    /* Resize the icon */
}

/* Custom error toast */
#toast-container>.customer-error {
    background-color: #E34949;
    box-shadow: 0px 6px 25px 0px #E3494940;
    /* Change background color for error */
    color: #ffffff;
    /* Text color */
    border: 1px solid #E34949;
    /* Optional: Add a border */
    padding-left: 50px;
    /* Add space for the icon */
    background-image: url('/images/icons/error.png');
    /* Path to your error icon */
    background-repeat: no-repeat;
    background-position: 10px center;
    /* Position the icon */
    background-size: 30px 30px;
    border-radius: 10px;
    /* Resize the icon */
}

/* Adjust the toast message text for alignment */
#toast-container>.customer-success,
#toast-container>.customer-error {
    top: 20px;
    padding: 10px 10px 10px 50px;
}

#toast-container>.customer-success .toast-message,
#toast-container>.customer-error .toast-message {
    /* Align the text properly */
    font-size: 16px;
    /* Optional: Customize font size */
    font-weight: 600;
    /* Optional: Make text bold */
}

.job-list-style1 .fav-icon {
    background-color: transparent !important;
    border-radius: 0;
    height: auto;
    width: auto;
}

.ud-btn:hover,
.btn-thm:hover:before {
    background-color: #33c4d4;
    border-color: #33c4d4;
}

.extra-service-tab .custom_checkbox {
    line-height: inherit;
    padding-right: 100px;
}

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

.required_field {
    color: #EF4444;
}

.total-campaign-list-item {
    color: #333333;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}

.underline-txt {
    text-decoration: underline;
}

.all-list-btn-mobile {
    display: none;
}

.mobile-service-banner {
    display: none;
}

.mobile-filter .open-btn {
    border: none;
    background: transparent;
    padding: 0;
}

.mobile-filter label {
    color: #333333;
    font-size: 18px;
    font-weight: 500;
}

.mobile-service-title a {
    display: none;
}

.creator-details .mobile-service-title a {
    position: absolute;
    right: 0;
}

.service-about .custom_checkbox {
    padding-left: 0px;
    padding-right: 75px;
}

.mobile-campaign-details {
    display: none;
}

.front-lang-btn {
    background: transparent;
    border: none;
    padding: 0;
    padding-right: 27px;
    /* padding-top: 5px; */
    text-transform: uppercase;
    font-size: 14px;
    color: black;
    box-shadow: none;
}

.front-lang-btn:hover,
.front-lang-btn:active,
.front-lang-btn:active:focus,
.front-lang-btn:focus {
    background: transparent;
    border: none;
    color: black;
    box-shadow: none;
}

.lang-dropdown .dropdown-menu {
    width: auto;
    box-shadow: rgba(64, 79, 104, 0.05) 0px 6px 15px;
}

.lang-dropdown .dropdown-menu a {
    font-size: 14px;
    padding: .25rem 1rem !important;
    width: auto !important;
}

.lang-dropdown img {
    width: 18px;
}

.lang-dropdown .dropdown-item.active,
.dropdown-item:active {
    background-color: #33c4d4;
}

.elipse-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.m-select-lable {
    display: block;
    cursor: pointer;
}

.m-select-lable input[type='checkbox'] {
    accent-color: #33c4d4;
}

.verified_badge {
    width: 20px;
    margin-top: -5px;
}

.creator-reviews {
    cursor: pointer;
}

.with-telented-section {
    padding: 64px 60px;
    border-radius: 30px;
    box-shadow: 0px 14px 44px 0px #6DD9E533;
}

.filter-card .search_area label {
    top: 10px;
}

.scrollToHome:hover {
    background-color: var(--bg-color) !important;
}

.campaign-alert-msg {
    display: inline-block;
}

.multiple-service-image .s-img {
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
}
.home-register-btn {
    display: none;
}

/* Signup Form  */
.profile-content .upload-btn {
    padding: 5px 15px;
    background-color: #6dd8e4;
    color: white;
}

.zoom-btn {
    border: 1px solid #C4C4C4;
    border-radius: 11px;
    padding: 9px;
    background-color: #fff;
}
.back-btn {
    border: 1px solid #BABDC1;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    font-style: normal;
    letter-spacing: 0em;
    padding: 5px 30px 5px 30px;
    position: relative;
    overflow: hidden;
    text-align: center;
    z-index: 0;
    transition: all 0.4s ease;
    color: #374151;
    background-color: transparent;
    height: 44px;
    line-height: 33px;
    vertical-align: middle;
}

.my-dropzone .dropzone {
    border: 2px dashed #CBD0DC;
    border-radius: 8px;
}
.primary-btn-2 {
    border: 1px solid #6DD9E5;
    border-radius: 4px;
    display: inline-block;
    font-family: var(--title-font-family);
    font-weight: 600;
    font-size: 16px;
    font-style: normal;
    letter-spacing: 0em;
    padding: 5px 20px 5px 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
    z-index: 0;
    transition: all 0.4s ease;
    color: #6DD9E5;
    background-color: #fff;
}
.profile_setup{
    position: absolute;
    right: 25px;
    top: 20px;
}
.crop-mobile-action {
    display: none;
}

.swal-custom-icon {
    margin-top: 0px;
}

.swal-custom-title {
    font-size: 18px !important;
    /* Adjust the size */
    font-weight: 600;
    /* Optional: Make it bold */
    color: #333333;
    /* Optional: Change color */
}

/* Custom text font size */
.swal-custom-text {
    font-size: 14px !important;
    color: #616161 !important;
    font-weight: 500 !important;
    padding-top: 6px !important;
}

.blur-app {
    filter: blur(4px);
    -webkit-filter: blur(8px);
    /* For Safari support */
    background-color: #0000001A;
}

/* Ensure SweetAlert2 popup is unaffected by body blur */
.swal2-container {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.swal-custom-radius {
    border-radius: 15px !important;
    /* Set your preferred radius */
    overflow: hidden;
    padding: 20px 20px 30px 20px !important;
}

.custom-confirm-button {
    background-color: var(--bg-color);
    /* Green background */
    color: white;
    /* White text */
    border: none;
    /* Remove border */
    border-radius: 8px;
    /* Rounded corners */
    padding: 7px 15px;
    /* Padding */
    font-size: 16px;
    /* Font size */
    cursor: pointer;
    /* Pointer cursor on hover */
    transition: all 0.3s ease;
    /* Smooth hover effect */
}

.custom-confirm-button:hover {
    background-color: var(--bg-color);
    /* Darker green on hover */
    transform: scale(1.05);
    /* Slight zoom on hover */
}

/* Cancel Button Styling */
.custom-cancel-button {
    background-color: #EF4444;
    /* Red background */
    color: white;
    /* White text */
    border: none;
    /* Remove border */
    border-radius: 8px;
    /* Rounded corners */
    padding: 7px 15px;
    /* Padding */
    font-size: 16px;
    /* Font size */
    cursor: pointer;
    /* Pointer cursor on hover */
    transition: all 0.3s ease;
    /* Smooth hover effect */
}

.custom-cancel-button:hover {
    background-color: #EF4444;
    /* Darker red on hover */
    transform: scale(1.05);
    /* Slight zoom on hover */
}

.swal-custom-icon {
    margin-top: 0px;
}

.quick-img-thm {
    background: #69d9e81a;
    color: #69d9e8;

    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

/* Media Query */
/* @media (max-width: 768px) { */
@media (max-width: 900px) {
    /* .service-banner {
        display: none;
    } */

    .card-info-box {
        margin-bottom: 20px;
    }

    .footer-style1 {
        text-align: center;
    }

    .home-banner h1 {
        font-size: 35px !important;
    }

    .home-banner {
        background-size: contain;
        background: url('/images/front/mobile-home.png');
        background-repeat: no-repeat;
        padding: 60px 10px 20px !important;
        margin-bottom: 10px;
    }

    .home-banner-section {
        padding: 25px 0px 0px;
    }

    .home-banner-section .container {
        padding: 0px;
    }

    .welcome-large-title {
        font-size: 40px;
        text-align: center;
    }

    .welcome-content-text {
        text-align: center;
    }

    .home-category {
        margin-bottom: 15px;
    }

    /* .freelancer-single-style {
        text-align: center;
    } */

    .home-banner-text {
        margin-top: 20px;
    }

    .home-banner form {
        margin-top: 40px;
    }

    .all-list-btn-mobile {
        display: block;
    }

    .all-list-btn {
        display: none;
    }

    .more-work {
        margin-left: 16px !important;
        margin-right: 16px !important;
    }

    .more-work .welcome-p-text {
        padding: 0px;
    }

    .more-work .welcome-large-title-2 {
        font-size: 38px;
    }

    .footer-style1 {
        text-align: left !important;
    }

    .main-service-banner {
        display: none;
    }

    .mobile-service-banner {
        display: block;
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .service-list-item {
        margin-top: 0px !important;
    }

    .service-details .cta-banner,
    .creator-details .freelancer-single-style {
        padding-left: 0px !important;
        padding-right: 0px !important;
        padding-top: 30px !important;
        padding-bottom: 0px !important;
    }

    .service-details-section .freelancer-style1 {
        margin-bottom: 30px !important;
    }

    .service-action {
        display: none;
    }

    .mobile-service-title {
        display: flex;
        gap: 20px;
        justify-content: space-between;
    }

    .mobile-service-title a {
        display: block;
    }

    .total-review-box {
        width: 100%;
    }

    .review-list .progress {
        width: 70%;
    }

    #side-filter-form .item-card {
        margin-top: 15px !important;
    }

    .profile-img {
        width: 70px;
        height: 70px;
        object-fit: cover;
        margin-right: 15px;
    }

    .login-info .custom_checkbox {
        display: flex;
    }

    .service-about .custom_checkbox .text-bottom {
        width: 86%;
    }

    .service-about .nav-tabs .price {
        font-size: 17px;
        display: flex;
        align-items: center;
        top: 0;
        bottom: 0;
    }

    .brand-details-section .card-body,
    .campaign-details-section .card-body {
        padding: 0px;
    }

    .brand-details-section .about-buyer,
    .campaign-details-section .about-buyer {
        margin-top: 30px;
    }

    .budget-text {
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }

    .mobile-campaign-details {
        display: block;
    }

    .brand-details-section .brand-campaign {
        height: 100%;
    }

    .with-telented-section {
        padding: 64px 45px;
    }

    .front-lang-btn {
        padding-right: 15px;
    }

    .lang-dropdown .dropdown-menu li {
        line-height: 22px;
    }
}

@media (max-width: 900px) {
    .home-banner h1 {
        font-size: 38px;
    }

    .home-banner {
        background-size: contain;
        padding: 10px 10px;
        margin-bottom: 10px;
    }

    .home-search {
        width: 100%;
    }
}

/* Default modal size */
.loginModal .modal-xl {
    max-width: 90%;
    /* Makes it responsive by default */
}

.loginModal .modal-content {
    border-radius: 1.3rem;
}

/* For large screens (min-width: 1200px) */
@media (min-width: 1200px) {
    .loginModal .modal-xl {
        max-width: 900px;
    }
}

/* For medium screens (min-width: 992px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .loginModal .modal-xl {
        max-width: 80%;
    }
}

/* For smaller screens (min-width: 768px) */
@media (min-width: 768px) and (max-width: 991px) {
    .loginModal .modal-xl {
        max-width: 85%;
    }
}

/* For mobile screens */
@media (max-width: 767px) {
    .loginModal .modal-xl {
        max-width: 95%;
    }
}


@media (max-width: 430px) {
    .loginModal .auth-left-image {
        display: none;
    }

    .creator-cta-btn {
        flex-wrap: wrap;
        display: flex;
        gap: 10px;
    }
    .home-register-btn {
        display: block;
    }
    .profile_setup {
        position: absolute;
        right: 29px;
        top: 0px;
    }
    .preview-before-crop {
        display: none;
    }
    .crop-mobile-action {
        display: block;
    }
    .web-mobile-action {
        display: none;
    }
}