/* Base */

/*@font-face {
    font-family: NotoSans-Light, sans-serif;
    src: url('../fonts/NotoSans-Light, sans-serif.ttf');
}

@font-face {
    font-family: NotoSans-Regular, sans-serif;
    src: url('../fonts/Frutiger-LT-Roman.ttf');
}

@font-face {
    font-family: NotoSans-Bold, sans-serif;
    src: url('../fonts/Frutiger LT Bold.ttf');
}*/

@font-face {
    font-family: NotoSans-Light;
    src: url('../fonts/NotoSans-Light.ttf');
}

@font-face {
    font-family: NotoSans-Regular;
    src: url('../fonts/NotoSans-Regular.ttf');
}

@font-face {
    font-family: NotoSans-Bold;
    src: url('../fonts/NotoSans-Bold.ttf');
}

.initiate-payment-tab {
    padding: 5px;
}

.initiate-payment-tab .active-tab {
    background-color: #0065A6;
    color: #fff;
    padding: 10px 8px;
    border-radius: 6px;
    text-align: center;
    font-size: 12px;
    -webkit-box-shadow: 0px 2px 10px rgb(0 50 116 / 40%);
    box-shadow: 0px 2px 10px rgb(0 50 116 / 40%);
}

    .initiate-payment-tab .active-tab span{
        color: #fff;
    }

    .initiate-payment-tab p, .initiate-payment-tab p span, .initiate-payment-tab button {
        cursor: pointer;
        padding: 10px 8px;
        text-align: center;
        color: #848484;
        background-color: #fff;
    }

        .initiate-payment-tab p span {
            width: 100%;
            display: block;
        }

        .initiate-payment-tab p.active-tab span {
            background-color: transparent;
        }

        .initiate-payment-tab .active-tab:focus {
            outline: none;
        }


* {
    margin: 0;
    padding: 0;
    border: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: NotoSans-Regular, sans-serif;
    color: #252525;
}

    *::-ms-expand {
        display: none;
    }

::-moz-selection {
    color: #fff;
    background: #F8B65D;
}

::selection {
    color: #fff;
    background: #F8B65D
}

body {
    width: 100%;
    overflow-x: hidden;
    font-size: 14px;
}

ul, ol, li, h1, h2, h3, h4, h5, h6, a, p, a {
    text-decoration: none;
    list-style: none;
    margin: 0px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: NotoSans-Regular, sans-serif;
}

.NotoSans-Light {
    font-family: NotoSans-Light, sans-serif;
}

.frutiger-lt-bold {
    font-family: NotoSans-Bold, sans-serif;
}

.frutiger-lt-roman {
    font-family: NotoSans-Regular, sans-serif;
}

a, .transition, input[type="submit"], .campaign-slider div img {
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
}

    a, a:hover {
        color: #58595B;
        cursor: pointer;
        text-decoration: none;
    }

p {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 0px;
}

.scrollbar::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: rgba(101, 104, 228, .1);
}

.scrollbar::-webkit-scrollbar {
    width: 5px;
    background-color: transparent;
}

.scrollbar::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #0065A6;
}

input[type="submit"] {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

textarea, input, select {
    border-radius: 0;
    resize: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

table, tr, td, th {
    border-spacing: 0;
    padding: 0;
    margin: 0;
    vertical-align: top;
}

table {
    width: 100%;
}

img {
    max-width: 100%;
}

.btn {
    padding: 0px 20px;
    height: 50px;
    border: 1px solid #0065a6;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, .5);
    font-size: 14px;
    line-height: 40px;
    border-radius: 4px;
    background: #0065a6;
    color: #fff;
    -webkit-box-shadow: 0px 5px 10px rgba(0, 50, 116, .4);
    box-shadow: 0px 5px 10px rgba(0, 50, 116, .4);
}

    .btn span {
        color: #fff;
    }

    .btn:hover {
        color: #fff;
    }

        .btn:hover span {
            color: #fff;
        }

    .btn:focus {
        -webkit-box-shadow: none;
        box-shadow: none;
        outline: none;
    }

.btn-outline, .btn-outline:hover {
    color: #0065a6;
    background: transparent;
    /* border: 1px solid transparent; */
    -webkit-box-shadow: none;
    box-shadow: none;
}

    .btn-outline span, .btn-outline:hover span {
        color: #0065a6;
    }

.background-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.preloader, .loader {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    /*background: url('../images/loader.svg') no-repeat scroll center center rgba(255, 255, 255, 0.8);*/
    background: url('../images/loader.svg') no-repeat scroll center center #fff;
}

    .preloader svg {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.loader {
    opacity: .4;
    display: none;
}

.card {
    border-radius: 8px;
    background: #fff;
    -webkit-box-shadow: 0px 10px 30px rgba(0, 138, 201, 0.25);
    box-shadow: 0px 10px 30px rgba(0, 138, 201, 0.25);
    border: none;
}
/* .login-page {
    padding-top: 7rem!important;
} */
.login-logo {
    height: 140px;
}

.form-floating-group {
    position: relative;
    margin-bottom: 2.5rem;
}

.form-floating-control {
    position: relative;
    border: none;
    border-bottom: 1.5px solid rgba(162, 162, 162, 0.3);
    border-color: rgba(162, 162, 162, 0.3);
    border-radius: 0px;
    padding: 0px;
}

.form-floating-placeholder {
    position: absolute;
    top: 8px;
    left: 0px;
    margin: 0px;
    pointer-events: none;
    color: #9EA0A5;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.form-floating-setfocus .form-floating-placeholder {
    /* font-size: 12px; */
    font-size: 13px;
    color: #A2A2A2;
    /*top: -15px;*/
    top: -19px;
    left: 0px;
    font-family: NotoSans-Light, sans-serif;
}

.form-floating-otp {
    font-size: 13px;
    color: #A2A2A2;
    margin-bottom: 0px;
    font-family: NotoSans-Light, sans-serif;
}

.form-floating-control:focus {
    border: none;
    border-bottom: 1.5px solid #0065a6;
    border-color: #0065a6;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.show-password {
    position: absolute;
    top: 10px;
    right: 4px;
}

.passwordimg {
    height: 20px;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.login-illustration {
    /* height: 350px; */
    /* height: 380px; */
    max-width: 50%;
}

.swiper-pagination-bullet {
    background: #A2A2A2;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #F18E00;
    -webkit-box-shadow: 0px 5px 8px rgb(241 142 0 / 0.4);
    box-shadow: 0px 5px 8px rgb(241 142 0 / 0.4);
}

.powered-by {
 /*   position: absolute;
    left: 50%;
    bottom: -60px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 80%;*/
    justify-content: space-between;
}

    .powered-by p {
        color: #A0A0A0;
        opacity: 0.3;
    }

.btn-language {
    background-color: #F8B65D;
    border: 2px solid #FDDBB1;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    line-height: 14px;
    display:none;
}

.login-button-group {
    padding-bottom: 0px !important;
}

.link {
    color: #252525;
    text-decoration: underline;
}

header {
    background: #fff;
    -webkit-filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.08));
    filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.08));
    z-index: 100;
}

.notification-dot {
    position: absolute;
    bottom: -5px;
    left: 15px
}

.user-icon {
    border: 3px solid #fff;
    border-radius: 20px;
    -webkit-filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.2));
    width: 50px;
    height: 50px;
    display: block;
    overflow: hidden;
}

.user-icon-img {
    width: 100%;
    height: 100%;
    background-image: url("../images/icons/user-profile.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: block;
}

.menu-btn, .popup-close, .btn-popup-close {
    cursor: pointer;
}

.popup-close {
    margin-right: 12px;
}

.btn-profile-close {
    position: absolute;
    top: 10px;
    right: 10px;
}

.btn-share-close {
    position: relative;
    top: unset;
    right: unset;
    margin-top: -8px;
}

.menu-btn .line {
    display: block;
    height: 3px;
    border-radius: 10px;
    width: 25px;
    margin: 7px 0;
    background-color: #000;
}

    .menu-btn .line:nth-child(2) {
        width: 20px;
    }

aside {
    left: 0;
    top: 66px;
    height: calc(100% - 60px);
    overflow-y: auto;
    background-color: #fff;
    -webkit-filter: drop-shadow(1px 0px 3px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(1px 0px 3px rgba(0, 0, 0, 0.1));
    width: 85px;
    z-index: 99;
}

.active-aside {
    width: 315px;
    z-index: 100;
    -webkit-filter: drop-shadow(1px 0px 10px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(1px 0px 10px rgba(0, 0, 0, 0.1));
}

aside nav.navbar {
    padding: 0px;
}

aside nav .nav-item {
    padding: 15px 30px;
    width: 315px;
}

    aside nav .nav-item p, aside nav .nav-item p span {
        color: #a2a2a2;
        font-size: 14px;
    }

        aside nav .nav-item p.copyright {
            font-size: 12px;
        }

.copyright {
    margin-bottom: -5px;
}

aside nav .nav-item svg {
    margin-right: 30px;
    width: 25px;
}

aside nav .nav-item:hover {
    background: #F6F6F6;
}

    aside nav .nav-item:hover svg path, aside nav .nav-item:hover svg text {
        fill: #0065A6;
    }

    aside nav .nav-item:hover p, aside nav .nav-item:hover p span {
        color: #0065A6;
    }

.active-link, aside nav .nav-item.active-link:hover {
    background: #0065A6;
}


    .active-link svg path, aside nav .nav-item.active-link:hover svg path {
        fill: #fff;
    }

aside nav .nav-item.active-link p, aside nav .nav-item.active-link p span {
    color: #fff;
}

.main-navbar {
    height: calc(100vh - 204px);
    overflow-y: auto;
    overflow-x: hidden;
}

.copyright-link {
    background: rgba(209, 209, 209, 0.3);
}

aside nav .nav-item.copyright-link {
    padding: 5px 30px;
}

.active-menu-btn .line:nth-child(2) {
    /* margin-left: -100%; */
    opacity: 0;
}

.active-menu-btn .line:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.active-menu-btn .line:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -20px;
}

.active-page {
    background-color: #EEEEEE;
}

.content-wrapper {
    width: calc(100% - 80px);
    float: right;
    padding: 50px 50px;
    margin-top: 82px;
    min-height: calc(100vh - 96px);
}

.card-cashback {
    overflow: hidden;
}

.fullscreen-img {
    max-height: 20px;
    cursor: pointer;
}

.fullscreen {
    height: 22px;
    width: 22px;
    background-image: url('../images/icons/fullscreen.svg');
}

    .fullscreen.screen {
        background-image: url('../images/icons/zoom-out.svg');
    }

.text-small, .gross-title.text-small {
    font-size: 11px;
}

.dropdown-toggle-custom {
    background-color: #fff;
}

    .dropdown-toggle-custom::after, .debit-view, .credit-view, .void-transactions, .failed-transactions, .refunds-transactions, .Inprogess-transactions, .Linkexpired-transactions, .Linkdecline-transactions {
        display: none;
    }

    .dropdown-toggle-custom:focus {
        border-color: transparent;
        outline: transparent;
    }

.dropdown.show .profile-dropdown {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.dropdown.show .user-icon-img {
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.dropdown-menu-custom {
    width: 100%;
    border: none;
    background: #0065A6;
    top: calc(100% + -2px);
    left: unset;
    right: -29px;
}

    .dropdown-menu-custom p, .dropdown-menu-custom p span {
        color: #fff;
        font-weight: 200;
    }

    .dropdown-menu-custom::before {
        content: '';
        display: inline-block;
        width: 22px;
        height: 15px;
        background-image: url(../images/icons/dropdown-arrow.svg);
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        top: -15px;
        right: 50px;
    }

.dropdown-item-custom {
    padding: 8px 18px;
    display: block;
}

.form-control-filter {
    border: none;
    border-radius: 3px;
    background: #fff;
    -webkit-box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.16);
}

.date-filter, .custom-filter, .report-time-picker, .date-filter1 {
    background-position: 96.5% center;
    background-repeat: no-repeat;
    padding-right: 40px;
    background-size: 18px;
    font-size: 14px;
}

.date-filter, .date-filter1 {
    background-image: url("../images/icons/calendar.svg");
}

.custom-filter {
    background-image: url("../images/icons/filter.svg");
}

/* .date-picker-wrapper {
    left: 53.5%!important;
} */

.form-control-filter:focus {
    -webkit-box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.16);
}

.form-control:focus {
    border-color: #0065A6;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.card-container {
    z-index: 1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    border-radius: 8px;
    background-color: #fff;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    overflow: hidden;
}

.bg-blue {
    background: #0065A6;
}

.bg-blue-shadow, .accordion-card.bg-blue-shadow {
    -webkit-box-shadow: 0px 14px 30px rgba(0, 101, 166, 0.5);
    box-shadow: 0px 14px 30px rgba(0, 101, 166, 0.5);
}

.card-first {
    position: relative;
}

.card-header {
    background-color: transparent;
    border-bottom: none;
    padding-top: 16px;
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
}

    .card-header h5, .gross-title {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 0px;
    }

.count-data {
    margin-bottom: 0px;
    font-size: 20px;
}

.count-data-sub {
    font-size: 14px;
}

.card-first .count-data {
    /* font-size: 26px; */
    font-size: 22px;
    margin-bottom: 4px;
}

.card-first .count-data-sub {
    /* font-size: 23px; */
    font-size: 19px;
}

.swiper-gross-sales .count-data, .swiper-tijarati-sales .count-data {
    font-size: 16px;
    margin: 4px 0px;
}

.swiper-gross-sales .count-data-sub {
    font-size: 11px;
}

.card-first .text-muted {
    font-size: 14px;
}

.card-first::after {
    width: 100%;
    height: 13px;
    display: inline-block;
    content: '';
    background-image: url("../images/icons/dashboard/line-seprator.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 0px;
    left: 0px;
}

.login-page .card-first::after {
    display: none;
}

.progress-dashboard {
    height: 10px;
    border-radius: 109px;
    background-color: #008AC9;
    -webkit-filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.07));
    filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.07));
}

    .progress-dashboard .progress-bar {
        background-color: #F8B65D;
        border-radius: 109px;
    }

