/*
* Components
*/
.inputField {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 0 25px;
  align-items: start;
}
.inputField label {
  padding: 7px 0;
  flex: 0 0 100%;
  margin: 0;
}
.inputField .field-wrapper {
  flex: 1 0 100%;
  max-width: 100%;
}
.inputField textarea {
  margin-bottom: -8px;
}
.inputField .dropdown-toggle {
  margin: 0;
  font-weight: normal;
  width: 100%;
  padding: 7px 10px;
  border-radius: 5px;
  border: 1px solid transparent;
  text-align: left;
}
.inputField .dropdown-toggle:after {
  float: right;
  margin: 10px 0;
}
.inputField.error input,
.inputField.error textarea,
.inputField.error .dropdown,
.inputField.error .checkboxList {
  border: 1px solid #f00;
}
.inputField .tabs .tabsMenu {
  display: flex;
}
.inputField .tabs .tabsMenu .tabMenu {
  margin-bottom: 2px;
  padding: 7px 10px;
  margin-right: 2px;
  text-align: center;
  flex-grow: 1;
  background: #444444;
  cursor: pointer;
  hyphens: auto;
}
.inputField .tabs .tabsMenu .tabMenu:first-child {
  border-radius: 5px 0 0 0;
}
.inputField .tabs .tabsMenu .tabMenu:last-child {
  margin-right: 0;
  border-radius: 0 5px 0 0;
}
.inputField .tabs .tabsMenu .tabMenu.active {
  background: #666;
}
.inputField .tabs .tabsContent textarea {
  min-height: 280px;
  border-radius: 0 0 5px 5px;
}
@media (min-width: 768px) {
  .inputField label {
    flex: 0 0 20%;
    margin: 0;
  }
  .inputField .field-wrapper {
    flex: 1 0 80%;
    max-width: 80%;
  }
}
.tickets {
  overflow: hidden;
}
.ticketsSwipeContainer {
  display: flex;
  flex-direction: row;
  padding-left: 5%;
  width: fit-content;
}
.ticketsSwipeContainer .ticket {
  position: relative;
  flex: 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  height: fit-content;
  margin: 5px 50px;
  padding-bottom: 50px;
  color: #333;
  background-color: #fff;
  border-radius: 15px;
  border: 4px solid #006633;
  box-shadow: 0 0 0 3px #fff;
  user-select: none;
  cursor: pointer;
}
@media (min-width: 768px) {
  .ticketsSwipeContainer .ticket {
    min-height: 600px;
  }
}
.ticketsSwipeContainer .ticket:before,
.ticketsSwipeContainer .ticket:after {
  content: '';
  position: absolute;
  top: 5px;
  left: -16px;
  z-index: -1;
  height: calc(100% - 10px);
  width: 10px;
  background: radial-gradient(circle, transparent, transparent 50%, #fbfbfb 50%, #fbfbfb 100%) -7px -8px repeat-y;
  background-size: 20px 20px;
}
.ticketsSwipeContainer .ticket:after {
  left: auto;
  right: -14px;
  width: 12px;
  background: radial-gradient(circle, transparent, transparent 50%, #fbfbfb 50%, #fbfbfb 100%) 1px -8px repeat-y;
  background-size: 20px 20px;
}
.ticketsSwipeContainer .ticket .ticketInformation {
  padding: 20px 10px;
}
.ticketsSwipeContainer .ticket .ticketInformation .product {
  display: block;
  font-weight: bold;
  font-size: 22px;
}
.ticketsSwipeContainer .ticket .ticketInformation .price {
  display: block;
  font-weight: 300;
  font-size: 20px;
}
.ticketsSwipeContainer .ticket .ticketInformation .name {
  display: block;
}
.ticketsSwipeContainer .ticket .ticketInformation .products {
  margin: 0;
  padding-left: 20px;
}
.ticketsSwipeContainer .ticket .ticketQr {
  width: 240px;
  padding: 10px 20px 0px 20px;
}
.ticketsSwipeContainer .ticket .previewQR {
  width: 100%;
  height: auto;
}
.ticketsSwipeContainer .ticket .previewText {
  margin: 0;
  font-size: .7em;
  color: #777;
  text-align: center;
  white-space: nowrap;
}
.ticketsSwipeContainer .ticket .verify {
  padding: 7px 0;
  margin: 0 -20px;
  text-align: center;
  background-color: #006633;
  color: #fff;
  border-radius: 0 0 15px 15px;
}
.ticketsSwipeContainer .ticket .verify.errors.payment {
  background-color: #ec0000;
}
.ticketsSwipeContainer .ticket .refund {
  position: absolute;
  bottom: 5px;
  left: 5px;
  right: 4px;
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
  color: #fff;
  border-radius: 10px;
  background-color: #006633;
  transition: background-color ease 0.4s;
}
.ticketsSwipeContainer .ticket .refund:hover,
.ticketsSwipeContainer .ticket .refund:active {
  background-color: #00331a;
}
/*
* Views
*/
body {
  background: #006633;
}
.viewHome {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.viewHome i.logo {
  position: relative;
  width: 400px;
  max-width: 80%;
  height: 100%;
}
.viewHome i.logo:after {
  background-color: #fff;
}
.viewHome .homeBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  border-radius: 10px;
  color: #333;
  background-color: #fff;
  padding: 30px 20px;
  margin: 30px 0;
}
.viewHome .homeBox .homeTitle {
  font-size: 2em;
  font-weight: 200;
  text-align: center;
}
.viewHome .homeBox .homeText {
  white-space: pre-line;
}
.viewHome .homeBox .btn {
  margin-top: 20px;
  color: #fff;
  background-color: #006633;
  cursor: pointer;
}
@media (max-width: 768px) {
  .viewHome {
    height: calc(100vh - 80px);
  }
}
.viewPayments {
  position: relative;
  display: flex;
  flex-direction: row;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 20px;
}
.viewPayments.loading {
  height: 100vh;
}
.viewPayments .componentLoading {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #006633;
}
.viewPayments .componentLoading .logo {
  position: relative;
  width: 400px;
  max-width: 80%;
  height: 100%;
}
.viewPayments .componentLoading .logo:after {
  background-color: #fff;
}
.viewPayments .componentLoading .loadingBall {
  position: relative;
  bottom: 50px;
  width: 70px;
  height: 75px;
}
.viewPayments .componentLoading .loadingBall:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  opacity: 0.6;
  mask-position: center center;
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  animation: loadingBall linear infinite 5s;
  mask: url('https://gc-zschopau.greenfee-mobile.app/wp-content/plugins/greenfee-core-plugin/assets/img/golfball.svg');
  -webkit-mask: url('https://gc-zschopau.greenfee-mobile.app/wp-content/plugins/greenfee-core-plugin/assets/img/golfball.svg');
}
.viewPayments .progressBarContainer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  background-color: rgba(0, 179, 89, 0.2);
}
.viewPayments .progressBarContainer .progressBar {
  width: 5%;
  height: 100%;
  background-color: #00b359;
  transition: width ease .4s;
}
.viewPayments .progressBarContainer .progressBarText {
  width: fit-content;
  margin: -22px 0 0 10px;
  color: #fff;
  font-weight: 200;
}
.viewPayments .page {
  flex: 0 0 100%;
  width: 100%;
  min-height: 100%;
  height: fit-content;
  overflow: hidden;
  transition: margin-left ease 0.6s;
}
.viewPayments .footerNav {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-top: 50px;
  padding: 20px;
  border-top: 1px solid #ddd;
}
.viewPayments .footerNav a {
  margin: 0 10px;
  color: #fff;
  white-space: nowrap;
}
.viewPayments .footerNav a:focus {
  outline: none;
}
@media (max-width: 768px) {
  .viewPayments .footerNav {
    flex-direction: column;
  }
}
.viewPayments .date {
  font-size: 25px;
  font-weight: 700;
}
.viewPayments .numberField {
  display: flex;
  flex-direction: row;
  align-self: center;
  user-select: none;
  cursor: pointer;
}
.viewPayments .numberField i {
  font-size: 22px;
  padding: 5px 20px;
  color: #006633;
  background-color: #fff;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.viewPayments .numberField i:last-child {
  border-radius: 0;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
.viewPayments .numberField i:active {
  background-color: #006633;
  color: #fff;
}
.viewPayments .numberField span {
  display: inline-block;
  width: 40px;
  color: #555;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6em;
  text-align: center;
  background-color: #fff;
}
.viewPayments .back {
  float: left;
  padding: 7px 45px;
  margin-top: 30px;
  font-weight: 700;
  background-color: #777;
  border-radius: 5px;
  user-select: none;
  transition: all ease .4s;
  cursor: pointer;
}
.viewPayments .back:hover {
  background-color: #888;
}
.viewPayments .next {
  float: right;
  padding: 7px 45px;
  margin-top: 30px;
  font-weight: 700;
  color: #006633;
  background-color: #fff;
  border-radius: 5px;
  user-select: none;
  transition: all ease .4s;
  cursor: pointer;
}
.viewPayments .next:hover {
  background-color: #eee;
}
.viewPayments .paypalButton {
  position: relative;
  z-index: 0;
}
.viewPayments .paypalButton:after {
  content: url(/wp-content/themes/greenfee-theme/assets/img/creditcard/paypal.svg);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 700;
  color: #006633;
  background-color: #333;
  border-radius: 5px;
  user-select: none;
  pointer-events: none;
  transition: all ease .4s;
}
.viewPayments .paypalButton:hover:after {
  background-color: #555;
}
.viewPayments .productHead {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.viewPayments .productHead .productTitle {
  position: relative;
  font-size: 1.4em;
  font-weight: 700;
}
.viewPayments .productList {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.viewPayments .productList .product {
  position: relative;
  margin: 10px 0;
  padding: 30px 10px 20px 10px;
  background-color: rgba(255, 255, 255, 0.7);
  color: #444;
  border-radius: 10px;
  font-size: 1.5em;
  font-weight: 700;
  cursor: pointer;
}
.viewPayments .productList .product:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: auto;
  right: 0;
  z-index: -1;
  left: 0;
  width: auto;
  height: 15px;
  margin: auto;
  border-radius: 10px;
  background-color: #fff;
}
.viewPayments .priceList {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.viewPayments .priceElement {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 30px 10px 20px 10px;
  margin: 10px 0;
  color: #444;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
}
.viewPayments .priceElement .title {
  font-size: 1.2em;
  font-weight: 700;
}
.viewPayments .priceElement .title .price {
  margin-top: 10px;
  font-size: 1.2em;
  font-weight: 200;
}
.viewPayments .priceElement .amount {
  font-size: 1.2em;
  font-weight: 700;
}
.viewPayments .priceElement:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: auto;
  right: 0;
  z-index: -1;
  left: 0;
  width: auto;
  height: 15px;
  margin: auto;
  border-radius: 10px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .viewPayments .priceElement {
    flex-direction: column;
  }
  .viewPayments .priceElement .title {
    align-self: flex-start;
  }
  .viewPayments .priceElement .title .price {
    display: block;
  }
  .viewPayments .priceElement .numberField {
    align-self: flex-end;
    margin-top: -40px;
  }
}
.viewPayments .page.details .priceEl {
  flex-direction: row !important;
}
.viewPayments .totalPrice {
  width: 100%;
  padding: 20px;
  font-size: 1.5em;
  font-weight: 800;
  text-align: right;
  border-top: 1px solid #ddd;
}
.viewPayments .inputField {
  display: flex;
  flex-direction: column;
  margin: 10px 0;
  max-width: 400px;
}
.viewPayments .inputField label {
  flex: 0 0 50%;
  font-weight: 70;
}
.viewPayments .inputField input {
  flex: 0 0 50%;
  padding: 4px 10px;
  border-radius: 5px;
  border: none;
  color: #333;
  background-color: #fff;
  border: 1px solid transparent;
}
.viewPayments .inputField input:focus {
  outline: none;
  border-color: #006633;
}
.viewPayments .payments {
  display: flex;
  flex-direction: column;
}
.viewPayments .payButton {
  padding: 10px;
  margin: 10px 0;
  text-align: center;
  opacity: .6;
  background-color: #333;
  border-radius: 5px;
  animation: fadeInX .4s 1;
  transition: all ease .4s !important;
  pointer-events: none;
}
.viewPayments .payButton img {
  height: 35px;
  padding: 0 10px;
}
.viewPayments .payButton:hover {
  background-color: #555;
}
.viewPayments .payButton.active {
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
}
.viewPayments .payButton.paypalButton {
  background-color: #0000;
  padding: 0px !important;
  min-height: 55px;
}
@media (max-width: 540px) {
  .viewPayments .payButton.paypalButton {
    padding: 5px !important;
  }
}
@media (max-width: 400px) {
  .viewPayments .payButton {
    width: 100%;
  }
}
.viewPayments .paypalButton {
  float: right;
  margin-top: 30px;
}
.viewPayments .paymentBlur {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 25px;
  background-color: rgba(0, 0, 0, 0.7);
}
.viewPayments .paymentBlur .logo {
  width: 200px;
  height: 200px;
}
.viewPayments .paymentBlur .logo:after {
  background-color: #fff;
}
.viewPayments .paymentBlur span {
  margin-top: 250px;
}
.viewTickets {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}
.viewTickets .container {
  padding: 0;
}
.viewSettings {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}
.viewSettings .container {
  display: flex;
  flex-direction: column;
}
.viewSettings .dropdown {
  max-width: 100%;
  margin: 20px;
}
.viewSettings .dropdown #dropdownMenuButton {
  width: 100%;
  padding: 10px 30px;
  text-align: left;
  color: #555;
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1em;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 8px 6px 6px 0px rgba(51, 51, 51, 0.8);
}
.viewSettings .dropdown #dropdownMenuButton:hover {
  color: #006633;
  background-color: #eee;
  box-shadow: 10px 8px 4px 0px rgba(31, 31, 31, 0.8);
}
.viewSettings .dropdown #dropdownMenuButton .dropdownIcon {
  width: 30px;
  font-size: 30px;
  margin-right: 30px;
  text-align: center;
}
.viewSettings .dropdown .dropdown-menu {
  width: 100%;
}
.viewSettings .dropdown .dropdown-menu .dropdown-item {
  color: #333;
}
.viewSettings .dropdown .dropdown-menu .dropdown-item:hover {
  color: #333;
  background-color: #ddd;
}
.viewSettings .dropdown .dropdown-menu .dropdown-item:active {
  color: #333;
  background-color: #ccc;
}
.viewSettings .dropdown .dropdown-menu .dropdown-item:focus {
  outline: none;
}
.viewSettings .linkTab {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  max-width: 100%;
  margin: 20px;
  padding: 10px 30px;
  border-radius: 10px;
  color: #555;
  background-color: #fff;
  box-shadow: 8px 6px 6px 0px rgba(51, 51, 51, 0.8);
  transition: all ease .4s;
  cursor: pointer;
}
.viewSettings .linkTab:hover {
  text-decoration: none;
  color: #006633;
  background-color: #eee;
  box-shadow: 10px 8px 4px 0px rgba(31, 31, 31, 0.8);
}
.viewSettings .linkTab .linkIcon {
  width: 30px;
  font-size: 30px;
  margin-right: 30px;
  text-align: center;
}
.viewSettings .linkTab .linkText {
  font-size: 1.2em;
  font-weight: bold;
}
.scanner .scannedOrder {
  display: flex;
  flex-direction: row;
}
.scanner .scannedOrder .orderScan {
  margin-right: 50px;
}
.scanner .scannedOrder .orderScan .qrScanner {
  width: 400px;
  height: 400px;
  margin-bottom: 20px;
}
.scanner .scannedOrder .orderScan .qrScanner .videoContainer {
  position: relative;
  width: 100%;
  height: 100%;
  border: 3px solid #555;
  overflow: hidden;
}
.scanner .scannedOrder .orderScan .qrScanner .videoContainer .preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.scanner .scannedOrder .orderScan .qrScanner .videoContainer .preview.inactive {
  display: none;
}
.scanner .scannedOrder .orderScan .qrScanner .videoContainer .loading {
  position: absolute;
  width: fit-content;
  max-width: 100%;
  height: fit-content;
  max-height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 1.2em;
  font-weight: bold;
}
.scanner .scannedOrder .orderScan .qrScanner .videoContainer .cameraItems {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 25px;
  opacity: .8;
}
.scanner .scannedOrder .orderScan .qrScanner .videoContainer .cameraItems.switchCam {
  right: 30px;
}
.scanner .scannedOrder .orderScan .qrScanner .previewQR {
  width: 100%;
  height: 100%;
}
.scanner .scannedOrder .orderScan .qrScanner .previewText {
  text-align: center;
}
.scanner .scannedOrder .orderInformation .verify {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 30px;
  padding: 20px;
  margin-bottom: 30px;
  border: 3px solid #555;
}
@media (max-width: 768px) {
  .scanner .scannedOrder .orderScan .qrScanner {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 600px) {
  .scanner .scannedOrder {
    flex-direction: column;
  }
  .scanner .scannedOrder .orderScan {
    margin-right: 0;
  }
  .scanner .scannedOrder .orderScan .qrScanner {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
  }
  .scanner .scannedOrder .orderInformation {
    margin-top: 50px;
  }
}
@keyframes scanner {
  0% {
    top: -60px;
  }
  49.9% {
    top: calc(100% + 60px);
  }
  50% {
    top: calc(100% + 60px);
  }
  100% {
    top: -60px;
  }
}
@keyframes scannerShadow {
  0% {
    transform: translateY(-60px);
    background: linear-gradient(to top, rgba(0, 102, 51, 0.8), transparent);
  }
  49.9% {
    transform: translateY(-60px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    background: linear-gradient(to bottom, rgba(0, 102, 51, 0.8), transparent);
  }
}
.layoutAccount {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.layoutAccount .content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}
.layoutAccount a {
  color: #fff;
}
.layoutAccount .gf-login-logo {
  text-align: center;
}
.layoutAccount .gf-login-logo .loginIcon {
  display: block;
  position: relative;
  margin: 0 auto;
  width: 100px;
  height: 100px;
}
.layoutAccount .gf-login-logo .loginIcon:after {
  content: '';
  background: #fff;
}
.layoutAccount .gf-login-logo .loginTitle {
  font-size: 2.4rem;
  font-weight: 100;
  color: #fff;
  margin-bottom: 0;
}
.layoutAccount .form--title {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 100;
  margin-bottom: 20px;
}
.layoutAccount .loginform--wrapper {
  max-width: 300px;
  min-width: 450px;
}
.layoutAccount .loginform--wrapper .login-field-wrap {
  margin-bottom: 8px;
}
.layoutAccount .loginform--wrapper .login-field {
  width: 100%;
}
.layoutAccount .loginform--wrapper .login-button {
  float: right;
  padding-left: 50px;
  padding-right: 50px;
  background: #fff;
  color: #333;
}
.layoutAccount .loginform--wrapper .button_div:after {
  content: '';
  float: none;
  clear: both;
  display: block;
}
.layoutAccount .loginform--wrapper .button_div input[type="submit"] {
  float: right;
}
.layoutAccount hr {
  margin-top: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #ddd;
}
.layoutAccount .back {
  margin: 0 auto;
  width: 220px;
  display: block;
}
.layoutAccount .form-wrapper {
  background: rgba(255, 255, 255, 0.7);
  padding: 20px;
  color: #333333;
  border-radius: 5px;
  margin-top: 50px;
  margin-bottom: 50px;
}
.layoutAccount .form-wrapper h3 {
  color: #333333;
  text-align: center;
}
.layoutAccount .form-wrapper a {
  color: #e48207;
}
.layoutAccount .form-wrapper .btn {
  background: #006633;
  color: #fff;
}
/*
.checkboxList {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  border: 2px solid transparent;
  border-radius: 5px;

  label {
    font-weight: 700;
    width: 100%;
  }

  &.error {
    border: 2px solid #f00;
  }
}

.checkboxContainer {
  display: flex;
  flex-direction: row;
  margin: 10px;
  min-width: 150px;

  .checkboxLabel {
    line-height: 1em;
    margin-left: 10px;
  }
}

.checkbox {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 3px;
  background-color: #777;
  cursor: pointer;

  &.checked {
    &:after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      width: 10px;
      height: 20px;
      margin: auto;
      display: block;
      border: 1px solid #eee;
      border-width: 0 4px 4px 0;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
    }
  }
}
*/
.dropdown {
  flex: 1 0 80%;
  max-width: 80%;
  border: 2px solid transparent;
  border-radius: 5px;
}
.dropdown .dropdown-toggle {
  width: 100%;
  padding: 4px 10px;
  margin: 0;
  border-radius: 5px;
  color: #eee;
  background-color: #555;
  border: 1px solid transparent;
  text-align: left;
}
.dropdown .dropdown-toggle:focus {
  outline: none;
  border-color: #006633;
  box-shadow: none;
}
.dropdown .dropdown-toggle:after {
  float: right;
  margin: 10px 0;
}
.dropdown .dropdown-menu {
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  background-color: #555;
  border: 2px solid #006633;
}
.dropdown .dropdown-menu .dropdown-item {
  color: #eee;
  transition: background-color ease 0.2s;
}
.dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #666;
}
.dropdown .dropdown-menu .dropdown-item:focus {
  outline: none;
}
input,
textarea,
select {
  padding: 4px 10px;
  border-radius: 5px;
  border: 2px solid transparent !important;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #006633;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: #bbb;
}
.layoutAdmin input,
.layoutAdmin textarea,
.layoutAdmin select {
  color: #eee;
  background-color: #555;
}
.layoutAdmin input:focus,
.layoutAdmin textarea:focus,
.layoutAdmin select:focus {
  color: #eee;
  background-color: #555;
}
.layoutAdmin input.readonly,
.layoutAdmin textarea.readonly,
.layoutAdmin select.readonly {
  opacity: .6;
  background-color: #555 !important;
}
.layoutAdmin .tabs .tabsMenu .tabMenu.active {
  background: #006633;
}
.nav-tabs .nav-link {
  color: #fff;
  border: none !important;
}
.nav-tabs .nav-link.active {
  color: #fff;
  background: #006633;
}
.layoutAdmin {
  /*
* Components
*/
  /*
* Views
*/
}
.layoutAdmin .modal .modal-content {
  color: #fff;
  background-color: #666;
}
.layoutAdmin .modal .modal-content .close {
  font-size: 35px;
  width: 50px;
  color: #fff;
}
.layoutAdmin .modal .modal-content .modal-body {
  white-space: pre-line;
}
.layoutAdmin .newSeason {
  max-width: 300px;
}
.layoutAdmin .newSeason .newSeasonCaption {
  font-size: 24px;
}
.layoutAdmin .newSeason .newSeasonSubcaption {
  display: block;
  font-weight: bold;
}
.layoutAdmin .newSeason .newSeasonFrom i,
.layoutAdmin .newSeason .newSeasonTo i {
  float: right;
  cursor: pointer;
}
.layoutAdmin .newSeason .newSeasonSave {
  width: 100%;
}
.layoutAdmin .newSeason .newSeasonSelect {
  display: flex;
  flex-direction: row;
}
.layoutAdmin .newSeason .newSeasonSelect select {
  background-color: #0000;
  color: #fff;
  border-color: #fff;
}
.layoutAdmin .newSeason .newSeasonSelect select:first-of-type {
  width: 100px;
  border-color: #fff;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
}
.layoutAdmin .newSeason .newSeasonSelect select:last-of-type {
  border-radius: 0;
  border-left: none;
  border-right: none;
}
.layoutAdmin .newSeason .newSeasonSelect select option {
  background-color: #555;
}
.layoutAdmin .newSeason .newSeasonSelect .btn {
  padding: 5px 20px;
  margin: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
  background-color: #006633;
}
.layoutAdmin .newSeason .newSeasonSelect .btn:hover {
  border: 1px solid #fff;
  border-left: 0;
  background-color: transparent;
}
.layoutAdmin .newSeason .warning {
  padding: 10px;
  margin: 10px 0;
  background-color: #777;
  border-radius: 10px;
  font-weight: 100;
}
.layoutAdmin .newSeason .warning i {
  font-size: 20px;
}
.layoutAdmin .modal#priceModal .modal-content .modal-body {
  white-space: normal;
}
.layoutAdmin .addHour {
  margin: -30px 0 20px 20%;
}
.layoutAdmin .addHour .addHourHead {
  cursor: pointer;
}
.layoutAdmin .addHour .addHourBody {
  background-color: #888;
  padding: 10px;
  margin-top: 10px;
  border-radius: 10px;
}
.layoutAdmin .addHour .addHourBody .addHourElement {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 10px 0;
  align-items: center;
}
.layoutAdmin .addHour .addHourBody .addHourElement label {
  flex: 0 0 20%;
  font-weight: 700;
}
.layoutAdmin .addHour .addHourBody .addHourElement .clock-picker {
  flex: 1 0 80%;
  max-width: 80%;
  border: 2px solid #0000;
  border-radius: 5px;
}
.layoutAdmin .clock-picker__input {
  width: 100%;
}
.layoutAdmin .clock-picker__input--error,
.layoutAdmin .clock-picker__input--error.clock-picker__input--has-value {
  color: #F44336;
}
.layoutAdmin .clock-picker__input--error .clock-picker__input,
.layoutAdmin .clock-picker__input--error.clock-picker__input--has-value .clock-picker__input {
  border-color: #F44336;
}
.layoutAdmin .clock-picker__button {
  background: none;
  width: 24px;
  height: 24px;
  display: inline-block;
  border: 0;
  border-radius: 12px;
  line-height: 24px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: #757575;
  font-weight: 500;
  font-size: 13px;
}
.layoutAdmin .clock-picker__button:hover {
  background-color: #f5f5f5;
}
.layoutAdmin .clock-picker__button:active {
  background-color: #ededed;
}
.layoutAdmin .clock-picker__button:focus {
  background-color: #e8e8e8;
}
.layoutAdmin .clock-picker__button:disabled {
  opacity: 0.4 !important;
  cursor: default;
  background-color: #f5f5f5;
  color: #757575;
}
.layoutAdmin .clock-picker__button:disabled:active,
.layoutAdmin .clock-picker__button:disabled:focus,
.layoutAdmin .clock-picker__button:disabled:hover {
  background-color: #f5f5f5;
  color: #757575;
}
.layoutAdmin .clock-picker__button--active,
.layoutAdmin .clock-picker__button--active:active,
.layoutAdmin .clock-picker__button--active:focus,
.layoutAdmin .clock-picker__button--active:hover {
  background-color: #a48bd1;
  color: #fff;
}
.layoutAdmin .clock-picker__dialog {
  display: none;
}
.layoutAdmin .clock-picker__dialog .fade-enter-active,
.layoutAdmin .clock-picker__dialog .fade-leave-active,
.layoutAdmin .clock-picker__dialog .scale-enter-active,
.layoutAdmin .clock-picker__dialog .scale-leave-active {
  transition: all 0.3s ease;
}
.layoutAdmin .clock-picker__dialog .scale-enter,
.layoutAdmin .clock-picker__dialog .scale-leave-active {
  opacity: 0;
  transform: scale(0);
}
.layoutAdmin .clock-picker__dialog .fade-enter,
.layoutAdmin .clock-picker__dialog .fade-leave-active {
  opacity: 0;
}
.layoutAdmin .clock-picker__dialog--active {
  display: block;
}
.layoutAdmin .clock-picker__dialog-drop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 200;
}
.layoutAdmin .clock-picker__dialog-body {
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  width: 320px;
  margin: -235px -160px;
  background-color: #555;
  z-index: 201;
  transform: scale(1);
  border-radius: 5px;
  overflow: auto;
}
.layoutAdmin .clock-picker__dialog-header {
  padding: 1.5rem;
  font-size: 2rem;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #006633;
}
.layoutAdmin .clock-picker__dialog-header span:focus,
.layoutAdmin .clock-picker__dialog-header span:hover {
  cursor: pointer;
}
.layoutAdmin .clock-picker__dialog-title {
  display: block;
  font-size: 18px;
  opacity: 0.6;
}
.layoutAdmin .clock-picker__dialog-content {
  position: relative;
  width: 100%;
  height: 280px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.layoutAdmin .clock-picker__dialog-content .clock-picker__hours,
.layoutAdmin .clock-picker__dialog-content .clock-picker__minutes {
  position: absolute;
}
.layoutAdmin .clock-picker__dialog-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  border-top: 1px solid #f5f5f5;
  padding: 0.5rem;
}
.layoutAdmin .clock-picker__dialog-action {
  padding: 0 1rem;
  margin: 5px;
  background-color: transparent;
  color: #006633;
  color: #fff !important;
  border-radius: 5px;
  border: 1px solid #fff;
  -ms-flex: 1;
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  display: inline-block;
  cursor: pointer;
}
.layoutAdmin .clock-picker__dialog-action:active,
.layoutAdmin .clock-picker__dialog-action:focus,
.layoutAdmin .clock-picker__dialog-action:hover {
  background-color: #fff;
  color: #006633 !important;
  outline: none;
}
.layoutAdmin .clock-picker__dialog-action:disabled {
  border: none;
  cursor: not-allowed;
}
.layoutAdmin .clock-picker__hours {
  position: relative;
  width: 100%;
  height: 280px;
}
.layoutAdmin .clock-picker__minutes {
  position: relative;
  width: 100%;
  height: 280px;
}
.layoutAdmin .clock-picker__canvas {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.layoutAdmin .handle {
  cursor: pointer;
  opacity: .8;
  width: 12px;
  text-align: center;
}
.layoutAdmin .handle:hover {
  opacity: 1;
}
.layoutAdmin .sortable-drag {
  background: #666;
  padding: 3px;
}
.layoutAdmin .sortable-ghost {
  padding: 3px;
  background: #006633;
}
.layoutAdmin .tickets {
  overflow: hidden;
}
.layoutAdmin .ticketsSwipeContainer {
  display: flex;
  flex-direction: row;
  padding-left: 5%;
  width: fit-content;
}
.layoutAdmin .ticketsSwipeContainer .ticket {
  position: relative;
  flex: 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  height: fit-content;
  margin: 5px 50px;
  padding-bottom: 50px;
  color: #333;
  background-color: #fff;
  border-radius: 15px;
  border: 4px solid #006633;
  box-shadow: 0 0 0 3px #fff;
  user-select: none;
  cursor: pointer;
}
@media (min-width: 768px) {
  .layoutAdmin .ticketsSwipeContainer .ticket {
    min-height: 600px;
  }
}
.layoutAdmin .ticketsSwipeContainer .ticket:before,
.layoutAdmin .ticketsSwipeContainer .ticket:after {
  content: '';
  position: absolute;
  top: 5px;
  left: -16px;
  z-index: -1;
  height: calc(100% - 10px);
  width: 10px;
  background: radial-gradient(circle, transparent, transparent 50%, #fbfbfb 50%, #fbfbfb 100%) -7px -8px repeat-y;
  background-size: 20px 20px;
}
.layoutAdmin .ticketsSwipeContainer .ticket:after {
  left: auto;
  right: -14px;
  width: 12px;
  background: radial-gradient(circle, transparent, transparent 50%, #fbfbfb 50%, #fbfbfb 100%) 1px -8px repeat-y;
  background-size: 20px 20px;
}
.layoutAdmin .ticketsSwipeContainer .ticket .ticketInformation {
  padding: 20px 10px;
}
.layoutAdmin .ticketsSwipeContainer .ticket .ticketInformation .product {
  display: block;
  font-weight: bold;
  font-size: 22px;
}
.layoutAdmin .ticketsSwipeContainer .ticket .ticketInformation .price {
  display: block;
  font-weight: 300;
  font-size: 20px;
}
.layoutAdmin .ticketsSwipeContainer .ticket .ticketInformation .name {
  display: block;
}
.layoutAdmin .ticketsSwipeContainer .ticket .ticketInformation .products {
  margin: 0;
  padding-left: 20px;
}
.layoutAdmin .ticketsSwipeContainer .ticket .ticketQr {
  width: 240px;
  padding: 10px 20px 0px 20px;
}
.layoutAdmin .ticketsSwipeContainer .ticket .previewQR {
  width: 100%;
  height: auto;
}
.layoutAdmin .ticketsSwipeContainer .ticket .previewText {
  margin: 0;
  font-size: .7em;
  color: #777;
  text-align: center;
  white-space: nowrap;
}
.layoutAdmin .ticketsSwipeContainer .ticket .verify {
  padding: 7px 0;
  margin: 0 -20px;
  text-align: center;
  background-color: #006633;
  color: #fff;
  border-radius: 0 0 15px 15px;
}
.layoutAdmin .ticketsSwipeContainer .ticket .verify.errors.payment {
  background-color: #ec0000;
}
.layoutAdmin .ticketsSwipeContainer .ticket .refund {
  position: absolute;
  bottom: 5px;
  left: 5px;
  right: 4px;
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
  color: #fff;
  border-radius: 10px;
  background-color: #006633;
  transition: background-color ease 0.4s;
}
.layoutAdmin .ticketsSwipeContainer .ticket .refund:hover,
.layoutAdmin .ticketsSwipeContainer .ticket .refund:active {
  background-color: #00331a;
}
.layoutAdmin .calendar {
  background: rgba(255, 255, 255, 0.05);
  padding: 0 15px 15px 15px;
  margin-bottom: 20px;
}
.layoutAdmin .calendar .calendarHead {
  margin: 0 -15px;
  padding: 20px 0;
  background: #006633;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.layoutAdmin .calendar .calendarHead .calendarDate {
  line-height: 1.2;
}
.layoutAdmin .calendar .calendarHead .calendarDate .currMonth {
  width: 100%;
  text-align: center;
  font-size: 30px;
}
.layoutAdmin .calendar .calendarHead .calendarDate .currYear {
  width: 100%;
  text-align: center;
  font-size: 20px;
}
.layoutAdmin .calendar .calendarHead .calendarDate .toToday {
  text-align: center;
}
.layoutAdmin .calendar .calendarHead .calendarDate .toToday a {
  color: #fff;
}
.layoutAdmin .calendar .calendarHead .nextMonth,
.layoutAdmin .calendar .calendarHead .prevMonth {
  padding: 20px;
  cursor: pointer;
  font-size: 20px;
}
.layoutAdmin .calendar .month .weekHead {
  padding: 10px 0 0;
  margin: 0;
  font-size: 20px;
}
.layoutAdmin .calendar .month .week {
  margin: 0;
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: #666;
}
.layoutAdmin .calendar .month .week:last-child {
  border-width: 1px 0 1px 0;
}
.layoutAdmin .calendar .month .week .col {
  padding: 4% 0;
}
.layoutAdmin .calendar .month .week .day {
  border-width: 0 0 0 1px;
  border-style: solid;
  border-color: #666;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}
.layoutAdmin .calendar .month .week .day:last-child {
  border-width: 0 1px 0 1px;
}
.layoutAdmin .calendar .month .week .day.active {
  background: rgba(255, 0, 0, 0.2);
}
.layoutAdmin .calendar .month .week .day.disabled {
  cursor: default;
  background: none;
}
.layoutAdmin .calendar .month .week .day.disabled.active {
  background: rgba(255, 0, 0, 0.1);
}
.layoutAdmin .calendar .month .week .day.today {
  font-weight: bold;
  background: rgba(0, 102, 51, 0.2) !important;
}
.layoutAdmin .calendar .month .week .day.today.active {
  background: rgba(255, 0, 0, 0.3) !important;
}
.layoutAdmin .calendar .month .col {
  text-align: center;
  padding: 5px;
}
.layoutAdmin .closedDaysList ul {
  list-style-type: none;
  margin: 0 0 0 20px;
  padding: 0;
}
.layoutAdmin .closedDaysList ul li {
  margin-bottom: 8px;
}
.layoutAdmin .closedDaysList a {
  color: #fff;
}
.layoutAdmin .viewHome {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.layoutAdmin .viewHome i.logo {
  position: relative;
  width: 400px;
  max-width: 80%;
  height: 100%;
}
.layoutAdmin .viewHome i.logo:after {
  background-color: #fff;
}
.layoutAdmin .viewHome .homeBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  border-radius: 10px;
  color: #333;
  background-color: #fff;
  padding: 30px 20px;
  margin: 30px 0;
}
.layoutAdmin .viewHome .homeBox .homeTitle {
  font-size: 2em;
  font-weight: 200;
  text-align: center;
}
.layoutAdmin .viewHome .homeBox .homeText {
  white-space: pre-line;
}
.layoutAdmin .viewHome .homeBox .btn {
  margin-top: 20px;
  color: #fff;
  background-color: #006633;
  cursor: pointer;
}
@media (max-width: 768px) {
  .layoutAdmin .viewHome {
    height: calc(100vh - 80px);
  }
}
.layoutAdmin .configuration .row {
  margin: 20px 0;
}
.layoutAdmin .configuration .topNav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.layoutAdmin .configuration .topNav .tabNav {
  height: fit-content;
  display: flex;
  flex-direction: row;
}
.layoutAdmin .configuration .topNav .tabNav .tabNavEl {
  text-align: center;
  padding: 5px 30px;
  background-color: #555;
  white-space: normal;
  hyphens: auto;
}
.layoutAdmin .configuration .topNav .tabNav .tabNavEl:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.layoutAdmin .configuration .topNav .tabNav .tabNavEl:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.layoutAdmin .configuration .topNav .tabNav .tabNavEl.active {
  background-color: #006633;
}
.layoutAdmin .configuration .leftNav {
  margin-bottom: 20px;
  padding: 10px 20px;
  background-color: #555;
  border-radius: 5px;
}
@media (min-width: 1200px) {
  .layoutAdmin .configuration .leftNav {
    margin: 0 20px 20px 0;
    max-width: calc(25% - 20px);
  }
}
.layoutAdmin .configuration .leftNav .loading {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4em;
  padding: 40px 0;
}
.layoutAdmin .configuration .leftNav .seasonAcc {
  margin-bottom: 20px;
}
.layoutAdmin .configuration .leftNav .seasonAcc .seasonAccHead {
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
}
.layoutAdmin .configuration .leftNav .seasonAcc .seasonAccHead.active {
  background-color: #006633;
}
.layoutAdmin .configuration .leftNav .seasonAcc .seasonAccHead .accArrow {
  padding: 5px;
  transition: all ease 0.2s;
  pointer-events: none;
}
.layoutAdmin .configuration .leftNav .seasonAcc .seasonAccHead .editSeason {
  padding: 5px 0;
  cursor: pointer;
  float: right;
}
.layoutAdmin .configuration .leftNav .seasonAcc .seasonAccBody {
  display: none;
  flex-direction: column;
  font-weight: 100;
}
.layoutAdmin .configuration .leftNav .seasonAcc .seasonAccBody .product {
  padding: 3px 0 3px 20px;
  cursor: pointer;
}
.layoutAdmin .configuration .leftNav .seasonAcc .seasonAccBody .product.active {
  background-color: #006633;
}
.layoutAdmin .configuration .leftNav .seasonAcc.active .seasonAccHead .accArrow {
  transform: rotate(45deg);
}
.layoutAdmin .configuration .leftNav .addProduct {
  display: flex;
  flex-direction: row;
  margin-left: 10px;
}
.layoutAdmin .configuration .leftNav .addProduct input {
  padding: 2px 10px;
  flex: 1 1;
  border-color: #fff;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
}
.layoutAdmin .configuration .leftNav .addProduct .btn {
  padding: 2px 10px;
  line-height: 1.6em;
  margin: 0;
  background-color: #006633;
  border-width: 2px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: none;
}
.layoutAdmin .configuration .leftNav .addSeason {
  cursor: pointer;
}
.layoutAdmin .configuration .leftNav .leftNavEdit {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 30px;
}
.layoutAdmin .configuration .leftNav .leftNavEdit .btn {
  flex: 1 1 calc(50% - 10px);
  padding: 3px 0;
  margin: 5px;
}
.layoutAdmin .configuration .leftNav .seasonAccBody a {
  color: #fff;
  text-decoration: none;
}
.layoutAdmin .configuration .detailsView {
  padding: 0;
}
.layoutAdmin .configuration .detailsView .align-right {
  text-align: right;
}
.layoutAdmin .configuration .detailsView .detailsList {
  overflow: scroll;
  margin-bottom: 20px;
  padding: 10px 20px;
  background-color: #555;
  border-radius: 5px;
}
.layoutAdmin .configuration .detailsView .detailsList table {
  width: 100%;
}
.layoutAdmin .configuration .detailsView .detailsList table thead {
  padding: 5px 0;
  border-bottom: 2px solid #777;
}
.layoutAdmin .configuration .detailsView .detailsList table th {
  padding: 5px;
}
.layoutAdmin .configuration .detailsView .detailsList table th.name {
  min-width: 250px;
}
.layoutAdmin .configuration .detailsView .detailsList table th.price {
  min-width: 120px;
}
.layoutAdmin .configuration .detailsView .detailsList table th.time {
  min-width: 130px;
}
.layoutAdmin .configuration .detailsView .detailsList table th.day {
  min-width: 35px;
}
.layoutAdmin .configuration .detailsView .detailsList table td {
  font-weight: lighter;
  padding: 5px;
  border-right: 1px solid #666;
}
.layoutAdmin .configuration .detailsView .detailsList table td:last-child {
  border: none;
}
.layoutAdmin .configuration .detailsView .detailsList table td.price {
  text-align: right;
}
.layoutAdmin .configuration .detailsView .detailsList table td.time {
  text-align: center;
}
.layoutAdmin .configuration .detailsView .detailsList table td.day {
  text-align: center;
}
.layoutAdmin .configuration .detailsView .detailsList table td.rowEdit {
  padding: 5px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.layoutAdmin .configuration .detailsView .detailsList table td.rowEdit i {
  font-size: 1.2em;
  padding: 0 3px;
  cursor: pointer;
}
.layoutAdmin .configuration .detailsView .detailsList table td.rowEdit i.fa-times {
  color: red;
}
.layoutAdmin .configuration .detailsView .detailsList table .tdListInput input {
  height: 25px;
  width: 100%;
  max-width: fit-content;
}
.layoutAdmin .configuration .detailsView .detailsList table .priceRow {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  /* Required to make elements draggable in old WebKit */
  -khtml-user-drag: element;
  -webkit-user-drag: element;
}
.layoutAdmin .configuration .detailsView .detailsList table .priceRow.dragOver {
  border-top: 5px solid #006633;
}
.layoutAdmin .configuration .detailsView .detailsList table .priceRow:after {
  min-height: 35px;
  background: #006633;
}
.layoutAdmin .configuration .detailsView .detailsList table .priceRow.active {
  background-color: #006633;
}
.layoutAdmin .configuration .detailsView .detailsList table .drag {
  padding: 0 10px 0 5px;
  cursor: grab;
}
.layoutAdmin .configuration .detailsView .detailsViewEdit {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 30px;
}
.layoutAdmin .configuration .detailsView .detailsViewEdit .btn {
  padding: 3px 30px;
  margin: 5px;
}
.layoutAdmin .viewPayments {
  position: relative;
  display: flex;
  flex-direction: row;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 20px;
}
.layoutAdmin .viewPayments.loading {
  height: 100vh;
}
.layoutAdmin .viewPayments .componentLoading {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #006633;
}
.layoutAdmin .viewPayments .componentLoading .logo {
  position: relative;
  width: 400px;
  max-width: 80%;
  height: 100%;
}
.layoutAdmin .viewPayments .componentLoading .logo:after {
  background-color: #fff;
}
.layoutAdmin .viewPayments .componentLoading .loadingBall {
  position: relative;
  bottom: 50px;
  width: 70px;
  height: 75px;
}
.layoutAdmin .viewPayments .componentLoading .loadingBall:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  opacity: 0.6;
  mask-position: center center;
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  animation: loadingBall linear infinite 5s;
  mask: url('https://gc-zschopau.greenfee-mobile.app/wp-content/plugins/greenfee-core-plugin/assets/img/golfball.svg');
  -webkit-mask: url('https://gc-zschopau.greenfee-mobile.app/wp-content/plugins/greenfee-core-plugin/assets/img/golfball.svg');
}
.layoutAdmin .viewPayments .progressBarContainer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  background-color: rgba(0, 179, 89, 0.2);
}
.layoutAdmin .viewPayments .progressBarContainer .progressBar {
  width: 5%;
  height: 100%;
  background-color: #00b359;
  transition: width ease .4s;
}
.layoutAdmin .viewPayments .progressBarContainer .progressBarText {
  width: fit-content;
  margin: -22px 0 0 10px;
  color: #fff;
  font-weight: 200;
}
.layoutAdmin .viewPayments .page {
  flex: 0 0 100%;
  width: 100%;
  min-height: 100%;
  height: fit-content;
  overflow: hidden;
  transition: margin-left ease 0.6s;
}
.layoutAdmin .viewPayments .footerNav {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-top: 50px;
  padding: 20px;
  border-top: 1px solid #ddd;
}
.layoutAdmin .viewPayments .footerNav a {
  margin: 0 10px;
  color: #fff;
  white-space: nowrap;
}
.layoutAdmin .viewPayments .footerNav a:focus {
  outline: none;
}
@media (max-width: 768px) {
  .layoutAdmin .viewPayments .footerNav {
    flex-direction: column;
  }
}
.layoutAdmin .viewPayments .date {
  font-size: 25px;
  font-weight: 700;
}
.layoutAdmin .viewPayments .numberField {
  display: flex;
  flex-direction: row;
  align-self: center;
  user-select: none;
  cursor: pointer;
}
.layoutAdmin .viewPayments .numberField i {
  font-size: 22px;
  padding: 5px 20px;
  color: #006633;
  background-color: #fff;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.layoutAdmin .viewPayments .numberField i:last-child {
  border-radius: 0;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
.layoutAdmin .viewPayments .numberField i:active {
  background-color: #006633;
  color: #fff;
}
.layoutAdmin .viewPayments .numberField span {
  display: inline-block;
  width: 40px;
  color: #555;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6em;
  text-align: center;
  background-color: #fff;
}
.layoutAdmin .viewPayments .back {
  float: left;
  padding: 7px 45px;
  margin-top: 30px;
  font-weight: 700;
  background-color: #777;
  border-radius: 5px;
  user-select: none;
  transition: all ease .4s;
  cursor: pointer;
}
.layoutAdmin .viewPayments .back:hover {
  background-color: #888;
}
.layoutAdmin .viewPayments .next {
  float: right;
  padding: 7px 45px;
  margin-top: 30px;
  font-weight: 700;
  color: #006633;
  background-color: #fff;
  border-radius: 5px;
  user-select: none;
  transition: all ease .4s;
  cursor: pointer;
}
.layoutAdmin .viewPayments .next:hover {
  background-color: #eee;
}
.layoutAdmin .viewPayments .paypalButton {
  position: relative;
  z-index: 0;
}
.layoutAdmin .viewPayments .paypalButton:after {
  content: url(/wp-content/themes/greenfee-theme/assets/img/creditcard/paypal.svg);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 700;
  color: #006633;
  background-color: #333;
  border-radius: 5px;
  user-select: none;
  pointer-events: none;
  transition: all ease .4s;
}
.layoutAdmin .viewPayments .paypalButton:hover:after {
  background-color: #555;
}
.layoutAdmin .viewPayments .productHead {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.layoutAdmin .viewPayments .productHead .productTitle {
  position: relative;
  font-size: 1.4em;
  font-weight: 700;
}
.layoutAdmin .viewPayments .productList {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.layoutAdmin .viewPayments .productList .product {
  position: relative;
  margin: 10px 0;
  padding: 30px 10px 20px 10px;
  background-color: rgba(255, 255, 255, 0.7);
  color: #444;
  border-radius: 10px;
  font-size: 1.5em;
  font-weight: 700;
  cursor: pointer;
}
.layoutAdmin .viewPayments .productList .product:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: auto;
  right: 0;
  z-index: -1;
  left: 0;
  width: auto;
  height: 15px;
  margin: auto;
  border-radius: 10px;
  background-color: #fff;
}
.layoutAdmin .viewPayments .priceList {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.layoutAdmin .viewPayments .priceElement {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 30px 10px 20px 10px;
  margin: 10px 0;
  color: #444;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
}
.layoutAdmin .viewPayments .priceElement .title {
  font-size: 1.2em;
  font-weight: 700;
}
.layoutAdmin .viewPayments .priceElement .title .price {
  margin-top: 10px;
  font-size: 1.2em;
  font-weight: 200;
}
.layoutAdmin .viewPayments .priceElement .amount {
  font-size: 1.2em;
  font-weight: 700;
}
.layoutAdmin .viewPayments .priceElement:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: auto;
  right: 0;
  z-index: -1;
  left: 0;
  width: auto;
  height: 15px;
  margin: auto;
  border-radius: 10px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .layoutAdmin .viewPayments .priceElement {
    flex-direction: column;
  }
  .layoutAdmin .viewPayments .priceElement .title {
    align-self: flex-start;
  }
  .layoutAdmin .viewPayments .priceElement .title .price {
    display: block;
  }
  .layoutAdmin .viewPayments .priceElement .numberField {
    align-self: flex-end;
    margin-top: -40px;
  }
}
.layoutAdmin .viewPayments .page.details .priceEl {
  flex-direction: row !important;
}
.layoutAdmin .viewPayments .totalPrice {
  width: 100%;
  padding: 20px;
  font-size: 1.5em;
  font-weight: 800;
  text-align: right;
  border-top: 1px solid #ddd;
}
.layoutAdmin .viewPayments .inputField {
  display: flex;
  flex-direction: column;
  margin: 10px 0;
  max-width: 400px;
}
.layoutAdmin .viewPayments .inputField label {
  flex: 0 0 50%;
  font-weight: 70;
}
.layoutAdmin .viewPayments .inputField input {
  flex: 0 0 50%;
  padding: 4px 10px;
  border-radius: 5px;
  border: none;
  color: #333;
  background-color: #fff;
  border: 1px solid transparent;
}
.layoutAdmin .viewPayments .inputField input:focus {
  outline: none;
  border-color: #006633;
}
.layoutAdmin .viewPayments .payments {
  display: flex;
  flex-direction: column;
}
.layoutAdmin .viewPayments .payButton {
  padding: 10px;
  margin: 10px 0;
  text-align: center;
  opacity: .6;
  background-color: #333;
  border-radius: 5px;
  animation: fadeInX .4s 1;
  transition: all ease .4s !important;
  pointer-events: none;
}
.layoutAdmin .viewPayments .payButton img {
  height: 35px;
  padding: 0 10px;
}
.layoutAdmin .viewPayments .payButton:hover {
  background-color: #555;
}
.layoutAdmin .viewPayments .payButton.active {
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
}
.layoutAdmin .viewPayments .payButton.paypalButton {
  background-color: #0000;
  padding: 0px !important;
  min-height: 55px;
}
@media (max-width: 540px) {
  .layoutAdmin .viewPayments .payButton.paypalButton {
    padding: 5px !important;
  }
}
@media (max-width: 400px) {
  .layoutAdmin .viewPayments .payButton {
    width: 100%;
  }
}
.layoutAdmin .viewPayments .paypalButton {
  float: right;
  margin-top: 30px;
}
.layoutAdmin .viewPayments .paymentBlur {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 25px;
  background-color: rgba(0, 0, 0, 0.7);
}
.layoutAdmin .viewPayments .paymentBlur .logo {
  width: 200px;
  height: 200px;
}
.layoutAdmin .viewPayments .paymentBlur .logo:after {
  background-color: #fff;
}
.layoutAdmin .viewPayments .paymentBlur span {
  margin-top: 250px;
}
.layoutAdmin .viewTickets {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}
.layoutAdmin .viewTickets .container {
  padding: 0;
}
.layoutAdmin .viewSettings {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}
.layoutAdmin .viewSettings .container {
  display: flex;
  flex-direction: column;
}
.layoutAdmin .viewSettings .dropdown {
  max-width: 100%;
  margin: 20px;
}
.layoutAdmin .viewSettings .dropdown #dropdownMenuButton {
  width: 100%;
  padding: 10px 30px;
  text-align: left;
  color: #555;
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1em;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 8px 6px 6px 0px rgba(51, 51, 51, 0.8);
}
.layoutAdmin .viewSettings .dropdown #dropdownMenuButton:hover {
  color: #006633;
  background-color: #eee;
  box-shadow: 10px 8px 4px 0px rgba(31, 31, 31, 0.8);
}
.layoutAdmin .viewSettings .dropdown #dropdownMenuButton .dropdownIcon {
  width: 30px;
  font-size: 30px;
  margin-right: 30px;
  text-align: center;
}
.layoutAdmin .viewSettings .dropdown .dropdown-menu {
  width: 100%;
}
.layoutAdmin .viewSettings .dropdown .dropdown-menu .dropdown-item {
  color: #333;
}
.layoutAdmin .viewSettings .dropdown .dropdown-menu .dropdown-item:hover {
  color: #333;
  background-color: #ddd;
}
.layoutAdmin .viewSettings .dropdown .dropdown-menu .dropdown-item:active {
  color: #333;
  background-color: #ccc;
}
.layoutAdmin .viewSettings .dropdown .dropdown-menu .dropdown-item:focus {
  outline: none;
}
.layoutAdmin .viewSettings .linkTab {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  max-width: 100%;
  margin: 20px;
  padding: 10px 30px;
  border-radius: 10px;
  color: #555;
  background-color: #fff;
  box-shadow: 8px 6px 6px 0px rgba(51, 51, 51, 0.8);
  transition: all ease .4s;
  cursor: pointer;
}
.layoutAdmin .viewSettings .linkTab:hover {
  text-decoration: none;
  color: #006633;
  background-color: #eee;
  box-shadow: 10px 8px 4px 0px rgba(31, 31, 31, 0.8);
}
.layoutAdmin .viewSettings .linkTab .linkIcon {
  width: 30px;
  font-size: 30px;
  margin-right: 30px;
  text-align: center;
}
.layoutAdmin .viewSettings .linkTab .linkText {
  font-size: 1.2em;
  font-weight: bold;
}
.layoutAdmin tr.has_errors {
  background: rgba(255, 0, 0, 0.1);
}
.layoutAdmin tr.has_errors:hover {
  background: rgba(255, 0, 0, 0.15) !important;
}
.layoutAdmin .scanner .scannedOrder {
  display: flex;
  flex-direction: row;
}
.layoutAdmin .scanner .scannedOrder .orderScan {
  margin-right: 50px;
}
.layoutAdmin .scanner .scannedOrder .orderScan .qrScanner {
  width: 400px;
  height: 400px;
  margin-bottom: 20px;
}
.layoutAdmin .scanner .scannedOrder .orderScan .qrScanner .videoContainer {
  position: relative;
  width: 100%;
  height: 100%;
  border: 3px solid #555;
  overflow: hidden;
}
.layoutAdmin .scanner .scannedOrder .orderScan .qrScanner .videoContainer .preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.layoutAdmin .scanner .scannedOrder .orderScan .qrScanner .videoContainer .preview.inactive {
  display: none;
}
.layoutAdmin .scanner .scannedOrder .orderScan .qrScanner .videoContainer .loading {
  position: absolute;
  width: fit-content;
  max-width: 100%;
  height: fit-content;
  max-height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 1.2em;
  font-weight: bold;
}
.layoutAdmin .scanner .scannedOrder .orderScan .qrScanner .videoContainer .cameraItems {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 25px;
  opacity: .8;
}
.layoutAdmin .scanner .scannedOrder .orderScan .qrScanner .videoContainer .cameraItems.switchCam {
  right: 30px;
}
.layoutAdmin .scanner .scannedOrder .orderScan .qrScanner .previewQR {
  width: 100%;
  height: 100%;
}
.layoutAdmin .scanner .scannedOrder .orderScan .qrScanner .previewText {
  text-align: center;
}
.layoutAdmin .scanner .scannedOrder .orderInformation .verify {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 30px;
  padding: 20px;
  margin-bottom: 30px;
  border: 3px solid #555;
}
@media (max-width: 768px) {
  .layoutAdmin .scanner .scannedOrder .orderScan .qrScanner {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 600px) {
  .layoutAdmin .scanner .scannedOrder {
    flex-direction: column;
  }
  .layoutAdmin .scanner .scannedOrder .orderScan {
    margin-right: 0;
  }
  .layoutAdmin .scanner .scannedOrder .orderScan .qrScanner {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
  }
  .layoutAdmin .scanner .scannedOrder .orderInformation {
    margin-top: 50px;
  }
}
@keyframes scanner {
  0% {
    top: -60px;
  }
  49.9% {
    top: calc(100% + 60px);
  }
  50% {
    top: calc(100% + 60px);
  }
  100% {
    top: -60px;
  }
}
@keyframes scannerShadow {
  0% {
    transform: translateY(-60px);
    background: linear-gradient(to top, rgba(0, 102, 51, 0.8), transparent);
  }
  49.9% {
    transform: translateY(-60px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    background: linear-gradient(to bottom, rgba(0, 102, 51, 0.8), transparent);
  }
}
.layoutAdmin .dropdown {
  flex: 1 0 80%;
  max-width: 80%;
  border: 2px solid transparent;
  border-radius: 5px;
}
.layoutAdmin .dropdown .dropdown-toggle {
  width: 100%;
  padding: 4px 10px;
  margin: 0;
  border-radius: 5px;
  color: #eee;
  background-color: #555;
  border: 1px solid transparent;
  text-align: left;
}
.layoutAdmin .dropdown .dropdown-toggle:focus {
  outline: none;
  border-color: #006633;
  box-shadow: none;
}
.layoutAdmin .dropdown .dropdown-toggle:after {
  float: right;
  margin: 10px 0;
}
.layoutAdmin .dropdown .dropdown-menu {
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  background-color: #555;
  border: 2px solid #006633;
}
.layoutAdmin .dropdown .dropdown-menu .dropdown-item {
  color: #eee;
  transition: background-color ease 0.2s;
}
.layoutAdmin .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #666;
}
.layoutAdmin .dropdown .dropdown-menu .dropdown-item:focus {
  outline: none;
}
.layoutAdmin input,
.layoutAdmin textarea {
  padding: 4px 10px;
  border-radius: 5px;
  border: 2px solid transparent;
}
.layoutAdmin input:focus,
.layoutAdmin textarea:focus {
  outline: none;
  border-color: #006633;
}
.layoutAdmin input::placeholder,
.layoutAdmin textarea::placeholder {
  color: #bbb;
}
.layoutAdmin .col-form-label {
  hyphens: auto;
}
.layoutAdmin .layoutAdmin input,
.layoutAdmin .layoutAdmin textarea {
  color: #eee;
  background-color: #555;
}
.layoutAdmin .layoutAdmin input:focus,
.layoutAdmin .layoutAdmin textarea:focus {
  color: #eee;
  background-color: #555;
}
.layoutAdmin .layoutAdmin .tabs .tabsMenu .tabMenu.active {
  background: #006633;
}
