.app-header-dark {
    background: #1e3d73;
    background: linear-gradient(90deg, #2c5bab 0, #1e3d73 100%) !important;
}

.float-alert {
    display: inline-block;
    margin: 0 auto;
    position: fixed;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    z-index: 1031;
    top: 20px;
    right: 20px;
}

.table .alert-danger {
    color: #a94442 !important;
    background-color: #f2dede !important;
    border-color: #ebccd1 !important;
}

.alert {
    padding: 10px 15px;
    font-size: 14px;
}

.alert:not(.float-alert) span[data-notify="icon"] {
    float: left;
    font-size: 18px;
    margin-top: 0;
}

.float-alert.alert span[data-notify="icon"] {
    font-size: 20px;
    display: block;
    left: 13px;
    position: absolute;
    top: 50%;
    margin-top: -11px;
}

.alert.float-alert .alert-title {
    margin-left: 30px;
    font-weight: 500;
}

body.rtl .alert.float-alert .alert-title {
    float: left;
}

.alert:not(.float-alert) .alert-title {
    margin-left: 10px;
}

.alert.float-alert button.close {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -13px;
    z-index: 1033;
    background-color: #FFFFFF;
    display: block;
    border-radius: 50%;
    opacity: .4;
    line-height: 11px;
    width: 25px;
    height: 25px;
    outline: 0 !important;
    text-align: center;
    padding: 3px;
    font-weight: 400;
}

.alert.float-alert button.close:hover {
    opacity: .55;
}

.alert.float-alert .close ~ span {
    display: block;
    max-width: 89%;
}

.alert.alert-dismissible button.close {
    right: -2px;
}

.label {
    align-items: center;
    border-radius: 0.5rem;
    display: inline-flex;
    font-size: .75rem;
    font-weight: 500;
    line-height: 1rem;
    padding: 0.25rem 0.625rem;
}

.waiting {
    color: #3b82f6;
    border: 1px solid #b1cdfb;
    background: #f7faff;
}

.complete {
    border: 1px solid #a7e8bf;
    color: #22c55e;
    background: #f6fdf9;
}

.failing {
    border: 1px solid #ffabb3;
    color: #ff2d42;
    background: #fff7f8;
}

.table {
    color: #383b3e;
}

.table th, .table td {
    padding: 6px;
}

.datatable td {
    overflow: hidden; /* this is what fixes the expansion */
    text-overflow: ellipsis; /* not supported in all browsers, but I accepted the tradeoff */
    white-space: nowrap !important;
}

table.dataTable thead > tr > th {
    background-color: rgb(248 250 252/1);
    color: rgb(71 85 105/1);
    font-size: 13.5px;
    white-space: nowrap;
    vertical-align: middle;
    height: 40px;
}

.btn-group {
    border-radius: 0.375rem;
}

.btn-group, .btn-group-vertical {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
}

.btn-default {
    background-color: #fff;
    border: 1px solid #f2f4f6;
    color: #595959;
}

.card-outline {
    border-top: 3px solid #00a28a;
}

.card-outline-info {
    border-top: 3px solid #0179a8;
}

.card-outline-warning {
    border-top: 3px solid #f7c46c;
}

.card-outline-danger {
    border-top: 3px solid #ea6759;
}

.clickable {
    cursor: pointer;
}

#pre-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #e5e9ec;
    z-index: 10;
}

/*loader*/
.circle-loader {
    margin: 10px auto;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: solid 2px rgba(220, 230, 235, 0.5);
    border-top-color: #0179a8;
    animation: spin 1s infinite linear;
    -webkit-animation: spin 1s infinite linear;
}

.app-loader {
    width: 90px;
    height: 90px;
    margin: 30px auto;
    position: absolute;
    bottom: 45px;
    right: 5px;
    padding: 10px;
    border-radius: 50%;
    background: transparent;
}

.app-loader .loading {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: solid 2px #0179a8;
    border-top-color: #fff;
    animation: spin 1s infinite linear;
    -webkit-animation: spin 1s infinite linear;
    display: inline-block;
}

.ani-width {
    transition: width 50ms;
}

.ani-rotate-180:hover {
    transform: rotate(180deg);
    transition: all 300ms ease-out 0ms;
}


@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}


.inline-loader {
    width: 20px;
    height: 20px;
    border-radius: 50% !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: solid 2px #6690F4 !important;
    border-top-color: #fff !important;
    animation: spin 1s infinite linear;
    -webkit-animation: spin 1s infinite linear;
    display: inline-block;
    padding: 0 !important;
    align-self: center;
}

.inline-loader:hover {
    background-color: #fff !important;
}

.loader-container.inline-loader {
    width: 20px !important;
    height: 20px !important;
    display: block;
    margin: 0 auto;
}

