* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.input-wrp .description-field .input-field {
    height: 120px !important;
    padding: 18px 12px !important;
    resize: none;
}

.input-wrp .description-field .input-label {
    top: 22px;
}

body {
    margin: 0;
    font-family: "Inter", Helvetica, sans-serif;
    color: #190F00;
    font-size: 16px;
    font-weight: 400;
}
textarea {
    font-family: "Inter", Helvetica, sans-serif;
    color: #190F00;
    font-size: 16px;
    font-weight: 400;
}
.body-wrapper {
    display: flex;
    justify-content: space-between;
    background-color: #F9F9F9 !important;
    gap: 24px;
}

.body-container {
  
    margin: 0 auto;
    background-color: #F9F9F9 !important;
}

.master-inputfield {
    height: 25px;
    width: 50%;
}

.input-wrp {
    margin-bottom: 24px;
}

    .input-wrp .error input {
        background: url(../images/error-icon.svg) center right 12px no-repeat;
        background-color: #FEF7F7 !important;
        border-color: #EB5757 !important;
        padding: 0 42px 0 12px !important;
    }

    .input-wrp .success input {
        background: url(../images/success-icon.svg) center right 12px no-repeat;
        padding: 0 42px 0 12px !important;
        background-color: #fff !important;
    }

    .input-wrp .error-text {
        color: #EB5757;
        font-size: 12px;
        margin-top: 4px;
        margin-left: 8px;
    }

    .input-wrp .input-container {
        position: relative;
    }

        .input-wrp .input-container .input-field {
            width: 100%;
            padding: 0 12px;
            height: 48px;
            border: 1px solid #E8E7E6;
            border-radius: 8px;
            outline: none;
            font-size: 16px;
        }

        .input-wrp .input-container .input-label {
            position: absolute;
            top: 25px;
            left: 12px;
            pointer-events: none;
            transition: 0.3s;
            font-size: 16px;
            color: #8C8780;
            transform: translateY(-50%);
            background-color: #fff;
        }
        .input-wrp .postalcode .input-label {
           /* top: 25px !important;*/
        }
    .input-wrp .postalcode.active .input-label {
        top:0 !important;
    }
     

    .input-Number {
        pointer-events: none;
        border-radius: 8px;
        border: 1px solid #E8E7E6;
        background: #E8E7E6;
    }


.input-wrp .input-container .read-label {
    top: 0 !important;
}

.input-wrp .input-container .input-field:focus + .input-label,
.input-wrp .input-container .input-field:valid + .input-label {
    top: 0;
    font-size: 14px;
    color: #8C8780;
    background-color: #fff;
}

.input-wrp .input-container .input-field:focus + .input-label,
.input-wrp .input-container .input-field:valid + .input-label,
.input-wrp .input-container .input-field:not(:placeholder-shown) + .input-label {
    font-size: 15px;
    color: #8C8780;
    background-color: #fff;
}

.input-wrp .error input {
    background-color: #FEF7F7;
}

.input-wrp .error-text {
    color: #EB5757;
    font-size: 12px;
    margin-top: 4px;
    margin-left: 8px;
}

.input-control {
    width: 100%;
    padding: 0 12px;
    height: 48px;
    border: 1px solid #E8E7E6;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    background-color: #fff;
}

    .input-control:focus {
        background-color: #E8E7E6;
        border-color: #E8E7E6;
    }

.search-box {
    position: relative;
}

    .search-box input {
        width: 100%;
        padding: 0 22px 0 38px;
        height: 48px;
        border: 1px solid #E8E7E6;
        border-radius: 8px;
        outline: none;
        font-size: 16px;
        background-color: #fff;
    }

        .search-box input:focus {
            background-color: #E8E7E6;
            border-color: #E8E7E6;
        }

            .search-box input:focus button {
                display: none;
            }

    .search-box .search-icon {
        width: 20px;
        height: 20px;
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
    }
input[type="search"]::-webkit-search-cancel-button {
    display: none;
}
    .search-box .cross-icon {
        width: 20px;
        height: 20px;
        position: absolute;
        right: 4px;
        top: 50%;
        transform: translateY(-50%);
    }
        .search-box .search-icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

select, .select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0 40px 0 12px;
    background: url(../images/drop-down.svg) center right 10px no-repeat;
    background-size: 20px;
    width: 100%;
    height: 40px;
    border: 1px solid #E8E7E6;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    background-color: #fff;
    display: flex;
    align-items: center;
}

.select-date {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0 40px 0 12px;
    background: url(../images/date-icon.svg) center right 10px no-repeat;
    background-size: 20px;
    width: 100%;
    height: 40px;
    border: 1px solid #E8E7E6;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    background-color: #fff;
    display: flex;
    align-items: center;
}


select:focus, .select:focus {
    background-color: #E8E7E6;
    border-color: #E8E7E6;
}

.secondary-select {
    position: relative;
    width: fit-content !important;
}

    .secondary-select label {
        position: absolute;
        left: 12px;
        top: 19px;
        top: 50%;
        transform: translateY(-50%);
        color: #8C8780;
    }

    .secondary-select select {
        padding-left: 114px !important;
        text-align: left;
    }

        .secondary-select select option {
            color: #5E574D;
            font-weight: 500;
        }

