﻿:root {
  --primary-color: #0976bc;
  --hover-color: #6d6e70;
  --sidebar-width: 240px;
  --items-column-width: 100%;
}

.app-shell {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

.app-shell > .app-sidebar {
  position: sticky !important;
  top: 0;
  flex: 0 0 var(--sidebar-width);
  width: var(--sidebar-width) !important;
  height: 100vh;
  overflow-y: auto;
  z-index: 30;
}

.app-main {
  flex: 1;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin-left: 0 !important;
}

.main-banner,
.mobile-header {
  position: sticky;
  top: 0;
  z-index: 20;
  flex-shrink: 0;
}

@media screen and (max-width: 992px) {
  .app-shell {
    flex-direction: column;
  }

  .app-shell > .app-sidebar {
    display: none;
  }
}
body,
h1,
h2,
h3,
h4,
h5 {
  font-family: "Raleway", sans-serif;
}
.w3-third img {
  margin-bottom: -6px;
  opacity: 0.8;
  cursor: pointer;
}
.w3-third img:hover {
  opacity: 1;
}

.im {
  max-width: 170px;
}

img {
  max-width: 100%;
  height: auto;
}

.hello {
  font-family: "Raleway", sans-serif;
  text-align: center;
  font-size: 20px;
  background-color: #f9faf9;
  flex: 0 1 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.hello-controls {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem 1rem;
}

.hello-controls p {
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.hello input:not(#datepicker) {
  outline: 0;
  width: 250px;
  display: block;
  margin: 20px auto 5px auto;
  border: none;
  border-bottom: 1px solid #d3d3d3;
  padding: 9px 30px 8px 36px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #0976bc;
  font-size: 1.6em;
  font-weight: 700;
  line-height: 1.2;
}

.items {
  font-family: "Raleway", sans-serif;
  text-align: center;
  font-size: 20px;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0;
}

.items.is-active {
  flex: 0 1 auto;
  min-height: 0;
}

.items-panel {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border-top: none;
  overflow: visible;
  text-align: left;
  display: none;
  flex-direction: column;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 50px;
}

.items.is-active .items-panel {
  display: flex;
  flex: 0 1 auto;
}

.items .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  flex: 0 1 auto;
  display: block;
}

.items-content {
  width: 100%;
  flex: 1;
}

.items-message {
  margin: 10px 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.55;
  text-align: center;
  font-family: "Raleway", sans-serif;
}

.items-empty {
  color: #4b5563;
  background: #f9fafb;
  border: 1px dashed #d1d5db;
  font-weight: 500;
}

.items-notice {
  color: #b42318;
  background: #fef3f2;
  border: 1px solid #fecdca;
  font-weight: 600;
}

.item-row {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0 !important;
  padding: 0 !important;
  background: var(--ws-surface, #fff);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.item-row:hover {
  background: #fff;
}

.item-row--tall {
  padding: 0 !important;
}

.item-row__info {
  min-width: 0;
}

.item-row__title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 0.35rem;
}

.item-row__desc,
.item-row__meta {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #64748b;
  overflow: hidden;
  white-space: normal;
}

.item-row__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  justify-self: end;
}

.item-row__commerce {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  gap: 0.35rem;
}

.item-row__price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #166534;
  background: #ecfdf3;
  border-radius: 8px;
  padding: 0.35rem 0.55rem;
  min-width: 52px;
  text-align: center;
}

.item-row__stock {
  font-size: 0.65rem;
  line-height: 1.2;
  color: #9f1239;
  background: #fff1f2;
  border-radius: 8px;
  padding: 0.3rem 0.45rem;
  text-align: center;
}

.item-row__stock-val {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
}

.item-row__actions {
  /* legacy alias — use .item-qty-group */
}

