@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-around { justify-content: space-around } .fw-j-center { justify-content: center }
.fw-a-center { align-items: center }
.fw-wrap { flex-wrap: wrap; }


/*
  -----------
  | APP CSS |
  -----------
*/
#app, #app .page {
  display: block;
  min-height: 100%;
}

.header {
  position: relative;
  top: 0; left: 0; right: 0;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding: 1rem 0;
  background-color: #fff;
  border-bottom: 1px solid #EBEDF3;
}

.header-wrapper {
  position: relative;
  display: flex; flex: 1;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}

.header-left, .header-right { 
  display: flex; 
  align-items: center; 
}

.app-logo {
  display: flex;
  width: auto; height: 3rem;
  margin-right: 3rem;
}

.header-right .app-logo {
  height: 2.375rem;
  margin-top: .375rem;
  margin-right: 0;
}

.header-right .logout {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem; height: 2.375rem;
  padding: 0; margin-left: 1.5rem;
  border-radius: 8px;
  background-color: var(--light-100);
}

.header-right .logout .feather {
  width: 1.25rem; height: 1.25rem;
}

.page-title {
  display: flex;
  font: normal 600 1.375rem/1.6667 'Inter', sans-serif;
  color: var(--orange);
  margin-top: .5rem;
}

.main {
  position: relative;
  display: flex;
  flex-direction: column;
  left: 0; top: 0; right: 0; bottom: 0;
  background-color: #f1f2f8;
  min-height: 100vh;
}

.content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: var(--default-pad-y);
  padding-bottom: var(--default-pad-y);
}

.info-table {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid var(--border-lighter);
  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);
}

.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); }

.announcements-title {
  font-weight: 600;
  margin-bottom: .75rem;
}

.announcements {
  display: flex;
  flex-direction: column;
}

.announcements > li {
  list-style-type: decimal;
  margin-bottom: 1rem;
  margin-inline-start: 1rem;
}
.announcements li::marker { font-weight: 600; }

.announcements li strong { color: var(--red); }
.announcements li b { font-weight: 600; }

.announcements > li > ul > li {
  list-style-type: lower-alpha;
  margin-inline-start: 1rem;
}

.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;
}

.reservation-options {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-x: auto;
}
.reservation-options.reservation-date { margin-bottom: 2rem; }
.reservation-options .button:not(.reservation-date-submit) {
  width: 170px;
  margin-right: .5rem;
  margin-bottom: .5rem;
  background: #fff;
  color: #8a8b8c;
  border: 1px solid var(--border-light);
}
.reservation-options .button:not(.reservation-date-submit):hover { background-color: var(--light-100) }
.reservation-options .button:not(.reservation-date-submit).button-primary {
  border-bottom-width: 2px;
  border-bottom-color: #2f6ade;
  font-weight: 600;
  color: #2f6ade;
}

.reservation-options .form-label {
  text-align: center;
  color: #89898b;
}

.reservation-date-submit {
  margin-top: 1.5rem;
  transition: 150ms opacity ease, 150ms filter ease;
}
.reservation-date-submit:disabled {
  pointer-events: none;
  opacity: .8;
  filter: grayscale(.9);
}

.datepicker-submitter {
  display: flex;
  justify-content: center;
}

.responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.datepicker-table {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.picker {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  width: calc((24 * 53px) + (23 * 4px));
  justify-content: center;
}

.picker .hour {
  display: flex;
  flex-direction: column;
  width: 53px;
  background-color: #bebebf;
  margin: 0 2px;
  border-radius: 8px;
}
.picker .hour:first-child { margin-left: 0 }
.picker .hour:last-child { margin-right: 0 }

.picker .head {
  display: flex;
  align-items: center;
  flex-direction: column;
  font: normal 500 12px/1.5 'Inter', sans-serif;
  padding: .25rem 0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #000d4e;
  color: #fff;
}
.picker .head div:first-child {
  padding-bottom: 3px;
  margin-bottom: 3px;
  border-bottom: 1px solid #7275aa;
}

.picker .focused { background-color: #000d4e }

.picker .body {
  display: flex;
  flex-direction: column;
  padding: 2px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.picker .body .queue {
  display: flex;
  width: 100%; height: 40px;
  cursor: pointer;
  background-color: #fff;
  margin-bottom: 2px;
}
.picker .body .queue:last-child {
  margin-bottom: 0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}


.picker .body .queue.unavailable.reserved {
  background-color: #636363;
}

.picker .body .queue.unavailable {
  background-color: #316add;
  cursor: not-allowed;
}
.picker .body .queue.unavailable.has-saled { background-color: #e3221d }

.picker .body .queue.selected {
  background-color: #098b41 !important;
}


.color-meanings {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  width: 100%;
  min-width: 1000px;
}

.color-meanings .color {
  display: flex;
  align-items: center;
  margin-right: 3rem;
}

.color-meanings .color-palette {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem; height: 2.5rem;
  margin-right: .875rem;
  border-radius: 8px;
  color: #fff;
}
.color-meanings .color-palette[data-color="white"] { background-color: #fff; border: 1px solid var(--green); color: var(--green); }
.color-meanings .color-palette[data-color="red"] { background-color: var(--red) }
.color-meanings .color-palette[data-color="blue"] { background-color: var(--blue) }
.color-meanings .color-palette[data-color="grey"] { background-color: #646262 }
.color-meanings .color-palette[data-color="green"] { background-color: var(--green) }

.color-meanings .color-palette .feather {
  display: flex;
  width: 1.125rem; height: 1.125rem;
}

.color-meanings .color-mean {
  font-weight: 500;
  font-size: 14px;
  color: #000d4e;
}

/* GIRIS.HTML */
.background-image,
.background-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
}

.background-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
  width: 100%;
}

.background-overlay {
  background-color: rgba(0, 0, 0, .3);
  z-index: 0;
}

.login-wrapper {
  position: relative;
  display: flex;
  height: 100vh;
  z-index: 3;
}

.login-wrapper .image {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 20px;
  height: 100vh;
  overflow: hidden;
}
.login-wrapper .image img:first-child {max-height: 100px;}
.login-wrapper .image img:last-child { max-height: 135px }

/*.login-wrapper .image img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  z-index: -1;
}*/

.login-wrapper .announcements-title {
  position: relative;
  display: flex;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 1rem;
  z-index: 1;
}

.login-wrapper .announcements {
  display: flex;
  flex-direction: column;
  z-index: 1;
  max-height: calc(100vh - 250px);
}

.login-wrapper .announcements {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem;
  max-width: 990px;
  /* max-height: 750px; */
  border-radius: 8px;
  border: 2px solid rgb(155,49,89);
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(155,49,89, .24);
  overflow-y: auto;
}
.login-wrapper .announcement:not(:last-child) { margin-bottom: 1.25rem }

.login-wrapper .announcement-date {
  font-size: 14px;
  color: #868a8b;
  margin-bottom: .25rem;
}

.login-wrapper .announcement-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-size: 1.125rem;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: .75rem;
}

.login-wrapper .announcement-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-size: 1rem;
  color: var(--dark-600);
}

.login-wrapper .announcement-desc p:not(:last-child) {
  margin-bottom: 1rem;
}

.login {
  display: flex;
  flex: 1;
  height: 100%;
  /*background-color: rgb(155,49,89);*/
  background-color: #0076C7;
  padding: 20px;
}

.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: #F3F3F3DD;
  border-radius: 16px;
  max-width: 400px;
  box-shadow: 0 3px 8px rgba(4, 4, 4, .3);
}
.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;
}

#countdown {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 110px;
  height: 60px;
  display: none;
  justify-content: center;
  align-items: center;
  border-radius: 36px;
  background-color: #ea622eee;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  z-index: 10;
}

.page-intro .page-main {
  position: relative;
  width: 100vw; height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px;
}

.page-intro .app-logo {
  height: 6rem;
  margin-bottom: 5rem;
  margin-right: 0;
}

.page-intro .routes {
  display: flex;
}

.page-intro .routes .button:not(:last-child) {
  margin-right: 1rem;
}

.iptalBut {
    text-transform: uppercase;
    background: #ce3d3d;
    padding: 4px 8px;
    color: #fff;
    font-size: 12px;
    font-weight:bold;
    margin-bottom:10px;
    display:inline-block;
}
.iptalBut:hover {
    
    background: #ad3333;
   color:#FFF;
}
.captcha {
    margin-top: 20px;
}