@import url('variables.css');
@import url('base.css');
@import url('media.css');

/* FLEX */
.flex-wrapper { display: flex; flex: 1 }
.fw-row { flex-direction: row } .fw-column { flex-direction: column }
.fw-j-sb { justify-content: space-between } .fw-j-center { justify-content: center }
.fw-a-center { align-items: center }
.p-r { position: relative; }

.comma-after::after {
  content: ',';
  position: absolute;
  left: 50%; top: 50%;
  font-size: 24px;
  font-weight: 900;
  transform: translate(-50%, -40%);
}

.datepicker {
  max-width: 150px;
}

.mt-negative {
  margin-top: -2.05rem;
}

/*
  -----------
  | APP CSS |
  -----------
*/
#app, #app .page {
  display: block;
  min-height: 100%;
}

.sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 280px; height: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--night-blue);
  overflow-x: hidden; overflow-y: auto;
  transition: 150ms width ease;
  box-shadow: 0 2px 12px rgb(0 0 0 / 40%);
  z-index: 10;
}
.sidebar.folded { width: 65px; }
.sidebar.opened { display: flex !important; width: 280px; }

.sidebar::-webkit-scrollbar {
  width: 12px;
}

.sidebar::-webkit-scrollbar-track {
  background: var(--night-blue);
}
 
.sidebar::-webkit-scrollbar-thumb {
  background: rgba(78, 172, 235, 0.37); 
  border-radius: 8px;
  border: 4px solid rgba(255, 255, 255, 0);
  background-clip: padding-box;
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background-color: var(--blue); 
}

.sidebar-header {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%; height: 60px;
  padding: 0 1rem;
  background-color: var(--night-blue-darker);
}
.sidebar.folded .sidebar-header {
  padding: 0;
  justify-content: center;
}

.toggle-folding-sidebar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem; height: 2rem;
  padding: 0;
}
.toggle-folding-sidebar .feather { width: 1.375rem; height: 1.375rem; margin: 0; }

.sidebar-body {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%; min-height: calc(100% - 60px);
  padding: 0 1rem;
}
.sidebar.folded .sidebar-body { padding: 0; }

.orders-navigation, .navigation {
  margin: 1.5rem 0;
}

.orders-navigation li > a {
  background-color: rgba(255, 255, 255, .09);
}
.sidebar.folded .orders-navigation li > a {
  background-color: transparent;
}

.orders-navigation li > a .icon {
  background-color: transparent !important;
  padding: 0 !important; 
}
.sidebar.folded .orders-navigation li > a .icon {
  padding: .5rem !important;
  background-color: rgba(255, 255, 255, .09) !important;
}

.orders-navigation li > a .icon img {
  width: 48px;
  height: 48px;
}
.orders-navigation li > a .icon img[src="/uploads/plus-circle.png"] {
  width: 40px; height: 40px;
}

.sidebar.folded .orders-navigation li > a .icon img {
  width: 32px;
  height: 32px;
}
.sidebar.folded .orders-navigation li > a .icon img[src="/uploads/plus-circle.png"] {
  width: 28px; height: 28px;
}


.navigation-title {
  display: flex;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f3f4f6;
  font: normal 600 11px/1.6667 'Inter', sans-serif;
  margin-bottom: .75rem;
}

.sidebar.folded .navigation-title { display: none; }

.navigation, .navigation > ul {
  position: relative;
  display: flex;
  flex-direction: column;
}

.navigation li > a {
  display: flex;
  align-items: center;
  padding: .5rem .75rem;
  margin-bottom: .5rem;
  border-radius: 8px;
  font-size: 14px;
  color: #d1d2d6;
  transition: 150ms color ease, 150ms background-color ease;
  white-space: nowrap;
}
.navigation li > a.active {
  background-color: rgba(7, 138, 224, 0.17);
  color: #fff;
  font-weight: 500;
}
.navigation li > a:hover {
  background-color: rgba(0, 118, 199, .17);
} 

.navigation li > a .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: .75rem;
  border-radius: 8px;
  padding: .5rem;
  background-color: rgba(255, 255, 255, .09);
}

