* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins';
}

:root {
    --primary-clr: #6F338D;
    --secondary-clr: #5AA8A4;
    --black-clr: #000;
    --white-clr: #fff;
    --bg-clr: #F3F2F7;
    --bg-lgt-clr: #F8F8F8;
    --card-bg: #F9F1FD;
    --green-clr: #32AA14;
    --red-clr: #FF0505;
    --pink-clr: #FD65C0;
    --yellow-clr: #FFCC40;
    --purple-clr: #783EFD;
    --lgt-navy-clr: #6071CB;
    --dark-orange: #F65755;
    --theme-clr: #f7966b;
    --table-txt-clr: #404D61;
    --ub-font: 'Urbanist';
    --pp-font: 'Poppins';
    --dms-font: "DM Sans", sans-serif;
    --spacer: 20px;
}

html,
body {
    background: var(--bg-clr);
}


/* Scrollbar css start */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: #f9ffff;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-clr);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-clr);
}

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

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

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

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

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

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

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

/* Scrollbar css end */
a {
    text-decoration: none;
}

.spacer {
    padding: var(--spacer) 0px;
}

.p-relative {
    position: relative;
}


.input-error {
    border: 1px solid var(--red-clr) !important;
}

/* login css start */
.login-main {
    width: 100%;
    display: flex;
}

.login-form-main {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: center;
}

.inner-content {
    width: 50%;
}

.inner-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: navy.700;
}

.inner-content p {
    margin-bottom: 25px;
    margin-inline-start: 4px;
    font-weight: 400;
    font-size: 13px;
    color: gray.400;
}

.form-main {
    display: flex;
    flex-direction: column;
}

.form-inner-div {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 10px;
}

.border_color {
    border: 1px solid red;
}

.form-inner-div p {
    margin: 0;
    color: red;
    padding: 5px;
}

.form-inner-div label {
    font-size: 14px;
    padding: 5px;
    font-weight: 600;
    font-family: var(--dms-font);
}

.password-eye {
    position: absolute;
    right: 3%;
    top: 42px;
    cursor: pointer;
    color: gray;
}

.form-inner-div input {
    padding: 13px;
    border-radius: 15px;
    width: 100%;
    border: 1px solid rgba(128, 128, 128, 0.297);
    background-color: var(--card-bg);
    outline: blue !important;
    font-size: 15px;
}

.form-inner-div input::placeholder {
    color: rgba(128, 128, 128, 0.687);
}

.checkbox-main {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
}

.checkbox-main input {
    border: 2px solid !important;
}

.checkbox-main p {
    margin: 0;
    margin-inline-start: 4px;
    font-weight: 400;
    font-size: 13px;
    color: gray.400;
}

.login-form-main button {
    width: 100%;
    padding: 13px;
    background: linear-gradient(0deg, #a02ed9 0%, #e3bcf7 100%);
    border: none;
    color: white;
    border-radius: 15px;
    margin-top: 15px;
    margin-bottom: 5px;
}

.login-form-main button:hover {
    background-color: #6d92d2;
}

.login-form-main button:focus {
    outline: none;
}

.login-logo-main {
    width: 55%;
    height: 100vh;
    background-image: linear-gradient(-45deg, #a02ed9 0%, #e3bcf7 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px 0px 900px 0px;
    transform: scale(0);
    transform-origin: left top;
    transition: all .5s linear;
    animation: delay 1s forwards 0s;
}

@keyframes delay {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1.0);
    }
}

.login-logo-main img {
    width: 230px;
    opacity: 0;
    transform: scale(0);
    transform-origin: center;
    transition: all .5s linear;
    animation: imgscale 1s forwards 0.5s;
}

@keyframes imgscale {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1.0);
        opacity: 1;
    }
}

.forgot-password {
    font-weight: 400 !important;
    font-family: var(--pp-font) !important;
    color: #525252 !important;
    word-break: break-all !important;
    display: flex !important;
    justify-content: center !important;
}

.forgot-password p {
    cursor: pointer;
    font-size: 15px !important;
    margin: 0;
    text-decoration: underline;
    color: var(--black-clr)
}

.forgot-password p:hover {
    color: var(--primary-clr);
}

/* login css End */

