﻿/*MOBILE*/

@media print {
    .no-print {
        display: none;
    }
}

html {
    font-size: 14px;
    font-family: 'Cairo', sans-serif;
    background-color: #efefef;
    color: #000;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

body {
    padding: 0;
    margin: 0;
    /*overflow-x:scroll;*/
}

.hidden {
    display:none;
}

.layout-area {
    margin: 0 auto;
    min-height: 100vh;
}
.float-right {
    float: right;
}
.clear-both {
    clear: both;
}

.loading {
    display: none;
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2000;
    transition: opacity 0.3s;
}

.loading-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}
.loading-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.loading-text::before {
    content: '';
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: #f6921e;
    border-radius: 50%;
    animation: loading-spin 0.8s linear infinite;
}
.loading-text::after {
    content: 'Yükleniyor...';
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}
@keyframes loading-spin {
    to { transform: rotate(360deg); }
}

.session-area {
    background-color: #F6921E;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.session-login-area {
    background-color: #FFF;
    width: 300px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.session-login-logo {
    width: 300px;
    height: 150px;
    background-image: url('/images/tacreocard_full_logo-yeni.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 250px;
}
.session-login-input {
    width: 260px;
    height: 35px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 0 10px;
    box-shadow: 0 0 0 #F6921E;
    transition: box-shadow 0.5s, border 0.5s;
}
    .session-login-input:focus {
        outline: none !important;
        border: 1px solid #F6921E;
        box-shadow: 0 0 5px #F6921E;
    }
.session-login-checkbox {
    width: 260px;
    font-size: 12px;
}
.session-login-button {
    background-color: #F6921E;
    margin-bottom: 20px;
    color: #fff;
    border: 0;
    line-height: 35px;
    padding: 0 40px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
    .session-login-button:hover {
        background-color: #ffab4a;
    }

.footer-txt {
    width: 100%;
    text-align: center;
    color: #9ca3af;
    margin-top: 20px;
    padding: 15px 0;
    font-size: 13px;
}

.box-shadow-1 {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px !important;
}
.left-menu-area {
    position: fixed;
    top: 0;
    left: 0; /*-230*/
    bottom: 0;
    width: 230px;
    height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    transition: left 0.5s;
    z-index: 1000;
    border-right: 1px solid rgba(246, 146, 30, 0.1);
}
.left-menu-close-hidden-area {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0;
    z-index: 999;
    transition: opacity 0.5s;
}
.left-menu-content-area {
    width: 230px;
    min-height: 100vh;
    position: relative;
    overflow:hidden;
    overflow-y: auto;
    height: 100%;
}
.left-menu-open-close-button {
    display:none;
    width: 80px;
    height: 80px;
    background-image: url('/images/bars-solid.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 40px;
}
.right-content-area {
    width: calc(100vw - 285px);
    margin-left:250px;
    min-height: 100vh;
    background-color: #ffffff;
}
.right-content-title {
    height: 80px;
    line-height: 80px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    font-size: 22px;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    color: #374151;
    padding-left: 10px;
}
.left-menu-logo {
    width: 230px;
    height: 115px;
    border-top-right-radius: 15px;
    background-image: url('/images/tacreocard_full_logo-yeni.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 170px;
    background-color: #fff;
    border-bottom: 2px solid #f6921e;
    margin-bottom: 15px;
    position: relative;
}
.left-menu-logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f6921e, transparent);
}
.left-menu-group {
    display: flex;
    justify-content: space-between;
    width: 210px;
    height: 50px;
    margin-top: 5px;
    margin-left: 10px;
    border-radius: 12px;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}
    .left-menu-group:hover {
        color: #f6921e;
        background-color: rgba(246, 146, 30, 0.08);
        transform: translateX(3px);
    }
.left-menu-active {
    background: linear-gradient(90deg, rgba(246, 146, 30, 0.15) 0%, rgba(246, 146, 30, 0.05) 100%);
    border-left: 3px solid #f6921e;
}
.left-menu-group span {
    height: 50px;
    line-height: 50px;
}
    .left-menu-group > span:last-child {
        width: 25px;
        margin-left: 6px;
        background-image: url('/images/caret-right-solid.svg');
        background-repeat: no-repeat;
        background-position: left center;
        background-size: 10px;
        filter: invert(78%) sepia(5%) saturate(226%) hue-rotate(152deg) brightness(84%) contrast(86%);
        transform: rotate(0deg);
        transition: transform 0.3s;
    }
        .left-menu-group span:nth-child(2) {
            width: 150px;
            font-weight: 400;
            font-size: 16px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            text-indent:6px;
        }
        .left-menu-group > span:first-child {
            width: 30px;
            background-image: url('/images/xmark-solid.svg');
            background-repeat: no-repeat;
            background-position: center center;
            background-size: 20px;
            filter: invert(78%) sepia(5%) saturate(226%) hue-rotate(152deg) brightness(84%) contrast(86%);
        }
.menu-dashboard > span:first-child {
    background-image: url('/images/chart-pie-solid.svg');
}
.menu-pages span:first-child {
    background-image: url('/images/rectangle-list-solid.svg');
}
.menu-gallery span:first-child {
    background-image: url('/images/image-solid.svg');
}
.menu-cardsettings span:first-child {
    background-image: url('/images/credit-card-solid.svg');
}
.menu-affiliatedcompany span:first-child {
    background-image: url('/images/briefcase-solid.svg');
}
.menu-cardusers span:first-child {
    background-image: url('/images/users-solid.svg');
}
.menu-cash span:first-child {
    background-image: url('/images/money-bill-solid.svg');
}
.menu-bank span:first-child {
    background-image: url('/images/building-columns-solid.svg');
}
.menu-advancedoptions span:first-child {
    background-image: url('/images/gears-solid.svg');
}
.menu-management span:first-child {
    background-image: url('/images/gears-solid.svg');
}
.menu-reports span:first-child {
    background-image: url('/images/rectangle-list-solid.svg');
}
.menu-logout span:first-child {
    background-image: url('/images/right-from-bracket-solid.svg');
}
.menu-calendar-days span:first-child {
    background-image: url('/images/calendar-days-regular.svg');
}
.menu-file-signature span:first-child {
    background-image: url('/images/file-signature-solid.svg');
}
.menu-bell span:first-child {
    background-image: url('/images/bell-solid.svg');
}
.menu-settings span:first-child {
    background-image: url('/images/gears-solid.svg');
}
.left-menu-active span {
    color: #f6921e;
}
.left-menu-active span:first-child, .left-menu-active span:last-child {
    filter: invert(76%) sepia(26%) saturate(5548%) hue-rotate(343deg) brightness(96%) contrast(100%) !important;
}
.left-menu-group-delete-icon {
    background-image:unset !important;
}
.left-menu-items-group {
    max-height: 0;
    transition: max-height 0.5s;
    overflow: hidden;
    background: rgba(246, 146, 30, 0.03);
    border-radius: 0 0 12px 12px;
    margin: 0 10px;
}
    .left-menu-items-group a {
        display: block;
        text-indent: 45px;
        line-height: 42px;
        color: #6b7280;
        transition: all 0.3s ease;
        text-decoration: none;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 14px;
        border-radius: 8px;
        margin: 2px 5px;
    }
        .left-menu-items-group a:hover {
            color: #f6921e;
            background: rgba(246, 146, 30, 0.1);
            padding-left: 5px;
        }
        .left-menu-items-group a span {
            color: #c5c5c5;
            font-size: 13px;
        }
.dropdown-menu-item-active {
    color: #f6921e !important;
    background: rgba(246, 146, 30, 0.12) !important;
    font-weight: 500;
}

.content-nav-area {
    background-color: #fff;
    color: #f6921e;
    padding: 0 10px;
    line-height: 50px;
    margin-top: 10px;
    border-radius: 10px;
}
    .content-nav-area a {
        color: #f6921e;
        text-decoration: none;
        margin:0 10px;
    }
    .content-nav-area span {
        color: #000;
        margin: 0 10px;
    }

.content-full-area {
    width: 100%;
    background-color: #fff;
    margin-top: 30px;
    border-radius: 10px;
    padding-bottom:5px;
}
.content-half-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.content-half-area {
    width: calc(50vw - 150px);
    background-color: #fff;
    margin-top: 30px;
    border-radius: 10px;
}
.content-half-title {
    border-bottom: 1px solid #e6e6e6;
    text-indent: 15px;
    line-height: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}
.content-area {
    margin-top:30px;
}

.content-quarter-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.content-quarter-area {
    width: calc(25vw - 75px);
    background-color: #fff;
    margin-top: 30px;
    border-radius: 10px;
    overflow:hidden;
}

.content-quarter-title {
    border-bottom: 1px solid #e6e6e6;
    text-indent: 15px;
    line-height: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}
.content-quarter-content {
    margin: 15px;
}
.content-half-title-down-icon {
    position: absolute;
    top: 0;
    right: 10px;
    width: 50px;
    height: 50px;
    background-image: url(/images/caret-right-solid.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 15px;
    filter: invert(78%) sepia(5%) saturate(226%) hue-rotate(152deg) brightness(84%) contrast(86%);
    transition: transform 0.3s;
}
.content-half-content {
    margin: 15px;
}
.content-half-content-title {
    font-size: 15px;
    color: #9fa4a6;
    margin-top: 5px;
    padding: .4375rem 0 .2375rem 0;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.53;
    color: #697a8d;
    appearance: none;
    background-clip: padding-box;
    border: var(--bs-border-width) solid #d9dee3;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.content-half-content-input {
}
    .content-half-content-input input, .content-half-content-input textarea, .content-half-content-input select {
        padding: 10px 14px;
        width: 100%;
        border: 1.5px solid #d9dee3;
        padding: .4375rem .875rem;
        font-size: 0.9375rem;
        font-weight: 400;
        line-height: 1.53;
        color: #697a8d;
        /*appearance: none;*/
        background-color: #fff;
        background-clip: padding-box;
        border-radius: 8px;
        transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    }
        .content-half-content-input input::placeholder, .content-half-content-input textarea::placeholder, .content-half-content-input select::placeholder {
            color: #9fa4a6;
        }
        .content-half-content-input input[type='checkbox'] {
            width: auto;
        }
.content-filter-mix-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.content-filter-mix-area label {
    margin-right:10px;
}

.content-half-content-info-area {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    border-bottom: 1px solid #d8d8d8;
    line-height: 30px;
}
.content-half-content-info-title {
    font-weight: bold;
    min-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.content-half-content-info-split {
    padding: 0 5px;
}
.content-half-content-info-desc {
}



.content-half-content-input textarea {
    height: 70px;
}
    .content-half-content-input select {
        width: calc(100%);
    }
.content-half-content-btn {
    display:inline-block;
    background-color: #f6921e;
    color: #fff;
    padding: 15px 30px;
    border: 0px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}
    .content-half-content-btn:hover {
        background-color: #fca33c;
        color: #fff;
    }
.content-drop-down .content-half-content {
    /*max-height: 0;*/
    overflow: hidden;
    transition: max-height 0.5s;
}
.content-drop-down .content-half-title {
    cursor:pointer;
}


.content-select-lang-area {
    background-color: #fff;
    padding: 0 10px;
    line-height: 50px;
    margin-top: 10px;
    border-radius: 10px;
    text-indent: 10px;
}
.content-select-lang-area label {
    margin-left:5px;
}
.content-select-lang-title{
    font-weight:bold;
}
.content-list-row {
    border-top: 1px solid #9fa4a6;
    line-height: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.content-list-row-title {
    color: #9fa4a6;
}
    .content-list-row-title span {
        font-style: italic;
    }
    .content-list-row-title .state_0 {
        color: #b8b8b8;
    }
    .content-list-row-title .state__1 {
        color: #ff7272;
    }
.content-list-row-menu {
    position:relative;
    width: 50px;
    height: 50px;
}
.content-list-row-menu-icon {
    position: absolute;
    top:0;
    left:0;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-image: url(/images/ellipsis-vertical-solid.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 6px;
    filter: invert(78%) sepia(5%) saturate(226%) hue-rotate(152deg) brightness(84%) contrast(86%);
}
    .content-list-row-menu-icon:hover {
        filter: invert(76%) sepia(26%) saturate(5548%) hue-rotate(343deg) brightness(96%) contrast(100%);
    }
.content-list-row-menu-popup-area {
    display: none;
}
.content-list-row-menu-popup-close {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.content-list-row-menu-popup {
    width: 200px;
    padding: 10px 0;
    background-color: #fff;
    box-shadow: #0003 0px 5px 20px !important;
    border-radius: 15px;
    position: absolute;
    top: 35px;
    right: 15px;
    z-index: 1000;
}
    .content-list-row-menu-popup div {
        padding: 0 15px;
        cursor:pointer;
        line-height:40px;
    }
        .content-list-row-menu-popup div:hover {
            background-color: #efefef;
        }
.content-list-row-menu-delete:hover {
    color: #fff;
    background-color: #eb2d3a !important;
}
.content-list-row-header {
    border-top: 0;
}
    .content-list-row-header div {
        font-weight: bold;
        color: #000;
        background-image:unset;
        cursor:unset;
    }

.result-box {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index:1001;
}
.result-box-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color:#000;
    opacity:0.4;
}
.result-box-inside {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.result-box-content {
    width: 300px;
    position: fixed;
    top: 130%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 15px;
    text-align: center;
    border-top: 5px solid #d8cf29;
    transition: top 0.2s;
}
.result-box-content-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    margin-top: 50px;
    background-image: url('/images/xmark-solid.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50px;
    filter: invert(84%) sepia(72%) saturate(532%) hue-rotate(354deg) brightness(89%) contrast(89%);
}
.result-box-content-title {
    display: block;
    margin-top: 20px;
    color: #d8cf29;
    font-weight: bold;
    font-size: 20px;
}
.result-box-content-desc {
    display: block;
    font-size: 17px;
    padding: 0 15px;
}
.result-box-content-button, .result-box-content-button-process {
    display: block;
    height: 40px;
    margin: 30px auto;
    padding: 0 70px;
    border: 0;
    background-color: #d8cf29;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
}
.result-box-content-button-process {
    display: none;
}
.result-box-content-success {
    border-top: 5px solid #0ad878;
}

    .result-box-content-success .result-box-content-icon {
        background-image: url('/images/circle-check-regular.svg');
        filter: invert(75%) sepia(52%) saturate(5662%) hue-rotate(109deg) brightness(104%) contrast(92%);
    }

    .result-box-content-success .result-box-content-title {
        color: #0ad878;
    }

    .result-box-content-success .result-box-content-button {
        background-color: #0ad878;
    }
.result-box-content-fail {
    border-top: 5px solid #ff515c;
}

    .result-box-content-fail .result-box-content-icon {
        background-image: url('/images/circle-xmark-regular.svg');
        filter: invert(45%) sepia(22%) saturate(6788%) hue-rotate(328deg) brightness(103%) contrast(101%);
    }

    .result-box-content-fail .result-box-content-title {
        color: #ff515c;
    }

    .result-box-content-fail .result-box-content-button {
        background-color: #ff515c;
    }

.result-box-content-approval {
    border-top: 5px solid #E0B700;
}
    .result-box-content-approval .result-box-content-icon {
        background-image: url('/images/circle-exclamation-solid.svg');
        filter: invert(67%) sepia(93%) saturate(1481%) hue-rotate(8deg) brightness(98%) contrast(101%);
    }
    .result-box-content-approval .result-box-content-title {
        color: #E0B700;
    }
    .result-box-content-approval .result-box-content-button-area {
        display: flex;
        justify-content: space-around;
    }
    .result-box-content-approval button {
        padding:0 0;
        text-align:center;
        width:130px;
    }
    .result-box-content-approval .result-box-content-button {
        background-color: #E0B700;
    }
    .result-box-content-approval .result-box-content-button-process {
        display: block;
        background-color: #ff515c;
    }
.result-box label{
    margin-left:5px;
}

.content-list-table-title {
}
    .content-list-table-title a{
        color:#000;
    }
.content-list-table-popup {
        max-width: 100px;
        display: block;
    }
.content-list-table-row a {
    color: #000;
    text-decoration:underline;
}
.content-list-table-print-button{
    text-decoration:underline;
    cursor:pointer;
    font-size:14px;
}
.chart_PolarAreaChart {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.chart_HorizontalBarChart {
    width: 100%;
    height:400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.dashboard-numbers-active-card {
    background-color: #ffa755;
}
    .dashboard-numbers-active-card .dashboard-numbers-icon-icon {
        position: absolute;
        top: 25px;
        left: 25px;
        width: 60px;
        height: 60px;
        background-image: url('/images/credit-card-solid.svg');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 30px;
        filter: invert(100%) sepia(34%) saturate(1759%) hue-rotate(283deg) brightness(107%) contrast(112%);
    }
.dashboard-numbers-total-user {
    background-color: #68e365;
}
    .dashboard-numbers-total-user .dashboard-numbers-icon-icon {
        position: absolute;
        top: 25px;
        left: 25px;
        width: 60px;
        height: 60px;
        background-image: url('/images/users-solid.svg');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 30px;
        filter: invert(100%) sepia(34%) saturate(1759%) hue-rotate(283deg) brightness(107%) contrast(112%);
    }
.dashboard-numbers-active-affiliated-company {
    background-color: #b48dd3;
}
    .dashboard-numbers-active-affiliated-company .dashboard-numbers-icon-icon {
        position: absolute;
        top: 25px;
        left: 25px;
        width: 60px;
        height: 60px;
        background-image: url('/images/briefcase-solid.svg');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 30px;
        filter: invert(100%) sepia(34%) saturate(1759%) hue-rotate(283deg) brightness(107%) contrast(112%);
    }
.dashboard-numbers-active-enterprise-user {
    background-color: #709fba;
}
    .dashboard-numbers-active-enterprise-user .dashboard-numbers-icon-icon {
        position: absolute;
        top: 25px;
        left: 25px;
        width: 60px;
        height: 60px;
        background-image: url('/images/rectangle-list-solid.svg');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 30px;
        filter: invert(100%) sepia(34%) saturate(1759%) hue-rotate(283deg) brightness(107%) contrast(112%);
    }
.dashboard-numbers-area {
    height:110px;
    position:relative;
}
.dashboard-numbers-icon-bg {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background-color: white;
    opacity: 0.4;
}
.dashboard-numbers-number {
    position: absolute;
    top: 20px;
    left: 100px;
    right: 10px;
    height: 30px;
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 2px;
}
.dashboard-numbers-number2 {
    font-size: 18px;
}
.dashboard-numbers-title {
    position: absolute;
    top: 60px;
    left: 100px;
    right: 10px;
    height: 30px;
    color:#fff;
}

.dashboard-last-sales-area {
    margin-bottom: 15px;
    height: 54px;
    position: relative;
}
.dashboard-last-sales-left-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 54px;
    border-radius: 7px;
    background-color: rgb(70, 30, 231);
}
.dashboard-last-sales-name {
    position: absolute;
    top: 5px;
    left: 30px;
    right: 0;
    height: 20px;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #505050;
}
.dashboard-last-sales-price {
    position: absolute;
    top: 29px;
    left: 30px;
    right: 0;
    line-height: 20px;
    font-weight: bold;
}
    .dashboard-last-sales-price span {
        font-weight: normal;
        color: #a0a0a0;
        font-size: 12px;
    }

.dashboard-last-sales-type-1 .dashboard-last-sales-left-line {
    background-color: rgba(255, 99, 132, 1);
}
.dashboard-last-sales-type-2 .dashboard-last-sales-left-line {
    background-color: rgba(54, 162, 235, 1);
}
.dashboard-last-sales-type-3 .dashboard-last-sales-left-line {
    background-color: rgba(255, 206, 86, 1);
}

.radio-selector-area {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: flex-start;
    padding: 6px 3px;
}
.radio-selector-item-area {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.radio-selector-item-icon {
    width: 30px;
    height: 30px;
    background-image: url('/images/circle-regular.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 18px;
    filter: invert(92%) sepia(1%) saturate(116%) hue-rotate(314deg) brightness(95%) contrast(74%);
}
.radio-selector-item-icon-selected {
    background-image: url('/images/circle-check-solid.svg');
    filter: invert(47%) sepia(9%) saturate(3534%) hue-rotate(78deg) brightness(103%) contrast(91%);
}
.radio-selector-item-icon {
    text-align: left;
}

.issue-invoice-amount-area {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 9px 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.issue-invoice-amount-title {
    font-weight: bold;
    font-size: 12px;
    color: #b40000;
}
.issue-invoice-amount-amount {
    font-weight: bold;
    font-size: 20px;
    color: #000000;
}

.content-page-affiliated-amount {
    margin: 15px;
    text-align:center;
}
    .content-page-affiliated-amount input {
        background-color: #fff;
        border: 0;
        border-bottom: 1px solid #000;
        width: 180px;
        text-align: center;
        font-size: 27px;
        height: 45px;
        font-weight: bold;
        color: #000;
        outline: none;
    }


.content-page-home-square-area {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: center;
}

.content-page-home-square-item-area {
    width: 150px;
    height: 150px;
    border-radius: 21px;
    background-color: #efefef;
    margin-bottom: 6px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}
    .content-page-home-square-item-area:hover {
        background-color: #c7c7c7;
    }

.content-page-home-square-item-icon {
    width: 54px;
    height: 54px;
    border-radius: 27px;
    margin-bottom: 6px;
}

    .content-page-home-square-item-icon span {
        display: inline-block;
        width: 54px;
        height: 54px;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 27px;
        filter: invert(100%) sepia(0%) saturate(7434%) hue-rotate(190deg) brightness(119%) contrast(117%);
    }

.content-page-home-square-item-icon-addbalance {
    background-color: #5bb269;
}

    .content-page-home-square-item-icon-addbalance span {
        background-image: url('/images/wallet-solid.svg');
    }

.content-page-home-square-item-icon-transferbalance {
    background-color: #579eb4;
}

    .content-page-home-square-item-icon-transferbalance span {
        background-image: url('/images/people-arrows-solid.svg');
    }

.content-page-home-square-item-icon-transactionhistory {
    background-color: #343434;
}

    .content-page-home-square-item-icon-transactionhistory span {
        background-image: url('/images/clock-rotate-left-solid.svg');
    }

.content-page-home-square-item-icon-campaigns {
    background-color: #7e36b7;
}

    .content-page-home-square-item-icon-campaigns span {
        background-image: url('/images/gift-solid.svg');
    }

.content-page-home-square-item-title {
    width: 150px;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    line-height: 18px;
}

.content-page-home-square-item-desc {
    width: 150px;
    text-align: center;
    font-size: 11px;
    line-height: 15px;
}

.bottom-popup-content-payment-with-code{
    text-align:center;
}

.bottom-popup-content-payment-methods-title {
    text-align: center;
    color: #880c0c;
    font-weight: 700;
    font-size: 15px;
    line-height: 21px;
    border-bottom: 1px solid #8e8e8e;
    margin: 0 30px;
    margin-top: 21px;
    padding-bottom: 21px;
    margin-bottom: 9px;
}

.bottom-popup-content-payment-methods-button-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding-bottom: 15px;
}

.bottom-popup-content-payment-methods-btn {
    width: 60px;
}

    .bottom-popup-content-payment-methods-btn div {
        width: 60px;
        height: 60px;
        border-radius: 9px;
        background-image: url('/images/qrcode-solid.svg');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 30px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    .bottom-popup-content-payment-methods-btn .bottom-popup-content-payment-methods-btn1 {
        background-image: url('/images/qrcode-solid.svg');
    }

    .bottom-popup-content-payment-methods-btn .bottom-popup-content-payment-methods-btn2 {
        background-image: url('/images/pen-solid.svg');
    }

    .bottom-popup-content-payment-methods-btn .bottom-popup-content-payment-methods-btn3 {
        background-image: url('/images/barcode-solid.svg');
    }

    .bottom-popup-content-payment-methods-btn span {
        display: inline-block;
        width: 60px;
        text-align: center;
        font-weight: 700;
        font-size: 12px;
        margin-top: 6px;
        line-height: 15px;
    }

.bottom-popup-content-payment-create-qr-step2 {
    text-align: center;
}

.bottom-popup-content-payment-qr {
    text-align: center;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-popup-content-payment-code {
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    color: #424242;
}

.bottom-popup-content-payment-amount {
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    color: #000;
}

.bottom-popup-content-payment-wallet-name {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: #df8644;
}

.bottom-popup-content-payment-desc {
    text-align: center;
    font-size: 13px;
    padding: 0 15px;
    line-height: 18px;
}

.payment-create-qr-set-limit {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}

    .payment-create-qr-set-limit span:first-child {
        display: inline-block;
        line-height: 30px;
        font-size: 15px;
    }

.payment-create-qr-set-limit-icon0, .payment-create-qr-set-limit-icon1 {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 24px;
    margin-left: 9px;
}

.payment-create-qr-set-limit-icon0 {
    background-image: url('/images/toggle-off-solid.svg');
    filter: invert(49%) sepia(0%) saturate(0%) hue-rotate(252deg) brightness(91%) contrast(90%);
}

.payment-create-qr-set-limit-icon1 {
    background-image: url('/images/toggle-on-solid.svg');
    filter: invert(37%) sepia(35%) saturate(1292%) hue-rotate(80deg) brightness(93%) contrast(89%);
}

.payment-create-qr-set-limit-input-area {
    display: none;
}

.payment-methods-read-qr-buttons-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: center;
}

    .payment-methods-read-qr-buttons-group button {
        min-width: 120px;
    }

        .payment-methods-read-qr-buttons-group button:first-child {
            background-color: #616161;
        }
.content-page-middle-button {
    min-width: 150px;
    background-color: #df8644 !important;
    height: 45px;
    padding: 0 30px;
    border: 0;
    border-radius: 21px;
    margin-top: 15px;
    font-size: 15px;
    color: #fff;
    cursor:pointer;
}
.content-page-middle-button:hover {
    background-color: #616161 !important;
}

.content-page-subpage-amounts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 9px;
}

    .content-page-subpage-amounts button {
        display: inline-block;
        width: 60px;
        height: 30px;
        border-radius: 15px;
        background-color: #fff;
        color: #000;
        border: 0;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    }


.content-page-subpage-amount {
    position: relative;
    height: 45px;
    margin-top: 9px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.content-page-subpage-amount-icon {
    position: absolute;
    top: 0;
    left: 15px;
    width: 45px;
    height: 45px;
    background-image: url('/images/money-bill-1-regular.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 21px;
}

.content-page-subpage-amount-iconcard {
    background-image: url('/images/money-bill-transfer-solid.svg');
}

.content-page-subpage-amount-iconcreditcard {
    background-image: url('/images/credit-card-solid.svg');
}

.content-page-subpage-code-icon {
    background-image: url('/images/hashtag-solid.svg');
}

.content-page-subpage-amount-input {
    position: absolute;
    top: 0;
    right: 75px;
    left: 75px;
    height: 45px;
    text-align: center;
}

    .content-page-subpage-amount-input input {
        height: 36px;
        text-align: center;
        padding: 0;
        margin: 0;
        width: 100%;
        background-color: #fff;
        color: #000000;
        border: 0;
        border-bottom: 1px solid #9fa4a6;
        font-size: 15px;
    }

        .content-page-subpage-amount-input input:focus {
            outline: none;
            border-bottom: 1px solid #df8644;
        }

.content-pages-sales-filter-list-total {
    text-align: right;
    font-weight: bold;
    margin-right: 30px;
    font-size: 15px;
    margin-bottom: 6px;
    color: #ad0101;
}

.sell-company-names {
    text-align: center;
}
    .sell-company-names div:first-child {
        font-weight: bold;
        font-size: 23px;
    }
    .sell-company-names div:last-child {
        font-size: 16px;
        color: #777777;
    }
.content-list-table-row-refund{
    text-decoration:underline;
    cursor:pointer;
}

.receipt1-area{
    width:400px;
    margin:20px auto;
    border:1px solid #000;
    padding:10px 25px;
}
.receipt1-title1 {
    text-align: center;
    font-size: 16px;
    margin: 10px 5px;
}
.receipt1-company-name {
    text-align: center;
    font-size: 16px;
    margin: 10px 5px;
}
.receipt1-title2 {
    line-height: 15px;
    margin-top: 5px;
}
.receipt1-processing-time {
    border: none;
    border-bottom: 2px dotted transparent;
    border-image: radial-gradient(circle, black 15%, transparent 15%) 150 round;
    line-height: 20px;
    letter-spacing: 2px;
}
.receipt1-title3 {
    line-height: 25px;
}
.receipt1-desc {
    font-size:17px;
}
.receipt1-amount-area {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    margin-top: 7px;
}
.receipt1-print-button{
    text-align:center;
}