.sidebar.folded .navigation li > a { justify-content: center }
.sidebar.folded .navigation li > a > .icon { margin-right: 0; }
.sidebar.folded .navigation li > a > span:not(.icon) { display: none; }

.navigation li > a .icon .feather { width: 1.125rem; height: 1.125rem; }

.logout {
  display: flex;
  justify-content: center;
  margin-top: auto;
  padding: 0 1rem 1rem;
}

.header .logout-button {
  padding: 10px 12px;
  background-color: var(--blue);
  color: #fff;
}
.header .logout-button .feather { margin-right: 0; }
.header .logout-button:hover {
  background-color: var(--blue-dark);
  color: #fff;
}

.logout-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 9px 16px;
  background-color: rgba(255, 255, 255, .12);
  border-radius: 8px;
  font: normal 500 14px/1.6667 'Inter', sans-serif;
  color: #d1d2d6;
  transition: 150ms color ease, 150ms background-color ease;
}
.logout-button:hover { color: #fff; background-color: rgba(255, 255, 255, .09); }

.logout-button .feather {
  width: 1.125rem; height: 1.125rem;
  margin-right: .5rem;
}

.sidebar.folded .logout-button span { display: none }
.sidebar.folded .logout-button .feather { margin-right: 0; }

.main {
  position: relative;
  display: flex;
  flex-direction: column;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin-left: 280px;
  background-color: #d3e3ea;
  transition: 250ms margin-left ease;
  min-height: 100vh;
}
.sidebar.folded ~ .main { margin-left: 65px; }

.header {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%; height: 60px;
  background-color: #fff;
  border-bottom: 1px solid #EBEDF3;
  padding: var(--default-pad);
}

.header .logos {
  display: flex;
  align-items: center;
}

.header .logos > li {
  display: flex;
  height: 2rem; width: auto;
  margin-right: 1.25rem;
}
.header .logos > li:last-child {/* height: 1.625rem; *//* margin-top: .25rem; */}

.header .mobile-sidebar-toggler {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 3rem; height: 2.5rem;
}
.header .mobile-sidebar-toggler .feather { margin: 0; }

.subbanner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%; height: 50px;
  padding: var(--default-pad);
  background-color: #fff;
  border-bottom: 1px solid #EBEDF3;
}

.subbanner .page-name {
  display: flex;
  align-items: center;
  font: normal 600 16px/1.6667 'Inter', sans-serif;
  color: var(--dark-300);
}

.home-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.375rem; height: 2.375rem;
  border-radius: 8px;
  background-color: var(--orange);
  color: #fff;
  margin-right: .5rem;
}
.home-button:hover {
  background-color: var(--orange-dark);
  color: #fff;
}
.home-button .feather { width: 1.25rem; height: 1.25rem; }

.return-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.375rem; height: 2.375rem;
  border-radius: 8px;
  background-color: var(--light-100);
  color: #181a1b;
  margin-right: 1rem;
}
.return-button:hover {
  background-color: var(--light-300);
  color: #181a1b;
}
.return-button .feather { width: 1.25rem; height: 1.25rem; }

.subbanner .details {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  color: var(--dark-600);
  font-weight: 500;
  font-size: 14px;
}

.content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--default-pad-y);
  background: #d3e3ea;
}

.add-product {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-left: auto;
}
.add-product .feather {
  margin-right: .5rem;
  width: 1.125rem; height: 1.125rem;
}

.total-flex-container {
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
}

.total-flex-container .total-column {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  width: 100%;
}
.total-flex-container .total-column:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}

.total-flex-container .total-row {
  display: flex;
  flex: 1;
  padding: .5rem 1rem;
}
.total-flex-container .total-row:first-child { font-weight: 600; }
.total-flex-container .total-row:last-child { justify-content: flex-end; border-left: 1px solid #e0e0e0; }

.total-details {
  display: flex;
  flex-flow: row;
  align-items: stretch;
}

.total-details .details-row {
  display: flex; flex: 1;
  flex-direction: column;
  border: 1px solid #e0e0e0;
  border-left-width: 0;
}
.total-details .details-row:first-child {
  border-left: 1px solid #e0e0e0;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  overflow: hidden;
}
.total-details .details-row:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  overflow: hidden;
}