/* otp verification css start */
ul.otp-input-block {
    list-style: none;
    padding-left: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul.otp-input-block li input {
    max-width: 60px;
    height: 60px;
    width: 100%;
    padding: 10px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: var(--card-bg);
}

ul.otp-input-block li input:focus {
    outline: none;
}

.resend-otp-blk {
    margin-top: 10px;
    text-align: center;
}

.resend-otp {
    padding: 0px !important;
    cursor: pointer !important;
    border: 0px !important;
    background: transparent !important;
    color: var(--primary-clr) !important;
    margin: 0px !important;
}

/* otp verification css end */

/* select campaign  css start */
.wrapper {
    position: relative;
    border-radius: 10px !important;
    width: 100%;
    max-width: 500px;
}

.selectdrop {
    position: absolute;
    content: "";
    top: 50px;
    left: 0;
    z-index: 1;
    width: 100%;
    background-color: #fff;
    max-height: 275px;
    overflow-y: auto;
    box-shadow: 0px 8px 32px rgb(51 38 174 / 8%);
    border-radius: 10px !important;
}

.wrapper .campaign-container {
    width: 100%;
    text-align: left;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 20px;
    background: var(--white-clr) !important;
    border: none;
    cursor: pointer;
    border-radius: 10px;
}

.wrapper .campaign-container:focus {
    outline: none;
}

.inner-content-blk {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-top: 1px solid rgba(240, 240, 240, 1);
    cursor: pointer;
}

.wrapper .arrow {
    font-size: 2rem;
    transition: 1s ease-in-out;
}

.wrapper .campaign-container.active .content-container {
    padding: 0 1rem 1.5rem;
    transition: height .5s ease-in-out;
}

.wrapper .inner-select-campaign {
    margin: 0;
}

p.inner-select-campaign {
    font-size: 14px;
    font-weight: 500;
    font-family: 'poppins';
}

p.inner-select-campaign:not(:last-child) {
    padding-right: 8px;
    border-right: 2px solid #000;
}

span.text-label {
    font-weight: 600;
    font-size: 14px;
}

.search_input {
    border: 0px;
    background: transparent;
    font-size: 16px;
    width: 100%;
    font-weight: 500;
}

.search_input::placeholder {
    color: rgba(0, 0, 0, 1);
}

.search_input:focus {
    outline: none;
}

.table-primary-btn {
    background: var(--black-clr) !important;
    color: #fff !important;
    padding: 8px 16px !important;
    min-width: 100px !important;
    text-align: center !important;
    margin: 0px !important;
    border-radius: 8px !important;
    transition: all .5s ease;

}

.table-primary-btn:hover {
    background: var(--primary-clr) !important;
    color: #fff !important;
}

.primary-btn {
    background: var(--primary-clr) !important;
    color: #fff !important;
    padding: 5px 8px;
    min-width: 55px;
    text-align: center;
    margin: 0px;
    border-radius: 8px;
    transition: all .5s ease;
}

.secondary-btn {
    min-width: 100px !important;
}

.primary-btn:hover {
    background: var(--black-clr) !important;
    color: #fff !important;
}

.secondary-btn:hover,
.primary-border-btn:hover {
    background: #222 !important;
    color: #fff !important;
}

input:focus,
select:focus,
textarea:focus {
    box-shadow: none !important;
    border-color: #eee !important;
}

img {
    max-width: 100%;
}

.side-navbar {
    max-width: 270px;
    width: 100%;
    background: var(--primary-clr);
    border: 0px;
    border-radius: 0px;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    padding: 0px;
    margin: 0px;
    overflow-y: auto;
    transition: all .5s ease;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.main-wrapper {
    margin-left: 270px;
    transition: all .5s ease;
    background: var(--bg-clr);
}

.main-wrapper.main-width {
    margin-left: 0px;
}

.content-wrapper {
    background: var(--bg-clr);
}

header {
    padding: 15px 0px 5px;
    position: relative;
    z-index: 1;
}

.navbar-nav li.nav-item:not(:last-child) {
    margin-right: 8px;
}

.navsbar li a.nav-link {
    width: 37px;
    height: 37px;
    background: var(--bg-clr);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
}

.navsbar li a.nav-link.profile-link {
    width: 37px;
    height: 37px;
    border: 1px solid var(--primary-clr);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 0px;
}

.navsbar li a.nav-link.profile-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.header-flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

header button.opnBtn {
    width: 22px;
    height: 22px;
    line-height: 22px;
    background-color: transparent;
    color: #fff;
    border: 0px;
    padding: 0px;
    border-radius: 0px;
    z-index: 2;
    display: none !important;
}

button.opnBtn i {
    font-size: 22px;
    color: var(--black-clr);
}

.side-hide {
    left: -363px !important;
}

.side-navbar ul li,
.side-navbar ul li a {
    background: var(--primary-clr);
    transition: all .5s ease;
}

.side-navbar ul li.sidebar-logo {
    margin-top: 25px;
    margin-bottom: 20px;
    padding-left: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
}

li.sidebar-logo a.navbar-brand {
    width: 122px;
    transition: all .5s ease;
    display: inline-block;
}

li.sidebar-logo a.navbar-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.side-navbar ul li.sidebar-link {
    margin-bottom: 4px;
}

.side-navbar ul li.sidebar-link a.nav-link {
    color: #B799C6 !important;
    background: transparent;
    padding: 14px 14px 14px 30px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--ub-font);
    border-radius: 0px;
    transition: all .2s ease-in-out;
    text-transform: capitalize;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    cursor: pointer;
}

a.nav-link.active::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--white-clr);
    border-radius: 5px;
    transform: translateY(-50%);
}

.side-navbar ul li.sidebar-link a.nav-link svg {
    margin-right: 16px;
}

.side-navbar ul li.sidebar-link a.nav-link:hover {
    font-weight: 600;
    color: var(--white-clr) !important;
}

.side-navbar ul li.sidebar-link a.nav-link.active svg path,
.side-navbar ul li.sidebar-link a.nav-link:hover svg path {
    fill: var(--white-clr);
}

.side-navbar ul li.sidebar-link a.nav-link.active {
    font-weight: 600;
    color: var(--white-clr) !important;
}

a.nav-sublink.active {
    font-weight: 600;
    color: var(--white-clr) !important;
}

.side-navbar ul li.sidebar-link a.nav-link.active span.dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 10px;
    margin-left: 10px;
}

.side-navbar ul li a.nav-link i {
    font-size: 16px;
    margin-right: 10px;
}

button.closeBtn {
    width: 30px;
    height: 30px;
    background: transparent;
    color: #fff;
    position: absolute;
    top: 10px;
    right: 10px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: none !important;
    z-index: 5;
}




/* dashboard css start */

span.page-heading {
    font-size: 25px;
    font-weight: 900;
    color: var(--black-clr);
    line-height: normal;
    font-family: var(--ub-font);
}

.heading {
    margin-bottom: 35px;
}

.topheading h1,
.topheading h2 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0px;
    text-transform: capitalize;
}

.heading h1 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
}

button.calender-icon {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 27px;
    height: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0px;
    background: #fff;
}

.modal-wrapper {
    padding: 50px 65px;
}

.modal-heading {
    text-align: center;
    margin-bottom: 40px;
}

.modal-heading h2 {
    font-size: 22px;
    font-weight: 700;
}

.modal-btn-block {
    text-align: center;
    margin-top: 40px;
}


.form-mdl-blk .form-group label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}

.form-mdl-blk .form-group input {
    padding: 17px;
    border: 0px;
    background: var(--bg-lgt-clr);
    font-size: 14px;
    font-weight: 600;
    color: #545252;
}

.date-modal .modal-footer {
    justify-content: center !important;
    padding-bottom: 22px;
}

button.btn.primary-btn {
    font-size: 12px;
    font-weight: 400;
}

button.btn.table-primary-btn {
    font-size: 12px;
    font-weight: 400;
}

button.btn.secondary-btn {
    background: var(--white-clr);
    color: #000;
    font-size: 12px;
    font-weight: 500;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    margin: 0px;
}