.item-qty-btn,
.minus,
.plus,
.minus2,
.plus2,
.minus3,
.plus3,
.minus8,
.plus8,
.minus9,
.plus9 {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  padding: 0 !important;
  margin: 0;
  float: none !important;
  line-height: 1 !important;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
  background-color: #0976bc;
  color: white;
  box-shadow: 0 2px 4px rgba(9, 118, 188, 0.2);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.item-qty-group {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-shrink: 0;
  padding: 0.35rem 0.6rem;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.item-row__count {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2rem;
  width: 2rem;
  min-width: 2rem;
  text-align: center;
  font-weight: 700;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1;
}

.item-qty-group .item-qty-btn,
.item-qty-group .minus,
.item-qty-group .plus,
.item-qty-group .minus2,
.item-qty-group .plus2,
.item-qty-group .minus3,
.item-qty-group .plus3,
.item-qty-group .minus8,
.item-qty-group .plus8,
.item-qty-group .minus9,
.item-qty-group .plus9 {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
  line-height: 1 !important;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
  background-color: #0976bc;
  color: white;
  box-shadow: 0 2px 4px rgba(9, 118, 188, 0.2);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  flex: 0 0 36px;
}

.item-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  margin-right: 0.25rem;
  vertical-align: middle;
  background: #e0f2fe;
  color: #0369a1;
}

.item-badge--sale {
  background: #fef08a;
  color: #854d0e;
}

.item-badge--lesson {
  background: #dbeafe;
  color: #1d4ed8;
}

.item-badge--parking {
  background: #ede9fe;
  color: #6d28d9;
}

.scheduled-item {
  background: var(--row-bg, #fff);
  border-bottom: 1px solid #edf0f4;
}

.scheduled-item .item-row {
  background: transparent;
  border-bottom: none;
}

.scheduled-item .item-row:hover {
  background: transparent;
}

.item-row--scheduled .item-row__aside {
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.scheduled-item:hover {
  background: #f8fbff;
}

.scheduled-item__details {
  display: none;
  padding: 0 1rem 0.5rem;
}

.scheduled-item.is-expanded .scheduled-item__details {
  display: block;
}

.scheduled-item__desc {
  font-family: "Raleway", sans-serif;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #4b5563;
  white-space: pre-wrap;
  word-break: break-word;
  background: #f9fafb;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  margin: 0;
}

.scheduled-item__toggle {
  display: block;
  width: calc(100% - 2rem);
  margin: 0 1rem 0.65rem;
  padding: 0.45rem 0.75rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #0976bc;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease;
}

.scheduled-item__toggle:hover {
  background: #e0f2fe;
  border-color: #7dd3fc;
}

.scheduled-item.is-expanded .scheduled-item__toggle {
  margin-bottom: 0.5rem;
}

.itemTabs {
  display: none;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  background: #e8eef5;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  gap: 0;
  position: relative;
  flex-shrink: 0;
}

.itemTabs::after {
  display: none;
}

.itemTab {
  flex: 1;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: auto;
  max-height: none;
  padding: 0.85rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: transparent;
  color: #4b5563;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.itemTab.active,
.active.itemTab {
  background: #fff;
  color: var(--primary-color);
  box-shadow: inset 0 3px 0 var(--primary-color);
  padding-top: 0.85rem;
}

.itemTab i,
.itemTab .tabIcon {
  font-size: 0.95rem !important;
  color: inherit !important;
}

.tit1 {
  width: 100%;
  background: linear-gradient(180deg, #f3f4f6 0%, #e5e7eb 100%);
  padding: 0.75rem 1rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #374151;
  border-radius: 0;
  text-align: center;
}

@media screen and (min-width: 768px) {
  :root {
    --items-column-width: 100%;
  }
}

@media screen and (min-width: 600px) {
  .container {
    width: 50%;
    margin: 0 auto;
    padding: 10px;
    position: relative;
  }

  .items .container,
  .ws-app .items .container,
  .items-panel .container {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }
}

@media screen and (max-width: 640px) {
  .item-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 0 !important;
  }

  .item-row__info {
    width: 100%;
  }

  .item-row__aside {
    display: none;
  }

  .itemTab {
    font-size: 0.62rem;
    padding: 0.7rem 0.25rem;
  }
}
#wday {
  color: #0976bc;
  position: static;
  font-family: "Raleway", sans-serif;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: auto;
  width: min(400px, 92vw);
  background-color: #e8eef5;
  margin: 0 auto 0.25rem;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
}

#wday:empty {
  display: none;
  margin: 0;
  padding: 0;
  min-height: 0;
  background: none;
}

/* Custom checkbox style */
.checkbox-wrapper {
  display: flex;
  align-items: center;
  margin-top: 18px;
  background-color: #fae3e8;
  padding: 10px;
  /* border-radius: 10px; */
  text-align: left;
}

.checkbox-label {
  margin-left: 10px;
  /* font-weight: bold; */
  color: #333;
  cursor: pointer;
}

.checkbox-custom {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  border: 2px solid #333;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: start;
}

.checkbox-custom:checked {
  box-sizing: border-box;
  background-color: #25cc6d;
  border: 2px solid #25cc6d;
}

.checkbox-custom:checked::before {
  content: "✓";
  display: inline-block;
  width: 100%;
  height: 100%;
  font-size: 16px;
  text-align: center;
  line-height: 20px;
  color: #fff;
}

.ite {
  position: relative;
  left: 56px;
  top: 5px;
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  width: 28px;
  color: white;
  background-color: red;
  border-radius: 5px;
  text-align: center;
}

.ite2 {
  position: relative;
  top: -1px;
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  width: 28px;
  color: white;
  background-color: red;
  border-radius: 5px;
  text-align: center;
  padding: 0 5px 0 5px;
}

.ite3 {
  position: absolute;
  top: 15px;
  right: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  width: 28px;
  color: red;
  background-color: white;
  border-radius: 5px;
  text-align: center;
  padding: 0 5px 0 5px;
}

.ite3bg {
  background-color: #0976bc;
  color: white;
}

i {
  color: #203a81;
  font-size: 1em;
}

.w3-main i {
  color: white;
  font-size: 1em;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  position: relative;
}

/* legacy container rule kept for non-items contexts */
.items .container {
  padding: 0;
}

.content1,
.content2,
.content3,
.content4 {
  width: 100%;
  overflow: visible;
  margin: 0;
}

.content4 {
  position: relative;
}

.hidden {
  display: none;
}

.minus8 {
  overflow: hidden;
  height: 35px;
  background-color: #0976bc;
  border-radius: 5px;
  color: white;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.24);
  cursor: pointer;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.minus8:active {
  transform: translateY(2px);
}

.plus8 {
  overflow: hidden;
  height: 35px;
  background-color: #0976bc;
  border-radius: 5px;
  color: white;
  padding: 2px 0 0 0;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.24);
  cursor: pointer;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.plus8:active {
  transform: translateY(2px);
}

.minus {
  overflow: hidden;
  height: 35px;
  background-color: #0976bc;
  border-radius: 5px;
  color: white;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.24);
  cursor: pointer;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.item-qty-btn:active,
.minus:active,
.plus:active,
.minus2:active,
.plus2:active,
.minus3:active,
.plus3:active,
.minus8:active,
.plus8:active,
.minus9:active,
.plus9:active {
  transform: translateY(1px);
}

.plus {
  overflow: hidden;
  height: 35px;
  background-color: #0976bc;
  border-radius: 5px;
  color: white;
  padding: 2px 0 0 0;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.24);
  cursor: pointer;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.plus:active {
  transform: translateY(2px);
}

.minus2 {
  overflow: hidden;
  height: 35px;
  background-color: #0976bc;
  border-radius: 5px;
  color: white;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.24);
  cursor: pointer;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.minus2:active {
  transform: translateY(2px);
}

.plus2 {
  overflow: hidden;
  height: 35px;
  background-color: #0976bc;
  border-radius: 5px;
  color: white;
  padding: 2px 0 0 0;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.24);
  cursor: pointer;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.plus2:active {
  transform: translateY(2px);
}

.minus3 {
  overflow: hidden;
  height: 35px;
  background-color: #0976bc;
  border-radius: 5px;
  color: white;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.24);
  cursor: pointer;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.minus3:active {
  transform: translateY(2px);
}

.plus3 {
  overflow: hidden;
  height: 35px;
  background-color: #0976bc;
  border-radius: 5px;
  color: white;
  padding: 2px 0 0 0;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.24);
  cursor: pointer;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.plus3:active {
  transform: translateY(2px);
}

/* Popup box BEGIN */
.hover_bkgr_fricc,
.hover_bkgr_fricc2,
.hover_bkgr_fricc3,
.hover_bkgr_fricc5,
.hover_bkgr_fricc_clubdonate {
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 10000;
  padding: 1rem;
  padding-top: max(1rem, env(safe-area-inset-top));
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  text-align: initial;
}

.hover_bkgr_fricc {
  cursor: pointer;
}

.hover_bkgr_fricc2,
.hover_bkgr_fricc3,
.hover_bkgr_fricc_clubdonate {
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hover_bkgr_fricc2::-webkit-scrollbar,
.hover_bkgr_fricc3::-webkit-scrollbar,
.hover_bkgr_fricc_clubdonate::-webkit-scrollbar {
  display: none;
}

.hover_bkgr_fricc5 {
  z-index: 11000;
}

.hover_bkgr_fricc .helper,
.hover_bkgr_fricc2 .helper,
.hover_bkgr_fricc3 .helper,
.hover_bkgr_fricc5 .helper,
.hover_bkgr_fricc_clubdonate .helper {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden;
}

.hover_bkgr_fricc > div,
.hover_bkgr_fricc2 > div,
.hover_bkgr_fricc3 > div,
.hover_bkgr_fricc5 > div,
.hover_bkgr_fricc_clubdonate > div {
  background-color: #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.28);
  display: block;
  height: auto;
  max-width: 520px;
  min-height: 0;
  width: min(520px, 100%);
  position: relative;
  border-radius: 16px;
  padding: 1.5rem 1.25rem 1.25rem;
  color: #1f2937;
  font-family: "Raleway", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  text-align: left;
  max-height: min(90vh, 860px);
  max-height: min(90dvh, 860px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-sizing: border-box;
  flex-shrink: 0;
  margin: 0 auto;
}

.hover_bkgr_fricc > div {
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  padding: 2rem 1.5rem;
}

.hover_bkgr_fricc2 > div {
  padding: 1.5rem 1.25rem 1.25rem;
}

#msg,
#msg9 {
  color: #374151 !important;
}

#msg {
  text-align: center;
  padding: 0.5rem 0;
}

#msg p,
#msg9 > p {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0976bc;
  margin: 0 0 1rem;
  text-align: center;
  line-height: 1.4;
}

#msg2 {
  color: #374151 !important;
}

#msg2 > p {
  font-size: 1rem;
  font-weight: 700;
  color: #0976bc;
  margin: 0 0 1rem;
  text-align: center;
  line-height: 1.4;
}

