﻿.alert {
  --bs-alert-border-radius: var(--bs-border-radius-sm);
}

body {
  /* background: url('../images/index/bg.jpg') no-repeat top center #013b61 !important;*/
  background: #555f65;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.825rem;
  --bs-body-font-size: $defaultBodyFontSize;
}

.input-group-sm > .btn, .input-group-sm > .form-control, .input-group-sm > .form-select, .input-group-sm > .input-group-text {
  font-size: 0.825rem;
}

table.md-table td.md-cell {
  font-size: 0.825rem;
}

.form-control-sm {
  font-size: 0.825rem;
}

.table-border-between tr:not(:last-child) td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.table-default-padding td {
  padding: 2px 3px;
}

.w-1 {
  width: 1%;
}

.w-10 {
  width: 10%;
}

md-backdrop.md-opaque {
  background-color: #2b373e;
  opacity: 0.8;
}

.form-control:disabled {
  background-color: var(--bs-tertiary-bg);
}

.input-group input,
.input-group button,
.input-group .input-group-text {
  font-weight: 500;
}

.form-control:focus {
  border-color: var(--bs-gray-900);
  box-shadow: none;
}

.btn-mat-icon {
  line-height: 1;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.btn-mat-icon:hover md-icon.material-icons {
  color: white;
}

/*    .btn-outline-lightgray {
                                                border-color: #dee2e6;
                                            }
                                        */
.btn-outline-lightgray {
  --bs-btn-color: #6c757d;
  --bs-btn-border-color: #dee2e6;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #6c757d;
  --bs-btn-hover-border-color: #6c757d;
  --bs-btn-focus-shadow-rgb: 108,117,125;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #6c757d;
  --bs-btn-active-border-color: #6c757d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #6c757d;
  --bs-gradient: none;
}

.input-group md-select {
  width: 100%;
  margin: 0px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  padding: 0px 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}

.input-group md-select md-select-value {
  width: 10px; /* fix */
}

.first-tab-title md-tab-item.md-disabled {
  background: #555f65;
  opacity: inherit;
}

.first-tab-title md-tab-item.md-disabled .title-tab {
  color: white;
}

md-card.md-default-theme, md-card {
  border-radius: 3px !important;
}

.blur {
  -webkit-filter: blur(5px);
  filter: blur(5px);
}

md-pagination-wrapper {
  width: 9999px !important;
}

.pd-10 {
  padding: 10px;
}

.fs-10 {
  font-size: 10px;
}

.fs-11 {
  font-size: 11px;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-16 {
  font-size: 16px;
}

.op-50 {
  opacity: 0.5;
}

.op-35 {
  opacity: 0.35;
}

.sticky-header {
  position: relative !important;
  overflow: auto !important;
}

.sticky-header thead tr th {
  background-color: #dcdfe1;
  z-index: 9;
}

.sticky-header thead:first-child tr th:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #555f65;
  bottom: 0px;
  left: 0px;
  z-index: 0;
}

.sticky-header th {
  position: sticky;
  top: 0;
}

.report-table th .fas {
  display: none;
}

.md-toolbar-input {
  background: transparent;
  border: 0;
  color: white;
  font-size: 0.825em;
  font-weight: 400;
  outline: none;
}

.md-toolbar-input::placeholder {
  font-weight: 400;
}

div.loading {
  width: 100%;
  height: 100%;
  z-index: 9999999;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
div.loading div.loading-box {
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  font-weight: 500;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 0 15px 4px rgba(0, 0, 0, 0.3);
}
div.loading div.loading-box md-progress-circular {
  display: inline-block;
}
div.loading div.loading-box md-progress-circular path {
  stroke: #fff;
}

div.network-offline-container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 99999999999;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
div.network-offline-container > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 15px 4px rgba(0, 0, 0, 0.3);
}
div.network-offline-container > div span {
  color: #fff;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  font-size: 11pt;
  margin-top: 10px;
}

body.network-offline div.network-offline-container {
  visibility: visible;
  opacity: 1;
}

td[md-cell] {
  white-space: nowrap;
}

.white-space-normal {
  white-space: normal !important;
}

md-input-container.md-block md-datepicker {
  width: 100%;
}
md-input-container.md-block md-datepicker div.md-datepicker-input-container {
  width: 100%;
}

md-tabs md-tabs-canvas {
  height: 36px;
}
md-tabs md-tabs-canvas md-pagination-wrapper {
  height: 36px;
}
md-tabs md-tabs-canvas md-pagination-wrapper .md-tab {
  padding: 6px 15px;
}
md-tabs[md-border-bottom]:not(.md-dynamic-height) md-tabs-content-wrapper {
  top: 37px;
}
md-tabs span.title-tab {
  color: black;
}

table.md-table.md-row-select td.md-cell:nth-child(n+3):nth-last-child(n+2), table.md-table.md-row-select th.md-column:nth-child(n+3):nth-last-child(n+2) {
  padding: 0 24px 0 0;
}

table.md-table:not(.md-row-select) td.md-cell:nth-child(n+2):nth-last-child(n+2), table.md-table:not(.md-row-select) th.md-column:nth-child(n+2):nth-last-child(n+2) {
  padding: 0 24px 0 0;
}

.input-group {
  position: relative;
}
.input-group button.md-icon-button {
  margin: 0;
  padding: 0;
  width: 36px;
  height: 36px;
  position: absolute;
  right: 0;
  z-index: 2;
}

.teslimatfaturaadresi md-input-container {
  margin: 8px 0;
}

input[giz-currency] {
  text-align: right;
  padding-right: 5px;
}

.ModalOrtakKasaIslemFisi {
  width: 660px;
  max-width: 80%;
}
.ModalOrtakKasaIslemFisi .my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.ModalOrtakKasaIslemFisi .mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.ModalOrtakKasaIslemFisi .md-dialog-content {
  padding: 10px;
}
.ModalOrtakKasaIslemFisi div.baslik {
  padding: 5px;
}
.ModalOrtakKasaIslemFisi div.md-errors-spacer {
  display: none;
}
.ModalOrtakKasaIslemFisi .md-input-focused .md-input {
  padding: 5px;
  border: 1px solid lightgray !important;
  outline: 1px solid lightgray;
  border-width: inherit;
}
.ModalOrtakKasaIslemFisi md-input-container:not(.md-input-has-value) input:not(:focus) {
  color: inherit !important;
  width: 100%;
  box-sizing: border-box;
}
.ModalOrtakKasaIslemFisi md-input-container {
  margin: 0;
  /*
          input {
              border-width: 1px;
              border-radius: 6px;
              width: 100%;
              max-width: 100%;
              box-sizing: border-box;
              outline: none;
          }
  */
}
.ModalOrtakKasaIslemFisi md-input-container md-datepicker {
  position: absolute;
}
.ModalOrtakKasaIslemFisi md-input-container::after {
  display: none;
}
.ModalOrtakKasaIslemFisi md-input-container input {
  font-size: inherit;
  padding: 5px;
  border: 1px solid lightgray;
  border-radius: 0.25rem !important;
}
.ModalOrtakKasaIslemFisi md-input-container input[disabled] {
  color: inherit;
  background-color: #f1f1f1;
  border: 1px solid lightgray;
}

.ModalYaziciAyarlari {
  width: 660px;
  max-width: 80%;
}
.ModalYaziciAyarlari div.legend-block {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 15px 10px 10px 10px;
  margin-bottom: 20px;
  position: relative;
}
.ModalYaziciAyarlari div.legend-block:last-child {
  margin-bottom: 0;
}
.ModalYaziciAyarlari div.legend-block > label {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  display: inline-block;
  background: #fff;
  padding: 1px 5px;
  font-size: 0.825rem;
}
.ModalYaziciAyarlari div.legend-block md-input-container {
  margin-bottom: 0;
}
.ModalYaziciAyarlari div.legend-block md-input-container .md-select-value {
  border: none !important;
}

.ModalPavo509, .ModalPavo507 {
  width: 1300px;
  max-width: 80%;
}
.ModalPavo509 div.legend-block, .ModalPavo507 div.legend-block {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 10px 10px 20px;
  margin-bottom: 20px;
  position: relative;
}
.ModalPavo509 div.legend-block:last-child, .ModalPavo507 div.legend-block:last-child {
  margin-bottom: 0;
}
.ModalPavo509 div.code-action-list, .ModalPavo507 div.code-action-list {
  min-width: 300px;
}
.ModalPavo509 div.code-result, .ModalPavo507 div.code-result {
  flex: 1 0 auto;
}
.ModalPavo509 div.code-result pre, .ModalPavo507 div.code-result pre {
  height: 100%;
  margin-left: 16px;
  background: #f1f1f1;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
  overflow-y: auto;
}

.table {
  font-weight: 500;
  font-size: 14px;
  border-collapse: collapse;
}
.table tr {
  border: 1px solid #f1f1f1;
}
.table tr td {
  padding: 5px;
}
.table tr:nth-child(odd) {
  background-color: #f1f1f1;
}

.giz-zoom-animate-in {
  animation: gizzoom-in 0.2s;
  animation-fill-mode: both;
}

.giz-zoom-animate-out {
  animation: gizzoom-out 0.2s;
  animation-fill-mode: both;
}

.giz-opacity-animate-in {
  animation: gizopacity-in 0.2s;
  animation-fill-mode: both;
}

.giz-opacity-animate-out {
  animation: gizopacity-out 0.2s;
  animation-fill-mode: both;
}

@keyframes gizzoom-in {
  from {
    transform: scale(0.7);
    opacity: 0;
    visibility: hidden;
  }
  to {
    transform: scale(1);
    opacity: 1;
    visibility: inherit;
  }
}
@keyframes gizzoom-out {
  from {
    transform: scale(1);
    opacity: 1;
    visibility: inherit;
  }
  to {
    transform: scale(0.7);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes gizopacity-in {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: inherit;
  }
}
@keyframes gizopacity-out {
  from {
    opacity: 1;
    visibility: inherit;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.bold {
  font-weight: 700;
}

md-radio-button {
  margin-bottom: 0;
  display: inline-block;
  min-width: 100px;
}

md-tabs md-ink-bar {
  color: #555f65;
  background-color: #555f65;
}

.header .sagmenu-btn i {
  font-size: 16pt;
}
.header h2 {
  text-align: center;
}
.header a.logo {
  display: inline-block;
  text-decoration: none;
}
.header a.logo img {
  max-width: 100%;
  max-height: 40px;
}
@media screen and (max-width: 600px) {
  .header a.logo img {
    max-height: 30px;
  }
}

.sol {
  min-width: 30%;
}
.sol .solbilgi table {
  width: 100%;
  border-collapse: collapse;
}
.sol .solbilgi table tr td {
  font-size: 12px !important;
  padding: 5px;
  border-top: 1px solid #ddd;
  font-family: "Poppins", sans-serif !important;
  font-weight: 500 !important;
}
.sol .solbilgi table tr td:nth-child(1) {
  width: 20px;
  text-align: center;
}
.sol .solbilgi table tr td:nth-child(2) {
  font-weight: 500 !important;
}
.sol .solbilgi table tr td:nth-child(3) {
  font-weight: 500 !important;
  width: 5px;
  text-align: center;
}
.sol .sepet {
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  height: 10px;
}
.sol .sepet .active {
  background-color: #f1f1f1;
  box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, 0.2);
}
.sol .sepet .sepet-baslik {
  font-weight: 700;
}
.sol .sepet h3.baslik {
  font-weight: 900 !important;
  color: #444;
}
.sol .sepet h4 {
  font-weight: 500 !important;
}
.sol .sepet div.promotion-list {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 5px;
  row-gap: 5px;
  padding: 5px 0;
}
.sol .sepet div.promotion-list div {
  flex: 1 0 auto;
  border-radius: 16px;
  box-sizing: border-box;
  cursor: default;
  display: block;
  float: left;
  max-width: 100%;
  padding: 6px 12px;
  position: relative;
  font-size: 0.825rem;
  background: #ddd;
  line-height: 13px;
  border: 1px solid #fff;
}
.sol .sepet::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background-color: #F5F5F5;
}
.sol .sepet::-webkit-scrollbar {
  width: 8px;
  background-color: #F5F5F5;
}
.sol .sepet::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  background-color: rgba(0, 0, 0, 0.5);
}
.sol .toplam {
  text-align: center;
  padding: 15px 0;
  color: #3F3F3F;
  border: 1px dashed #ddd;
  margin-top: 10px;
}
.sol .toplam span.adet, .sol .toplam span.fiyat {
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  font-size: 24pt;
  display: inline-block;
}
.sol .toplam span.indirim {
  display: block;
  color: #777;
}
.sol .toplam > span.kurus {
  vertical-align: top;
  display: inline-block;
  font-size: 14pt;
}
.sol .toplam > span.kurus span.kurus {
  font-weight: 700;
  display: inline-block;
}
.sol .toplam:nth-child(1) {
  border-right: 0;
  padding: 15px 10px;
}

.orta .barkodgirin {
  padding: 5px 10px;
  box-sizing: border-box;
  width: 100%;
  float: left;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.orta .barkodgirin > i {
  font-size: 16pt;
  display: inline-block;
  box-sizing: border-box;
  margin-right: 10px;
}
.orta .barkodgirin input {
  border: none;
  outline: none;
  font-weight: 400;
  flex: 1 0 auto;
  width: 10px;
}
.orta .barkodgirin button {
  font-size: 16pt;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: none;
  background-color: transparent;
  outline: none;
  color: #444;
  font-weight: 400;
  min-width: 20px;
}
.orta .barkodgirin button ~ button {
  margin-left: 10px;
}
.orta > md-card-content {
  height: 100%;
  box-sizing: border-box;
}
.orta .urundetay {
  width: 100%;
  height: 100%;
}
.orta .urundetay img.md-avatar {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.orta .urundetay tr {
  height: 38px;
}
.orta .urundetay tr td {
  color: #444;
}

.orta-butonlar button {
  width: 100%;
  height: 100%;
  margin: 0;
  text-transform: initial;
  background-color: #273238 !important;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.orta-butonlar button > span {
  line-height: 100%;
  font-weight: 400;
}
.orta-butonlar button div.buton-ikon {
  width: 100%;
  height: 24px;
  line-height: 100%;
  margin-bottom: 7px;
  background-size: contain !important;
}
.orta-butonlar button div.buton-ikon i {
  font-size: 18pt;
}
.orta-butonlar button div.buton-ikon.ikon-musterisec {
  background: url("../images/btMusteriSec.png") no-repeat center center;
}
.orta-butonlar button div.buton-ikon.ikon-hizliurun {
  background: url("../images/btHizliUrun.png") no-repeat center center;
}
.orta-butonlar button div.buton-ikon.ikon-bdi {
  background: url("../images/btBelgeDibiIndirimiYap.png") no-repeat center center;
}
.orta-butonlar button div.buton-ikon.ikon-pkg {
  background: url("../images/btPromosyonKoduGir.png") no-repeat center center;
}
.orta-butonlar button div.buton-ikon.ikon-fadresi {
  background: url("../images/btFaturaAdresi.png") no-repeat center center;
}
.orta-butonlar button div.buton-ikon.ikon-btft {
  background: url("../images/btBelgeTuruFiyatTipi.png") no-repeat center center;
}
.orta-butonlar button div.buton-ikon.ikon-fiyatgor {
  background: url("../images/btStokFiyatGor.png") no-repeat center center;
}
.orta-butonlar button.iptal {
  background-color: #D25050 !important;
}
.orta-butonlar button.asal {
  background-color: #273238 !important;
}
.orta-butonlar button.assatal {
  background-color: #273238 !important;
}
.orta-butonlar button.odeme {
  background-color: #0a9c12 !important;
}

.orta-butonlar.mobil-butonlar button {
  font-weight: 500;
  height: 100%;
}
.orta-butonlar.mobil-butonlar button div.buton-ikon {
  margin-bottom: 0px;
}
.orta-butonlar.mobil-butonlar button div.buton-ikon i {
  font-size: 22pt;
}

.input-container {
  background-color: #fff;
  float: left;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  border-radius: 3px;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: row;
}
.input-container input {
  border: none;
  outline: none;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  width: 100%;
  max-width: 100%;
  float: left;
  font-size: 12px;
  height: 36px;
  line-height: 36px;
}
.input-container i.fa {
  flex: 0 1 50px;
  width: 50px;
  float: left;
  text-align: center;
  display: inline-block;
  height: 36px;
}
.input-container i.fa:before {
  vertical-align: middle;
  line-height: 36px;
}
.input-container i.fa ~ input {
  flex: 1;
  width: 10px;
}

.fa-duzelt md-icon {
  top: 0 !important;
  text-align: right;
}
.fa-duzelt md-icon i {
  text-align: right;
  font-size: 14pt;
  display: inline-block;
  color: #777;
}

.odemeekrani {
  width: 1100px;
  max-width: 90%;
  max-height: 90%;
}
.odemeekrani md-dialog-content {
  min-height: 600px;
}
.odemeekrani .odemeler {
  overflow-y: auto;
}
.odemeekrani .odemeler > md-list-item > md-icon:nth-child(1) {
  margin-right: 15px !important;
  margin-left: 15px !important;
}
.odemeekrani .odemeler > md-list-item div.md-list-item-inner {
  padding-right: 0;
}
.odemeekrani .odemeler-container {
  margin: 6px;
  border-radius: 3px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}
.odemeekrani .toplamlar {
  border-top: 1px solid #ddd;
}
.odemeekrani .toplamlar .odeme-sol {
  width: 33.33%;
  float: left;
  padding: 5px 10px;
  box-sizing: border-box;
  position: relative;
}
.odemeekrani .toplamlar .odeme-sol span.baslik {
  display: block;
  width: 100%;
  float: left;
  padding: 5px 0;
  box-sizing: border-box;
  font-size: 12px;
  font-weight: 500;
}
.odemeekrani .toplamlar .odeme-sol span.tutar {
  display: block;
  width: 100%;
  float: left;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.odemeekrani .toplamlar .odeme-sol.paraustu {
  background: radial-gradient(rgba(210, 80, 80, 0.6509803922), #d25050);
  border-radius: 10px;
  overflow: hidden;
}
.odemeekrani .toplamlar .odeme-sol.paraustu span.baslik, .odemeekrani .toplamlar .odeme-sol.paraustu span.tutar {
  color: #fff;
}
.odemeekrani .toplamlar .odeme-sol:after {
  content: " ";
  width: 1px;
  height: 20px;
  background-color: #ddd;
  right: 0;
  top: calc(50% - 10px);
  position: absolute;
}
.odemeekrani .toplamlar .odeme-sol:nth-last-child(1):after {
  content: "";
  display: none;
}
.odemeekrani .toplamlar-kutu {
  display: flex;
  flex-direction: column;
  column-gap: 10px;
  padding: 5px;
}
.odemeekrani .toplamlar-kutu > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.odemeekrani .toplamlar-kutu > div div {
  padding: 0px 5px;
}
.odemeekrani .toplamlar-kutu .baslik {
  font-size: 10pt;
  opacity: 0.7;
  font-size: 10pt;
}
.odemeekrani .toplamlar-kutu .para-birimi {
  opacity: 0.7;
  font-size: 10pt;
}
.odemeekrani .toplamlar-kutu .tutar {
  font-weight: 500;
}
.odemeekrani .toplamlar-kutu .paraustu {
  background: radial-gradient(rgba(210, 80, 80, 0.6509803922), #d25050);
  border-radius: 10px;
  overflow: hidden;
  color: white;
}
.odemeekrani .numpadtutar {
  width: 100%;
  box-sizing: border-box;
  border: 2px dashed #444;
  font-weight: 900;
  text-align: right;
  color: #444;
  font-size: 22pt;
}
.odemeekrani button {
  box-sizing: border-box;
  font-weight: 500;
}
.odemeekrani .tutarkisayol button {
  font-size: 16pt;
}
.odemeekrani .numpad button {
  font-size: 22pt;
  text-shadow: 0 2px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08), 0 1px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08), 0 1px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.odemeekrani .odemeyontemleri i.fa {
  font-size: 16pt;
}
.odemeekrani .odemeyontemleri button {
  background-color: #2b9630 !important;
}
.odemeekrani .odemeyontemleri .disabledSalesFinishBtn {
  background-color: #e0e0e0 !important;
}
.odemeekrani .odemeyontemleri button.kapat {
  background-color: #D25050 !important;
}
.odemeekrani .odemeyontemleri div.buton-ikon {
  display: block;
}
@media screen and (max-width: 960px) {
  .odemeekrani .odemeyontemleri div.buton-ikon {
    display: inline-block;
  }
}
.odemeekrani .odemeyontemleri.mobil button {
  width: 100%;
  margin: 0;
  line-height: inherit;
}
.odemeekrani .odemeyontemleri.mobil button i.fa {
  font-size: 11pt;
}
.odemeekrani .odemetipibuton > div {
  min-height: 70px;
}
.odemeekrani .odemetipibuton.secimyap {
  margin: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0e0e0;
  border-radius: 3px;
}
.odemeekrani .odemetipibuton.secimyap span {
  color: #bfbfbf;
  text-shadow: 1px 1px 0px #ffffff;
}
.odemeekrani .odemetipibuton > div {
  display: flex;
}
.odemeekrani .odemetipibuton > div > button {
  line-height: 100%;
  width: 100%;
  border: 2px solid transparent;
  /*   min-height: 80px;*/
}
.odemeekrani .odemetipibuton > div > button.active {
  border: 2px solid #009c12;
}
.odemeekrani .odemetipibuton > div > button > div {
  text-align: center;
  justify-content: center;
  align-items: center;
}
.odemeekrani .kurus-aktif {
  color: #2b9630 !important;
}
.odemeekrani .kurus-aktif-button {
  background: #2b9630 !important;
}
.odemeekrani span.shortcut-keys {
  position: absolute;
  top: 2px;
  right: 2px;
  border: 2px outset #f7f7f7;
  padding: 1px 3px;
  background-color: #e9e9e9;
  color: #817a7a;
  border-radius: 5px;
  line-height: 1;
}

md-dialog {
  border-radius: 0.25rem !important;
  background-color: transparent !important;
}
md-dialog md-toolbar {
  background-color: #555f65 !important;
}

md-dialog-content,
md-dialog-actions,
md-table-container,
md-table-pagination {
  background: #ffffff;
}

md-table-container table tr[ng-click]:hover {
  cursor: pointer;
  background-color: #f1f1f1;
}

md-dialog.md-dialog-fullscreen {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  height: 100%;
}

md-dialog > form {
  margin: 0;
}

md-dialog-actions {
  padding-left: 0;
}
md-dialog-actions button {
  line-height: inherit !important;
}
md-dialog-actions div.buton-ikon {
  width: 100%;
  margin: 5px 0;
}
md-dialog-actions div.buton-ikon i {
  font-size: 16pt;
}

img.logoindex {
  height: 120px;
}
@media screen and (max-width: 1024px) {
  img.logoindex {
    height: 60px;
  }
}

.page-index {
  /*background: url('../images/index/bg.jpg') no-repeat top center #013b61;*/
  overflow: auto;
}
.page-index .liste:nth-child(1) {
  margin-left: 10px;
}
.page-index .liste {
  margin-right: 10px;
}
.page-index .liste h3 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin-top: 0;
  font-size: 1.2rem;
}
.page-index .liste div.kutu {
  display: block;
  width: 360px;
  height: 180px;
  box-sizing: border-box;
  margin: 0 10px 10px 0;
}
@media only screen and (max-width: 1366px) {
  .page-index .liste div.kutu {
    width: 320px;
    height: 160px;
  }
}
.page-index .liste div.kutu a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16pt;
  width: 100%;
  height: 100%;
  padding: 15px;
  box-sizing: border-box;
  background-size: 50px;
  background-position: right 10px bottom 10px;
  background-repeat: no-repeat;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  transition: transform 0.2s ease-in-out;
  line-height: 1.1;
}
.page-index .liste div.kutu a[disabled] {
  opacity: 0.8 !important;
  background: #c4c4c4 !important;
  pointer-events: none !important;
  cursor: no-drop !important;
}
.page-index .liste div.kutu a[disabled] div.menu-kutu-ikon {
  width: 50px;
  height: 50px;
}
.page-index .liste div.kutu a[disabled] div.menu-kutu-ikon:before {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 48px;
  content: "block";
}
.page-index .liste div.kutu a[disabled] div.menu-kutu-ikon svg {
  display: none !important;
}
.page-index .liste div.kutu a:active {
  transform: scale(0.9);
}
.page-index .liste div.kutu a.perakendesatis {
  background-color: #2abc68;
}
.page-index .liste div.kutu a.belgelistesi {
  background-color: #1aacdb;
}
.page-index .liste div.kutu a.documentlist {
  background-color: blueviolet;
}
.page-index .liste div.kutu a.perakendeiade {
  background-color: #e7533c;
}
.page-index .liste div.kutu a.etiketdokumu {
  background-color: #a870be;
}
.page-index .liste div.kutu a.stokfiyatgor {
  background-color: #a870be;
}
.page-index .liste div.kutu a.stokkartlistesi {
  background-color: #a870be;
}
.page-index .liste div.kutu a.kasahareketleri {
  background-color: #1aacdb;
}
.page-index .liste div.kutu a.dashboardkutu {
  background-color: orange;
  cursor: pointer;
}
.page-index .liste div.kutu a.odemedegisimi {
  background-color: #2abc68;
}
.page-index .liste div.kutu a.gunsonu {
  background-color: #a53e3e;
}
.page-index .liste div.kutu a.satisTeklifi {
  background-color: #e97421;
}
@media screen and (max-width: 1200px) {
  .page-index .liste div.kutu {
    width: 250px;
  }
}
@media screen and (max-width: 960px) {
  .page-index .liste div.kutu {
    width: 200px;
    height: 120px;
  }
  .page-index .liste div.kutu a {
    background-size: 40px;
  }
}

.page-index::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.page-index::-webkit-scrollbar {
  width: 4px;
  height: 8px;
  background-color: #F5F5F5;
}

.page-index::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  background-color: rgba(0, 0, 0, 0.5);
}

.ng-view.ng-enter {
  -webkit-animation: scaleUp 0.1s both ease-in;
  -moz-animation: scaleUp 0.1s both ease-in;
  animation: scaleUp 0.1s both ease-in;
}

md-toolbar.md-table-toolbar form > input {
  width: 100%;
  margin: 0;
  border: none;
  /*color: rgba(0, 0, 0, 0.87);*/
  color: #fff;
  outline: none;
  font-family: "Poppins", sans-serif;
  background-color: transparent;
}

.v2 .ustkutu {
  padding: 4px 10px;
}
.v2 .ustkutu div.ustbaslik {
  font-size: 12px;
  font-weight: 300;
}
.v2 .ustkutu div.usticerik {
  font-size: 12px;
  font-weight: 600;
}

/* scale up */
@keyframes scaleUp {
  from {
    opacity: 0.5;
    transform: scale(0.95);
  }
}
@-moz-keyframes scaleUp {
  from {
    opacity: 0.5;
    -moz-transform: scale(0.95);
  }
}
@-webkit-keyframes scaleUp {
  from {
    opacity: 0.5;
    -webkit-transform: scale(0.95);
  }
}
md-progress-linear .md-container {
  background-color: rgb(146, 195, 228);
}

md-progress-linear .md-bar {
  background-color: rgb(1, 91, 153);
}

span.label {
  display: inline;
  padding: 1px 6px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  border-radius: 0.25em;
}

a.label:hover,
a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

span.label:empty {
  display: none;
}

span.label {
  position: relative;
  top: -1px;
}

.label-default {
  background-color: #777;
}

.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #5e5e5e;
}

.label-primary {
  background-color: #337ab7;
}

.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #286090;
}