.total-details .details-row .title {
  font-weight: 600;
  padding: .5rem;
  background-color: #eee;
  border-bottom: 1px solid #d0d0d0;
}

.total-details .details-row .details-content {
  padding: .5rem;
  text-align: right;
}

.order-actions {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
.order-actions .actions {
  display: flex;
  justify-content: flex-end;
}

.warning {
  display: flex;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: rgba(201, 44, 44, .15);
  color: rgb(201, 44, 44);
  border-radius: 8px;
}

.announcements {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.announcements-header {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}

.announcements-title {
  display: flex; flex: 1;
  padding: .5rem 1rem;
  background-color: var(--white-secondary);
  font-weight: 600;
}
.announcements-title:first-child { border-right: 1px solid var(--border-lighter); }

.announcement {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 0;
  border: 1px solid var(--border-lighter)
}

.announcement-content,
.announcement-date {
  display: flex; flex: 1;
  padding: .5rem 1rem;
}

.announcement-date {
  display: flex; flex: 1;
  border-left: 1px solid var(--border-lighter);
}

.info-table {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid var(--border-lighter);
  border-radius: 12px;
  overflow-x: auto;
}

.info-table .info-column {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.info-table .info-column:not(:last-child) { border-bottom: 1px solid var(--border-lighter); }

.info-table .info-row {
  display: flex;
  align-items: center;
  padding: .5rem 1rem;
}

.info-table .info-row:first-child {
  font-weight: 600;
  width: 250px;
  border-right: 1px solid var(--border-lighter);
  background: #f4f6f8;
}

.info-table .row-wrapper {
  display: flex; flex: 1;
  align-items: center;
}

.info-table .row-inner {
  display: flex; flex: 1;
}

.info-table .row-inner:first-child { border-right: 1px solid var(--border-lighter); }

#odenecekTutarKurus::before {
  content: ',';
  position: absolute;
  left: 0;
}

.product-type-select {
  display: flex;
  width: 200px;
  margin-left: 1.5rem;
}

.product-image {
  display: flex;
  justify-content: center;
}

.product-image,
.product-image img {
  max-height: 400px;
}

.credit-card {
  width: 320px;
  height: 200px;
  -webkit-perspective: 600px;
  -moz-perspective: 600px;
  perspective:600px;
  margin: 0 auto;
}

.card__reader {
  width: 50px;
  height: 40px;
  background: radial-gradient(#d9a56c, #b18457);
  border-radius: 5px;
  position: absolute;
  overflow: hidden;
}

.card__reader--risk {
  width: 50px;
  height: 40px;
  border-radius: 13px;
  background: transparent;
  border: 1px solid #666;
  position: absolute;
  z-index: 0;
}

.card__reader--risk-one {
  transform: translate(37px, 15px);
}

.card__reader--risk-two {
  transform: translate(15px, 30px);
}

.card__reader--risk-three {
  transform: translate(-37px, -15px);
}

.card__reader--risk-four {
  transform: translate(-15px, -30px);
}

.card__part {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, .14);
  top: 0;
  position: absolute;
  z-index: 1000;
  left: 0;
  display: inline-block;
  width: 320px;
  height: 200px;
  background-color: var(--orange);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  -webkit-transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -ms-transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}

.card__front{
  padding: 18px;
  -webkit-transform: rotateY(0);
  -moz-transform: rotateY(0);
}

.card__back {
  padding: 18px 0;
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
}

.card__black-line {
  margin-top: 5px;
  height: 38px;
  background-color: #303030;
}

.card__logo {
  height: 16px;
}

.card__front-logo{
  position: absolute;
  top: 18px;
  right: 18px;
}
.card__square {
  border-radius: 5px;
  height: 30px;
}

.card_numer {
  display: block;
  width: 100%; height: 33px;
  word-spacing: 4px;
  font-size: 20px;
  letter-spacing: 2px;
  color: #fff;
  text-align: left;
  margin-bottom: 20px;
  margin-top: 60px;
}

.card__space-75 {
  width: 75%;
  float: left;
}

.card__space-25 {
  width: 25%;
  float: left;
}

.card__label {
  font-size: 10px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1px;
}

.card__info {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  margin-top: 5px;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.card__back-content {
  padding: 15px 15px 0;
}
.card__secret--last {
  color: #303030;
  text-align: right;
  margin: 0;
  font-size: 14px;
}

.card__secret {
  height: 33px;
  padding: 5px 12px;
  background-color: #fff;
  position: relative;
}

.card__secret:before{
  content:'';
  position: absolute;
  top: -3px;
  left: -3px;
  height: calc(100% + 6px);
  width: calc(100% - 42px);
  border-radius: 4px;
  background: repeating-linear-gradient(45deg, #ededed, #ededed 5px, #f9f9f9 5px, #f9f9f9 10px);
}

.card__back-logo {
  position: absolute;
  bottom: 15px;
  right: 15px;
}

.card__back-square {
  position: absolute;
  bottom: 15px;
  left: 15px;
}

.payment-state-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  color: #fff;
}
.payment-state-circle.successful-circle { background-color: var(--green) }
.payment-state-circle.unsuccessful-circle { background-color: var(--red) }

.payment-state-message {
  font: normal 600 1.25rem/1.6667 'Inter', sans-serif;
}

.product-image-viewer {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  background-color: rgba(0, 0, 0, .93);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: 250ms opacity ease, 250ms visibility ease;
  z-index: 9999;
}
.product-image-viewer.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.product-image-viewer .product-image {
  width: 100%;
}

.product-image-viewer .product-image,
.product-image-viewer .product-image .product-image-view { max-height: 100% }

.close-viewer {
  position: absolute;
  top: 20px; right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem; height: 3rem;
  color: #fff;
  background-color: transparent;
}

/* GIRIS.HTML */
.login-wrapper {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  height: 100vh;
}

.login-wrapper .image {
  display: flex;
  width: 50%;
  border-left: 8px solid var(--blue);
  border-top: 8px solid var(--blue);
  border-bottom: 8px solid var(--green);
  border-right: 8px solid var(--green);
  padding: 50px;
}

.image .background-image {
  display: flex;
  width: 100%; height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.background-pattern {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('../images/pattern.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: .15;
  z-index: 0;
}

.login {
  display: flex;
  flex: 1;
  background-color: var(--blue);
}

.login .logo {
  display: flex;
  justify-content: center;
  height: 69px; 
  margin-top: 1.5rem 
}
.login .login-nav {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.login .login-nav-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  min-width: 150px;
  text-transform: uppercase;
  background-color: #b4b4b4;
  color: #fff;
  font-weight: 700;
  -webkit-transition: .15s background-color ease;
  -moz-transition: .15s background-color ease;
  -o-transition: .15s background-color ease;
  transition: .15s background-color ease;
}
.login .login-nav-btn.nav-active { background-color: var(--orange); }
.login .login-nav-btn:first-child { border-top-left-radius: 6px; }
.login .login-nav-btn:last-child { border-top-right-radius: 6px; }

.login-block {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #F3F3F3;
  border-radius: 12px;
  max-width: 400px;
  box-shadow: 0 3px 8px rgba(4, 4, 4, .3);
  z-index: 2;
}
.login-block .tab-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-800);
  padding: 1.5rem 1.25rem .625rem;
  text-align: center;
} 
.login-block .form {
  padding: .625rem 1.25rem 1.5rem;
}
.login-block .form .form-control {
  border: 1px solid var(--border-light);
  border-radius: 50px;
  box-shadow: none;
  padding: .875rem 1.25rem;
}
.login-block .form .form-control:focus { border-color: var(--orange); }

.login-wrapper .btn-return {
  position: absolute;
  bottom: 30px; left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  -moz-transform: translate3d(-50%, 0, 0);
  -o-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  z-index: 10;
}

.balkupu-transparan-logo {
  display: none;
  position: absolute;
  bottom: 1rem; right: 1rem;
  width: 50%; height: auto;
  opacity: .5;
  z-index: 1;
} 

span.tl {
    margin-left: 4px;
}