.loader-container.inline-loader:hover {
    background-color: #fff !important;
}


@media (max-width: 990px) {
    #pre-loader .app-loader {
        right: 44% !important;
    }
}

@media (max-width: 767px) {
    #pre-loader .app-loader {
        right: 38% !important;
    }
}

.table th, .table td {
    padding: 6px;
}

.datatable td {
    overflow: hidden; /* this is what fixes the expansion */
    text-overflow: ellipsis; /* not supported in all browsers, but I accepted the tradeoff */
    white-space: nowrap !important;
}

table.dataTable thead > tr > th {
    background-color: rgb(248 250 252/1);
    color: rgb(71 85 105/1);
    font-size: 13px;
    white-space: nowrap;
    vertical-align: middle;
    height: 40px;
}

.w80 {
    width: 80px;
}

.dropdown-left {
    left: auto;
    right: 0 !important;
}


td .progress {
    box-shadow: none !important;
    height: 8px;
    margin: 10px 10px 10px 10px;
}

td:hover .progress {
    background-color: #fff;
}


/*alert*/
.alert {
    border: 0;
}

.alert .progress {
    background-color: transparent;
    box-shadow: none !important;
    height: 3px;
    border-radius: 0;
    margin: 19px 0px -15px -13px;
}

.alert .progress-bar {
    box-shadow: none !important;
    background-color: rgba(0, 0, 0, 0.3);
}

.app-alert-message {
    display: inline-block;
    margin-right: 5px;
    max-width: 350px;
    min-width: 165px;
}

.app-alert.animate {
    bottom: 0;
    position: fixed;
    z-index: 100;
    border-radius: 2px;
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
    opacity: 0.25;
    right: -350px;
}

.app-alert.alert-info {
    background-color: #22B9FF;
    color: #fff;
}

.app-alert.alert-success {
    background-color: #00A28A;
    color: #fff;
}

.app-alert.alert-danger {
    background-color: #f5325c;
    color: #fff;
}

.app-alert.alert-warning {
    background-color: #ffb822;
    color: #fff;
}

.app-alert a {
    color: #444;
}

/*progress-bar*/
.progress.thin {
    height: 3px;
}

.alert-warning {
    background-color: #fff2cc;
}


/* fs modal*/
.app-modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 5000;
}

.app-modal:not(.import-client-app-modal) {
    animation: slidedown 300ms;
    -webkit-animation: slidedown 300ms;
}

.app-modal.full-content .app-modal-sidebar {
    display: none;
}

.app-modal.full-content .expand {
    display: none;
}

.app-modal.full-content .compress {
    display: block;
}

.app-modal .compress, .app-modal .expand {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    padding: 10px;
    color: #000;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.5);
}

.app-modal .compress:hover, .app-modal .expand:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.app-modal .expand {
    display: block;
    right: 370px !important;
}

.app-modal .compress {
    display: none;
}

.app-modal.loading .app-modal-sidebar {
    border-color: #fff;
}

.app-modal.loading .expand {
    display: none;
}

.app-modal-fixed-close-button {
    position: absolute;
    z-index: 1;
    right: 20px;
    background: #fff;
}

.app-modal-body {
    margin: 1% 1% 2%;
    width: 98%;
    height: 97%;
    background-color: #fff;
    display: table;
    table-layout: fixed;
    border-spacing: 0;
}

.app-modal-close {
    font-size: 20px;
    text-align: right;
    padding: 0 7px;
    cursor: pointer;
}

.app-modal-content {
    display: table-cell;
    vertical-align: central;
    height: 100%;
    text-align: center;
}

.app-modal-content .app-modal-content-area {
    position: relative;
    overflow-y: scroll;
    height: calc(100%);
}

.app-modal-content img {
    max-width: 100%;
    max-height: 100%;
}

.app-modal-sidebar {
    width: 350px;
    border-left: 1px solid #f2f2f2;
    height: 100%;
    display: table-cell;
    vertical-align: top;
}


.app-popover {
    position: absolute;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    min-width: 180px;
}