.territory-select select {
    background-color: #FFFCF8;
    border-color: #FFA11A;
}

.custom-checkbox {
    position: relative;
    display: inline-block;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding-left: 32px;
    padding-top: px;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

    .custom-checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 8px;
    }

    .custom-checkbox .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 18px;
        width: 18px;
        background-color: #fff;
        border-radius: 4px;
        border: 2px solid #8C8780;
    }

    .custom-checkbox:hover input ~ .checkmark {
        background-color: #fff;
    }

    .custom-checkbox input:checked ~ .checkmark {
        background-color: #FF9700;
        border-color: #FF9700;
    }

    .custom-checkbox .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    .custom-checkbox input:checked ~ .checkmark:after {
        display: block;
    }

    .custom-checkbox .checkmark:after {
        left: 4px;
        top: -2px;
        width: 5px;
        height: 12px;
        border: solid #fff;
        border-width: 0 3px 3px 0;
        transform: rotate(45deg);
    }

ul,
li {
    list-style: none;
}

a {
    text-decoration: none;
    cursor: pointer;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
    overflow: hidden;
    vertical-align: top;
}

.wrapper {
    width: 100%;
    background-color: white;
}

.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.flex-center {
    align-items: center;
}

.flex-between {
    justify-content: space-between;
}

.flex-column {
    flex-direction: column;
}

.text-center {
    text-align: center;
}

h1 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