.btn-flex-blk {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

.flex-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-end-box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.flex-width-select {
    width: 165px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #F8F8F8;
    border-color: #F8F8F8;
    font-size: 13px;
}

.select-month {
    position: relative;
    border-radius: 30px;
    background-color: var(--primary-clr);
    z-index: 1;
}

.select-month select {
    border: 1px solid var(--primary-clr);
    border-radius: 30px;
    padding: 5px 15px;
    background-color: transparent;
    color: #fff;
    font-size: 12px;
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
}

.select-month select option {
    background: #fff;
    color: #000;
}

.total-card-blk {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.sub-heading .h3 {
    font-size: 19px;
    font-weight: 500;
}

.sub-heading h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0px;
    color: #5F008E;
    font-family: var(--pp-font);
}

.sub-heading {
    margin: 0px 0px 25px;
}

.helpdesk-filter {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.helpdesk-filter :is(.form-control, .form-select) {
    padding: 15px 20px;
    background-color: var(--white-clr);
    border: 0px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    width: 280px;
}

.select-campaign-blk {
    width: 500px;
}

.select-campaign-blk select {
    padding-right: 40px !important;
}

.helpdesk-phone-num>div {
    display: flex;
    justify-content: flex-start;
}

button.country-codes {
    padding: 15px 20px;
    background-color: var(--white-clr);
    border: 0px;
    border-radius: 10px 0px 0px 10px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    position: relative;
}

button.country-codes::before {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    width: 1px;
    height: 80%;
    background: #EFEFEF;
    transform: translateY(-50%);
}

select.country-codes {
    padding: 0px 8px;
    background-color: var(--white-clr);
    border: 0px;
    border-radius: 10px 0px 0px 10px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    position: relative;
    max-width: 100px;
    width: 100%;
    cursor: pointer;
}

select:focus {
    outline: none;
}

.helpdesk-phone-num input {
    border-radius: 0px 10px 10px 0px !important;
}

.check-detail-btn .primary-btn {
    padding: 8px 18px !important;
    font-size: 18px !important;
}

/* Datepicker CSS Start */

.filter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-date-blk,
.filter-search-btn-blk {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-date-blk {
    width: 40%;
}

.filter-date-blk div {
    flex-basis: calc(50% - 5px);
}

.filter-search-btn-blk {
    width: 40%;
}

.recepit-filter-btn-blk {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 59%;
}

.recepit-select {
    width: calc(100% - 220px);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.recepit-select .form-block {
    width: 50%;
}

.filter-search-btn-blk>div.form-block {
    width: calc(100% - 220px);
}

.filter-action-btn-blk {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

span.cal-icon {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/temp/calender.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    content: "";
    top: 24px;
    right: 10px;
    transform: translateY(-50%);
    z-index: 1;
}

.form-block input,
.form-block select {
    padding: 13px 18px;
    background-color: var(--white-clr);
    border-color: var(--white-clr);
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.form-block input::placeholder {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.form-block input:focus {
    outline: none;
    border-color: #eee !important;
}

.form-block input#search {
    padding-right: 30px;
}

span.search-icon {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../images/icons/search-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    content: "";
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.form-block input#search:focus+span.search-icon {
    display: none;
}

#ui-datepicker-div {
    display: none;
    background-color: #fff;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
    margin-top: 0.25rem;
    border-radius: 0.5rem;
    padding: 0.5rem;
}

.form-block #ui-datepicker-div table {
    border-collapse: collapse;
    border-spacing: 0;
}

.ui-datepicker-calendar thead th {
    padding: 0.25rem 0;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 400;
    color: #78909C;
}

.ui-datepicker-calendar tbody td {
    width: 2.5rem;
    text-align: center;
    padding: 0;
}

.ui-datepicker-calendar tbody td a {
    display: block;
    border-radius: 0.25rem;
    line-height: 2rem;
    transition: 0.3s all;
    color: #546E7A;
    font-size: 0.875rem;
    text-decoration: none;
}

.ui-datepicker-calendar tbody td a:hover {
    background-color: var(--bg-clr);
}

.ui-datepicker-calendar tbody td a.ui-state-active {
    background-color: var(--primary-clr);
    color: white;
}

.ui-datepicker-header a.ui-corner-all {
    cursor: pointer;
    position: absolute;
    top: 0;
    width: 2rem;
    height: 2rem;
    margin: 0.5rem;
    border-radius: 0.25rem;
    transition: 0.3s all;
}

.ui-datepicker-header a.ui-corner-all:hover {
    background-color: #ECEFF1;
}

.ui-datepicker-header a.ui-datepicker-prev {
    left: 0;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
    background-repeat: no-repeat;
    background-size: 0.5rem;
    background-position: 50%;
    transform: rotate(180deg);
}

.ui-datepicker-header a.ui-datepicker-next {
    right: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==');
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: 50%;
}

.ui-datepicker-header a>span {
    display: none;
}

.ui-datepicker-title {
    text-align: center;
    line-height: 2rem;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    padding-bottom: 0.25rem;
}

.ui-datepicker-week-col {
    color: #78909C;
    font-weight: 400;
    font-size: 0.75rem;
}

/* Datepicker CSS end */

/* user management css start */

.sub-heading .h4,
h4,
.h4 {
    font-size: 16px;
    font-weight: 500;
}

.table-sub-heading .h4,
h4,
.h4 {
    font-size: 16px;
    font-weight: 500;
}

.table-sub-heading .h3 {
    font-size: 19px;
    font-weight: 500;
}

.table-sub-heading h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0px;
    color: var(--black-clr);
    font-family: var(--pp-font);
}

.table-sub-heading {
    margin: 0px 0px 25px;
}

/* pagination css start */
.pagination-button-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding-right: 15px;
}

label.row-label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

label.row-label span {
    width: 140px;
    line-height: normal;
}

label.row-label select {
    width: calc(100% - 135px);
    background-color: var(--black-clr);
    color: #fff;
}

label.row-label select.form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
}

button.pagination-button {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0px;
    cursor: pointer;
}

button.pagination-button i {
    font-size: 16px;
}

/* pagination css end */
/* Datatable CSS Start */
table {
    width: 100%;
}

.table-blk table thead tr {
    background: var(--white-clr);
}

.table-blk tr {
    border-bottom: 0.8px solid #F2F2F2;
}

.table-blk table tr th {
    font-size: 16px;
    color: #8E95A9;
    font-weight: 500;
    padding: 5px 15px;
    font-family: var(--ub-font);
    text-transform: uppercase;
}

.table-blk table tr td {
    font-size: 16px;
    color: #390852;
    font-weight: 700;
    padding: 20px 15px;
    font-family: var(--dms-font);
}

.table-blk table tr td a {
    font-size: 14px;
    color: var(--table-txt-clr);
    font-weight: 400;
}

.table-blk table tr th,
.table-blk table tr td,
.table-blk table.dataTable.display tbody td {
    border: 0px;
    box-shadow: none !important;
}

.table-blk table.dataTable.display tbody tr.odd,
.table-blk table tbody tr:nth-child(odd) {
    background: #fff !important;
}

.table-blk table.dataTable.display tbody tr.even,
.table-blk table tbody tr:nth-child(even) {
    background: #fff;
}

span.table-profile {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
}

span.table-profileimg {
    width: 29px;
    height: 29px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

span.table-profileimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

span.table-username {
    width: calc(100% - 39px);
    display: inline-block;
}

span.table-status.st-confirmed,
span.table-status.st-active {
    color: var(--green-clr);
}

span.table-status.st-suspended,
span.table-status.st-decline {
    color: var(--red-clr);
}

span.table-status.st-pending {
    color: #F1C114;
}

span.table-action {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    line-height: 0px;
}

span.table-check {
    line-height: 0px;
}

.table-check input {
    display: none;
}

.table-check input+label {
    width: 30px;
    height: 16px;
    background: #C5C5C5;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: all .5s ease;
}

.table-check input+label::before {
    position: absolute;
    content: "";
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 20px;
    transition: all .5s ease;
}

.table-check input:checked+label {
    background: var(--black-clr);
}

.table-check input:checked+label::before {
    left: calc(100% - 13px);
}

.table-check input+label::after {
    position: absolute;
    content: "off";
    top: 50%;
    right: 3px;
    font-size: 5px;
    font-weight: 500;
    font-family: var(--pp-font);
    color: #fff;
    transform: translateY(-50%);
    text-transform: uppercase;
    line-height: normal;
}

.table-check input:checked+label::after {
    content: "on";
    right: calc(100% - 13px);
}

.table-trash,
.table-edit {
    border: 0px;
    background: transparent;
    padding: 0px;
    line-height: 0px;
    cursor: pointer;
}

.table-save {
    background: var(--primary-clr);
    font-size: 11px;
    color: #fff;
    padding: 4px 8px;
    min-width: 60px;
    border: 0px;
    text-align: center;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0px;
    border-radius: 3px;
    transition: all .5s ease;
}

.dataTables_paginate {
    text-align: right;
}

.table-blk .dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 5px 12px !important;
}

.table-blk .dataTables_wrapper .dataTables_paginate .paginate_button:not(:last-child) {
    margin-right: 45px;
}

.table-blk .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color: white !important;
    border: 0px;
    background: linear-gradient(to bottom, #96b0e5 0%, #082562 100%);
}

div.dataTables_length select {
    background: var(--black-clr);
    padding: 5px;
    border-radius: 5px;
    color: #fff;
    border-color: var(--black-clr);
}

.table-blk .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
    border: 0px;
    background: transparent;
}