.app-popover .confirmation-title {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.app-popover .app-popover-body {
    padding: 15px;
}

.app-popover .app-popover-arrow {
    top: -6px;
    border-color: transparent;
    transform: rotate(225deg);
    border: solid transparent;
    height: 12px;
    width: 12px;
    position: absolute;
    pointer-events: none;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-top-color: transparent;
    border-left-color: transparent;
    left: 10px;
}

.app-popover .app-popover-arrow.bottom-arrow {
    bottom: -6px;
    top: unset;
    transform: rotate(45deg);
}

.modal-body .table th,
.modal-body .table td {
    height: 40px;
    font-size: 13px;
    vertical-align: middle;
}


label {
    font-weight: 500;
}

.card-header {
    padding: 10px 12px;
    margin-bottom: 0;
    background-color: transparent;
    border-bottom: 1px solid rgba(20, 20, 31, 0.12);
}

.card-title {
    line-height: 26px;
    margin-bottom: 0px;
}


/*modal mask*/
.modal-mask {
    position: relative;
    top: 0;
    left: 0;
    background-color: #fff;
}

.circle-done {
    margin: 10px auto;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: solid 5px rgba(220, 230, 235, 0.5);
    text-align: center;
    font-size: 40px;
    padding: 10px;
    color: #25ccce;
}

.circle-done i {
    display: inline-block;
    max-width: 0%;
    overflow: hidden;

}

.circle-done.ok i {
    max-width: 80%;
    -webkit-transition: max-width 1000ms ease;
    -moz-transition: max-width 1000ms ease;
    -o-transition: max-width 1000ms ease;
    transition: max-width 1000ms ease;
}


.activity-log {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.activity-log .title {
    font-weight: bold;
    color: #333;
}

.activity-log .date {
    color: #666;
    font-size: 0.9em;
}

.system-action {
    background-color: #e7f3fe;
    border-left: 4px solid #2196F3;
    padding: 8px;
    margin: 5px 0;
}

.user-action {
    background-color: #e0f7fa;
    border-left: 4px solid #00ACC1;
    padding: 8px;
    margin: 5px 0;
}

.activity-log .icon {
    width: 20px;
    height: 20px;
    float: right;
}

.log-details {
    margin-top: 10px;
    padding: 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
}

.activity-log ul {
    list-style-type: none; /* Madde işaretlerini kaldırır */
    padding: 0; /* Varsayılan padding değerini sıfırlar */
    margin: 0; /* Varsayılan margin değerini sıfırlar */
}


.help-block {
    color: red;
}

pre {
    display: block;
    padding: 10px;
    margin: 0 0 10px;
    line-height: 1.42857143;
    color: #333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.text-green {
    color: green;
}

.text-red {
    color: red;
}

.text-blue {
    color: darkblue;
}

table tfoot {
    background-color: #f6f8fa;
    font-weight: 600;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}


tr.row_selected {
    background-color: #fff8ea !important;
}


.copy_button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 5px;
    color: #ba9800;
    font-size: 14px;
    transition: color 0.2s;
}

.copy_button:hover {
    color: #8e7502;
}

.copy_button:active {
    color: #28a745;
}

@keyframes backgroundPulseWithdraw {
    0% {
        color: #b85555;
    }
    50% {
        color: #dc3545;
    }
    100% {
        color: #b85555;
    }
}

@keyframes backgroundPulseDeposit {
    0% {
        color: #4fae49;
    }
    50% {
        color: #098100;
    }
    100% {
        color: #4fae49;
    }
}

@keyframes backgroundPulseRefund {
    0% {
        color: #015e82;
    }
    50% {
        color: #2b5a92;
    }
    100% {
        color: #015e82;
    }
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-3px);
    }
    50% {
        transform: translateX(3px);
    }
    75% {
        transform: translateX(-3px);
    }
    100% {
        transform: translateX(0);
    }
}

.bg-animate-withdraw {
    animation: backgroundPulseWithdraw 3s infinite, shake 1s ease-in-out 1;
    border-radius: 4px;
    display: inline-block;
    font-weight: bold;
    color: #dc3545;
}

.bg-animate-refund {
    animation: backgroundPulseRefund 3s infinite, shake 1s ease-in-out 1;
    border-radius: 4px;
    display: inline-block;
    font-weight: bold;
    color: #015e82;
}

.bg-animate-deposit {
    animation: backgroundPulseDeposit 3s infinite, shake 1s ease-in-out 1;
    border-radius: 4px;
    display: inline-block;
    font-weight: bold;
}



.diagonal-text {
    transform: rotate(20deg);
    display: inline-block;
    white-space: nowrap;
    text-align: center;
}


.card-stamp {
    position: absolute;
    top: 0;
    right: 0;
    max-height: 100%;
    border-top-right-radius: 6px;
    opacity: 0.2;
    overflow: hidden;
    pointer-events: none;
}


.card-stamp-icon {
    background: #6b7280;
    color: #fff7dd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100rem;
    width: calc(7rem * 1);
    height: calc(7rem * 1);
    position: relative;
    top: calc(7rem * -0.25);
    right: calc(7rem * -0.25);
    font-size: calc(7rem * 0.75);
    transform: rotate(10deg);
}
.card-stamp-icon .icon {
    stroke-width: 2;
    width: calc(13rem * 0.75);
    height: calc(13rem * 0.75);
}