.popupCloseButton,
.popupCloseButton2,
.popupCloseButton3,
.popupCloseButton5,
.popupCloseButtonClubDonate {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 1.35rem;
  line-height: 1;
  width: 36px;
  height: 36px;
  text-align: center;
  color: #6b7280;
  z-index: 2;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}

.popupCloseButton:hover,
.popupCloseButton2:hover,
.popupCloseButton3:hover,
.popupCloseButton5:hover,
.popupCloseButtonClubDonate:hover {
  background-color: #f3f4f6;
  color: #1f2937;
  border-color: #d1d5db;
}

.trigger_popup_fricc,
.trigger_popup_fricc2,
.trigger_popup_fricc3,
.trigger_popup_fricc5 {
  cursor: pointer;
  font-size: 20px;
  margin: 20px;
  display: inline-block;
  font-weight: bold;
}

.hover_bkgr_fricc2 input,
.hover_bkgr_fricc2 select,
.hover_bkgr_fricc2 textarea,
.hover_bkgr_fricc2 label,
.hover_bkgr_fricc2 a,
.hover_bkgr_fricc3 a,
.hover_bkgr_fricc_clubdonate input,
.hover_bkgr_fricc_clubdonate label {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Club donation modal */
.hover_bkgr_fricc_clubdonate > div {
  padding: 1.5rem 1.25rem 1.25rem;
  max-width: 440px;
}

.hover_bkgr_fricc_clubdonate .ws-step__body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 0.25rem;
}

.club-donate-warn {
  color: red !important;
  width: 100% !important;
  text-align: center !important;
  justify-content: center;
  background: #f8d8d8;
  padding: 5px;
  border-radius: 10px;
  border: solid thin red;
  font-size: 0.82rem;
  font-weight: 600;
  box-sizing: border-box;
  margin: 0;
  margin-bottom: 5px !important;  
}

.club-donate-warn:empty {
  display: none;
}

.club-donate-option[hidden],
#clubDonateBaseOption[style*="display: none"],
#clubDonateCustomOption[style*="display: none"] {
  display: none !important;
}

.club-donate-options,
.club-donate-gift {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.club-donate-gift[hidden] {
  display: none !important;
}

.club-donate-option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  margin: 0;
  padding: 0.9rem 1rem;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  box-sizing: border-box;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.club-donate-option:hover {
  background: #f0f9ff;
  border-color: #bae6fd;
}

.club-donate-option.is-selected {
  background: #f0f9ff;
  border-color: #0976bc;
  box-shadow: 0 0 0 1px rgba(9, 118, 188, 0.15);
}

.club-donate-option input[type="radio"],
.club-donate-option input[type="checkbox"] {
  width: 1.125rem !important;
  min-width: 1.125rem !important;
  height: 1.125rem !important;
  min-height: 1.125rem !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0;
  border: 2px solid #64748b !important;
  box-shadow: none !important;
  accent-color: #0976bc;
  cursor: pointer;
  background-color: #fff;
}

.club-donate-option input[type="radio"] {
  border-radius: 999px !important;
}

.club-donate-option input[type="checkbox"] {
  border-radius: 4px !important;
}

.club-donate-option__copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  text-align: left;
}

.club-donate-option__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.3;
}

.club-donate-option__price {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0976bc;
  line-height: 1.3;
}

.club-donate-option__hint {
  font-size: 0.8rem;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.3;
}

.club-donate-custom {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  transition:
    opacity 0.15s ease,
    border-color 0.15s ease;
}

.club-donate-custom.is-disabled {
  opacity: 0.55;
}

.club-donate-custom:not(.is-disabled) {
  border-color: #bae6fd;
  background: #f8fbff;
}

.club-donate-custom__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #4b5563;
  text-align: left;
}

.hover_bkgr_fricc_clubdonate #clubDonateCustomInput,
.hover_bkgr_fricc_clubdonate #clubDonateSponsorshipInput {
  width: 100%;
  max-width: 100%;
  min-height: 2.75rem;
  margin: 0;
  padding: 0.6rem 0.75rem;
  border: 1.5px solid #94a3b8 !important;
  border-radius: 10px;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.hover_bkgr_fricc_clubdonate #clubDonateCustomInput:disabled,
.hover_bkgr_fricc_clubdonate #clubDonateSponsorshipInput:disabled {
  background: #f8fafc;
  color: #94a3b8;
  cursor: not-allowed;
}

.hover_bkgr_fricc_clubdonate #clubDonateCustomInput:focus,
.hover_bkgr_fricc_clubdonate #clubDonateSponsorshipInput:focus {
  border-color: #0976bc !important;
  box-shadow: 0 0 0 3px rgba(9, 118, 188, 0.15);
  outline: none;
}

.hover_bkgr_fricc2 .bx1.skiInsureCheckbox:not(.hidden) {
  display: block !important;
  padding: 0 !important;
  margin: 0.75rem auto 0.25rem !important;
  background: transparent !important;
  border: none !important;
}

.hover_bkgr_fricc2 .bx1.skiInsureCheckbox .ws-insure-row {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0.85rem 1rem;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 12px;
  box-sizing: border-box;
  overflow: hidden;
}

.hover_bkgr_fricc2 .bx1.skiInsureCheckbox .ws-insure-row__main {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1;
  min-width: 0;
  margin: 10px;
  cursor: pointer;
}

.hover_bkgr_fricc2 .bx1.skiInsureCheckbox .ws-insure-row__text {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1e40af;
  white-space: nowrap;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.hover_bkgr_fricc2 .bx1.skiInsureCheckbox .ws-insure-row__link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  white-space: nowrap;
  margin: 10px;
}

.hover_bkgr_fricc2 .bx1.skiInsureCheckbox .ws-insure-row__check,
.hover_bkgr_fricc2 .bx1.skiInsureCheckbox input[type="checkbox"] {
  width: 25px !important;
  height: 25px !important;
  min-width: 25px !important;
  min-height: 25px !important;
  margin: 0 !important;
  flex-shrink: 0;
  accent-color: #0976bc;
  cursor: pointer;
}

.hover_bkgr_fricc2 .bx1.RCheckbox:not(.hidden) {
  display: block;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  box-sizing: border-box;
}

.hover_bkgr_fricc2 .bx1.skiInsureCheckbox.hidden,
.hover_bkgr_fricc2 .bx1.RCheckbox.hidden {
  display: none;
}

.hover_bkgr_fricc2 .bx1.skiInsureCheckbox > div,
.hover_bkgr_fricc2 .bx1.RCheckbox > div {
  float: none !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  line-height: 1.4 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.hover_bkgr_fricc2 .bx1.RCheckbox > div {
  width: 100% !important;
}

.lessonScheduleInformation span.lessonRentalInsurance[style*="display: none"],
.lessonScheduleInformation span.lessonRentalInsurance[style*="display:none"] {
  display: none !important;
}

.hover_bkgr_fricc2 .bx1.skiInsureCheckbox a,
.hover_bkgr_fricc2 .bx1.skiInsureCheckbox a.ski_insure_more_info,
.hover_bkgr_fricc2 .bx1.skiInsureCheckbox a.bike_insure_more_info {
  color: #0976bc !important;
  font-weight: 600;
  text-decoration: none;
  width: auto !important;
  display: inline-block;
  white-space: nowrap;
  font-size: 0.85rem;
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #bae6fd;
}

.hover_bkgr_fricc2 .bx1.skiInsureCheckbox a[style*="display: none"],
.hover_bkgr_fricc2
  .bx1.skiInsureCheckbox
  a.bike_insure_more_info[style*="display: none"],
.hover_bkgr_fricc2
  .bx1.skiInsureCheckbox
  a.ski_insure_more_info[style*="display: none"] {
  display: none !important;
}

.hover_bkgr_fricc2 .bx1.RCheckbox label {
  color: #b45309 !important;
  font-size: 0.78rem !important;
  line-height: 1.45 !important;
  text-align: left !important;
  height: auto !important;
}

.itit {
  font-size: 14px;
  overflow: hidden;
  height: 32px;
  line-height: 16px;
  font-weight: 500;
  color: #333333;

  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #333333;
}

/* Popup box BEGIN - help / skier type */
.hover_bkgr_fricc5 .helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

#skiertype {
  width: 100% !important;
  max-width: 100%;
  margin: 0 auto !important;
  top: auto !important;
  color: #374151;
  font-size: 0.9rem;
  line-height: 1.5;
}