.table-blk .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover svg path {
    fill: #000 !important;
    fill-opacity: 0.38;
}

.table-blk .dataTables_wrapper .dataTables_paginate .paginate_button:hover svg path {
    fill: #fff !important;
    fill-opacity: 1;
}

.table-blk input.form-control,
.table-blk .form-select,
.table-blk input.form-control:disabled {
    padding: 0px;
    font-size: 16px;
    color: #390852;
    font-weight: 700;
    font-family: var(--dms-font);
    border: 0px;
}

.table-blk .form-select {
    min-width: 120px;
    width: 100%;
}

.table-blk :is(.form-control, .form-select):disabled {
    background-color: #fff;
    border: 0px !important;
}

.table-blk :is(.form-control, .form-select):not(disabled) {
    border-bottom: 1px solid #929292 !important;
    border-radius: 0px !important;
}

.table-blk :is(.form-control) {
    height: 36px;
}

.table-blk table td {
    position: relative;
}

.table-blk table td .error {
    font-size: 11px !important;
    position: absolute;
    top: 56px;
}

.table-blk .css-1dimb5e-singleValue {
    font-size: 14px;
}

.table-blk .css-1fdsijx-ValueContainer {
    padding-top: 0px;
    padding-bottom: 0px;
}

.table-blk .css-t3ipsp-control {
    min-height: 36px;
}

/* Datatable CSS end */

/* cutom database table css start */
.custom-table-blk table thead tr {
    background: var(--primary-clr);
}

.custom-table-blk table tr th {
    font-size: 15px;
    color: var(--white-clr);
    font-weight: 500;
    padding: 17px 30px;
    font-family: var(--ub-font);
}

.custom-table-blk table tr td {
    font-size: 15px;
    color: var(--table-txt-clr);
    font-weight: 500;
    padding: 10px 30px;
    font-family: var(--ub-font);
}

.custom-table-blk table tr td a {
    font-size: 14px;
    color: var(--table-txt-clr);
    font-weight: 400;
}

.custom-table-blk table tr th,
.custom-table-blk table tr td,
.custom-table-blk table.dataTable.display tbody td {
    border: 0px;
    box-shadow: none !important;
}

.custom-table-blk table.dataTable.display tbody tr.odd,
.custom-table-blk table tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.85) !important;
}

.custom-table-blk table.dataTable.display tbody tr.even {
    background: #F7F6FA;
}

span.table-profile {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
}

span.table-profileimg {
    width: 29px;
    height: 29px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

span.table-profileimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

span.table-username {
    width: calc(100% - 39px);
    display: inline-block;
}

span.table-status.st-confirmed,
span.table-status.st-active {
    color: var(--green-clr);
}

span.table-status.st-suspended,
span.table-status.st-decline {
    color: var(--red-clr);
}

span.table-status.st-pending {
    color: #F1C114;
}

span.table-action {
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    line-height: 0px;
}

span.table-check {
    line-height: 0px;
}

.table-check input {
    display: none;
}

.table-check input+label {
    width: 30px;
    height: 16px;
    background: #C5C5C5;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: all .5s ease;
}

.table-check input+label::before {
    position: absolute;
    content: "";
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 20px;
    transition: all .5s ease;
}

.table-check input:checked+label {
    background: var(--black-clr);
}

.table-check input:checked+label::before {
    left: calc(100% - 13px);
}

.table-check input+label::after {
    position: absolute;
    content: "off";
    top: 50%;
    right: 3px;
    font-size: 5px;
    font-weight: 500;
    font-family: var(--pp-font);
    color: #fff;
    transform: translateY(-50%);
    text-transform: uppercase;
    line-height: normal;
}

.table-check input:checked+label::after {
    content: "on";
    right: calc(100% - 13px);
}

button.table-trash {
    border: 0px;
    background: transparent;
    padding: 0px;
    line-height: 0px;
    cursor: pointer;
}

.dataTables_paginate {
    text-align: right;
}

.custom-table-blk .dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 5px 12px !important;
}

