body{
    background-color: var(--light-blue);
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

/* Loader Css Start */
.loader {position: fixed;top: 0; left: 0;display: flex;flex-direction: column;align-items: center;justify-content: center;width: 100vw;height: 100vh;background: rgb(255 255 255 / 50%);z-index: 9999;}
.loader .loading-logo{width: 60px;}
.loader-main {position: relative;width: 80px;height: 50px;}
.loader-main div {position: absolute;top: 10px;width: 18px;height: 18px;border-radius: 50%;background:linear-gradient(137deg, #0087BE 15.66%, #7BCDE8 89.24%);animation-timing-function: cubic-bezier(0, 1, 1, 0);}
.loader-main div:nth-child(1) {left: 8px;animation: circle1 0.6s infinite;}
.loader-main div:nth-child(2) {left: 8px;animation: circle2 0.6s infinite;}
.loader-main div:nth-child(3) {left: 32px;animation: circle2 0.6s infinite;}
.loader-main div:nth-child(4) {  left: 56px;animation: circle3 0.6s infinite;}
@keyframes circle1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes circle3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes circle2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
/* Loader Css End */

/* Login Page Start*/
.auth-page{
    position: relative;
    min-height: 100vh;
}
.auth-page .row{
    min-height: 100vh;
}
.auth-page .logo{
    position: absolute;
    left: 50px;
    top: 50px;
    width: 12.3%;
}
.auth-page .vector-bg{
    position: relative;
    background: var(--bg-gradient);
}
.auth-page .vector-bg .img-container{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 75%;
    height: 60%;
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 5px 0 0 5px;
}
/* .auth-page .vector-bg::after{
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 75%;
    height: 60%;
    background-color: var(--light-gray);
    border-radius: 5px 0 0 5px;
} */
.auth-page .content{
    display: flex;
    align-items: center;
    justify-content: center;
}
.auth-page .content .box{
    width: 50%;
}
.auth-page .content .box .icon{
    margin-bottom: 15px;
}
.auth-page .content .box .heading{
    font-size: var(--fs-48);
    font-weight: var(--fw-700);
    color: var(--dark-200);
    line-height: 1.3;
    margin-bottom: 10px;
}
.auth-page .content .box .heading span{
    color: var(--solid-blue);
}
.auth-page .content .box .desc{
    font-size: var(--fs-18);
    font-weight: var(--fw-400);
    color: var(--dark-100);
    line-height: 1.5;
    margin-bottom: 60px;
}
/* Login Page End*/

/* CRM Full Card Start */
.crm-full-card{
    position: relative;
    min-height: calc(100vh - 208px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 12px;
    border: 1px solid var(--crm-full-card-border);
    background-color: var(--white);
}
.crm-full-card .crm-full-card-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 26px;
    background-color: var(--white);
    border-radius: 12px 12px 0 0;
}
.crm-full-card .crm-full-card-body{
    flex: 1;
    display: flex;
    align-items: stretch;
}
/* CRM Full Card End */

/* Actions Dropdown Start */
.actions-dd .dropdown-toggle{
    min-width: auto;
    width: 100%;
    display: flex;
    align-items: center;
    column-gap: 12px;
    padding: 8px 16px;
    border-radius: 4px;
}
.actions-dd .dropdown-toggle::after{
    display: none;
}
.actions-dd .dropdown-toggle .icon{
    width: 16px;
}
.actions-dd .dropdown-menu {
    min-width: 100%;
    padding: 10px 0 10px;
    border-radius: 0;
    border: 0;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.17);
    z-index: 1;
}
.actions-dd .dropdown-menu li a {
    padding: 8px 16px;
    font-size: var(--fs-16);
    font-weight: var(--fw-500);
    color: var(--dark-200);
    background-color: var(--white);
    transition: all 0.2s;
}
/* Actions Dropdown End */

/* Searchbar for Table Header Start */
.search-filter{
    max-width: 350px;
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--light-gray-100);
    box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.12);
}
.search-filter .form-control{
    font-size: var(--fs-16);
    font-weight: var(--fw-400);
    color: var(--dark-200);
    padding: 16px 14px;
    outline: 0;
    box-shadow: none;
    border: 0;
    border-radius: 12px 0 0 12px;
}
.search-filter .form-control:focus{
    z-index: 1;
}
.search-filter .form-control::placeholder {
    color: var(--gray-200);
}
.search-filter .form-control:-ms-input-placeholder {
    color: var(--gray-200);
}
.search-filter .form-control::-ms-input-placeholder {
    color: var(--gray-200);
}
.search-filter .filter-dropdown{
    padding: 16px 45px 16px 15px;
    background-color: var(--light-blue);
    background-image: url("../../crm-assets/images/icons/icon-chevron-down.png");
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: right 15px center;
    font-size: var(--fs-16);
    font-weight: var(--fw-400);
    color: var(--dark-200);
    outline: 0;
    box-shadow: none;
    border: 0;
    border-left: 1px solid var(--light-gray-100);
    border-radius: 0 12px 12px 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
/* Searchbar for Table Header End */

/* CRM Datatable Start */
.dataTables_wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.dataTables_wrapper .table-responsive{
    flex-grow: 1;
}
.dataTables_wrapper .table-responsive::-webkit-scrollbar-track{
	background-color: var(--white);
}
.dataTables_wrapper .table-responsive::-webkit-scrollbar{
	height: 6px;
    width: 8px;
	background-color: var(--white);
}
.dataTables_wrapper .table-responsive::-webkit-scrollbar-thumb{
	background: var(--bg-gradient);
}
.dataTables_wrapper .bottom{
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: var(--light-blue-100);
    border-radius: 0 0 9px 9px;
}
/* CRM Datatable End */

/* CRM Table Start */
.crm-table{
    width: 100% !important;
    margin-bottom: 0;
}
.crm-table thead tr{
    background-color: var(--light-blue-100);
    border-top: 1px solid var(--crm-full-card-border);
}
.crm-table thead tr th{
    font-size: var(--fs-18);
    font-weight: var(--fw-600);
    color: var(--dark-100);
    line-height: 1.1;
    white-space: nowrap;
    padding: 24px 18px;
}
.crm-table thead th.sorting {
    position: relative;
    cursor: pointer;
}
.crm-table thead th.sorting:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("../images/icons/icon-sorting.svg");
    background-repeat: no-repeat;
    background-size: 18px 18px;
    background-position: right;
    width: 20px;
    height: 20px;
}
.crm-table.table-striped tbody tr:nth-child(even){
    background-color: var(--light-blue-100);
}
.crm-table thead tr th:first-child,
.crm-table tbody tr td:first-child{
    padding-left: 38px;
}
.crm-table thead tr th:last-child,
.crm-table tbody tr td:last-child{
    padding-right: 38px;
}
.crm-table tbody tr{
    border-top: 1px solid var(--crm-full-card-border);
    transition: all 0.2s;
}
.crm-table tbody tr:last-child{
    border-bottom: 1px solid var(--crm-full-card-border);
}
.crm-table tbody tr td{
    font-size: var(--fs-18);
    font-weight: var(--fw-400);
    color: var(--dark-100);
    line-height: 1.3;
    white-space: nowrap;
    padding: 24px 18px;
}
.crm-table tr .checkbox-column .form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid #606060;
    margin: 0;
    box-shadow: none !important;
}
.crm-table tr .checkbox-column .form-check-input:checked{
    background: url("../../crm-assets/images/icons/icon-checked-gradient.png");
    background-size: 20px 20px;
    border: 0 !important;
}
.crm-table tbody tr td .actions-column .column-text{
    display: inline-block;
    color: inherit;
    line-height: 1;
    text-decoration: 2px dotted underline var(--dark-100);
    text-underline-offset: 2px;
    margin-bottom: 8px;
    transition: all 0.2s;
}
.crm-table tbody tr td .actions-column .column-text:hover{
    text-decoration: 2px solid underline var(--solid-blue);
    color: var(--solid-blue);
    transition: all 0.2s;
}
.crm-table tbody tr td .actions-column .column-text.text-decoration-none:hover{
    color: var(--dark-100);
}
.checkbox-column-width{
    width: 40px;
}
.crm-table tbody tr td .actions-column .actions{
    display: flex;
    align-items: center;
    column-gap: 10px;
    line-height: 1;
}
.crm-table tbody tr td .actions-column .actions .item{
    display: flex;
    align-items: center;
    column-gap: 3px;
    color: var(--dark-100);
    font-size: var(--fs-18);
    font-weight: var(--fw-400);
    text-decoration: none;
}
.crm-table tbody tr td .actions-column .actions .item .icon{
    width: 18px;
}