.itit2 {
  font-size: 12px;
  overflow: hidden;
  height: 70px;
  line-height: 14px;
  font-weight: 300;
  color: #595959;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #595959;
}

.hlite {
  color: white;
  background-color: #0976bc;
  border-radius: 5px;
  text-align: center;
  padding: 0 5px 0 5px;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: #fff;
  font-size: 12px;
}
.hliteLesson {
  color: white;
  background-color: rgb(141 35 211);
  border-radius: 5px;
  text-align: center;
  padding: 0 5px 0 5px;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: #fff;
  font-size: 12px;
}
.hlite8 {
  color: white;
  background-color: #0976bc;
  border-radius: 5px;
  text-align: center;
  padding: 0 5px 0 5px;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: #fff;
  font-size: 12px;
}
.hlite88 {
  color: white;
  background-color: #ef542e;
  border-radius: 5px;
  text-align: center;
  padding: 0 5px 0 5px;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: #fff;
  font-size: 12px;
}

.hlite99 {
  color: white;
  background-color: #47a00e;
  border-radius: 5px;
  text-align: center;
  padding: 0 5px 0 5px;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: #fff;
  font-size: 12px;
}
.hlite9 {
  color: white;
  background-color: #2c59a6;
  border-radius: 5px;
  text-align: center;
  padding: 0 5px 0 5px;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: #fff;
  font-size: 12px;
}

.hlite10 {
  color: white;
  background-color: #007900;
  border-radius: 5px;
  text-align: center;
  padding: 0 5px 0 5px;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: #fff;
  font-size: 12px;
}

.hlite11 {
  color: white;
  background-color: #0053bf;
  border-radius: 5px;
  text-align: center;
  padding: 0 5px 0 5px;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: #fff;
  font-size: 12px;
}

.hlite5 {
  color: white;
  background-color: red;
  border-radius: 5px;
  text-align: center;
  padding: 0 5px 0 5px;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: #fff;
  font-size: 12px;
}

.bx1 {
  margin: 0 auto 0.75rem;
  width: 100%;
  max-width: 100%;
  font-size: 0.85rem;
  overflow: visible;
}

#msg2 {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hover_bkgr_fricc2 .bx1:not(.skiInsureCheckbox):not(.RCheckbox) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0;
}

.hover_bkgr_fricc2 .bx1:not(.skiInsureCheckbox):not(.RCheckbox) > div,
.hover_bkgr_fricc2 .bx1:not(.skiInsureCheckbox):not(.RCheckbox) > div[style] {
  height: auto !important;
  min-height: 2.75rem;
  overflow: visible !important;
  line-height: 1.4 !important;
  display: flex;
  align-items: center;
}

/* Height row: keep feet + inches together */
.hover_bkgr_fricc2 .bx1.height:not(.hidden) {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hover_bkgr_fricc2 .bx1.height:not(.hidden) > div {
  float: none !important;
  height: auto !important;
}

.hover_bkgr_fricc2 .bx1.height:not(.hidden) > div:first-child {
  flex: 0 0 auto;
  width: auto !important;
  max-width: none !important;
  white-space: nowrap;
}

.hover_bkgr_fricc2 .bx1.height:not(.hidden) > .ws-height-controls {
  flex: 1 1 0;
  min-width: 0;
  width: auto !important;
}

.hover_bkgr_fricc2 .bx1.height:not(.hidden) .ws-height-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.hover_bkgr_fricc2 .bx1.height:not(.hidden) .ws-height-controls__field {
  flex: 1 1 0;
  min-width: 0;
}

.hover_bkgr_fricc2 .bx1.height:not(.hidden) .ws-height-controls #feet,
.hover_bkgr_fricc2 .bx1.height:not(.hidden) .ws-height-controls #inches {
  width: 100% !important;
}

/* Fallback: enforce the same layout anywhere `#f-height` is used. */
.bx1.height#f-height:not(.hidden) {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bx1.height#f-height:not(.hidden) > div {
  float: none !important;
  height: auto !important;
}

.bx1.height#f-height:not(.hidden) > div:first-child {
  flex: 0 0 auto;
  width: auto !important;
  max-width: none !important;
  white-space: nowrap;
}

.bx1.height#f-height:not(.hidden) > .ws-height-controls {
  flex: 1 1 0;
  min-width: 0;
  width: auto !important;
}

.bx1.height#f-height:not(.hidden) .ws-height-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.bx1.height#f-height:not(.hidden) .ws-height-controls__field {
  flex: 1 1 0;
  min-width: 0;
}

.bx1.height#f-height:not(.hidden) .ws-height-controls #feet,
.bx1.height#f-height:not(.hidden) .ws-height-controls #inches {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  display: block;
  box-sizing: border-box;
}

.hover_bkgr_fricc2 .bx1.RCheckbox > div {
  min-height: 0;
  display: block;
}

.hover_bkgr_fricc2 .bx1 > div[style*="width:40%"],
.hover_bkgr_fricc2 .bx1 > div[style*="width: 40%"] {
  font-weight: 600;
  color: #4b5563;
  padding-right: 0.5rem;
  flex: 0 0 38%;
  max-width: 38%;
}

.hover_bkgr_fricc2 .bx1 > div[style*="width:59%"],
.hover_bkgr_fricc2 .bx1 > div[style*="width: 59%"],
.hover_bkgr_fricc2 .bx1 > div[style*="width:28%"],
.hover_bkgr_fricc2 .bx1 > div[style*="width: 28%"] {
  flex: 1 1 auto;
  min-width: 0;
}

.bx1 input,
.bx1 select,
.bx1 textarea,
.modalTimeslotContainer input,
.modalTimeslotContainer select,
.modalTimeslotContainer textarea,
.customerInfoInput {
  width: 100%;
  padding: 0.6rem 0.75rem;
  outline: 0;
  border: 1.5px solid #94a3b8 !important;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #1f2937;
  font-weight: 500;
  line-height: 1.35;
  background-color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  min-height: 2.75rem;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
  margin-bottom: 0.15rem;
}

.bx1 input[type="checkbox"],
.customerInfoInput[type="checkbox"],
.lessonRentalInsurance input[type="checkbox"],
#skiInsureCheckbox {
  width: 1.125rem !important;
  min-width: 1.125rem !important;
  height: 1.125rem !important;
  min-height: 1.125rem !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 2px solid #64748b !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  accent-color: #0976bc;
  cursor: pointer;
  flex-shrink: 0;
  background-color: #fff;
}