.custom-table-blk .dataTables_wrapper .dataTables_paginate .paginate_button:not(:last-child) {
    margin-right: 45px;
}

.custom-table-blk .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color: white !important;
    border: 0px;
    background: linear-gradient(to bottom, #96b0e5 0%, #082562 100%);
}

div.dataTables_length select {
    background: var(--black-clr);
    padding: 5px;
    border-radius: 5px;
    color: #fff;
    border-color: var(--black-clr);
}

.custom-table-blk .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
    border: 0px;
    background: transparent;
}

.custom-table-blk .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover svg path {
    fill: #000 !important;
    fill-opacity: 0.38;
}

.custom-table-blk .dataTables_wrapper .dataTables_paginate .paginate_button:hover svg path {
    fill: #fff !important;
    fill-opacity: 1;
}

.table-filter-blk {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.table-filter-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    width: calc(100% - (30% + 20px)) !important;
    width: 700px !important;
}

.table-filter-blk .filter-search-btn-blk {
    width: calc(100% - 720px);
}

.table-filter .form-block {
    width: 205px !important;
}

.table-filter-blk .filter-search-btn-blk>div.form-block {
    width: 100%;
}

.table-filter-wrapper h3 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--dms-font);
    margin-bottom: 0px;
    width: 100px;
}

.table-filter {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    width: calc(100% - 110px);
}

.table-filter .primary-btn {
    margin-right: 0px !important;
}

/* cutom database table css end */


/* dashboard css start */
.dashboard-navs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.dashboard-navs select {
    width: 240px;
    padding: 10px 10px;
}

.light-bg-wrapper {
    padding: 22px 25px;
    border-radius: 18px;
    box-shadow: 0px 4px 4px 0px rgba(185, 185, 185, 0.25);
    background-color: #F7F6FA !important;
    border: 2px solid var(--white-clr);
}

span.page-heading {
    font-size: 25px;
    font-weight: 900;
    color: var(--black-clr);
    line-height: normal;
    font-family: var(--ub-font);
}

.heading {
    margin-bottom: 35px;
}

.topheading h1,
.topheading h2 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0px;
    text-transform: capitalize;
}

.heading h1 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
}

button.calender-icon {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 27px;
    height: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0px;
    background: #fff;
}

.dashboard-blk ul.nav-pills {
    padding: 8px;
    background-color: var(--white-clr);
    border-radius: 6px;
}

.dashboard-blk button.nav-link {
    padding: 0px;
    background: var(--white-clr) !important;
    font-family: var(--pp-font);
    color: #c1c1c1;
    font-size: 12px;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 5px;
}

.dashboard-blk button.nav-link.active {
    color: var(--white-clr) !important;
    background: var(--black-clr) !important;
}

.light-bg-wrapper .trspt-card-detail h3 {
    color: var(--black-clr);
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
}

.light-bg-wrapper .trspt-card-detail span.trspt-values {
    font-size: 20px;
}

.light-bg-wrapper .trspt-card-detail span.trspt-values sup {
    font-size: 11px;
    font-weight: 600;
    top: -1em;
}

.light-bg-wrapper .trspt-card-detail span.trspt-icon {
    width: 40px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.addcategory-modal .modal-dialog {
    max-width: 655px;
}

.addcategory-modal .modal-content {
    background: var(--bg-clr);
}

.modal-wrapper {
    padding: 50px 65px;
}

.modal-heading {
    text-align: center;
    margin-bottom: 40px;
}

.modal-heading h2 {
    font-size: 22px;
    font-weight: 700;
}

.modal-btn-block {
    text-align: center;
    margin-top: 40px;
}

.date-modal .modal-header {
    padding-top: 27px;
}

.date-modal .modal-body {
    padding: 12px 40px;
}

.form-mdl-blk .form-group label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}

.form-mdl-blk .form-group input {
    padding: 17px;
    border: 0px;
    background: var(--bg-lgt-clr);
    font-size: 14px;
    font-weight: 600;
    color: #545252;
}

.date-modal .modal-footer {
    justify-content: center !important;
    padding-bottom: 22px;
}

button.btn.primary-btn {
    font-size: 13px;
    font-weight: 400;
    margin-right: 10px;
}

button.btn.secondary-btn {
    background: var(--white-clr);
    color: #000;
    font-size: 12px;
    font-weight: 500;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    margin: 0px;
}