h5 {
    font-size: 14px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.heading-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.pt-4 {
    padding-top: 4px;
}

.pt-8 {
    padding-top: 8px;
}

.pt-12 {
    padding-top: 12px;
}

.pt-16 {
    padding-top: 16px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-24 {
    padding-top: 24px;
}

.pt-28 {
    padding-top: 28px;
}

.pb-4 {
    padding-bottom: 4px;
}

.pb-8 {
    padding-bottom: 8px;
}

.pb-12 {
    padding-bottom: 12px;
}

.pb-16 {
    padding-bottom: 16px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-24 {
    padding-bottom: 24px;
}

.pb-28 {
    padding-bottom: 28px;
}

.mt-4 {
    margin-top: 4px;
}
.mt-8 {
    margin-top: 8px;
}

.mt-12 {
    margin-top: 12px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-28 {
    margin-top: 28px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-36 {
    margin-top: 36px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-12 {
    margin-bottom: 12px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-28 {
    margin-bottom: 28px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-36 {
    margin-bottom: 36px;
}

.mb-40 {
    margin-bottom: 40px;
}

.w-100 {
    width: 100% !important;
}

.g-4 {
    gap: 4px;
}

.g-8 {
    gap: 8px;
}

.g-12 {
    gap: 12px;
}

.g-16 {
    gap: 16px;
}

.b-t {
    background-color: transparent;
}

.b-n {
    border: none;
}

.primary-action {
    font-weight: 500;
    color: #FF9700;
    line-height: 1.5;
    border: none;
    background-color: transparent;
    font-size: 16px;
}

.primary-btn {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color: #FF9700;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    width: auto;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0 12px;
    white-space: nowrap;
}

    .primary-btn:hover {
        background-color: #FF9700;
        opacity: 0.7;
        border: none;
    }

.border-btn {
    flex-wrap: nowrap;
    white-space: nowrap;
    border: 1px solid #E8E7E6;
    background-color: #fff;
    font-size: 16px;
    font-weight: 500;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    cursor: pointer;
    padding: 0 12px;
    border-radius: 8px;
    white-space: nowrap;
}

    .border-btn:hover {
        border-color: #E8E7E6;
        background-color: #fff;
    }

.filter-btn {
    flex-wrap: nowrap;
    white-space: nowrap;
    border: 1px solid #E8E7E6;
    background-color: #fff;
    font-size: 16px;
    font-weight: 500;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    cursor: pointer;
    padding: 0 12px;
    border-radius: 8px;
    white-space: nowrap;
}

    .filter-btn img {
        margin-left: 8px;
    }

    .filter-btn:hover {
        border-color: #E8E7E6;
        background-color: #fff;
    }

    .filter-btn.active {
        background-color: #E8E7E6;
    }

        .filter-btn.active .head-section {
            display: block;
        }

.secondary-btn {
    flex-wrap: nowrap;
    white-space: nowrap;
    border: 1px solid #FF9700;
    color: #FF9700;
    background-color: #fff;
    font-size: 16px;
    font-weight: 500;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    cursor: pointer;
    padding: 0 12px;
    border-radius: 8px;
    white-space: nowrap;
}

    .secondary-btn:hover {
        border-color: #FF9700;
        background-color: #fff;
    }

.drop-down-btn {
    width: 24px;
    height: 24px;
    background-color: transparent;
    border: none;
}

    .drop-down-btn img {
        width: 100%;
        height: 100%;
        overflow: hidden;
        -o-object-fit: cover;
        object-fit: cover;
    }

.action-text {
    font-weight: 500;
    color: #FF9700;
    line-height: 1.5;
    font-size: 16px;
    background-color: transparent;
    border: none;
}

.arrow-action {
    background-color: transparent;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
}

    .arrow-action img {
        width: 100%;
        height: 100%;
        overflow: hidden;
        -o-object-fit: cover;
        object-fit: cover;
    }

.filter-section .top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #E8E7E6;
}

    .filter-section .top-header .search-box input {
        height: 40px;
    }

.filter-section .head-section {
    padding: 16px 0;
    display: none;
}

    .filter-section .head-section .right-part {
        gap: 14px;
    }

.filter-section.active .head-section {
    display: flex;
}

.filter-section.active .filter-btn {
    position: relative;

}
.filter-section .input-wrp .input-container select {
    padding: 0 40px 0 12px;
}
.filter-section .input-wrp {
    margin: 0;
}

    .filter-section .input-wrp .input-container .input-field {
        height: 40px;
    }

    .filter-section .input-wrp .input-container .input-label {
        top: 20px;
    }

.select-filter {
    position: relative;
    min-width: 160px;
    transition: ease-in-out 0.3s;
}
.select-filter .label {
    color: #8C8780;
    font-size: 12px;
}

    .select-filter.active .label {
        position: relative;
        top: -50%;
        background: #fff;
        font-size: 12px;
        color: #190F00;
        transition: ease-in-out 0.3s;
    }
    .filter-section.active .filter-btn::after {
        content: "";
        width: 73px;
        height: 20px;
        background-color: #fff;
        position: absolute;
        top: 35px;
        left: 6px;
    }

.select-filter .filter-container,
.select-wrapper .filter-container,
.select-wrapper2 .filter-container {
    display: none;
    padding: 12px;
    padding: 12px 12px 0 12px;
    box-shadow: 0px 2px 4px 0px rgba(25, 17, 8, 0.08);
    border-radius: 8px;
    width: fit-content;
    min-width: 234px;
    margin: 4px auto;
    margin: 1px auto auto auto;
    background-color: #fff;
    position: absolute;
    z-index: 2;
}

    .select-filter .filter-container .custom-checkbox .checkmark,
    .select-wrapper .filter-container .custom-checkbox .checkmark,
    .select-wrapper2 .filter-container .custom-checkbox .checkmark {
        top: -10px;
        width: 20px;
        height: 20px;
    }

        .select-filter .filter-container .custom-checkbox .checkmark:after,
        .select-wrapper .filter-container .custom-checkbox .checkmark:after,
        .select-wrapper2 .filter-container .custom-checkbox .checkmark:after {
            top: -1px;
            left: 5px;
        }

    .select-filter .filter-container .title,
    .select-wrapper .filter-container .title,
    .select-wrapper2 .filter-container .title {
        font-weight: 500;
        font-size: 14px;
        border-bottom: 1px solid #E8E7E6;
        padding-bottom: 12px;
        color: #30271A;
    }

    .select-filter .filter-container .content .search-box input,
    .select-wrapper .filter-container .content .search-box input,
    .select-wrapper2 .filter-container .content .search-box input {
        padding: 0 38px 0 38px;
    }

    .select-filter .filter-container .content .search-box input {
        height: 32px;
    }

    .select-filter .filter-container .content .select-list {
        border-bottom: 1px solid #E8E7E6;
    }

        .select-filter .filter-container .content .select-list li {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-bottom: 18px;
        }

    .select-filter .filter-container .content .action-wrp {
        padding: 12px 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
    }

.select-filter.active .filter-container,
.select-wrapper.active .filter-container,
.select-wrapper2.active .filter-container {
    display: block;
}


.form-wrapper {
    border-radius: 12px;
    margin: 0 auto;
    width: 100%;
    background: #fff;
}

.breadcrumb {
    padding: 12px 8px;
}

 .breadcrumb a {
     font-size: 14px;
     font-weight: 400;
     color: #8C8780;
     display:flex;
     align-items:center;
 }
    .breadcrumb li.active a {
        font-weight: 500;
        color: #190F00;
    }
    .breadcrumb a span {
        width: 18px;
        height: 18px;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content:center;
        margin:0 4px;
    }
    .breadcrumb a.active {
        color: #190F00;
        font-weight:500;
    }

.custom-radio-wrp {
    display: flex;
    align-items: center;
    gap: 24px;
}

.custom-radio {
    display: flex;
    align-items: center;
    color: #8C8780;
}

    .custom-radio.active {
        color: #190F00;
    }

    .custom-radio input[type=radio] {
        display: none;
    }

    .custom-radio .checkmark {
        position: relative;
        top: 0;
        left: 0;
        height: 24px;
        width: 24px;
        background-color: #fff;
        border: 3px solid #8C8780;
        border-radius: 50%;
        display: inline-block;
        margin-right: 6px;
        vertical-align: middle;
    }

.form-wrapper .form-container .head-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.head-wrapper {
    padding: 24px 0 24px 24px;
}

.form-wrapper .form-container .form-content {
    padding: 0 24px;
}

    .form-wrapper .form-container .form-content .form-row {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
    }

        .form-wrapper .form-container .form-content .form-row .form-col {
            width: calc(50% - 12px);
        }

        .form-wrapper .form-container .form-content .form-row .address-wrp {
            width: 100%;
        }

.form-wrapper .form-action-wrp {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #E8E7E6;
}

    .form-wrapper .form-action-wrp .action {
        padding: 24px;
        display: flex;
        align-items: center;
        gap: 24px;
    }

.form-wrapper .member-type .head-section {
    padding-bottom: 24px;
    font-size: 20px;
    font-weight: 600;
}
.form-wrapper .refund-row .head-section {
    padding:0 24px 24px 24px;

}

    .form-wrapper .member-type .head-section .right-part {
        color: #FF9700;
        font-size: 16px;
        background-color: transparent;
        border: none;
    }

        .form-wrapper .member-type .head-section .right-part img {
            width: 16px;
            height: 16px;
            -o-object-fit: cover;
            object-fit: cover;
            margin-right: 4px;
        }

.form-wrapper .member-type .member-form-wrp {
    width: 100%;
}
    .form-wrapper .member-type .member-form-wrp .form-row .left  {
        width: calc(100% - 52px);
        gap:8px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

    .form-wrapper .member-type .member-form-wrp .form-row .left-part {
        width: calc(100% - 72px);
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    .form-wrapper .member-type .member-form-wrp .form-row .bookingFilter {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 12px;
    }

        .form-wrapper .member-type .member-form-wrp .form-row .left-part .form-col {
            width: calc(33.33% - 24px);
        }
            .form-wrapper .member-type .member-form-wrp .form-row .left-part .form-col.select-check {
               padding:12px;
            }
    .form-wrapper .refund-row .member-form-wrp .form-row .left-part .form-col {
        width: calc(50% - 12px);
    }

.ck-content{
    height:100px;
}
.form-wrapper .member-type .member-form-wrp .form-row .right-part {
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
}

        .form-wrapper .member-type .member-form-wrp .form-row .right-part button {
            width: 24px;
            height: 24px;
            -o-object-fit: cover;
            object-fit: cover;
            background-color: transparent;
            border: none;
        }

            .form-wrapper .member-type .member-form-wrp .form-row .right-part button img {
                width: 100%;
                height: 100%;
                overflow: hidden;
                -o-object-fit: cover;
                object-fit: cover;
            }

.tabing-wrp {
    width: 100%;
    border-bottom: 1px solid #E8E7E6;
    display: flex;
    align-items: center;
}

    .tabing-wrp .edit-action img {
        width: 20px;
        height: 20px;
        margin-right: 4px;
    }

    .tabing-wrp .tabing {
        display: flex;
        align-items: center;
        width: 100%;
    }

        .tabing-wrp .tabing li {
            padding: 18px 0;
            cursor: pointer;
            position: relative;
            transition: all 0.3s;
        }

            .tabing-wrp .tabing li a {
                font-size: 14px;
                color: #8C8780;
            }

            .tabing-wrp .tabing li:after {
                content: "";
                width: 32px;
                height: 4px;
                background-color: #FF9700;
                border-radius: 4px 4px 0 0;
                position: absolute;
                bottom: -1px;
                left: 50%;
                transform: translateX(-50%);
                display: none;
            }

            .tabing-wrp .tabing li:hover a, .tabing-wrp .tabing li.active a {
                color: #FF9700;
            }

            .tabing-wrp .tabing li:hover:after, .tabing-wrp .tabing li.active:after {
                display: block;
            }

.login-wrapper .title-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
}

.login-wrapper .inner-container {
    width: 100%;
}

    .login-wrapper .inner-container > .left-part {
        width: 40%;
        background: url(../images/login-bg.svg) center center no-repeat;
        background-size: cover;
        padding: 80px 0 120px 0;
    }

        .login-wrapper .inner-container > .left-part .max-container {
            max-width: 440px;
            margin: 0 auto;
        }

        .login-wrapper .inner-container > .left-part .content .text {
            line-height: 1.4;
            font-size: 14px;
        }

        .login-wrapper .inner-container > .left-part .image-wrp {
            max-width: 424px;
            width: 100%;
            margin: 106px auto 116px auto;
            height: 400px;
        }

            .login-wrapper .inner-container > .left-part .image-wrp img {
                width: 100%;
                height: 100%;
            }

    .login-wrapper .inner-container > .right-part {
        width: 60%;
        background-color: #fff;
        padding: 160px 0 40px 0;
    }

        .login-wrapper .inner-container > .right-part .max-container {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            flex-direction: column;
            height: 100%;
        }

            .login-wrapper .inner-container > .right-part .max-container .text {
                margin-bottom: 40px;
            }

            .login-wrapper .inner-container > .right-part .max-container .bottom-section {
                text-align: center;
                color: #8C8780;
            }

        .login-wrapper .inner-container > .right-part .remember-box .forgot-action {
            padding-top: 4px;
        }

.login-wrapper .email-section .title-text {
    margin-bottom: 40px;
}

.login-wrapper .email-section .notification-icon {
    width: 90px;
    height: 80px;
}

    .login-wrapper .email-section .notification-icon img {
        width: 100%;
        height: 100%;
        overflow: hidden;
        -o-object-fit: cover;
        object-fit: cover;
    }

.login-wrapper .primary-btn {
    height: 48px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 158px;
    height: 40px;
    font-size: 14px;
    /* Optional: Adjust colors for better visibility */
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .switch .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #fff;
        border: 1px solid #8C8780;
        border-radius: 8px;
        transition: 0.4s;
    }

        .switch .slider:before {
            position: absolute;
            content: "";
            height: 100%;
            width: 50%;
            left: 0;
            bottom: 0;
            background-color: #FFA11A;
            border-radius: 8px 0 0 8px;
            transition: 0.4s;
        }

    .switch input:checked + .slider {
        background-color: #fff;
    }

        .switch input:checked + .slider:before {
            transform: translateX(0);
            left: unset;
            right: 0;
            border-radius: 0 8px 8px 0;
        }

    .switch .label-on,
    .switch .label-off {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        padding: 5px 10px;
        color: #8C8780;
        font-size: 14px;
        font-weight: 400;
    }

    .switch .label-on {
        left: 8px;
    }

    .switch .label-off {
        right: 8px;
    }

    .switch input:checked + .slider .label-on {
        color: #2196F3;
    }

    .switch input:not(:checked) + .slider .label-off {
        color: #444;
    }

.profile-pic-wrp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 24px 24px 24px;
    border-bottom: 0.5px solid #E8E7E6;
    padding-bottom: 24px;
}

    .profile-pic-wrp .left-part {
        width: calc(50% - 24px);
    }

        .profile-pic-wrp .left-part .text {
            font-size: 16px;
            margin-bottom: 4px;
            line-height: 1.5;
        }

        .profile-pic-wrp .left-part .lable-text {
            color: #8C8780;
            font-size: 14px;
            line-height: 1.5;
        }

    .profile-pic-wrp .right-part {
        width: calc(50% - 24px);
        display: flex;
        align-items: center;
    }

        .profile-pic-wrp .right-part .profile-card {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            margin-right: 24px;
            position: relative;
        }

            .profile-pic-wrp .right-part .profile-card img {
                width: 100%;
                height: 100%;
                overflow: hidden;
                -o-object-fit: cover;
                object-fit: cover;
                border-radius: 50%;
            }

            .profile-pic-wrp .right-part .profile-card .camera-action {
                position: absolute;
                bottom: 8px;
                right: -8px;
                width: 20px;
                height: 20px;
                background-color: #F9F9F9;
                border: none;
                padding: 2px;
                border-radius: 50%;
            }

                .profile-pic-wrp .right-part .profile-card .camera-action img {
                    width: 100%;
                    height: 100%;
                    overflow: hidden;
                    -o-object-fit: cover;
                    object-fit: cover;
                }

        .profile-pic-wrp .right-part .details .lable-text {
            font-size: 12px;
            line-height: 1.2;
            margin-bottom: 12px;
        }

        .profile-pic-wrp .right-part .details button {
            color: #EB5757;
            font-weight: 500;
            font-size: 14px;
        }

.scroll {
    overflow-x: scroll;
    scrollbar-width: none;
}

    .scroll::-webkit-scrollbar {
        width: 12px;
    }

    .scroll::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px #E8E7E6;
        border-radius: 10px;
    }

    .scroll::-webkit-scrollbar-thumb {
        background: #E8E7E6;
        border-radius: 10px;
    }

        .scroll::-webkit-scrollbar-thumb:hover {
            background: #E8E7E6;
        }

input[type=date]:required:invalid ::-webkit-datetime-edit {
    color: transparent;
}

input[type=date]:focus::-webkit-datetime-edit {
    color: black !important;
}

input[type=time]:required:invalid::-webkit-datetime-edit {
    color: transparent;
}

input[type=time]:focus::-webkit-datetime-edit {
    color: black !important;
}

.custom-radio-wrp {
    display: flex;
    align-items: center;
    gap: 24px;
}

.custom-radio {
    display: flex;
    align-items: center;
    color: #8C8780;
}

    .custom-radio.active {
        color: #190F00;
    }

    .custom-radio input[type=radio] {
        display: none;
    }

    .custom-radio .checkmark {
        position: relative;
        top: 0;
        left: 0;
        height: 24px;
        width: 24px;
        background-color: #fff;
        border: 3px solid #8C8780;
        border-radius: 50%;
        display: inline-block;
        margin-right: 6px;
        vertical-align: middle;
    }

    .custom-radio input:checked ~ .checkmark {
        border-color: #FF9700;
    }

    .custom-radio .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    .custom-radio input:checked ~ .checkmark:after {
        display: block;
    }

    .custom-radio .checkmark:after {
        top: 4.5px;
        left: 4.5px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #FF9700;
    }

.upload-image-wrp {
    margin-bottom: 24px;
    width: 100% !important;
}

    .upload-image-wrp .head-title {
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .upload-image-wrp .head-title .left-part {
            color: #30271A;
            font-size: 14px;
        }

            .upload-image-wrp .head-title .left-part span {
                vertical-align: sub;
            }

        .upload-image-wrp .head-title .right-part {
            color: #5E574D;
            font-size: 12px;
        }

    .upload-image-wrp .upload-container {
        display: flex;
        align-items: center;
        gap: 16px;
    }

        .upload-image-wrp .upload-container .upload-btn {
            background-color: #E8E7E6;
            color: #5E574D;
            font-size: 12px;
            border: 1px solid #F9F9F9;
            border-radius: 8px;
            padding: 8px 9px;
        }

        .upload-image-wrp .upload-container .upload {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 96px;
            height: 72px;
            border-radius: 4px;
            overflow: hidden;
            background-color: #E8E7E6;
            cursor: pointer;
            border: 1px dashed #E8E7E6;
        }

            .upload-image-wrp .upload-container .upload label {
                cursor: pointer;
            }

                .upload-image-wrp .upload-container .upload label img {
                    width: 32px;
                    height: 32px;
                }

            .upload-image-wrp .upload-container .upload input {
                display: none;
            }

        .upload-image-wrp .upload-container .outer-upload-wrapper {
            width: 100%;
            gap: 16px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

            .upload-image-wrp .upload-container .outer-upload-wrapper .next-upload {
                position: relative;
                width: 96px;
                height: 72px;
            }

                .upload-image-wrp .upload-container .outer-upload-wrapper .next-upload .image-wrapper {
                    width: 100%;
                    height: 100%;
                    background-color: #FFF5E6;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border-radius: 8px;
                }

                .upload-image-wrp .upload-container .outer-upload-wrapper .next-upload .close-btn {
                    border: none;
                    background-color: transparent;
                    width: 16px;
                    height: 16px;
                    position: absolute;
                    right: -4px;
                    top: -7px;
                }

    .upload-image-wrp .bottom-text {
        font-size: 12px;
        color: #5E574D;
        margin-top: 8px;
        line-height: 14px;
    }
/*# sourceMappingURL=style.css.map */



.filter-section.active {
    display: block;
}

#newMember {
    display: block;
}

#existingMember {
    display: none;
}

.flag-icon.flag-icon-an {
    font-size: 100%;
    margin-right: 4px;
    background-image: url(../images/an.png);
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    width: 1.33333333em;
    line-height: 1em;
}
.select-list {
    max-height: 300px;
    overflow-x: scroll;
}

    .select-list::-webkit-scrollbar {
        width: 0px;
    }

    .select-list::-webkit-scrollbar-track {
        box-shadow: inset 0 0 0px transparent;
        border-radius: 0px;
    }

    .select-list::-webkit-scrollbar-thumb {
        background: transparent;
        border-radius: 0px;
    }


.pagination-wrp{
    margin-top:24px;
}
    .pagination-wrp select {
        background-color: #E8E7E6;
    }

.head-part{
    padding:12px 24px;
}

    .head-part .input-wrp {
        margin:0;
    }

.select-container {
   position:relative;
}
    .select-container .select-list {
        position: absolute;
        z-index: 2;
        background: #fff;
        width: 100%;
        padding-top: 20px;
        overflow-y: scroll;
        overflow-x: hidden;
        border: 1px solid #E8E7E6;
       border-top: transparent;
       top:43px;
       max-height:250px;
       display:none;
       
    }
     .select-container .select-list.active{
         display:block;
     }

    .select-container .select-list li {
        padding: 8px 12px;
    }
    



.booking-input {
    height: 46px;
    width: 100%;
    border: none;
    border-radius: 8px;
}

    .booking-input:focus-visible {
        border: none;
        box-shadow: none;
        outline: none;
    }


.booking-label {
    position: absolute;
    top: 25px;
    left: 12px;
    pointer-events: none;
    transition: 0.3s;
    font-size: 16px;
    color: #8C8780;
    transform: translateY(-50%);
    background-color: #fff;
}


.booking-input:required:read-only + .bookinglabel,
.booking-input:valid  + .booking-label {
    top: 0;
    font-size: 14px;
    color: #8C8780;
    background-color: #fff;
}
.booking-input:read-only.valid + .booking-label {
    top: 0;
}

    .booking-input:focus + .booking-label, .booking-input:valid + .booking-label, .booking-input:not(:placeholder-shown) + .booking-label {
    font-size: 14px;
    color: #8C8780;
    background-color: #fff;
}


.select-booking {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0 40px 0 12px;
    background: url(../images/drop-down.svg) center right 10px no-repeat;
    background-size: 20px;
    width: 100%;
    height: 48px;
    border: 1px solid #E8E7E6;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    background-color: #fff;
    display: flow-root;
    align-items: center;
}



.tooltip {
    position: relative;
    display: inline-block;
    padding-left: 10px;
    pointer-events: all;
    cursor: pointer;
}

    .tooltip .tooltiptext {
        visibility: hidden;
        width: -moz-max-content;
        width: max-content;
        background-color: #FFFCF8;
        font-size: 12px;
        text-align: center;
        padding: 4px;
        border-radius: 4px;
        position: absolute;
        z-index: 1;
        bottom: 140%;
        left: 71%;
        transform: translate(-50%);
        opacity: 0;
        transition: opacity 0.3s;
    }

        .tooltip .tooltiptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -12px;
            border-width: 12px;
            border-style: solid;
            border-color: #FFFCF8 transparent transparent transparent;
        }

    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }
.dob-label{
    padding-right: 24px;
}


.active-input {
    background-color: #FEF7F7;
    border: 1px solid #EB5757;
}

.active-input.active {
        background-color: #F4FBF7;
        border: 1px solid #27AE60;
}



.account-information {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

    .account-information.active {
        border-top: 1px solid #E8E7E6;
        padding-top: 24px;
    }

    .account-information .left-part {
        width: calc(100% - 84px);
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .account-information .right-part {
        width: 100px;
        display: flex;
        align-items: center;
        gap: 4px;
        justify-content: center;
    }

        .account-information .right-part button {
            background-color: transparent;
            border: none;
            width: 28px;
        }

    .account-information .form-col {
        width: calc(50% - 12px) !important;
    }


.orgTeamMember-input {
    height: 46px !important;
    border: none !important;
}

.coustom-select {
    border: 1px solid #FFA11A;
    background-color: #FFFCF8;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.select-dropdown {
    position: relative;
    display: inline-block;
    max-width: 100%;
    padding-left: 80px;
}

.select-dropdown__button {
    background-color: transparent;
    color: #8C8780;
    border: none;
    cursor: pointer;
    width: 130px;
    text-align: left;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 3px;
}

    .select-dropdown__button::focus {
        outline: none;
    }

    .select-dropdown__button .down-angel {
        padding: 5px 12px 0 0;
    }

.select-dropdown__list {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    max-height: 300px;
    overflow: auto;
    margin: 0;
    padding: 0;
    list-style-type: none;
    opacity: 0;
    pointer-events: none;
    transform-origin: top left;
    transform: scale(1, 0);
    transition: all ease-in-out 0.3s;
    z-index: 2;
    top: 100%;
    border: 1px solid #E8E7E6;
    border-radius: 0 0 8px 8px;
}

    .select-dropdown__list.active {
        opacity: 1;
        pointer-events: auto;
        transform: scale(1, 1);
    }

.select-dropdown__list-item {
    display: block;
    list-style-type: none;
    padding: 10px 15px;
    background: #FFFCF8;
    border-top: 1px solid #e6e6e6;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
    color: #616161;
    transition: all ease-in-out 0.3s;
}

.select-dropdown .search-wrp {
    padding: 4px;
    background-color: #FFFCF8;
}

.select-dropdown .search-box input {
    height: 32px;
    background-color: #FFFCF8;
}

.multi-select .star-icon {
    display: inline-block;
    width: 7px;
}

.multi-SelectSpan {
    padding: 6px 8px;
    border-radius: 60px;
    border: 1px solid #F4FBF7;
    background-color: #f9f9f9;
    font-size: 12px;
    color: #5E574D;
}
.multi-SelectSpan, .select-Span {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.multi-select .select-dropdown__button .down-angel {
    padding: 5px 0px 0 0;
}
.multi-select .select-dropdown__list-item {
    background-color: #fff;
}
.multi-select .select-dropdown .search-wrp{
    background-color:#fff;
}
.multi-select .select-dropdown .search-box input {
    background-color: #fff;
}
.multi-select {
    width: 100%;
    position: relative;
    width: 100%;
    padding: 0 12px;
    height: unset;
    min-height:48px;
    border: 1px solid #E8E7E6;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    background-color: #fff;
}
    .multi-select.active .input-label {
        position: absolute;
        top: -10px;
        background-color: #fff;
        transition: all 0.3s;
    }
    .multi-select .select-dropdown {
        width: 100%;
        padding-left:12px;
    }
    .multi-select .select-dropdown .select-dropdown__button {
        width: 100%
    }

.postal-code .primary-btn {
    position: absolute;
    top: 4px;
    right: 5px;
}

.postal-code .input-container {
    position: relative;
}

    .postal-code .input-container input {
        padding: 0 92px 0 12px;
    }




.input-wrp .input-container .input-field.flatpickr-input.valid + .input-label {
    top: 0;
}
.input-wrp .input-container .input-field.flatpickr-input + .input-label {
    top: 25px;
}



.timeicon {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0 40px 0 12px;
    background: url(../images/time-icon.svg) center right 12px no-repeat;
    background-size: 20px;
    width: 100%;
    height: 40px;
    border: 1px solid #E8E7E6;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    background-color: #fff;
    display: flex;
    align-items: center;
}



.input-wrp .input-container .input-field.PostCode.valid + .input-label {
    top: 0;
}

.input-wrp .input-container .input-field.PostCode + .input-label {
    top: 25px;
}

.territoryManagerRow .right-part {
    width: 56px;
    display: flex;
    align-items: center;
    margin-top: 6px;
}
.territoryManagerRow .left-part {
    width: calc(100% - 80px);
    display:flex;
    justify-content:space-between;

}

.down-angel img {
    max-width: 100% !important;
    overflow: hidden !important;
    vertical-align: top !important;
}


.input-wrp .bule-success input {
    background: url(../images/blue-success.svg) center right 12px no-repeat;
    padding: 0 42px 0 12px !important;
    background-color: #fff !important;
}

.postal-Code .primary-btn {
    position: absolute;
    top: 4px;
    right: 5px;
}

.postal-Code .input-container {
    position: relative;
}

    .postal-Code .input-container input {
        padding: 0 92px 0 12px;
    }


.filter-checkbox .custom-checkbox {

    padding-left:24px;

}

.filter-checkbox{
    padding:0 8px;
}

.member-popup .form-content {
    padding: 12px 24px !important ;
}

.stats-header {
    border-top: 1px solid #E8E7E6;
}
.new-member-popup {
    padding: 12px 24px !important;
}

.policyText ul, .policyText ol{
    padding-left: 40px;
    padding-top:12px;
}


.policyText li{
    list-style:disc;
}

.policyText p {
    padding: 8px 0;
}

.policyText{
    text-align :left;
}
    .policyText .table table {
        display: table;
        border-collapse: separate;
        box-sizing: border-box;
        text-indent: initial;
        unicode-bidi: isolate;
        border-spacing: 2px;
        border-color: gray;
    }

    .policyText .table th {
        border: 1px solid #8C8780;
        padding: 8px;
        text-align: center;
        color: #190F00;
    }

        .policyText .table td {
            border: 1px solid #8C8780;
            padding: 8px;
            text-align: center;
            color: #190F00;
            min-width: 80px;
        }

.ck.ck-content.ck-editor__editable.ck-rounded-corners.ck-editor__editable_inline.ck-blurred {
    height: auto;
}
.ck-content {
    min-height: 300px !important;
    height: auto !important;
}

.ck.ck-balloon-panel.ck-balloon-panel_visible {
    display: none !important;
}

.postCodeUl li {
    text-align: left;
    padding: 10px 10px;
    border-bottom: 1px solid #E8E7E6;
  
}
.postCodeUl {
    border-radius: 8px;
}


.flex-end{
    justify-content:end;
}

.flatpickr-month .numInputWrapper {
    top: -22px;
    left: 75px;
}

.custom-date{
    position:relative;
}

    .custom-date .calender-icon{
        position:absolute;
        right:20px;
        top:20px;
    }

    .custom-date input {
        height: 82px !important;
    }

#customDiv .input-label{
    top:0px !important;
}

.dob-pos {
    top: 22px !important;
}

.Custom-checkBox {
    position: relative;
}

    .Custom-checkBox .InputCheckBox {
        position: absolute;
        right: 20px;
        top: 0px;
        width:20px;
    }

.input-wrp .input-container .Custom-checkBox + .input-label {
    top: 0;
    font-size: 14px;
    color: #8C8780;
    background-color: #fff;
}



.MemberCard .error input {
    background: url(../images/error-icon.svg) center right 50px no-repeat;
    background-color: #FEF7F7 !important;
    border-color: #EB5757 !important;
    padding: 0 42px 0 12px !important;
}

.MemberCard .success input {
    background: url(../images/success-icon.svg) center right 50px no-repeat;
    padding: 0 42px 0 12px !important;
    background-color: #fff !important;
}
.filter-section .DateRange {
    width: 292px;
}



.view-btn, .delet-btn, .edit-btn {
    position: relative; /* Needed to position the tooltip correctly */
}

    .view-btn::after {
        content: "View";
        visibility: hidden;
        width: max-content;
        background-color: #FFFCF8;
        font-size: 12px;
        text-align: center;
        padding: 4px;
        border-radius: 4px;
        position: absolute;
        z-index: 1;
        bottom: 150%;
        left: 71%;
        transform: translate(-50%);
        opacity: 0;
        transition: opacity 0.3s;
    }
.delet-btn::after {
    content: "Remove";
    visibility: hidden;
    width: max-content;
    background-color: #FFFCF8;
    font-size: 12px;
    text-align: center;
    padding: 4px;
    border-radius: 4px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 71%;
    transform: translate(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}
.edit-btn::after {
    content: "Edit";
    visibility: hidden;
    width: max-content;
    background-color: #FFFCF8;
    font-size: 12px;
    text-align: center;
    padding: 4px;
    border-radius: 4px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 71%;
    transform: translate(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}
.view-btn:hover::after, .edit-btn:hover::after, .delet-btn:hover::after {
    visibility: visible;
    opacity: 1;
}
.form-wrapper .member-type .member-form-wrp .form-row .EntryType-width {
    width: calc(100% - 104px);
}

.form-wrapper .member-type .member-form-wrp .form-row .entryType-actions {
    width: 86px;
}