.lessonScheduleInformation span.lessonRentalInsurance {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.75rem;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin: 0.5rem 0 0.25rem;
  box-sizing: border-box;
  width: 100%;
}

.lessonScheduleInformation span.lessonRentalInsurance > div {
  float: none !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  line-height: 1.4 !important;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1e40af;
}

.lessonScheduleInformation span.lessonRentalInsurance > div:first-child {
  flex: 0 0 auto;
}

.lessonScheduleInformation span.lessonRentalInsurance > div:last-child {
  flex: 0 0 auto;
  margin-left: auto;
  justify-content: flex-end;
}

.lessonScheduleInformation span.lessonRentalInsurance a {
  color: #0976bc !important;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.85rem;
}

.bx1 input:focus,
.bx1 select:focus,
.bx1 textarea:focus,
.modalTimeslotContainer input:focus,
.modalTimeslotContainer select:focus,
.modalTimeslotContainer textarea:focus,
.customerInfoInput:focus {
  border-color: #0976bc !important;
  box-shadow:
    0 0 0 3px rgba(9, 118, 188, 0.15),
    inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.bx1 textarea.are,
textarea.are {
  min-height: 80px;
  resize: vertical;
  line-height: 1.4;
  border: 1.5px solid #94a3b8 !important;
  border-radius: 10px;
  background-color: #fff;
  padding: 0.6rem 0.75rem;
}

.hover_bkgr_fricc3 .bx1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-sizing: border-box;
  overflow: visible;
}

.hover_bkgr_fricc3 .bx1 > div {
  float: none !important;
  width: auto !important;
  height: auto !important;
  line-height: 1.4 !important;
  font-size: 0.88rem !important;
  overflow: visible !important;
}

.hover_bkgr_fricc3 .bx1 a {
  color: #dc2626;
  font-weight: 600;
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  white-space: nowrap;
  transition: background-color 0.15s ease;
}

.hover_bkgr_fricc3 .bx1 a:hover {
  background: #fee2e2;
}

.hover_bkgr_fricc3 .ws-delete-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  margin: 0.55rem 0;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-sizing: border-box;
}

.hover_bkgr_fricc3 .ws-delete-item__main {
  min-width: 0;
  flex: 1 1 auto;
  text-align: left;
}

.hover_bkgr_fricc3 .ws-delete-item__name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.35;
  word-break: break-word;
}

.hover_bkgr_fricc3 .ws-delete-item__meta {
  margin-top: 0.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.35;
  word-break: break-word;
}

.hover_bkgr_fricc3 .ws-delete-item__action {
  flex-shrink: 0;
  color: #dc2626;
  font-weight: 600;
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  white-space: nowrap;
  transition: background-color 0.15s ease;
}

.hover_bkgr_fricc3 .ws-delete-item__action:hover {
  background: #fee2e2;
}

/* Keep validation visible when JS sets border-bottom inline */
.hover_bkgr_fricc2 .bx1 input[style*="border-bottom"][style*="red"],
.hover_bkgr_fricc2 .bx1 select[style*="border-bottom"][style*="red"],
.hover_bkgr_fricc2 .bx1 textarea[style*="border-bottom"][style*="red"] {
  border-color: #dc2626 !important;
  box-shadow:
    0 0 0 3px rgba(220, 38, 38, 0.12),
    inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.passh1,
.passh2,
.passh3,
.passh4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0976bc;
  margin: 1rem 0 0.35rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e5e7eb;
}

.passh1 {
  margin-top: 0.5rem;
  border-top: none;
  padding-top: 0;
}

.passnote {
  font-size: 0.82rem;
  line-height: 1.45;
  color: #b45309;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 10px;
  text-align: left;
  padding: 0.65rem 0.85rem;
  margin-bottom: 0.5rem;
}

.hover_bkgr_fricc2 #warn {
  font-size: 0.82rem !important;
  color: #dc2626 !important;
  text-align: center;
  margin-bottom: 0.5rem;
  min-height: 1rem;
}

.buton4 {
  margin: 0.5rem auto 0;
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  background: linear-gradient(180deg, #0a85d4 0%, #0976bc 100%);
  cursor: pointer;
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.75rem 1rem;
  text-decoration: none;
  text-shadow: none;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(9, 118, 188, 0.28);
  text-align: center;
  box-sizing: border-box;
  transition:
    background 0.15s ease,
    transform 0.1s ease;
}

.buton4:active {
  position: relative;
  top: 0;
  transform: translateY(1px);
}

.buton4:hover {
  background: linear-gradient(180deg, #0976bc 0%, #0868a8 100%);
  position: relative;
  top: 0;
}

.buton44,
#datepicker {
  box-sizing: border-box;
  display: block;
  width: min(400px, 92vw);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(180deg, #0a85d4 0%, #0976bc 100%);
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(9, 118, 188, 0.28);
  cursor: pointer;
  text-shadow: none;
  transition:
    background 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
  position: relative;
  top: auto;
}

.buton44:active,
#datepicker:active {
  transform: translateY(1px);
  box-shadow: 0 1px 4px rgba(9, 118, 188, 0.2);
}

#datepicker.is-selected {
  background: #fff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 2px 8px rgba(9, 118, 188, 0.12);
  font-size: 0.95rem;
  width: min(400px, 92vw);
}

.buton44:hover,
#datepicker:hover:not(.is-selected) {
  background: linear-gradient(180deg, #7a7b7d 0%, #6d6e70 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

#skiertype {
  position: relative;
  width: 300px;
  height: 500px;
  background: url(../../skiertype.png) no-repeat;
}

.are {
  width: 100%;
  min-height: 80px;
  resize: vertical;
  padding: 0.6rem 0.75rem;
  outline: 0;
  border: 1.5px solid #94a3b8 !important;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #1f2937;
  font-weight: 500;
  line-height: 1.4;
  background-color: #fff;
  font-family: "Raleway", sans-serif;
}

textarea::placeholder {
  padding: 5px;

  color: #94b8b8;
  font-size: 12px;
  font-style: italic;
}

/* 
.itemTabs{
    width: 100%;
    font-family: "arial", sans-serif;
} */
/* 
.itemTabs:before{
    content : "";
    position: absolute;
    bottom: -10px;
    margin: auto;
    height  : 1px;
    width   : 37vw;
    border-bottom: 10px solid green;
} */

.w3-main i {
  color: unset;
}

div.itemTab:disabled {
  background-color: #2e2e2e !important;
  color: white;
}

/* Lockers */
#lockersContent,
#lockersInfo {
  width: min(560px, 100%);
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  font-family: "Raleway", sans-serif;
  color: #1f2937;
  position: relative;
  text-align: left;
}

.lockers-panel {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.lockers-panel-header {
  background: linear-gradient(180deg, #0a85d4 0%, #0976bc 100%);
  color: #fff;
  padding: 1.35rem 1.35rem 1.2rem;
  text-align: center;
}

.lockers-title {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.lockers-intro {
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  padding: 0;
  max-width: 34ch;
  margin-left: auto;
  margin-right: auto;
}

#lockersContent h2 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
  color: #0976bc;
  text-align: center;
  margin: 1.5rem 1.25rem;
  padding: 1rem 1.1rem;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 12px;
}

.lockers-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.35rem 1.35rem 1rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid #e2e8f0;
}

.lockers-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
}

.lockers-field label {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  color: #374151;
}