.btn-flex-blk {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

.graph-card {
    background: var(--white-clr);
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.graph-card.pie-card {
    padding: 20px 0px;
}

.graph-card.pie-card .sub-heading {
    padding: 0px 30px;
}

.graph-card h2 {
    font-size: 15px !important;
    text-transform: capitalize;
}

.transaction-chart {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.piechart {
    width: 58%;
}

.piechart-value {
    width: 42%;
}

.pie-card .apexcharts-inner {
    transform: translate(0, 0) !important;
}

.pie-table-blk {
    padding-right: 20px;
}

.pie-table-data {
    display: flex;
    justify-content: space-between;
    align-items: self-start;
    gap: 20px;
}

.pie-table-data:not(:last-child) {
    margin-bottom: 10px;
}

.pie-table-data h2 {
    font-size: 12px !important;
    font-family: var(--pp-font);
    position: relative;
    margin-bottom: 0px;
    padding-left: 20px;
    width: 100px;
}

.pie-table-data h2::before {
    position: absolute;
    content: "";
    top: 2px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 15px;
}

.pie-table-data:nth-child(1) h2::before {
    background: #789EDD;
}

.pie-table-data:nth-child(2) h2::before {
    background: #EA7D9D;
}

.pie-table-data:nth-child(3) h2::before {
    background: #8EDFAF;
}

.pie-table-data:nth-child(4) h2::before {
    background: #FACC15;
}

.pie-table-data:nth-child(5) h2::before {
    background: #65BEB4;
}

.pie-table-data:nth-child(6) h2::before {
    background: #8BE247;
}

.pie-table-data:nth-child(7) h2::before {
    background: #878787;
}

.pie-table-data:nth-child(8) h2::before {
    background: #F86464;
}

.pie-table-data:nth-child(9) h2::before {
    background: #FF900E;
}

.pie-table-data:nth-child(10) h2::before {
    background: #CE97EF;
}

.apexcharts-pie-series:nth-child(1) path {
    fill: #789EDD;
}

.apexcharts-pie-series:nth-child(2) path {
    fill: #EA7D9D;
}

.apexcharts-pie-series:nth-child(3) path {
    fill: #8EDFAF;
}

.apexcharts-pie-series:nth-child(4) path {
    fill: #FACC15;
}

.apexcharts-pie-series:nth-child(5) path {
    fill: #65BEB4;
}

.apexcharts-pie-series:nth-child(6) path {
    fill: #8BE247;
}

.apexcharts-pie-series:nth-child(7) path {
    fill: #878787;
}

.apexcharts-pie-series:nth-child(8) path {
    fill: #F86464;
}

.apexcharts-pie-series:nth-child(9) path {
    fill: #FF900E;
}

.apexcharts-pie-series:nth-child(10) path {
    fill: #CE97EF;
}

.apexcharts-tooltip-series-group:nth-child(1) {
    background-color: #1e1e1e !important;
}


.pie-table-data :is(h3, h4) {
    font-size: 11px !important;
    font-weight: 600;
    font-family: var(--pp-font);
    position: relative;
    white-space: nowrap;
    margin-bottom: 0px;
}


.flex-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-end-box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.flex-width-select {
    width: 165px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #F8F8F8;
    border-color: #F8F8F8;
    font-size: 13px;
}

.select-month {
    position: relative;
    border-radius: 30px;
    background-color: var(--primary-clr);
    z-index: 1;
}

.select-month select {
    border: 1px solid var(--primary-clr);
    border-radius: 30px;
    padding: 5px 15px;
    background-color: transparent;
    color: #fff;
    font-size: 12px;
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
}

.select-month select option {
    background: #fff;
    color: #000;
}

.graph-blk img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.total-card-blk {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.sub-heading .h3 {
    font-size: 19px;
    font-weight: 500;
}

.sub-heading h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0px;
    color: var(--black-clr);
    font-family: var(--pp-font);
}

.sub-heading {
    margin: 0px 0px 25px;
}

.total-card-inner {
    flex-basis: 24%;
    padding: 23px 20px 23px 33px;
    background: #FFFFFF;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

span.card-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #ddd;
    border-radius: 8px;
    margin-bottom: 24px;
}

.total-card-text {
    width: calc(100% - 124px);
}

.total-card-graph {
    width: 124px;
}

.total-card-text span {
    display: flex;
}

span.card-count {
    font-size: 29px;
    font-weight: 700;
    color: var(--black-clr);
}

span.card-days {
    font-size: 13px;
    color: #3d3d3d;
    font-weight: 500;
}

.user-card {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-lgt-clr);
    border-radius: 20px;
    padding: 45px 15px;
}

.user-card:not(:last-child) {
    margin-bottom: 30px;
}

.user-card-inner span {
    display: block;
    text-align: center;
}

span.no-of-users {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    color: #000;
}

span.users-count {
    font-size: 40px;
    font-weight: 700;
}

.user-card.active span.users-count {
    color: #579705;
}

.user-card.inactive span.users-count {
    color: #E73535;
}

.user-card.totaluser span.users-count {
    color: #EC8D48;
}

.graph-blk a.canvasjs-chart-credit {
    display: none;
}

.graph-card button.nav-link {
    background: var(--white-clr) !important;
}

/* dashboard css end */


campaign-detail-blk {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px 30px;
}

.campaign-heading h2 {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--pp-font);
    color: var(--black-clr);
    margin-bottom: 0px;
}

.campaign-content {
    width: calc(100% - 180px);
}

.campaign-content p {
    font-size: 15px;
    font-weight: 500;
    font-family: var(--pp-font);
    color: #828282;
    margin-bottom: 0px;
}

.edit-underline-blk {
    display: flex;
    justify-content: end;
    align-items: end;
    width: 100%;
    height: 100%;
}

button.edit-camp-btn {
    width: 30px;
    height: 30px;
    border: 0px;
    background: transparent;
    cursor: pointer;
}

.content-text h2 {
    font-size: 15px;
    font-weight: 600;
    font-family: var(--pp-font);
    color: var(--black-clr);
    margin-bottom: 8px;
}

.content-text p {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: #434343;
}

.content-text a {
    color: #434343;
    text-decoration: underline;
}

.table-blk table.dataTable.display tbody tr.odd,
.table-blk table tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.85) !important;
}

.table-blk table.dataTable.display tbody tr.even,
.table-blk table tbody tr:nth-child(even) {
    background: #F7F6FA;
}

.info-detail h2 {
    font-size: 17px;
    font-weight: 600;
    font-family: var(--pp-font);
    color: var(--black-clr);
}

.info-detail p {
    font-size: 17px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: #525252;
    word-break: break-all;
}

.info-txt-detail:not(:last-child) {
    margin-bottom: 15px;
}

.info-flex-detail .info-detail {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    margin-bottom: 15px;
}

.info-flex-detail .info-detail h2 {
    font-weight: 700;
    width: 40%;
    margin-bottom: 0px;
}

.info-flex-detail .info-detail p {
    width: calc(60% - 60px);
}

.info-txt-detail h2 {
    font-size: 18px;
    color: #000000;
    font-weight: 700;
}

.info-txt-detail p,
span.hrs-opt span {
    font-size: 16px;
    font-weight: 500;
    color: #505050;
}

.info-card.key-detail .info-flex-detail .info-detail p {
    text-align: end;
}

span.hrs-opt {
    display: flex;
    justify-content: flex-start;
    gap: 10px 50px;
    flex-wrap: wrap;
}

.info-card.key-detail {
    padding: 35px;
}

span.key-host-status {
    font-size: 16px;
    font-weight: 600;
    position: relative;
}