.label-success {
  background-color: #5cb85c;
}

.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #449d44;
}

.label-info {
  background-color: #5bc0de;
}

.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5;
}

.label-warning {
  background-color: #f0ad4e;
}

.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f;
}

.label-blue {
  background-color: #238abd;
}

.label-blue[href]:hover,
.label-blue[href]:focus {
  background-color: #124a66;
}

.label-purple {
  background-color: #9c27b0;
}

.label-purple[href]:hover,
.label-purple[href]:focus {
  background-color: #581763;
}

.label-grey {
  background-color: #939393;
}

.label-grey[href]:hover,
.label-grey[href]:focus {
  background-color: #4f4f4f;
}

.label-danger {
  background-color: #d9534f;
}

.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c;
}

button.md-icon-button.w50 {
  width: 50px;
  height: 50px;
}

.buton-modal button {
  padding: 20px 0;
}
.buton-modal button .material-icons {
  display: block;
  margin-bottom: 5px;
}

table.md-table tr {
  transition: background 0.2s ease-in-out;
}
table.md-table tr:focus {
  outline: none;
  background-color: #e4e4e4;
}

.belgeDetayTable th.md-column,
.belgeDetayTable td.md-cell {
  text-align: center !important;
}

.belgeDetayTable .table-startH:hover,
.belgeDetayTable .table-endH:hover,
.belgeDetayTable .table-startH:hover + .table-endH {
  background-color: #f5f5f5;
}

.belgeDetayTable .md-selected + .table-endH {
  background-color: #f5f5f5;
}

.belgeDetayTable .hovered {
  background-color: #f5f5f5;
}

.stokkarti .resim {
  height: 250px;
  padding: 10px 0;
  text-align: center;
}
.stokkarti .resim img {
  max-width: 100%;
  max-height: 100%;
}
.stokkarti table tr td {
  border-bottom: 1px solid #ddd;
}
.stokkarti md-input-container {
  margin-bottom: 0;
}
.stokkarti md-input-container label {
  margin-bottom: -5px;
}
.stokkarti md-input-container .md-errors-spacer {
  display: none;
}

.filter-today span,
.filter-week span,
.filter-month span {
  font-size: 12px;
}

md-input-container .md-input, md-select-value {
  font-size: 0.825rem;
  font-weight: 500;
}

.belgedetayi .dblock {
  display: block;
}
.belgedetayi md-tabs:not([md-dynamic-height]) {
  min-height: 190px !important;
  max-height: 20vh !important;
  height: 190px;
}
.belgedetayi md-content {
  padding: 10px;
  background-color: #fff;
}
.belgedetayi md-input-container {
  margin: 0;
  font-size: 80%;
}
.belgedetayi md-input-container .md-input {
  height: 35px;
}
.belgedetayi md-input-container .md-errors-spacer {
  display: none;
}
.belgedetayi md-input-container.md-input-has-value label:not(.md-no-float) {
  margin-bottom: -12px;
}
.belgedetayi table tr td {
  white-space: nowrap;
}
.belgedetayi md-checkbox.md-default-theme.md-checked .md-icon, .belgedetayi md-checkbox.md-checked .md-icon,
.belgedetayi md-checkbox.md-default-theme.md-checked .md-ink-ripple, .belgedetayi md-checkbox.md-checked .md-ink-ripple {
  background-color: #125ec8 !important;
}
.belgedetayi .total {
  box-sizing: border-box;
  padding: 5px 10px;
  text-align: center;
  border-right: 1px solid #f1f1f1;
}
.belgedetayi .total div {
  display: inline-block;
  text-align: center;
}
.belgedetayi .total div span.head {
  padding-left: 3px;
  font-size: 12px;
  display: block;
}
.belgedetayi .total div span.number {
  font-size: 18pt;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #5a5a5a;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.belgedetayi .total:last-child {
  border-right: 0px;
}
.belgedetayi md-checkbox.md-default-theme[disabled]:not(.md-checked) .md-icon, .belgedetayi md-checkbox[disabled]:not(.md-checked) .md-icon {
  border-color: rgba(255, 0, 0, 0.4) !important;
  background-color: rgba(255, 0, 0, 0.3) !important;
}

.anlikciro .dblock {
  display: block;
}
.anlikciro md-tabs md-content {
  padding: 10px;
  background-color: #fff;
}
.anlikciro md-input-container {
  margin: 0;
  font-size: 80%;
}
.anlikciro md-input-container .md-errors-spacer {
  display: none;
}
.anlikciro md-input-container.md-input-has-value label:not(.md-no-float) {
  margin-bottom: -12px;
}
.anlikciro table tr td {
  white-space: nowrap;
}
.anlikciro md-checkbox.md-default-theme.md-checked .md-icon, .anlikciro md-checkbox.md-checked .md-icon,
.anlikciro md-checkbox.md-default-theme.md-checked .md-ink-ripple, .anlikciro md-checkbox.md-checked .md-ink-ripple {
  background-color: #125ec8 !important;
}
.anlikciro .total {
  box-sizing: border-box;
  padding: 5px 10px;
  text-align: center;
  border-right: 1px solid #f1f1f1;
}
.anlikciro .total div {
  display: inline-block;
  text-align: center;
}
.anlikciro .total div span.head {
  padding-left: 3px;
  font-size: 12px;
  display: block;
}
.anlikciro .total div span.number {
  font-size: 18pt;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #5a5a5a;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.anlikciro .total:last-child {
  border-right: 0px;
}

table.border {
  width: 100%;
}
table.border tr td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
table.border tr td:nth-child(1) {
  width: 10px;
}
table.border tr td:nth-child(2) {
  width: 10px;
  padding: 0 10px;
  text-align: center;
}

/*
.frmGunsonu {

    .block {
        display: block;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
    }

    .tablodiv {
        width: 100%;
    }

    tr {
        height: 15px !important;

        td {
            padding: 2px;

            &.w100 {
                width: 100%;
            }
        }

        &.last {
            background-color: #f1f1f1;
            font-weight: 700;
        }
    } 

    md-content {
        background: transparent;

        &::-webkit-scrollbar {
            width: 5px;
        }

        &::-webkit-scrollbar-track {
            -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        }

        &::-webkit-scrollbar-thumb {
            background-color: darkgrey;
            outline: 1px solid slategrey;
        }
    }
}*/
.frmGunsonu .block {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
}
.frmGunsonu .tablodiv {
  width: 100%;
}
.frmGunsonu tr {
  height: 30px !important;
}
.frmGunsonu tr td {
  padding: 2px;
}
.frmGunsonu tr td.w100 {
  width: 100%;
}
.frmGunsonu tr.last {
  background-color: #f1f1f1;
  font-weight: 700;
}
.frmGunsonu .onaybolumu {
  text-align: center;
  margin-top: 25px;
}
.frmGunsonu .onaybolumu .imza {
  text-align: center;
  margin-top: 15px;
}
.frmGunsonu .onaybolumu .imza * {
  margin: 0px !important;
  padding: 0px !important;
}
.frmGunsonu span.baslik {
  margin: 10px;
  color: #fff;
  display: block;
}
.frmGunsonu .tarih {
  padding-left: 20px;
  padding-right: 20px;
  box-shadow: inherit;
  overflow: hidden;
  border: 1px solid #fff;
}
.frmGunsonu .tarih span {
  margin-right: 20px;
}
.frmGunsonu md-content {
  background: transparent;
}
.frmGunsonu md-content::-webkit-scrollbar {
  width: 5px;
}
.frmGunsonu md-content::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.frmGunsonu md-content::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

.text-right {
  text-align: right !important;
}