.card-transparent {
    background: transparent;
    box-shadow: none;
}

.card-footer {
    background-color: transparent;
    -webkit-box-shadow: none;
    border-top: none;
}

.card-footer-link {
    background-color: transparent;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
}

.card-with-btn {
    -webkit-box-shadow: none;
    box-shadow: none;
}

    .card-with-btn:hover .card-container {
        margin-top: -40px;
        margin-bottom: 40px;
    }

.bg-blue .text-muted {
    opacity: 0.6;
}

.bg-dark-orange {
    background-color: #F18E00;
}

.bg-blue *, .link-white {
    color: #fff !important;
}

.bg-dark-orange .link-white span {
    color: #fff !important;
}


.card-footer-link .bg-dark-orange, .card-footer-link .bg-blue {
    border-bottom-left-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
}

.btn-arrow {
    height: 9px;
    margin-top: -3px;
}

.swiper-slide {
    background: transparent;
}

.swiper-login .swiper-slide p {
    width: 50%;
    margin: 0 auto;
    font-size: 14px;
}

.swiper-gross-sales .swiper-slide {
    display: block;
    text-align: unset;
}

.swiper-main .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.3;
}

.swiper-main .swiper-pagination-bullet-active {
    opacity: 1;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.text-light-blue, .text-light-blue span {
    color: #7F9DB8 !important;
}

.text-light-gray, .text-light-gray span, .listing-grey span, .listing-grey p {
    color: #7A8890;
}

.text-transition p.text-medium {
    font-size: 11px;
}

.text-transition p.text-small {
    font-size: 10px;
}

.text-italic {
    font-style: italic;
}

.card-noshadow {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.bg-contactless-img {
    background-image: url(../images/icons/dashboard/connection.svg);
    background-repeat: no-repeat;
    background-position: 100% 90%;
    background-size: 50px 30px;
}

.dashboard-up {
    height: 14px;
}

.campaign-slider {
    background-image: url(../images/icons/dashboard/campaign-bg.svg);
    background-size: 100% 164px;
    background-position: 0px 28px;
    height: 164px;
    overflow: visible;
}

    .campaign-slider .swiper-slide {
        margin-top: -10px;
    }

    .campaign-slider div img {
        width: 45px;
        margin: 0 auto;
        margin-bottom: 22px;
    }

    .campaign-slider .swiper-slide p {
        margin-top: 8px;
        line-height: 12px;
        font-size: 8px;
        opacity: 0;
        position: absolute;
    }

    .campaign-slider .swiper-slide-active {
        -webkit-transform: scale(1.5);
        -ms-transform: scale(1.5);
        transform: scale(1.5);
        margin-top: -25px;
    }

    .campaign-slider .slick-dots li.slick-active button {
        margin-top: -8px;
    }

    .campaign-slider .swiper-slide-active p {
        opacity: 1;
        position: absolute;
        left: -25%;
        bottom: 35px;
        width: 150%;
        color: #333;
    }

    .campaign-slider .swiper-pagination-bullet {
        width: 5px;
        height: 5px;
    }

    .campaign-slider .swiper-pagination-bullet {
        background: #7F9DB8;
        opacity: 0.3;
    }

    .campaign-slider .swiper-pagination-bullet-active {
        background: #0065A6;
        opacity: 1;
        box-shadow: 0px 5px 8px rgba(0, 101, 166, 0.4);
    }

.swiper-container-horizontal.swiper-gross-sales > .swiper-pagination-bullets {
    bottom: 10px !important;
}

.img-opacity {
    opacity: 0.3;
}

.text-opacity {
    opacity: 0.6;
}

.opacity-80 {
    opacity: 0.8;
}

.card-bg-purple {
    background-image: url("../images/icons/dashboard/purple-bg.svg");
    background-size: 102% 200px;
    background-position: 0px 55px;
    height: 100%;
}

.camaping-img {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    margin-top: 10px;
}

.text-blue {
    color: #0065A6;
}

.btn-purple {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #8A18C3;
    border: 1px solid #8A18C3;
}

/*.sign-in-first*/
.dataTable-top, .dataTable-bottom, .forget-password-start, .sign-in-first, .forget-userid-first, .forget-userid-second, .forget-userid-third, .forget-password-first, .forget-password-second, .forget-password-third, .forget-password-fourth, .forget-password-fifth, .forget-password-sixth, .signup-first, .signup-second, .signup-third,  .signup-confirm, .sign-in-second, .popup-sign-in-pin, .signup-fourth,.signup-fifth, .popup-initiatePayment, .signup-main-new-first, .signup-main-new-second {
    display: none;
}

.table.dataTable-table.no-footer {
    border: none;
}

table.dataTable-table.display tbody tr.odd > .sorting_1, table.dataTable-table.order-column.stripe tbody tr.odd > .sorting_1 {
    background-color: #EEEEEE;
}

table.dataTable-table.display tbody tr.even > .sorting_1, table.dataTable-table.order-column.stripe tbody tr.even > .sorting_1 {
    background-color: #FFFFFF;
}

table.dataTable-table.display tbody tr:nth-child(odd) {
    background: rgba(238, 238, 238, 0.5)
}

table.dataTable-table.display tbody tr:nth-child(even) {
    background-color: #FFFFFF;
}

table.dataTable-table thead th, table.dataTable-table thead td {
    border-color: transparent;
}

table.dataTable-table thead th {
    font-size: 13px;
    color: #848484;
    font-weight: normal;
}

.table-sort {
    width: 150px;
}

table.dataTable-table thead .table-sort .dataTable-sorter {
    background: #EEEEEE;
    border-radius: 4px;
    padding: 5px 10px;
    width: 100%;
    display: block;
}

table.dataTable-table thead .table-sort.asc .dataTable-sorter {
    background: #0065A6;
    color: #fff;
    position: relative;
}

    table.dataTable-table thead .table-sort.asc .dataTable-sorter::after {
        background-image: url(../images/icons/sort_desc.svg);
        content: '';
        width: 13px;
        height: 8px;
        display: inline-block;
        background-repeat: no-repeat;
        position: absolute;
        opacity: 1;
        background-size: 10px;
        right: 5px;
        top: 13px;
    }

table.dataTable-table tbody td, table.dataTable-table thead th {
    padding: 19.5px 18px;
}

    table.dataTable-table tbody td p {
        color: #252525;
    }

        table.dataTable-table tbody td p img {
            height: 11px;
            margin-right: 2px;
            margin-top: -3px;
        }

table.dataTable-table.display tbody td {
    border-color: transparent;
}

.form-group-table {
    color: #003B71;
    border: 1px solid #CFCFCF;
    border-radius: 4px;
    height: 35px;
    padding: 5px 10px;
    padding-right: 20px;
    width: 100%;
    background-image: url(../images/icons/dropdown-flat-arrow.svg);
    background-repeat: no-repeat;
    background-position: 95% 13px;
    background-size: 10px;
    font-size: 12px;
}

table p.text-small {
    font-size: 11px;
}

.card-img-container {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FEEED8;
}

.summary-element {
    position: relative;
    padding: 13.5px 4px;
    padding-right: 22px;
    border-bottom: 1px solid #E6E6E6;
}

.summary-listing-element {
    position: relative;
    padding: 18px 22px;
    padding-left: 42px;
}

    .summary-element::after, .summary-listing-element::after {
        content: '';
        width: 30px;
        height: 15px;
        background-image: url(../images/icons/arrow-list.svg);
        background-repeat: no-repeat;
        /* background-size: 100% 100%; */
        background-size: auto !important;
        position: absolute;
        top: 50%;
        right: -3px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

.listing-yellow p, .listing-yellow span, .text-yellow {
    color: #F18E00;
}

.listing-red p, .listing-red span {
    color: #FF4D2A;
}

.text-blue-light {
    color: #67A2C0;
}

.listing-blue p, .listing-blue span {
    color: #0078BD;
}

.summary-listing-element::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #F18E00;
    border-radius: 50%;
    position: absolute;
    left: 34px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.listing-red .summary-listing-element::before {
    background: #FF4D2A;
}

.chart-legend li.chart-listing-red::before, .card-listing.failed-listing-transactions li::before {
    background: #E53935;
}


.listing-blue .summary-listing-element::before, .card-listing.refunds-listing-transactions li::before {
    background: #67A2C0;
}

.dashbaord-daily-report li {
    background: #F5F8FA;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 3px;
    /* border: 1px solid #bfcedb4d; */
    border: 1px solid rgba(191, 206, 219, 0.3);
}

.text-report {
    color: #333333;
    font-style: italic;
}

.page-overlay {
    content: "";
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 110;
    background: rgba(0, 0, 0, 0.8);
    display: none;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 4px;
    width: 50%;
    display: none;
    z-index: 120;
}

.concurrentpopup {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 4px;
    width: 35%;
    display: none;
    z-index: 120;
}


.popup-message, .popup-signup-1 {
    /* width: 25%; */
    width: 30%;
}

.btn-close, .btn-close-provider, .btn-close1 {
    cursor: pointer;
}

.signup-main .btn-close, .btn-close1 {
    margin-top: -5px;
}


.btn-message-ok, .btn-message-submit, .btn-verify-number, .btn-verify-otp, .btn-verify-finish, .btn-login-now, .btn-password-success, .btn-signup-provider, .btn-verify-signup, .btn-signup-verify-finish, .btn-signup-ok, .btn-forget-provider, .btn-provider-cancel,.btn-confirm-pin {
    line-height: 48px;
}

.frame-img {
    height: 175px;
}

.card-frame {
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 2;
    background: #fff;
    width: 100%;
    opacity: 1;
}

.campaing-details {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding: 14px;
    opacity: 0;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: 0.70s;
    -o-transition: 0.70s;
    transition: 0.70s;
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    background: -webkit-gradient(linear, left top, left bottom, from(#8820d6), color-stop(50.62%, #8c17c0), to(#900da5));
    background: -o-linear-gradient(#8820d6 0%, #8c17c0 50.62%, #900da5 100%);
    background: linear-gradient(#8820d6 0%, #8c17c0 50.62%, #900da5 100%);
}

    .campaing-details p, .campaing-details span {
        color: #fff;
        line-height: 0px !important;
    }

.camaping-img:hover .campaing-details {
    opacity: 1;
    -webkit-transition: 0.70s;
    -o-transition: 0.70s;
    transition: 0.70s;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.popup-filter {
    width: 70%;
}

.card-header h5.popup-title {
    font-size: 1.15rem;
}

.btn-small {
    height: 35px;
    font-size: 12px;
    line-height: 34px;
}

.btn-noshadow {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: transparent;
}

.checkbox-wrap {
    display: block;
    position: relative;
    padding-right: 30px;
    margin-bottom: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: left;
    font-family: NotoSans-Light, sans-serif;
}

.radio-wrap {
    display: block;
    position: relative;
    padding-right: 30px;
    margin-bottom: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: left;
    font-family: NotoSans-Bold, sans-serif;
}

.filter-checklist .checkbox-wrap {
    font-size: 14px;
    color: #7F9DB8;
}

.filter-checklist.filter-cid .checkbox-wrap {
    margin-left: 30px;
}

    .filter-checklist.filter-cid .checkbox-wrap::before {
        content: '';
        display: inline-block;
        width: 20px;
        height: 20px;
        position: absolute;
        left: -28px;
        top: 0px;
        background-image: url(../images/icons/dashboard/business.svg);
        background-repeat: no-repeat;
    }

.checkbox-wrap input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.radio-wrap input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.checkmark {
    position: absolute;
    top: 0;
    right: 0;
    height: 20px;
    width: 20px;
    background-image: url('../images/icons/check-mark.svg');
    background-repeat: no-repeat;
    background-size: cover;
}

.radiomark {
    position: absolute;
    top: 0;
    right: 0;
    height: 22px;
    width: 22px;
    border: 2px solid #7F9DB8;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    background-image: none;
}

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

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

.checkbox-wrap input:checked ~ .checkmark:after, .radio-wrap input:checked ~ .radiomark:after {
    display: block
}

.checkbox-wrap input:checked ~ .checkmark, .radio-wrap input:checked ~ .radiomark {
    background-image: unset;
}

.checkbox-wrap .checkmark:after {
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-image: url(../images/icons/check-mark-checked.svg);
    background-size: cover;
    background-repeat: no-repeat;
}

.radio-wrap .radiomark:after {
    top: 3.1px;
    left: 3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #0065a6;
}

.radio-img-placeholder {
    width: 60px;
    height: 60px;
}

    .radio-img-placeholder img {
        height: 100%;
        width: auto;
    }

.filter-account li, .filter-brandslist li, .filter-locationslist li {
    display: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

    .filter-account li.checkshow, .filter-brandslist li.checkshow, .filter-locationslist li.checkshow {
        display: block;
    }

    .filter-account li.checkbox-wrap-all, .filter-brandslist li.checkbox-wrap-all, .filter-locationslist li.checkbox-wrap-all {
        display: block;
    }

.bg-light-gray {
    background-color: #F8F8F8;
}

.card-filter-container {
    border-radius: 8px;
    background: #fff;
    border: 2px solid rgba(191, 206, 219, 0.2);
}

.card-filter-container {
    padding: 10px;
}

.filter-listing li {
    min-width: 25%;
    padding: 10px;
    font-family: NotoSans-Light, sans-serif;
    border-radius: 4px;
    color: #FFF;
    background: #0065A6;
    /*border: 1px solid #f8b65d;*/
    margin-right: 20px;
}
    .filter-listing li span {
        color: #FFF;
    }

    .filter-search-transparent.filter-search {
        background-color: transparent;
    }

.filter-search {
    width: 100%;
    border: none;
    font-size: 12px;
    border-radius: 0px;
    padding-left: 30px;
    border-bottom: 1px solid #BFCEDB;
    background-image: url(../images/icons/search.svg);
    background-size: 18px;
    background-position: 3px center;
}

    .filter-search::-webkit-input-placeholder {
        color: #BFCEDB;
    }

    .filter-search::-moz-placeholder {
        color: #BFCEDB;
    }

    .filter-search:-ms-input-placeholder {
        color: #BFCEDB;
    }

    .filter-search::-ms-input-placeholder {
        color: #BFCEDB;
    }

    .filter-search::placeholder {
        color: #BFCEDB;
    }

.filter-checklist li:nth-child(odd) {
    background-color: #bfcedb26;
}

.checkbox-wrap-all {
    background-color: #d4ebf880 !important;
}

.filter-checklist {
    height: 372px;
    overflow-y: auto;
}

.signup-main .filter-checklist {
    height: 352px;
}

.forget-password-main .filter-checklist {
    height: 395px;
}

.forget-password-main {
    margin-top: -20px;
}

.filter-checklist::-webkit-scrollbar-track, .content-scroll::-webkit-scrollbar-track, .card-body-transaction::-webkit-scrollbar-track, .card-listing::-webkit-scrollbar-track, .card-user-access .dataTable-container::-webkit-scrollbar-track, .location-company-list::-webkit-scrollbar-track, .list-accordion::-webkit-scrollbar-track, .company-filter::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: rgba(158, 160, 165, .3);
}

.filter-checklist::-webkit-scrollbar, .content-scroll::-webkit-scrollbar, .card-body-transaction::-webkit-scrollbar, .card-listing::-webkit-scrollbar, .card-user-access .dataTable-container::-webkit-scrollbar, .location-company-list::-webkit-scrollbar, .list-accordion::-webkit-scrollbar, .company-filter::-webkit-scrollbar {
    width: 5px;
    background-color: transparent;
}

.filter-checklist::-webkit-scrollbar-thumb, .content-scroll::-webkit-scrollbar-thumb, .card-body-transaction::-webkit-scrollbar-thumb, .card-listing::-webkit-scrollbar-thumb, .card-user-access .dataTable-container::-webkit-scrollbar-thumb, .location-company-list::-webkit-scrollbar-thumb, .list-accordion::-webkit-scrollbar-thumb, .company-filter::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background-color: #0065a6;
}

.breadcrumb {
    margin: 0px;
    padding: 0px;
    background: transparent;
}

.breadcrumb-item h5 {
    font-size: 18px;
}

.breadcrumb-item.active h5 {
    color: #848484;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '';
    width: 20px;
    height: 20px;
    padding-right: 0px;
    background-image: url(../images/icons/breadcrumb.svg);
    background-repeat: no-repeat;
    /* background-size: 12px 12px; */
    background-size: auto !important;
    background-position: left 4px;
}

.radio-inline {
    width: 100%;
}

.form-button-radio {
    display: none;
}

.form-radio-button {
    width: 100%;
    color: #FFFFFF;
    border-radius: 4px;
    background: transparent;
    border: 1px solid #FFFFFF;
    opacity: 0.5;
    padding: 4px 2px;
    margin-bottom: 0px;
    text-align: center;
    font-size: 11px;
    font-family: NotoSans-Light, sans-serif;
}

    .form-radio-button:hover {
        cursor: pointer;
    }

.form-button-radio:checked + .form-radio-button {
    color: #333333 !important;
    opacity: 1;
    border-color: #F8B65D;
    background: #F8B65D;
}

.gross-first::after {
    content: '';
    width: 13px;
    height: 187%;
    top: -30px;
    right: 8px;
    position: absolute;
    display: inline-block;
    background-image: url(../images/icons/list-line.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.search-input {
    height: 40px;
    width: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    background-color: #fff;
    opacity: 0;
    padding: 0 10px;
}

.search-btn {
    background-image: url('../images/icons/search-icon.svg');
    background-color: #fff;
    position: relative;
    height: 40px;
    width: 40px;
    background-size: 20px;
    border-radius: 4px;
    -webkit-box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.16);
}

    .search-btn:hover {
        background-color: #fff;
    }

.actSearchBtn {
    background-color: #fff;
    -webkit-box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.16);
}

.actSearchWrap .search-input {
    width: calc(100% - 40px);
    opacity: 1;
}

.actSearchWrap .search-btn {
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #fff;
    border-radius: 0px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.credit-illustartion {
    position: absolute;
    height: 150px;
    left: 0px;
    bottom: -36px;
    z-index: 2;
}

.card-container.position-relative {
    overflow: unset;
}

.accordion-card {
    border-radius: 8px;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.accordion > .card:not(:last-of-type) {
    border-radius: 8px;
}

.accordion-header {
    cursor: pointer;
    position: relative;
    /* padding: 0px; */
}
.container-credit-to .accordion-header {
    padding-right: 2.5rem !important;
}

.accordion-header::after {
    content: "";
    background-image: url(../images/icons/accordion.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    width: 12px;
    height: 8px;
}

    .accordion-header.bg-blue::after {
        background-image: url(../images/icons/accordion-white.svg);
    }

    .accordion-header.open::after {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

.accordion-body {
    display: none;
}

.accordion-credit-body {
    /*padding: 0px 20px;*/
}

    .accordion-credit-body .table td {
        color: #263238;
    }

.accordion-header.open {
    /* padding-bottom: 15px; */
    border-bottom: 1px solid #eee;
}

.table-credit-bank.dataTable-table th, .table-credit-bank.dataTable-table td,
.table.table-striped.table-credit-bank th, .table.table-striped.table-credit-bank td {
    padding: 15px;
    font-size: 12px;
}

    .table-credit-bank.dataTable-table th a, .table-credit-bank.dataTable-table th a span,
    .table-credit-bank th, .table-credit-bank th span {
        color: #0065A6;
    }

.table-credit-bank.dataTable-table td {
    text-transform: uppercase;
}

.dataTable-container {
    border-bottom: 1px solid transparent !important;
}

.text-gray {
    color: #848484;
}

.card-title-big {
    font-size: 18px;
}

.card-credit-bank .count-data {
    font-size: 22px;
}

.card-credit-bank .count-data-sub {
    font-size: 16px;
}

.accordion-control {
    width: 40%;
    position: absolute;
    top: 28px;
    right: 220px;
}

.accordion-header.open .accordion-show {
    display: block;
    z-index: 200;
}

.accordion-show .search-input {
    height: 35px;
}

.accordion-show .search-btn {
    height: 35px;
    width: 35px;
    background-size: 20px;
}

.accordion-show .actSearchWrap .search-btn, .accordion-show .actSearchWrap .search-input {
    border: 1px solid #CFCFCF;
}

.accordion-show .actSearchWrap .search-btn {
    border-right: 1px solid transparent;
}

.accordion-show .actSearchWrap .search-input {
    border-left: 1px solid transparent;
}

.accordion-listing {
    padding: 10px 24px;
}

.accordion-sales {
    font-size: 14px;
    /* overflow-wrap: anywhere; */
}

.accordion-data {
    visibility: visible;
}

.accordion-sales img {
    height: 14px;
    margin-top: -4px;
    padding: 0px 3px;
}

.accordion-sales span {
    font-size: 12px;
}

.accordion-header.open .accordion-data {
    visibility: hidden;
}

.accordion-card .accordion-body {
    padding-top: 0px !important;
}

.card-body-transaction {
    height: 670px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.summary-element-main, .transaction-summary-list .summary-element-sub:not(:last-child) {
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
}

.summary-element-sub {
    /* background-color: #FAFAFA; */
    background-color: #EAF6FC;
}

.transaction-summary-list::after {
    content: '';
    width: 3px;
    height: calc(100% - 90px);
    background-image: url(../images/icons/dotted-line.svg);
    position: absolute;
    top: 52px;
    left: 37px;
}

.transaction-summary-list .summary-element {
    padding-right: 4px;
    border-bottom: none;
}

    .transaction-summary-list .summary-element::after {
        display: none;
    }

.transaction-summary-list .card-img-container {
    width: 40px;
    height: 40px;
}

.transaction-summary-list .summary-element-sub .card-img-container {
    background-color: transparent;
    position: relative;
}

    .transaction-summary-list .summary-element-sub .card-img-container::after {
        content: '';
        width: 15px;
        height: 15px;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        background-color: #F8B65D;
        z-index: 2;
    }

.transaction-summary-list .card-img-container img {
    padding: 10px;
    z-index: 2;
    width: 100%;
}

.transaction-summary-list .count-data {
    font-size: 18px;
}

.transaction-summary-list .count-data-sub {
    font-size: 12px;
}

.transaction-listing .summary-listing-element::before {
    width: 18px;
    height: 18px;
}

.transaction-listing .summary-listing-element p {
    padding-left: 20px;
}

.text-small.count-data {
    font-size: 16px;
}

    .text-small.count-data .count-data-sub {
        font-size: 11px;
    }

.card-settled-amount .progress-dashboard {
    height: 6px;
    border-radius: 125px;
}

    .card-settled-amount .progress-dashboard .progress-bar {
        border-radius: 800px;
    }

.chart-legend li, .chart-count li {
    padding: 6px 0px;
}

.chart-legend li {
    position: relative;
    padding-left: 40px;
}

.chart-count li {
    text-align: right;
    padding-right: 40px;
}

    .chart-count li p, .chart-count li p .clearvalue.transaction-value {
        font-size: 15px;
    }

        .chart-count li p span {
            font-size: 12px;
        }

.transactions-circular-count {
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f6f6f6));
    background: -o-linear-gradient(#fff 0%, #f6f6f6 100%);
    background: linear-gradient(#fff 0%, #f6f6f6 100%);
    border: 4px solid rgba(51, 51, 51, 0.01);
    border-radius: 50%;
    -webkit-box-shadow: 0px 5px 10px rgba(20, 79, 76, 0.23);
    box-shadow: 0px 5px 10px rgba(20, 79, 76, 0.23);
}

    .transactions-circular-count p {
        font-size: 10px;
        line-height: 12px;
    }

.summary-element-transaction {
    border-bottom: 1px solid transparent;
}

    .summary-element-transaction::after {
        display: none;
    }

.form-search, .form-search:focus {
    font-size: 12px;
    height: 35px;
    border: none;
    background-image: url(../images/icons/search-icon.svg);
    background-repeat: no-repeat;
    background-size: 16px 15px;
    padding-left: 38px;
    background-position: 10px center;
    -webkit-box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.12);
}

.radio-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #F0F7FF;
    border-radius: 12px;
}

.form-button-radio {
    display: none;
}

.radio-group .form-radio-button {
    color: #333333;
    font-size: 12px;
    padding: 8px 2px;
    opacity: 1;
    font-family: NotoSans-Regular, sans-serif;
}

.radio-group .form-button-radio:checked + .form-radio-button, .radio-group .form-button-radio:checked + .form-radio-button span {
    color: #fff !important;
    background: #0065A6;
    border-color: #0065A6;
}

.card-listing {
     height: 432px;
 
    overflow-y: auto;
}

.card-listing-trans {
    height: 624px;
    overflow-y: auto;
}

    .card-listing.card-body-transaction {
        height: 435px;
    }

    .card-listing li {
        padding: 20px 15px;
        padding-left: 20px;
        position: relative;
    }

        .card-listing li::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 1px;
            width: 3px;
            height: calc(100% - 20px);
            background-color: #0065A6;
            border-radius: 0px 10px 10px 0px;
        }

    .card-listing.void-listing-transactions li::before {
        background-color: #F18E00;
    }

    .card-listing li:nth-child(odd) .transactions-item {
        background-color: #FAFAFA;
    }
    .void-transactions-item {
        box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
        border-radius: 10px;
        margin-bottom: 12px !important;
    }
    .void-transactions-item .transaction-container {
        padding: 3px 8px;
        background-color: rgba(234,246,252,.5);
    }

    .card-listing li h6 {
        font-size: 13px;
    }

    .card-listing li .text-small {
        font-size: 10px;
    }

    .card-listing li .card-amt-small {
        font-size: 10px;
    }

    .card-listing .card-details img {
        width: 30px;
    }

.form-location, .form-location:focus {
    border: 1px solid #bfcedb;
    -webkit-box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.16);
}

.card-history-listing li::before {
    display: none;
}

.card-history-listing li {
    padding: 0;
    padding-right: 18px;
}

.btn-medium {
    height: 40px;
    line-height: 40px;
}

.btn-user-access img {
    margin-top: -4px;
}

table.dataTable-table tbody td p.main-value.active {
    color: #6EB570;
}

table.dataTable-table tbody tr.user-suspended td:first-child p, table.dataTable-table tbody td p.main-value.suspend {
    color: #F67851;
}

table.dataTable-table tbody tr.user-deactivated td:first-child p, table.dataTable-table tbody td p.main-value.deactivate {
    color: #E53935;
}

table.dataTable-table tbody td p.main-value.pending {
    color: #FFAA00;
}

table.dataTable-table tbody tr.user-suspended td p, table.dataTable-table tbody tr.user-deactivated td p {
    color: #A0A0A0;
}

.dropdown-link {
    cursor: pointer;
    position: relative;
    min-width: 100px;
    padding-right: 20px;
    -webkit-transform: all .5s;
    -ms-transform: all .5s;
    transform: all .5s;
}

    .dropdown-link::after {
        content: '';
        position: absolute;
        top: 7px;
        right: 0px;
        width: 11px;
        height: 6px;
        background-image: url(../images/icons/dropdown-flat-arrow.svg);
        background-repeat: no-repeat;
        background-size: 9px 6px;
    }

    .dropdown-link:hover::after {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

.user-dropdown {
    position: absolute;
    top: 20px;
    right: -3px;
    border-radius: 4px;
    background: #fff;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    width: 150px;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    padding: 5px 0px;
}

    .user-dropdown li {
        padding: 5px 10px;
    }

        .user-dropdown li p {
            color: #848484 !important;
        }

        .user-dropdown li:hover p {
            color: #252525 !important;
        }

        .user-dropdown li.selectedValue p {
            background-image: url("../images/icons/tick.svg");
            background-repeat: no-repeat;
            background-position: center left;
            background-size: 14px 12px;
            color: #252525 !important;
        }

.dropdown-link:hover .user-dropdown {
    opacity: 1;
    pointer-events: auto;
}

.card-user-access .dataTable-container {
    height: 500px;
    overflow-y: auto;
}

.form-control-icon {
    border: none;
    font-size: 13px;
    position: relative;
    padding-left: 45px;
    border-radius: 0px;
    border-bottom: 1px solid #e8e8e8;
    background-repeat: no-repeat;
    background-position: 10px center;
}

    .form-control-icon.user-name {
        background-image: url("../images/icons/user.svg");
    }

    .form-control-icon.user-number {
        background-image: url("../images/icons/mobile.svg");
    }

    .form-control-icon.user-mail {
        background-image: url("../images/icons/mail.svg");
    }

.brand-listing:not(:first-child) {
    margin-top: 8px;
}

.brand-listing {
    border-radius: 8px;
}

.card-transaction-filter .brand-listing:not(:last-child) {
    margin-bottom: 30px;
}

.location-list li, .mid-list li {
    border-radius: 5px;
    padding: 5px 20px;
    margin-right: 10px;
    background-color: rgba(159, 214, 241, 0.3);
    margin-bottom: 10px;
}

.mid-list li {
    /* display: flex;
    align-items: center; */
    padding: 12px 14px;
}

.popup-report-type, .popup-share, .popup-user-type {
    width: 30%;
}

.buttom-group .btn-small {
    padding: 0 60px;
}

h5.report-title {
    font-size: 18px;
    line-height: 30px;
}

.report-img {
    height: 60px;
    width: 60px;
}

.card-previous-report {
    height: 540px;
    overflow-y: auto;
}

.form-control-email {
    margin-bottom: 20px;
    height: 50px;
    text-align: center;
    font-size: 14px;
    background: #F8F8F8;
}

.report-container {
    padding-left: 75px;
}

    .report-container::before {
        content: '';
        width: 1px;
        height: 83%;
        position: absolute;
        top: 38px;
        left: 36px;
        background-image: url(../images/reports/line-separator.svg);
    }

.report-listing::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #0065a6;
    position: absolute;
    left: 28px;
    margin-top: 20px;
    -webkit-box-shadow: 0px 7px 29px rgba(0, 101, 166, 0.43);
    box-shadow: 0px 7px 29px rgba(0, 101, 166, 0.43);
}

.radio-calendar .radio-inline {
    width: auto;
    margin-right: 10px;
}

.radio-calendar .form-radio-button {
    opacity: 1;
    padding: 10px;
    padding-right: 15px;
    font-size: 12px;
    color: #7F9DB8;
    min-width: 130px;
    text-align: left;
    background: #F9FAFC;
    border: 1px solid #BFCEDB;
    font-family: NotoSans-Regular, sans-serif;
}

.radio-calendar .form-button-radio:checked + .form-radio-button, .radio-calendar .form-button-radio:checked + .form-radio-button span {
    border-color: #008AC9;
    background: #008AC9;
    color: #FFFFFF !important;
}

.radio-calendar .form-radio-button img {
    margin-top: -2px;
}

.radio-calendar .form-radio-button svg {
    margin-right: 4px;
    margin-top: -4px;
}

    .radio-calendar .form-radio-button svg path {
        fill: #A0A0A0;
        /* stroke: #A0A0A0; */
    }

.radio-calendar .form-button-radio:checked + .form-radio-button svg path {
    fill: #ffffff;
}

.flat-blue {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px 20px;
    border-color: #008AC9;
    background: #008AC9;
    color: #FFFFFF;
    border-radius: 8px;
    font-size: 13px;
}

    .flat-blue span {
        color: #FFFFFF;
    }

.card-checklist {
    padding: 15px;
    border-radius: 8px;
    position: relative;
    border: 2px solid #ECEFF1;
}

    .card-checklist::after {
        content: '';
        width: 13px;
        height: 12px;
        z-index: -1;
        position: absolute;
        top: -12px;
        left: 40px;
        background-image: url(../images/reports/dropdown.svg);
        background-repeat: no-repeat;
        background-size: cover;
    }

    .card-checklist .checkbox-wrap {
        padding-right: 0px;
        padding-left: 28px;
    }

    .card-checklist .checkmark {
        right: unset;
        left: 0;
    }

    .card-checklist ul li:not(:last-child) {
        padding-right: 30px;
    }

    .card-checklist.card-checklist-new ul li:not(:last-child) {
        padding-right: 15px;
    }

.onoffswitch {
    position: relative;
    width: 50px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.onoffswitch-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    height: 22px;
    padding: 0;
    line-height: 22px;
    border: 2px solid #E3E3E3;
    border-radius: 35px;
    background-color: #CFCFCF;
    -webkit-transition: background-color 0.3s ease-in;
    -o-transition: background-color 0.3s ease-in;
    transition: background-color 0.3s ease-in;
}

    .onoffswitch-label:before {
        content: "";
        display: block;
        width: 20px;
        height: 19px;
        margin: 0px;
        background: #EEEEEE;
        -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
        position: absolute;
        top: 1.5px;
        bottom: 0;
        right: 25px;
        border: 2px solid #E3E3E3;
        border-radius: 22px;
        -webkit-transition: all 0.3s ease-in 0s;
        -o-transition: all 0.3s ease-in 0s;
        transition: all 0.3s ease-in 0s;
    }

.onoffswitch-checkbox:checked + .onoffswitch-label {
    background-color: #008ac9;
    border-color: #008ac9;
}

    .onoffswitch-checkbox:checked + .onoffswitch-label:before {
        border-color: #008ac9;
        background: #fff;
    }

    .onoffswitch-checkbox:checked + .onoffswitch-label:before {
        right: 2px;
    }

.report-mid-listing .checkbox-wrap {
    padding: 16px;
}

    .report-mid-listing .checkbox-wrap .checkmark {
        top: 16px;
        right: 16px;
    }

.sub-report {
    background-color: #F0F2F4;
}

.report-mid-listing.sub-report .checkbox-wrap {
    padding-left: 40px;
}

.report-mid-main {
    height: 400px;
    overflow-y: auto;
}

.report-date-picker, .report-time-picker {
    height: 47px;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #F9FAFC;
    border: 1px solid #BFCEDB;
    margin-bottom: 10px !important;
}

.report-time-picker {
    background-image: url("../images/icons/time.svg");
}

.create-new-report .date-picker-wrapper {
    padding-bottom: 0px;
    /*left: 56.5% !important;
    top: 49% !important;*/
    left: 61.3vw !important;
    top: 39vh !important;
    -webkit-transform: unset !important;
    -ms-transform: unset !important;
    transform: unset !important;
    -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, .5);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .5);
}

.create-new-report .footer, .date-wrap-popup {
    display: none;
}

.date-wrap-popup {
    top: 50%;
    left: 50%;
    width: 25%;
    z-index: 1000;
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.date-picker-wrapper.inline-wrapper {
    width: 100%;
}

.btn-calendar {
    width: 100%;
    height: auto;
    font-size: 11px;
    color: #000000;
    line-height: 18px;
    padding: 7px 12.3px;
    margin-bottom: 10px;
    background-color: #fff;
    border: 1px solid #fff;
}

    .btn-calendar:hover {
        color: #000000;
        background-color: #fff;
        border: 1px solid #fff;
    }

        .btn-calendar span, .btn-calendar:hover span {
            color: #000000;
        }

    .btn-calendar.active {
        color: #FFF;
        background-color: #0065A6;
        border: 1px solid #0065A6;
    }

        .btn-calendar.active span {
            color: #fff;
        }

    .btn-calendar:not(:last-child) {
        margin-right: 8px;
    }

.btn-calendar-apply {
    height: auto;
    font-size: 11px;
    line-height: 34px;
    padding: 0px 25px;
}

.calendar-holder {
    color: #fff;
    display: none;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

    .calendar-holder.calendar-today {
        display: block;
    }

#date-get-today .date-picker-wrapper .drp_top-bar, #date-get-custom .date-picker-wrapper .drp_top-bar, #date-get-week .date-picker-wrapper .drp_top-bar {
    margin-top: 0px;
}

#date-get-today .date-picker-wrapper .footer, #date-get-week .date-picker-wrapper .footer {
    visibility: hidden;
}
/* #date-get-today .day.toMonth, #date-get-week .day.toMonth {
    pointer-events: none;
} */
#date-get-today .day.toMonth {
    pointer-events: none;
}

#date-get-today .separator-from, #date-get-today .separator-day, #date-get-today .end-day {
    display: none;
}

.datepicker-inline .datepicker {
    width: 99.5%;
    border-radius: 0px;
    border-top: none;
    background-color: #efefef;
    border-color: #efefef;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

    .datepicker-inline.datepicker * {
        font-family: NotoSans-Regular, sans-serif;
    }

.datepicker {
    border-radius: 0px;
}

.date-picker-wrapper .month-element {
    font-family: NotoSans-Bold, sans-serif;
}

.date-picker-wrapper .month-wrapper table .week-name th {
    font-weight: normal;
}

.date-filter-month, .date-filter-year {
    width: 100%;
    border: none;
    font-family: NotoSans-Bold, sans-serif;
    color: #fff !important;
    border-radius: 0px;
    font-size: 18px;
    padding: 33.5px 20px;
    background: #efefef;
    background-image: url(../images/head.svg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid #efefef;
}

    .date-filter-month:focus, .date-filter-year:focus {
        border: 1px solid #0065A6;
        border-bottom: 1px solid #efefef;
        background: #efefef;
        background-image: url(../images/head.svg);
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: cover;
    }

.datepicker--content {
    background-image: url(../images/datepicker.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.datepicker--nav-title {
    pointer-events: none;
    font-family: NotoSans-Bold, sans-serif;
}

.date-filter-month::-webkit-input-placeholder, .date-filter-year::-webkit-input-placeholder {
    color: #fff;
}

.date-filter-month::-moz-placeholder, .date-filter-year::-moz-placeholder {
    color: #fff;
}

.date-filter-month:-ms-input-placeholder, .date-filter-year:-ms-input-placeholder {
    color: #fff;
}

.date-filter-month::-ms-input-placeholder, .date-filter-year::-ms-input-placeholder {
    color: #fff;
}

.date-filter-month::placeholder, .date-filter-year::placeholder {
    color: #fff;
}

.form-control-hidden {
    width: 0px;
    height: 0px;
    padding: 0px;
    visibility: hidden;
    background: transparent;
}

.create-new-report .time {
    padding: 0 10px;
}

    .create-new-report .time input {
        -webkit-appearance: slider-horizontal;
        -moz-appearance: slider-horizontal;
        appearance: slider-horizontal;
        color: #005EA1;
        background: #005EA1;
    }

.create-new-report .drp_top-bar {
    margin-top: 0px !important;
}

.create-new-report .apply-btn {
    display: none !important;
}

.date-picker-wrapper .time1, .date-picker-wrapper .time2 {
    text-align: left;
}

.popup-transaction-details .card {
    border-radius: 20px;
}

.popup-transaction-first {
    border-right: 1px solid rgba(0,0,0,.1);
}

.form-group-details label {
    width: 100%;
}

.form-title-details {
    color: #7F9DB8;
    margin-bottom: 0px;
}

.form-group-details label.form-main-details, .pay-title {
    color: #333333;
}

    .form-group-details label.form-main-details.text-blue, .form-group-details label.form-main-details.text-blue span {
        color: #0065A6 !important;
    }

.text-white {
    color: #fff;
}

.circular-radio {
    display: block;
    position: relative;
    padding: 18px 0px;
    padding-right: 30px;
    margin-bottom: 0px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: left;
}

    .circular-radio input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0
    }

    .circular-radio .checkmark {
        position: absolute;
        top: 14.5px;
        right: 0;
        height: 25px;
        width: 25px;
        background: transparent;
        border: 2px solid #ddd;
        border-radius: 50%;
    }

        .circular-radio .checkmark:after {
            content: "";
            position: absolute;
            display: none
        }

    .circular-radio input:checked ~ .checkmark:after {
        display: block
    }

    .circular-radio input:checked ~ .checkmark {
        background: #0065A6;
        border: 2px solid #0065A6;
    }

    .circular-radio .checkmark:after {
        left: 8.5px;
        top: 4.5px;
        width: 5px;
        height: 10px;
        border: solid #fff;
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg)
    }

.circular-radio-conatiner .circular-radio:not(:last-child) {
    border-bottom: 1px solid #ddd;
}

.circular-radio-conatiner .circular-radio:not(:last-child), .circular-radio-conatiner .checkbox-wrap:not(:last-child) {
    margin-bottom: 0px;
    border-bottom: 1px solid #ddd;
}

.input-group .form-floating-control {
    margin: 0px 20px;
}

    .input-group .form-floating-control:first-child {
        margin-left: 0px;
    }

    .input-group .form-floating-control:last-child, .forget-password-second11 .input-group {
        margin-right: 0px;
    }

.popup-forget-password .card-body, .popup-signup .card {
    min-height: 480px;
}
.popup-signup .card {
    min-height: 480px;
}

.popup-forget-UserId .card-body {
    min-height: 395px;
}

.summary-item {
    padding: 10px;
    padding-left: 32px;
    border-bottom: 1px solid #EEEEEE;
    position: relative;
}

    .summary-item h6, .summary-container h6 {
        font-size: 14px;
    }

.card-summary .card-body {
    height: calc(100% - 52px);
}

    .card-summary .card-body.card-debit-credit {
        height: calc(100% - 72px);
    }

.summary-item-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .summary-item-list img {
        height: 13px;
        margin-top: -2px;
    }

.summary-item::before, .chart-legend li::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #e7e7e7;
    border-radius: 50%;
    position: absolute;
    top: 12px;
    left: 15px;
}

.summary-item.summary-item-blue::before, .chart-legend li.chart-listing-blue::before {
    background-color: #0065A6;
}

.summary-item.summary-item-green::before, .chart-legend li.chart-listing-yellow::before {
    background-color: #F18E00;
}

.chart-legend li.chart-listing-light-blue::before {
    background-color: #BFCEDB;
}

.summary-item.summary-item-yellow::before {
    background-color: #FFD36B;
}

.summary-item.summary-item-red::before {
    background-color: #EE6C69;
}

.summary-item.summary-item-start::before {
    display: none;
}

.summary-item-last {
    border-bottom: 1px solid transparent;
}

.summary-rate {
    margin-left: 5px;
}

    .summary-rate.summary-rate-loss, .text-loss, table.dataTable-table tbody td p.text-loss, table.dataTable-table tbody td p.text-loss span, .text-red, .text-loss span {
        color: #E53935;
    }

    .text-success, table.dataTable-table tbody td p.text-success, table.dataTable-table tbody td p.text-success span, .summary-rate.summary-rate-success, .text-success span {
        color: #42B84A;
    }

.dataTables_wrapper * {
    border: none !important;
}

.summary-container {
    background-color: #EAF6FC;
    border-radius: 4px;
    padding: 15px;
}

    .summary-container.bg-white {
        background-color: #FFF;
    }

    .summary-container h6.medium-font {
        margin-bottom: 0px;
    }

.summary-note {
    padding: 0 15px;
}

    .summary-note p {
        color: #848484;
        font-style: italic;
        font-size: 10px;
    }

.text-muted {
    font-family: NotoSans-Light, sans-serif;
}

.summary-item .text-muted, .summary-container .text-muted {
    margin-bottom: 10px;
}

.apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title {
    background: #fff !important;
    border-bottom: 1px solid transparent !important;
    color: #848484 !important;
    font-family: Frutiger-LT-Roman !important;
}

.apexcharts-tooltip-title {
    margin-bottom: 0px !important;
}

.apexcharts-tooltip-marker {
    width: 8px !important;
    height: 8px !important;
}

.apexcharts-tooltip-text * {
    color: #252525 !important;
    font-family: Frutiger-LT-Roman !important;
}

/* .date-picker-wrapper {
    z-index: 999;
    top: 50%!important;
    left: 50%!important;
    transform: translate(-50%, -50%)!important;
} */
.popup-profile {
    width: 25%;
}

    .popup-profile .card, .card-profile .card-container, .card-company .card-container {
        background-image: url(../images/profile-back.svg);
        background-repeat: no-repeat;
        background-position: center -5%;
        background-size: contain;
    }

    .popup-profile p, .popup-profile p a, .popup-tijarati-form p {
        color: rgba(51, 51, 51, .7);
    }

.profile-field {
    background-color: #F0F7FF;
    padding: 20px;
    text-align: left;
    border-radius: 10px;
}

.blue-card {
    background: #0065a6;
}

    .blue-card * {
        color: #fff;
    }

.btn-blue {
    display: block;
    width: 100%;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    line-height: 50px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

    .btn-blue:hover {
        color: #fff;
        background-color: #F18E00;
        border-color: #F18E00;
    }

        .btn-blue:hover span {
            color: #fff;
        }

.report-block {
    border-radius: 8px;
    background: rgba(238, 238, 238, 0.5);
    border: 1px solid #EEEEEE;
}

.report-icon {
    width: 40px;
    height: 44px;
}

.report-icon-small {
    width: 28px;
    height: 35px;
}

.report-block h5 {
    font-size: 17px;
}

.btn-report {
    border-radius: 8px;
    background: #fff;
    border: 1px solid #cfcfcf;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 42px;
}
.btn-report.btn-report-blue {
    border-color: #0065a6;
    background: #0065a6;
}

    .btn-report img {
        height: 14px;
    }

    .btn-report svg path {
        fill: #252525;
    }

    .btn-report:hover {
        border-color: #0065a6;
        background-color: #0065a6;
    }

        .btn-report:hover p {
            color: #fff;
        }

        .btn-report:hover svg path {
            fill: #FFFFFF;
        }

.btn-report-transaction p span {
    color: #212529;
}

.btn-report-transaction:hover p span {
    color: #fff;
}

.btn-circle {
    background-color: #fff;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 8px;
    line-height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .btn-circle svg path {
        fill: #848484;
    }

    .btn-circle:hover {
        background-color: #0065a6;
    }

        .btn-circle:hover svg path {
            fill: #fff;
        }

.previous-report-block {
    padding: 15px;
    border-top: 1px solid #EEEEEE;
}

.timerangepicker-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    width: 305px;
    right: 15px;
    background-color: #fff;
    -webkit-box-shadow: 0px 3px 7px rgba(0, 0, 0, .3);
    box-shadow: 0px 3px 7px rgba(0, 0, 0, .3);
}

.timerangepicker-label {
    display: block;
    line-height: 2em;
    background-color: #005EA1;
    color: #fff;
    padding-left: 1em;
    margin-bottom: 1rem;
}

.timerangepicker-from,
.timerangepicker-to {
    width: 100%;
    padding-bottom: 1rem;
    background: #fff;
}

.timerangepicker-from {
    border-right: none;
}

.timerangepicker-display {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #BFCEDB;
    border-radius: 4px;
    line-height: 2.5em;
    text-align: center;
    position: relative;
    margin: 1em 0.175em;
}

    .timerangepicker-display .increment,
    .timerangepicker-display .decrement {
        cursor: pointer;
        position: absolute;
        font-size: 1.5em;
        width: 1.5em;
        text-align: center;
        left: 0;
    }

    .timerangepicker-display .increment {
        margin-top: -0.25em;
        top: -26px;
    }

    .timerangepicker-display .decrement {
        margin-bottom: -0.25em;
        bottom: -26px;
    }

    .timerangepicker-display.hour {
        margin-left: 1em;
    }

    .timerangepicker-display.period {
        margin-right: 1em;
    }

.cust-container {
    overflow: visible;
}

.cust-report-listing {
    position: relative;
    z-index: 0;
}

.date-picker-wrapper {
    background: transparent;
}

    .date-picker-wrapper .footer {
        position: absolute;
        top: -4px;
        left: 0px;
        width: 100%;
        padding: 10px 0px;
        padding-bottom: 16px;
        background: transparent;
    }

    .date-picker-wrapper .drp_top-bar {
        margin-top: 40px;
    }

.btn-login-action {
    color: #7F9DB8;
    background: transparent;
    border: 2px solid #7F9DB8;
    -webkit-box-shadow: none;
    box-shadow: none;
}

    .btn-login-action:hover {
        color: #7F9DB8;
    }

        .btn-login-action span, .btn-login-action:hover span {
            color: #7F9DB8;
        }

.sign-up-flow {
    /* margin-top: 127px; */
    margin-top: 79px;
}

.sign-up-flow, .btn-sign-in-action {
    display: none;
}

    .sign-in-flow .form-floating-group .parsley-errors-list,
    .sign-up-flow .form-floating-group .parsley-errors-list,
    .forget-password-start .input-group .parsley-errors-list,
    .forget-password-second .input-group .parsley-errors-list,
    .signup-second .input-group .parsley-errors-list {
        position: absolute;
        left: 0px;
        /* font-size: 10px; */
        font-size: 12px;
    }

.forget-password-start .input-group .parsley-errors-list {
    /* bottom: -25px; */
    bottom: -26px;
}

.forget-password-second .input-group .parsley-errors-list,
.signup-second .input-group .parsley-errors-list {
    /*bottom: -26px;*/
    bottom: unset;
    position: unset;
    padding: 5px 0px;
    transition: all .5s;
}

.card-nodata {
    background: #fff;
    padding: 20px;
    font-size: 16px;
}

.transaction-chart-top {
    padding-top: 36px;
}

.transaction-single-top {
    padding-top: 15px;
}

.radio-calendar .form-radio-button {
    margin-bottom: 10px;
}

.swiper-gross-sales .col-7 {
    text-align: left;
}

table.dataTable thead th, table.dataTable thead td,
table.dataTable.no-footer {
    border-bottom: 1px solid transparent;
}

table.dataTable thead th, table.dataTable tfoot th {
    font-weight: normal;
}

table.dataTable thead .sorting, table.dataTable thead .sorting_asc, table.dataTable thead .sorting_desc {
    background-image: unset;
}

table.dataTable thead th, table.dataTable thead td {
    padding: 20px 18px;
}

table.dataTable tbody th, table.dataTable tbody td {
    padding: 20px 18px;
}

table.dataTable.display tbody tr.odd > .sorting_1,
table.dataTable.display tbody tr > .sorting_1 {
    background-color: transparent !important;
}

table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
    background-color: #FFF;
}

table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
    background-color: rgba(238, 238, 238, 0.5);
}

    table.dataTable.stripe tbody tr.odd:hover, table.dataTable.display tbody tr.odd:hover {
        background-color: rgba(238, 238, 238, 0.5);
    }

table.dataTable thead th, #tpheadertype span {
    font-size: 13px;
    color: #848484;
}

.dataTables_wrapper {
    height: 310px;
    overflow-y: auto;
    overflow-x: hidden;
}

    .dataTables_wrapper::-webkit-scrollbar-track {
        border-radius: 10px;
        background-color: rgba(101, 104, 228, .1);
    }

    .dataTables_wrapper::-webkit-scrollbar {
        width: 5px;
        background-color: transparent;
    }

    .dataTables_wrapper::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background-color: #0065A6;
    }

.table-sortable {
    width: 100%;
    display: block;
    padding: 5px 10px;
    background: #EEEEEE;
    border-radius: 3px;
    min-width: 80px;
}

table.dataTable thead .sorting_desc .table-sortable {
    background: #0065A6;
    color: #fff;
    position: relative;
}

    table.dataTable thead .sorting_desc .table-sortable::after {
        background-image: url(../images/icons/sort_desc.svg);
        content: '';
        width: 13px;
        height: 8px;
        display: inline-block;
        background-repeat: no-repeat;
        position: absolute;
        opacity: 1;
        background-size: 10px;
        right: 5px;
        top: 13px;
    }

.share-icons {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.filter-checklist.filter-sharelist .checkbox-wrap {
    color: #252525;
}

.btn-transparent {
    background-color: transparent;
}

span.table-small {
    font-size: 11px !important;
}


.btn-transparent {
    background-color: transparent;
}

.copy-link-url {
    border: none;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.btn-copy {
    padding: 5px 10px;
    height: 38px;
    position: absolute;
    right: 0px;
    top: 0px;
}

    .btn-copy img {
        height: 34px;
        margin-top: -4px;
    }

.parsley-errors-list li {
    color: #B94A48;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}

.link-forget, .sign-up-flow p,
.forget-password-start p,
.forget-password-start p span,
.forget-password-first p span,
.forget-password-third p span,
.forget-password-fourth p span,
.forget-password-fifth p span,
.signup-first p span {
    font-size: 14px;
}

.form-floating-otp {
    font-size: 14px;
}

.popup-forget-password .card-header h5 span, .popup-signup .card-header h5 span {
    font-size: 16px;
}

.popup-forget-UserId .card-header h5 span, .popup-signup .card-header h5 span {
    font-size: 16px;
}

.signup-third .text-small {
    font-size: 14px;
}

.company-filter {
    width: 100%;
    overflow-x: auto;
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.company-filter {
    width: 100%;
    overflow-x: auto;
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.provider-filter {
    flex-wrap: wrap;
}

.company-filter .checkbox-wrap {
    text-align: center !important;
    padding: 10px 25px;
    margin: 10px;
    margin-left: 0px;
    font-size: 13px;
    border-radius: 4px;
    color: #7F9DB8;
    min-width: 150px;
    border: 1px solid #7F9DB8;
}

    .filter-company-fill, .company-filter .checkbox-wrap.filter-company-fill {
        color: #fff;
        background-color: #0065A6;
    }

.company-filter .checkbox-wrap {
    text-align: center !important;
    padding: 10px 25px;
    margin: 10px;
    margin-left: 0px;
    font-size: 13px;
    border-radius: 4px;
    color: #7F9DB8;
    min-width: 150px;
    border: 1px solid #7F9DB8;
}

    .filter-company-fill, .company-filter .checkbox-wrap.filter-company-fill {
        color: #fff;
        background-color: #0065A6;
    }

.popup-signup-provider {
    width: 34%;
}

    .popup-signup-provider .card, .popup-signup-provider .card-body {
        min-height: auto;
    }

.image-upload, .image-upload-1, .image-upload-profile {
    display: flex;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
}

.imagePreview, .imagePreview-1, .imagePreview-2, .imagePreviewProfile {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

    .imagePreview > div, .imagePreview-1 > div, .imagePreview-2 > div, .imagePreviewProfile > div {
        width: 102%;
        height: 102%;
        border-radius: 10px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        margin-left: -1px;
        border: 2px solid #D4EBF8;
    }

.image-edit, .image-edit-11, .image-edit-profile {
    position: relative;
    z-index: 9;
}

    .image-edit label, .image-edit-11 label, .image-edit-profile label {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #fff;
    }

    .image-edit input, .image-edit-11 input, .image-edit-profile input {
        display: none;
    }

    .image-edit img, .image-edit-11 img, .image-edit-profile img {
        height: 25px;
        margin-left: 50px;
        margin-top: -26px;
        cursor: pointer;
        background-color: rgba(255, 255, 255, 0.3);
        border-radius: 5px;
        padding: 4px;
    }

.card-profile h5 {
    font-size: 16px;
}

.card-profile .profile-date {
    color: rgba(51, 51, 51, .3);
}

.profile-date img {
    opacity: 0.5;
}

.circular-radio-conatiner .checkbox-wrap {
    padding: 22px 0px;
}

.circular-radio-conatiner .checkmark {
    top: 22px;
}

.edit-profile, .edit-profile-1 {
    position: absolute;
    top: 20px;
    right: 14px;
    z-index: 2;
}

    .edit-profile img, .edit-profile-1 img {
        height: 20px;
    }

.popup-profile-edit .form-group {
    margin-bottom: 24px;
}

.popup-profile-edit .datepicker-inline {
    display: none;
    /* visibility: hidden; */
    position: absolute;
    z-index: 100;
    width: calc(100% - 30px);
}

    .popup-profile-edit .datepicker-inline .datepicker {
        background-color: #fff;
    }

.profile-birth {
    padding-right: 30px;
    background-image: url('../images/icons/calendar-note.svg');
    background-repeat: no-repeat;
    background-position: 99% center;
    background-size: 18px;
}

.popup-profile-edit input, .popup-profile-edit textarea {
    font-size: 13px;
}

.setting-page .datepicker {
    z-index: 2000;
}

.setting-page .datepicker--nav-title {
    pointer-events: unset;
}

.profile-name {
    margin-top: 70px;
}

.title-tab-panel {
    padding: 3px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0px 3px 6px rgb(0 0 0 / 12%);
}

.tab-title {
    width: 100%;
    cursor: pointer;
    text-align: center;
    padding: 6px;
    border-radius: 4px;
}

    .tab-title p, .tab-title span {
        color: #7F9DB8;
        font-size: 12px;
        line-height: 20px;
    }

    .tab-title.active {
        background-color: #0065A6;
    }

        .tab-title.active p {
            color: #fff;
        }

.tab-details {
    display: none;
    margin-top: 10px;
}

    .tab-details.active, .list-accordion-details.open {
        display: block;
    }

.company-icon {
    height: 90px;
}

.text-light-gray {
    color: #333;
    opacity: 0.5;
}

.select-company {
    cursor: pointer;
    color: #fff;
    min-width: 180px;
    margin: 5px auto;
    margin-top: 20px;
    width: fit-content;
    text-align: left;
    background-color: #0065A6;
    border-radius: 4px;
    padding: 5px 30px 5px 10px;
    background-image: url('../images/icons/dropdown-gray.svg');
    background-repeat: no-repeat;
    background-position: 94% center;
}

.popup-company {
    width: 30%;
}

.setting-company-list .checkbox-wrap {
    padding: 1rem 1.2rem;
}

.location-company-list .checkbox-wrap, .list-accordion-title, .list-accordion-details, .list-accordion-details {
    /* .location-company-list .checkbox-wrap, .list-accordion-card { */
    padding: 1.5rem 1.2rem;
}

.list-accordion-details {
    padding-top: 0rem;
}

.setting-company-list .checkbox-wrap img {
    height: 50px;
    margin-right: 15px;
}

.company-filter {
    width: 100%;
    overflow-x: auto;
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.provider-filter {
    flex-wrap: wrap;
}

.company-filter .checkbox-wrap {
    text-align: center !important;
    padding: 10px 25px;
    margin: 10px;
    margin-left: 0px;
    font-size: 13px;
    border-radius: 4px;
    color: #7F9DB8;
    min-width: 150px;
    border: 1px solid #7F9DB8;
}

    .filter-company-fill, .company-filter .checkbox-wrap.filter-company-fill {
        color: #fff;
        background-color: #0065A6;
    }

.location-company-list, .list-accordion {
    height: 420px;
    overflow-y: auto;
}

    .location-company-list li:nth-child(odd), .list-accordion-card:nth-child(odd) {
        background-color: #bfcedb26;
    }

.list-accordion-details {
    display: none;
}

.list-accordion-title {
    position: relative;
    cursor: pointer;
    font-family: NotoSans-Light, sans-serif;
    padding-right: 2.2rem;
}

    .list-accordion-title.open {
        color: #0065A6;
    }

    .list-accordion-title::after {
        content: '';
        width: 9px;
        height: 9px;
        background-image: url('../images/icons/dropdown-flat-arrow.svg');
        background-repeat: no-repeat;
        background-size: 100% 100%;
        position: absolute;
        top: 28px;
        right: 22px;
    }

    .list-accordion-title.open::after {
        transform: rotate(180deg);
    }

.tab-title.active p span {
    color: #FFF;
}

.list-accordion-title.list-accordion-title-none::after {
    background-image: unset !important;
}

.form-group-accordion label {
    width: 100%;
    font-size: 13px;
    margin-bottom: 0px;
}

.transaction-list {
    padding-top: 10px;
    margin: 0px;
    border-top: 1px solid #BFCEDB;
}

.bg-light-blue {
    padding: 10px;
    border-radius: 8px;
    background-color: #D4EBF8;
    margin: 10px 8px;
    flex: 0 0 calc(100% - 16px);
    max-width: calc(100% - 16px);
}

    .bg-light-blue .form-group-accordion {
        margin-bottom: 0.3rem;
    }

        .bg-light-blue .form-group-accordion label {
            font-family: NotoSans-Light, sans-serif;
        }

.btn-filter-close {
    background-color: transparent;
}

    .btn-filter-close:focus {
        outline: none;
    }

.table-w15 {
    width: 15%;
}

.view-all {
    text-decoration: underline;
    cursor: pointer;
}

.tijarati-pay {
    width: 30px;
}

.transaction-container {
    background-color: #EAF6FC;
    padding: 5px 20px;
}

.small-icon {
    width: 16px;
}

.transactions-item .small-icon {
    margin-left: 8px;
}

.count-data-small {
    font-size: 13px;
}

.text-black {
    color: #333333;
}

.btn-payment {
    border-radius: 5px;
    padding: 12px;
}

.sales-img {
    width: 45px;
}

.swiper-tijarati-sales {
    margin-top: -80px !important;
    padding-top: 12px;
    padding-left: 2rem;
    padding-right: 2rem;
}

    .swiper-tijarati-sales .slick-dots li button {
        box-shadow: none;
        background-color: #0065A6;
    }

    .swiper-tijarati-sales .slick-dots {
        margin-bottom: -18px;
        margin: -10px;
    }

.count-section {
    margin-top: -60px;
}

.csv-img {
    width: 24px;
}

.card-pay::after {
    height: 30px;
    background-image: url(../images/icons/dashboard/pay-sale-line.svg);
}

.bulk-text {
    line-height: 14px;
}

.blue-hr {
    margin-top: 1.8rem;
    margin-bottom: 1.8rem;
    border: 0;
    border-top: 1px solid #0065A6;
}

.blue-hr-small {
    margin-top: 1.4rem;
    margin-bottom: 1.4rem;
}

.btn-initiate-payment, .btn-initiate-payment:hover {
    background-color: #BFCEDB;
    height: 45px;
    border-radius: 6px;
    color: #7F9DB8;
    box-shadow: none;
    border: none;
}

.tab-data {
    display: none;
}

.collect-payment {
    display: block;
}

.initiate-payment-tab {
    padding: 5px;
}

    .initiate-payment-tab .active-tab {
        background-color: #0065A6;
        color: #fff;
        padding: 10px 8px;
        border-radius: 6px;
        text-align: center;
        font-size: 12px;
        -webkit-box-shadow: 0px 2px 10px rgb(0 50 116 / 40%);
        box-shadow: 0px 2px 10px rgb(0 50 116 / 40%);
    }

    .initiate-payment-tab p {
        cursor: pointer;
        padding: 10px 8px;
        text-align: center;
        color: #848484;
    }

.upload-text {
    color: #003274;
}

.transcaction-type {
    display: none;
}

.card-types {
    display: block;
}

.btn-group .btn {
    width: 50%;
    height: 35px;
    line-height: 35px;
}
.btn-group-radius {
    border-top-right-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
}

.listing-darkgrey p, .listing-darkgrey span {
    color: #999;
}

.listing-darkgrey .summary-listing-element::before {
    background-color: #999;
}

.listing-lightgrey p, .listing-lightgrey span, .text-lightgrey {
    color: #bbb;
}

.listing-lightgrey .summary-listing-element::before {
    background-color: #bbb;
}

.table-bulk-transaction.dataTable-table td {
    text-transform: none;
}

.table-bulk-transaction.dataTable-table thead th {
    color: #0065A6;
}

.text-skyblue {
    color: #00A0E3;
}

.table-bulk-transaction tr td:first-child img {
    height: 25px;
}

.table-bulk-transaction tr td:first-child, .table-bulk-transaction tr th:first-child {
    padding-left: 50px;
}

.table-bulk-transaction tr td:last-child, .table-bulk-transaction tr th:last-child {
    padding-right: 50px;
}

.table-bulk-transaction tbody tr {
    cursor: pointer;
}

.text-orange {
    color: #F18E00 !important;
}

.service-input {
    background-image: url('../images/icons/dropdown-flat-arrow.svg');
    background-repeat: no-repeat;
    background-position: 98% 13px;
    background-size: 14px;
}

.uplaod-files:not(:last-child)::after {
    content: "";
    display: block;
    border-top: solid 1px;
    border-color: rgba(112,112,112,0.3);
    width: 88%;
    height: 2px;
    position: absolute;
    right: 17px;
    z-index: 0;
    top: 44px;
}

.uplaod-file-img {
    width: 32px;
}

.dropzone {
    border: 2px dashed #BFCEDB !important;
    padding: 10px;
    min-height: 200px;
    cursor: pointer;
}

    .dropzone .dz-message {
        text-align: center;
    }

.dropzone-container .dz-message {
    margin: 3.8rem 0 !important;
}

.csv-text {
    line-height: 10px;
}

.check-icon {
    width: 90px;
}

.btn-dashboard {
    padding: 5px 10px;
    height: 45px;
    border-radius: 6px;
    box-shadow: none;
    color: #fff !important;
}

.title-text {
    font-size: 15px;
}

.card-message {
    padding-top: 4rem;
    padding-bottom: 7rem;
}

.form-control:disabled {
    background-color: rgba(191, 206, 219, .3);
}

.loader-bar li {
    list-style: none;
    width: 7px;
    height: 35px;
    background: #9FD6F1;
    margin: 0 5px;
    border-radius: 5px;
}

.loader-card .card-container {
    height: 60vh;
}

.loader-bar .bar-1 {
    animation: move 0.95s ease-in-out 0.1s infinite;
}

.loader-bar .bar-2 {
    animation: move 0.95s ease-in-out 0.2s infinite;
}

.loader-bar .bar-3 {
    animation: move 0.95s ease-in-out 0.3s infinite;
}

.btn-copy1, .btn-copy1:hover {
    background-color: #EAF6FC;
    border: 0;
    color: #008AC9;
    padding: 5px 10px;
    height: 45px;
    box-shadow: none;
}

    .btn-copy1 img {
        height: 15px;
    }

.form-control:focus .btn-initiate-payment {
    background: #0065A6;
    color: #fff;
}

.format-text, .format-text span, .format-text:hover, .format-text:hover span {
    text-decoration: underline;
    color: #F18E00;
}

.message-card, .loader-card, .message-detail-card, .confirm-card {
    display: none;
}

textarea.form-control {
    font-size: 14px;
    color: #707070;
}

.active-link svg text, .nav-item.active-link:hover svg text {
    fill: #fff;
}

@keyframes move {
    0% {
        transform: scaleY(1.2);
    }

    75% {
        transform: scaleY(0.7);
    }

    100% {
        transform: scaleY(1);
    }
}

swiper-tijarati-sales {
    margin-top: -80px !important;
    padding-top: 12px;
    padding-left: 2rem;
    padding-right: 2rem;
}

#semi-chart1::after, #semi-chart2::after {
    content: "";
    display: block;
    border-top: solid 1px #BFCEDB;
    width: 100%;
    height: 2px;
    position: absolute;
    right: 0;
    top: 55%;
    transform: translateY(-50%);
    z-index: 0;
}
.swiper-wrapper4 .swiper-slide, .swiper-wrapper4 .swiper-slide {
    position: relative;
    height: 130px !important;
}
.swiper-wrapper4 #semi-chart3,
.swiper-wrapper4 #semi-chart4 {
    height: 130px !important;
    min-height: 130px !important;
}
.swiper-wrapper4 .swiper-slide::after, .swiper-wrapper4 .swiper-slide::after {
    content: "";
    display: block;
    top: 50%;
    position: absolute;
    right: 0;
    /* transform: none; */
    border-top: 0;
    width: 1px;
    height: 80%;
    background: #BFCEDB;
    transform: translateY(-50%) !important;
}
.label-data::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 70%;
    top: 50%;
    left: 0;
    background: #beced9;
    border-radius: 100px;
    transform: translateY(-50%);
}
.label-data.label-yellow::before {
    background: #fcdab1;
}
.label-data.label-yellow.active::before {
    background: #f48b01;
}
.label-data.active::before {
    background: #0064a6;
}
    .label-data {
        position: relative;
        margin-bottom: 10px;
    }

    textarea.form-control {
        border: none;
        border-radius: 6px;
    }

.count-data-size {
    font-size: 12px;
}

.bulk-name a {
    padding-left: 46px;
}

.text-dark-blue {
    color: #003B71;
}

.table.dataTable-table.table-bulk-transaction thead th,
.table.table-bulk-transaction thead th,
.table.table-bulk-transaction thead th span {
    font-size: 12px;
    color: #0065A6;
}

.table.dataTable-table.table-bulk-transaction td,
.table.table-bulk-transaction td {
    font-size: 13px;
}

.summary-listing {
    padding-left: 0px;
    padding: 12px;
}

    .summary-listing::before {
        display: none;
    }

.card-btn {
    font-size: 12px;
}

.growth-img {
    height: 12px;
    margin-top: -3px;
    margin-right: 2px;
}

.sort-table.dataTable tbody td {
    padding-right: 10px;
}

.listing-light-grey p, .listing-light-grey span {
    color: #A3BBC3;
}

.transaction-img {
    width: 17px;
}

.credit-card {
    width: 20px;
}

.card-type-conatiner {
    width: 37px;
    height: 37px;
}

.summary-transaction {
    border-bottom: 1px solid #E6E6E6 !important;
}

.form-title-details {
    font-size: 18px;
}

.form-title-label {
    font-size: 14px;
}

.btn-share-invoice svg path {
    fill: #0065a6;
}

.btn-share-invoice svg {
    height: 14px;
}

.btn-share-invoice:hover svg path {
    fill: #fff;
}

    .transcaction-type {
        height: 600px;
    }

.card-body-transactions {
    max-height: 263px;
    overflow-y: auto;
}

.radio-message .checkbox-button {
    margin-bottom: 0;
    margin-left: 10px;
    color: #000;
    border: 1px solid #000;
    padding: 4px 17px;
    border-radius: 3px;
    font-size: 12px;
    cursor: pointer;
}

    .radio-message .checkbox-button.checkbox-button-fill {
        background-color: #0065A6;
        color: #fff;
        border: 0;
        line-height: 20px;
    }
/* prajakta */
.card-loyalty-points .card-container {
    background-color: #0065a6;
}

.loyalty-img {
    height: 132px;
}

.gross-sales {
    display: block;
}

.card-row {
    border-bottom: 1px solid;
    border-color: rgba(255, 255, 255, .4);
    margin: 13px 17px 0;
    padding-bottom: 8px;
}

    .card-row p.active-tab {
        color: #fff !important;
    }

    .card-row p {
        color: rgba(255, 255, 255, .4) !important;
        cursor: pointer;
    }

        .card-row p.active-tab::after {
            content: '';
            position: absolute;
            bottom: -9px;
            left: -14px;
            width: 100%;
            height: 2px;
            background-color: #fff;
        }

        .card-row p.active-tab#tijarati-pay-sales::after {
            left: 0px;
            width: 112%;
        }

.tijarati-pay-card .count-data {
    font-size: 16px;
    margin: 4px 0px;
}

.tijarati-pay-card .count-data-sub {
    font-size: 11px;
}

.tijarati-pay-card .count-data-sub {
    font-size: 11px;
}

textarea.sign-me-up, textarea.sign-me-up:focus {
    border: 1px solid #BFCEDB;
    background: rgba(191, 206, 219, 0.2);
    font-size: 13px;
}

.blue-star {
    color: #008AC9;
}

.sign-me-img, .tijarati-img {
    width: 65%;
}

.btn-sign-me {
    line-height: 18px;
    padding: 10px 20px;
    height: 38px;
    width: 195px;
    box-shadow: none;
    background-color: #0078BD;
}

.btn-grey, .btn-grey:hover {
    background-color: #7F9DB8;
    border: none;
    color: #BFCEDB;
}

.popup-tijarati-pay, .popup-thank-you, .popup-thank-you1 {
    width: 24%;
}

.popup-tijarati-form {
    width: 52%;
}

.pay-text, .card-body-pay p {
    font-size: 14px;
}

.floating-pay-label {
    color: rgba(51, 51, 51, .8);
    font-size: 12px;
}

.card-loyalty {
    background-image: url(../images/loyalty.png);
    width: 100%;
    background-size: 100% 100%;
}

.text-loyalty {
    font-size: 12px;
    color: #9FD6F1;
    font-family: 'NotoSans-Light, sans-serif';
}

.swiper-card .slick-dots, .swiper-gross-sales .slick-dots {
    top: 8px !important;
}

    .swiper-card .slick-dots li.slick-active:last-child button {
        background: #0065A6 !important;
        box-shadow: none;
    }

    .swiper-card .slick-dots li.slick-active button {
        background: #ffffff !important;
    }

    .swiper-card .slick-dots li button, .swiper-gross-sales .slick-dots li button {
        height: 6px;
        width: 6px;
        margin: 0 3px;
    }

.form-pay {
    border: none;
    border-bottom: 1px solid #7F9DB8;
    border-radius: 0;
    height: 25px;
    padding-left: 0;
    font-size: 12px;
    color: rgba(51, 51, 51, .3);
}

.popup-tijarati-form .card-header-pay,
.popup-invoice-details .card-header-pay,
.popup-invoice-details1 .card-header-pay,
.signup-popup-large .card-header {
    padding: 24px 35px;
    border-bottom: 1px solid #BFCEDB;
}

.checkbox-pay {
    padding-right: 0px;
    padding-left: 28px;
    font-family: 'Frutiger-LT-Roman';
}

    .checkbox-pay .checkmark {
        left: 0;
        right: unset;
    }

.popup-tijarati-form .card-body, .popup-invoice-details .card-body, .popup-invoice-details1 .card-header-pay, .popup-large .card-header {
    padding: 24px 35px;
    border-bottom: 1px solid #BFCEDB;
}

.popup-large .card-body {
    padding: 35px;
    padding-bottom: 25px;
}

.card-header-pay h4 {
    font-size: 18px;
}

.popup-tijarati-form .card-body, .popup-invoice-details1 .card-body {
    padding: 24px 35px;
    ;
}

.card-body-pay {
    padding: 0 3.5rem 3.5rem;
}

.card-invoice {
    background-color: #EAF6FC;
}

.profile-invoice.profile-field {
    background-color: #ffffff;
}

.btn-review, .btn-review-1 {
    padding: 0px 45px;
}

.invoice-img {
    width: 45%;
}

.image-invoice .imagePreview, .image-invoice-1 .imagePreview-1, .image-invoice .imagePreview-2 {
    width: 120px;
    height: 120px;
}

.popup-invoice-details, .popup-invoice-details1 {
    width: 47%;
}

.image-edit-1 img {
    margin-top: -40px;
    height: 32px;
    background-color: #F18E00;
    border: 2px solid #F8B65D;
    border-radius: 0;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
    margin-left: 69px;
    margin-top: -32px;
}

.image-invoice .imagePreview > div {
    border: none;
}

.invoice-note {
    padding: 11px 12px;
    border: 1px solid #008AC9;
    background-color: #EAF6FC;
    border-radius: 8px;
}

    .invoice-note p {
        font-size: 11px;
    }

.note-icon {
    width: 18px;
    margin-top: -18px;
}

.card-body-transactions-detail .form-group-details .form-title-details {
    font-size: 12px;
}

.popup-bulk-details {
    width: 27%;
}

.card-body-transactions-detail .form-group {
    margin-bottom: 0.50rem;
}

.btn-invoice, .btn-invoice:hover {
    background-color: transparent;
    color: #0065A6;
    height: 37px;
    line-height: 22px;
    padding: 7px 12px;
    border: 2px solid #0078BD;
    box-shadow: none;
    font-size: 13px;
}

    .btn-invoice img {
        width: 12px;
    }

.btn-invoice-close {
    position: absolute;
    top: 22px;
    right: 27px;
}

.card-header-invoice h1 {
    position: absolute;
    top: 20%;
    right: 40%;
    display: block;
}

.popup-invoice-started {
    width: 47%;
    border-radius: 14px;
    overflow: hidden;
}

.badge-orange {
    background-color: #F18E00;
    color: #ffffff !important;
    font-family: NotoSans-Bold, sans-serif;
    font-size: 10px !important;
    padding: 5px 4px 3px 5px;
    letter-spacing: 2px;
}

span.badge.badge-secondary.badge-orange {
    top: -21px;
    left: -40px;
}

.form-control::placeholder {
    color: rgba(51, 51, 51, .3);
}

.table-payment tbody tr td:nth-child(even) {
    text-align: right;
}

.table-payment td {
    color: rgba(51, 51, 51, .8);
    font-size: 13px;
    border: 0;
    padding: 10px 2rem;
}

.kmart-img {
    width: 73px;
    margin-top: -41px;
}

.w-70 {
    width: 55%;
    margin: 0 auto;
}

.table-payment thead tr th:nth-child(even) {
    text-align: right;
    color: #333333;
}

.table-payment tbody {
    background: rgba(51,51,51, .02);
}

.pattern-img {
    position: absolute;
    bottom: -15px;
    display: block;
    left: 0;
}

.table-payment th {
    padding: 0.35rem 0.75rem;
}

.popup-kmart {
    width: 60%;
}

    .popup-kmart .card {
        box-shadow: none;
    }

.payment-card {
    padding: 0 8rem 25px 8rem;
}

.black-bg {
    height: 34px;
    margin-bottom: -5px;
    background: rgb(51, 51, 51);
}

.kmart-close {
    width: 20px;
    position: absolute;
    right: 16px;
    top: 15px;
    cursor: pointer;
}

.table-payment .thead-dark th {
    padding: 10px 2rem;
    vertical-align: middle;
}

.password-icon {
    height: 150px;
}

.form-floating-none {
    color: #A0A0A0;
    margin-bottom: 0.6rem;
}

.form-pay.form-confirm {
    border-bottom: 1px solid #BFCEDB;
    border-radius: 0;
    height: 28px;
    font-size: 14px;
    color: #444444;
}

.img-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.img-wrapper-item {
    cursor: pointer;
    width: 33.33%;
    outline: 6px solid transparent;
    outline-offset: -6px;
    max-height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #000102;
    background-color: #000102;
}
    .img-wrapper-item img {
        width: auto;
        height: auto;
        max-height: 129px;
    }

.img-wrapper .active-img-checked {
    outline-color: #008AC9;
}

.user-text-list li:not(:last-child) .checkbox-wrap {
    margin-bottom: 1.5rem;
}

.user-text-list .checkbox-wrap,
.checkbox-wrap-term.checkbox-wrap {
    padding-right: 0;
    padding-left: 40px;
}

    .user-text-list .checkmark,
    .checkbox-wrap-term.checkbox-wrap .checkmark {
        left: 0;
        right: unset;
        border: 2px solid #bababa;
        border-radius: 3px;
        background-image: none;
    }

        .user-text-list .checkbox-wrap .checkmark::after,
        .checkbox-wrap-term.checkbox-wrap .checkmark::after {
            background-image: unset;
            left: 5px;
            top: 2px;
            width: 5px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
        }

    .user-text-list input:checked ~ .checkmark,
    .checkbox-wrap-term.checkbox-wrap input:checked ~ .checkmark {
        border-color: #0065A6;
        background-color: #0065A6;
    }

    .checkbox-wrap input.check-input,
    .checkbox-wrap-term.checkbox-wrap input.check-input,
    .user-text-list input.check-input {
        position: unset;
        width: auto;
        height: auto;
        opacity: 1;
        border-bottom: 2px solid #7F9DB8;
        padding: 0;
        font-family: NotoSans-Regular, sans-serif;
    }



.user-text-list .check-text {
    font-size: 14.5px;
    line-height: 22px;
}

.user-custom-list-input {
    position: absolute;
    top: 0;
    left: 40px;
    opacity: 1;
    border-bottom: 2px solid #7F9DB8;
    padding: 0;
    font-size: 14.5px;
    line-height: 22px;
}

.btn-login-small, .btn-login-small:hover {
    line-height: 39px;
    height: 40px;
    min-width: 170px;
    box-shadow: none;
    font-size: 13px;
    color: #BFCEDB;
}

.question-select {
    width: 100%;
    margin-bottom: 0.5rem;
    background-image: url('../images/icons/dropdown-gray.svg');
    background-position: 99% center;
    background-repeat: no-repeat;
    padding-right: 20px;
    background-size: 9px;
}

.question-selectlected {
    color: #0065A6;
}

.question-select option {
    color: #0065A6;
    padding: 10px;
}

    .question-select option:disabled {
        color: #333333;
    }

.text-merchant {
    opacity: 0.8;
    font-family: NotoSans-Light, sans-serif;
}

.text-merchant-image {
    height: 50px;
}

.secure-check {
    display: flex;
}

.secure-check-img {
    content: '';
    width: 72px;
    height: 72px;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #707070;
}

.secure-check-details {
    margin-left: 0.9rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.secure-check-details h6 {
    font-size: 0.9rem;
    font-family: NotoSans-Bold, sans-serif;
}

.secure-check-details p {
    line-height: 16px;
}

.secure-check-details .checkbox-wrap {
    padding-right: 0;
    padding-left: 25px;
}

.secure-check-details .checkmark {
    left: 0;
    right: unset;
    border: 1px solid #bababa;
    border-radius: 2px;
    background-image: none;
    height: 15px;
    width: 15px;
}

.secure-check-details input:checked ~ .checkmark {
    border-color: #0065A6;
    background-color: #0065A6;
}

.secure-check-details .checkbox-wrap .checkmark:after {
    background-image: unset;
    left: 4.5px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.form-group-password {
    margin-bottom: 4.6rem;
}

.form-contact-first {
    margin-bottom: 9.475rem;
}

.text-user-bold {
    font-family: NotoSans-Bold, sans-serif;
    font-size: 1.8rem;
}

.flex-evenly {
    justify-content: space-evenly;
}


.apexcharts-canvas{
    margin-bottom:25px;
}
.swiper-wrapper4 .apexcharts-canvas {
    margin-bottom: 0px !important;
}

    .shwpasswrd {
        position: absolute;
        top: 12px;
        right: 0;
        z-index: 1;
    }

.text-preffered img {
    height: 16px;
    margin-top: -6px;
    margin-left: 1px;
}

.text-loyalty-link {
    font-size: 11px;
    margin-top:0.5rem;
}

.loyalty-img.loyalty-img-main {
    height: 110px;
}

.text-loyalty-link a {
    text-decoration: underline;
}

.transaction-debit-count {
    top: 47%;
}
.cart-transaction {
    margin-top: 10px;
}
.cart-transaction canvas {
    width: 180px !important;
    height: 180px !important;
    margin: 0 auto;
}

.card-body-user-pay .card-checklist {
    padding: 0;
    border: none;
}

    .card-body-user-pay .card-checklist::after {
        display: none;
    }

.onoffswitchpay .onoffswitch-label {
    border: 2px solid #7f9db8;
    background-color: #7f9db8;
}

    .onoffswitchpay .onoffswitch-label:before {
        right: 26.5px;
        filter: none;
        -webkit-filter: none;
    }

.card-body-user-pay .card-checklist .checkbox-wrap {
    font-family: NotoSans-Regular, sans-serif;
}

.dropdown-div {
    width: 100%;
    background-image: url('../images/icons/down.svg');
    background-repeat: no-repeat;
    background-position: 100% 80%;
    background-size: 10px 10px;
    margin-bottom: 10px;
    padding-top: 5px;
    cursor: pointer;
}

.popup-user-type .close-popup img {
    margin-bottom: 5px;
}

.popup-user-type .card-header {
    border-bottom: 1px solid #ECEFF1;
}

.user-type-list li {
    padding: 1.1rem 0;
    cursor: pointer;
}

.user-type-list li:first-child {
    padding-top: 0;
}

.user-type-list li:last-child {
    padding-bottom: 0.5rem;
}

.user-type-list li:not(:last-child) {
    border-bottom: 1px solid #F4EADC;
}

.user-type-list p {
    color: #7F9DB8;
    margin-top: 5px;
    font-size: 12px;
}

.popup-transaction-details .card-body {
    overflow-y: auto;
    max-height: calc(100vh - 200px);
}
@media screen and (min-width:200px) and (max-width:1199px) {

    .swiper-slide.swiper-slide4 {
        margin-left: -30px !important;
    }
}
    @media screen and (min-width:200px) and (max-width:1200px) {
        /* .login-page.vh-100 {
        height: auto!important;
        padding: 30px 0;
    } */
        p, a {
            font-size: 12px;
        }


        h4 {
            font-size: 20px;
        }

        .card-title-big {
            font-size: 14px;
        }

        .login-logo {
            height: 135px;
        }

        .login-illustration {
            height: 140px;
        }

        .form-floating-group {
            margin-bottom: 2rem;
        }

        .form-floating-placeholder {
            top: 12px;
            font-size: 12px;
        }

        .form-floating-setfocus .form-floating-placeholder {
            top: -10px;
            font-size: 10px;
        }

        .btn {
            height: 40px;
            font-size: 12px;
            line-height: 40px;
        }

        .collapse:not(.show) {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }

        .navbar-collapse .navbar-nav {
            -webkit-box-orient: unset;
            -webkit-box-direction: unset;
            -ms-flex-direction: unset;
            flex-direction: unset;
        }

        .popup-message {
            width: 50%;
        }

        .popup-report-type, .popup-share, .popup-user-type {
            width: 70%;
        }

        .btn-calendar {
            line-height: 24px;
        }

        .swiper-login .swiper-slide p {
            width: auto;
        }

        .popup {
            width: 80% !important;
        }

        .concurrentpopup {
            width: 50%;
        }

        .btn-dashboard, .btn-payment {
            line-height: 30px;
        }

        .table-bulk-transaction tr td:first-child, .table-bulk-transaction tr th:first-child,
        .table-bulk-transaction tr td:last-child, .table-bulk-transaction tr th:last-child {
            padding-left: 28px;
        }

        .table-bulk-transaction.dataTable-table td, .table-bulk-transaction.dataTable-table th {
            padding: 15.5px 12px;
        }

        .swiper-tijarati-sales {
            padding-left: 0px;
            padding-right: 0px;
        }

        .sign-me-img {
            width: 45%;
        }

        .btn-sign-me {
            line-height: 20px;
        }

        .popup-tijarati-pay, .popup-thank-you, .popup-thank-you1 {
            width: 42%;
        }

        .payment-card {
            padding: 0 4rem 25px 4rem;
        }

        .table-payment td {
            padding: 6px 1rem;
        }

        .kmart-img {
            width: 54px;
        }

        .pattern-img {
            bottom: -8px;
        }

        .black-bg {
            margin-bottom: -6px;
            height: 25px;
        }

        .kmart-close {
            top: 6px;
        }
    }

    @media screen and (min-width:200px) and (max-width:500px) {
    }

    @media screen and (min-width:200px) and (max-width:800px) {

        .provider-filter .checkshow {
            width: 100%;
        }

        .provider-filter .checkbox-wrap {
            width: 100%;
        }
    }

    @media screen and (min-width:700px) and (max-width:900px) {
        .cart-transaction canvas {
            width: 120px !important;
            height: 120px !important;
            margin: 0 auto;
        }

        aside {
            top: 82px;
            height: 100%;
        }

        .content-wrapper {
            margin-top: 82px;
            padding: 20px 30px;
        }

        .prev-buttons a, .custom-shortcut a {
            padding: 8px 12.3px;
            margin-right: 7px;
        }

        .popup-filter {
            width: 95%;
        }

        .filter-checklist {
            height: 280px;
        }

        .card-first .count-data {
            font-size: 22px;
        }

        .card-header h5 {
            font-size: 12px;
        }

        .count-data, .card-credit-bank .count-data {
            font-size: 16px;
        }

        .count-data-sub {
            font-size: 11px;
        }

        .gross-first::after {
            height: 155%;
            top: -17px;
        }

        .accordion-header::after {
            right: 12px;
        }

        .accordion-credit-body {
            padding: 0px;
        }

            .accordion-credit-body .table td {
                color: #263238;
            }

        .accordion-control {
            top: 11px;
            right: 175px;
            width: 50%;
        }

        .transactions-circular-count {
            width: 50px;
            height: 50px;
            top: 41%;
        }

        .debit-transactions .transactions-circular-count {
            top: 50%;
        }
        /* .radio-calendar .radio-inline {
        margin-bottom: 14px!important;
    } */
        .card-checklist ul li {
            margin-bottom: 10px;
        }

        .sign-up-flow {
            margin-top: 95px;
        }

        .card-checklist ul li {
            margin-bottom: 10px;
        }

        .card-first {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
            flex: 0 0 100%;
            max-width: 100%;
        }

        .card-second {
            display: none;
        }

        .card-with-btn .card-second {
            display: block;
        }

        .login-page {
            padding: 20px;
        }

        .transactions-circular-count h4 {
            font-size: 12px;
        }

        .create-new-report .date-picker-wrapper {
            top: 63% !important;
            left: 25% !important;
        }

        .swiper-gross-sales .count-data {
            font-size: 14px;
        }

        .provider-filter .checkshow {
            width: auto;
            margin-right: 10px;
        }

        .provider-filter .checkbox-wrap {
            width: 100%;
            min-width: 120px;
        }

        .image-edit-1 img {
            margin-left: 93px;
        }

        .form-contact-first {
            margin-bottom: 6.4rem;
        }
    }
    /* ipad -h */
    @media screen and (min-width:700px) and (max-width:800px) {
        .date-wrap-popup {
            width: 45%;
        }

        .create-new-report .date-picker-wrapper {
            top: 47% !important;
        }
        /*
    .timerangepicker-container {
        right: unset;
        left: 15px;
    } */
        .image-edit-1 img {
            margin-left: 40px;
        }
    }

    @media screen and (min-width:801px) and (max-width:900px) {
    }


    /* ipad -v */
    @media screen and (min-width:901px) and (max-width:1200px) {
        .prev-buttons a, .custom-shortcut a {
            padding: 8px 12.3px;
            margin-right: 7px;
        }

        .popup-filter {
            width: 90%;
        }

        .concurrentpopup {
            width: 40%;
        }

        .date-wrap-popup {
            /* left: 330px; */
            width: 40%;
        }

        .card-first::after {
            background-size: 100% 117%;
            background-position: -1px center;
        }

        .card-title-big {
            font-size: 18px;
        }

        .accordion-credit-body {
            padding: 0px;
        }

        .create-new-report .date-picker-wrapper {
            padding-bottom: 0px;
            left: 20% !important;
            top: 55% !important;
        }

        .form-contact-first {
            margin-bottom: 6.4rem;
        }
    }

    @media screen and (min-width:1201px) and (max-width:1300px) {
        .card-first .count-data {
            font-size: 17px;
        }

        .card-first .count-data-sub {
            font-size: 13px;
        }

        .card-header {
            padding: .75rem 1rem;
        }

        .card-body {
            padding: 1rem;
        }

        .swiper-slide .col-6 {
            padding: 0px 10px;
        }

        .swiper-gross-sales .count-data {
            font-size: 13px;
        }

        .swiper-gross-sales .count-data-sub {
            font-size: 8px;
        }

        .text-transition p.text-medium, .bg-contactless-img .text-small.text-opacity {
            font-size: 8px;
        }

        .progress-dashboard {
            margin-bottom: 10px;
        }

        .swiper-gross-sales .col-6 p.text-muted {
            font-size: 11px;
        }

        .frame-img {
            height: 170px;
        }

        .card-cashback-badge .frame-img {
            height: 149px;
        }

        .date-wrap-popup {
            width: 28%;
        }

        .loyalty-img.loyalty-img-main {
            height: 82px;
        }
    }

    @media screen and (min-width:1301px) and (max-width:1400px) {
        .bg-contactless-img.contactless-load .card-header {
            padding-bottom: 0.25rem;
        }

        .bg-contactless-img.contactless-load .text-transition p.text-small {
            line-height: 15px;
        }

        .loyalty-img.loyalty-img-main {
            height: 87px;
        }

        .bg-contactless-img .text-transition p.text-medium {
            font-size: 9px;
            /*line-height: 37px;*/
        }

        .card-first .count-data {
            /* font-size: 22px; */
            font-size: 19px;
        }

        .card-first .count-data-sub {
            /* font-size: 18px; */
            font-size: 16px;
        }

        .swiper-gross-sales .count-data {
            font-size: 13px;
        }

        .swiper-gross-sales .count-data-sub {
            font-size: 10px;
        }

        .progress-dashboard {
            margin-bottom: 10px;
        }

        .radio-calendar .form-radio-button {
            min-width: auto;
            padding: 8px 6px;
            padding-right: 6px;
        }

        .text-transition p.text-medium {
            font-size: 10px;
        }

        .swiper-gross-sales .col-6 p.text-muted {
            font-size: 11px;
        }

        .form-contact-first {
            margin-bottom: 6.4rem;
        }

        .loyalty-img.loyalty-img-main {
            height: 87px;
        }

        /* .card-list-body .col-xl-4{
        flex: 0 0 40%;
        max-width: 40%;
    } */
    }

    @media screen and (min-width:1900px) and (max-width:3000px) {
    }

    @media screen and (min-width:1401px) and (max-width:1439px) {
        .loyalty-img.loyalty-img-main {
            height: 89px;
        }

        .bg-contactless-img .text-transition p.text-medium {
            font-size: 10px;
        }
    }

    @media screen and (min-width:1440px) and (max-width:1500px) {
        .loyalty-img.loyalty-img-main {
            height: 104px;
        }

        .create-new-report .date-picker-wrapper {
            top: 52% !important;
            /* left: 11%!important; */
        }

        .swiper-gross-sales .count-data {
            font-size: 14px;
        }

        .swiper-gross-sales .col-6 p.text-muted {
            font-size: 12px;
        }

        .payment-card {
            padding: 0 5rem 0 5rem;
        }

        .table-payment td {
            padding: 7px 1.5rem;
        }

        .image-edit-1 img {
            margin-left: 76px;
        }
    }

    @media screen and (min-width:1600px) and (max-width:3000px) {
        .card-first::after {
            background-size: cover;
        }
    }

    @media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
        .login-page {
            padding: 20px;
        }

        .card-first {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
            flex: 0 0 100%;
            max-width: 100%;
        }

        .card-second {
            display: none;
        }

        .card-with-btn .card-second {
            display: block;
        }

        .create-new-report .date-picker-wrapper {
            top: 31% !important;
        }
    }

    @media screen and (min-width:1301px) and (max-width:1400px) {
        .create-new-report .date-picker-wrapper {
            top: 36.5% !important;
            /* left: 9%!important; */
        }
    }
@media screen and (min-width:1699px) and (max-width:3400px) {
    .swiper-wrapper4 {
        justify-content: space-around;
    }
    .row-5.ml-4{
        margin-left: 0 !important;
    }
}

    .hidden {
        display: none;
    }

    .popup-initpay .card {
        min-height: 300px;
    }

    .form-control-filter[readonly] {
        background-color: #fff;
    }