span.key-host-status::before {
    position: absolute;
    content: "";
    top: 50%;
    left: -10px;
    width: 5px;
    height: 5px;
    background: #60CF09;
    border-radius: 5px;
    transform: translateY(-50%);
}


.common-modal .modal-dialog {
    max-width: 1154px;
}

.common-modal .modal-content {
    border: 0px;
    border-radius: 20px;
}

.common-modal .modal-body {
    padding: 35px 40px 35px 35px;
}

.common-modal .modal-body .btn-close {
    position: absolute;
    content: "";
    top: 20px;
    right: 20px;
    opacity: 1;
}

.common-box-body h2 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0px;
}

.common-modal-form {
    margin-top: 50px;
}

.common-modal-field:not(:last-child) {
    margin-bottom: 15px;
}

.common-modal-field label {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.common-modal-field :is(.form-control, select.form-select) {
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    background-color: #F9F1FD;
    border-color: #F9F1FD;
    color: #000;
}

.common-modal-field textarea {
    height: 105px;
}

.common-modal-btns {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.common-modal-btns .primary-btn {
    border-radius: 50px;
}


.content-text h2 {
    font-size: 15px;
    font-weight: 600;
    font-family: var(--pp-font);
    color: var(--black-clr);
    margin-bottom: 8px;
}

.content-text p {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: #434343;
}

.content-text a {
    color: #434343;
    text-decoration: underline;
}

.trspt-wrapper {
    margin-top: 15px;
    background: var(--white-clr);
    padding: 20px 32px;
    border-radius: 20px;
    box-shadow: 0px 3px 12px rgb(159 159 159 / 25%);
}

.trspt-data-blk {
    margin-bottom: 15px;
}

.trspt-card-detail {
    padding: 12px 22px;
    background-color: var(--white-clr);
    border-radius: 12px;
    box-shadow: 0px 8px 32px rgb(51 38 174 / 8%);
}

.trspt-card-detail h3 {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--pp-font);
    line-height: 22px;
    color: #8E95A9;
    text-transform: uppercase;
    margin-bottom: 0px;
    height: 44px;
}

.trspt-flex-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

span.trspt-values {
    font-size: 25px;
    font-weight: 900;
    font-family: var(--ub-font);
    color: var(--black-clr);
}

.prev-value {
    color: #3968E0 !important;
}

.current-value {
    color: #22BB1E !important;
}

span.trspt-currency {
    font-size: 15px;
    font-weight: 900;
    font-family: var(--ub-font);
    text-transform: uppercase;
    color: var(--primary-clr);
}

a.transaction-link {
    color: var(--primary-clr) !important;
    text-decoration: underline;
}

.quote-blk {
    margin-bottom: 15px;
}

.quote-blk p {
    font-size: 11px;
    font-style: italic;
    color: var(--black-clr);
    margin-bottom: 0px;
}

.coupons-note {
    margin-top: 15px;
}

.coupons-note p {
    font-size: 13px;
    font-weight: 600;
    font-family: var(--pp-font);
    color: #A6A6A6;
    margin-bottom: 0px;
}

.coupons-note p span {
    color: var(--primary-clr);
    font-weight: 700;
}

.submit-trans-btn,
.cancel-trans-btn {
    width: 50%;
    padding: 20px 45px;
    border: 0px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--pp-font);
    border-radius: 16px;
}

.submit-trans-btn {
    background: var(--primary-clr);
    color: var(--white-clr);
}

.cancel-trans-btn {
    background: #F3F2FB;
    color: #FF0C38;
}

.submit-notify {
    margin-top: 10px;
}

.submit-notify p {
    font-size: 13px;
    font-weight: 600;
    font-family: var(--pp-font);
    font-style: italic;
    margin-bottom: 0px;
    color: var(--black-clr);
}

.box-flex-card {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    gap: 20px 55px;
}


button.edit-common-btn {
    border: 0px;
    background: var(--black-clr);
    padding: 9px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--pp-font);
    color: var(--white-clr);
}

.table-filter-blk {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.table-filter-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    width: calc(100% - (30% + 20px)) !important;
    width: 700px !important;
}

.table-filter-blk .filter-search-btn-blk {
    width: calc(100% - 720px);
}

.table-filter .form-block {
    width: 205px !important;
}

.table-filter-blk .filter-search-btn-blk>div.form-block {
    width: 100%;
}

.table-filter-wrapper h3 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--dms-font);
    margin-bottom: 0px;
    width: 100px;
}

.table-filter {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    width: calc(100% - 110px);
}

.table-filter .primary-btn {
    margin-right: 0px !important;
}

.table-wrapper-card:not(:last-child) {
    margin-bottom: 20px;
}

.table-wrapper-card {
    padding: 35px 42px 35px;
    border-radius: 18px;
    box-shadow: 0px 4px 4px 0px rgba(185, 185, 185, 0.25);
    background-color: var(--card-bg);
    border: 2px solid var(--white-clr);
}

.wrapper-card-nbg {
    padding: 24px;
    background: var(--white-clr);
    border-radius: 15px;
    box-shadow: 0px 0px 4px rgb(160 160 160 / 25%);
}

.wrapper-card:not(:last-child) {
    margin-bottom: 10px;
}

.wrapper-card {
    padding: 20px 32px 25px;
    border-radius: 18px;
    box-shadow: 0px 8px 32px rgb(51 38 174 / 8%);
    background-color: var(--white-clr);
    border: 0px;
}

.info-card {
    padding: 35px 60px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 2px 11px rgb(211 211 211);
}

.edit-common-blk {
    text-align: end;
}

.customer-info-detail h2 {
    font-size: 17px;
    font-weight: 600;
    font-family: var(--pp-font);
    color: var(--black-clr);
}

.customer-info-detail p {
    font-size: 17px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: #525252;
}

.info-detail h2 {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--pp-font);
    color: #8E95A9;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.info-detail p {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--pp-font);
    color: var(--black-clr);
}

.info-txt-detail:not(:last-child) {
    margin-bottom: 15px;
}

.info-flex-detail .info-detail {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    margin-bottom: 15px;
}

.info-flex-detail .info-detail h2 {
    font-weight: 700;
    width: 40%;
    margin-bottom: 0px;
}

.info-flex-detail .info-detail p {
    width: calc(60% - 60px);
}