.lockers-required {
  color: #ef4444;
  font-size: 0.85em;
  line-height: 1;
}

.lockers-field .customerInfoInput,
#lockerEmail,
#lockerName {
  display: block;
  width: 100% !important;
  max-width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.lockers-hint {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #64748b;
  font-weight: 500;
  margin: 0.1rem 0 0;
}

.lockers-form .lockerError {
  display: none;
  margin: 0.15rem 0 0;
  padding: 0.75rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
  color: #b91c1c;
  text-align: left;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
}

.lockers-form .lockerError:not(:empty) {
  display: block;
}

.lockers-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 20px;
  padding: 1.15rem 1.35rem 1.35rem;
  background: #fff;
}

#lockerSubmit,
#lockerOpenWaitlist {
  float: none;
  clear: none;
  margin: 0;
  transform: none;
  width: 100%;
  min-height: 44px;
  height: auto;
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 12px;
  cursor: pointer;
  box-sizing: border-box;
  line-height: 1.35;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.1s ease;
}

#lockerSubmit {
  background: linear-gradient(180deg, #0a85d4 0%, #0976bc 100%);
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(9, 118, 188, 0.28);
}

#lockerSubmit:hover {
  background: linear-gradient(180deg, #0976bc 0%, #0868a8 100%);
}

#lockerOpenWaitlist {
  background: #fff;
  color: #0976bc;
  border: 2px solid #0976bc;
  box-shadow: none;
}

#lockerOpenWaitlist:hover {
  background: #f0f9ff;
}

#lockersInfo {
  margin-top: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.lockers-results {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.lockersTable {
  border-collapse: collapse;
  width: 100%;
  min-width: 520px;
  transform: none;
  font-size: 0.85rem;
}

.lockersTable td,
.lockersTable th {
  border: none;
  border-bottom: 1px solid #e5e7eb;
  padding: 0.75rem 0.65rem;
  text-align: left;
  vertical-align: middle;
}

.lockersTable th {
  padding: 0.65rem;
  text-align: left;
  background: #f8fafc;
  color: #374151;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid #e5e7eb;
}

.lockersTable tr:last-child td {
  border-bottom: none;
}

.lockersTable tr:nth-child(even) td {
  background-color: #fafbfc;
}

.lockersTable tr:hover td {
  background-color: #f0f9ff;
}

.lockerToCart {
  display: inline-block;
  width: auto;
  min-width: 7rem;
  padding: 0.45rem 0.75rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  background: linear-gradient(180deg, #0a85d4 0%, #0976bc 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(9, 118, 188, 0.25);
  transition: background 0.15s ease;
}

.lockerToCart:hover:not(:disabled) {
  background: linear-gradient(180deg, #0976bc 0%, #0868a8 100%);
}

.lockerToCart:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.lockerError {
  font-size: 0.88rem;
  color: #b91c1c;
  font-weight: 600;
  margin: 0;
  padding: 0;
  text-align: left;
  min-height: 0;
}

.lockerClose {
  display: none;
}

#lockerOpenWaitlist {
  transform: none;
  margin-top: 0 !important;
}

#myModalLockers .inputInfo {
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: 500;
  padding: 0 0.25rem;
  margin: 0.15rem 0 0;
  text-align: center;
}

#myModalLockers .submitWaitlist {
  margin-top: 0.5rem;
}

#submitInputButton {
  transform: translateY(5px);
}

.itemTab:hover {
  border: none;
  background-color: #d9d7d7;
  color: black;
  cursor: pointer;
}

/* MODAL */

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 1rem;
  padding-top: max(1rem, env(safe-area-inset-top));
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  box-sizing: border-box;
}

/* Modal Content/Box */
.modal-content {
  margin: 0 auto;
  max-height: none;
  width: min(560px, 100%);
  max-width: 560px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.28);
  flex-shrink: 0;
}

