@import url('./fonts.css');

:root {
    --clr-logo: #1C1C1C;
    --clr-gry5: #555555;
    --clr-gry6: #666666;
    --clr-gry59: #595959;
    --clr-pink: #D90865;
    --clr-red1: #DF1414;
    --clr-pink-400: #FFEEEE;
    --clr-lightpink: #FBF2F6;
    --clr-grey1: #E2E2E2;
    --clr-grey2: #9F9F9F;
    --clr-373737: #373737;
    --clr-292929: #292929;
    --clr-5c5c5c: #5c5c5c;
    --clr-F1F1F1: #F1F1F1;
    --clr-773EC8: #773EC8;

    --site-container-width: 1380px;
}

html {
    --inline-start: left;
    --inline-end: right;
}

html[dir="rtl"] {
    --inline-start: right;
    --inline-end: left;
}

/* *, *::after, *::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
} */

/* html{
    font-size: 0.9rem;
} */

@media(max-width: 1600px) {
    html {
        /* font-size: 0.75rem; */
        font-size: 0.85rem;
    }
}

body {
    font-size: 1rem;
    font-family: var(--ff-body);
}


body.bounded {
    overflow: hidden;
}



h1,
h2,
h3,
h4,
h5,
h6,
li,
p,
ul {
    font: inherit;
    font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
li,
p,
ul,
td {
    word-wrap: break-word;
    /* legacy support */
    overflow-wrap: break-word;
    /* modern standard */
    word-break: break-word;
    /* force break anywhere if needed */
}

button {
    background-color: transparent;
    border: none;
    outline: none;
}

input,
select,
textarea {
    font-size: 1rem;
    line-height: 2;
    resize: none;
}

textarea:hover,
textarea:focus,
textarea:active {
    outline: none;
    box-shadow: none;
}

input:hover,
input:active,
input:focus {
    outline: none;
    box-shadow: none;
}

select:hover,
select:active,
select:focus {
    outline: none;
    box-shadow: none;
}

input[type=number] {
    -moz-appearance: textfield;
    /*For FireFox*/
}

input[type=number]::-webkit-inner-spin-button {
    /*For Webkits like Chrome and Safari*/
    -webkit-appearance: none;
    margin: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: inherit;
    transition: background-color 5000s ease-in-out 0s;
}


img {
    max-width: 100%;
    height: auto;
}

label {
    margin: 0;
}

hr.X2 {
    margin: 1.5rem 0;
}

textarea.form-control {
    height: auto;
}

.nowrap {
    white-space: nowrap !important;
}

.pointer-events-none {
    pointer-events: none;
}

.fixed-width {
    width: var(--tbl-fixed-width);
}

.table-fixed {
    table-layout: fixed;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.grid-col-fluid {
    grid-column: 1/-1;
}

/* ---------------------- */
.page-container {
    display: block;
    padding-inline-start: 2rem;
    padding-inline-end: 2rem;
}

.site_container {
    width: 100%;
    max-width: var(--site-container-width);
    padding-inline: 15px;
    margin-inline: auto;
}


.owl-carousel .owl-stage {
    padding-inline-start: 0 !important;
}

/* ---------------------- */

.ff-body {
    font-family: var(--ff-body);
}

.ff-heading {
    font-family: var(--ff-heading);
}

.bg--F1F1F1 {
    background: var(--clr-F1F1F1) !important;
}

.bg--F8F8FF {
    background: #F8F8FF !important;
}


.bg--lightPink {
    background: #FEF7F7 !important;
}

.bg--pink {
    background: var(--clr-pink) !important;
}

.bg--pink-400 {
    background: var(--clr-pink-400) !important;
}


.border--pink-400 {
    border-color: var(--clr-pink-400) !important;
}



.text-pink {
    color: var(--clr-pink) !important;
}

.c--773EC8 {
    color: var(--clr-773EC8) !important;
}

.c--4C4C4C {
    color: #4C4C4C !important;
}

.c--8E8E8E {
    color: #8E8E8E !important;
}

.c--626262 {
    color: #626262 !important;
}

.c--logo {
    color: var(--clr-logo) !important;
}

.c--inherit {
    color: inherit !important;
}

.c--pink {
    color: var(--clr-pink);
}

.hvr\:c--pink:hover {
    color: var(--clr-pink) !important;
}

.c--darkPink {
    color: #D84385;
}

.c--4A4A4A {
    color: #4A4A4A !important;
}

.c--515151 {
    color: #515151;
}

.c--c9c9c9 {
    color: #c9c9c9;
}

.c--6B6B6B {
    color: #6B6B6B;
}

.c--595959 {
    color: var(--clr-gry59);
}

.c--red1 {
    color: var(--clr-red1);
}

.c--grey2 {
    color: #737373;
}

.bg--pink {
    background-color: var(--clr-pink) !important;
}

.bg-success-subtle-2 {
    background-color: #d1e7dd6e !important;
}

.c--373737 {
    color: var(--clr-373737);
}

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


.c--292929 {
    color: var(--clr-292929);
}

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

.c--5c5c5c {
    color: var(--clr-5c5c5c);
}

.bg--5c5c5c {
    background-color: var(--clr-5c5c5c);
}


/* ---------------------- */
.fs-18 {
    font-size: 1.125rem !important;
}

.fs-14 {
    font-size: 0.875rem !important;
}

.fs-12 {
    font-size: 0.75rem !important;
}

/* ---------------------- */


.text-right {
    text-align: end;
}

.text-left {
    text-align: start;
}

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

/* ---------------------- */

.mr-auto {
    margin-inline-end: auto !important;
}

.ml-auto {
    margin-inline-start: auto !important;
}

.ml-0 {
    margin-inline-start: 0 !important;
}


.my-4x {
    margin-block: 2rem !important;
}

.pl-0 {
    padding-inline-start: 0 !important;
}

.pr-0 {
    padding-inline-end: 0 !important;
}

.flow-rootx3>*+* {
    margin-top: 0.25rem;
}

.flow-rootx2>*+* {
    margin-top: 0.5rem;
}

.flow-rootx>*+* {
    margin-top: 0.75rem;
}

.flow-root>*+* {
    margin-top: 1rem;
}

.flow-rootX>*+* {
    margin-top: 1.5rem;
}

.flow-rootX2>*+* {
    margin-top: 2rem;
}

.flow-rootX3>*+* {
    margin-top: 3rem;
}

.flow-rootX4>*+* {
    margin-top: 4rem;
}

.flow-rootX5>*+* {
    margin-top: 5rem;
}

/* ---------------------- */

.justify-items-start {
    justify-items: start;
}

/* ---------------------- */
.tooltip {
    font-family: inherit;
}

.z-11111 {
    z-index: 11111 !important;
}

/* ---------------------- */


.modal--style {
    /* --bs-modal-width: 37.5rem; */
    --bs-modal-width: 42rem;
    --bs-modal-padding: 1.5rem;
    --bs-modal-header-padding: 1.5rem 1.5rem 1rem 1.5rem;
    --bs-modal-border-radius: 1rem;
    --bs-modal-header-border-color: transparent;
}

.modal--style .modal-title {
    font-size: 1.45rem;
    font-weight: 500;
    color: #1C1C1C;
}


.modal--style .modal-titlex {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1C1C1C;
}

.heading-semiBold,
.modal--style .modal-titleBold {
    font-size: 2.625rem;
    font-weight: 700;
    line-height: 1.25;
}


.subheading-normal,
.modal--style .modal-subtitle {
    font-size: 1.125rem;
    color: #6a6a6a;
    line-height: 1.5;
}

.subheading-normal {
    line-height: 1.5;
}

.modal-btn-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-btn-grid .btn {
    --bs-btn-padding-x: 2em;
    --bs-btn-padding-y: 1em;
    --bs-btn-font-size: 1.125rem;
    --bs-btn-font-weight: 500;
    --bs-btn-line-height: 1;
}

.modal--style .modal-header {
    align-items: flex-start;
}

.modal--style .modal-header-content {
    margin-top: 1.5rem;
}

.modal--style .modal-header-content .modal-title+.modal-subtitle {
    margin-top: 0.25em;
}

.modal--style .btn-close {
    --bs-btn-close-opacity: 1;
    --bs-btn-close-hover-opacity: 1;
}

.modal-inner-content {
    width: 100%;
    max-width: var(--bs-modal-width);
    margin-inline-start: auto;
    margin-inline-end: auto;
}

.modal-dialog-centered .modal-inner-content {
    margin: auto;
}

/* ---------------------- */

.btn-rounded-close,
.btn-rounded-back {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.btn-rounded-close {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjkiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAyOSAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNC45Mzc1IDIuODEyNUMxNy4zNDggMi44MTI1IDE5LjcwNDMgMy41MjcyOCAyMS43MDg1IDQuODY2NDZDMjMuNzEyNyA2LjIwNTY0IDI1LjI3NDggOC4xMDkwNyAyNi4xOTczIDEwLjMzNkMyNy4xMTk3IDEyLjU2MyAyNy4zNjExIDE1LjAxMzUgMjYuODkwOCAxNy4zNzc3QzI2LjQyMDYgMTkuNzQxOCAyNS4yNTk4IDIxLjkxMzQgMjMuNTU1NCAyMy42MTc5QzIxLjg1MDkgMjUuMzIyMyAxOS42NzkzIDI2LjQ4MzEgMTcuMzE1MiAyNi45NTMzQzE0Ljk1MSAyNy40MjM2IDEyLjUwMDUgMjcuMTgyMiAxMC4yNzM2IDI2LjI1OThDOC4wNDY1OCAyNS4zMzczIDYuMTQzMTUgMjMuNzc1MiA0LjgwMzk3IDIxLjc3MUMzLjQ2NDc5IDE5Ljc2NjggMi43NTAwMSAxNy40MTA1IDIuNzUwMDEgMTVDMi43NTE1IDExLjc2ODEgNC4wMzYwMSA4LjY2OTA2IDYuMzIxMjkgNi4zODM3OEM4LjYwNjU2IDQuMDk4NTEgMTEuNzA1NiAyLjgxMzk5IDE0LjkzNzUgMi44MTI1Wk0xNC45Mzc1IDAuOTM3NUMxMi4xNTYyIDAuOTM3NSA5LjQzNzM3IDEuNzYyMjUgNy4xMjQ4IDMuMzA3NDZDNC44MTIyMyA0Ljg1MjY3IDMuMDA5ODEgNy4wNDg5MyAxLjk0NTQ1IDkuNjE4NTFDMC44ODEwOTMgMTIuMTg4MSAwLjYwMjYwOSAxNS4wMTU2IDEuMTQ1MjEgMTcuNzQzNUMxLjY4NzgyIDIwLjQ3MTMgMy4wMjcxNCAyMi45NzcgNC45OTM4MiAyNC45NDM3QzYuOTYwNDkgMjYuOTEwNCA5LjQ2NjE5IDI4LjI0OTcgMTIuMTk0IDI4Ljc5MjNDMTQuOTIxOSAyOS4zMzQ5IDE3Ljc0OTQgMjkuMDU2NCAyMC4zMTkgMjcuOTkyMUMyMi44ODg2IDI2LjkyNzcgMjUuMDg0OCAyNS4xMjUzIDI2LjYzIDIyLjgxMjdDMjguMTc1MyAyMC41MDAxIDI5IDE3Ljc4MTMgMjkgMTVDMjguOTk4MyAxMS4yNzA5IDI3LjUxNjEgNy42OTUwOSAyNC44NzkzIDUuMDU4MjNDMjIuMjQyNCAyLjQyMTM4IDE4LjY2NjYgMC45MzkyMzkgMTQuOTM3NSAwLjkzNzVaIiBmaWxsPSJibGFjayIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTEzLjYxMTggMTVMOS41ODcxNCAxOS4wMjQ2QzkuNDE2MzcgMTkuMjAxNSA5LjMyMTg3IDE5LjQzODMgOS4zMjQwMSAxOS42ODQxQzkuMzI2MTUgMTkuOTI5OSA5LjQyNDc0IDIwLjE2NSA5LjU5ODU2IDIwLjMzODhDOS43NzIzOCAyMC41MTI3IDEwLjAwNzUgMjAuNjExMyAxMC4yNTMzIDIwLjYxMzRDMTAuNDk5MSAyMC42MTU1IDEwLjczNiAyMC41MjEgMTAuOTEyOCAyMC4zNTAzTDE0LjkzNzUgMTYuMzI1NkwxOC45NjIxIDIwLjM1MDNDMTkuMDQ4NiAyMC40Mzk4IDE5LjE1MjEgMjAuNTExMiAxOS4yNjY1IDIwLjU2MDRDMTkuMzgwOCAyMC42MDk1IDE5LjUwMzggMjAuNjM1NCAxOS42MjgzIDIwLjYzNjRDMTkuNzUyOCAyMC42Mzc1IDE5Ljg3NjMgMjAuNjEzOCAxOS45OTE1IDIwLjU2NjdDMjAuMTA2NyAyMC41MTk1IDIwLjIxMTQgMjAuNDQ5OSAyMC4yOTk0IDIwLjM2MTlDMjAuMzg3NCAyMC4yNzM5IDIwLjQ1NyAyMC4xNjkyIDIwLjUwNDIgMjAuMDU0QzIwLjU1MTMgMTkuOTM4OCAyMC41NzUgMTkuODE1MyAyMC41NzM5IDE5LjY5MDhDMjAuNTcyOSAxOS41NjYzIDIwLjU0NyAxOS40NDMzIDIwLjQ5NzkgMTkuMzI5QzIwLjQ0ODcgMTkuMjE0NiAyMC4zNzczIDE5LjExMTEgMjAuMjg3OCAxOS4wMjQ2TDE2LjI2MzEgMTVMMjAuMjg3OCAxMC45NzUzQzIwLjQ1ODUgMTAuNzk4NSAyMC41NTMgMTAuNTYxNiAyMC41NTA5IDEwLjMxNThDMjAuNTQ4OCAxMC4wNyAyMC40NTAyIDkuODM0ODggMjAuMjc2MyA5LjY2MTA2QzIwLjEwMjUgOS40ODcyNCAxOS44Njc0IDkuMzg4NjUgMTkuNjIxNiA5LjM4NjUxQzE5LjM3NTggOS4zODQzNyAxOS4xMzkgOS40Nzg4NyAxOC45NjIxIDkuNjQ5NjRMMTQuOTM3NSAxMy42NzQzTDEwLjkxMjggOS42NDk2NEMxMC43MzYgOS40Nzg4NyAxMC40OTkxIDkuMzg0MzcgMTAuMjUzMyA5LjM4NjUxQzEwLjAwNzUgOS4zODg2NSA5Ljc3MjM4IDkuNDg3MjQgOS41OTg1NiA5LjY2MTA2QzkuNDI0NzQgOS44MzQ4OCA5LjMyNjE1IDEwLjA3IDkuMzI0MDEgMTAuMzE1OEM5LjMyMTg3IDEwLjU2MTYgOS40MTYzNyAxMC43OTg1IDkuNTg3MTQgMTAuOTc1M0wxMy42MTE4IDE1WiIgZmlsbD0iYmxhY2siLz4KPC9zdmc+Cg==");
}

.btn-rounded-back {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iMC41IiB5PSIwLjUiIHdpZHRoPSIzMSIgaGVpZ2h0PSIzMSIgcng9IjE1LjUiIGZpbGw9IndoaXRlIi8+CjxyZWN0IHg9IjAuNSIgeT0iMC41IiB3aWR0aD0iMzEiIGhlaWdodD0iMzEiIHJ4PSIxNS41IiBzdHJva2U9IiMxQzFDMUMiLz4KPHBhdGggZD0iTTE3LjY2NiAyMC41ODMzTDEzLjQ5OTMgMTUuOTk5OUwxNy42NjYgMTEuNDE2NiIgc3Ryb2tlPSIjMUMxQzFDIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=");
}

.btn-circle,
.btn-rounded-compact,
.btn-rounded,
.form-control-rounded {
    font-weight: 500;
    font-size: 1rem;
    color: #1C1C1C;
    background-color: #FFFFFF;
    border: 1px solid #C9C9C9;
    border-radius: 100em;
    padding-block: 0.35em;
    padding-inline: 1em;
    /* min-height: 55px; */
}


.btn-circle {
    padding: 0.5em;
    line-height: 1;
}


.btn-rounded-compact,
.btn-rounded {
    background-color: var(--bs-btn-bg, #fff);
    border-color: var(--bs-btn-border-color, #e2e2e2);
    color: var(--bs-btn-color, #1C1C1C);
    display: grid;
    grid-auto-flow: column;
    gap: var(--btn-gap, 0.75em);
    align-items: center;
}


.btn-transparent:hover,
.btn-rounded:hover {
    --bs-btn-bg: #f3f3f3;
    --bs-btn-border-color: #E6E6E6;
}

[role="tablist"] .btn-rounded.active {
    --bs-btn-bg: #1c1c1c;
    --bs-btn-border-color: #1c1c1c;
    --bs-btn-color: #fff;
}

[role="tablist"] .btn-rounded.active img {
    filter: brightness(0) invert(1);
}

.btn-rounded-compact {
    font-weight: 500;
    font-size: 1rem;
    color: #1C1C1C;
    background-color: #FFFFFF;
    border: 1px solid #C9C9C9;
    border-radius: 100em;
    padding-block: 0.25em;
    /* top and bottom */
    padding-inline: 0.25em 1em;
    /* start and end (left and right in LTR) */
}

.btn-rounded-hvr:hover,
.btn-rounded-hvr:focus {
    --bs-btn-bg: #1c1c1c !important;
    --bs-btn-border-color: #1c1c1c !important;
    --bs-btn-color: #fff !important;
}


.btn-lg {
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
    letter-spacing: 0.03em;
    min-height: 54px;
}

.btn-dark {
    --bs-btn-color: #fff;
    --bs-btn-bg: #000;
    --bs-btn-border-color: #000;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #424649;
    --bs-btn-hover-border-color: #373b3e;
    --bs-btn-focus-shadow-rgb: 66, 70, 73;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #4d5154;
    --bs-btn-active-border-color: #373b3e;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #212529;
    --bs-btn-disabled-border-color: #212529;
    border-radius: 30px;
}

.btn-dark:hover {
    --bs-btn-bg: #000000c0;
    --bs-btn-border-color: var(--bs-btn-bg);
}

.btn-gry {
    background-color: #e2e2e2;
    border-radius: 30px;
}

.btn-expand {
    padding-block: 0.65em;
    padding-inline: 2em;
    font-weight: 600;
    border-radius: 30px;
}

.btn-outline {
    border: 1px solid #BBBBBB;
    border-radius: 30px;
}


.btn-outline:hover {
    --bs-btn-bg: #f3f3f3;
}

.btn-outline-currentColor {
    border: 1px solid currentColor;
}


.btn-rounded-full {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--btn-bg, #fff);
    border: 1px solid var(--btn-bg, #CACACA);
    border-radius: 6px;
}

.btn-rounded-full p {
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 150%;
    color: var(--btn-clr, #202020);
}


.btn-rounded-full span {
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    color: var(--btn-clr, #7E7E7E);
}

.btn-rounded-full:hover {
    --btn-bg: #1c1c1c;
    --btn-clr: #fff;
}

.btn.btn-outline-square {
    --bs-btn-font-size: 1.125rem;
    --bs-btn-padding-x: 1em;
    --bs-btn-padding-y: 1em;
    --bs-btn-font-weight: 500;
    --bs-btn-border-color: #C9C9C9;
    --bs-btn-color: #404040;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: var(--btn-gap, 1em);
}

.btn.btn-outline-square:hover,
.btn.btn-outline-square.active,
.btn.btn-outline-square[aria-expanded="true"] {
    --bs-btn-bg: #FEF7F7;
    --bs-btn-border-color: var(--clr-pink);
}

.btn.btn-outline-square.active {
    background-image: url('./../img/icons/ico-chk-pink.svg');
    background-repeat: no-repeat;
    background-position: center right 120px;
    background-size: 1.2rem;
    border-width: 1.5px;
}

.btn-compactY {
    --bs-btn-padding-x: 1em;
    --bs-btn-padding-y: 0.05em;
    --bs-btn-font-size: 1rem;
    --bs-btn-line-height: 1;
}

/* ---------------------- */

.link-underline {
    border-bottom: 1px solid currentColor;
}

.link--pink {
    display: inline-block;
    color: var(--clr-pink);
}

.link--pink:hover {
    color: var(--clr-logo);
}




/* Base reset */
.input-range-cover {
    overflow: hidden;
}

.input-range-cover input[type=range] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: transparent;
    cursor: pointer;
}

/* === WebKit (Chrome, Safari) === */
.input-range-cover input[type=range]::-webkit-slider-runnable-track {
    height: 6px;
    background: lightgrey;
    border-radius: 3px;
    position: relative;
}

/* Use box-shadow for the fill effect */
.input-range-cover input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 16px;
    width: 16px;
    background: var(--clr-logo);
    border-radius: 50%;
    margin-top: -5px;
    position: relative;
    z-index: 2;
    /* Fills the track up to the thumb with black */
    box-shadow: -100px 0 0 100px var(--clr-logo), 0 0 2px rgba(0, 0, 0, 0.6);
}

/* === Firefox (Gecko) === */
.input-range-cover input[type=range]::-moz-range-track {
    height: 6px;
    background: lightgrey;
    border-radius: 3px;
}

.input-range-cover input[type=range]::-moz-range-progress {
    background: var(--clr-logo);
    height: 6px;
    border-radius: 3px;
}

.input-range-cover input[type=range]::-moz-range-thumb {
    height: 16px;
    width: 16px;
    background: var(--clr-logo);
    border-radius: 50%;
    border: none;
}


@supports (not (-moz-appearance: none)) {
    .input-range-cover {
        position: relative;
    }

    .input-range-cover::before,
    .input-range-cover::after {
        content: '';
        background: #ffffff;
        position: absolute;
        inset-inline-start: 0;
        inset-inline-end: 0;
        z-index: 11;
        pointer-events: none;
    }

    .input-range-cover::before {
        top: 0;
        height: 10px;
    }

    .input-range-cover::after {
        bottom: 0;
        height: 6px;
    }
}



.form-search {
    width: 25em;
    flex: 0 0 25em;
    background-image: url(./../img/icons/ico-search.svg);
    background-repeat: no-repeat;
    background-position: 0.85em center;
    padding-inline-start: 2.85em !important;
    background-size: 1.15em;
}

.form-group {
    display: block;
}

.form-group:not(:last-child) {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    color: #1c1c1c;
    font-size: 1rem;
    font-weight: 500;
}

.form-control,
.form-select {
    display: block;
    font-size: var(--frm-control-font-size, 1rem);
    font-weight: var(--frm-control-font-weight, 500);
    color: #1D1D1D;
    border: 1px solid var(--frm-control-border, #b7b7b7);
    height: 3em;
    padding-block: 0.5em;
    padding-inline: 1em;
    border-radius: 0.2em;
    box-shadow: none !important;
    border-radius: 10px;
}

.form-control:focus,
.form-select:focus {
    border-color: #1D1D1D;
}

.form-select {
    padding-inline-end: 1.8rem;
}


input[type="hidden"].flatpickr-input+.input:not(.search_block .input),
input[type="text"].flatpickr-input {
    background-image: url('./../img/icons/ico-calendar3.svg');
    background-repeat: no-repeat;
    background-position: center var(--inline-end) 1em;
    background-size: 1.25em;
    padding-inline-end: 3em;
}


.filed-with-icon {
    display: block;
    position: relative;
}

.filed-with-icon .icon {
    background-color: transparent;
    border: none;
    outline: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    height: 2.95rem;
    width: 48px;
    font-size: 22px;
    cursor: pointer;
    z-index: 1;
}

.filed-with-icon .form-control,
.filed-with-icon .form-select {
    padding-inline-end: 48px;
}

.form-rember {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}


.form-check {
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-check .form-check-input {
    border: 1px solid #999;
}

.form-tbl-check {
    color: #1c1c1c;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 500;
    padding: 0;
}

.form-check-lg {
    --bs-border-color: #b7b7b7;
    font-size: 1rem;
}

.form-check-lg .form-check-input {
    width: 1.25em;
    height: 1.25em;
    margin-inline-end: 0.5em;
}

.form-check-lg .form-check-sub-label {
    display: block;
    margin-inline-start: 2.25em;
    margin-block-start: 0.25em;
}

.checkbox-toggle-div {
    display: none;
}


.form-check input[type="checkbox"]:checked~.checkbox-toggle-div {
    display: block;
}

.form-check input[type="checkbox"]:checked~.checkbox-hide-div {
    display: none;
}

@media(max-width: 1600px) {

    .form-check,
    .form-tbl-check {
        font-size: 1rem;
    }
}


.form-tbl-check .form-check-input {
    border: 1px solid #1c1c1c;
}


.frm-link {
    display: inline-flex;
    font-size: 0.875rem;
    line-height: 1.15;
    font-weight: 500;
    text-align: start;
    color: #1c1c1c;
}

.form-txt {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    line-height: 1.15;
    font-weight: 500;
}

.form-txt a {
    display: inline-block;
    color: var(--clr-pink);
    margin: 0;
    margin-inline-start: 6px;

}

.form-txt a:hover {
    text-decoration: underline;
}

.images-preview-div .preview img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.images-preview-div .preview {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}

.dropdown-style--1 {
    background: #efefef;
    padding: 0.5em;
    border-radius: 0.5em;
}

.dropdown-style-0 .dropdown-menu {
    --bs-dropdown-padding-x: 0;
    --bs-dropdown-padding-y: 0;
    --bs-border-width: 0;
}


.dropdown-style-1 .dropdown-menu,
.dropdown-style-2 .dropdown-menu {
    --bs-dropdown-item-padding-x: 1em;
    --bs-dropdown-item-padding-y: 0.5em;
    --bs-dropdown-link-hover-bg: #f2f2f2;
    --bs-dropdown-link-active-bg: #f2f2f2;
    --bs-dropdown-link-active-color: inherit;
}


.dropdown-style-1 .dropdown-menu {
    padding: 0.5em;
    --bs-dropdown-min-width: 13rem;
}

.dropdown-with-icon .dropdown-item img {
    width: 1.15em;
    margin-inline-end: 0.75em;
    vertical-align: sub;
}

.dropdown-style-2 .dropdown-menu {
    padding: 1em;
    --bs-dropdown-min-width: 15rem;
}

.notification-dropdown.dropdown-menu {
    --bs-dropdown-min-width: 20rem;
    padding: 1rem;
    max-height: 25rem;
    overflow: auto;
    top: 1.5rem !important;
}

.dropdown-select .btn[data-bs-toggle="dropdown"],
.dropdown-select .btn-rounded[data-bs-toggle="dropdown"] {
    /* padding: 0.35em 2.5em 0.3em 0.35em !important; */
    padding-block: 0.35em !important;
    padding-inline: 1em 2.5em !important;
    background-size: 0.7em;
    background-position: center var(--inline-end) 1em;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDEyIDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDEuNUw2IDYuNUwxMSAxLjUiIHN0cm9rZT0iIzFDMUMxQyIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K");
}

.dropdown-select .dropdown-item {
    padding-inline-end: 5em;
}

.dropdown-select .dropdown-item.selected {
    background-size: 1em;
    background-position: center var(--inline-end) 1em;
    background-repeat: no-repeat;
    background-image: url('./../img/icons/ico-chk-pink.svg');
}



.form-radio-style-rounded label {
    display: block;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    cursor: pointer;
}

.form-radio-style-rounded .radio-toggle-div {
    display: none;
    margin-inline-start: 2.5rem;
}

.form-radio-style-rounded input[type="checkbox"],
.form-radio-style-rounded input[type="radio"] {
    position: absolute;
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
}

.form-radio-style-rounded label>span {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.85em;
    align-items: start;
    color: #4A4A4A;
}

.form-radio-style-rounded label>span::before {
    content: '';
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    border: 1px solid currentColor;
}


.form-radio-style-rounded input:checked~span::before {
    border: 0.5em solid var(--clr-pink);
}

.form-radio-style-rounded input:checked~.radio-toggle-div {
    display: block;
}

.form-radio-new-style label:has(input:checked) {
    --bs-border-color: var(--clr-pink);
    background: #FEF7F7 !important;
}


.rating_block-rounded {
    padding-block: 0.25em;
    padding-inline: 1em;
    background: #FFFFFF;
    border: 1px solid var(--ratingBrdrClr, #C9C9C9);
    border-radius: 100em;
}

.rating_block {
    display: grid;
    align-items: center;
    grid-auto-flow: column;
    justify-content: start;
    gap: 0.2em;
}

.rating_block.rating_block img {
    display: block;
    width: 1.15em;
}

.rating_block.rating_block p {
    font-weight: 700;
    color: #262626;
}

.rating_block.rating_block span {
    color: var(--clr-pink);
}

.opac-5 {
    opacity: 0.6 !important;
}

/* ------------------------------------- */

@keyframes animOpac {
    0% {
        opacity: 0;
        transform: translateX(10px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ------------------------------------- */

.tag-capsule {
    display: inline-flex;
    font-size: 1.125rem;
    font-weight: 500;
    padding-block: 0.5em;
    padding-inline: 1.75em;
    gap: 0.5em;
    box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.14);
}

/* ------------------------------------- */

.link-rounded {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    width: 2em;
    height: 2em;
    border-radius: 100px;
    color: #1C1C1C;
    transition: 500ms;
}

.link-rounded:hover {
    background-color: #F4F4F4;
}

.link-rounded.user {
    background-color: #F4D3E2;
    color: var(--clr-pink);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
}



.tag {
    display: inline-block;
    font-size: 0.875rem;
    padding-block: 0.5em;
    padding-inline: 1em;
    border-radius: 100em;
    font-weight: 500;
    line-height: 1;
}

.tag-checked {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxNiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE1LjQ5OTMgMS4zMzMyTDUuNDk5MzUgMTEuMzMzMkwwLjkxNjAxNiA2Ljc0OTg3TDIuMDkxMDIgNS41NzQ4N0w1LjQ5OTM1IDguOTc0ODdMMTQuMzI0MyAwLjE1ODIwM0wxNS40OTkzIDEuMzMzMloiIGZpbGw9ImJsYWNrIi8+Cjwvc3ZnPgo=);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    vertical-align: middle;
    margin-inline-end: 0.5em;
}

.tag.tag-compact {
    font-size: 10px;
    padding-block: 0.3em;
    padding-inline: 1em;
}

.tag-grn {
    color: #043b11;
    background: #d5fdde;
}


.tag-light-grn {
    color: #4AA533;
    background: #DDFFD5;
}

.tag-red {
    color: rgb(149, 0, 25);
    background: #f1e0e4;
}

.tag-orange {
    color: #953400;
    background: #ffece2;
}


@keyframes animBtmToTop {
    0% {
        transform: translateY(30%);
        opacity: 0;
    }

    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

.btn--closeBlk {
    width: 3em;
    height: 3em;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('./../img/icons/ico-close.svg');
}

/* COMMON FOR USER AND SERVICE PROVIDER */
.dashboard-header .dash-logo img {
    display: block;
    height: 18px;
    width: auto;
}

.dashboard-header {
    background-color: #fff;
    border-bottom: 1px solid rgba(216, 216, 216, 1);
    box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.dashboard-header .page-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 1rem;
    padding-inline: 2rem;
    gap: 2rem;
}

/* ./COMMON FOR USER AND SERVICE PROVIDER */

body .pac-container {
    z-index: 1111;
    font-family: inherit;
}


.filter-white {
    filter: brightness(0) invert(1);
}


.filter-black {
    filter: grayscale(100%) brightness(0%) contrast(100%);
}

body .iti {
    display: block;
}

/* STAR RATINGS */
.rating {
    display: inline-block;
    position: relative;
    height: 50px;
    line-height: 50px;
    font-size: 50px;
}

.rating label {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    height: 100%;
    cursor: pointer;
}

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

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

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

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

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

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

.rating label input {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    opacity: 0;
}

.rating label .icon {
    float: left;
    color: transparent;
}

.rating label:last-child .icon {
    color: #DEDEDE;
}

.rating:not(:hover) label input:checked~.icon,
.rating:hover label:hover input~.icon {
    color: #1C1C1C
}

.rating label input:focus:not(:checked)~.icon:last-child {
    color: #DEDEDE;
    text-shadow: 0 0 5px #1C1C1C;
}


.progress,
.progress-stacked {
    --bs-progress-bg: var(--clr-lightpink);
    --bs-progress-bar-bg: var(--clr-pink);
}

/*  TOUR GUIDE JS CUSTOMIZATION*/
.ts-tour-div {
    position: fixed;
    inset-inline-start: 15px;
    inset-block-end: 1rem;
    z-index: 1111;
    text-align: center;
    cursor: pointer;
}


.service-provider-page .ts-tour-div {
    inset-inline-start: auto;
    inset-inline-end: 15px;
}

@media(min-width: 992px) {
    .service-provider-page .dashboard-body>.dash-right-container {
        padding-block-end: 12rem;
    }
}

.ts-tour-div figure {
    max-width: 4rem;
    display: inline-block;
}

.ts-tour-div figure svg {
    max-width: 100%;
    height: auto;
    transform: translateY(10px);
    animation: figAnim 1s ease-in-out alternate-reverse infinite;
}

.ts-tour-div p {
    font-size: 0;
}

body .tg-grid {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 1rem;
    /* padding: 1.5rem; */
}

body .tg-grid figure svg {
    width: 5rem;
    height: auto;
    display: block;
}

body .tg-grid h6 {
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.15;
}

body .tg-grid p {
    font-size: 0.85rem;
    line-height: 1.25;
    font-weight: 300;
    margin-top: 0.75rem !important;
}

body .tg-dialog {
    background: transparent;
    color: #fff;
    z-index: 111111 !important;
}

body .tg-dialog .tg-dialog-header {
    position: fixed;
    left: 15px;
    top: 1rem;
    padding: 0;
}

body .tg-backdrop {
    border: 2px solid var(--clr-pink);
    box-shadow: rgba(43, 43, 43, 0.9) 0px 0px 0px 1000vh !important;
    z-index: 11111;
}

body .tg-dialog .tg-dialog-footer,
body .tg-dialog .tg-arrow {
    display: none !important;
}

.tour-btns {
    margin-top: 0.85rem;
}

body .tg-dialog .tg-dialog-header .tg-dialog-close-btn,
.tour-btn::before {
    width: auto;
    height: auto;
    outline: none;
    border: 1px solid #9f9f9f;
    color: #fff;
    font-size: 0.75rem;
    padding: 0.5em 1em;
    line-height: 1;
    border-radius: 0.2em;
    opacity: 1;
    margin: 0;
}

.tour-btn--next::before {
    background-color: var(--clr-pink);
    border-color: var(--clr-pink);
}

.tour-btn {
    font-size: 0;
}

#tg-dialog-close-btn::before {
    content: 'Skip';
    font-size: 0.8rem;
}

#tg-dialog-close-btn svg {
    display: none;
}


.tg-grid figure {
    text-align: center;
}


.ts-tour-div figure .figShadow,
.tg-grid figure .figShadow {
    display: inline-block;
    width: 25%;
    height: 10px;
    position: relative;
    margin-top: 10px;
    margin-inline-start: 10px;
}

.tg-grid figure .rightHandSvg+.figShadow {
    margin-inline-start: 0;
    margin-inline-end: 10px;
}


.ts-tour-div figure .figShadow::before,
.tg-grid figure .figShadow::before {
    content: '';
    height: 10px;
    background-color: #000000;
    filter: blur(5px);
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    animation: figShadowAnim 1s ease-in-out alternate-reverse infinite;
}


.tg-grid figure svg {
    transform: translateY(10px);
    animation: figAnim 1s ease-in-out alternate-reverse infinite;
}

@keyframes figAnim {
    from {
        transform: translateY(10px);
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


@keyframes figShadowAnim {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(0.25);
    }
}


.leftHand {
    transform-origin: 30% 70%;
    animation: leftHandAnim 1s linear alternate-reverse infinite;
}

.rightHand {
    transform-origin: 60% 80%;
    animation: leftHandAnim 1s linear alternate-reverse infinite;
}



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

    25% {
        transform: rotate(6deg);
        /* Smoother transition towards 0 */
    }

    50% {
        transform: rotate(0deg);
        /* Center position */
    }

    75% {
        transform: rotate(-6deg);
        /* Symmetric transition */
    }

    100% {
        transform: rotate(-18deg);
        /* Final rotation */
    }
}


@media(max-width: 767px) {

    body .tg-dialog .tg-dialog-header .tg-dialog-close-btn,
    .tour-btn::before {
        font-size: 0.8rem;
    }
}

.form-helper-before {
    position: absolute;
    top: 2.8em;
    inset-inline-start: 1em;
    font-weight: 500;
}


.form-helper-before~.form-control {
    padding-inline-start: 5.5ch;
}

.flex-basis-0 {
    flex-basis: 0;
}


.flex-basis-auto {
    flex-basis: auto;
}

.flex-1 {
    flex: 1;
}


@media(max-width: 575px) {
    .flex-mob-1 {
        flex: 1;
    }
}


/* FLATPICKER STYLE OVERWRITE */
.flatpickr-current-month {
    width: auto;
    height: auto;
    display: flex;
    gap: 0.5em;
    font-size: 1.125rem;
    color: #515151;
    padding: 0;
    position: static;
}

.flatpickr-year-dropdown,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    padding: 0.5em;
    margin: 0;
    font-weight: 500;
    font-size: 1.125rem;
    color: #515151;
}

.flatpickr-months .flatpickr-month {
    order: -1;
    height: auto;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    position: static;
    display: grid;
    place-content: center;
    width: 2em;
    height: 2em;
    color: #1C1C1C;
    border: 1px solid #D8D8D8;
    border-radius: 50%;
    margin-inline-start: 0.25em;
    text-align: center;
    cursor: pointer;
    padding: 0;
}

.flatpickr-months .flatpickr-next-month {
    background-color: #1C1C1C;
    color: #fff;
    border-color: #1C1C1C;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
    width: auto;
    height: auto;
    vertical-align: middle;
}

.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
    fill: none;
}

.flatpickr-months {
    padding: 0.75em 1em;
    border-bottom: 1px solid #f3f3f3;
    align-items: center;
}

.flatpickr-current-month .numInputWrapper {
    width: 7ch;
}

.flatpickr-year-dropdown:hover {
    background: rgba(0, 0, 0, 0.05);
}


span.flatpickr-weekday {
    font-size: 1rem;
    font-weight: inherit;
    color: #414141;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.65em 0.5em;
}

.flatpickr-day {
    height: auto;
}

.flatpickr-innerContainer {
    padding: 0.5rem;
}

.flatpickr-calendar {
    width: auto;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
    background: #1e1e1e !important;
    border-color: #1e1e1e !important;
    color: #fff !important;
}


.flatpickr-day.inRange {
    -webkit-box-shadow: -5px 0 0 #f1f0f0, 5px 0 0 #f1f0f0;
    box-shadow: -5px 0 0 #f1f0f0, 5px 0 0 #f1f0f0;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
    background: #f1f0f0;
    border-color: #f1f0f0;
}

.flatpickr-day.selected.startRange+.endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange+.endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange+.endRange:not(:nth-child(7n+1)) {
    -webkit-box-shadow: -10px 0 0 #f1f0f0;
    box-shadow: -10px 0 0 #f1f0f0;
}

.flatpickr-day.today {
    border-color: var(--clr-pink-400);
    background: var(--clr-pink-400);
}

/* pagination active class */
.pagination-active {
    background: #000;
    color: #fff;
}

.link-rounded.user img {
    aspect-ratio: 1/1;
    border-radius: 100px;
}

/* loader css start */
.spinner-2 {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: hsl(0deg 0% 0% / 70%);
    z-index: 9991;
}

.spinner-2 span {
    width: 50px;
    display: block;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid #030D12;
    border-right-color: var(--clr-pink);
    animation: s2 1s infinite linear;
    position: absolute;
    inset-inline-start: 50%;
    top: 50%;
    margin-block-start: -30px;
    /* replaces top */
    margin-inline-start: -30px;
    /* replaces left */

}

@keyframes s2 {
    to {
        transform: rotate(1turn)
    }
}

/* loader css end */


.cursor-pointer,
.handpointer {
    cursor: pointer;
}

/* 
.team_profile_picture {
    border-radius: 50%;
    width: 3.55em;
    font-size: 1.125rem;
    flex: 0 0 2.55em;
    height: 3.55em;
    line-height: 1.5;
    padding: 0.5em;
    display: grid;
    place-content: center;
} */


.legal-content {
    min-height: 20vw;
}

.cms-content>* {
    margin-bottom: 0.5em;
}


.cms-content a {
    font-weight: bold;
    text-decoration: underline;
}

.cms-content a:hover {
    color: var(--clr-pink);
}

.cms-content h1 {
    font-size: calc(1.375rem + 1.5vw);
}

.cms-content h2 {
    font-size: calc(1.325rem + 0.9vw);
}

.cms-content h3 {
    font-size: calc(1.3rem + 0.6vw);
}

.cms-content h4 {
    font-size: calc(1.275rem + 0.3vw);
}

.cms-content h5 {
    font-size: 1.25rem;
}

.cms-content h6 {
    font-size: 1rem;
}

.cms-content blockquote {
    font-style: italic;
    border-inline-start: 4px solid var(--clr-lightpink);
    padding: 2em;
    background-color: var(--clr-lightpink);
    border-radius: 0.5em;
}


.cms-content ul,
.cms-content ol {
    padding-inline-start: 20px;
}

.cms-content ul li,
.cms-content ol li {
    margin-block-end: 1em;
}

.cms-content p,
.cms-content li {
    line-height: 1.75;
}

.cms-content ul ul,
.cms-content ol ol,
.cms-content ul ol,
.cms-content ol ul {
    margin-top: 0.5em;
}


/*--- Add New Css by Tushar ---*/
.automations-wrap {
    width: 100%;
    max-width: 1024px;
    margin: auto;
    padding-top: 20px;
}

.automations-manage-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.manage-head-left {
    flex: 1;
}

.manage-head-left h2 {
    font-size: 24px;
    font-weight: 500;
}

.manage-head-left p {
    color: #838383;
    font-size: 18px;
}

.manage-head-right {
    min-width: 210px;
    border: 1px solid #d3d3d3;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
}

.manage-head-right h6 {
    font-size: 18px;
    font-weight: 700;
}

.manage-head-right .dropdown-toggle {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 28px;
    padding: 0;
    border-radius: 40px;
    text-decoration: none;
}

.manage-head-right .dropdown-toggle:hover {
    background-color: rgba(0, 0, 0, 0.08);
}

.manage-head-right .dropdown-toggle:after {
    display: none;
}

.bg-messages-card {
    color: #fff;
    background: #D90865;
    padding: 20px 25px;
    border-radius: 14px;
    margin-bottom: 40px;
    background: linear-gradient(90deg, rgba(217, 8, 101, 1) 0%, rgba(199, 0, 90, 1) 100%);
}

.bg-messages-card h6 {
    font-size: 18px;
    font-weight: 700;
}

.bg-messages-card p {
    font-size: 16px;
}

.bg-messages-card .setUp-btn {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.5s;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px 16px 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    border-radius: 50px;
}

.bg-messages-card .setUp-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.bg-messages-card .setUp-btn svg {
    transition: 0.5s;
}

.bg-messages-card .setUp-btn:hover svg {
    transform: translateX(5px);
}


.tablist-wrap {
    width: 100%;
    overflow-x: auto;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    z-index: 2;
    padding: 10px 0;
    position: sticky;
    top: -24px;
    background: #fafafa;
}

.tablist-blocks {
    width: 100%;
}

.tablist-blocks ul {
    display: flex;
    gap: 12px;
    list-style: none;
}

.tablist-blocks ul:not(.is-scroll) {
    justify-content: flex-start;
}

.tablist-blocks ul.is-scroll {
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    width: max-content;
    min-width: 100%;
    padding-bottom: 6px;
}

.tablist-blocks ul.is-scroll::-webkit-scrollbar {
    display: none;
}

.tablist-blocks ul.is-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tablist-blocks li {
    flex-shrink: 0;
}

/* Tab UI */
.tablist-blocks li span {
    display: inline-block;
    padding: 6px 18px;
    background: #ffffff;
    border-radius: 22px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease;
}

.tablist-blocks li.active span {
    background: #212529;
    color: #fff;
}

.tablist-blocks li span:hover {
    background: #212529;
    color: #fff;
}

.tablist-wrap.with-larg span {
    padding: 8px 25px;
    font-size: 18px;
    border-radius: 40px;
}

/* Mobile tweaks */
@media (max-width: 768px) {

    .tablist-blocks li span {
        font-size: 13px;
        padding: 9px 14px;
    }

    .tablist-wrap.with-larg span {
        padding: 8px 20px;
        font-size: 16px;
    }
}

.tabs-card-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.tabs-card-wrap h3 {
    font-size: 24px;
    font-weight: 700;
}

.tabs-card-lists {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.tabs-card-lists .list-card {
    width: 100%;
    width: calc((100% - 72px) / 4);
    position: relative;
    border: 1px solid #d3d3d3;
    padding: 25px 20px 30px;
    border-radius: 10px;
    overflow: hidden;
}

.tabs-card-lists .list-card:hover {
    background: #ededed;
}

.tabs-card-lists .list-card:hover .list-card-button {
    cursor: pointer;
    z-index: 2;
}

.tabs-card-lists .list-card-button {
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.tabs-card-lists .list-card .deal-card__menu {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
}

.tabs-card-lists .list-card .dropdown-toggle {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 28px;
    padding: 0;
    border-radius: 40px;
    text-decoration: none;
}

.tabs-card-lists .list-card .dropdown-toggle:hover {
    background-color: rgba(0, 0, 0, 0.08);
}

.tabs-card-lists .list-card .dropdown-toggle:after {
    display: none;
}

.tabs-card-lists .list-card:hover .deal-card__menu {
    opacity: 1;
    visibility: visible;
}

.tabs-card-lists .list-card .dropdown-menu {
    min-width: 110px;
}

.createNew-button {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    flex-direction: column;
    font-weight: 700;
    gap: 10px;
}

.createNew-button h4 {
    font-size: 18px;
}

.tabs-card-lists .list-card-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
    height: 100%;
}

.tabs-card-lists .list-card-body h5 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

.tabs-card-lists .list-card-body p {
    color: #838383;
    line-height: 1.2;
}

.tabs-card-lists .list-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.tabs-card-lists .list-card-foot .enabled-btn {
    background: #dcfce7;
    color: #15803d;
    font-size: 13px;
    font-weight: 400;
    border-radius: 20px;
    padding: 2px 10px;
    border: 1px solid #c8edd5;
}

.tabs-card-lists .list-card-foot .social-media-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}




.topUp-head {
    background-color: #fafafa !important;
    top: -22px !important;
}

.badge-recommended {
    background: #f0f0ff;
    color: #6d50f4;
    font-weight: 400;
    font-size: 13px;
    border-radius: 20px;
    padding: 2px 10px;
    border: 1px solid #dbddff;
}

.at-form-wrap {
    flex: 1;
}

.at-form-wrap .topUp-balance-drops-block {
    margin-bottom: 40px;
}

.topUp-amount-blocks {
    margin-bottom: 40px;
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.topUp-amount-blocks h4 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
}

.topUp-amount-blocks .amount-block {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 20px;
    justify-content: space-between;
    position: relative;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #D9D9D9;
}

.topUp-amount-blocks .amount-block.active {
    border-color: var(--clr-pink);
}

.topUp-amount-blocks .amount-block .price {
    font-weight: 700;
    font-size: 20px;
}

.topUp-amount-blocks .amount-block .text {
    color: #838383;
    font-size: 13px;
}

.topUp-amount-blocks .amount-block:hover {
    background: #f1f1f1;
    cursor: pointer;
}

.topUp-amount-blocks .amount-block input[type=checkbox] {
    cursor: pointer;
    pointer-events: auto;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.card-details-wrap {
    margin-bottom: 40px;
    padding: 20px;
    position: relative;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #D9D9D9;
}

.billing-details-wrap {
    padding: 20px;
    position: relative;
    border: 1px solid #D9D9D9;
    background: #ffffff;
    border-radius: 10px;
}

.billing-details-wrap h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
}

.billing-details-wrap p {
    color: #767676;
    margin-bottom: 20px;
    line-height: normal;
}

.billing-details-wrap .form-group.vat-no .form-label {
    display: flex;
    gap: 5px;
}

.billing-details-wrap .form-group.vat-no .form-label span {
    color: #767676;
}

.billing-details-wrap .form-group.vat-no .form-label .right {
    margin-left: auto;
}

.billing-details-wrap .form-group .discount-value .box-percent {
    left: 10px;
    top: 9px;
}


.automatic-topups-form {
    display: flex;
    gap: 50px;
    align-items: baseline;
    margin: 0 100px;
}

.automatic-topups-form .summary-blocks {
    border-radius: 10px;
    border: 1px solid #D9D9D9;
    background: #ffffff;
    padding: 30px;
    width: 440px;
}

.summary-blocks h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.summary-blocks .summary-block {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.summary-blocks .summary-text {
    line-height: 1.4;
}


.appo-reminder {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
}

.appo-reminder-header {
    margin-bottom: 30px;
}

.appo-reminder-header h2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 16px;
}

.appo-reminder-list {
    position: relative;
}

.appo-reminder-list ul {
    padding: 0;
    padding: 0;
    list-style: none;
}

.appo-reminder-list ul li {
    padding: 0;
    margin: 0 0 5px;
    list-style: none;
    display: flex;
    gap: 15px;
}

.appo-reminder-list ul li .iconline-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.appo-reminder-list ul li .iconline-box .icon {
    max-width: 32px;
    min-width: 32px;
    min-height: 32px;
    display: flex;
    background-color: rgba(199, 0, 90, 0.1);
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 100%;
}

.appo-reminder-list ul li .iconline-box .line {
    width: 2px;
    height: 100%;
    background: #e5e5e5;
}

.appo-reminder-list ul li .info {
    padding: 5px 0 20px;
    flex: 1;
}

.appo-reminder-list ul li:last-child .info {
    padding-bottom: 0px;
}

.appo-reminder-list ul li .info h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.appo-reminder-list ul li .info>p {
    color: #838383;
    margin-bottom: 15px;
}

.appo-reminder-list ul li .info-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.appo-reminder-list ul li .info-wrap .border-box {
    padding: 30px;
}

.appo-reminder-list ul li .info-wrap .icon img {
    min-width: 28px;
}

.appo-reminder-list ul li .info-wrap .details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex: auto;
}

.appo-reminder-list ul li .info-wrap .details p {
    margin: 0px;
    line-height: 1;
    font-weight: 700;
}

.appo-reminder-list ul li .info-wrap .details span {
    color: #838383;
}

.appo-reminder-list ul li .info-wrap .action .dropdown-toggle {
    padding: 5px 10px;
    border-radius: 40px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.08);
}

.appo-reminder-list ul li .info-wrap .action .dropdown-toggle:after {
    font-size: 18px;
    top: 2px;
    position: relative;
}

.appo-reminder-list ul li .info-wrap .action .dropdown-toggle .text {
    font-size: 16px;
}

.appo-reminder-list ul li .info-wrap .action .dropdown-toggle .dot {
    display: none;
}

.appo-reminder-list ul li .enabled-btn {
    background: #dcfce7;
    color: #15803d;
    font-size: 13px;
    font-weight: 400;
    border: 1px solid #c8edd5;
    border-radius: 20px;
    padding: 2px 10px;
}

.clients-whatsApp-message {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.clients-whatsApp-message p {
    color: #838383;
    font-size: 14px;
}

.clients-whatsApp-message p>a {
    color: #D90865;
}

.clients-whatsApp-message p a:hover {
    text-decoration: underline;
}

.clients-whatsApp-message .dropdown-toggle {
    padding: 5px 15px;
    border-radius: 40px;
    border: 1px solid #BBBBBB;
}


.border-box {
    position: relative;
    border: 1px solid #d3d3d3;
    padding: 20px;
    border-radius: 10px;
}

.btn-link.dropdown-toggle {
    color: #212529;
}

.none {
    display: none;
}

.max-w-500 {
    max-width: 500px;
}


.nav-tabs .nav-item {
    width: 100%;
}

.nav-tabs .nav-item .nav-link {
    background: #ededed;
    color: #000;
    width: 100%;
}

.nav-tabs .nav-item .nav-link:hover {
    border-color: transparent !important;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    background: #D90865;
    color: #fff;
    border-color: transparent !important;
}

.asb__others--login .logindivi {
    text-align: center;
}


#summary-total,
#summary-discount,
#summary-final {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.relative-div{
    position: relative;
    z-index: 9;
}

.salon-timing-list{
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important; 
    max-height: 500px; overflow-y: auto;
}

.salon-timing-list label span {
    text-align: left !important;
}

.salon-timing-list .price-wrap {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding: 0 10px;
    position: absolute;
    right: 10px;
    top: 10px;
}

.salon-timing-list .price-off {
    opacity: 0.6;
    font-weight: 600;
}

.salon-timing-list .old-price {
    text-decoration: line-through;
    opacity: 0.6;
    font-weight: 600;
}

.salon-time .calendar-carousel .swiper-wrapper {
    justify-content: space-around;
    display: flex;
}

/*-- Default Pagination style overwrite --*/

.view-campain-wrap {
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    min-height: 200px;
    width: 100%;
    overflow: hidden;
    background-color: #fff;
}

.campain_text {
    flex: 1px;
    padding: 30px;
}

.campain_text h3 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 10px;
}

.campain_text p {
    margin-bottom: 20px;
}

.campain_text .btn-dark {
    display: inline-block;
    line-height: 1.4;
}

.campain_img {
    min-width: 300px;
    max-width: 300px;
    position: relative;
    text-align: center;
    padding: 20px 20px 0;
}

.campain_img::before {
    content: "";
    width: 350px;
    height: 350px;
    background-color: var(--clr-pink-400);
    border-radius: 100%;
    position: absolute;
    right: -50px;
    top: 10%;
    z-index: 0;
}

.campain_img img {
    position: relative;
    z-index: 1;
}

.tabs-campain-wrap {
    position: relative;
}

.campain-card,
.preview-card {
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    position: relative;
    transition: 0.3s ease;
    margin: 15px 0;
}

.campain-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.campain-card .card-title {
    font-size: 20px;
    font-weight: 600;
}

.campain-card .card-icon {
    font-size: 20px;
    color: #d90865;
}

.campain-card .card-number {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.campain-card .percent {
    font-size: 14px;
    color: #a0a3b1;
    margin-bottom: 8px;
}

.campain-card .progress {
    width: 100%;
    height: 8px;
    background: #2a2e3b;
    border-radius: 10px;
    overflow: hidden;
}

.campain-card .progress-bar {
    height: 100%;
    border-radius: 10px;
}

.preview-card {
    padding: 0px;
    overflow: hidden;
}

.preview-card h3 {
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
}

.preview-card-wrap {
    background: #fff;
    padding: 50px;
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.preview-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 5px;
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    font-size: 16px;
}

.preview-tabs button {
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 25px;
    position: relative;
    transition: 0.3s ease;
    width: 100%;
}

.preview-tabs button:hover,
.preview-tabs button.active {
    background: #d90865;
    color: #fff;
}

.preview-view {
    border: 10px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.preview-view_head {
    background: #ccc;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-view_head .fa-circle {
    color: #fff;
}

.template_body {
    padding: 30px;
    min-height: 400px;
    background: #d74686;
}

.pre-temp_body {
    background-color: var(--clr-pink-400);
    width: 100%;
    max-width: 750px;
    margin: 0 auto 30px;
    padding: 30px 50px;
    border-radius: 15px;
    text-align: center;
}

.pre-temp_body h1 {
    color: #d90865;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.pre-temp_body .sub-title {
    font-size: 28px;
    font-weight: 600;
    color: #d90865;
    margin-bottom: 20px;
}

.pre-temp_body .offer {
    font-size: 64px;
    font-weight: 700;
    margin: 20px 0;
    color: #000000;
    line-height: 1.2;
}

.pre-temp_body .description {
    font-size: 24px;
    margin-bottom: 20px;
}

.pre-temp_body .text {
    font-size: 18px;
    margin: 25px 0;
    line-height: 1.6;
}

.pre-temp_body .main-img,
.pre-temp_body .bottom-img {
    width: 100%;
    max-height: 400px;
    border-radius: 4px;
    margin: 0px 0 20px;
    object-fit: cover;
}

.pre-temp_body .book-now-btn {
    display: inline-block;
    margin: 30px 0 50px;
    padding: 10px 40px;
    background: #d90865;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s ease;
}

.pre-temp_body .book-now-btn:hover {
    opacity: 0.8;
}

.pre-temp_body .tempplate-social {
    margin: 30px 0;
}

.pre-temp_body .tempplate-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: #d90865;
    color: #fff;
    border-radius: 50%;
    margin: 0 5px;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.pre-temp_body .tempplate-social a:hover {
    opacity: 0.8;
}

.pre-temp_footer {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
    color: #fff;
}

.footer-text1 span {
    font-weight: 700px;
    font-size: 20px;
}

.footer-text2 {
    margin-top: 10px;
}

.footer-text2 a {
    text-decoration: underline;
}

.footer-text2 a:hover {
    text-decoration: none;
}

.preview-view.mobile {
    width: 100%;
    max-width: 500px;
    margin: auto;
}

.preview-view.mobile .pre-temp_body {
    padding: 30px;
}

.preview-view.mobile .pre-temp_body h1 {
    font-size: 30px;
}

.preview-view.mobile .pre-temp_body .sub-title {
    font-size: 24px;
}

.preview-view.mobile .pre-temp_body .offer {
    font-size: 34px;
}

.preview-view.mobile .pre-temp_body .text {
    font-size: 16px;
    line-height: 1.4;
}

.preview-view.mobile .pre-temp_body .main-img,
.pre-temp_body .bottom-img {
    max-height: 300px;
}


.campain-card-details {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.campain-card-details li {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.campain-card-details li .label {
    font-weight: 600;
    line-height: 1.2;
}

.campaing-cost h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.campaing-cost .block ul {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.campaing-cost .block ul li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-weight: 600;
}

.campaing-cost .block ul li span {
    display: block;
    font-weight: 400;
    color: #767676;
}


/* Avatar */
.recipient-table .avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.recipient-table .avatar-letter {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #d90865;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recipient-table .badge-status {
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}

.recipient-table .delivered {
    border: 1px solid #ddd;
    background: #fff;
}

.recipient-table .opened {
    background: #FFEEEE;
    color: #d90865;
}

.recipient-table .sort {
    opacity: .6;
    font-size: 12px;
    margin-left: 6px;
    cursor: pointer;
}

.recipient-table .recipient-info {
    line-height: 1.2;
}

/*-- End --*/

/*-- Default Pagination style overwrite --*/
.pagination-wrap {
    position: relative;
}

.pagination-wrap nav {
    text-align: center;
}

.pagination-wrap nav .pagination {
    border-radius: 0;
    background: transparent;
    border: 0;
    display: inline-grid;
}

.pagination-wrap nav .pagination:hover,
.pagination-wrap nav .pagination>*:hover {
    background: transparent !important;
}

.pagination-wrap nav .pagination>*:not(:last-child) {
    border-inline-end: 0px !important;
}

.pagination-wrap nav .pagination>* {
    padding: 0;
}

.pagination-wrap nav .pagination .page-link {
    color: #D90865;
}

.pagination-wrap nav .pagination .page-link.active,
.pagination-wrap nav .pagination .active>.page-link {
    background-color: #D90865;
    border-color: #D90865;
    color: #fff;
}

/*-- End --*/

@media (max-width: 767px) {
    .appo-reminder-list ul li .info-wrap .action .dropdown-toggle {
        width: 36px;
        height: 36px;
        line-height: 36px;
        text-align: center;
        padding: 0;
        border-radius: 40px;
        text-decoration: none;
        font-size: 28px;
        background-color: rgba(0, 0, 0, 0.08);
    }

    .appo-reminder-list ul li .info-wrap .action .dropdown-toggle:after,
    .appo-reminder-list ul li .info-wrap .action .dropdown-toggle .text {
        display: none;
    }

    .appo-reminder-list ul li .info-wrap .action .dropdown-toggle .dot {
        display: block;
    }

    .view-campain-wrap {
        flex-wrap: wrap;
    }

    .campain_text {
        width: 100%;
    }

    .campain_img {
        max-width: 100%;
        width: 100%;
    }

    .campain_img:before {
        right: 50%;
        margin-right: -175px;
    }

}

/*--- End Css ---*/

@media (min-width: 1200px) {
    .cms-content h1 {
        font-size: 2.5rem;
    }

    .cms-content h2 {
        font-size: 2rem;
    }

    .cms-content h3 {
        font-size: 1.75rem;
    }

    .cms-content h4 {
        font-size: 1.5rem;
    }
}


/* RTL SUPPORT */
html[dir="rtl"] .custom-nav button.owl-next,
html[dir="rtl"] .sliders_block .owl-carousel .owl-nav button.owl-next,
html[dir="rtl"] img[src*="ico-arw-prev.svg"],
html[dir="rtl"] img[src*="ico-arw-next.svg"] {
    transform: scaleX(-1);
}

html[dir="rtl"] .custom-nav button.owl-prev,
html[dir="rtl"] .sliders_block .owl-carousel .owl-nav button.owl-prev {
    transform: scaleX(1);
}

html[dir="rtl"] .email-template-table-content table td[align="left"] {
    text-align: start;
}

html[dir="rtl"] .email-template-table-content table td[align="right"] {
    text-align: end;
}

/*--- New Css ---*/
.preview-details-wrap {
    width: 100%;
}

.preview-reminder {
    border-bottom: 1px solid #ccc;
    padding: 25px;
}

.preview-reminder h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.reminder-app-head {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reminder-app-head figure {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFEEEE;
    color: #d90865;
    font-size: 20px;
    min-width: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    padding: 5px;
}

.reminder-app-head aside {
    font-size: 18px;
    line-height: 1.4;
}

.preview-details-wrap .template_body {
    padding: 60px;
}

.preview-details-wrap .pre-temp_body {
    max-width: 100%;
    margin: 0 auto 30px;
    text-align: left;
    padding: 30px 30px;
    border-radius: 15px;
}

.preview-details-box {
    position: relative;
    margin-bottom: 30px;
}

.preview-details-box:last-child {
    margin-bottom: 0px;
}

.preview-details-box .action-tage {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 30px;
    color: #000;
    background: #ffc00a;
    margin-bottom: 20px;
}

.preview-details-box .page-title,
.preview-details-box .page-title2,
.preview-details-box ul li h5 {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 20px;
    padding: 0;
    line-height: 1.4
}

.preview-details-box .page-title {
    font-size: 30px;
    line-height: 1.2;
}

.preview-details-box .page-title2 {
    font-size: 20px;
}

.preview-details-box p {
    font-size: 18px;
    margin-bottom: 20px;
    padding: 0;
    line-height: 1.4;
}

.preview-details-box ul {
    padding: 0;
    list-style: none;
}

.preview-details-box ul li {
    padding: 15px 0;
    border-bottom: 1px solid #ffcbcb;
    font-size: 16px;
}

.preview-details-box ul li:last-child {
    border-bottom: 0px;
}

.preview-details-box ul li h5 {
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: 500;
}

.preview-details-box ul li p {
    color: #8b8b8b;
    margin: 0;
}

.preview-details-box ul li .blocks {
    display: flex;
    gap: 10px;
}

.preview-details-box ul li .blocks .l-block {
    flex: auto;
}

.preview-details-box ul li .blocks .r-block {
    min-width: 120px;
    max-width: 120px;
}

.preview-details-box ul li .blocks .r-block.price-block {
    text-align: right;
}

.preview-details-box ul li .with-img,
.preview-details-box ul li .with-icon {
    display: flex;
    align-items: center;
    gap: 20px;
}

.preview-details-box ul li .with-img figure {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    min-width: 60px;
    width: 60px;
    height: 60px;
}

.preview-details-box ul li .with-img figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-details-box ul li .with-icon figure {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #d90865;
    font-size: 24px;
    min-width: 60px;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    padding: 5px;
}

.preview-details-box .group-action {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.preview-mobile-view {
    width: 100%;
    max-width: 500px;
    min-height: 600px;
    margin: auto;
    border: 10px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 20px;
    height: 100vh;
}

.preview-mobile-view:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../img/lockscreen-background.png) no-repeat top center;
    background-size: cover;
    z-index: 0;
}

.preview-mobile-body {
    position: relative;
    z-index: 1;
}

.preview-mobile-body .top-view_head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 80px;
}

.preview-mobile-body .top-view_head .fa-circle {
    color: #fff;
}

.preview-mobile-body .top-view_head span {
    display: inline-block;
    width: 60px;
    height: 14px;
    border-radius: 10px;
    background: #fff;
}

.preview-mobile-body .days-date-time {
    color: #fff;
    font-size: 24px;
    margin-bottom: 80px;
    font-weight: 400;
    text-align: center;
}

.preview-mobile-body .days-date-time .time {
    font-size: 100px;
    font-weight: 700;
    line-height: 1;
}

.preview-mobile-body .message-box {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    font-size: 18px;
}

.preview-mobile-body .message-box a {
    color: #d90865;
}

.preview-mobile-body .message-box p {
    font-size: 20px;
    line-height: 1.4;
}

.preview-mobile-body .message-box .message-box-head {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    justify-content: space-between;
    gap: 10px;
    color: #767676;
}

.preview-mobile-body .message-box .message-box-head .fa-comment {
    background: #767676;
    padding: 8px;
    border-radius: 100%;
    color: #fff;
    font-size: 14px;
}

.modal-title {
    font-size: 1.45rem;
}

@media (max-width: 767px) {
    .preview-details-wrap .preview-card-wrap {
        padding: 20px;
    }

    .preview-mobile-body .top-view_head {
        margin-bottom: 60px;
    }

    .preview-mobile-body .days-date-time {
        margin-bottom: 60px;
    }

    .preview-reminder {
        padding: 15px;
    }

    .preview-reminder h2 {
        font-size: 20px;
    }

    .preview-details-wrap .template_body {
        padding: 20px;
    }

    .preview-details-wrap .pre-temp_body {
        padding: 15px;
    }

    .preview-details-box .page-title {
        font-size: 24px;
    }

    .preview-mobile-body .days-date-time {
        font-size: 20px;
    }

    .preview-mobile-body .days-date-time .time {
        font-size: 70px;
    }
}

/*--- End Css ---*/