.info-txt-detail h2 {
    font-size: 18px;
    color: #000000;
    font-weight: 700;
}

.info-txt-detail p,
span.hrs-opt span {
    font-size: 16px;
    font-weight: 500;
    color: #505050;
}

.info-card.key-detail .info-flex-detail .info-detail p {
    text-align: end;
}

.store-img-blk {
    width: 256px;
    height: 243px;
    border-radius: 16px;
}

.store-img-blk img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.add-btn {
    padding: 10px 15px;
    border: 1.5px solid var(--primary-clr);
    color: var(--primary-clr);
    border-radius: 8px;
    background: var(--bg-clr);
    font-size: 13px;
    font-weight: 500;
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}


button.btn.black-btn {
    font-size: 12px;
    font-weight: 400;
    background: #000;
    color: #fff;
    padding: 10px;
    min-width: 100px;
    text-align: center;
    margin: 0px;
    border-radius: 8px;
    transition: all .5s ease;
}

button.add-more-btn {
    color: var(--primary-clr) !important;
    border-color: var(--primary-clr);
    font-weight: 500 !important;
}

.primary-border-btn {
    font-size: 18px;
    color: #000;
    border: 2px solid #000;
    font-weight: 500 !important;
    display: block;
    padding: 12px;
}

.profile-btns button {
    padding: 12px !important;
    min-width: 150px;
    font-size: 18px !important;
}

.imgpreview {
    position: relative;
    width: 80px;
    background: #fff;
}

p.xmark-btn {
    position: absolute;
    content: "";
    top: -5px;
    right: 0px;
    margin-bottom: 0px;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 2px 6px rgb(0 0 0 / 70%);
}

.imgpreview label,
.imgpreview label span {
    width: 80px;
    display: block;
    /* cursor: pointer; */
}

span.cloud img {
    width: 100%;
    height: 45px;
    object-fit: contain;
    border-radius: 10px;
}


.pointer {
    cursor: pointer;
}

span.cloud {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.trspt-wrapper .custom-table-blk td {
    position: relative;
}

.trspt-wrapper .custom-table-blk td p.error {
    position: absolute;
    content: "";
    bottom: 0;
    left: 15px;
    font-size: 11px;
}

/*--  MEDIA QURIES CSS START --*/

@media screen and (min-width: 1800px) {
    .container {
        max-width: calc(100% - 42px) !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 1800px) {
    .filter-search-btn-blk {
        width: 52%;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1800px) {
    .table-blk .dataTables_wrapper .dataTables_paginate .paginate_button:not(:last-child) {
        margin-right: 20px;
    }

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

@media screen and (max-width:1400px) {
    .info-detail h2 {
        font-size: 16px;
    }

    .info-detail p {
        font-size: 18px;
    }

    .customer-info-detail h2 {
        font-size: 16px;
    }

    .customer-info-detail p {
        font-size: 18px;
    }

    .login-form-main {
        width: 100%;
        padding: 0px;
    }

    .login-logo-main {
        width: 100%;
    }

    .login-logo-main img {
        width: 250px;
    }
}

@media screen and (max-width: 1300px) {
    header button.opnBtn {
        display: block !important;
    }

    button.closeBtn {
        display: block !important;
    }

    .main-wrapper {
        margin-left: 0px;
    }
}


@media screen and (max-width: 1200px) {
    .container {
        max-width: 100% !important;
    }

    .main-wrapper {
        margin-left: 0px;
    }

    header {
        margin-top: 0px;
    }

    .navsbar li a,
    .navsbar li a:hover,
    li.nav-item a.nav-link.active {
        color: var(--main-clr) !important;
    }

    .navsbar li a:hover {
        transform: none;
    }

    header button.opnBtn {
        display: block !important;
    }

    button.closeBtn {
        display: block !important;
    }

    .table-blk table {
        display: block;
        overflow: auto;
        width: 100%;
    }

}

@media screen and (max-width: 991px) {

    .main-wrapper {
        margin-left: 0px;
    }

    .table-blk .dataTables_wrapper .dataTables_paginate .paginate_button:not(:last-child) {
        margin-right: 30px;
    }

    .login-logo-main {
        display: none;
    }

    .inner-content {
        width: 60%;
    }

    .login-form-main {
        width: 100%;
        padding: 0px;
    }

}

@media screen and (max-width: 768px) {

    a.navbar-brand img {
        width: 100px;
    }

    .table-blk .dataTables_wrapper .dataTables_paginate .paginate_button:not(:last-child) {
        margin-right: 25px;
    }

    .filter-date-blk {
        width: 100%;
    }

    .filter-search-btn-blk {
        width: 100%;
    }

    .store-img-blk {
        width: 100%;
        height: 240px;
        border-radius: 16px;
    }
}

@media screen and (max-width: 576px) {

    a.navbar-brand img {
        width: 90px;
    }

    ul.navsbar {
        flex-direction: row;
        align-items: center;
    }

    .navbar-nav li.nav-item:not(:last-child) {
        margin-right: 10px;
    }

    .navsbar li a.nav-link.profile-link {
        width: 40px;
        height: 40px;
    }

    span.page-heading {
        font-size: 16px;
    }

    .sub-heading .h3 {
        font-size: 16px;
    }

    .sub-heading h2 {
        font-size: 20px;
    }

    .table-blk .dataTables_wrapper .dataTables_paginate .paginate_button:not(:last-child) {
        margin-right: 20px;
    }

    .form-block input,
    .form-block input::placeholder {
        font-size: 14px;
    }

    .wrapper-card {
        padding: 20px;
    }

    .info-detail h2 {
        font-size: 14px;
    }

    .info-detail p {
        font-size: 18px;
    }

    .modal-wrapper {
        padding: 40px 20px;
    }

    .dataTables_length,
    .dataTables_info,
    .dataTables_paginate {
        text-align: center;
    }

    .dataTables_info,
    .dataTables_paginate {
        margin-top: 10px;
    }

    .store-img-blk {
        width: 100%;
        height: 225px;
        border-radius: 16px;
    }
}

@media screen and (max-width:420px) {
    .filter-search-btn-blk>div.form-block {
        width: 100%;
    }

    .filter-action-btn-blk {
        width: 100%;
    }

    .inner-content {
        width: 80%;
    }
}