.hover_bkgr_fricc[style*="display: block"],
.hover_bkgr_fricc2[style*="display: block"],
.hover_bkgr_fricc3[style*="display: block"],
.hover_bkgr_fricc5[style*="display: block"],
.modal[style*="display: block"],
.lockerWaiverModal[style*="display: block"],
.hover_bkgr_fricc[style*="display: flex"],
.hover_bkgr_fricc2[style*="display: flex"],
.hover_bkgr_fricc3[style*="display: flex"],
.hover_bkgr_fricc5[style*="display: flex"],
.modal[style*="display: flex"],
.lockerWaiverModal[style*="display: flex"] {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

@media (min-width: 769px) {
  .hover_bkgr_fricc[style*="display: block"],
  .hover_bkgr_fricc2[style*="display: block"],
  .hover_bkgr_fricc3[style*="display: block"],
  .hover_bkgr_fricc5[style*="display: block"],
  .modal[style*="display: block"],
  .lockerWaiverModal[style*="display: block"],
  .hover_bkgr_fricc[style*="display: flex"],
  .hover_bkgr_fricc2[style*="display: flex"],
  .hover_bkgr_fricc3[style*="display: flex"],
  .hover_bkgr_fricc5[style*="display: flex"],
  .modal[style*="display: flex"],
  .lockerWaiverModal[style*="display: flex"] {
    justify-content: center;
  }
}

.modalSearchInputs {
  position: relative;
  padding: 1.35rem 3.5rem 1.1rem 1rem;
  margin: 0;
  background: linear-gradient(180deg, #0a85d4 0%, #0976bc 100%);
  color: white;
  border-top-right-radius: 16px;
  border-top-left-radius: 16px;
  text-align: center;
  font-size: 1rem;
}

/* The Close Button */
.modalSearchInputs .close {
  position: absolute;
  top: 0.85rem;
  right: 0.75rem;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  transition: background-color 0.15s ease;
  z-index: 2;
}

.close {
  position: absolute;
  top: 0.85rem;
  right: 0.75rem;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  transition: background-color 0.15s ease;
  z-index: 2;
}

.close:hover,
.close:focus {
  color: white;
  background: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  cursor: pointer;
}

.modalSearchInputs label {
  line-height: 1.4;
  padding: 0;
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.inputInfo {
  padding: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: 500;
}

.inputInfo2nd {
  padding: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.modalTimeslotContainer #searchDate,
.modalSearchInputs input {
  border-radius: 10px;
  font-size: 0.95rem !important;
  font-weight: 600;
  margin: 0.5rem auto 0;
  width: min(280px, 100%);
  height: 44px;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  transform: none;
  border: none;
  text-align: center;
  float: none;
  clear: none;
  color: #1f2937;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.modalTimeslotContainer label {
  float: none;
  clear: none;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0.75rem auto 0.35rem;
  transform: none;
  display: block;
  width: min(320px, 100%);
  text-align: left;
  color: #374151;
}

.modalTimeslotContainer input {
  font-family: "Raleway", sans-serif;
  width: min(320px, 100%);
  margin-left: auto;
  margin-right: auto;
  transform: none;
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 10px;
  line-height: 1.35;
  background-color: white;
  border: 1.5px solid #94a3b8 !important;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  padding: 0.6rem 0.75rem;
  margin-bottom: 0.75rem;
  box-sizing: border-box;
  outline: 0;
  height: auto;
  min-height: 2.75rem;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.modalTimeslotContainer input:focus {
  border-color: #0976bc !important;
  box-shadow:
    0 0 0 3px rgba(9, 118, 188, 0.15),
    inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.modalTimeslotContainer select {
  font-family: "Raleway", sans-serif;
  width: min(320px, 100%);
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  transform: none;
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 10px;
  line-height: 1.35;
  background-color: white;
  border: 1.5px solid #94a3b8 !important;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  padding: 0.6rem 0.75rem;
  margin-bottom: 0.75rem;
  box-sizing: border-box;
  outline: 0;
  height: auto;
  min-height: 2.75rem;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.modalTimeslotContainer select:focus {
  border-color: #0976bc !important;
  box-shadow:
    0 0 0 3px rgba(9, 118, 188, 0.15),
    inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.modalTimeslotContainer button {
  float: none;
  clear: none;
  margin: 0.75rem auto 0;
  transform: none;
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  width: min(320px, 100%);
  height: auto;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border: none;
  background: linear-gradient(180deg, #0a85d4 0%, #0976bc 100%);
  color: white;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(9, 118, 188, 0.28);
  letter-spacing: 0.03em;
  transition: background 0.15s ease;
}

.modalTimeslotContainer button:hover {
  background: linear-gradient(180deg, #0976bc 0%, #0868a8 100%);
}

.modalTimeslotContainer {
  width: 100%;
  height: auto;
  max-height: min(70vh, 620px);
  background-color: #f8fafc;
  margin: 0;
  padding: 1rem;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}

.slotContainer {
  position: relative;
  width: 100%;
  min-height: 64px;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0 0 0.65rem;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: stretch;
}

.slotContainer:hover {
  border-color: #cbd5e1;
}

.slotData,
.slotInstructor,
.slotSelect {
  box-sizing: border-box;
  float: none;
  width: auto;
  flex: 1 1 33.33%;
  height: auto;
  min-height: 64px;
  padding: 0.65rem 0.5rem;
  border-right: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.82rem;
}

.slotData {
  border-left: none;
  color: #374151;
}

.slotSelect {
  border-right: none;
  line-height: 1.3;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  color: white;
  background-color: #0976bc;
  transition: background-color 0.15s ease;
}

.slotContainer:after {
  display: none;
}

.slotSelect:hover {
  background-color: #0868a8;
}

.isFull {
  cursor: default;
  background-color: #9ca3af;
}

.isFull:hover {
  background-color: #9ca3af;
}

.currentSelect {
  cursor: default;
  background-color: #7c3aed;
}

.currentSelect:hover {
  background-color: #7c3aed;
}

.lesson_type {
  border-radius: 10px;
  font-size: 0.95rem !important;
  font-weight: 700;
  text-align: center;
  margin: 0.15rem auto 0;
  width: 100%;
  height: auto;
  min-height: 44px;
  line-height: 1.35;
  padding: 0.65rem 0.75rem;
  max-width: 100%;
  transform: none;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: #1f2937;
  box-sizing: border-box;
}

.modalTimes {
  min-height: 50px;
  width: 100%;
  margin-top: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.slot_container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 1rem;
  position: relative;
  min-height: 0;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  overflow: hidden;
}

.slot_container div {
  float: none;
  margin: 0;
  text-align: center;
  width: auto;
  min-width: 4.5rem;
  flex: 1 1 calc(50% - 0.5rem);
  background-color: #f3f4f6;
  border-radius: 8px;
  padding: 0.5rem 0.55rem;
  font-size: 0.78rem;
  box-sizing: border-box;
}

.slot_container .row {
  margin: 0;
  width: 100%;
  margin-left: 0;
  transform: none;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: stretch;
}

.slot_container .row::after {
  display: none;
}

.slot_container .price {
  line-height: 1.3;
  background-color: #ecfdf3;
  color: #166534;
  font-weight: 700;
}

.slot_container .select {
  width: 100%;
  max-width: 100%;
  background-color: #0976bc;
  padding: 0.7rem 1rem;
  text-align: center;
  margin: 0.75rem 0 0;
  margin-left: 0;
  transform: none;
  color: white;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  float: none;
  flex: 1 1 100%;
  transition: background-color 0.15s ease;
}

.slot_container .select:hover {
  cursor: pointer;
  background-color: #0868a8;
}

.slot_container .packageDeal,
.slot_container .optionalDeal {
  width: 100%;
  flex: 1 1 100%;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.8rem;
  padding: 0.5rem 0.65rem;
}

.removalSlot.slot_container {
  padding: 0.85rem 1rem 1rem;
}

.removalSlot .row,
.removeRow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  margin: 0;
  transform: none;
}

.removeRow {
  padding: 0.65rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.removeRow:last-child {
  border-bottom: none;
}

.removalSlot .time,
.removalSlot .slots,
.removalSlot .price,
.removeRow .time,
.removeRow .slots,
.removeRow .price {
  background-color: transparent;
  width: auto;
  max-width: none;
  padding: 0;
  margin: 0;
  flex: 1 1 auto;
  text-align: left;
  font-size: 0.85rem;
}

.removalSlot .select,
.removalSlot .removeLesson {
  width: 100%;
  max-width: 100%;
  margin: 0.75rem 0 0;
  transform: none;
  float: none;
  flex: 1 1 100%;
  background-color: #dc2626;
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  text-align: center;
}

.removalSlot .select:hover,
.removalSlot .removeLesson:hover {
  background-color: #b91c1c;
}

@media only screen and (max-width: 600px) {
  .modal {
    padding: 0.75rem;
    padding-top: max(0.75rem, env(safe-area-inset-top));
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  }

  .modal-content {
    width: 100%;
    margin: 0 auto;
  }

  .hover_bkgr_fricc,
  .hover_bkgr_fricc2,
  .hover_bkgr_fricc3,
  .hover_bkgr_fricc5 {
    padding: 0.75rem;
    padding-top: max(0.75rem, env(safe-area-inset-top));
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  }

  .hover_bkgr_fricc > div,
  .hover_bkgr_fricc2 > div,
  .hover_bkgr_fricc3 > div,
  .hover_bkgr_fricc5 > div {
    width: 100%;
    max-width: 100%;
    max-height: calc(100dvh - 1.5rem);
    padding: 1.25rem 1rem 1rem;
  }

  .lockers-panel-header {
    padding: 1.15rem 1rem 1rem;
  }

  .lockers-title {
    font-size: 1.08rem;
  }

  .lockers-form {
    padding: 1.1rem 1rem 0.85rem;
    gap: 1rem;
  }

  .lockers-actions {
    padding: 1rem;
  }

  .lockers-results {
    padding: 1rem;
  }

  .lockersTable {
    min-width: 480px;
    font-size: 0.78rem;
  }

  .lockerToCart {
    min-width: 6rem;
    padding: 0.4rem 0.55rem;
    font-size: 0.72rem;
  }
}

/* .arrow {
            float: right;
            margin-top: -1%;
            font-size: 30pt;
            font-weight: bolder;
            margin-right: 25%;
        } */
@media only screen and (max-width: 600px) {
  .modal-content {
    width: 100%;
    margin: 0 auto;
  }

  .modalSearchInputs {
    padding: 1.25rem 3.25rem 1rem 0.85rem;
  }

  .modalSearchInputs .close,
  .close {
    top: 0.7rem;
    right: 0.65rem;
    width: 34px;
    height: 34px;
    line-height: 34px;
    font-size: 1.4rem;
  }

  .lesson_type {
    font-size: 0.9rem !important;
    padding: 0.6rem 0.65rem;
  }

  .modalTimeslotContainer {
    max-height: min(75vh, 680px);
    padding: 0.85rem;
  }

  .modalTimeslotContainer input,
  .modalTimeslotContainer select,
  .modalTimeslotContainer button {
    width: 100%;
  }

  .slot_container {
    padding: 0.85rem;
  }

  .slot_container div {
    flex: 1 1 calc(50% - 0.35rem);
    min-width: 0;
    font-size: 0.74rem;
  }

  .slot_container .select {
    width: 100%;
    max-width: 100%;
  }

  .packageDeal {
    width: 100%;
  }

  .hover_bkgr_fricc > div,
  .hover_bkgr_fricc2 > div,
  .hover_bkgr_fricc3 > div,
  .hover_bkgr_fricc5 > div {
    width: 100%;
    max-width: 100%;
    padding: 1.25rem 1rem 1rem;
  }

  .slotContainer {
    flex-direction: column;
  }

  .slotData,
  .slotInstructor,
  .slotSelect {
    flex: 1 1 auto;
    width: 100%;
    min-height: 48px;
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }

  .slotSelect {
    border-bottom: none;
  }
}

.slot_container .select.incart {
  background-color: #fbbf24 !important;
  color: #1f2937 !important;
}

.slot_container:after {
  clear: both;
  content: "";
  display: table;
}

.itemTab:hover .tabIcon {
  /* color: white; */
}

.promoItem {
  float: right;
  display: inline;
  /* left: 71.5%;
    top: 140px; */
  margin-right: -50px;
  margin-top: -15px;
  font-family: "arial", sans-serif;
  font-size: 12px;
  padding: 2px;
  width: 28px;
  color: white;
  background-color: #3ec300;
  border-radius: 5px;
  text-align: center;
}

@media screen and (max-width: 1366px) {
  .promoItem {
    float: right;
    display: inline;
    /* left: 71.5%;
        top: 140px; */
    margin-right: -14px;
    margin-top: -15px;
    font-family: "arial", sans-serif;
    font-size: 12px;
    padding: 2px;
    width: 28px;
    color: white;
    background-color: #3ec300;
    border-radius: 5px;
    text-align: center;
  }
  .lockersTable {
    min-width: 480px;
    font-size: 0.78rem;
  }
}

@media screen and (max-width: 900px) {
  .promoItem {
    float: right;
    display: inline;
    /* left: 71.5%;
        top: 140px; */
    margin-right: -17px;
    margin-top: -35px;
    font-family: "arial", sans-serif;
    font-size: 12px;
    padding: 2px;
    width: 28px;
    color: white;
    background-color: #3ec300;
    border-radius: 5px;
    text-align: center;
  }
}

@media screen and (max-width: 600px) {
  .promoItem {
    float: right;
    display: inline;
    /* left: 71.5%;
        top: 140px; */
    margin-right: -17px;
    margin-top: -18px;
    font-family: "arial", sans-serif;
    font-size: 12px;
    padding: 2px;
    width: 28px;
    color: white;
    background-color: #3ec300;
    border-radius: 5px;
    text-align: center;
  }
}

.container {
  /* top: 35px; */
}
/* @keyframes example {
  0%   {background-color: #0976BC; }
  50%  {background-color: #6E2594; }
  100% {background-color: #0976BC; }
} */

@keyframes example {
  0% {
    background-color: #0976bc;
    border: none;
  }

  50% {
    background-color: #3ec300;
    border: none;
  }

  100% {
    background-color: #0976bc;
    border: none;
  }
}

.promoAvailable {
  animation-name: example;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

#datepicker {
  cursor: pointer;
}

#datepicker::placeholder {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  text-shadow: none;
}

.lockerModalError {
  width: min(320px, 100%);
  margin: 0.5rem auto 0.75rem;
  text-align: center;
  display: block;
  color: #dc2626;
  font-size: 0.88rem;
  font-weight: 600;
}
.minus9 {
  overflow: hidden;
  height: 35px;
  background-color: #000000;
  border-radius: 5px;
  color: white;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.24);
  cursor: pointer;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
.minus9:active {
  transform: translateY(2px);
}
.plus9 {
  overflow: hidden;
  height: 35px;
  background-color: #000000;
  border-radius: 5px;
  color: white;
  padding: 2px 0 0 0;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.24);
  cursor: pointer;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
.plus9:active {
  transform: translateY(2px);
}

#myModal::-webkit-scrollbar {
  display: none;
}

.packageDeal {
  margin-top: 0px;
  display: none;
}

.incart {
  background-color: gold !important;
  color: black !important;
  font-weight: bold;
}
.lessonOrderEditButton {
  background-color: var(--primary-color);
  width: 200px;
  margin: auto;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 10px;
  cursor: pointer;
  color: white;
}
.lessonOrderEditButton:hover {
  background-color: var(--hover-color);
}

.lessonOrderEditAdd {
  margin-top: 15px;
}

.lessonOrderEditRefundItem {
  padding: 10px;
  position: relative;
  width: 70%;
  margin: auto;
  text-align: left;
  background-color: white;
  margin-bottom: 10px;
  border-radius: 10px;
  border: solid thin var(--primary-color);
  /* box-shadow: 10px 10px 14px -5px grey; */
  margin-right: 5%;
}

.editorderlessonrefundbutton {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 170px;
  min-height: 70px;
  transform: translate(0px, -50%);
  background-color: var(--primary-color);
  padding: 20px;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  text-align: center;
}

.editorderlessonrefundbutton:hover {
  background-color: var(--hover-color);
}

.goBack {
  padding: 10px;
  cursor: pointer;
  width: 200px;
  margin: auto;
  margin-bottom: 10px;
  background-color: lightgrey;
  border-radius: 10px;
  position: fixed;
  margin-left: 35px;
}

.goBack:hover {
  background-color: rgb(179, 179, 179);
}

@media only screen and (max-width: 600px) {
  .lessonOrderEditRefundItem {
    width: 90%;
    min-height: 200px;
  }

  .editorderlessonrefundbutton {
    width: 90%;
    right: unset;
    top: unset;
    bottom: -80px;
    left: 50%;
    transform: translate(-50%, 0px);
    text-align: center;
  }

  .goBack {
    margin-top: -70px;
    width: 90%;
    margin-left: 5%;
    z-index: 50;
  }
}

@keyframes button-loading-spinner {
  from {
    transform: rotate(0turn);
  }

  to {
    transform: rotate(1turn);
  }
}

.button--loading::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 4px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: button-loading-spinner 1s ease infinite;
}

.optionalDeal {
  width: 75% !important;
  margin: 0 !important;
  display: block;
  margin-top: 10px !important;
  margin-bottom: 5px !important;
}

pre {
  font-family: "Raleway", sans-serif !important;
  -webkit-text-stroke-width: 1px !important;
  -webkit-text-stroke-color: #595959 !important;
}
/* 
    * {
        font-family: "gg sans","Noto Sans","Helvetica Neue",Helvetica,Arial,sans-serif !important;
    } */

#skiInsureCheckbox,
.hover_bkgr_fricc2 #skiInsureCheckbox,
.hover_bkgr_fricc2 .bx1.skiInsureCheckbox #skiInsureCheckbox,
.hover_bkgr_fricc2 .bx1.skiInsureCheckbox input#skiInsureCheckbox {
  width: 25px !important;
  height: 25px !important;
  min-width: 25px !important;
  min-height: 25px !important;
  padding: 0 !important;
  margin: 0 !important;
}