/* .crm-table thead tr th.fixed-column{
    position: sticky;
    position: -webkit-sticky;
    right: 0;
    background-color: var(--light-blue-100);
}
.crm-table tr td.fixed-column{
    position: sticky;
    position: -webkit-sticky;
}
.crm-table thead tr th.fixed-last-column,
.crm-table tr td.fixed-last-column{
    right: 0;
}
.crm-table thead tr th.fixed-first-column,
.crm-table tr td.fixed-first-column{
    left: 0;
}
.crm-table tr:nth-child(odd) td.fixed-column{
    background-color: var(--white);
}
.crm-table tr:nth-child(even) td.fixed-column{
    background-color: var(--light-blue-100);
} */

.dataTables_wrapper .bottom{
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: var(--light-blue-100);
    border-radius: 0 0 9px 9px;
}
/* CRM Table End */

.status-icon{
    width: 32px;
    height: 32px;
}

.permission-checkbox input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    margin: 0;
    font: inherit;
    color: var(--gray-100);
    width: 1.5em;
    height: 1.5em;
    border: 0.15em solid currentColor;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
    display: inline-grid;
    place-content: center;
    border-radius: 3px;
}
.permission-checkbox input[type="checkbox"]:checked{
    background-color: #0087be;
    border-color: #0087be;
}
.permission-checkbox input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--white);
    background-color: CanvasText;
}
.permission-checkbox input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.campaign-logo{
    width: 85px;
    height: 85px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    overflow: hidden;
}
.campaign-logo .icon{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.campaign-platform{
    font-size: var(--fs-12);
    display: inline-block;
    padding: 3px 7px;
    background: var(--bg-gradient);
    margin-top: 5px;
    border-radius: 3px;
    color: white;
}
.accent-color{
    display: inline-block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}
.custom-badge{
    min-width: 130px;
    display: inline-block;
    font-size: var(--fs-18);
    font-weight: var(--fw-400);
    color: var(--dark-200);
    line-height: 1.1;
    text-transform: capitalize;
    text-align: center;
    background-color: transparent;
    padding: 9px 15px;
    border-radius: 8px;
}
.custom-badge.badge-success{
    background-color: #9EFFA2;
}
.custom-badge.badge-primary{
    background-color: #7DD1F0;
}
.custom-badge.badge-danger{
    background-color: #FFB39D;
}
.custom-badge.badge-warning{
    background-color: #ffc107;
}

.view-invoice-link{
    font-size: var(--fs-16);
    font-weight: var(--fw-500);
    color: var(--solid-blue);
    line-height: 1;
    text-decoration: none;
}

.product-img{
    width: 60px;
}


/* Expandable Filter Start */
.expandable-filter .expandable-content{
    background-color: var(--light-blue-100);
    border-top: 1px solid var(--crm-full-card-border);
}
.expandable-filter .expandable-content .padding-box{
    padding: 25px;
}
/* Expandable Filter End */

/* Table Pagination Start */
.dataTables_paginate .pagination{
    display: flex;
    align-items: center;
    column-gap: 5px;
    margin-bottom: 0;
}
.dataTables_paginate .pagination li a{
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: var(--white);
    font-size: var(--fs-14);
    font-weight: var(--fw-500);
    color: var(--dark-100);
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid var(--light-blue);
    box-shadow: none;
    outline: 0;
}
.dataTables_paginate .pagination li.active a{
    background: var(--bg-gradient);
    color: var(--white);
    border: 0;
}
.dataTables_paginate .pagination li:first-child a {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
/* Table Pagination End */

/* Table No of Entries Text Start */
.dataTables_wrapper .dataTables_info{
    font-size: var(--fs-14);
    font-weight: var(--fw-500);
    color: var(--gray-100);
    margin-bottom: 0;
}
/* Table No of Entries Text End */

/* Table No of Pages Dropdown Start */
.dataTables_wrapper .dataTables_length label{
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    font-size: var(--fs-14);
    font-weight: var(--fw-500);
    color: var(--dark-100);
}
.dataTables_wrapper .dataTables_length label select{
    font-size: var(--fs-14);
    font-weight: var(--fw-500);
    color: var(--dark-100);
    background-image: url("../images/icons/icon-chevron-down.svg");
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: right 15px top 9px;
    background-color: var(--white);
    padding: 8px 40px 8px 15px;
    border-radius: 8px;
    border: 1px solid var(--crm-full-card-border);
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    outline: 0;
    box-shadow: none;
}

.no-of-pages{
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    font-size: var(--fs-14);
    font-weight: var(--fw-500);
    color: var(--dark-100);
}
.no-of-pages select{
    font-size: var(--fs-14);
    font-weight: var(--fw-500);
    color: var(--dark-100);
    background-image: url("../images/icons/icon-chevron-down.svg");
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: right 15px top 9px;
    background-color: var(--white);
    padding: 8px 40px 8px 15px;
    border-radius: 8px;
    border: 1px solid var(--crm-full-card-border);
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    outline: 0;
    box-shadow: none;
}
/* Table No of Pages Dropdown End */

/* CRM Update Card Start */
.crm-update-card{
    position: relative;
    min-height: calc(100vh - 208px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 12px;
    border: 1px solid var(--crm-full-card-border);
    background-color: var(--white);
}
.crm-update-card .crm-update-card-header{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    background-color: var(--white);
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid var(--crm-full-card-border);
}
.crm-update-card .crm-update-card-header .heading{
    font-size: var(--fs-24);
    font-weight: var(--fw-500);
    color: var(--dark-200);
    line-height: 1.1;
    margin-bottom: 0;
}
.crm-update-card .crm-update-card-body{
    padding: 60px 40px 30px;
}
.crm-update-card .crm-update-card-body .sub-heading{
    font-size: var(--fs-24);
    font-weight: var(--fw-500);
    color: var(--solid-blue);
    line-height: 1;
    margin-bottom: 20px;
}
.crm-update-card .crm-update-card-footer{
    margin-top: auto;
    padding: 40px;
    background-color: var(--light-blue-100);
    border-radius: 0 0 9px 9px;
}
/* CRM Update Card End */

/* CRM Tabs Card Start */
.crm-tabs-card{
    position: relative;
    min-height: calc(100vh - 208px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 12px;
    border: 1px solid var(--crm-full-card-border);
    background-color: var(--white);
    overflow: hidden;
}
.crm-tabs-card .tabs-header{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 45px;
    padding: 30px 20px 0;
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid var(--crm-full-card-border);
}
.crm-tabs-card .tabs-header .nav-item .nav-link{
    position: relative;
    padding: 0 20px 18px;
    font-size: var(--fs-18);
    font-weight: var(--fw-500);
    color: var(--dark-100);
    border-radius: 0;
    outline: 0;
    box-shadow: none;
    transition: all 0.2s;
}
.crm-tabs-card .tabs-header .nav-item .nav-link.active{
    background-color: transparent;
    font-weight: var(--fw-600);
    color: var(--solid-blue);
}
.crm-tabs-card .tabs-header .nav-item .nav-link::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 8px;
    width: 100%;
    background-color: transparent;
    border-radius: 25px;
    transition: all 0.2s;
}
.crm-tabs-card .tabs-header .nav-item .nav-link.active::after{
    background-color: var(--solid-blue);
    transition: all 0.2s;
}
.crm-tabs-card .tab-content{
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0;
    border-radius: 0 0 9px 9px;
}
.crm-tabs-card .tab-content .tab-pane.show{
    display: flex;
    flex-direction: column;
    flex: 1;
}
/* CRM Tabs Card End */

/* Table Card Inside Tab Start */
.table-inside-tab-card{
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
}
.table-inside-tab-card .table-inside-tab-card-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 26px;
}
.table-inside-tab-card .table-inside-tab-card-body{
    flex: 1;
    display: flex;
}
/* Table Card Inside Tab End */

/* Customer Detail Page Start */
.customer-details-view{
    padding: 36px;
}
.details-sub-heading{
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: var(--fs-24);
    font-weight: var(--fw-500);
    color: var(--solid-blue);
    line-height: 1.2;
}
.customer-details .key{
    width: 100px;
    font-size: var(--fs-16);
    font-weight: var(--fw-400);
    color: var(--gray-100);
    white-space: nowrap;
}
.customer-details .value{
    font-size: var(--fs-16);
    font-weight: var(--fw-600);
    color: var(--dark-100);
    margin-bottom: 0;
}

.wallet-details{
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: var(--fs-20);
    font-weight: var(--fw-600);
    line-height: 1.2;
    margin-bottom: 15px;
}
.wallet-details .key{
    color: var(--gray-100);
}
.wallet-details .value{
    color: var(--dark-100);
}

.positive-value,
.negative-value{
    display: flex;
    align-items: center;
    column-gap: 5px;
    font-size: var(--fs-18);
    font-weight: var(--fw-400);
}
.positive-value{
    color: #00A511;
}
.negative-value{
    color: #F00;
}
.positive-value .icon,
.negative-value .icon{
    width: 30px;
}
.enter-admin-fee{
    height: 17px;
    width: 30px;
    padding: 0 0 3px 0;
    font-size: var(--fs-16);
    font-weight: var(--fw-400);
    color: var(--gray-100);
    text-align: right;
    border: 0;
    border-bottom: 1px solid var(--gray-200);
    outline: 0;
    box-shadow: none;
}
/* Customer Detail Page End */

/* Stripe Custom Account Steps Start */
.stripe-steps-container{
    padding: 30px 40px;
}
.stripe-steps{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 5px;
    overflow: hidden;
    margin-bottom: 50px;
    border-bottom: 0;
}
.stripe-steps .nav-item{
    text-align: center;
    z-index: 1;
}
.stripe-steps .nav-item .nav-link{
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 40px;
    box-shadow: none;
    outline: 0;
    margin: 0;
}
.stripe-steps .nav-item .nav-link .numb{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    font-size: var(--fs-16);
    font-weight: var(--fw-500);
    color: #989898;
    line-height: 40px;
    background: var(--white);
    border: 3px solid #EBEBEB;
    border-radius: 40px;
    margin-bottom: 18px;
}
.stripe-steps .nav-item .nav-link.completed .numb,
.stripe-steps .nav-item .nav-link.active .numb{
    color: var(--white);
    background: var(--bg-gradient);
    border: 3px solid #F4FBF3;
}
.stripe-steps .nav-item .nav-link.active .numb::before{
    content: "";
    height: 43px;
    width: 43px;
    position: absolute;
    top: -4px;
    left: -4px;
    border: 1px solid var(--solid-blue);
    border-radius: 43px;
    z-index: -1;
}
.stripe-steps .nav-item .nav-link .numb::after{
    content: "";
    height: 3px;
    width: 1000px;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    background-color: #7BCDE8;
    z-index: -2;
}
.stripe-steps .nav-item:last-child .nav-link .numb::after{
    height: 6px;
    background-color: var(--white);
}
.stripe-steps .nav-item .nav-link .numb .check-icon{
    width: 20px;
    display: none;
}
.stripe-steps .nav-item .nav-link.completed .numb .check-icon{
    display: block;
}
.stripe-steps .nav-item .nav-link.completed .numb .digit{
    display: none;
}
.stripe-steps .nav-item .nav-link .title{
    font-size: var(--fs-16);
    font-weight: var(--fw-500);
    color: #989898;
    line-height: 1;
    margin-bottom: 0;
}
.stripe-steps .nav-item .nav-link.completed .title,
.stripe-steps .nav-item .nav-link.active .title{
    color: var(--solid-blue);
}
/* Stripe Custom Account Steps End*/

/* Subscription Details Card Start */
.subscription-details-card{
    position: relative;
    min-height: calc(100vh - 208px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 12px;
    border: 1px solid var(--crm-full-card-border);
    background-color: var(--white);
    overflow: hidden;
}
.subscription-details-card .subscription-details-card-header{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    background-color: var(--white);
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid var(--crm-full-card-border);
}
.subscription-details-card .subscription-details-card-header .heading{
    font-size: var(--fs-24);
    font-weight: var(--fw-500);
    color: var(--dark-200);
    line-height: 1.1;
    margin-bottom: 0;
}
/* Subscription Details Card End */

/* Subscription View Details Start */
.view-subscription-details{
    padding: 30px 50px 40px;
    border-bottom: 1px solid var(--crm-full-card-border);
}
.view-subscription-details .sub-heading{
    font-size: var(--fs-24);
    font-weight: var(--fw-500);
    color: var(--solid-blue);
    line-height: 1.1;
    margin-bottom: 5px;
}
.view-subscription-details .key{
    display: block;
    font-size: var(--fs-16);
    font-weight: var(--fw-400);
    color: var(--gray-100);
    line-height: 1;
    margin-bottom: 0;
}
.view-subscription-details .value{
    font-size: var(--fs-16);
    font-weight: var(--fw-600);
    color: var(--dark-100);
    margin-bottom: 0;
}
/* Subscription View Details End */

/* Customer Subscription Card Start */
.customer-subscription-card{
    background-color: var(--white);
}
.customer-subscription-card .sub-heading{
    font-size: var(--fs-24);
    font-weight: var(--fw-500);
    color: var(--solid-blue);
    line-height: 1.1;
    padding-left: 50px;
    margin-bottom: 0;
    margin-top: 30px;
}
.customer-subscription-card .customer-subscription-card-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 26px;
}
/* Customer Subscription Card End */

/* Products View Details Start */
.view-product-details .key,
.view-session-order-details .key,
.view-order-details .key{
    display: block;
    font-size: var(--fs-16);
    font-weight: var(--fw-400);
    color: var(--gray-100);
    line-height: 1;
    margin-bottom: 0;
}
.view-product-details .value,
.view-session-order-details .value,
.view-order-details .value{
    font-size: var(--fs-16);
    font-weight: var(--fw-600);
    color: var(--dark-100);
    line-height: 1.3;
    margin-bottom: 0;
}
.view-session-order-details .key,
.view-order-details .key{
    width: 100px;
}
.view-product-details .key{
    width: 170px;
}
/* Products View Details End */

/* Coupon Details Start */
.products-coupon-details .key{
    width: 100px;
    display: block;
    font-size: var(--fs-16);
    font-weight: var(--fw-400);
    color: var(--gray-100);
    line-height: 1;
    margin-bottom: 0;
}
.products-coupon-details .value{
    font-size: var(--fs-16);
    font-weight: var(--fw-600);
    color: var(--dark-100);
    line-height: 1.3;
    margin-bottom: 0;
}
/* Coupon Details End */

/* Session Orders View Details Start */
.session-orders-btns{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.session-orders-btns .btn{
    padding: 9px 16px;
    height: 50px;
    display: flex;
    align-items: center;
    font-size: var(--fs-16);
    font-weight: var(--fw-600);
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
    outline: 0;
    box-shadow: none;
    border: 0;
    border-radius: 8px;
}
.session-orders-btns .btn-left{
    background: var(--bg-gradient);
}
.session-orders-btns .btn-right{
    background: #F00;
}
/* Session Orders Details End */

/* Orders View Details Start */
.order-fixed-btns{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);  
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.order-fixed-btns .btn-resend,
.order-fixed-btns .btn-add-blacklist{
    padding: 9px 16px;
    height: 50px;
    font-size: var(--fs-16);
    font-weight: var(--fw-600);
    text-decoration: none;
    white-space: nowrap;
    outline: 0;
    box-shadow: none;
    border-radius: 8px;
}
.order-fixed-btns .btn-resend{
    background-color: var(--white);
    color: var(--solid-blue);
    border: 1px solid var(--solid-blue);
}
.order-fixed-btns .btn-add-blacklist{
    background-color: #F00;
    color: var(--white);
    border: 0;
}
.order-steps .step{
    display: flex;
    align-items: flex-start;
    column-gap: 65px;
    padding-bottom: 40px;
}
.order-steps .step:last-child{
    padding-bottom: 0;
}
.order-steps .step .left,
.order-steps .step .right{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 8px;
}
.order-steps .step .right::before{
    content: "";
    position: absolute;
    left: -32px;
    top: 5px;
    width: 3px;
    height: calc(100% + 40px);
    background-color: #E0E0E0;
}
.order-steps .step:only-of-type .right::before{
    height: calc(100% - 5px) !important;
}
.order-steps .step:last-of-type .right::before{
    height: 0;
}
.order-steps .step .right::after{
    content: "";
    position: absolute;
    left: -48px;
    top: 5px;
    width: 35px;
    height: 9px;
    background-image: url("../images/icons/step-union.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.order-steps .step .left .date{
    font-size: var(--fs-18);
    font-weight: var(--fw-400);
    color: var(--dark-100);
    white-space: nowrap;
    line-height: 1;
}
.order-steps .step .left .time{
    font-size: var(--fs-14);
    font-weight: var(--fw-500);
    color: var(--gray-100);
    white-space: nowrap;
    line-height: 1;
}
.order-steps .step .right .desc{
    font-size: var(--fs-18);
    font-weight: var(--fw-400);
    color: var(--dark-100);
    line-height: 1.1;
    margin-bottom: 0;
}
.order-steps .step .right .status{
    position: relative;
    padding-left: 16px;
    font-size: var(--fs-16);
    font-weight: var(--fw-500);
    line-height: 1;
    white-space: nowrap;
}
.order-steps .step .right .status.completed{
    color: #18AE00;
}
.order-steps .step .right .status.in-progress{
    color: var(--solid-blue);
}
.order-steps .step .right .status:before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.order-steps .step .right .status.completed:before{
    background-color: #18AE00;
}
.order-steps .step .right .status.in-progress:before{
    background-color: var(--solid-blue);
}
.order-steps .step .right .badge-link{
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.order-steps .step .right .badge-link .status-badge{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 95px;
    height: 30px;
    padding: 5px 10px;
    font-size: var(--fs-16);
    font-weight: var(--fw-500);
    line-height: 1;
    white-space: nowrap;
    border-radius: 4px;
}
.order-steps .step .right .badge-link .status-badge.ok{
    background-color: rgba(158, 255, 162, 0.24);
    color: #18AE00;
}
.order-steps .step .right .badge-link .status-badge.not-found{
    background-color: rgba(255, 0, 0, 0.15);
    color: #F00F00;
}
.order-steps .step .right .badge-link .status-badge.unavailable{
    background-color: rgba(255, 168, 0, 0.15);
    color: #FFA800;
}
.order-steps .step .right .badge-link .link{
    display: inline-block;
    font-size: var(--fs-15);
    font-weight: var(--fw-500);
    color: var(--solid-blue);
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--solid-blue);
}

.log-status{
    font-size: var(--fs-18);
    font-weight: var(--fw-500);
    line-height: 1;
    padding: 10px 15px;
    border-radius: 4px;
}
.log-status.success{
    color: #18AE00;
    background: rgba(158, 255, 162, 0.24);
}
.log-status.danger{
    color: #F00F00;
    background: rgba(255, 0, 0, 0.15);
}
.log-details{
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--crm-full-card-border);
}
.log-details .key{
    display: block;
    font-size: var(--fs-18);
    font-weight: var(--fw-400);
    color: var(--gray-100);
    line-height: 1;
    margin-bottom: 0;
}
.log-details .value {
    font-size: var(--fs-18);
    font-weight: var(--fw-600);
    color: var(--dark-100);
    margin-bottom: 0;
}
.log-details .value .text-blue{
    color: var(--solid-blue);
}
.code-view{
    background-color: #f0f2f5;
    padding: 20px;
    font-size: var(--fs-18);
    font-weight: var(--fw-500);
    color: var(--dark-100);
    word-break: break-all;
    white-space: pre-wrap;
    margin-bottom: 0;
    border-radius: 5px;
}
.code-view .value.success{
    color: #288315;
}
.code-view .value.primary{
    color: #6360f6;
}
.code-view .value.danger{
    color: #fa5a72;
}
.code-view .value.warning{
    color: #c64917;
}

.delete-product-item .icon{
    width: 40px;
}

.grand-total{
    width: 100%;
    padding: 20px 25px;
    background-color: var(--light-blue-100);
    border-radius: 4px;
}
.grand-total .item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    column-gap: 8px;
}
.grand-total .item:last-of-type{
    margin-bottom: 0;
}
.grand-total .item .key{
    font-size: var(--fs-18);
    font-weight: var(--fw-600);
    color: var(--dark-100);
    line-height: 1;
    margin-bottom: 0;
}
.grand-total .item .value{
    font-size: var(--fs-18);
    font-weight: var(--fw-400);
    color: var(--dark-100);
    line-height: 1;
    margin-bottom: 0;
}
.grand-total .item .coupon-field{
    flex: 1;
}
.grand-total .item .btn-add-coupon{
    min-width: auto;
}

.order-payment-modal .modal-body .content-container,
.refund-modal .modal-body .content-container{
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-bottom: 20px;
}
.order-payment-modal .modal-body .content-container .icon,
.refund-modal .modal-body .content-container .icon{
    width: 60px;
}
.order-payment-modal .modal-body .content-container .desc,
.refund-modal .modal-body .content-container .desc{
    font-size: var(--fs-16);
    font-weight: var(--fw-400);
    color: var(--dark-100);
    margin-bottom: 0;
}

.refund-modal .modal-body .amount-details{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 20px;
}
.refund-modal .modal-body .amount-details .item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 50px;
}
.refund-modal .modal-body .amount-details .item .key,
.refund-modal .modal-body .amount-details .item .value{
    font-size: var(--fs-16);
    line-height: 1;
    margin-bottom: 0;
}
.refund-modal .modal-body .amount-details .item .key{
    font-weight: var(--fw-600);
    color: var(--dark-100);
}
.refund-modal .modal-body .amount-details .item .value{
    font-weight: var(--fw-400);
    color: var(--gray-100);
}
/* Orders Details End */


.main {
    min-height: 100vh;
    padding-left: 380px;
    transition: all 0.3s;
}
.main.sidenav-toggled {
    padding-left: 123px;
}
.main .content{
    padding: 120px 40px 30px;
    width: 100%;
    overflow: hidden;
}

/* Dropdown Animation Start */
.animate-menu {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
}
@keyframes slideIn {
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
    100% {
      transform: translateY(0rem);
      opacity: 1;
    }
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
}
@-webkit-keyframes slideIn {
    0% {
      -webkit-transform: transform;
      -webkit-opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
      -webkit-opacity: 1;
    }
    0% {
      -webkit-transform: translateY(1rem);
      -webkit-opacity: 0;
    }
}
.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}
/* Dropdown Animation End */