md-toolbar {
  background: #2b373e !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
  min-height: 40px;
}
md-toolbar div.kullanici {
  font-size: 0.825rem;
  display: flex;
  align-items: center;
}
md-toolbar div.kullanici i.fa {
  margin-right: 5px;
}
md-toolbar div.tarihsaat {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin: 0 12px;
  color: #e3e4e5;
  font-weight: 400;
}
md-toolbar div.tarihsaat .tarih {
  display: flex;
  flex-direction: column;
  text-align: right;
  border-right: 1px solid #cbcbcb;
  padding-right: 10px;
  margin-right: 10px;
}
md-toolbar div.tarihsaat .tarih .ust {
  display: block;
  font-size: 11px;
  line-height: 11px;
}
md-toolbar div.tarihsaat .tarih .alt {
  display: block;
  font-size: 14px;
  line-height: 14px;
}
md-toolbar div.tarihsaat .tarih .version {
  display: block;
  font-size: 11px;
  line-height: 11px;
  margin-top: 0.23vh;
}
md-toolbar div.tarihsaat .saat {
  font-size: 28px;
}
md-toolbar.md-table-toolbar:not(.md-menu-toolbar).md-default {
  color: rgba(255, 255, 255, 0.87);
}
md-toolbar .md-datepicker-input-container, md-toolbar md-select {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
md-toolbar md-datepicker .md-datepicker-input, md-toolbar md-datepicker md-select .md-select-value {
  color: rgba(255, 255, 255, 0.87);
  font-size: 14px;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
md-toolbar md-datepicker.md-datepicker-open .md-datepicker-input, md-toolbar md-datepicker.md-datepicker-open md-select .md-select-value {
  color: rgba(0, 0, 0, 0.87);
  font-size: 14px;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
md-toolbar md-select {
  margin: 0;
  min-width: 150px;
}
md-toolbar md-select .md-select-value {
  height: 32px;
}
md-toolbar md-select:focus .md-select-value {
  color: rgba(255, 255, 255, 0.87) !important;
  font-size: 14px;
  border-bottom-color: rgba(255, 255, 255, 0.12) !important;
}
md-toolbar.index-top-menu-toolbar {
  background: #404b51 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
  min-height: 30px !important;
}
md-toolbar.index-top-menu-toolbar .md-toolbar-tools {
  height: 45px;
  align-items: center;
  margin: 0 auto;
  display: flex;
}
md-toolbar.index-top-menu-toolbar md-menu-bar.index-top-menu {
  margin: 0 auto;
}
md-toolbar.index-top-menu-toolbar md-menu-bar.index-top-menu md-menu > button {
  font-weight: 300;
}
md-toolbar.index-top-menu-toolbar md-menu-bar.index-top-menu md-menu:not(.md-open) > button {
  color: #fff;
}
md-toolbar.index-top-menu-toolbar md-menu-bar.index-top-menu md-menu.md-open > button > md-icon {
  color: #000;
}
md-toolbar.index-bottom-exchange-rate {
  background: #404b51 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
  min-height: 30px !important;
}
md-toolbar.index-bottom-exchange-rate .md-toolbar-tools {
  height: 45px;
  align-items: center;
  margin: 0 auto;
  display: flex;
}
md-toolbar.index-bottom-exchange-rate md-menu-bar.index-top-menu {
  margin: 0 auto;
}
md-toolbar.index-bottom-exchange-rate md-menu-bar.index-top-menu md-menu > button {
  font-weight: 300;
}
md-toolbar.index-bottom-exchange-rate md-menu-bar.index-top-menu md-menu:not(.md-open) > button {
  color: #fff;
}
md-toolbar.index-bottom-exchange-rate md-menu-bar.index-top-menu md-menu.md-open > button > md-icon {
  color: #000;
}

md-toolbar.md-table-toolbar.md-default-theme:not(.md-menu-toolbar).md-default .md-button, md-toolbar.md-table-toolbar:not(.md-menu-toolbar).md-default .md-button {
  color: rgba(255, 255, 255, 0.87);
}
md-toolbar.md-table-toolbar.md-default-theme:not(.md-menu-toolbar).md-default .md-button .md-datepicker-expand-triangle, md-toolbar.md-table-toolbar:not(.md-menu-toolbar).md-default .md-button .md-datepicker-expand-triangle {
  border-top-color: rgba(255, 255, 255, 0.38) !important;
}

md-toolbar.md-table-toolbar .md-toolbar-tools md-icon {
  color: rgba(255, 255, 255, 0.87);
}

.nowrap {
  white-space: nowrap;
}

.ModalUrunOkutma {
  width: 800px;
  max-width: 80%;
}
.ModalUrunOkutma div.product-info {
  width: 10%;
  border: 1px solid #f1f1f1;
  border-radius: 6px;
  margin-right: 15px;
}
.ModalUrunOkutma div.product-info table {
  width: 100%;
}
.ModalUrunOkutma div.product-img {
  padding: 8px;
  border: 1px solid #f1f1f1;
  border-radius: 6px;
}
.ModalUrunOkutma div.product-img img {
  height: 100px;
  width: 100px;
  object-fit: contain;
}

.bg-danger {
  background-color: #d9534f !important;
}

.bg-primary {
  background-color: #337ab7 !important;
}

.bg-warning {
  background-color: #f0ad4e !important;
}

.bg-success {
  background-color: #5cb85c !important;
}

.modal-hizli-urun .hizli-urun-box {
  padding: 10px;
}
.modal-hizli-urun .hizli-urun-box .hizli-urun-card {
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.modal-hizli-urun .hizli-urun-box .hizli-urun-card:active {
  background: #f1f1f1;
}
.modal-hizli-urun .hizli-urun-box .hizli-urun-card md-card-title {
  padding: 10px;
}
.modal-hizli-urun .hizli-urun-box .hizli-urun-card md-card-title md-card-title-media {
  margin: 0;
}
.modal-hizli-urun .hizli-urun-box .hizli-urun-card md-card-title md-card-title-media div.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.modal-hizli-urun .hizli-urun-box .hizli-urun-card md-card-title md-card-title-text span {
  font-size: 0.825rem;
}

div.FrmReport {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 100%;
}
div.FrmReport [layout] {
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
div.FrmReport [layout=column] {
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  flex-direction: column;
}
div.FrmReport [layout=row] {
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  flex-direction: row;
}
div.FrmReport [layout-wrap] {
  flex-wrap: wrap;
}
div.FrmReport [layout-align=center] {
  align-items: center;
  justify-content: center;
}
div.FrmReport [layout-align="center inherit"] {
  align-items: center;
}
div.FrmReport [layout-align="inherit center"] {
  justify-content: center;
}
div.FrmReport [flex] {
  -webkit-flex: 1 1 0%;
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
  box-sizing: border-box;
}
div.FrmReport [flex=nogrow] {
  flex: 0 1 auto;
  box-sizing: border-box;
}
div.FrmReport [flex=space] {
  min-height: 1px;
}
div.FrmReport [layout=row] > [flex="1"] {
  -webkit-flex: 1 1 100%;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 100%;
}
div.FrmReport [layout=row] > [flex="2"] {
  -webkit-flex: 1 1 50%;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  max-width: 50%;
  max-height: 100%;
}
div.FrmReport [layout=row] > [flex="3"] {
  -webkit-flex: 1 1 33.3333333333%;
  -ms-flex: 1 1 33.3333333333%;
  flex: 1 1 33.3333333333%;
  max-width: 33.3333333333%;
  max-height: 100%;
}
div.FrmReport [layout=row] > [flex="4"] {
  -webkit-flex: 1 1 25%;
  -ms-flex: 1 1 25%;
  flex: 1 1 25%;
  max-width: 25%;
  max-height: 100%;
}
div.FrmReport [layout=row] > [flex="5"] {
  -webkit-flex: 1 1 20%;
  -ms-flex: 1 1 20%;
  flex: 1 1 20%;
  max-width: 20%;
  max-height: 100%;
}
div.FrmReport [layout=row] > [flex="6"] {
  -webkit-flex: 1 1 16.6666666667%;
  -ms-flex: 1 1 16.6666666667%;
  flex: 1 1 16.6666666667%;
  max-width: 16.6666666667%;
  max-height: 100%;
}
div.FrmReport [layout=row] > [flex="7"] {
  -webkit-flex: 1 1 14.2857142857%;
  -ms-flex: 1 1 14.2857142857%;
  flex: 1 1 14.2857142857%;
  max-width: 14.2857142857%;
  max-height: 100%;
}
div.FrmReport [layout=row] > [flex="8"] {
  -webkit-flex: 1 1 12.5%;
  -ms-flex: 1 1 12.5%;
  flex: 1 1 12.5%;
  max-width: 12.5%;
  max-height: 100%;
}
div.FrmReport [layout=row] > [flex="9"] {
  -webkit-flex: 1 1 11.1111111111%;
  -ms-flex: 1 1 11.1111111111%;
  flex: 1 1 11.1111111111%;
  max-width: 11.1111111111%;
  max-height: 100%;
}
div.FrmReport [layout=row] > [flex="10"] {
  -webkit-flex: 1 1 10%;
  -ms-flex: 1 1 10%;
  flex: 1 1 10%;
  max-width: 10%;
  max-height: 100%;
}
div.FrmReport [layout=row] > [flex="11"] {
  -webkit-flex: 1 1 9.0909090909%;
  -ms-flex: 1 1 9.0909090909%;
  flex: 1 1 9.0909090909%;
  max-width: 9.0909090909%;
  max-height: 100%;
}
div.FrmReport [layout=row] > [flex="12"] {
  -webkit-flex: 1 1 8.3333333333%;
  -ms-flex: 1 1 8.3333333333%;
  flex: 1 1 8.3333333333%;
  max-width: 8.3333333333%;
  max-height: 100%;
}
div.FrmReport [layout=column] > [flex="1"] {
  max-width: 100%;
  max-height: 100%;
}
div.FrmReport [layout=column] > [flex="2"] {
  max-width: 100%;
  max-height: 50%;
}
div.FrmReport [layout=column] > [flex="3"] {
  max-width: 100%;
  max-height: 33.3333333333%;
}
div.FrmReport [layout=column] > [flex="4"] {
  max-width: 100%;
  max-height: 25%;
}
div.FrmReport [layout=column] > [flex="5"] {
  max-width: 100%;
  max-height: 20%;
}
div.FrmReport [layout=column] > [flex="6"] {
  max-width: 100%;
  max-height: 16.6666666667%;
}
div.FrmReport [layout=column] > [flex="7"] {
  max-width: 100%;
  max-height: 14.2857142857%;
}
div.FrmReport [layout=column] > [flex="8"] {
  max-width: 100%;
  max-height: 12.5%;
}
div.FrmReport [layout=column] > [flex="9"] {
  max-width: 100%;
  max-height: 11.1111111111%;
}
div.FrmReport [layout=column] > [flex="10"] {
  max-width: 100%;
  max-height: 10%;
}
div.FrmReport [layout=column] > [flex="11"] {
  max-width: 100%;
  max-height: 9.0909090909%;
}
div.FrmReport [layout=column] > [flex="12"] {
  max-width: 100%;
  max-height: 8.3333333333%;
}
div.FrmReport .flex-grow-0 {
  flex-grow: 0;
}
div.FrmReport .flex-grow-1 {
  flex-grow: 1;
}
div.FrmReport .overflow-auto {
  overflow: auto;
}
div.FrmReport .overflow-hidden {
  overflow: hidden;
}
div.FrmReport .flex {
  display: flex;
}
div.FrmReport .flex-direction-column {
  flex-direction: column;
}
div.FrmReport .flex-direction-row {
  flex-direction: row;
}
div.FrmReport div.filter-block {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1;
}
div.FrmReport div.filter-block .sablon-row ul li:hover {
  color: #dc3545;
}
div.FrmReport div.filter-block .sablon-row ul li.active:before {
  font-family: "Material Icons";
  content: "\e5e1";
  vertical-align: middle;
  font-size: 16px;
}
div.FrmReport div.filter-block .filter-row {
  display: flex;
  align-items: center;
  padding: 4px;
  line-height: 12px;
  font-size: 12px;
  font-weight: 400;
}
div.FrmReport div.filter-block .filter-row:hover .material-icons {
  color: #dc3545;
}
div.FrmReport div.filter-block .filter-row .filter-title-box {
  width: 30%;
}
div.FrmReport div.filter-block .filter-row .filter-title {
  width: 100%;
  word-break: break-word;
}
div.FrmReport div.filter-block .filter-inputs-box {
  width: 70%;
}
div.FrmReport div.filter-block .filter-input-equal-select {
  max-width: 40%;
}
div.FrmReport div.filter-block .filter-row:nth-child(even) {
  background: #f8f8f8;
  border-top: 1px solid #e8e8ea;
  border-bottom: 1px solid #e8e8ea;
}
div.FrmReport div.filter-block .filter-inputs-box input,
div.FrmReport div.filter-block .filter-inputs-box select {
  background: transparent !important;
}
div.FrmReport div.filter-block > div.top {
  flex: 1;
  display: flex;
  flex-direction: row;
  height: 10px;
}
div.FrmReport div.filter-block > div.top div.filter-block-card {
  flex: 1 0 auto;
  background: #fff;
  border-right: 1px solid rgba(34, 34, 48, 0.1);
  display: flex;
  flex-direction: column;
}
div.FrmReport div.filter-block > div.top div.filter-block-card:last-child {
  border: 0px solid !important;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.title {
  padding: 5px 10px;
  border-bottom: 1px solid rgba(34, 34, 48, 0.1);
  font-weight: 400;
  font-size: 13pt;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  background-color: #8a959b;
  color: #fff;
  overflow: hidden;
  line-height: 16px;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.title md-icon {
  color: white;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail {
  flex: 1;
  height: 10px;
  box-sizing: border-box;
  overflow-y: scroll;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail::-webkit-scrollbar {
  width: 5px;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail::-webkit-scrollbar-track {
  background: #f1f1f1;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail::-webkit-scrollbar-thumb {
  background: #888;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail::-webkit-scrollbar-thumb:hover {
  background: #555;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail::-webkit-scrollbar {
  width: 10px;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail::-webkit-scrollbar-track {
  background: #f1f1f1;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail::-webkit-scrollbar-thumb {
  background: #888;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail::-webkit-scrollbar-thumb:hover {
  background: #555;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail div.form-group {
  /*
  margin: 0;
  border-bottom: 1px solid rgba(34,34,48,.1);
  padding: 7px 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
      */
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail div.form-group > label {
  font-size: 11px;
  font-weight: 400;
  margin-bottom: 2px;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail div.form-group div.input-group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail div.form-group div.input-group > *:first-child {
  border-top-left-radius: 4px !important;
  border-bottom-left-radius: 4px !important;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail div.form-group div.input-group > *:first-child.input-group-prepend > * {
  border-top-left-radius: 4px !important;
  border-bottom-left-radius: 4px !important;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail div.form-group div.input-group > *:last-child {
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail div.form-group div.input-group > *:last-child.input-group-append > * {
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail div.form-group div.input-group button {
  border: 1px solid #ddd;
  background-color: #f1f1f1;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail div.form-group div.input-group > *:not(.input-group-prepend):not(.input-group-append) {
  height: auto;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail div.form-group div.input-group > .input-group-prepend,
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail div.form-group div.input-group > .input-group-append {
  margin-left: -1px;
  display: flex;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail div.form-group div.input-group .input-group-prepend {
  margin-right: -1px;
  margin-left: 0;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail div.form-group div.input-group label span {
  min-width: 120px;
  border: none;
  border-radius: 0;
  font-size: 11px;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail div.form-group div.input-group input, div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail div.form-group div.input-group select {
  outline: none;
  box-shadow: none;
  height: 100%;
  border: 1px solid #ddd;
  border-radius: 0;
  box-sizing: border-box;
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
  font-size: 12px;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail ul.kolonlar {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  height: 100%;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail ul.kolonlar li {
  margin: 4px;
  border-radius: 4px;
  background: #f1f1f1;
  padding: 5px !important;
  padding-left: 0px !important;
  cursor: grab;
  font-size: 12px;
  font-weight: 400;
  word-break: break-word;
  border: 1px solid #dddddd;
  position: relative;
  display: flex;
  align-items: center;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail ul.kolonlar li md-icon {
  flex-grow: 0;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail ul.kolonlar li .text {
  flex-grow: 2;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail ul.kolonlar li:hover {
  color: #dc3545;
  border-color: #dc3545;
  background-color: rgb(253.8924050633, 248.6075949367, 249.1139240506);
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail ul.kolonlar li .material-icons {
  color: #cccccc;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail ul.kolonlar li:hover .material-icons {
  color: #dc3545;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail ul.kolonlar li i.fal {
  margin-right: 5px;
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail ul.kolonlar li.dndPlaceholder {
  color: #fff;
  border: 1px dashed #dc3545;
  background-color: rgb(253.8924050633, 248.6075949367, 249.1139240506);
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail ul.kolonlar li.dndPlaceholder:before {
  content: ".";
}
div.FrmReport div.filter-block > div.top div.filter-block-card > div.detail ul.kolonlar li.dndDraggingSource {
  opacity: 0.3;
}
div.FrmReport div.filter-block > div.top div.filter-block-card.template > div.detail {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
div.FrmReport div.filter-block > div.top div.filter-block-card.template > div.detail > ul {
  margin: 0;
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  height: 10px;
  overflow-y: scroll;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
div.FrmReport div.filter-block > div.top div.filter-block-card.template > div.detail > ul::-webkit-scrollbar {
  width: 5px;
}
div.FrmReport div.filter-block > div.top div.filter-block-card.template > div.detail > ul::-webkit-scrollbar-track {
  background: #f1f1f1;
}
div.FrmReport div.filter-block > div.top div.filter-block-card.template > div.detail > ul::-webkit-scrollbar-thumb {
  background: #888;
}
div.FrmReport div.filter-block > div.top div.filter-block-card.template > div.detail > ul::-webkit-scrollbar-thumb:hover {
  background: #555;
}
div.FrmReport div.filter-block > div.top div.filter-block-card.template > div.detail > ul > li {
  padding: 3px 10px;
  font-size: 0.825rem;
  font-weight: 400;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}
div.FrmReport div.filter-block > div.top div.filter-block-card.template > div.detail > div.sablon-action {
  border-right: 4px solid #d4d4d4;
  padding: 5px;
}
div.FrmReport div.filter-block > div.top div.filter-block-card.template > div.detail > div.sablon-action div.input-group {
  width: 100%;
  display: flex;
}
div.FrmReport div.filter-block > div.top div.filter-block-card.template > div.detail > div.sablon-action div.input-group input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-left: 8px;
  width: 10px;
}
div.FrmReport div.filter-block > div.top div.filter-block-card.template > div.detail > div.sablon-action div.input-group md-button, div.FrmReport div.filter-block > div.top div.filter-block-card.template > div.detail > div.sablon-action div.input-group button {
  margin-top: 0;
  margin-bottom: 0;
}
div.FrmReport div.filter-block > div.top div.filter-block-card.template > div.detail > div.sablon-action div.btns {
  display: flex;
  flex-direction: row;
  margin-top: 5px;
}
div.FrmReport div.filter-block > div.top div.filter-block-card.template > div.detail > div.sablon-action div.btns button {
  flex: 1 0 auto;
}
div.FrmReport div.filter-block > div.bottom {
  border-top: 1px solid rgba(34, 34, 48, 0.1);
  display: flex;
  flex-direction: row;
  padding: 0 5px;
  background: #fff;
}
div.FrmReport div.filter-block > div.bottom button {
  margin: 10px 5px;
}
div.FrmReport div.filter-block > div.bottom button:first-child {
  flex: 1;
}
div.FrmReport div.filter-block > div.toggle {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  display: block;
  padding: 5px 20px;
  background: #fff;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  cursor: pointer;
}
div.FrmReport div.filter-block.close-filter {
  transform: translateY(-100%);
}
div.FrmReport > div.report {
  padding: 8px;
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 10px;
}
div.FrmReport > div.report table {
  margin: 0;
  width: 100%;
}
div.FrmReport > div.report table thead tr th {
  box-shadow: 0 2px 1px 0px rgba(0, 0, 0, 0.2);
}
div.FrmReport > div.report table thead tr th:first-child {
  width: 10px;
}
div.FrmReport > div.report table tbody tr td:first-child {
  width: 10px;
  text-align: center;
}
div.FrmReport > div.report > div.report-title {
  flex: 0 1 auto;
}
div.FrmReport > div.report div.card {
  flex: 1;
  height: 10px;
  background: #fff;
  overflow-y: auto;
  border-radius: 4px;
  margin-top: 30px;
}
div.FrmReport > div.report div.card div.card-body {
  padding: 0 !important;
}
div.FrmReport > div.report div.card div.card-body div[dynamic] {
  display: flex;
  flex-direction: column;
  height: 100%;
}
div.FrmReport > div.report div.card div.card-body div[dynamic] div.report-table {
  flex: 1;
  height: 10px;
  overflow: auto;
}
div.FrmReport > div.report div.card div.card-body div[dynamic] div.report-table table thead tr th {
  font-size: 12px;
  font-weight: 600;
}
div.FrmReport > div.report div.card div.card-body div[dynamic] div.report-table table tbody tr {
  background: #fff;
}
div.FrmReport > div.report div.card div.card-body div[dynamic] div.report-table table tbody tr td {
  font-size: 12px;
}
div.FrmReport > div.report div.card pre {
  padding: 20px;
}

table.md-table tbody.md-body > tr.md-row, table.md-table tfoot.md-foot > tr.md-row {
  height: 30px !important;
}

.barcode-keyboard {
  background: transparent;
}
.barcode-keyboard div.barcode-keyboard-container {
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  overflow: hidden;
  row-gap: 5px;
}
.barcode-keyboard div.barcode-keyboard-container div.barcode-row {
  display: flex;
  flex-direction: row;
  column-gap: 5px;
}
.barcode-keyboard div.barcode-keyboard-container div.barcode-row div.barcode-keyboard-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 0 20%;
  text-align: center;
  height: 75px;
  font-size: 16pt;
  font-weight: 700;
  background: #fff;
  border-radius: 2px;
}

.md-input-message-animation.md-input-message-animation-open {
  opacity: 1 !important;
  margin-top: 0 !important;
}

.modal-yeni-musteri md-input-container div.md-errors-spacer {
  display: none;
}
.modal-yeni-musteri md-content {
  padding-bottom: 0;
}
.modal-yeni-musteri ul.kvkk {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: auto auto;
  grid-column-gap: 30px;
}
.modal-yeni-musteri ul.kvkk md-switch {
  margin: 0;
}

.modal-birim-indirim {
  width: 600px;
  max-width: 80%;
}
.modal-birim-indirim md-list {
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
}
.modal-birim-indirim md-list md-list-item {
  flex: 1 0 auto;
  margin: 0;
}
.modal-birim-indirim md-list md-list-item button {
  width: 100%;
  height: 100%;
  border: 2px solid #f1f1f1;
  box-sizing: border-box;
  margin: 0;
}
.modal-birim-indirim md-list md-list-item.active button {
  border: 2px solid #ff4081;
}
.modal-birim-indirim div.custom-amount {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.modal-birim-indirim div.custom-amount md-input-container {
  margin-bottom: 0;
  flex: 1;
  width: 10px;
}

fieldset {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
  margin-bottom: 15px !important;
  border-width: 2px !important;
  border-style: groove;
  border-color: rgb(192, 192, 192);
  border-image: initial;
  padding: 0.5em;
}

legend {
  padding: 0px 5px;
  border-bottom: none;
  float: inherit;
  width: auto;
  margin: 10px;
  font-size: 1rem;
}

.modal-senet-tahsilati {
  width: 1400px;
  max-width: 90%;
  height: 80%;
}
.modal-senet-tahsilati md-dialog-content {
  flex: 1;
}
.modal-senet-tahsilati md-dialog-content > div {
  height: 100%;
}
.modal-senet-tahsilati div.md-errors-spacer {
  display: none;
}
.modal-senet-tahsilati .md-input-container {
  margin: 5px 0px;
}
.modal-senet-tahsilati fieldset.fieldset-bill {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  margin: 0px !important;
  flex: 1 0 auto;
  height: 20px;
}
.modal-senet-tahsilati fieldset.fieldset-bill legend {
  margin: 0px;
  margin-left: 12px;
}
.modal-senet-tahsilati .senet-tahsilati-sol {
  display: flex;
  flex-direction: column;
}
.modal-senet-tahsilati .senet-tahsilati-sol md-input-container {
  margin: 0px;
}
.modal-senet-tahsilati .senet-tahsilati-sol ul.month-list {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: auto;
  position: relative;
  flex: 1;
}
.modal-senet-tahsilati .senet-tahsilati-sol ul.month-list > li {
  display: block;
  width: 100%;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
}
.modal-senet-tahsilati .senet-tahsilati-sol ul.month-list > li > div.bill-row {
  display: flex;
  flex-direction: row;
  padding: 2px 5px;
  cursor: pointer !important;
}
.modal-senet-tahsilati .senet-tahsilati-sol ul.month-list > li > div.bill-row:hover {
  background: #f1f1f1;
}
.modal-senet-tahsilati .senet-tahsilati-sol ul.month-list > li > div.bill-row > div {
  flex: 1 1 0;
  padding: 0 5px;
  border-radius: 5px;
}
.modal-senet-tahsilati .senet-tahsilati-sol ul.month-list > li > div.bill-row > div > label {
  font-size: 12px;
  color: #ccc;
  display: block;
}
.modal-senet-tahsilati .senet-tahsilati-sol ul.month-list > li > div.bill-row > div span {
  font-size: 0.825rem;
}
.modal-senet-tahsilati .senet-tahsilati-sol ul.month-list > li > div.bill-row > div.danger {
  background: #d9534f !important;
}
.modal-senet-tahsilati .senet-tahsilati-sol ul.month-list > li > div.bill-row > div.danger > label {
  color: #ffffff;
}
.modal-senet-tahsilati .senet-tahsilati-sol ul.month-list > li > div.bill-row > div.danger span {
  color: #ffffff;
}
.modal-senet-tahsilati .senet-tahsilati-sol ul.month-list > li > div.bill-detail {
  display: none;
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
}
.modal-senet-tahsilati .senet-tahsilati-sol ul.month-list > li > div.bill-detail.show {
  display: table;
}
.modal-senet-tahsilati .senet-tahsilati-sol ul.month-list > li > div.bill-detail > table {
  width: 100%;
  border: 1px solid #444;
  border-collapse: collapse;
}
.modal-senet-tahsilati .senet-tahsilati-sol ul.month-list > li > div.bill-detail > table tr {
  background: #fff;
  border: 1px solid #ddd;
}
.modal-senet-tahsilati .senet-tahsilati-sol ul.month-list > li > div.bill-detail > table tr.product-detail {
  display: none;
}
.modal-senet-tahsilati .senet-tahsilati-sol ul.month-list > li > div.bill-detail > table tr.product-detail.show {
  display: table-row;
}
.modal-senet-tahsilati .senet-tahsilati-sol ul.month-list > li > div.bill-detail > table tr.product-detail table {
  width: 100%;
}
.modal-senet-tahsilati .senet-tahsilati-sol ul.month-list > li > div.bill-detail > table tr td {
  font-size: 0.825rem;
}
.modal-senet-tahsilati .senet-tahsilati-sol ul.month-list.bill-total {
  height: unset;
  background: #f1f1f1;
  border-top: 1px solid #ddd;
  flex: 0 1 auto;
}
.modal-senet-tahsilati .senet-tahsilati-sag {
  margin-left: 15px;
  width: 500px;
  display: flex;
  flex-direction: column;
  /*        .fieldset-payment {
      table {
          width: 100%;

          tr {
              background: #fff;
              border: 1px solid #ddd;
          }
      }
  }*/
}
.modal-senet-tahsilati .senet-tahsilati-sag .fieldset-selected-bill {
  height: 10px;
  flex: 1 0 auto;
  position: relative;
  display: flex !important;
  flex-direction: column;
}
.modal-senet-tahsilati .senet-tahsilati-sag .fieldset-selected-bill > div {
  overflow-y: auto;
  position: relative;
  flex: 1;
  height: 10px;
}
.modal-senet-tahsilati .senet-tahsilati-sag .fieldset-selected-bill legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-senet-tahsilati .senet-tahsilati-sag .fieldset-selected-bill md-switch {
  display: inline-flex;
  margin: 0 0 0 15px;
}
.modal-senet-tahsilati .senet-tahsilati-sag .fieldset-selected-bill table {
  width: 100%;
}
.modal-senet-tahsilati .senet-tahsilati-sag .fieldset-selected-bill table tr {
  background: #fff;
  border: 1px solid #ddd;
}
.modal-senet-tahsilati .senet-tahsilati-sag .fieldset-selected-bill div.selected-bill-total {
  flex: 0 1 auto !important;
  height: 40px;
  background: #f1f1f1;
  border-top: 1px solid #ddd;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
.modal-senet-tahsilati .senet-tahsilati-sag .fieldset-selected-bill div.selected-bill-total > div {
  padding: 0 5px;
  border-radius: 5px;
  min-width: 100px;
}
.modal-senet-tahsilati .senet-tahsilati-sag .fieldset-selected-bill div.selected-bill-total > div > label {
  font-size: 12px;
  color: #ccc;
  display: block;
}
.modal-senet-tahsilati .senet-tahsilati-sag .fieldset-selected-bill div.selected-bill-total > div span {
  font-size: 0.825rem;
}
.modal-senet-tahsilati .senet-tahsilati-sag .fieldset-selected-bill div.selected-bill-total > div.danger {
  background: #d9534f !important;
}
.modal-senet-tahsilati .senet-tahsilati-sag .fieldset-selected-bill div.selected-bill-total > div.danger > label {
  color: #ffffff;
}
.modal-senet-tahsilati .senet-tahsilati-sag .fieldset-selected-bill div.selected-bill-total > div.danger span {
  color: #ffffff;
}
.modal-senet-tahsilati .senet-tahsilati-sag .fieldset-payment {
  margin: 0px !important;
}

.modal-sepet-urun-detay {
  width: 950px;
  max-width: 100%;
  max-height: 95%;
}
.modal-sepet-urun-detay md-dialog-content {
  padding: 20px;
}
.modal-sepet-urun-detay table tr {
  background: #fff !important;
}
.modal-sepet-urun-detay table tr td {
  font-size: 11pt;
  padding: 7px 3px;
}
.modal-sepet-urun-detay table tr td:first-child {
  font-weight: 700;
}
.modal-sepet-urun-detay h5 {
  display: block;
  text-align: center;
  font-size: 12pt;
  margin-bottom: 0;
}
.modal-sepet-urun-detay div.promotion-list {
  display: flex;
  flex-direction: column;
}
.modal-sepet-urun-detay div.promotion-list div.cmp {
  display: flex;
  flex-direction: row;
  background: #00ff21;
  padding: 6px 18px;
  margin-bottom: 3px;
  border-radius: 16px;
}
.modal-sepet-urun-detay div.promotion-list div.cmp > div:first-child {
  flex: 1 0 auto;
  width: 10px;
}
.modal-sepet-urun-detay div.bottom-action md-list {
  justify-content: center;
  column-gap: 2px;
}
.modal-sepet-urun-detay div.bottom-action md-list md-list-item {
  align-items: flex-start;
}
.modal-sepet-urun-detay div.bottom-action button {
  max-width: 90px;
  white-space: normal;
  line-height: 13pt;
  margin: 0;
  border: 1px solid #f1f1f1;
  height: 100%;
}
.modal-sepet-urun-detay div.bottom-action button md-icon {
  margin-bottom: 25px;
}

.modal-urun-fiyat-tipi {
  width: 700px;
  max-width: 100%;
  max-height: 95%;
}
.modal-urun-fiyat-tipi md-dialog-content {
  padding: 20px;
}
.modal-urun-fiyat-tipi md-dialog-content table {
  width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
}
.modal-urun-fiyat-tipi md-dialog-content table tr td {
  padding: 3px 6px;
}
.modal-urun-fiyat-tipi md-dialog-content table tr td table tr th {
  white-space: normal;
}
.modal-urun-fiyat-tipi md-dialog-content table tr td table tr:hover {
  background: #f1f1f1;
}
.modal-urun-fiyat-tipi md-dialog-content table.installment-table {
  width: 100%;
  margin: 10px 0;
}
.modal-urun-fiyat-tipi md-dialog-content table.installment-table tbody tr {
  background: #fff;
}

.modal-odeme-taksitlendirme {
  width: 850px;
  max-width: 100%;
  max-height: 95%;
  font-family: "Open Sans", Arial, sans-serif;
}
.modal-odeme-taksitlendirme md-dialog-content {
  padding: 0;
}
.modal-odeme-taksitlendirme md-dialog-content input {
  max-width: 100%;
  min-width: 30px;
  border: 1px solid #ddd;
  font-family: "Open Sans", Arial, sans-serif;
}
.modal-odeme-taksitlendirme md-dialog-content table {
  width: 100%;
  border-collapse: collapse;
}
.modal-odeme-taksitlendirme md-dialog-content div.installment-info {
  padding: 20px;
}
.modal-odeme-taksitlendirme md-dialog-content div.installment-info input {
  width: 100px;
}
.modal-odeme-taksitlendirme md-dialog-content div.installment-info table {
  border: 1px solid #ddd;
}
.modal-odeme-taksitlendirme md-dialog-content div.installment-info table tr td {
  padding: 5px 10px;
  font-size: 11pt;
  border-bottom: 1px solid #ddd;
}
.modal-odeme-taksitlendirme md-dialog-content div.installment-info table tr td:first-child {
  background: #f1f1f1;
  width: 10px;
  white-space: nowrap;
  text-align: right;
}
.modal-odeme-taksitlendirme md-dialog-content div.installment-info table tr td:last-child {
  text-align: right;
}
.modal-odeme-taksitlendirme md-dialog-content div.installment-info table tr.error > td:last-child {
  background: #ffb3b3;
}
.modal-odeme-taksitlendirme md-dialog-content div.installment-table {
  padding: 20px;
}
.modal-odeme-taksitlendirme md-dialog-content div.installment-table div.head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.modal-odeme-taksitlendirme md-dialog-content div.installment-table div.head > h4 {
  white-space: nowrap;
}
.modal-odeme-taksitlendirme md-dialog-content div.installment-table div.head md-radio-group {
  margin-left: 30px;
}
.modal-odeme-taksitlendirme md-dialog-content div.installment-table input {
  width: 100%;
  border: none;
  text-align: right;
}
.modal-odeme-taksitlendirme md-dialog-content div.installment-table table {
  border: 1px solid #ddd;
}
.modal-odeme-taksitlendirme md-dialog-content div.installment-table table tr td {
  padding: 5px 10px;
  white-space: nowrap;
  border-bottom: 1px solid #ddd;
  width: 50%;
}
.modal-odeme-taksitlendirme md-dialog-content div.installment-table table tr td:first-child {
  background: #f1f1f1;
  width: 10px;
  white-space: nowrap;
  text-align: right;
}
.modal-odeme-taksitlendirme md-dialog-content div.installment-table table tr td:nth-child(2) {
  border-right: 1px solid #ddd;
}
.modal-odeme-taksitlendirme md-dialog-content div.installment-table table tr.error > td:last-child {
  background: #ffb3b3;
}
.modal-odeme-taksitlendirme md-dialog-content div.installment-table md-datepicker {
  padding-right: 0;
}
.modal-odeme-taksitlendirme md-dialog-content div.installment-table md-datepicker .md-datepicker-triangle-button.md-button.md-icon-button {
  position: relative;
  top: unset;
  right: unset;
  left: unset;
  margin: 0;
  transform: unset;
}

table.md-table thead.md-head > tr.md-row {
  height: 30px;
}

md-dialog[md-theme^=md-istepos-alert] {
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  min-height: 300px;
  background: url("../images/exclamation-mark.svg") no-repeat left 10px center #fff;
  background-size: 50%;
}
md-dialog[md-theme^=md-istepos-alert][md-theme~=md-istepos-question] {
  background: url("../images/question-mark.svg") no-repeat left 10px center #fff;
  background-size: 50%;
}
md-dialog[md-theme^=md-istepos-alert] md-dialog-content {
  flex: 1;
  height: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.disabledButton {
  color: white !important;
}

.no-animate {
  -webkit-transition: none !important;
  transition: none !important;
  animation: none !important;
}

.animate-arrow {
  display: none;
  opacity: 0;
  cursor: pointer;
  position: absolute;
  right: 10px;
}

.animate-arrow:before {
  font-family: "Material Icons";
  content: "\e5e1";
  font-size: 16px;
  vertical-align: middle;
}

.kolonlar li:hover .animate-arrow {
  display: inline-block;
  animation: opacity-delay 1s forwards, left-right 0.5s infinite alternate;
}

@keyframes left-right {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes opacity-delay {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animate-sort {
  display: none;
  opacity: 0;
  cursor: pointer;
  position: absolute;
  padding-top: 5px;
  right: 0px;
}

.kolonlar li:hover .animate-sort {
  display: inline-block;
  animation: opacity-delay 1s forwards;
}

.kolonlar li:hover .svg-sirala {
  fill: #dc3545;
}

.kolonlar li:hover .svg-sirala .p1 {
  animation: animate-sort-bir 2s infinite;
}

.kolonlar li:hover .svg-sirala .p2 {
  animation: animate-sort-iki 2s infinite;
}

@keyframes animate-sort-bir {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(4px);
  }
}
@keyframes animate-sort-iki {
  0% {
    transform: translateX(0, 0);
  }
  25% {
    transform: translate(-15px, -4px);
  }
  50% {
    transform: translate(0px, -4px);
  }
  100% {
    transform: translate(0px, -4px);
  }
}
.svg-sirala {
  width: 40px;
}

md-icon.success {
  color: #2ba530;
}

body .electron-close,
body .electron-minimize {
  display: none;
}

body.electron-frame > div.header > md-toolbar div.md-toolbar-tools h2 {
  -webkit-app-region: drag;
}
body.electron-frame > div.header > md-toolbar .electron-close,
body.electron-frame > div.header > md-toolbar .electron-minimize {
  display: initial;
}
body.electron-frame > div.header > md-toolbar .electron-close:hover md-icon {
  color: tomato;
}

.urun-detaylar-kutu {
  display: flex;
  width: 100%;
  gap: 10px;
}
.urun-detaylar-kutu .urun-gorsel-kutu {
  max-width: 30%;
}
.urun-detaylar-kutu .urun-gorsel-kutu img {
  width: 100%;
  object-fit: contain;
  height: 100%;
  border-right: 10px solid transparent;
  box-sizing: border-box;
}
.urun-detaylar-kutu .urun-detay-kutu {
  flex-grow: 5;
}

@media only screen and (max-height: 700px) {
  .urundetay {
    font-size: 10pt;
  }
  .barcode-keyboard div.barcode-keyboard-container div.barcode-row div.barcode-keyboard-btn {
    height: 60px;
  }
  #secili-urun-kutu {
    padding: 5px;
  }
  .sepet .md-avatar {
    margin: 5px !important;
  }
  .sepet .baslik {
    font-size: 10pt !important;
  }
  .page-index .liste div.kutu {
    height: 130px;
  }
  .page-index .liste div.kutu a {
    font-size: 14pt;
  }
}
/*@media only screen and (max-height: 1000px) {
    md-dialog md-toolbar {
        min-height: 50px;
        height: 50px;
    }
}*/
@media only screen and (max-width: 1200px) {
  .odemeekrani md-dialog-content {
    min-height: initial;
  }
  #secili-urun-kutu {
    padding: 5px;
  }
  md-dialog {
    max-height: 100% !important;
  }
  .sepet .md-avatar {
    margin: 5px !important;
  }
  .sepet .baslik {
    font-size: 10pt !important;
  }
  .odemeler-container .material-icons {
    margin: 0px !important;
    margin-right: 10px !important;
    align-self: center !important;
  }
  .odemeler-container md-list-item .md-list-item-inner {
    padding-left: 10px !important;
  }
}
@media only screen and (max-width: 960px) {
  .kutu-yarim {
    width: 70px !important;
  }
  .kutu.kutu-yarim .menu-kutu-ikon {
    width: 35px;
    right: 5px;
    bottom: 5px;
  }
  .kutu a {
    font-size: 14pt !important;
  }
}
/* Tus Animasyonlar */
.kutu {
  position: relative;
}

.kutu .svg-path {
  fill: #ffffff;
}

.menu-kutu-ikon {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.kutu .menu-kutu-ikon .svg-stroke {
  fill: none;
  stroke: #ffffff;
  stroke-width: 30;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-kutu-ikon .svg-nostroke {
  stroke-width: 0;
}

.kutu .menu-kutu-ikon {
  width: 60px;
}

/* Perakende satis */
.kutu #svg-sepet-ok {
  animation: sepet-ok-efekt 1s infinite alternate;
}

@keyframes sepet-ok-efekt {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0);
  }
}
/* Belge listesi */
.kutu #svg-liste-ciz {
  stroke-dasharray: 400;
  stroke-dashoffset: 0;
  animation: svg-liste-ciz 1s linear 0s, svg-liste-salla 2s linear 1s infinite;
}

@keyframes svg-liste-ciz {
  0% {
    stroke-dashoffset: 500;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes svg-liste-salla {
  0% {
    transform: translateX(10px);
  }
  10% {
    transform: translateX(-10px);
  }
  20% {
    transform: translateX(10px);
  }
  30% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(0px);
  }
}
/* Perakende iade */
.kutu #svg-iade-ciz {
  stroke-dasharray: 400;
  stroke-dashoffset: 0;
  animation: svg-iade-ciz 1s linear 0s;
}

.kutu #svg-iade {
  transform-origin: center;
  animation: svg-iade-carpinti 0.5s 1s infinite alternate;
}

@keyframes svg-iade-ciz {
  0% {
    stroke-dashoffset: 500;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes svg-iade-carpinti {
  to {
    transform: scale(1.1);
  }
}
/* Etiket dokumu */
.kutu #svg-etiket {
  transform-origin: top right;
  animation: etiket-salla ease-in-out 1s infinite alternate;
}

@keyframes etiket-salla {
  0% {
    transform: rotate(3deg);
  }
  100% {
    transform: rotate(-3deg);
  }
}
/* Stok fiyat gor */
@keyframes svg-stok-fiyat-gor-lira-keyframes {
  0% {
    opacity: 0;
    transform: translateX(-75px);
  }
  10% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: translateX(75px);
  }
  100% {
    opacity: 0;
  }
}
@keyframes svg-stok-fiyat-gor-dolar-keyframes {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
    transform: translateY(-75px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(60px);
  }
}
#svg-stok-fiyat-gor-lira-anim {
  opacity: 0;
}

#svg-stok-fiyat-gor-lira-fade {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.kutu #svg-stok-fiyat-gor-lira-fade {
  opacity: 0;
}

.kutu #svg-stok-fiyat-gor-lira-anim {
  animation: svg-stok-fiyat-gor-lira-keyframes 3s infinite;
}

.kutu #svg-stok-fiyat-gor-dolar {
  animation: svg-stok-fiyat-gor-dolar-keyframes 3s infinite;
}

/* Stok kartlari */
.kutu svg#svg-stok-kart #svg-stok-kart-bir {
  animation: svg-stok-kart-efekt 1s linear infinite;
  transform-origin: center;
}

@keyframes svg-stok-kart-efekt {
  0% {
    transform: rotate(0deg) translateX(0px);
  }
  25% {
    transform: rotate(-3deg) translateY(-10px) translateX(-8px);
  }
  50% {
    transform: rotate(3deg) translateY(-10px) translateX(-8px);
  }
  100% {
    transform: rotate(0deg);
  }
}
/* Kasa hareketleri */
.kutu #svg-kasa-t1 {
  animation: svg-kasa-tus-efekt 1s linear infinite;
}

.kutu #svg-kasa-t2 {
  animation: svg-kasa-tus-efekt 1s 0.5s linear infinite;
}

.kutu #svg-kasa-t3 {
  animation: svg-kasa-tus-efekt 1s 0.25s linear infinite;
}

@keyframes svg-kasa-tus-efekt {
  0% {
    transform: translateY(-5px);
  }
  25% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-5px);
  }
}
.kutu #svg-kasa-t0 {
  transform-origin: left left;
  animation: svg-kasa-ekran-efekt 1s 0.25s linear infinite;
}

@keyframes svg-kasa-ekran-efekt {
  0% {
    d: path("m140 201h90");
  }
  25% {
    d: path("m140 201h140");
  }
  50% {
    d: path("m140 201h100");
  }
  100% {
    d: path("m140 201h230");
  }
}
/* Banka Pos Hareketleri */
.kutu #svg-pos-hareket-ok {
  transform-origin: center;
  -webkit-animation: rotation 2s infinite linear;
}

@-webkit-keyframes rotation {
  from {
    transform: scale(1.1);
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
.kutu #svg-pos-hareket-lira {
  transform-origin: center;
  -webkit-animation: flip_animation 2s infinite linear;
}

@keyframes flip_animation {
  0% {
    transform: rotate3d(0, 1, 0, 0deg);
  }
  50% {
    transform: rotate3d(0, 1, 0, 180deg);
    d: path("M293.3,191.7c0,0-76.5-26.1-83.7,22.5s98.1,33.3,93.6,79.2c-4.5,45-63,32.4-94.5,21.6 M257.3,155.7v29.1 M257.3,325.1v31.2");
  }
  100% {
    transform: rotate3d(0, 1, 0, 360deg);
  }
}
/* Renk Beden Degisim */
.kutu #svg-renk-beden-degisim-ok {
  transform-origin: center;
  -webkit-animation: rotation 2s infinite linear;
}

@-webkit-keyframes rotation {
  from {
    transform: scale(1.1);
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
.kutu #svg-renk-beden-degisim-s {
  transform-origin: center;
  -webkit-animation: flip_beden 5s infinite linear;
}

@keyframes flip_beden {
  0% {
    transform: rotate3d(0, 1, 0, 0deg);
  }
  25% {
    transform: rotate3d(0, 1, 0, 180deg);
    d: path("M184.5,153.9c-2.9,0-5.8-0.1-8.7,0.1c-4.5,0.5-8.7,3-11.7,6.7c-3.3,3.8-5.4,9.1-5.5,14.5	c-0.1,3.6,0,7.1,0,10.7c0,52.1,0,104.2,0,156.4c0.1,6.1,3.6,11.9,8.5,14.4c5,2.5,11.3,1.6,15.4-2.5c2.7-2.6,4.7-6.2,5.1-10.2	c0.3-2.6,0.1-5.3,0.1-8c0-43.7,0-87.5,0-131.2c16.5,46.6,33.1,93.1,49.7,139.7c2.1,5.5,6.2,10.2,11.2,12.2	c6.4,2.7,14.1,1.7,19.6-3.1c3.4-2.8,5.9-6.9,7.3-11.4c16.3-45.8,32.5-91.6,48.8-137.4c0,45.9,0,91.7,0,137.6	c0.1,5.5,2.9,10.8,7.1,13.5c5.3,3.5,12.6,2.9,17.2-1.8c3.2-3.2,5.1-8.1,4.8-13c0-53,0-105.9,0-158.9c-0.1-3,0.1-6-0.1-9	c-0.5-4.9-2.6-9.5-5.7-12.9c-3.4-4-8.1-6.4-13-6.4c-2.8-0.1-5.7,0-8.5,0c-3.3,0-6.6,1-9.4,2.9c-4.5,2.9-7.8,7.9-9.5,13.5	c-17.1,48.5-34.1,96.9-51.2,145.4c-17.4-49.3-34.7-98.7-52.1-148c-2.2-5.6-6.5-10.1-11.4-12.4C189.9,154.1,187.2,153.8,184.5,153.9	L184.5,153.9z");
  }
  50% {
    transform: rotate3d(0, 1, 0, 360deg);
    d: path("M203.7,154.6c-4.6,0-9,2.3-11.9,5.8c-3,3.2-4.3,7.7-4.1,12.1c0,54.8,0,109.6,0,164.4c0.2,7,4,13.8,10,17.4 c3.8,2.4,8.4,3.4,12.9,3.2c32.6,0,65.2,0,97.8,0c4.4-0.1,8.7-2.2,11.6-5.5c4.6-4.7,5.6-12.3,2.6-18.2c-1.2-2.5-3.2-4.5-5.4-6.3 c-3-2.3-6.9-3.4-10.7-3.2c-28.5,0-57.1,0-85.6,0c0-51.2,0-102.4,0-153.6c-0.1-4.3-2.2-8.5-5.4-11.3 C212.5,156.1,208.1,154.4,203.7,154.6L203.7,154.6z");
  }
  75% {
    transform: rotate3d(0, 1, 0, 180deg);
    d: path("M253.5,152.6c-12.9,0.4-26,2.7-37.6,8.5c-9.8,4.7-18.7,11.6-24.7,20.7c-5.2,7.7-8.5,16.8-9.3,26.1	c-0.7,7.6,0,15.5,2.4,22.8c2,6,5.4,11.5,10,15.9c7.7,7.9,17.4,13.8,27.9,17.2c13.2,4.7,26.8,8.2,40.4,11.8c7.2,2,14.4,4.1,21.4,6.9	c4.9,2.1,9.5,4.9,12.9,9c2.2,2.8,2.9,6.5,2.6,9.9c-0.2,5.7-2.1,11.5-6.2,15.6c-3.7,3.8-8.7,6.2-13.7,7.7c-0.4,0.1-1.1,0.3-1.6,0.5	c-8.9,2.3-18.3,2.7-27.5,2.4c-1.3,0-2.4-0.1-3.8-0.2c-15-0.9-29.8-4.3-43.6-10.3c-2.2-1-4.6-1.8-7.1-1.9c-4.2-0.2-8.6,1.3-11.6,4.3	c-4.3,4.1-5.8,10.8-3.8,16.5c1.6,4.6,5.3,8.4,9.9,10.1c19.7,8.5,41.1,12.8,62.5,13.3c12.7,0.3,25.5-0.9,37.6-5	c10.6-3.6,20.7-9.5,28.3-17.8c6.9-7.6,11.6-17.2,13-27.4c0.9-6.9,0.6-13.9-0.7-20.7c-1.5-7-4.4-13.7-9.1-19.2	c-6.8-8.2-15.7-14.5-25.6-18.1c-10.5-4.1-21.5-7.1-32.4-9.8c-6.7-1.6-13.6-3.2-20.2-5.1c-5.4-1.5-10.8-3-15.7-5.8	c-0.9-0.5-1.9-1.1-2.7-1.6c-0.6-0.3-1.1-0.7-1.5-1c-2.8-2-5.5-4.3-7-7.4c-2.2-4.3-2.4-9.4-1.5-14.1c0.8-4.4,3.2-8.4,6.5-11.3	c4.6-4.2,10.5-6.8,16.5-8.5c1.6-0.5,3.2-0.8,4.9-1.2c9.2-1.8,18.7-1.8,28.1-1.1c0.4,0,1.3,0.1,1.8,0.2c1.8,0.2,3.5,0.4,5.3,0.6	c1.1,0.2,2.5,0.4,3.7,0.6c1.4,0.2,2.7,0.5,4.1,0.8c0.9,0.2,2.2,0.4,3.2,0.7c5.6,1.2,11,2.9,16.4,4.8c5.3,1.6,11.4-0.4,14.8-4.8	c2.9-3.5,4.2-8.3,3.6-12.8c-0.5-4.4-3-8.5-6.8-10.7c-2.9-1.7-6.2-2.6-9.4-3.7C290.4,154.2,271.8,152.2,253.5,152.6L253.5,152.6z");
  }
}
/* Gunsonu */
.kutu .svg-ciz {
  stroke-dasharray: 500;
  stroke-dashoffset: 0;
  animation: svg-liste-ciz 1s linear 0s, svg-liste-salla-y 2s linear 1s infinite;
}

@keyframes svg-liste-ciz {
  0% {
    stroke-dashoffset: 500;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes svg-liste-salla-y {
  0% {
    transform: translateY(10px);
  }
  10% {
    transform: translateY(-10px);
  }
  20% {
    transform: translateY(10px);
  }
  30% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(0px);
  }
}
#kutu-dashboard {
  width: 55px;
  aspect-ratio: 1;
  --g1: conic-gradient(from 90deg at top 4px left 4px, #0000 90deg, #fff 0);
  --g2: conic-gradient(from -90deg at bottom 4px right 4px, #0000 90deg, #fff 0);
  background: var(--g1), var(--g1), var(--g1), var(--g1), var(--g2), var(--g2), var(--g2), var(--g2);
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-size: 25px 25px;
  background-repeat: no-repeat;
  animation: l11 2.2s infinite;
  opacity: 0.9;
}

@keyframes l11 {
  0% {
    background-size: 35px 15px, 15px 15px, 15px 35px, 35px 35px;
  }
  25% {
    background-size: 35px 35px, 15px 35px, 15px 15px, 35px 15px;
  }
  50% {
    background-size: 15px 35px, 35px 35px, 35px 15px, 15px 15px;
  }
  75% {
    background-size: 15px 15px, 35px 15px, 35px 35px, 15px 35px;
  }
  100% {
    background-size: 35px 15px, 15px 15px, 15px 35px, 35px 35px;
  }
}
.login-main {
  display: flex;
  width: 100%;
  height: 100%;
}
.login-main .giz-form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.login-main .giz-form-check .giz-form-check-input {
  float: left;
  margin-left: -1.5em;
}
.login-main .giz-form-check-input {
  position: initial !important;
  margin-left: initial !important;
  width: 1em;
  height: 1em;
  margin: 0px;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}
.login-main .giz-form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.login-main .giz-form-check-input[type=radio] {
  border-radius: 50%;
}
.login-main .giz-form-check-input:active {
  filter: brightness(90%);
}
.login-main .giz-form-check-input:focus {
  border-color: #7f86ae;
  outline: 0;
  box-shadow: 0 0 0 0.25rem #bdc1d6;
}
.login-main .giz-form-check-input:checked {
  background-color: #667799;
  border-color: #667799;
}
.login-main .giz-form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.login-main .giz-form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.login-main .giz-form-check-input[type=checkbox]:indeterminate {
  background-color: #667799;
  border-color: #667799;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.login-main .giz-form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.login-main .giz-form-check-input[disabled] ~ .giz-form-check-label,
.login-main .giz-form-check-input:disabled ~ .giz-form-check-label {
  opacity: 0.5;
}
.login-main .giz-form-check-input-lg {
  width: calc(1.5em + 0.75rem + 2px);
  height: calc(1.5em + 0.75rem + 2px);
}
.login-main .giz-form-check-input-md {
  width: calc(1em + 0.5rem + 2px);
  height: calc(1em + 0.5rem + 2px);
}
.login-main * {
  box-sizing: border-box;
  font-size: 14px !important;
}
.login-main .login-left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  z-index: 5;
  background: #ecedf3;
}
.login-main .login-header svg {
  width: 150px;
}
.login-main .login-header svg * {
  fill: #393e5b !important;
}
.login-main .login-header svg:hover * {
  fill: #002F87 !important;
}
.login-main .login-inputs {
  text-align: center;
  width: 70%;
  max-width: 300px;
}
.login-main .login-tilt {
  position: relative;
  z-index: 4;
}
.login-main .login-tilt:after {
  content: " ";
  display: block;
  box-shadow: 5px 5px #393e5b;
  height: 100%;
  width: 350px;
  transform: rotate(5deg) scale(1.5);
  background: #ecedf3;
  position: absolute;
  left: -350px;
}
.login-main .login-right {
  display: flex;
  flex-grow: 3;
  position: relative;
  background: #393e5b;
  border-left: 5px solid #393e5b;
  overflow: hidden;
}
.login-main .login-backgrounds {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(57, 62, 91, 0.63);
}
.login-main .login-firm-logo {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 50px;
  border: 5px solid rgba(255, 255, 255, 0.1);
}
.login-main .login-firm-logo svg, .login-main .login-firm-logo img {
  width: 200px;
}
.login-main .sifremi-unuttum {
  cursor: pointer;
}
.login-main .sifremi-unuttum:hover {
  color: #f47a20;
  transition: all 0.2s;
}
.login-main select,
.login-main input.login-input {
  outline: none;
  border: 2px solid rgba(57, 62, 91, 0.34);
  border-radius: 0.25rem !important;
  padding: 8px;
  text-align: center;
  width: 100%;
  transition: all 0.5s;
}
.login-main input.login-input:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(57, 62, 91, 0.19);
  border-color: #393e5b;
}
.login-main input.login-input::placeholder {
  color: #bbbdc7;
}
.login-main input.login-input:hover {
  border-color: #393e5b;
}
.login-main .login-button,
.login-main button {
  margin: 10px 0px;
  border: none;
  color: white;
  padding: 8px;
  background-color: #393e5b;
  width: 100%;
  border-radius: 0.25rem;
}
.login-main button:hover {
  background: #bbbdc7;
  color: #393e5b;
  cursor: pointer;
  border-color: #bbbdc7;
  transition: all 0.5s;
}
.login-main button:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(57, 62, 91, 0.19);
}
.login-main .login-button.signin {
  background-color: #f47a20;
  display: block;
  text-decoration: none;
}
.login-main .login-button.signin:hover {
  background: #f3d0b7;
  color: #f47a20;
  cursor: pointer;
  border-color: #f3d0b7;
  transition: all 0.5s;
}
.login-main .login-button.signin:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(244, 122, 32, 0.1882352941);
}
.login-main .login-error {
  border: 1px solid #f47a20;
  color: #f47a20;
  background: #ffebdd;
  border-radius: 0.25rem;
  min-height: 40px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
}
.login-main .login-okey {
  border: 1px solid #4caf50;
  color: #2f8b32;
  padding: 7px;
  background: #e0f9e1;
  border-radius: 0.25rem;
}
.login-main .giz-form-check-input {
  margin: unset;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(57, 62, 91, 0.34);
  transition: all 0.5s;
  border-radius: 0.25rem !important;
}
.login-main .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(57, 62, 91, 0.19);
}
.login-main .form-check-input:checked {
  background-color: #393e5b;
  border-color: #393e5b;
}
.login-main .login-images {
  position: absolute;
}
.login-main #login-slide:after {
  content: "";
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAAAXNSR0IArs4c6QAAABdJREFUGFdjZGBg+M/AwMDIACNADAwOACNxAQTGOwk4AAAAAElFTkSuQmCC) repeat;
  opacity: 0.3;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}
.login-main .login-inputs-box-toggle {
  opacity: 0 !important;
  transform: translateX(-1000px);
  transition: all 500ms cubic-bezier(1, -0.6, 0, 1.65);
}
.login-main .recover-inputs-box-toggle {
  opacity: 1 !important;
  transform: translateX(0px) !important;
  transition: all 500ms cubic-bezier(1, -0.6, 0, 1.65);
}
.login-main #login-inputs-box {
  opacity: 1;
  transition: all 500ms cubic-bezier(1, -0.6, 0, 1.65);
}
.login-main #recover-inputs-box {
  opacity: 0;
  transform: translateX(-1000px);
  transition: all 500ms cubic-bezier(1, -0.6, 0, 1.65);
}
.login-main .login-slide-hide {
  opacity: 0;
  transition: all 1s;
}
.login-main .login-slide-show {
  opacity: 1 !important;
  transition: all 1s;
}
.login-main .login-images {
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.login-main .login-images img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.login-main #login-inputs-box,
.login-main #recover-inputs-box {
  position: absolute;
  top: 0;
  width: 100%;
}
.login-main svg:not(:hover) linearGradient stop {
  stop-color: #393e5b !important;
  transition: all 0.5s;
}

@media only screen and (max-width: 600px), (max-height: 600px) {
  .login-main .login-right {
    display: none;
  }
  .login-main .login-left {
    transform: initial;
  }
  .login-main .login-inputs {
    transform: initial;
  }
}
@media only screen and (max-width: 1000px) {
  .login-main .login-inputs {
    width: 90%;
    max-width: 300px;
  }
}
.visibility-hidden {
  visibility: hidden;
}

md-datepicker.form-control {
  flex-grow: 2;
  padding: 0px;
  margin: 0px;
}
md-datepicker.form-control.form-control.md-datepicker-open input.md-datepicker-input {
  border: 1px solid transparent !important;
}
md-datepicker.form-control .md-button.md-icon-button {
  border-radius: 0px !important;
  right: 0px !important;
  top: 0px !important;
  width: 30px !important;
  transform: inherit !important;
  -webkit-transform: inherit !important;
  margin: 0px !important;
  height: 32px !important;
  min-height: inherit !important;
}
md-datepicker.form-control .md-datepicker-input-container {
  border: none;
  padding: 0;
  width: 100%;
}
md-datepicker.form-control .md-datepicker-input {
  height: 32px !important;
  width: 100% !important;
  max-width: inherit !important;
}

/*.md-datepicker-input-mask {
    height: 32px !important;
}
*/
/*

.selectdemoSelectHeader {
}

.selectdemoSelectHeader .demo-header-searchbox {
    border: none;
    outline: none;
    height: 100%;
    width: 100%;
    padding: 0;
}

.selectdemoSelectHeader .demo-select-header {

    padding-left: 10.667px;
    height: 48px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    width: auto;
}

.select-filter-input md-content._md {
    max-height: 240px;
}*/
.select-filter-container md-content {
  display: flex;
  flex-direction: column;
  margin-top: 36px;
}
.select-filter-container md-content md-select-header {
  position: fixed;
  background: white;
  height: 30px;
  top: 0;
  z-index: 99;
  width: 100%;
}
.select-filter-container md-content md-option {
  min-height: 48px;
}
.select-filter-container md-content .select-filter-input {
  padding: 5px 5px 5px 15px;
  outline: none;
  border: 0px;
  border-bottom: 1px solid lightgray;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(0, 0, 0, 0.14), 0 0 0 0 rgba(0, 0, 0, 0.12);
  margin-bottom: 1px;
  width: 100%;
  box-sizing: border-box;
}
.select-filter-container md-content .select-filter-input:focus {
  border-bottom: 2px solid black;
  margin-bottom: 0px;
}
.select-filter-container md-content .select-filter-input::placeholder {
  color: #a5a5a5;
}

.iti__flag {
  width: 20px;
}

.iti__flag.iti__BE {
  width: 18px;
}

.iti__flag.iti__CH {
  width: 15px;
}

.iti__flag.iti__MC {
  width: 19px;
}

.iti__flag.iti__NE {
  width: 18px;
}

.iti__flag.iti__NP {
  width: 13px;
}

.iti__flag.iti__VA {
  width: 15px;
}

@MEDIA (-WEBKIT-MIN-DEVICE-PIXEL-RATIO: 2), (MIN-RESOLUTION: 192DPI) {
  .iti__flag {
    background-size: 5652px 15px;
  }
}
.iti__flag.iti__AC {
  height: 10px;
  background-position: 0px 0px;
}

.iti__flag.iti__AD {
  height: 14px;
  background-position: -22px 0px;
}

.iti__flag.iti__AE {
  height: 10px;
  background-position: -44px 0px;
}

.iti__flag.iti__AF {
  height: 14px;
  background-position: -66px 0px;
}

.iti__flag.iti__AG {
  height: 14px;
  background-position: -88px 0px;
}

.iti__flag.iti__AI {
  height: 10px;
  background-position: -110px 0px;
}

.iti__flag.iti__AL {
  height: 15px;
  background-position: -132px 0px;
}

.iti__flag.iti__AM {
  height: 10px;
  background-position: -154px 0px;
}

.iti__flag.iti__AO {
  height: 14px;
  background-position: -176px 0px;
}

.iti__flag.iti__AQ {
  height: 14px;
  background-position: -198px 0px;
}

.iti__flag.iti__AR {
  height: 13px;
  background-position: -220px 0px;
}

.iti__flag.iti__AS {
  height: 10px;
  background-position: -242px 0px;
}

.iti__flag.iti__AT {
  height: 14px;
  background-position: -264px 0px;
}

.iti__flag.iti__AU {
  height: 10px;
  background-position: -286px 0px;
}

.iti__flag.iti__AW {
  height: 14px;
  background-position: -308px 0px;
}

.iti__flag.iti__AX {
  height: 13px;
  background-position: -330px 0px;
}

.iti__flag.iti__AZ {
  height: 10px;
  background-position: -352px 0px;
}

.iti__flag.iti__BA {
  height: 10px;
  background-position: -374px 0px;
}

.iti__flag.iti__BB {
  height: 14px;
  background-position: -396px 0px;
}

.iti__flag.iti__BD {
  height: 12px;
  background-position: -418px 0px;
}

.iti__flag.iti__BE {
  height: 15px;
  background-position: -440px 0px;
}

.iti__flag.iti__BF {
  height: 14px;
  background-position: -460px 0px;
}

.iti__flag.iti__BG {
  height: 12px;
  background-position: -482px 0px;
}

.iti__flag.iti__BH {
  height: 12px;
  background-position: -504px 0px;
}

.iti__flag.iti__BI {
  height: 12px;
  background-position: -526px 0px;
}

.iti__flag.iti__BJ {
  height: 14px;
  background-position: -548px 0px;
}

.iti__flag.iti__BL {
  height: 14px;
  background-position: -570px 0px;
}

.iti__flag.iti__BM {
  height: 10px;
  background-position: -592px 0px;
}

.iti__flag.iti__BN {
  height: 10px;
  background-position: -614px 0px;
}

.iti__flag.iti__BO {
  height: 14px;
  background-position: -636px 0px;
}

.iti__flag.iti__BQ {
  height: 14px;
  background-position: -658px 0px;
}

.iti__flag.iti__BR {
  height: 14px;
  background-position: -680px 0px;
}

.iti__flag.iti__BS {
  height: 10px;
  background-position: -702px 0px;
}

.iti__flag.iti__BT {
  height: 14px;
  background-position: -724px 0px;
}

.iti__flag.iti__BV {
  height: 15px;
  background-position: -746px 0px;
}

.iti__flag.iti__BW {
  height: 14px;
  background-position: -768px 0px;
}

.iti__flag.iti__BY {
  height: 10px;
  background-position: -790px 0px;
}

.iti__flag.iti__BZ {
  height: 14px;
  background-position: -812px 0px;
}

.iti__flag.iti__CA {
  height: 10px;
  background-position: -834px 0px;
}

.iti__flag.iti__CC {
  height: 10px;
  background-position: -856px 0px;
}

.iti__flag.iti__CD {
  height: 15px;
  background-position: -878px 0px;
}

.iti__flag.iti__CF {
  height: 14px;
  background-position: -900px 0px;
}

.iti__flag.iti__CG {
  height: 14px;
  background-position: -922px 0px;
}

.iti__flag.iti__CH {
  height: 15px;
  background-position: -944px 0px;
}

.iti__flag.iti__CI {
  height: 14px;
  background-position: -961px 0px;
}

.iti__flag.iti__CK {
  height: 10px;
  background-position: -983px 0px;
}

.iti__flag.iti__CL {
  height: 14px;
  background-position: -1005px 0px;
}

.iti__flag.iti__CM {
  height: 14px;
  background-position: -1027px 0px;
}

.iti__flag.iti__CN {
  height: 14px;
  background-position: -1049px 0px;
}

.iti__flag.iti__CO {
  height: 14px;
  background-position: -1071px 0px;
}

.iti__flag.iti__CP {
  height: 14px;
  background-position: -1093px 0px;
}

.iti__flag.iti__CR {
  height: 12px;
  background-position: -1115px 0px;
}

.iti__flag.iti__CU {
  height: 10px;
  background-position: -1137px 0px;
}

.iti__flag.iti__CV {
  height: 12px;
  background-position: -1159px 0px;
}

.iti__flag.iti__CW {
  height: 14px;
  background-position: -1181px 0px;
}

.iti__flag.iti__CX {
  height: 10px;
  background-position: -1203px 0px;
}

.iti__flag.iti__CY {
  height: 14px;
  background-position: -1225px 0px;
}

.iti__flag.iti__CZ {
  height: 14px;
  background-position: -1247px 0px;
}

.iti__flag.iti__DE {
  height: 12px;
  background-position: -1269px 0px;
}

.iti__flag.iti__DG {
  height: 10px;
  background-position: -1291px 0px;
}

.iti__flag.iti__DJ {
  height: 14px;
  background-position: -1313px 0px;
}

.iti__flag.iti__DK {
  height: 15px;
  background-position: -1335px 0px;
}

.iti__flag.iti__DM {
  height: 10px;
  background-position: -1357px 0px;
}

.iti__flag.iti__DO {
  height: 14px;
  background-position: -1379px 0px;
}

.iti__flag.iti__DZ {
  height: 14px;
  background-position: -1401px 0px;
}

.iti__flag.iti__EA {
  height: 14px;
  background-position: -1423px 0px;
}

.iti__flag.iti__EC {
  height: 14px;
  background-position: -1445px 0px;
}

.iti__flag.iti__EE {
  height: 13px;
  background-position: -1467px 0px;
}

.iti__flag.iti__EG {
  height: 14px;
  background-position: -1489px 0px;
}

.iti__flag.iti__EH {
  height: 10px;
  background-position: -1511px 0px;
}

.iti__flag.iti__ER {
  height: 10px;
  background-position: -1533px 0px;
}

.iti__flag.iti__ES {
  height: 14px;
  background-position: -1555px 0px;
}

.iti__flag.iti__ET {
  height: 10px;
  background-position: -1577px 0px;
}

.iti__flag.iti__EU {
  height: 14px;
  background-position: -1599px 0px;
}

.iti__flag.iti__FI {
  height: 12px;
  background-position: -1621px 0px;
}

.iti__flag.iti__FJ {
  height: 10px;
  background-position: -1643px 0px;
}

.iti__flag.iti__FK {
  height: 10px;
  background-position: -1665px 0px;
}

.iti__flag.iti__FM {
  height: 11px;
  background-position: -1687px 0px;
}

.iti__flag.iti__FO {
  height: 15px;
  background-position: -1709px 0px;
}

.iti__flag.iti__FR {
  height: 14px;
  background-position: -1731px 0px;
}

.iti__flag.iti__GA {
  height: 15px;
  background-position: -1753px 0px;
}

.iti__flag.iti__GB {
  height: 10px;
  background-position: -1775px 0px;
}

.iti__flag.iti__GD {
  height: 12px;
  background-position: -1797px 0px;
}

.iti__flag.iti__GE {
  height: 14px;
  background-position: -1819px 0px;
}

.iti__flag.iti__GF {
  height: 14px;
  background-position: -1841px 0px;
}

.iti__flag.iti__GG {
  height: 14px;
  background-position: -1863px 0px;
}

.iti__flag.iti__GH {
  height: 14px;
  background-position: -1885px 0px;
}

.iti__flag.iti__GI {
  height: 10px;
  background-position: -1907px 0px;
}

.iti__flag.iti__GL {
  height: 14px;
  background-position: -1929px 0px;
}

.iti__flag.iti__GM {
  height: 14px;
  background-position: -1951px 0px;
}

.iti__flag.iti__GN {
  height: 14px;
  background-position: -1973px 0px;
}

.iti__flag.iti__GP {
  height: 14px;
  background-position: -1995px 0px;
}

.iti__flag.iti__GQ {
  height: 14px;
  background-position: -2017px 0px;
}

.iti__flag.iti__GR {
  height: 14px;
  background-position: -2039px 0px;
}

.iti__flag.iti__GS {
  height: 10px;
  background-position: -2061px 0px;
}

.iti__flag.iti__GT {
  height: 13px;
  background-position: -2083px 0px;
}

.iti__flag.iti__GU {
  height: 11px;
  background-position: -2105px 0px;
}

.iti__flag.iti__GW {
  height: 10px;
  background-position: -2127px 0px;
}

.iti__flag.iti__GY {
  height: 12px;
  background-position: -2149px 0px;
}

.iti__flag.iti__HK {
  height: 14px;
  background-position: -2171px 0px;
}

.iti__flag.iti__HM {
  height: 10px;
  background-position: -2193px 0px;
}

.iti__flag.iti__HN {
  height: 10px;
  background-position: -2215px 0px;
}

.iti__flag.iti__HR {
  height: 10px;
  background-position: -2237px 0px;
}

.iti__flag.iti__HT {
  height: 12px;
  background-position: -2259px 0px;
}

.iti__flag.iti__HU {
  height: 10px;
  background-position: -2281px 0px;
}

.iti__flag.iti__IC {
  height: 14px;
  background-position: -2303px 0px;
}

.iti__flag.iti__ID {
  height: 14px;
  background-position: -2325px 0px;
}

.iti__flag.iti__IE {
  height: 10px;
  background-position: -2347px 0px;
}

.iti__flag.iti__IL {
  height: 15px;
  background-position: -2369px 0px;
}

.iti__flag.iti__IM {
  height: 10px;
  background-position: -2391px 0px;
}

.iti__flag.iti__IN {
  height: 14px;
  background-position: -2413px 0px;
}

.iti__flag.iti__IO {
  height: 10px;
  background-position: -2435px 0px;
}

.iti__flag.iti__IQ {
  height: 14px;
  background-position: -2457px 0px;
}

.iti__flag.iti__IR {
  height: 12px;
  background-position: -2479px 0px;
}

.iti__flag.iti__IS {
  height: 15px;
  background-position: -2501px 0px;
}

.iti__flag.iti__IT {
  height: 14px;
  background-position: -2523px 0px;
}

.iti__flag.iti__JE {
  height: 12px;
  background-position: -2545px 0px;
}

.iti__flag.iti__JM {
  height: 10px;
  background-position: -2567px 0px;
}

.iti__flag.iti__JO {
  height: 10px;
  background-position: -2589px 0px;
}

.iti__flag.iti__JP {
  height: 14px;
  background-position: -2611px 0px;
}

.iti__flag.iti__KE {
  height: 14px;
  background-position: -2633px 0px;
}

.iti__flag.iti__KG {
  height: 12px;
  background-position: -2655px 0px;
}

.iti__flag.iti__KH {
  height: 13px;
  background-position: -2677px 0px;
}

.iti__flag.iti__KI {
  height: 10px;
  background-position: -2699px 0px;
}

.iti__flag.iti__KM {
  height: 12px;
  background-position: -2721px 0px;
}

.iti__flag.iti__KN {
  height: 14px;
  background-position: -2743px 0px;
}

.iti__flag.iti__KP {
  height: 10px;
  background-position: -2765px 0px;
}

.iti__flag.iti__KR {
  height: 14px;
  background-position: -2787px 0px;
}

.iti__flag.iti__KW {
  height: 10px;
  background-position: -2809px 0px;
}

.iti__flag.iti__KY {
  height: 10px;
  background-position: -2831px 0px;
}

.iti__flag.iti__KZ {
  height: 10px;
  background-position: -2853px 0px;
}

.iti__flag.iti__LA {
  height: 14px;
  background-position: -2875px 0px;
}

.iti__flag.iti__LB {
  height: 14px;
  background-position: -2897px 0px;
}

.iti__flag.iti__LC {
  height: 10px;
  background-position: -2919px 0px;
}

.iti__flag.iti__LI {
  height: 12px;
  background-position: -2941px 0px;
}

.iti__flag.iti__LK {
  height: 10px;
  background-position: -2963px 0px;
}

.iti__flag.iti__LR {
  height: 11px;
  background-position: -2985px 0px;
}

.iti__flag.iti__LS {
  height: 14px;
  background-position: -3007px 0px;
}

.iti__flag.iti__LT {
  height: 12px;
  background-position: -3029px 0px;
}

.iti__flag.iti__LU {
  height: 12px;
  background-position: -3051px 0px;
}

.iti__flag.iti__LV {
  height: 10px;
  background-position: -3073px 0px;
}

.iti__flag.iti__LY {
  height: 10px;
  background-position: -3095px 0px;
}

.iti__flag.iti__MA {
  height: 14px;
  background-position: -3117px 0px;
}

.iti__flag.iti__MC {
  height: 15px;
  background-position: -3139px 0px;
}

.iti__flag.iti__MD {
  height: 10px;
  background-position: -3160px 0px;
}

.iti__flag.iti__ME {
  height: 10px;
  background-position: -3182px 0px;
}

.iti__flag.iti__MF {
  height: 14px;
  background-position: -3204px 0px;
}

.iti__flag.iti__MG {
  height: 14px;
  background-position: -3226px 0px;
}

.iti__flag.iti__MH {
  height: 11px;
  background-position: -3248px 0px;
}

.iti__flag.iti__MK {
  height: 10px;
  background-position: -3270px 0px;
}

.iti__flag.iti__ML {
  height: 14px;
  background-position: -3292px 0px;
}

.iti__flag.iti__MM {
  height: 14px;
  background-position: -3314px 0px;
}

.iti__flag.iti__MN {
  height: 10px;
  background-position: -3336px 0px;
}

.iti__flag.iti__MO {
  height: 14px;
  background-position: -3358px 0px;
}

.iti__flag.iti__MP {
  height: 10px;
  background-position: -3380px 0px;
}

.iti__flag.iti__MQ {
  height: 14px;
  background-position: -3402px 0px;
}

.iti__flag.iti__MR {
  height: 14px;
  background-position: -3424px 0px;
}

.iti__flag.iti__MS {
  height: 10px;
  background-position: -3446px 0px;
}

.iti__flag.iti__MT {
  height: 14px;
  background-position: -3468px 0px;
}

.iti__flag.iti__MU {
  height: 14px;
  background-position: -3490px 0px;
}

.iti__flag.iti__MV {
  height: 14px;
  background-position: -3512px 0px;
}

.iti__flag.iti__MW {
  height: 14px;
  background-position: -3534px 0px;
}

.iti__flag.iti__MX {
  height: 12px;
  background-position: -3556px 0px;
}

.iti__flag.iti__MY {
  height: 10px;
  background-position: -3578px 0px;
}

.iti__flag.iti__MZ {
  height: 14px;
  background-position: -3600px 0px;
}

.iti__flag.iti__NA {
  height: 14px;
  background-position: -3622px 0px;
}

.iti__flag.iti__NC {
  height: 10px;
  background-position: -3644px 0px;
}

.iti__flag.iti__NE {
  height: 15px;
  background-position: -3666px 0px;
}

.iti__flag.iti__NF {
  height: 10px;
  background-position: -3686px 0px;
}

.iti__flag.iti__NG {
  height: 10px;
  background-position: -3708px 0px;
}

.iti__flag.iti__NI {
  height: 12px;
  background-position: -3730px 0px;
}

.iti__flag.iti__NL {
  height: 14px;
  background-position: -3752px 0px;
}

.iti__flag.iti__NO {
  height: 15px;
  background-position: -3774px 0px;
}

.iti__flag.iti__NP {
  height: 15px;
  background-position: -3796px 0px;
}

.iti__flag.iti__NR {
  height: 10px;
  background-position: -3811px 0px;
}

.iti__flag.iti__NU {
  height: 10px;
  background-position: -3833px 0px;
}

.iti__flag.iti__NZ {
  height: 10px;
  background-position: -3855px 0px;
}

.iti__flag.iti__OM {
  height: 10px;
  background-position: -3877px 0px;
}

.iti__flag.iti__PA {
  height: 14px;
  background-position: -3899px 0px;
}

.iti__flag.iti__PE {
  height: 14px;
  background-position: -3921px 0px;
}

.iti__flag.iti__PF {
  height: 14px;
  background-position: -3943px 0px;
}

.iti__flag.iti__PG {
  height: 15px;
  background-position: -3965px 0px;
}

.iti__flag.iti__PH {
  height: 10px;
  background-position: -3987px 0px;
}

.iti__flag.iti__PK {
  height: 14px;
  background-position: -4009px 0px;
}

.iti__flag.iti__PL {
  height: 13px;
  background-position: -4031px 0px;
}

.iti__flag.iti__PM {
  height: 14px;
  background-position: -4053px 0px;
}

.iti__flag.iti__PN {
  height: 10px;
  background-position: -4075px 0px;
}

.iti__flag.iti__PR {
  height: 14px;
  background-position: -4097px 0px;
}

.iti__flag.iti__PS {
  height: 10px;
  background-position: -4119px 0px;
}

.iti__flag.iti__PT {
  height: 14px;
  background-position: -4141px 0px;
}

.iti__flag.iti__PW {
  height: 13px;
  background-position: -4163px 0px;
}

.iti__flag.iti__PY {
  height: 11px;
  background-position: -4185px 0px;
}

.iti__flag.iti__QA {
  height: 8px;
  background-position: -4207px 0px;
}

.iti__flag.iti__RE {
  height: 14px;
  background-position: -4229px 0px;
}

.iti__flag.iti__RO {
  height: 14px;
  background-position: -4251px 0px;
}

.iti__flag.iti__RS {
  height: 14px;
  background-position: -4273px 0px;
}

.iti__flag.iti__RU {
  height: 14px;
  background-position: -4295px 0px;
}

.iti__flag.iti__RW {
  height: 14px;
  background-position: -4317px 0px;
}

.iti__flag.iti__SA {
  height: 14px;
  background-position: -4339px 0px;
}

.iti__flag.iti__SB {
  height: 10px;
  background-position: -4361px 0px;
}

.iti__flag.iti__SC {
  height: 10px;
  background-position: -4383px 0px;
}

.iti__flag.iti__SD {
  height: 10px;
  background-position: -4405px 0px;
}

.iti__flag.iti__SE {
  height: 13px;
  background-position: -4427px 0px;
}

.iti__flag.iti__SG {
  height: 14px;
  background-position: -4449px 0px;
}

.iti__flag.iti__SH {
  height: 10px;
  background-position: -4471px 0px;
}

.iti__flag.iti__SI {
  height: 10px;
  background-position: -4493px 0px;
}

.iti__flag.iti__SJ {
  height: 15px;
  background-position: -4515px 0px;
}

.iti__flag.iti__SK {
  height: 14px;
  background-position: -4537px 0px;
}

.iti__flag.iti__SL {
  height: 14px;
  background-position: -4559px 0px;
}

.iti__flag.iti__SM {
  height: 15px;
  background-position: -4581px 0px;
}

.iti__flag.iti__SN {
  height: 14px;
  background-position: -4603px 0px;
}

.iti__flag.iti__SO {
  height: 14px;
  background-position: -4625px 0px;
}

.iti__flag.iti__SR {
  height: 14px;
  background-position: -4647px 0px;
}

.iti__flag.iti__SS {
  height: 10px;
  background-position: -4669px 0px;
}

.iti__flag.iti__ST {
  height: 10px;
  background-position: -4691px 0px;
}

.iti__flag.iti__SV {
  height: 12px;
  background-position: -4713px 0px;
}

.iti__flag.iti__SX {
  height: 14px;
  background-position: -4735px 0px;
}

.iti__flag.iti__SY {
  height: 14px;
  background-position: -4757px 0px;
}

.iti__flag.iti__SZ {
  height: 14px;
  background-position: -4779px 0px;
}

.iti__flag.iti__TA {
  height: 10px;
  background-position: -4801px 0px;
}

.iti__flag.iti__TC {
  height: 10px;
  background-position: -4823px 0px;
}

.iti__flag.iti__TD {
  height: 14px;
  background-position: -4845px 0px;
}

.iti__flag.iti__TF {
  height: 14px;
  background-position: -4867px 0px;
}

.iti__flag.iti__TG {
  height: 13px;
  background-position: -4889px 0px;
}

.iti__flag.iti__TH {
  height: 14px;
  background-position: -4911px 0px;
}

.iti__flag.iti__TJ {
  height: 10px;
  background-position: -4933px 0px;
}

.iti__flag.iti__TK {
  height: 10px;
  background-position: -4955px 0px;
}

.iti__flag.iti__TL {
  height: 10px;
  background-position: -4977px 0px;
}

.iti__flag.iti__TM {
  height: 14px;
  background-position: -4999px 0px;
}

.iti__flag.iti__TN {
  height: 14px;
  background-position: -5021px 0px;
}

.iti__flag.iti__TO {
  height: 10px;
  background-position: -5043px 0px;
}

.iti__flag.iti__TR {
  height: 14px;
  background-position: -5065px 0px;
}

.iti__flag.iti__TT {
  height: 12px;
  background-position: -5087px 0px;
}

.iti__flag.iti__TV {
  height: 10px;
  background-position: -5109px 0px;
}

.iti__flag.iti__TW {
  height: 14px;
  background-position: -5131px 0px;
}

.iti__flag.iti__TZ {
  height: 14px;
  background-position: -5153px 0px;
}

.iti__flag.iti__UA {
  height: 14px;
  background-position: -5175px 0px;
}

.iti__flag.iti__UG {
  height: 14px;
  background-position: -5197px 0px;
}

.iti__flag.iti__UM {
  height: 11px;
  background-position: -5219px 0px;
}

.iti__flag.iti__UN {
  height: 14px;
  background-position: -5241px 0px;
}

.iti__flag.iti__US {
  height: 11px;
  background-position: -5263px 0px;
}

.iti__flag.iti__UY {
  height: 14px;
  background-position: -5285px 0px;
}

.iti__flag.iti__UZ {
  height: 10px;
  background-position: -5307px 0px;
}

.iti__flag.iti__VA {
  height: 15px;
  background-position: -5329px 0px;
}

.iti__flag.iti__VC {
  height: 14px;
  background-position: -5346px 0px;
}

.iti__flag.iti__VE {
  height: 14px;
  background-position: -5368px 0px;
}

.iti__flag.iti__VG {
  height: 10px;
  background-position: -5390px 0px;
}

.iti__flag.iti__VI {
  height: 14px;
  background-position: -5412px 0px;
}

.iti__flag.iti__VN {
  height: 14px;
  background-position: -5434px 0px;
}

.iti__flag.iti__VU {
  height: 12px;
  background-position: -5456px 0px;
}

.iti__flag.iti__WF {
  height: 14px;
  background-position: -5478px 0px;
}

.iti__flag.iti__WS {
  height: 10px;
  background-position: -5500px 0px;
}

.iti__flag.iti__XK {
  height: 15px;
  background-position: -5522px 0px;
}

.iti__flag.iti__YE {
  height: 14px;
  background-position: -5544px 0px;
}

.iti__flag.iti__YT {
  height: 14px;
  background-position: -5566px 0px;
}

.iti__flag.iti__ZA {
  height: 14px;
  background-position: -5588px 0px;
}

.iti__flag.iti__ZM {
  height: 14px;
  background-position: -5610px 0px;
}

.iti__flag.iti__ZW {
  height: 10px;
  background-position: -5632px 0px;
}

.iti__flag {
  height: 15px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: url("../images/flags.png");
  background-repeat: no-repeat;
  background-color: #DBDBDB;
  background-position: 20px 0;
}

/*@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("images/flags@2x.png");
    }
}*/
.iti__flag.iti__np {
  background-color: transparent;
}

[giz-print] {
  display: none;
}

@media print {
  body {
    background: #fff !important;
    background-color: #fff !important;
  }
  span.baslik {
    color: #000 !important;
  }
  [giz-no-print] {
    display: none !important;
  }
  [giz-print] {
    display: block !important;
    padding: 0px;
  }
  table.md-table tbody.md-body > tr.md-row, table.md-table tfoot.md-foot > tr.md-row {
    height: 25px !important;
  }
  .frmGunsonu {
    width: 900px;
  }
  .frmGunsonu * {
    line-height: 1;
  }
  .frmGunsonu .md-toolbar-tools {
    color: black !important;
    background: #fff !important;
  }
  .frmGunsonu .tarih {
    display: none !important;
  }
  .frmGunsonu .print-tarih {
    display: block !important;
  }
  .frmGunsonu table {
    border-collapse: collapse !important;
  }
  .frmGunsonu md-card {
    box-shadow: none;
    border: 1px solid #000;
    /*   overflow: hidden;*/
  }
  .frmGunsonu md-card md-card-content {
    padding: 0px;
    /*  overflow: hidden;*/
  }
  .frmGunsonu md-card md-card-content md-table-container {
    /*           overflow: hidden;*/
  }
  .frmGunsonu md-card md-card-content md-table-container table thead tr th {
    color: black;
  }
  .frmGunsonu md-card md-card-content md-table-container table th, .frmGunsonu md-card md-card-content md-table-container table td {
    padding: 0px 3px !important;
    border: 1px solid #2b373e;
    color: black !important;
  }
}
.modal-evrak-turu {
  width: 700px;
  max-width: 80%;
}
.modal-evrak-turu md-dialog-content {
  padding: 25px;
  overflow: hidden;
}
.modal-evrak-turu div.modal-evrak-turu-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  box-sizing: border-box;
}
.modal-evrak-turu div.modal-evrak-turu-container div.modal-evrak-turu-btn {
  flex: 1 0 auto;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 10px;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}
.modal-evrak-turu div.modal-evrak-turu-container div.modal-evrak-turu-btn:hover {
  background-color: #f1f1f1;
}
.modal-evrak-turu div.modal-evrak-turu-container div.modal-evrak-turu-btn img {
  height: 100px;
}
.modal-evrak-turu div.modal-evrak-turu-container div.modal-evrak-turu-btn span {
  display: inline-block;
  font-size: 11pt;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
}
.modal-evrak-turu div.modal-evrak-turu-container div.modal-evrak-turu-btn.active span {
  background: #109d00;
  color: #fff;
}
.modal-evrak-turu div.modal-evrak-turu-container div.modal-evrak-turu-btn.disabled span {
  background: #fff !important;
  color: #ddd !important;
}
.modal-evrak-turu h3 {
  font-weight: 500;
  margin: 0;
}

.change-slip-qty-input {
  width: 100%;
  height: 100%;
  border: 0px;
  text-align: center;
  font-size: 18pt;
  font-weight: 700;
  font-family: Poppins, sans-serif;
  color: rgb(90, 90, 90);
  text-shadow: rgba(0, 0, 0, 0.2) 1px 1px 1px;
  max-width: 35px;
  outline: 0px;
}

.no-paddind-button {
  margin: 0px;
  padding: 0px;
  min-height: initial !important;
  line-height: 0px;
}
.no-paddind-button .material-icons {
  font-size: 18px;
  height: initial !important;
  min-height: initial !important;
  min-width: initial !important;
  width: initial !important;
}

.no-padding-input {
  margin: 0px;
  padding: 0px;
}
.no-padding-input .md-errors-spacer:empty {
  display: none;
}

.fp {
  flex-grow: 1;
}
.fp .sepet .secili-urun {
  background-color: #dddddd;
}
.fp .sepet .detay-button {
  height: 56px;
  border-radius: 50px;
  flex-grow: 1;
}
.fp .fp-layout {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  flex-grow: 1;
}
.fp .fp-layout .fp-groups {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 5px;
  position: relative;
}
.fp .fp-layout .fp-groups > div {
  flex-grow: 1;
}
.fp .fp-layout .fp-groups > div button {
  width: -webkit-fill-available;
  background-color: #273238 !important;
}
.fp .fp-layout .fp-groups:after {
  content: "";
  position: absolute;
  display: block;
  background: #555f65;
  width: calc(100% - 20px);
  box-shadow: 0px 0px 10px 5px #555f65;
  bottom: 0;
  transform: translateX(0);
  z-index: 9;
}
.fp .fp-layout .fp-buttons {
  position: relative;
}
.fp .fp-layout .fp-buttons:before {
  content: "";
  position: absolute;
  display: block;
  background: #555f65;
  width: calc(100% - 20px);
  box-shadow: 0px 0px 10px 5px #555f65;
  top: 0;
  transform: translateX(0);
  z-index: 10;
}
.fp .fp-layout .fp-lists {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  line-height: 1;
  overflow: auto;
  row-gap: 15px;
  padding-bottom: 15px;
  flex-grow: 2;
  align-content: flex-start;
  padding-top: 5px;
}
.fp .fp-layout .fp-lists > div {
  width: 20%;
  max-height: 120px;
  min-height: 100px;
}
.fp .fp-layout .fp-lists > div button {
  white-space: normal;
  line-height: inherit;
  height: 100%;
  display: flex;
  gap: 3px;
  width: -webkit-fill-available;
}
.fp .fp-layout .fp-lists > div button img {
  width: 100%;
  height: 100%;
  border-radius: 3px;
}
.fp .fp-layout .fp-lists > div button .hizli-urun-img {
  max-width: 40%;
}
.fp .fp-layout .fp-lists > div button .fp-button-text {
  width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(100% - 20px);
  flex-grow: 1;
}
.fp .fp-layout .fp-lists::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background-color: #F5F5F5;
  border-radius: 10px;
}
.fp .fp-layout .fp-lists::-webkit-scrollbar {
  width: 8px;
  background-color: #F5F5F5;
  border-radius: 10px;
}
.fp .fp-layout .fp-lists::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  background-color: rgba(0, 0, 0, 0.5);
}
.fp .fp-layout .orta-butonlar button {
  justify-content: space-between;
  padding: 20px 5px 10px 5px;
  min-width: 100%;
}
.fp .fp-layout .orta-butonlar button span {
  white-space: normal;
}

.merkezden-iade div .md-errors-spacer {
  display: none;
}
.merkezden-iade .warning-input {
  background-color: rgba(255, 215, 0, 0.3411764706) !important;
  border-bottom: 1px solid gold !important;
  color: #cba000 !important;
}
.merkezden-iade md-radio-group md-radio-button:not(:first-child) {
  margin-left: 25px;
}
.merkezden-iade .iade-bitir {
  background-color: #2b9630 !important;
  display: flex;
  gap: 20px;
  padding: 2px 20px;
}

.date-input-dark.ng-invalid {
  border-bottom: 1px solid red;
}

.date-input-dark {
  border: 1px solid transparent;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.date-input-dark::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

.date-input-white.ng-invalid {
  border-bottom: 1px solid red;
}

.date-input-white {
  border: 0;
  border-bottom: 1px solid #000;
  background: transparent;
  color: #000;
  font-size: 1rem;
  outline: none;
}

.dark-input {
  border: 1px solid transparent;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  outline: 0;
}

.dark-input option {
  background-color: #555f65;
}

.hover-nowrap {
  overflow: hidden;
  text-overflow: ellipsis;
}

.hover-nowrap:hover {
  white-space: normal;
}

/*
.md-button.md-ink-ripple[disabled] span {
    color: rgba(255,255,255,0.26);
}
*/
md-toolbar .filter-spliter {
  border-right: 2px solid #545e64;
  border-radius: 0;
  width: 1px;
  height: 100%;
}

.btn-sub-text {
  display: flex;
  flex-direction: column;
  line-height: 1.4 !important;
  border-radius: inherit !important;
  padding: 0px !important;
  width: auto !important;
  margin: 0px 5px !important;
}

md-toolbar.md-table-toolbar .md-toolbar-tools {
  padding: 0 15px;
  height: 40px !important;
}

tr.non-stock {
  background: #f8c0c0 !important;
  border-color: #fb8b8b !important;
}
tr.non-stock > td {
  background: #f8c0c0 !important;
  border-color: #fb8b8b !important;
}

.modal-iade-al div.modal-iade-card-list {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
  margin: 10px;
}
.modal-iade-al div.modal-iade-card-list div.ccard {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px 15px 0 15px;
  box-sizing: border-box;
  max-width: 300px;
  width: 200px;
  min-height: 120px;
  border: 1px solid #555;
  border-radius: 10px;
}
.modal-iade-al div.modal-iade-card-list div.ccard.active {
  border: 2px solid #009c12;
}
.modal-iade-al div.modal-iade-card-list div.ccard div.ccard-header {
  display: flex;
  flex-direction: column;
}
.modal-iade-al div.modal-iade-card-list div.ccard div.ccard-header div.bank-logo img {
  height: 25px;
}
.modal-iade-al div.modal-iade-card-list div.ccard div.ccard-header div.bank-name {
  font-size: 12px;
}
.modal-iade-al div.modal-iade-card-list div.ccard div.ccard-footer div.card-amount {
  text-align: right;
}
.modal-iade-al div.modal-iade-card-list div.ccard div.ccard-footer div.action {
  display: flex;
}
.modal-iade-al div.modal-iade-card-list div.ccard div.ccard-footer div.action button {
  flex: 1 0 auto;
}
.modal-iade-al div.modal-iade-card-list div.ccard div.ccard-footer div.action button.ccard-ingenico {
  text-align: center;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-iade-al .bill-tab table thead tr th {
  border: 1px solid #ddd;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #444;
}
.modal-iade-al .bill-tab table thead tr:first-child th {
  background: #91a0a9;
  color: #fff;
}
.modal-iade-al .bill-tab table thead tr:last-child th {
  background: #f7f7f7;
}
.modal-iade-al .bill-tab table tbody tr td {
  font-family: var(--bs-font-monospace);
  text-align: center;
}
.modal-iade-al .bill-tab table tbody tr td:nth-child(7) {
  border-right: 1px solid #ddd;
}
.modal-iade-al .bill-tab table tbody tr td.amount {
  text-align: right;
  padding-right: 20px;
}
.modal-iade-al .bill-tab table tfoot tr {
  border-top: 3px double #91a0a9;
}
.modal-iade-al .bill-tab table tfoot tr td {
  font-family: var(--bs-font-monospace);
  background: #f7f7f7;
  text-align: right;
  padding-right: 20px;
  font-weight: bold;
}
.modal-iade-al .iadeSmsVerified {
  color: green !important;
}

button.md-outline {
  border: 1px solid #ddd;
}

.iade-tutar {
  color: #dd4d4d;
}

md-input-container.outline-input div.md-errors-spacer {
  display: none;
}
md-input-container.outline-input label {
  bottom: initial !important;
  top: -15px;
  left: 10px;
}
md-input-container.outline-input.md-icon-float label {
  left: 46px;
}
md-input-container.outline-input input, md-input-container.outline-input md-select {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  height: 50px;
  padding-left: 15px;
  padding-right: 15px;
}
md-input-container.outline-input input md-select-value, md-input-container.outline-input md-select md-select-value {
  border-bottom: 0;
}
md-input-container.outline-input input[disabled], md-input-container.outline-input input[readonly], md-input-container.outline-input md-select[disabled], md-input-container.outline-input md-select[readonly] {
  border-style: dashed;
  border-color: rgba(0, 0, 0, 0.24);
}
md-input-container.outline-input.md-input-focused label {
  transform: translate3d(0, 10px, 0) scale(0.75);
  background: #fff;
  width: initial !important;
  padding: 0 10px;
}
md-input-container.outline-input.md-input-focused input {
  border: 1px solid rgb(68, 68, 68);
}
md-input-container.outline-input.md-input-has-value label {
  transform: translate3d(0, 10px, 0) scale(0.75);
  background: #fff;
  width: initial !important;
  padding: 0 10px;
}

md-dialog.modal-yetki-iste md-dialog-content {
  position: relative;
}
md-dialog.modal-yetki-iste md-dialog-content md-progress-linear {
  margin-top: 10px;
}
md-dialog.modal-yetki-iste md-dialog-content div.auth-loading-message {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  z-index: 5;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
md-dialog.modal-yetki-iste.auth-loading md-dialog-content div.auth-loading-message {
  visibility: visible;
  opacity: 1;
}

md-dialog.modal-kargo-entegrasyonu {
  width: 800px;
  max-width: 80%;
}
md-dialog.modal-kargo-entegrasyonu div.cargo-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
md-dialog.modal-kargo-entegrasyonu div.cargo-img img {
  width: 100%;
  height: 50px;
  object-fit: contain;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
}

div.info {
  width: 100%;
  padding: 10px 10px 10px 50px;
  border: 1px solid #ddd;
  background: #f1f1f1;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 0.825rem;
  position: relative;
}
div.info.info-warning {
  border-color: #fbd6a7;
}
div.info.info-warning:before {
  content: " ";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: #fa8c05;
  background-size: 30px;
  -webkit-mask: url("/images/exclamation-mark.svg") no-repeat;
  mask: url("/images/exclamation-mark.svg") no-repeat;
}

.chcButtons {
  margin-top: 10px;
}
.chcButtons md-checkbox.md-default-theme:not(.md-checked) .md-icon, .chcButtons md-checkbox:not(.md-checked) .md-icon {
  border-color: rgba(255, 255, 255, 0.54);
}
.chcButtons .chcBox {
  font-size: 16px;
  display: -webkit-flex;
  align-items: center;
  height: 64px;
}

.order-column {
  cursor: pointer;
}

.order-column-asc:after,
.order-column-desc:after {
  display: inline-flex;
  justify-content: space-between;
  font-family: fontawesome;
  font-weight: normal;
  margin-left: 5px;
}

.order-column-asc:after {
  content: "\f160";
}

.order-column-desc:after {
  content: "\f161";
}

/* Chat */
.chat-open .chat-unread-count {
  display: none;
}

#chat-container {
  right: 5px;
  bottom: 5px;
  z-index: 99999;
}
#chat-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 5px;
}

.chat-button {
  position: absolute;
  bottom: 2px;
  right: 22px;
  z-index: 3;
  color: white;
  overflow: visible;
  line-height: 1;
  top: 12px;
  /*
  &:hover .chat-unread-count {
      display: none;
  }*/
}
.chat-button md-icon.ng-scope.material-icons {
  color: white;
}
.chat-button .chat-unread-count {
  position: absolute;
  right: 0;
  top: -4px;
  background-color: #e7533c;
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 1px 3px;
  font-size: 11px;
  border-radius: 3px;
  line-height: 1;
}
.chat-button .chat-unread-count:empty {
  display: none;
}
.chat-button:hover .chat-button-icon {
  color: #e7533c;
  cursor: pointer;
}

/* Dynamic Table */
table.dynamic-table {
  font-size: 0.825rem;
}
table.dynamic-table tr td:first-child,
table.dynamic-table tr th:first-child {
  padding: 0px 15px;
}
table.dynamic-table tr td:not(:first-child),
table.dynamic-table tr th:not(:first-child) {
  padding-right: 15px;
}
table.dynamic-table th {
  color: rgba(0, 0, 0, 0.54);
}
table.dynamic-table td,
table.dynamic-table th {
  padding-top: 3px;
  padding-bottom: 3px;
  color: rgba(0, 0, 0, 0.87);
  border-top: 1px rgba(0, 0, 0, 0.12) solid;
}

/* Dynamic Table pages */
.dynamic-table-pages {
  display: flex;
  gap: 5px;
  border-top: 2px solid #555f65;
}
.dynamic-table-pages .dynamic-table-page {
  transition: all 0.2s;
  padding: 5px 15px;
}
.dynamic-table-pages .dynamic-table-page:not(.dynamic-table-page-disable):hover {
  transition: all 0.2s;
  background-color: #555f65;
  color: white;
}
.dynamic-table-pages .dynamic-table-page-current {
  background-color: #555f65;
  color: white;
  cursor: default;
}
.dynamic-table-pages .dynamic-table-page-disable {
  color: lightgray;
  cursor: default;
}
.dynamic-table-pages .dynamic-table-page:first-child,
.dynamic-table-pages .dynamic-table-page:last-child {
  text-align: center;
  flex-grow: 1;
}

.frmYetkiyok div.text-center {
  padding: 15px;
  color: #bababa;
}
.frmYetkiyok div.text-center i {
  font-size: 48pt;
  margin-bottom: 15px;
}

.notification {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-right: 0.8vh;
}

.notification .badge {
  position: absolute;
  top: -4px;
  right: 5px;
  padding: 4px 6px;
  border-radius: 5px;
  background-color: red;
  color: white;
  font-size: 10px;
}

div.crm-check-list-container {
  display: block;
  width: 100%;
}
div.crm-check-list-container > div.crm-check {
  display: inline-block;
  background: rgb(224, 224, 224);
  color: rgb(66, 66, 66);
  border-radius: 16px;
  padding: 5px 10px;
  margin: 0 10px 10px 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
div.crm-check-list-container > div.crm-check > md-icon {
  margin-right: 5px;
}
div.crm-check-list-container > div.crm-check > div.crm-check-amount {
  display: inline-block;
}
div.crm-check-list-container > div.crm-check.active {
  background: rgb(0, 151, 26);
  color: #fff;
}

div.sorting-container {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 4px;
  background: #fff;
}
div.sorting-container div.sorting-title {
  display: block;
  width: 100%;
  background: #f1f1f1;
  padding: 8px 12px;
  font-size: 13pt;
  font-weight: 700;
}
div.sorting-container div.shelf-container {
  width: 100%;
  /*padding: 15px;*/
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
div.sorting-container div.shelf-container div.shelf {
  min-height: 110px;
  border: 1px solid #ddd;
  position: relative;
  cursor: pointer;
  background-color: #dddddd;
}
div.sorting-container div.shelf-container div.shelf span.shelf-number {
  position: absolute;
  top: 50%;
  display: block;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  font-size: 16pt;
  font-weight: 700;
  text-align: center;
}
div.sorting-container div.shelf-container div.shelf span.shelf-statu {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  font-size: 11pt;
  font-weight: 500;
  text-align: center;
  padding: 3px 2px;
  border-bottom: 1px solid #ddd;
  background: #f1f1f1;
}
div.sorting-container div.shelf-container div.shelf div.shelf-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f1f1f1;
}
div.sorting-container div.shelf-container div.shelf div.shelf-progress div.shelf-progress-top {
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 3px 5px;
  font-weight: 500;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}
div.sorting-container div.shelf-container div.shelf div.shelf-progress div.shelf-progress-bar {
  background: #319307;
  width: 0;
  height: 10px;
  transition: all 0.2s ease-in-out;
}
div.sorting-container div.shelf-container div.shelf.sort-start span.shelf-statu {
  background: #ae2dc2;
  color: #fff;
}
div.sorting-container div.shelf-container div.shelf.sort-start div.shelf-progress div.shelf-progress-bar {
  background: #ae2dc2 !important;
}
div.sorting-container div.shelf-container div.shelf.sort-end span.shelf-statu {
  background: #3f4bae;
  color: #fff;
}
div.sorting-container div.shelf-container div.shelf.sort-end div.shelf-progress div.shelf-progress-bar {
  background: #3f4bae !important;
}
div.sorting-container div.shelf-container div.shelf.packet-start span.shelf-statu {
  background: #f29625;
  color: #fff;
}
div.sorting-container div.shelf-container div.shelf.packet-start div.shelf-progress div.shelf-progress-bar {
  background: #f29625 !important;
}
div.sorting-container div.shelf-container div.shelf.packet-end span.shelf-statu {
  background: #319307;
  color: #fff;
}
div.sorting-container div.shelf-container div.shelf.packet-end div.shelf-progress div.shelf-progress-bar {
  background: #319307 !important;
}

.right-click-menu-container {
  box-sizing: border-box;
  position: absolute;
  background-color: #fff;
  z-index: 99999;
  border-radius: 10px;
  /*box-shadow: 0px 0px 5px 0px #000000;*/
}

.report md-checkbox .md-default-theme:not(.md-checked) .md-icon, .report md-checkbox:not(.md-checked) .md-icon {
  border-color: white !important;
}

.report-table {
  font-size: 12px;
}
.report-table th > div {
  pointer-events: none;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 2px;
  align-items: flex-end;
}
.report-table th.orderby div:after {
  font-family: "FontAwesome", sans-serif;
  content: "";
  color: inherit;
  display: inline-block;
  margin-left: 5px;
  float: right;
  color: #e9447d;
  font-weight: normal;
}
.report-table th.orderby.orderbyasc div:after {
  content: "\f160";
}
.report-table th.orderby.orderbydesc div:after {
  content: "\f161";
}
.report-table th.orderby.orderbyasc[type=int] div:after,
.report-table th.orderby.orderbyasc[type=float] div:after {
  content: "\f162";
}
.report-table th.orderby.orderbyasc[type=int] div:after,
.report-table th.orderby.orderbydesc[type=float] div:after {
  content: "\f163";
}
.report-table th.orderby.orderbyasc[type=string] div:after {
  content: "\f15d";
}
.report-table th.orderby.orderbydesc[type=string] div:after {
  content: "\f15e";
}
.report-table th[type=int], .report-table th[type=float],
.report-table td[type=int], .report-table td[type=float] {
  text-align: end;
}
.report-table th[type=datetime], .report-table th[type=bool],
.report-table td[type=datetime], .report-table td[type=bool] {
  text-align: center;
}
.report-table .bool-true {
  display: inline;
  padding: 1px 6px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  border-radius: 0.25em;
  background-color: #5cb85c;
}
.report-table .bool-false {
  display: inline;
  padding: 1px 6px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  border-radius: 0.25em;
  background-color: #d9534f;
}

.close-report .sticky-header thead tr th {
  z-index: 0 !important;
}

.custom-toggle {
  position: relative;
  width: 100%;
  max-width: 230px;
  height: 40px;
  background-color: #ccc;
  border-radius: 20px;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.3s;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.custom-toggle .ball {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(40px - 2 * 4px);
  width: calc(40px - 2 * 4px);
  background-color: white;
  border-radius: 50%;
  transition: left 0.3s;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.custom-toggle .ball .icon-active,
.custom-toggle .ball .icon-passive {
  position: absolute;
  transition: opacity 0.3s;
}
.custom-toggle .ball .icon-active {
  opacity: 0;
}
.custom-toggle .ball .icon-passive {
  opacity: 1;
}
.custom-toggle .text {
  position: absolute;
  width: 100%;
  text-align: center;
  line-height: 40px;
  font-size: 14px;
  color: white;
  z-index: 1;
  pointer-events: none;
}
.custom-toggle .text .active-text {
  display: none;
}
.custom-toggle .text .passive-text {
  display: inline;
}
.custom-toggle.active {
  background-color: #28a745;
}
.custom-toggle.active .ball {
  left: calc(100% - 40px + 4px);
}
.custom-toggle.active .ball .icon-active {
  opacity: 1;
}
.custom-toggle.active .ball .icon-passive {
  opacity: 0;
}
.custom-toggle.active .text .active-text {
  display: inline;
}
.custom-toggle.active .text .passive-text {
  display: none;
}

.custom-toggle-sm {
  position: relative;
  width: 100%;
  max-width: 230px;
  height: 32px;
  background-color: #ccc;
  border-radius: 16px;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.3s;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.custom-toggle-sm .ball {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(32px - 2 * 4px);
  width: calc(32px - 2 * 4px);
  background-color: white;
  border-radius: 50%;
  transition: left 0.3s;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.custom-toggle-sm .ball .icon-active,
.custom-toggle-sm .ball .icon-passive {
  position: absolute;
  transition: opacity 0.3s;
}
.custom-toggle-sm .ball .icon-active {
  opacity: 0;
}
.custom-toggle-sm .ball .icon-passive {
  opacity: 1;
}
.custom-toggle-sm .text {
  position: absolute;
  width: 100%;
  text-align: center;
  line-height: 32px;
  font-size: 14px;
  color: white;
  z-index: 1;
  pointer-events: none;
}
.custom-toggle-sm .text .active-text {
  display: none;
}
.custom-toggle-sm .text .passive-text {
  display: inline;
}
.custom-toggle-sm.active {
  background-color: #28a745;
}
.custom-toggle-sm.active .ball {
  left: calc(100% - 32px + 4px);
}
.custom-toggle-sm.active .ball .icon-active {
  opacity: 1;
}
.custom-toggle-sm.active .ball .icon-passive {
  opacity: 0;
}
.custom-toggle-sm.active .text .active-text {
  display: inline;
}
.custom-toggle-sm.active .text .passive-text {
  display: none;
}

.custom-toggle-lg {
  position: relative;
  width: 100%;
  max-width: 230px;
  height: 60px;
  background-color: #ccc;
  border-radius: 30px;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.3s;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.custom-toggle-lg .ball {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(60px - 2 * 4px);
  width: calc(60px - 2 * 4px);
  background-color: white;
  border-radius: 50%;
  transition: left 0.3s;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.custom-toggle-lg .ball .icon-active,
.custom-toggle-lg .ball .icon-passive {
  position: absolute;
  transition: opacity 0.3s;
}
.custom-toggle-lg .ball .icon-active {
  opacity: 0;
}
.custom-toggle-lg .ball .icon-passive {
  opacity: 1;
}
.custom-toggle-lg .text {
  position: absolute;
  width: 100%;
  text-align: center;
  line-height: 60px;
  font-size: 14px;
  color: white;
  z-index: 1;
  pointer-events: none;
}
.custom-toggle-lg .text .active-text {
  display: none;
}
.custom-toggle-lg .text .passive-text {
  display: inline;
}
.custom-toggle-lg.active {
  background-color: #28a745;
}
.custom-toggle-lg.active .ball {
  left: calc(100% - 60px + 4px);
}
.custom-toggle-lg.active .ball .icon-active {
  opacity: 1;
}
.custom-toggle-lg.active .ball .icon-passive {
  opacity: 0;
}
.custom-toggle-lg.active .text .active-text {
  display: inline;
}
.custom-toggle-lg.active .text .passive-text {
  display: none;
}