/* Dashboard Start */
.dashboard-widgets .widget{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-radius: 12px;
}
.dashboard-widgets .col:nth-child(1) .widget{
    background: linear-gradient(135deg, #7BCDE8 0%, #73AEDA 100%);
}
.dashboard-widgets .col:nth-child(2) .widget{
    background: linear-gradient(135deg, #DC7A70 0%, #B65D54 100%);
}
.dashboard-widgets .col:nth-child(3) .widget{
    background: linear-gradient(135deg, #72DFD9 0%, #42A9A3 100%);
}
.dashboard-widgets .col:nth-child(4) .widget{
    background: linear-gradient(135deg, #DFC36A 0%, #BEA249 100%);
}
.dashboard-widgets .widget .total{
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}
.dashboard-widgets .widget .total .number{
    font-size: var(--fs-48);
    font-weight: var(--fw-600);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0;
}
.dashboard-widgets .widget .total .text{
    font-size: var(--fs-18);
    font-weight: var(--fw-500);
    color: var(--white);
    line-height: 1.1;
    text-transform: capitalize;
    white-space: nowrap;
    margin-bottom: 0;
}
.dashboard-widgets .widget .pattern-img{
    width: 140px;
    overflow: hidden;
}
.dashboard-widgets .widget .pattern-img svg{
    width: 100%;
}

.dashboard-chart .chart-card{
    background-color: var(--white);
    padding: 25px 30px;
    border-radius: 12px;
}
.dashboard-chart .header .heading{
    font-size: var(--fs-24);
    font-weight: var(--fw-600);
    color: #37393B;
    line-height: 1;
    margin-bottom: 0;
}
.dashboard-chart .session-status{
    display: flex;
    align-items: center;
    column-gap: 30px;
}
.dashboard-chart .session-status .item{
    display: flex;
    align-items: center;
    column-gap: 6px;
}
.dashboard-chart .session-status .item .indicator{
    min-width: 12px;
    width: 12px;
    height: 12px;
    border-radius: 12px;
    border: 0;
    box-shadow: none;
    outline: 0;
}
.dashboard-chart .session-status .item.completed .indicator{
    background-color: #46DB8A;
}
.dashboard-chart .session-status .item.cancelled .indicator{
    background-color: #F00F00;
}
.dashboard-chart .session-status .item.declined .indicator{
    background-color: #FFA800;
}
.dashboard-chart .session-status .item.in-session .indicator{
    background-color: #2A8BF2;
}
.dashboard-chart .session-status .item.partial .indicator{
    background-color: #9747FF;
}
.dashboard-chart .session-status .item.refund .indicator{
    background-color: #FFB39D;
}
.dashboard-chart .session-status .item.pending .indicator{
    background-color: #7BCDE8;
}
.dashboard-chart .session-status .item .text{
    font-size: var(--fs-16);
    font-weight: var(--fw-400);
    color: var(--gray-100);
    line-height: 1;
    margin-bottom: 0;
}
.dashboard-chart .duration-selection{
    display: flex;
    align-items: center;
    column-gap: 12px;
}
.dashboard-chart .duration-selection .option input{
    display: none;
}
.dashboard-chart .duration-selection .option input+label{
    padding: 8px 20px;
    background: var(--white);
    font-size: var(--fs-16);
    font-weight: var(--fw-500);
    color: var(--gray-200);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
    transition: all 0.2s;
}
.dashboard-chart .duration-selection .option input:checked+label{
    background: var(--bg-gradient);
    color: var(--white);
    border: 1px solid var(--bg-gradient);
}
/* Dashboard End */

/* Email Templates Page */
.email-keywords{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 16px;
}
.email-keywords .keyword{
    font-size: var(--fs-16);
    font-weight: var(--fw-600);
    color: var(--white);
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
    background: var(--bg-gradient);
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
}

/* Text Editor Start */
.ql-toolbar.ql-snow{
    border: 1px solid var(--light-gray-100) !important;
    padding: 12px 12px !important;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.ql-container{
    height: 180px !important;
    border: 1px solid var(--light-gray-100) !important;
    border-top: 0 !important;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.iti--allow-dropdown {
    width: 100%;
}
.iti--allow-dropdown .iti__selected-flag {
    padding: 0 12px 0 12px !important;
    border-radius: 12px 0 0 12px !important;
}
.iti--allow-dropdown > input {
    padding-left: 64px !important;
}
/* Text Editor End */

/* CK Text Editor Start */
.cke_chrome {
    border: 1px solid var(--crm-full-card-border) !important;
    border-radius: 12px;
    overflow: hidden;
}
.cke_chrome .cke_top {
    border-bottom: 1px solid var(--crm-full-card-border) !important;
}
.cke_chrome .cke_bottom {
    border-top: 1px solid var(--crm-full-card-border) !important;
}
/* CK Text Editor End */

/* Select 2 Start */
.select2-container{
    width: 100% !important;
    z-index: 990;
}
.select2-container .select2-selection--single{
    border-color: var(--light-gray-100) !important;
    border-radius: 12px !important;
}
.field-lg + .select2-container .select2-selection--single{
    height: 48px !important;
}
.field-md + .select2-container .select2-selection--single{
    height: 44px !important;
}
.select2-container .select2-selection--single:focus-visible {
    outline: 0 !important;
}
.select2-container.select2-container--open .select2-selection--single{
    border-radius: 12px 12px 0 0 !important;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    font-size: var(--fs-16);
}
.field-lg + .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 48px !important;
}
.field-md + .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 44px !important;
}
.select2-container .select2-selection--single .select2-selection__rendered .select2-selection__placeholder {
    font-size: 16px;
}
.select2-container .select2-selection--single .select2-selection__arrow{
    width: 40px !important;
    background-image: url("../../crm-assets/images/icons/icon-chevron-down.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
}
.field-lg + .select2-container .select2-selection--single .select2-selection__arrow{
    height: 48px !important;
}
.field-md + .select2-container .select2-selection--single .select2-selection__arrow{
    height: 44px !important;
}
.select2-container .select2-selection--single .select2-selection__arrow b {
    display: none !important;
}
.select2-container .select2-dropdown{
    border-color: var(--light-gray-100) !important;
    border-radius: 0 0 12px 12px !important;
}
.select2-container .select2-dropdown .select2-search--dropdown {
    padding: 6px !important;
}
.select2-container .select2-search--dropdown .select2-search__field {
    font-size: 16px;
    border-color: var(--light-gray-100) !important;
    outline: 0 !important;
    box-shadow: none !important;
}
.select2-container .select2-dropdown .select2-results .select2-results__option{
    padding: 6px 8px 10px 8px;
    font-size: 16px;
    line-height: 1;
}

.select2-container .select2-selection--multiple{
    border: 1px solid var(--light-gray-100) !important;
    border-radius: 8px !important;  
}
.select2-container .select2-selection--multiple .select2-selection__rendered{
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 5px;
    padding: 5px !important;
}
.field-lg + .select2-container .select2-selection--multiple .select2-selection__rendered{
    min-height: 46px;
}
.field-md + .select2-container .select2-selection--multiple .select2-selection__rendered{
    min-height: 42px;
}
.select2-container .select2-selection--multiple .select2-selection__rendered .select2-selection__choice{
    font-size: var(--fs-16);
    color: var(--dark-100);
    background-color: #7BCDE8;
    padding: 2px 5px !important;
    border: 0;
    margin: 0;
}
.select2-container .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove{
    color: var(--dark-100);
}
.select2-container .select2-selection--multiple .select2-selection__rendered .select2-search .select2-search__field{
    margin-top: 0 !important;
    font-size: var(--fs-16);
}
/* Select 2 End */