/*---------- SEKCJA MAIN ------------*/
:root {
  --primary-color: #0903FE;
  --secondary-color: #ffffff;
  --active-color: #0903FE;
  --txt-color: #f1f1f1;
  --txt-color-secondary: #000000;
  --txt-description: #5F5F5F;
  --txt-expand-btn: #5F5F5F;
  --section-background-color: #f2f6fa;
  --hover-btn-primary: #0903FE;
  --hover-btn-secondary: #e6e9ed;
  --hover-btn-third: #000D10;
  --hover-btn-active: #0903FE;
  --radius: 80px;
  --radius-small: 10px;
  --voucher-icon: url('/images/gtt/voucher-card.png');
}

.fas,
.fa,
.far,
.fal,
.fab {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
}

.far {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 400 !important;
}

.fab {
  font-family: "Font Awesome 5 Brands" !important;
  font-weight: 400 !important;
}

h2,
h3 {
  font-weight: 400;
}

:focus-visible {
  outline: 3px solid #000;
  /* outline: 0; */
  outline-offset: 3px;
}

input[type="radio"] {
  cursor: pointer;
  display: inline-block;
  width: 22px;
  height: 26px;
  padding: 4px;
  background-clip: content-box;
  border: 6px solid var(--primary-color);
  background-color: #e7e6e7;
  border-radius: 50%;
}

input[type="radio"]:checked {
  background-color: #fff;
}

img {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

img:focus-visible {
  outline: 2px solid #007bff;
}

button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  padding: 0;
  margin: 0;
  cursor: pointer;
  outline: none;
}

.back-btn-container {
  display: flex;
  justify-content: flex-end;
}

.hidden {
  display: none !important;
}

.main-btns-box {
  display: flex;
  justify-content: center;
  gap: 100px;
  background-color: #F2F6FA;
}

.main-btns-box button {
  font-size: 26px;
  line-height: 32px;
}

.selection-btn {
  font-size: 18px;
  font-weight: 500;
  min-width: 290px;
  padding: 6px 10px;
  color: #000;
  background-color: var(--secondary-color);
  border-radius: var(--radius);
  border: 2px solid #000;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}

.filter-buttons .all-events-btn {
  font-size: 18px;
  font-weight: 500;
  padding: 6px;
  color: #fff;
  background-color: var(--active-color);
  border: 2px solid var(--active-color);
  border-radius: var(--radius);
  min-width: 350px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s !important;
}

.filter-buttons .all-events-btn:hover {
  background: var(--hover-btn-active) !important;
  border-color: var(--hover-btn-active);
}

.selection-btn.expanded {
  background-color: #000;
}

.selection-btn.expanded .btn-text {
  color: #fff;
}

.selection-btn .btn-text {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  color: #000;
}

.repertoire-filters-box .filter-buttons {
  margin: 50px 0 35px;
}

.filter-buttons .selection-btn:hover {
  background: var(--hover-btn-secondary);
  /* color: var(--primary-color); */
}

.filter-buttons .selection-btn.expanded:hover {
  background: #000;
  color: #fff;
}

#scrollToTopBtn {
  transition: opacity 0.3s, transform 0.3s;
  padding: 0;
  display: flex;
  bottom: 130px;
  right: 15px;
}

#scrollToTopBtn:hover {
  transform: scale(1.1);
}

#scrollToTopBtn i {
  font-size: 20px;
}

.vertical-text {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  text-transform: uppercase;
  color: #000;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 1px;
}

.layout-switcher {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1000;
}

.layout-switcher__toggle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #2196f3;
  color: white;
  border: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.layout-switcher__toggle:hover {
  transform: rotate(90deg);
  background: #1976d2;
}

.layout-switcher__toggle i {
  font-size: 1.8rem;
}

.layout-switcher__options {
  min-width: 100px;
  position: absolute;
  bottom: calc(-100% + 3.5rem);
  right: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  pointer-events: none;
}

.layout-switcher__option {
  background: #fff;
  border: 1px solid #000;
  border-radius: var(--radius);
  padding: 3px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.layout-switcher__option.active .layout-switcher__option-content {
  background-color: #000;
}

.layout-switcher__option.active .layout-switcher__option-content span {
  color: #fff;
  /* border-radius: 80px; */
}

.layout-switcher__option.active>.layout-switcher__option-content {
  color: #000;
}

.layout-switcher__option-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.6rem;
  border-radius: 80px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  color: #000;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
}

.layout-switcher__option.active {
  background-color: var(--primary-color);
  color: var(--txt-color);
  border-color: var(--primary-color);
}

.layout-switcher__option-content:hover {
  background-color: #000;
}

.layout-switcher__option-content:hover span {
  color: #fff;
}

.layout-switcher__options.active .layout-switcher__option {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

.layout-switcher__options.active .layout-switcher__option:nth-child(1) {
  transition-delay: 0.1s;
}

.layout-switcher__options.active .layout-switcher__option:nth-child(2) {
  transition-delay: 0.4s;
}

.layout-switcher__options.active .layout-switcher__option:nth-child(3) {
  transition-delay: 0.8s;
}

.layout-switcher__option:hover .layout-switcher__option-content {
  /* background: #f5f5f5; */
  /* transform: scale(1.05); */
}

.layout-switcher__option i {
  width: 1.2em;
  text-align: center;
}

.arrows-icon,
.location-icon,
.category-icon,
.clock-sec-icon,
.ticket-icon {
  display: block;
  width: 17px;
  height: 17px;
  background-size: 17px;
  background-repeat: no-repeat;
  margin-top: 0px;
}

.arrows-icon {
  background-image: url(/images/gtt/back-arrows.svg);
}

.location-icon {
  background-image: url(/images/gtt/location-icon.svg);
}

.category-icon {
  background-image: url(/images/gtt/grid-icon.svg);
}

.clock-sec-icon {
  background-image: url(/images/gtt/clock-sec-icon.svg);
}

.ticket-icon {
  background-image: url(/images/gtt/ticket-icon.svg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.form-control {
  padding: 0.4rem 0.5rem !important;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #c7cdd2;
  opacity: 1;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #c7cdd2;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #c7cdd2;
}

/* Autocomplete
----------------------------------*/
.ui-autocomplete {
  position: absolute;
  cursor: default;
}

/* workarounds */
* html .ui-autocomplete {
  width: 1px;
}

html {
  height: 100%;
}

* {
  font-family: 'Roboto Slab', sans-serif, Trebuchet MS, Verdana, Arial, Tahoma !important;
  font-weight: 400;
  /* color: #000; */
}

.d-none {
  display: none;
}

a {
  text-decoration: none !important;
}

h1 {
  font-weight: bold;
  font-size: 30px;
}

.clr {
  clear: both;
}

.center {
  text-align: center;
}

.left {
  float: left;
}

.right {
  float: right;
}

.body {
  height: 100%;
}

#container {
  overflow: auto;
  z-index: 100;
}

#wrapper {
  width: 100%;
  border: none;
  border-collapse: collapse;
}

/*--------ANIMACJA----------*/

@-webkit-keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }

  to {
    bottom: 0px;
    opacity: 1;
  }
}

@keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }

  to {
    bottom: 0;
    opacity: 1;
  }
}

.animate-bottom {
  position: relative;
  -webkit-animation: animatebottom 1.5s;
  animation: animatebottom 1.5s;
}

@-webkit-keyframes animatetop {
  from {
    top: -100px;
    opacity: 0;
  }

  to {
    top: 0px;
    opacity: 1;
  }
}

@keyframes animatetop {
  from {
    top: -100px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

.animate-top {
  position: relative;
  -webkit-animation: animatetop 1.1s;
  animation: animatetop 1.1s;
}

@-webkit-keyframes fadeleft {
  from {
    left: -100px;
    opacity: 0;
  }

  to {
    left: 0px;
    opacity: 1;
  }
}

@keyframes fadeleft {
  from {
    left: -100px;
    opacity: 0;
  }

  to {
    left: 0;
    opacity: 1;
  }
}

.animate-left {
  position: relative;
  -webkit-animation: fadeleft 1.5s;
  animation: fadeleft 1.5s;
}

@-webkit-keyframes faderight {
  from {
    left: 100%;
    opacity: 0;
  }

  to {
    left: 0;
    opacity: 1;
  }
}

@keyframes faderight {
  from {
    left: 100%;
    opacity: 0;
  }

  to {
    left: 0;
    opacity: 1;
  }
}

.animate-right {
  position: relative;
  -webkit-animation: faderight 1.5s;
  animation: faderight 1.5s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-fadein {
  opacity: 0;
  -webkit-animation: fadein 0.8s forwards;
  animation: fadein 0.8s forwards;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

@keyframes zoomInAnimation {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }

  15% {
    transform: scale(0.4);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.zoom-in {
  animation: zoomInAnimation 1.1s;
}

.zoom-in-second {
  animation: zoomInAnimation 0.5s;
}

/*---------- SEKCJA NAVIGATION ------------*/

.navigation {
  /* position: relative; */
  display: flex;
  color: var(--txt-color);
  font-weight: 400;
  min-height: 115px;
  font-size: 10px;
  /* background: var(--primary-color); */
  background: #fff;
  border-bottom: 1px solid #f1f0fe;
  overflow: auto;
  align-items: center;
}

.navigation .title {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.navigation h1 {
  font-size: 36px;
  font-weight: 300;
  color: var(--txt-color);
  margin-bottom: 0;
}

.navigation2 {
  height: 50px;
  font-size: 10px;
  background: #fff;
  border-bottom: 1px solid #f1f0fe;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: none;
}

.navigation2 .count {
  position: absolute;
  display: flex;
  font-size: 14px;
  font-weight: 600;
  left: 38px;
  top: 6px;
  background: var(--primary-color);
  color: #fff;
  width: 24px;
  height: 24px;
  -webkit-border-radius: 25px;
  -khtml-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
}

.navigation .count {
  position: absolute;
  right: -19px;
  top: -15px;
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  width: 30px;
  height: 30px;
  font-size: 17px;
  line-height: 30px;
  -webkit-border-radius: 25px;
  -khtml-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

/* .navigation img {
  width: 255px;
  display: block;
  background-color: var(--primary-color);
  border-radius: 100px;
} */

/* .navigation2 .cart-small, */
.navigation .cart-small {
  position: relative;
  cursor: pointer;
  float: right;
  clear: right;
}

/* .navigation2 .cart-small {
  position: fixed;
  display: flex;
  font-size: 12px;
  right: 20px;
  top: 100px;
  padding: 15px 15px 10px 18px;
  border-radius: 19px;
  background-color: #fff;
  border: 2px solid #000;
  cursor: pointer;
  float: right;
  clear: right;
  flex-direction: column;
  align-items: center;
} */
.navigation2 .cart-small-float {
  position: fixed;
  display: flex;
  font-size: 12px;
  right: 5px;
  top: 130px;
  padding: 18px 14px 6px 14px;
  border-radius: 16px;
  background-color: #fff;
  border: 2px solid #000;
  cursor: pointer;
  float: right;
  clear: right;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  transition: transform 0.3s ease-in-out;
}

.navigation2 .cart-small-float:hover {
  transform: scale(1.1);
}

.navigation .cart-small {
  top: 10px;
  right: 30px;
}

.navigation2 i {
  background-image: url(/images/gtt/basket-float.svg);
  font-size: 0;
  display: block;
  /* margin-top: 13px; */
  width: 30px;
  /* height: 30px; */
  height: 28px;
  background-size: 26px;
  background-repeat: no-repeat;
  position: relative;
}

.navigation i {
  background-image: url(/images/gtt/basket.svg);
  font-size: 0;
  display: block;
  background-repeat: no-repeat;
  background-size: 35px;
  width: 35px;
  height: 40px;
}

.cart-date-box {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.date-info {
  font-size: 19px;
  line-height: 28px;
  padding-left: 8px;
  color: #000;
}

.cart-info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/*---------- SEKCJA FOOTER ------------*/

.footer {
  background-color: #2C2D32;
}

.institution-info,
.system-info,
.system-info strong {
  font-size: 12px;
  color: var(--txt-color);
}

.institution-info a,
.system-info a {
  color: var(--txt-color);
  text-decoration: none;
}

.institution-info p,
.system-info p {
  margin: 0;
}

.institution-logo-footer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.institution-logo-footer img {
  max-width: 100%;
  min-width: 300px;
  height: auto;
  margin-top: -10px;
}

.institution-logo .logo {
  max-width: 200px;
}

.system-info {
  text-align: right;
}

/*---------- SEKCJA HEADER ------------*/

.cart-nav-box {
  float: right;
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.cart-nav-box span {
  font-size: 22px;
  text-transform: uppercase;
  color: #f1f1f1;
  line-height: 30px !important;
}

.cart-date-nav {
  margin-left: 40px;
}

.cart-empty-info .cart-small {
  margin: 10% auto 0;
  text-align: center;
}

.cart-empty-info .fa-shopping-cart {
  color: #000;
  font-size: 200px;
  margin: 20px auto;
}

.cart-empty-info .count {
  position: relative;
  left: -40px;
  top: -140px;
  background: red;
  color: #fff;
  font-size: 65px;
  padding: 10px 30px;
  -webkit-border-radius: 25px;
  -khtml-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 80px;
}

.empty-cart-text {
  text-align: left;
  font-size: 20px;
  padding: 50px 20px;
}

.navigation .main-logo {
  padding: 70px 0;
  display: block;
  top: -30px;
  position: absolute;
  width: fit-content;
  background: #0903FE;
  border-radius: 50%;
  z-index: 99;
  box-shadow: 20px 15px 40px 0px rgba(0, 0, 0, 0.4);
}

.navigation2 .main-logo.small {
  padding: 50px 27px;
  display: block;
  top: -25px;
  position: fixed;
  width: fit-content;
  background: #0903FE;
  border-radius: 50%;
  z-index: 99;
  box-shadow: 20px 15px 40px 0px rgba(0, 0, 0, 0.4);
}

.navigation2 .main-logo.small img {
  width: 100px;
  height: 50px;
}

.language-select {
  border: solid 1px #000;
  font-size: 12px;
  color: #000;
  padding: 3px;
  padding-top: 5px;
  margin: 10px 4px;
  width: 25px;
  text-align: center;
  display: block;
  float: right;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
}

.language-select.active {
  background: #000;
  color: #fff;
}

.language-select:hover {
  background: #fff;
  color: #000;
  text-decoration: none;
}

.see_cart .button,
.action .button {
  display: none;
  padding: 3px 6px;
  cursor: pointer;
  border: 1px solid #234456;
  background: #475156;
  font-size: 10px;
  -webkit-border-radius: 4px;
  /* Safari, Chrome */
  -khtml-border-radius: 4px;
  /* Konqueror */
  -moz-border-radius: 4px;
  /* Firefox */
  border-radius: 4px;
}

.see_cart .button {
  width: 155px;
  text-align: center;
}

.action .button a {
  color: #fff;
  font-size: 10px;
}

.header {
  width: 950px;
  margin: 10px auto;
}

/*---------- SEKCJA REPERTOIRE ------------*/

.main-box {
  display: flex;
  flex-direction: column;
}

#calendar {
  display: flex;
}

.calendar-day.day-event {
  border: 1.5px solid var(--active-color);
}

.month-btn {
  min-width: 355px;
  padding: 9px;
  border-radius: var(--radius);
  border: 2px solid #000;
  background: #fff;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.month-btn:hover {
  background: var(--hover-btn-secondary);
  transition: background-color 0.3s ease-in-out;
  opacity: 1;
}

.month-btn.active {
  background: var(--active-color);
  color: #fff;
  border-color: var(--active-color);
}

.month-btn.active:hover {
  background: var(--hover-btn-active);
  border-color: var(--hover-btn-active);
}

.months-selector {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 100px;
  opacity: 1;
}

.months-selector.collapsed {
  max-height: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
}

/* .month-btn.prev-month,
.month-btn.next-month {
  opacity: 0.35;
} */

.calendar-strip {
  display: none;
  transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 250px;
  opacity: 1;
  margin: 6rem 0 0;
  overflow: unset;
}

.calendar-strip.collapsed {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  transform: scale(0.8);
}

.months-selector {
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.days-container {
  flex: 1;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 10px 0 20px;
  margin-bottom: 30px;
  min-height: 90px;
  max-height: 90px;
  transition: opacity 0.4s ease-in-out;
}

.days-container::-webkit-scrollbar {
  display: none;
}

.days {
  justify-content: center;
  gap: 2px;
}

.calendar-day {
  border: 1px solid transparent;
  padding: 4px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s,
    box-shadow 0.1s ease-in-out,
    background-color 0.3s ease-in-out;
}

.calendar-day.past-day {
  /* background-color: #d4d4d4; */
}

.calendar-day.today {
  font-weight: 500;
}

.calendar-day:hover {
  background: #f2f6fa;
  transform: translateY(-5px);
}

.calendar-day .weekday {
  font-size: 12px;
  /* color: #666; */
  text-transform: uppercase;
}

.calendar-day .day-number {
  font-size: 12px;
}

.calendar-day.active {
  background: var(--active-color);
  color: var(--txt-color);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.calendar-day.active .weekday,
.calendar-day.active .day-number {
  color: #fff;
}

.calendar-day.today .weekday,
.calendar-day.today .day-number {
  color: var(--active-color);
}

.calendar-day.today.active .weekday,
.calendar-day.today.active .day-number {
  color: var(--txt-color-secondary);
  font-weight: 600;
}

.nav-btn {
  border: none;
  background: transparent;
  padding: 10px 0;
  cursor: pointer;
  color: #666;
}

#calendar .nav-btn.prev,
#calendar .nav-btn.next {
  display: none;
}

.nav-btn.month-nav {
  width: 19px;
  height: 25px;
  margin: 0 10px;
  background-repeat: no-repeat;
  background-size: contain;
  /* display: inline-block;
  font-size: 60px;
  line-height: 0;
  color: #000; */
  transition: transform 0.35s;
}

.months-selector .nav-btn.month-nav.prev {
  background-image: url(/images/gtt/left-arrow-month.svg);
}

.months-selector .nav-btn.month-nav.next {
  background-image: url(/images/gtt/right-arrow-month.svg);
}

.nav-btn.month-nav.next:hover,
button.nav-btn.next>i:hover {
  transform: translateX(8px);
}

.nav-btn.month-nav.prev:hover,
button.nav-btn.prev>i:hover {
  transform: translateX(-8px);
}

.nav-btn i {
  font-size: 38px;
  color: #000000;
  transition: transform 0.35s;
}

.top-repertoire-heading {
  border-bottom: 1px solid #000;
  align-items: center;
  font-size: 22px;
  line-height: 22px;
  transition: opacity 0.3s ease;
}

.top-repertoire-heading h2 {
  margin-bottom: 0;
  font-size: 26px;
  line-height: 36px;
}

.actual-date {
  text-transform: uppercase;
  font-size: 30px;
  padding-left: 15px;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.actual-date.visible {
  opacity: 1;
  display: block !important;
}

.page-header {
  background: #002;
}

.repertoire-list-events {
  margin-bottom: 10%;
  min-height: 340px;
}

.event-poster {
  max-width: 125px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.events-category {
  display: flex;
  margin-bottom: 20px;
  gap: 30px;
  opacity: 1;
  flex-wrap: wrap;
  transition: opacity 0.3s ease-in-out;
}

.events-category.hidden {
  opacity: 0;
}

.event-group,
.event-group.active {
  text-transform: uppercase;
  color: #000;
  font-size: 20px;
  line-height: 28px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.1s ease;
}

.event-group.active {
  border-bottom: 3px solid #000;
  line-height: 28px;
}

.separator {
  color: #000;
  font-size: 40px;
  line-height: 28px;
}

.cursor-pointer {
  cursor: pointer;
}

.date-baner {
  font-size: 26px;
  text-align: center;
  color: #fff;
  background-color: #000;
  margin-top: 30px;
}

.event-item {
  border-bottom: 1px solid #c9d3da !important;
  /* background-color: #F2F6FA; */
  opacity: 1;
  visibility: visible;
  height: auto;
  overflow: hidden;
  transform: translateY(0);
  transition: opacity 0.3s ease-in-out,
    visibility 0.3s ease-in-out,
    transform 0.3s ease-in-out,
    background-color 0.3s ease-in-out;
}

.event-item.hidden {
  opacity: 0;
  margin-bottom: 0;
  visibility: hidden;
  height: 0;
  pointer-events: none;
  border: none;
  padding: 0 !important;
  transform: translateY(20px);
}

.event-item.with-banner {
  /* margin-top: 60px; */
}

.repertoire-once .event-item {
  padding: 8px 50px 8px 0;
}

.event-item-box {
  background-color: #F2F6FA;
  min-height: 187px;
  padding: 5px 50px 5px 25px;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}

.event-day-col,
.event-btn-col {
  display: flex;
  align-items: flex-start;
  padding-top: 58px;
}

.event-day-col {
  padding-top: 60px;
}

.event-btn-col {
  padding-top: 40px;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.event-title-col {
  display: flex;
  /* position: relative; */
  padding-left: 40px;
  padding-right: 60px;
  padding-top: 5px;
  flex-direction: column;
}

.other-events {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  display: flex;
}

.other-events .more-terms {
  text-decoration: underline !important;
  display: block;
  margin-left: 5px;
}

.event-title {
  width: 80%;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  color: #000;
}

.event-day-col {
  min-width: 135px;
  justify-content: center;
}

.event-time {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.event-time .date {
  display: none;
}

.event-item-box .event-time .day {
  display: none;
}

.event-item-box .event-time .time {
  font-size: 26px;
  font-weight: 500;
  margin-top: 10px;
  line-height: 30px;
}

.event-time .clock-icon {
  background-image: url(/images/gtt/clock-icon.svg);
  background-repeat: no-repeat;
  display: block;
  background-size: 30px;
  width: 30px;
  height: 30px;
}

.hall-header .event-poster {
  min-width: 253px;
  max-width: 253px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.event-description,
.product-description,
.hall-open-description {
  position: relative;
  /* min-height: 68px; <-- Zakomentowane lub usunięte */
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-description {
  width: 80%;
  /* min-height: 65px; */
}

.product-category {
  font-size: 26px;
  border-bottom: 1px solid #000;
  text-transform: uppercase;
}

.product-description {
  font-size: 19px;
  line-height: 22px;
  color: var(--txt-description);
  font-weight: 400;
}

.event-title-col>.event-description,
.event-title-col>.event-description p,
.event-title-col>.event-description span,
.event-title-col>.event-description>div,
.card-body .event-description div,
.card-body .event-description span {
  color: #5F5F5F;
  font-size: 19px !important;
  /* font-family: "Roboto", sans-serif !important; */
  line-height: 22px;
  margin-bottom: 0;
  font-style: normal;
}

.card-body .description div,
.card-body .description span {
  font-size: 16px !important;
  /* font-family: "Roboto", sans-serif !important; */
  font-weight: 300;
  line-height: 23.5px;
}

.event-description br {
  display: none;
}

.event-description.expanded {
  -webkit-line-clamp: unset;
  max-height: var(--expanded-height);
}

.expand-btn,
.product-expand-btn {
  background: none;
  /* margin-bottom: 30px; */
  border: 1.7px solid var(--txt-expand-btn);
  border-radius: var(--radius);
  padding: 5px 15px;
  color: var(--txt-expand-btn);
  cursor: pointer;
  min-width: 135px;
  max-width: 135px;
  line-height: 16px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.5s ease-in-out;
}

.expand-btn {
  margin-top: 10px;
  margin-bottom: 30px;
}

.expand-btn-txt {
  margin-left: 4px;
}

.card-body .expand-btn {
  padding: 0;
  font-size: 22px;
  font-weight: 500;
}

.event-info-box {
  position: absolute;
  bottom: 5px;
}

.event-info,
.avlbt {
  align-items: center;
  /* gap: 5px; */
  display: flex;
  font-size: 14px;
  font-weight: 500;
  /* color: var(--primary-color); */
}

.card-body .event-infos {
  font-size: 14px;
  font-weight: 300;
  display: flex;
  gap: 3px;
  color: #000;
  padding: 5px 3px;
  background-color: var(--section-background-color);
  max-width: 150px;
  flex-direction: column;
}

.event-item .event-buy-col {
  position: absolute;
  right: 40px;
  top: 65px;
}

.event-item.with-banner .event-buy-col {
  position: absolute;
  right: 40px;
  top: 153px;
}

.btn-buy {
  background-color: var(--primary-color);
  color: var(--txt-color);
  display: inline-block;
  min-width: 205px;
  font-size: 20px;
  text-align: center;
  padding: 12px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.btn-buy:hover {
  background-color: var(--hover-btn-primary);
}

.btn-notickets {
  background-color: #d51f1f;
  color: #fff;
  min-width: 205px;
  font-size: 20px;
  text-align: center;
  padding: 12px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s;
  pointer-events: none;
}

.btn-notickets:hover {
  background-color: #b11d1d;
  color: #fff;
}

.no-repertoire {
  margin: 40px auto;
  display: flex;
  opacity: 1;
  visibility: visible;
  max-height: 200px;
  transition: opacity 0.3s ease-in-out,
    visibility 0.2s ease-in-out;
  overflow: hidden;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.no-repertoire.hidden {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  margin: 0;
}

.no-repertoire .no-events {
  text-align: center;
  font-size: 28px;
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}

.no-repertoire .no-events-icon {
  background-image: url(/images/gtt/no-event-icon.svg);
  background-repeat: no-repeat;
  background-size: 90px;
  margin-bottom: 20px;
  width: 90px;
  height: 90px;
}

.no-repertoire.hidden .no-events {
  opacity: 0;
  transform: translateY(20px);
}

.top-repertoire-heading h2 {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.event-group-container h2 {
  font-size: 20px;
  padding-left: 15px;
}

.top-repertoire-heading.hidden {
  opacity: 0;
  visibility: hidden;
  border: unset;
  margin: 0 !important;
  height: 0;
}

.repertoire-box {
  display: none;
}

.repertoire-box {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.product-avaliability {
  text-align: center;
  font-size: 12px;
  position: absolute;
  bottom: 53px;
  text-transform: uppercase;
}

.repertoire-ticket-once {
  font-size: 19px;
  position: relative;
  display: flex;
  background-color: #F2F6FA;
  border-bottom: 1px solid #dbdbdb;
  padding: 20px;
  align-items: center;
}

.product-name .text-danger {
  font-size: 17px;
}

.repertoire-ticket-once .qbuttons {
  justify-content: flex-end;
}

#open .repertoire-ticket-once>div:nth-child(2),
#open .repertoire-ticket-once>div:nth-child(3) {
  text-align: center;
}

.repertoire-ticket-once:last-child {
  border-bottom: unset;
}

.list-repertoire-image {
  width: 60px;
}

.repertoire-image {
  height: 200px;
}

.repertoire-image-more {
  width: 60px;
  float: left;
  margin-right: 10px;
  vertical-align: middle;
}

.repertoire-ticket-once .product-select {
  text-align: center;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.info-txt>img {
  width: 22px;
  margin-right: 12px;
  position: relative;
  top: -3px;
}

.info-txt {
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 35px;
  font-size: 20px;
  color: #e6001a;
}

.repertoire-ticket-once .product-select span {
  cursor: pointer;
  font-size: 14px;
  color: #fff;
  padding: 5px;
  background: #e6001a;
  -webkit-border-radius: 4px;
  /* Safari, Chrome */
  -khtml-border-radius: 4px;
  /* Konqueror */
  -moz-border-radius: 4px;
  /* Firefox */
  border-radius: 4px;
  margin: 8px auto 3px;
}

#open .event-title,
.hall-header .event-title {
  font-size: 22px;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

#open .event-title h1,
.hall-header .event-title h1 {
  font-size: 28px;
  margin-bottom: 0;
}

#open .event-title {
  margin-top: 15px;
}

.hall-header .event-title h1 {
  font-weight: 700;
}

#open .term-date .day,
#open .event-location,
.hall-header .term-date,
.hall-header .event-location {
  font-size: 19px;
  margin-bottom: 0;
}

#open time {
  font-size: 22px;
}

#open>.repertoire-ticket-once>.product-name {
  font-size: 16px;
  font-weight: 600;
}

#open>.repertoire-ticket-once>.product-price {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.avlbt-box {
  text-align: center;
}

.avlbt-box-line {
  height: 8px;
  width: 50%;
  border: solid 1px #46546D;
  margin: auto;
}

.repertoire-ticket-once .product-select span .fa-plus-square {
  color: #fff;
  margin: 2px 5px;
}

.repertoire-ticket-once .product-select span:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  /* For IE8 and earlier */
  text-decoration: none;
  color: #fff;
}

.product-name>i {
  display: none;
}

.open-info:hover {
  color: #000;
  cursor: pointer;
}

.button-color {
  color: #000;
}

/*---------- SEKCJA KOSZYK ------------*/
.cart-area {
  background: var(--section-background-color);
  min-height: 450px;
  margin-top: 50px;
}

.cart_top {
  position: relative;
}

.cart_move {
  position: fixed;
  top: 0;
  left: 0;
}

.cart_opacity {
  background: #434343;
  position: fixed;
  top: 0;
  left: 0;
  width: 100% !important;
  -webkit-border-radius: 0px !important;
  /* Safari, Chrome */
  -khtml-border-radius: 0px !important;
  /* Konqueror */
  -moz-border-radius: 0px !important;
  /* Firefox */
}

.cart_opacity .cart_info div {
  color: #fff !important;
}

.cart_no_opacity {
  opacity: 1;
  filter: alpha(opacity=100);
  /* For IE8 and earlier */
  margin-top: 10px;
}

#cart_section {
  display: flex;
  flex-direction: column;
}

#sb_cart h3 {
  font-size: 19px;
  color: #59595B;
  margin-bottom: 0;
}

.cart_buy_button {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  width: 380px;
  border-radius: var(--radius);
  color: var(--txt-color);
  padding: 10px;
  background: var(--primary-color);
  text-decoration: unset;
  display: flex;
  margin: 46px 0 35px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  align-content: center;
  transition: all 0.3s ease-in-out;
}

.cart_buy_button:hover {
  background: var(--hover-btn-primary);
}

.btn-continue-shopping {
  border-bottom: 1px solid #000;
  height: 45px;
}

a.btn-continue {
  text-decoration: underline;
  color: #000;
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  cursor: pointer;
}

.cart-bottom-btns {
  position: relative;
}

.cart-buttons-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.sb_cart_box {
  background-color: #fff;
}

.basket-btns {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 148px;
  right: 0;
}

.cart_buy_button_inactive a{
  background: #e7e7e7 !important;
  color: #b7b7b7 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  border: none !important;
  width: 380px;
  border-radius: var(--radius);
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inactive-btn-cart {
  font-size: 20px;
  margin-top: 13px;
  margin-left: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: var(--radius);
  min-width: 380px;
  color: #b7b7b7 !important;
  padding: 10px;
  background: #e7e7e7;
  text-decoration: unset;
  display: flex;
  cursor: not-allowed !important;
  justify-content: center;
  align-items: center;
}

.cart_buy_button.inactive-btn-cart {
  background: #e7e7e7 !important;
  color: #b7b7b7 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  border: none !important;
}

.cart_buy_button.inactive_cart_buy_button {
  background: #e7e7e7 !important;
  color: #b7b7b7 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  border: none !important;
}

/*--------ANIMATION---------*/

div.btn-effect {
  text-decoration: none;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}

.btn-effect {
  position: relative;
  z-index: 1;
}

.btn-effect:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: inherit;
  width: 100%;
  height: 0;
  -webkit-transition: height 0.5s ease-in-out;
  -o-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
  z-index: -1;
}

.btn-effect:hover:after {
  height: 100%;
}

.btn-effect:after {
  background-color: var(--primary-color);
  border-radius: var(--radius);
}

.btn-effect.red-hov:after {
  background-color: #fe303c;
}

.btn-effect:hover {
  color: #ffffff !important;
}

/*--------SEKCJA CART---------*/

#cart_section .cart_info,
#cart_section .cart_actions {
  margin: 5px auto;
  padding: 5px;
  text-align: center;
}

#cart_section .cart_info div {
  margin: 5px 3px;
}

#sb_cart .cart_info {
  color: var(--primary-color);
  font-size: 22px;
  margin-bottom: 30px;
  font-weight: 400;
}

.cart_info span,
.cart_info span>span {
  color: #000;
}

.cart_info .count,
.cart_info .worth,
.cart_info .pieces,
.cart_info .decor-line,
.cart_info .currency-value {
  font-size: 26px;
}

.cart_info span>span {
  font-size: 24px;
}

#cart_section .count,
#cart_section .worth {
  font-weight: bold;
}

#cart_section .fa-ticket-alt,
#cart_section .fa-calculator {
  font-size: 20px;
}

#sb_cart .content div {
  -webkit-border-radius: 8px;
  /* Safari, Chrome */
  -khtml-border-radius: 8px;
  /* Konqueror */
  -moz-border-radius: 8px;
  /* Firefox */
  border-radius: 8px;
  padding: 5px;
  font-size: 10px;
}

.cart-product-once {
  border-bottom: 1px solid #ebf1f6;
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 35px;
  padding-top: 35px;
}

.cart-product-once:last-child {
  border-bottom: unset;
}

.cart-product-once .remove {
  background-image: url(/images/gtt/trash.svg);
  position: absolute;
  font-size: 18px;
  width: 85px;
  background-size: 25px;
  background-repeat: no-repeat;
  letter-spacing: 1px;
  right: 2rem;
  text-align: right;
}

.cart-product-once .remove:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 10px;
}

.pname {
  flex: 2;
}

.pname h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.cart-product-once .pname,
.cart-product-once .title .title-event {
  font-size: 16px;
  line-height: 25px;
}

.cart-product-once .title .title-event {
  font-weight: 500;
}

.cart-product-once .pcount,
.cart-product-once .pprice {
  font-size: 16px;
  line-height: 29px;
}

.cart-product-once .place {
  font-weight: 400 !important;
}

.cart-product-once .pprice {
  padding-left: 40px;
}

.cart-product-once .title>strong {
  font-weight: 600 !important;
  line-height: 1.3;
}

.cart-product-once .pcount {
  position: unset !important;
  text-align: center;
}

.cart-product-once .pname {
  padding-left: 25px;
}

.cart-product-once .fa-times-circle {
  font-size: 20px;
}

.button.product.plus.pbtn.btn-effect {
  transition: 0.2s linear;
}

/*---------- SEKCJA LEGENDA ------------*/

#legend_section table {
  margin: auto;
}

#legend_section .elements_line {
  float: left;
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  border: 1px solid #535a5e;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

#legend_section>h3,
.legend_product.discount-product-txt {
  font-size: 19px;
  font-weight: 500;
  color: #5F5F5F;
  /* padding-left: 5px; */
  margin-top: 30px;
}

.legend-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  /* padding-left: 5px; */
  align-items: flex-start;
}

.discount-info-txt {
  padding: 8px 0px;
  font-size: 15px;
  color: #5f5f5f;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 200px;
}

.legend-color {
  width: 24px;
  height: 24px;
  border-radius: unset;
  border: 1px solid #5F5F5F;
  flex-shrink: 0;
}

.legend-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legend-name,
.legend-price,
.legend_product.discount-product,
.legend_price {
  font-size: 14px;
  color: #5f5f5f;
}

.legend-unavailable {
  color: #4b617f;
}

.info-button {
  font-size: 18px;
  background: none;
  border: none;
  padding: 0.25rem;
  color: var(--txt-color-secondary);
  cursor: pointer;
}

.legend-break {
  flex-basis: 100%;
  height: 0;
}

.legend_product {
  display: block;
  width: 100px;
  margin-bottom: 8px;
}

.legend_product.discount-product {
  width: unset;
  margin-right: 5px;
}

.legend_product.discount-product-txt
 {
  margin-right: 70px;
  margin-top: 0;
  padding-left: 0;
  width: fit-content;
}

#legend_section .legend-click-icon,
#legend_section .legend-unclick-icon {
  background-size: 28px;
  background-repeat: no-repeat;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

#legend_section .legend-click-icon {
  background-image: url(/images/gtt/legend-click-icon.svg);
}

#legend_section .legend-unclick-icon {
  background-image: url(/images/gtt/legend-unclick-icon.svg);
}

.legend-txt-info {
  background-color: var(--section-background-color);
}

.legend-txt-info p {
  color: #5f5f5f;
  font-size: 14px;
}

#discount_section .legend_price {
  margin-right: 20px;
}

.discount-info-txt>i {
  padding: 0 5px;
}

.legend_product,
.legend_price,
#legend_section .elements_line div,
#discount_section .elements_line div {
  color: var(--text-color);
  /* font-size: 13px; */
  /* margin-left: 5px; */
}

.legend_product.discount-product {
  margin-left: 5px;
  margin-bottom: 0;
}

#legend_section .elements_line div i,
#discount_section .elements_line div i {
  color: var(--text-color);
  font-size: 11px;
}

/*---------- SEKCJA OPEN ------------*/

.event_open .product_select {
  width: 200px;
  text-align: center;
}

.event_open .product_select_info {
  font-size: 9px !important;
  font-weight: normal;
  color: inherit;
}

.event_open .product_avaliability,
.event_open .product_price {
  text-align: center;
}

/*---------- SEKCJA SALA ------------*/
.hall {
  transform: scale(1);
  transition: transform 0.2s;
}

.hall div {
  border: none !important;
  margin: auto;
}

.hall-container {
  display: flex;
  flex-direction: column-reverse;
}

.hall-box {
  margin: auto;
  overflow: hidden !important;
  margin-top: 25px;
  max-height: 750px;
  min-height: 750px;
  position: relative;
  transition: transform 0.6s ease;
  max-width: 900px;
  border-radius: 0;
}

.hall-open-description {
  max-height: 310px;
  overflow: hidden;
}

.hall-open-description span {
  font-size: 14px !important;
  font-weight: 300;
  margin-bottom: 30px;
  color: var(--txt-description);
}

.hall-box>div {
  border: none !important;
  padding: 0;
}

.hallBox tspan {
  font-size: 11px;
}

.zoom-box {
  position: fixed;
  right: 10%;
  bottom: 40px;
  width: fit-content !important;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1000;
  justify-content: flex-end;
}

#ZoomIn {
  background: url(../../images/gtt/icon-zoom-in.svg) no-repeat;
  width: 40px;
  height: 40px;
  background-size: 40px;
  background-color: #fff;
  cursor: pointer;
  z-index: 1001;
}

#ZoomOut {
  background: url(../../images/gtt/icon-zoom-out.svg) no-repeat;
  width: 40px;
  height: 40px;
  background-size: 40px;
  background-color: #fff;
  cursor: pointer;
  z-index: 1001;
}

#default-scale-hall {
  width: 40px;
  height: 40px;
  background-size: 39px !important;
  margin: 5px 0;
  /* border: 1px solid #000; */
  cursor: pointer;
  background: url(../../images/gtt/icon-default.svg) no-repeat;
  background-color: #fff;
  z-index: 1001;
}

.hall-tooltip-price {
  color: #FC5A57;
  font-size: 14px;
  padding-bottom: 3px;
}

.hall-tooltip-places {
  font-size: 14px;
  font-weight: 500;
  padding-top: 10px;
  padding-bottom: 5px;
  border-top: 1px solid #A4A3A3;
}

#cart-added-info,
#cart-removed-info,
.product-added {
  border: 2px solid #000;
  background: #fff;
  width: 50%;
  min-width: 40%;
  text-align: center;
  padding: 25px;
  position: fixed;
  top: 15%;
  right: 25%;
  display: none;
  z-index: 1000;
  font-size: 19px;
}

#cart-removed-info {
  color: #e6001a;
  border: 2px solid #e6001a;
}

/*---------- SEKCJA DOSTĘPNOŚĆ SALA ------------*/

.btn-text-availability,
.btn-info,
.btn-back-sector,
.btn-back-rows,
.availability-btn-group>button.btn.btn-warning,
.btn.btn-secondary,
.all-places,
.available-places {
  margin: 0;
  padding: 8px 15px;
  font-weight: 500;
  background-color: #fff;
  border-radius: 0;
  border: 2px solid var(--primary-color);
  border-radius: var(--radius);
  color: var(--txt-color-secondary);
}

.btn-text-availability {
  font-size: 14px;
  font-weight: 500;
  padding: 6px 40px;
  text-transform: uppercase;
  color: #5F5F5F;
}

.availability-hall-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.btn.btn-secondary.unavailable-place {
  margin: 3px;
  border-radius: 0;
  background-color: #565e64;
  color: #fff;
  cursor: not-allowed;
}

#places-container>button {
  padding: 5px 15px;
}

.btn-info:hover,
.btn-back-sector:hover,
.btn-back-rows:hover,
.all-places:hover,
.available-places:hover {
  background-color: #fff;
  color: #4b617f;
  border: 2px solid #4b617f;
}

.btn:focus-visible,
.btn-info:focus-visible {
  outline: 2px solid #4b617f;
  outline-offset: 2px;
  background-color: #fff;
  color: #4b617f;
  border: 2px solid #4b617f;
}

.btn.btn-info:active,
.btn-back-sector:active,
.btn-back-rows:active {
  background-color: #4b617f;
  color: #fff;
  border: 2px solid #4b617f;
}

.btn-show-hall,
.btn-hide-hall {
  margin-bottom: 10px;
}

.availability-btn-group {
  margin-bottom: 15px;
}

#places-container .place-button.added {
  background-color: var(--primary-color);
  color: white !important;
  border-color: var(--primary-color);
}

.places-checkboxes {
  margin-top: 20px;
}

.places-label {
  margin-bottom: 10px;
  color: var(--txt-color-secondary);
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
}

.places-grid {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  flex-direction: row;
  flex-wrap: wrap;
}

.place-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.place-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.place-checkbox:disabled {
  cursor: not-allowed;
}

.place-label {
  font-size: 18px;
  cursor: pointer;
}

.place-checkbox:disabled+.place-label {
  color: #999;
  cursor: not-allowed;
}

.selects-container>.selects-txt>h3 {
  font-weight: 500;
  text-align: left;
  font-size: 18px;
  text-transform: uppercase;
}

.selects-container>.selects-txt>p {
  font-size: 15px;
  text-align: left;
}

.seat-select-container {
  display: flex;
  justify-content: center;
  padding: 0;
  background-color: #fff;
  align-items: center;
  flex-direction: column;
}

.seat-select-group {
  margin: 0 10px;
}

.seat-select {
  width: 100%;
  padding: 8px 15px;
  font-weight: 500;
  border: 2px solid var(--primary-color);
  border-radius: 0;
  background-color: #fff;
  color: var(--txt-color-secondary);
  font-size: 16px;
  transition: all 0.3s ease;
}

.seat-select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(75, 97, 127, 0.2);
}

.seat-select-label {
  display: block;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--txt-color-secondary);
  font-weight: 500;
  font-size: 15px;
}

.availability-hall-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

/*---------- SEKCJA BOXOFFICE ------------*/

.yellow {
  color: #dd1010;
  font-weight: bold;
}

.yellow.fa-star {
  margin: 0px 3px 5px;
  font-size: 8px;
}

.radio-box-set {
  justify-content: space-between;
}

.boxoffice-time-info {
  font-size: 18px;
  color: #000;
}

.time-icon {
  width: 19px;
  height: 25px;
  margin: 0 10px;
  background-image: url(/images/gtt/time-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

.boxoffice-bottom-cart {
  background-color: var(--section-background-color);
}

.boxoffice-delivery-box {
  margin-top: 35px;
  border: 0px;
  background-color: #fff;
  min-height: 85px !important;
}

.boxoffice-payment-box {
  margin-top: 35px;
  border: 0px;
  background-color: #fff;
  min-height: 85px !important;
}

.boxoffice-user-box {
  background-color: #fff;
  padding-bottom: 20px;
}

.boxoffice-buy-box {
  padding: 35px 0;
  height: fit-content !important;
}

#basket-float>.boxoffice-buy-box>.summary-heading {
  margin: 0 10px;
}

.buy>div>h1 {
  color: #fff !important;
}

.form-control {
  border: unset !important;
  color: #000 !important;
  border-bottom: 1px solid #000 !important;
  border-radius: 0 !important;
  padding-top: 30px !important;
  box-shadow: none !important;
  position: relative;
}

.boxoffice-payment-box h4,
.boxoffice-pcode-box h4,
.boxoffice-delivery-box h4 {
  border-bottom: 1px solid #000;
  font-size: 26px;
  line-height: 40px;
  font-weight: 400;
  color: #000;
  margin-bottom: 45px !important;
}

.regulations-heading>h3,
.invoice-heading>h3 {
  border-bottom: 1px solid #000;
  color: #000;
  font-size: 26px;
  font-weight: 400;
}

.input-visible {
  position: relative;
  left: -30px;
  display: block !important;
}

/* MODAL VOUCHER */
.btn-voucher {
  display: flex;
  font-size: 14px;
  border: 2px solid #000;
  border-radius: var(--radius);
  padding: 0 15px;
  transition: all 0.3s ease-in-out;
  padding-left: 18px;
  outline: none;
  align-items: center;
}

.btn-voucher .voucher-icon {
  background-image: url(/images/gtt/voucher-icon.svg);
  position: relative;
  top: 0px;
  display: block;
  width: 32px;
  height: 32px;
  background-size: 32px;
  background-repeat: no-repeat;
  margin-right: 8px;
  margin-left: -2px;
}

.btn-voucher:hover {
  background-color: var(--hover-btn-secondary);
}

.pass-box {
  flex-direction: column;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.modal-content {
  position: relative;
  background-color: #fff;
  margin: 15% auto;
  padding: 45px 55px;
  width: 90%;
  max-width: 520px;
  border-radius: 0;
}

.modal-content h2 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid #A4A3A3;
}

.voucher-form {
  display: flex;
  flex-direction: column;
  position: relative;
}

.voucher-input {
  width: 100%;
  padding: 12px;
  border: unset;
  border-bottom: 1px solid #000;
  border-radius: 0;
  font-size: 16px;
}

.voucher-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
}

.btn-add-voucher,
.btn-cancel-voucher {
  padding: 12px 30px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 500;
  min-width: 200px;
  transition: all 0.3s ease-in-out;
}

.btn-add-voucher {
  background-color: #000;
  color: #fff;
}

.btn-cancel-voucher {
  background-color: unset;
  border: 2px solid #000;
  color: #000;
}

.btn-add-voucher:hover {
  background-color: #333;
}

.btn-cancel-voucher:hover {
  background-color: #ccc;
}

.boxoffice-pcode-box {
  position: relative;
  margin-top: 35px;
  border: 0px;
  background-color: #fff;
  min-height: 85px !important;
}

.pcinfoerror {
  position: absolute;
  bottom: 67px;
  left: 0px;
  font-size: 14px;
  text-align: center;
}

.error-icon-promo {
  color: #d12335;
  margin-left: 5px;
  font-size: 18px;
  position: absolute;
  right: 10px;
  bottom: 0;
  transform: translateY(-50%);
}

#add-promo-code {
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
  border-radius: var(--radius);
  padding: 8px;
  width: 370px;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 30px;
  transition: all 0.3s ease-in-out;
}

#add-promo-code:hover {
  background-color: var(--hover-btn-secondary);
}

#promotional_code {
  border-bottom: 1px solid #000 !important;
  padding-top: 15px !important;
  background-color: unset !important;
}

#promotional_code::placeholder,
#inputName::placeholder,
#inputSurname::placeholder,
#inputEmail::placeholder,
#inputRepeatEmail::placeholder,
#inputPhone::placeholder,
.invoice.UserInfo::placeholder,
#voucher-code::placeholder,
.productCustomer::placeholder {
  color: #A4A3A3;
  font-size: 17px;
}

.boxoffice-details-empty {
  font-size: 18px;
  padding: 5px 25px;
}

.boxoffice-details-empty .fas {
  font-size: 30px;
  margin-right: 15px;
}

.boxoffice-details-once {
  font-size: 16px;
  position: relative;
  background-color: #fff;
  min-height: 120px;
  padding: 20px 30px;
  overflow: auto;
  display: flex;
  align-items: center;
  overflow: visible !important;
}

.boxoffice-details {
  /* padding-left: 0;
  padding-right: 0; */
}

.boxoffice-details-header {
  padding: 0 35px 35px 35px;
  background-color: #fff;
}

.form-control.productCustomer {
  /* gap: 30px; */
  width: 90%;
}

.form-group.user-data {
  border: 1px solid #DAE5F0;
  padding: 0 0 15px 25px;
  margin-top: 5px;
}

.boxoffice-details .position-title h2 {
  font-size: 19px;
  margin-top: 25px;
  margin-bottom: 25px !important;
}

.position-title>strong {
  margin-right: 5px;
}

.boxoffice-details>div>.ticket-price {
  font-size: 14px;
  font-weight: 500;
  padding-right: 12px;
}

.boxoffice-details>div>.ticket-price-col {
  text-align: center;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.pass-box>.dropdown>.dropdown-content {
  background-color: unset;
  border: unset;
  padding-top: 8px;
  box-shadow: none;
}

.boxoffice-details .ticket-qt-boxoffice {
  font-size: 16px;
  text-align: center;
  font-weight: 500;
}

.boxoffice-details>div>.ticket-name,
.boxoffice-details>div>.ticket-name>strong {
  font-size: 16px;
  font-weight: 400 !important;
  line-height: 29px;
}

.boxoffice-details-once .ticket-remove {
  background-image: url(/images/gtt/trash.svg);
  background-size: 25px;
  background-repeat: no-repeat;
  font-size: 18px;
  height: auto;
  width: 85px !important;
  position: absolute;
  right: 30px;
  text-align: right;
  cursor: pointer;
}

.boxoffice-details>div>.ticket-remove>div {
  display: flex;
  align-items: center;
  letter-spacing: 1px;
}

.boxoffice-details>div>.ticket-remove>div>img {
  margin-right: 15px;
  margin-top: -5px;
}

.cart-product-once .remove>img {
  margin-top: -5px;
  margin-right: 15px;
}

.boxoffice-ticket-details,
.repertoire-ticket-once .product-place {
  font-size: 14px;
  color: #59595b;
}

.ticket-remove .fa-times-circle {
  cursor: pointer;
  font-size: 25px;
}

.invoice_row>p {
  margin-top: 20px;
}

.summary-row {
  margin-bottom: 10px;
}

.summary-tr {
  font-size: 20px;
}

.summary-td {
  text-align: right;
}

.summary-final {
  margin-top: 40px;
}

.summary-final h2 {
  text-align: center;
  font-size: 32px;
}

.summary-tickets.summary-tr,
.summary-tickets-val.summary-td,
.buy.summary-delivery.summary-tr,
.buy.summary-delivery-val.summary-td,
.buy.summary-payment.summary-tr,
.buy.summary-payment-val.summary-td,
.summary-final>div {
  font-size: 20px;
  font-weight: 400;
  color: #000 !important;
}

.summary-final div,
#cart_summary {
  font-size: 28px;
  font-weight: 700;
}

.buy>div>div.summary-heading {
  margin-bottom: 45px;
}

.summary-final #cart_summary {
  text-align: right;
  margin-left: -25px;
}

.quantity-cart,
.quantity-cart-val {
  font-size: 16px;
  font-weight: 400;
}

.quantity-cart-val {
  text-align: right;
}

.button-submit {
  background: var(--primary-color);
  color: var(--txt-color);
  border-radius: var(--radius);
  border: 1px solid var(--primary-color);
  margin-top: 40px;
  margin-bottom: 80px;
  min-width: 410px;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 12px 80px;
  transition: all 0.3s ease-in-out;
}

.button-submit:hover {
  background: var(--hover-btn-primary);
}

.boxoffice-cart {
  background-color: var(--section-background-color);
}

.boxoffice .details {
  width: 100%;
  margin-top: 10px;
}

.boxoffice-payment-box label,
.boxoffice-delivery-box label {
  background-color: unset;
  color: #000 !important;
  border: unset;
  padding-top: 0 !important;
}

.boxoffice .user_details th {
  border: none;
  background: none;
  color: #3e2615;
  font-weight: bold;
  text-align: left;
  font-size: 16px;
}

.boxoffice .details {
  margin-top: 20px;
}

.boxoffice .summary th {
  border: none;
  background: none;
  color: #3e2615;
  font-weight: bold;
  text-align: left;
  font-size: 16px;
  padding: 5px;
}

.boxoffice .user_details td {
  border: none;
  background: none;
  color: #3e2615;
  font-weight: bold;
  text-align: left;
}

.boxoffice tfoot {
  font-size: 15px;
}

.boxoffice .adds {
  margin-top: 10px;
  background-color: #fff;
}

.boxoffice .buy-box {
  background: #fff;
}

.boxoffice .buy-float {
  border: 1px solid #4b617f;
  position: absolute;
  top: -20%;
  max-width: 395px;
  right: 8%;
  height: fit-content;
}

.boxoffice-summary-box {
  background-color: #fff;
}

div.boxoffice-summary-box>div.buy {
  margin-top: 80px;
}

.boxoffice .details .ticket {
  text-align: left;
}

.user_details input[type="text"],
.user_details textarea {
  padding: 10px;
  border: 1px solid #dfdfdf;
}

.delivery .radio,
.payment .radio {
  text-align: center;
}

.delivery .name,
.payment .name {
  font-weight: bold;
}

.delivery .cost,
.payment .cost {
  text-align: right;
}

.document_expl {
  font-size: 10px;
}

.summary td,
.summary th {
  text-align: right;
}

#form-error {
  width: 99%;
  padding: 0 !important;
  background: unset !important;
}

.no-border {
  border: none !important;
}

.regulations-form-field {
  margin: 3px 0px;
}

.regulations-form-field .control-label {
  margin-top: 5px;
}

.regulations-form-element {
  padding: 10px 0px 10px 0;
  display: flex;
  align-content: center;
}

.regulations-form-element input {
  float: left;
  display: inline;
  cursor: pointer;
  margin-top: 3px;
  width: 19px !important;
  height: 19px !important;
  accent-color: var(--primary-color);
}

.regulations-form-checkbox-ok {
  float: right;
  margin-top: 3px;
  color: #4a3cb1;
  font-size: 24px;
  cursor: pointer;
}

.regulations-form-checkbox {
  float: right;
  margin-top: 3px;
  font-size: 24px;
  color: #c7cdd2;
  cursor: pointer;
}

.regulations-form-label,
.delivery-label,
.payment-label,
.invoice-label,
.invoice-priv-label {
  cursor: pointer;
  background: unset;
  letter-spacing: unset;
  padding: 0;
  border: 0;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

label.regulations-form-label,
label.delivery-label,
label.payment-label,
.check-rules .regulations-form-label {
  padding-left: 10px !important;
}

.check-rules .regulations-form-label {
  display: block;
}

label.invoice-label,
label.invoice-priv-label {
  padding-left: 18px !important;
}

.regulations-form-link {
  color: #000 !important;
}

.regulations-form-link:hover {
  text-decoration: none;
}

.validate_err {
  color: #dd1010;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.AcceptRules-validate_info,
.AcceptRules2-validate_info {
  padding-left: 10px;
}

.validate_err .fas {
  font-size: 15px;
  margin-right: 10px;
  color: inherit;
  display: none;
}

.discount-price {
  border: 1px solid #000;
  margin: 3px;
  padding: 3px;
  float: left;
  font-size: 12px;
  color: #000;
  cursor: pointer;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
}

.dropdown-wrapper {
  position: relative;
}

.discount-select .discount-icon {
  background-image: url(/images/gtt/discount-icon.svg);
  position: relative;
  top: 0px;
  display: block;
  width: 17px;
  height: 32px;
  background-size: 32px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.discount-select {
  position: relative;
  overflow: visible !important;
  display: flex;
  max-width: 291px;
  align-items: center;
  padding: 0 15px;
  border: 2px solid #000;
  border-radius: var(--radius);
  transition: all 0.3s ease-in-out;
}
.discount-select:hover{
  background-color: var(--hover-btn-secondary);
}
/* .discount-select:hover .dropdown-header{
  background-color: var(--hover-btn-secondary);
} */
.discount-select.disabled .discount-icon {
  background-image: url(/images/gtt/discount-disabled-icon.svg);
  position: relative;
  top: 0px;
  display: block;
  width: 17px;
  height: 32px;
  background-size: 32px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.discount-select.disabled {
  border: 2px solid #b2b2b2;
  color: #b2b2b2;
}

.discount-select.disabled .dropdown-header {
  pointer-events: none;
}

.discount-select.disabled .arrow {
  display: none;
}

.discount-price.selected {
  background: #000;
  color: #fff;
}

.discount-price .fa-check-circle {
  margin-right: 5px;
  margin-left: 3px;
  color: #d1d1d1;
}

.discount-price .fas {
  display: none;
}

.discount-price.selected .far {
  display: none;
}

.discount-price.selected .fas {
  display: inline;
}

.discount-price.selected .fa-check-circle {
  color: #fff;
}

/*---------- SEKCJA PRODUKTY ------------*/

.top-products-heading {
  border-bottom: 1px solid #000;
}

.top-products-heading h1 {
  margin-bottom: 0;
  font-size: 26px;
  font-weight: 400;
}

.pbox {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 2rem;
}

.product-price-col {
  font-size: 26px;
  font-weight: 500;
  padding-top: 105px;
  display: flex;
  flex: 1;
  text-align: center;
  justify-content: center;
}

.product-btn-col {
  display: flex;
  align-items: flex-start;
  padding-top: 90px;
}

.product-image img {
  background-image: url(/images/gtt/product-holder.png);
  width: 240px;
  max-width: 240px;
  height: 240px;
  background-size: contain;
  background-repeat: no-repeat;
}

.product-added,
.product-removed {
  text-align: center;
  font-size: 22px;
  padding: 20px;
  margin: 10px 0;
  position: fixed;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background: white;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.pone {
  border-bottom: 1px solid #eee;
  background-color: #F2F6FA;
  margin: 0;
  display: flex;
  width: 100%;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, height 0.5s ease-in-out, all 0.5s ease-in-out;
}

.product-title {
  font-size: 28px;
  line-height: 32px;
  font-weight: 500;
  padding-left: 10px;
  padding-top: 10px;
  color: #000;
}

.btn-products-buy {
  background-color: var(--primary-color);
  color: var(--txt-color);
  min-width: 240px;
  font-size: 20px;
  text-align: center;
  padding: 14px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.btn-products-buy:hover {
  background-color: var(--hover-btn-primary);
}

.pbtn {
  line-height: 0;
  font-weight: 100;
  width: 55px;
  height: 55px;
  color: var(--txt-color);
  border: 2px solid var(--primary-color);
  border-radius: var(--radius);
  background-color: var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.ui-state-disabled.repertoire-ticket-once button.pm-button {
  pointer-events: none;
}

.pbtn:hover {
  background-color: var(--hover-btn-primary);
}

.minus.pbtn span {
  font-size: 90px;
  font-weight: 100;
  height: 10px;
  display: block;
  color: var(--primary-color);
}

.plus.pbtn span {
  font-size: 53px;
  font-weight: 200;
}

.product-select button.button.product.minus {
  width: 60px;
  height: 60px;
  color: var(--txt-color);
  border: 2px solid var(--primary-color);
  cursor: pointer;
  outline: none;
}

.prod-image>img {
  height: 226px;
  width: 240px;
  max-height: auto;
  background: url(../../images/gtt/pattern.png) no-repeat;
}

input.qfield {
  background-color: #F2F6FA;
  width: 50px;
  height: 50px;
  border: unset;
  text-align: center;
  font-size: 19px;
}

.pbtn:hover img {
  opacity: 0.1;
  filter: alpha(opacity=10);
}

.pbtn img {
  cursor: pointer;
}

.remove {
  top: auto !important;
  left: auto !important;
  float: right !important;
  cursor: pointer;
}

/*---------- TOOLTIP ------------*/

.tooltiptext {
  display: none;
  width: 270px;
  font-size: 16px;
  line-height: 1.25;
  background-color: #ffffffe8;
  color: #4b617f;
  text-align: center;
  padding: 10px;
  border-radius: 2px;
  border: 2px solid #4b617f;
  position: absolute;
  z-index: 1000;
}

.tooltip-open {
  width: 300px;
}

.tooltiptext::after {
  content: " ";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border: 1px solid #4b617f;
  border-color: transparent #fff transparent transparent;
}

.ticket-remove>span {
  position: relative;
  left: -10px;
  font-size: 18px;
}

#tooltip {
  background: #fff;
  padding: 5px !important;
  width: 312px;
}

#tooltip .header {
  font-weight: bold;
  padding: 5px;
  width: 290px;
  margin: 2px 5px;
  border-radius: 0px !important;
}

#tooltip .header_sector {
  background: lightgrey;
  font-weight: bold;
  padding: 5px;
  width: 290px;
  margin: 2px auto;
  -webkit-border-radius: 4px;
  /* Safari, Chrome */
  -khtml-border-radius: 4px;
  /* Konqueror */
  -moz-border-radius: 4px;
  /* Firefox */
  border-radius: 4px;
}

#tooltip .content {
  padding: 5px;
}

/*---------- EXTERNAL -----------*/

.ticket-info p {
  background: #eee;
  padding: 10px;
  margin: 20px auto;
  overflow: auto;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.ticket-info .far {
  font-size: 40px;
  float: left;
  margin: 0px 10px;
  clear: both;
}

.ticket-info .tititle {
  float: left;
  display: inline;
  font-weight: bold;
  font-size: 26px;
  margin-right: 15px;
}

.adsbygoogle {
  margin-top: 100px;
}

.loading {
  width: 290px;
  display: block;
  margin: auto;
}

.main-info-box {
  min-height: 55vh;
}

.main-info-box>.loading {
  margin-top: 20vh;
}

.box-back:focus,
.box-remove:focus {
  outline: 2px solid var(--txt-color-secondary);
  outline-offset: 8px;
}

#container .back-btn>img {
  margin-right: 15px;
}


#open h2,
.hall-info-txt h2 {
  border-top: 1px solid #000;
  color: #5f5f5f;
  letter-spacing: 1px;
  padding-top: 3px;
  margin-bottom: 35px;
  font-size: 19px !important;
}

.boxoffice-heading>h1,
.user-heading>h3 {
  border-bottom: 1px solid #000;
  color: #000;
  margin-bottom: 30px;
  font-size: 26px !important;
  line-height: 40px;
  font-weight: 400;
}

.user-heading>h3 {
  padding-top: 30px;
}

.hall-info-txt h2>span {
  font-size: 18px;
  position: relative;
  top: -2px;
}

.user-heading>h1 {
  margin-bottom: 25px;
}

.summary-heading>h3 {
  color: #000 !important;
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
  font-size: 28px !important;
  margin-bottom: 40px;
  font-weight: 400;
}

.dropdown-button {
  padding: 8px 25px;
  border: 2px solid #000;
  border-radius: var(--radius);
  color: #000;
  background-color: #fff;
  cursor: pointer;
  outline: none;
}

.ticket-price-col>.dropdown>.dropdown-button {
  padding-top: 0 !important;
}

.arrow {
  background-image: url(/images/gtt/arrow-discount.svg);
  transform: rotate(0deg);
  color: #000D10;
  flex-shrink: 0;
  width: 20px;
  height: 12px;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
}

.dropdown-content {
  display: none;
  cursor: pointer;
  width: 291px !important;
  position: absolute;
  background: white;
  border: 1px solid #000D10;
  border-radius: 15px;
  margin-top: 5px;
  top: 100%;
  left: -55px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dropdown-content.show {
  display: block;
}

.dropdown-content .dropdown-item {
  padding: 5px 10px 5px 60px;
  font-size: 14px;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

.dropdown-content .dropdown-item:hover {
  background-color: #F2F6FA;
  border-radius: 15px;
}

.custom-dropdown {
  position: static;
  /* width: 220px; */
  font-family: Arial, sans-serif;
}

.dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background: #fff; */
  line-height: 32px;
  border-radius: 25px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

.arrow {
  background-image: url(/images/gtt/arrow-discount.svg);
  transform: rotate(0deg);
  color: #000D10;
  flex-shrink: 0;
  width: 20px;
  height: 12px;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
}

.arrow.open {
  transform: rotate(180deg);
  height: 12px;
}

.pass-box>.dropdown>.dropdown-button>span {
  padding: 0px 3px 0 10px;
  margin-right: 25px;
  margin-left: 5px;
  margin-top: 3px;
  height: 5px;
  background-size: 9px;
}

.pass-code-details {
  width: 145px;
  padding-left: 5px;
  margin-right: 4px;
  border-radius: unset;
  border: 1px solid #4b617f;
}

#form-error>fieldset:nth-child(3)>div>div>div:nth-child(1)>.check-rules,
#form-error>fieldset:nth-child(3)>div>div>div:nth-child(2)>.check-rules,
#form-error>fieldset:nth-child(5)>div>div>div.regulations-form-element.no-border.row>div {
  width: fit-content;
}

.summary-cart-boxoffice {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-bottom: 50px;
  font-size: 26px;
  font-weight: 500;
  color: #000;
}

.summary-cart-boxoffice>div.summary-cart-details {
  display: flex;
}

.value-summary {
  text-align: right;
}

.summary-final>.worth-row {
  justify-content: flex-end;
}

div.pcinfoerror>i {
  font-size: 0 !important;
  margin-right: 0 !important;
}

#open>div>h1>span.fa-question-circle {
  font-size: 20px;
  width: fit-content;
}

.calendar-days>div>.calendar-day>br {
  display: none;
}

.icon-ok.fas.fa-check {
  margin-top: 0;
  top: 35px;
  font-size: 18px;
  left: -10px;
  z-index: 9;
  height: 0;
  margin-top: unset !important;
}

.user-input-date,
.invoice-form-row {
  position: relative;
}

.error-icon {
  position: absolute;
  right: 20px;
  bottom: 30px;
  color: #dd1010;
}

div.regulations-form-field.row.NipRow>.invoice-form-row i {
  bottom: 52px;
}

.fa-exclamation-circle:before {
  font-size: 20px;
}

.swal2-actions {
  margin-top: 10px !important;
}

.swal2-styled:focus {
  outline: 0;
  box-shadow: unset !important;
}

.swal2-confirm.swal2-styled,
.swal2-cancel.swal2-styled {
  border: 0;
  border-radius: 0 !important;
}

.swal2-styled.swal2-confirm,
.swal2-cancel.swal2-styled {
  text-transform: uppercase !important;
  border: 1px solid var(--primary-color) !important;
  border-radius: var(--radius) !important;
  background: initial;
  background-color: var(--primary-color) !important;
  color: #fff !important;
  font-size: 16px !important;
}

.swal2-cancel.swal2-styled {
  background-color: #fff !important;
  border: 1px solid #000 !important;
  color: #000 !important;
}

#swal2-content .price,
#swal2-content .price span {
  font-size: 18px;
  color: #FC5A57;
  text-transform: capitalize;
  margin: 10px 2px 0;
}

.swal2-header {
  border-bottom: 1px solid;
  width: 80%;
  margin: auto;
  margin-bottom: 8px;
}

#swal2-title {
  color: #000 !important;
  font-size: 22px !important;
  margin-bottom: 5px !important;
}

.swal2-content {
  font-size: 18px !important;
  font-weight: 400 !important;
  text-transform: capitalize;
  color: #000 !important;
}

.swal2-styled:hover {
  background-image: unset !important;
}

.swal2-popup {
  padding: 3em !important;
  border-radius: 0 !important;
}

.elements_line>div {
  width: 120px !important;
}

.back-btn {
  font-size: 19px;
  min-width: 360px;
  font-weight: 500;
  padding: 8px;
  color: var(--txt-color-secondary);
  background-color: var(--secondary-color);
  border-radius: var(--radius);
  border: 2px solid var(--primary-color);
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.boxoffice-back-btn {
  display: block;
  max-width: 380px;
  margin-bottom: 25px;
}

.back-btn-event,
.boxoffice-back-btn {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--txt-expand-btn);
}

.back-btn-event>.arrows-icon,
.boxoffice-back-btn>.arrows-icon {
  margin-right: 6px;
}

.messages-text {
  font-size: 40px;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  line-height: 1.3;
}

.ticket-info>span>a,
.error-txt>span>a {
  color: #fff !important;
  font-size: 20px;
}

.ticket-info>span:hover>a,
.error-txt>span:hover>a {
  color: #fff !important;
}

/*---------- ZOOM POSTERA -------------*/
.event-poster-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
  overflow: hidden;
  background: radial-gradient(80.1% 50% at 50% 50%, #86A0B5 0%, #69839B 66%, #5B758E 100%);
  border-radius: var(--radius-small);
}

.event-poster {
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: block;
  /* width: 100%; */
  height: auto;
}

.event-poster-container::after {
  content: "🔍";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.event-poster-container:hover .event-poster {
  opacity: 0.7;
}

.event-poster-container:hover::after {
  opacity: 1;
}

.zoomed-poster-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.zoomed-poster-container.visible {
  opacity: 1;
  visibility: visible;
}

.zoomed-poster {
  max-width: 80%;
  max-height: 80vh;
  transform: scale(0.7);
  transition: transform 0.5s ease;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.zoomed-poster-container.visible .zoomed-poster {
  transform: scale(1);
}

/*---------- SEKCJA EVENTS/EVENT ------------*/

.single-event-desc {
  margin-top: 10px;
  line-height: 24px;
  height: 215px;
  overflow: hidden;
  transition: height 0.8s ease-in-out;
}

.single-event-desc span,
.single-event-desc div,
.single-event-desc div font {
  font-size: 14px !important;
  font-weight: 300 !important;
  color: #5F5F5F !important;
}

.repertoire-once .title h3,
.repertoire-once .title span,
.repertoire-once .title h5 {
  color: #535a5e;
  font-size: 14px !important;
  line-height: 20px;
  margin-top: 0;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.single-event-desc.expanded {
  height: auto;
}

.single-event-desc.expanded br {
  display: none;
}

.toggleButton {
  cursor: pointer;
  background: none;
  min-width: 100px;
  padding: 3px 0;
  border: 1px solid #5F5F5F;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 300;
  margin-top: 10px;
  color: #5F5F5F;
  display: none;
}

.events-list-grid {
  min-height: 340px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  justify-content: center;
}

.event-card {
  display: flex;
  background: #f2f6fa;
  padding: 0.625rem;
  transition: all 0.3s ease;
}

.event-card:hover {
  background-color: #E6EEF6;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.event-card .calendar-icon,
.event-card .category-icon,
.event-card .clock-sec-icon,
.event-infos .calendar-icon,
.event-infos .category-icon,
.event-infos .clock-sec-icon {
  display: block;
  background-repeat: no-repeat;
  background-size: 17px;
  width: 17px;
  height: 17px;
  margin-right: 5px;
}

.event-card .calendar-icon,
.event-infos .calendar-icon {
  background-image: url(/images/gtt/calendar-icon.svg);
}

.event-card .category-icon,
.event-infos .category-icon {
  background-image: url(/images/gtt/grid-icon.svg);
}

.event-card .clock-sec-icon,
.event-infos .clock-sec-icon {
  background-image: url(/images/gtt/clock-sec-icon.svg);
}

.event-card .event-title {
  min-height: 70px;
  font-size: 20px;
  line-height: 24px;
  transition: all 0.3s ease;
}

/* Style dla układu pionowego */
.events-grid-vertical {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.event-card-vertical {
  display: flex;
  flex-direction: column;
  background: #f2f6fa;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card-vertical .event-header {
  margin-block-end: 0;
  position: relative;
}

.event-card-vertical .event-title {
  margin-bottom: 0.25rem;
  font-size: 20px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  cursor: pointer;
  min-height: 0;
  transition: all 0.3s ease;
}

.event-card-vertical:hover {
  background-color: #E6EEF6;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.event-card-vertical .event-image {
  width: 100%;
  min-height: auto;
  max-height: 380px;
  aspect-ratio: 3/2;
}

.event-card-vertical .event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card-vertical .event-content {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.event-card-vertical .event-subtitle {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.event-card-vertical .scene-info {
  font-size: 0.75rem;
  margin: 0.25rem 0;
}

.tippy-box {
  border: 1px solid #000 !important;
  font-size: 12px;
  box-shadow: none !important;
  border-radius: 0 !important;
  opacity: 0;
  transition: opacity 0.4s ease-in-out !important;
}

.tippy-box[data-state='visible'] {
  opacity: 1;
}

.event-card-vertical .event-title:hover {
  text-decoration: underline;
}

.event-image-horizontal img,
.event-image-vertical img {
  min-width: 253px;
  max-width: 253px;
  height: auto;
  object-fit: cover;
  border-radius: 0.438rem;
}

.card .event-image img {
  max-width: 253px;
  height: auto;
  object-fit: cover;
  border-radius: 0.438rem;
}

.card {
  padding-left: 15px;
  padding-right: 15px;
}

.event-content {
  padding: 0 0px 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.event-header {
  margin-block-end: 3rem;
}

.event-subtitle {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
}

.scene-info {
  font-size: 14px;
  color: #5F5F5F;
  font-weight: 400;
}

.event-button {
  display: inline-block;
  padding: 8px;
  border: 2px solid var(--primary-color);
  border-radius: var(--radius);
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 17px;
  transition: all 0.3s ease;
  text-align: center;
  margin-block-start: 0.625rem;
}

.event-button:hover {
  background: var(--hover-btn-third);
  color: var(--txt-color);
}

.events-btn-buy {
  background-color: var(--primary-color);
  color: var(--txt-color);
  min-width: 204px;
  margin-right: 25px;
  font-size: 20px;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.events-btn-buy:hover {
  background-color: var(--hover-btn-primary);
}

.event-group .date-box {
  color: #000;
  font-weight: 400;
  text-align: center;
  min-width: 155px;
}

.event-group .date-box .date,
.event-item .time {
  font-size: 31px;
  color: #000;
  line-height: 40px;
}

.date-box>time>.day {
  font-size: 19px;
  text-transform: capitalize;
}

.event-item .location {
  font-size: 24px;
  color: #000;
}

.event-group .event-item {
  justify-content: space-between;
  padding: 10px 50px 10px 0;
  border: none;
  border-bottom: 1px solid #c9d3da;
  border-radius: 0;
  background: var(--section-background-color);
  transition: all 0.2s ease;
}

.event-group .event-item:hover {
  background: #E6EEF6;
}

.event-item:last-child {
  border-bottom: unset;
}

.event-item-box:hover,
.event-item-box:focus-within {
  background-color: #E6EEF6;
}

.pone:hover {
  background-color: #E6EEF6;
}

.read-more {
  font-weight: 500;
  cursor: pointer;
  padding: 0.5rem;
  border: none;
  background: none;
}

.show-details {
  font-size: 0.9rem;
  color: #6c757d;
}

.show-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.show-subtitle {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* WERSJA TEKSTOWA WYBORU MIEJSC */

.details_content {
  padding: 0;
}

@-webkit-keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }

  to {
    bottom: 0px;
    opacity: 1;
  }
}

@keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }

  to {
    bottom: 0;
    opacity: 1;
  }
}

.animate-bottom {
  -webkit-animation: animatebottom 1s;
  animation: animatebottom 1s;
}

svg>path {
  cursor: pointer;
}

#hall {
  overflow: hidden;
}

#hall>div>div,
svg {
  cursor: grab;
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -ms-user-drag: none;
  -o-user-drag: none;
}

.hall,
.hall-box {
  transition: transform 0.6s ease;
}

.hall-box {
  max-width: 100%;
  margin-left: 10%;
  margin-right: 10%;
  border-radius: 0;
}

@keyframes zoomInAnimation {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }

  15% {
    transform: scale(0.4);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.zoom-in {
  animation: zoomInAnimation 1.5s;
}

.availability-hall-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.btn.btn-secondary.unavailable-place {
  margin: 3px;
  border-radius: 0;
  background-color: #565e64;
  color: #fff;
  cursor: not-allowed;
}

.btn-text-availability,
.btn-info,
.btn-back-sector,
.btn-back-rows,
.availability-btn-group>button.btn.btn-warning,
.btn.btn-secondary,
.all-places,
.available-places {
  margin: 0;
  padding: 8px 15px;
  font-weight: 600;
  background-color: #fff;
  border-radius: 0;
  border: 2px solid #000;
  color: #000;
}

#places-container>button {
  padding: 5px 15px;
}

.btn-info:hover,
.btn-back-sector:hover,
.btn-back-rows:hover,
.all-places:hover,
.available-places:hover {
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
}

.btn.btn-info:active,
.btn-back-sector:active,
.btn-back-rows:active {
  background-color: #000;
  color: #fff;
  border: 2px solid #000;
}

.btn-show-hall,
.btn-hide-hall {
  margin-bottom: 10px;
}

.availability-btn-group {
  margin-bottom: 15px;
}

#places-container .place-button.added {
  background-color: var(--primary-color);
  color: white !important;
  border-color: var(--primary-color);
}

.places-checkboxes {
  margin-top: 20px;
}

.places-label {
  margin-bottom: 10px;
  color: var(--txt-color-secondary);
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
}

.places-grid {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  flex-direction: row;
  flex-wrap: wrap;
}

.place-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.place-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.place-checkbox:disabled {
  pointer-events: none;
}

.place-label {
  font-size: 14px;
  cursor: pointer;
}

.place-checkbox:disabled+.place-label {
  color: #999;
  pointer-events: none;
}

.selects-container>.selects-txt>h3 {
  font-weight: 700;
  text-align: left;
  font-size: 17px;
}

.selects-container>.selects-txt>p {
  font-size: 15px;
  text-align: left;
}

.seat-select-flex-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: nowrap;
  margin: 20px 0;
}

.seat-select-group {
  min-width: 200px;
  margin: 0;
}

.seat-select {
  width: 100%;
}

.place-checkbox[aria-disabled="true"] {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}

.place-checkbox[aria-disabled="true"]+.place-label {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}

.visualy-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.event-poster-container:focus::after,
.event-poster-container:focus-within::after {
  content: none;
  display: none;
}

/* Tiny Devices: Phones */
@media (max-width: 767px) {
  .navigation .main-logo {
    padding: 38px 20px 35px;
  display: block;
    top: -25px;
    position: absolute;
    width: fit-content;
    background: #0903FE;
    border-radius: 50%;
    z-index: 99;
    box-shadow: 20px 15px 40px 0px rgba(0, 0, 0, 0.4);
  }
  .institution-logo-footer img {
    min-width: 200px;
    margin-top: -20px;
}
  .navigation2 .main-logo.small {
    padding: 38px 20px 30px;
    display: block;
    top: -25px;
    width: fit-content;
    background: #0903FE;
    border-radius: 50%;
    z-index: 99;
    box-shadow: 20px 15px 40px 0px rgba(0, 0, 0, 0.4);
  }

  .navigation2 .main-logo.small img {
    width: 70px;
    height: 50px;
  }

  .main-lng {
    float: left;
  }

  .layout-switcher {
    right: 0.5rem !important;
    bottom: 6rem !important;
  }

  .cart-buttons-container {
    flex-direction: column;
    gap: 15px;
  }

  .btn-continue-shopping {
    position: unset;
    margin-top: 20px;
    text-align: center;
  }

  #scrollToTopBtn {
    background-color: #fff;
    bottom: 30px;
    right: 8px;
    padding: 5px;
    border-radius: var(--radius);
    border: 1px solid #000;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  }

  #scrollToTopBtn i {
    font-size: 28px;
    margin-bottom: 0 !important;
  }

  .vertical-text {
    display: none;
  }

  .zoomed-poster {
    max-width: 95%;
    max-height: 90vh;
  }

  .cart-nav-box {
    margin-top: 6px;
    margin-right: 1rem;
  }

  .cart-nav-box span {
    font-size: 16px;
    color: #f1f1f1;
    line-height: unset !important;
    line-height: 22px !important;
  }

  #cart-added-info,
  #cart-removed-info {
    padding: 25px;
    width: 90%;
    text-align: center;
    top: 20%;
    right: 5%;
  font-size: 18px;
  }

  .main-btns-box button {
    font-size: 23px;
    line-height: 30px;
  }

  .page-title h1 {
    display: none;
  }

  #container {
    background: #fff;
  }

  .back-btn,
  .boxoffice-back-btn {
    display: inline-flex;
    justify-content: flex-end;
    min-width: unset;
    padding: 10px 20px;
    font-size: 20px;
    margin-bottom: 0;
    margin-top: 10px;
  }

  .selection-btn {
    font-size: 20px;
    min-width: unset;
  }

  .month-btn {
    font-size: 16px;
    min-width: 170px;
  }

  .nav-btn.month-nav {
    display: none;
  }

  .filter-buttons {
    flex-direction: column;
  }

  .events-category {
    margin-bottom: 45px;
    gap: 10px;
  }

  .top-repertoire-heading {
    width: 95% !important;
  }

  .top-repertoire-heading h2 {
    font-size: 22px;
  }

  .actual-date {
    font-size: 22px;
    padding-left: 0;
    text-align: right;
  }

  .header-open .back-btn,
  .header-hall .back-btn {
    margin-right: 1.5rem;
  }

  .header-products .back-btn {
    margin-right: 0;
  }

  .header-open,
  .header-hall,
  .header-boxoffice {
    padding-top: 1.5rem;
    margin-bottom: 3rem;
    width: 100%;
  display: flex;
    justify-content: flex-end;
  }

  .date-separator {
    padding: 0;
    font-size: 22px;
  }

  .no-repertoire .no-events {
    width: 90%;
    font-size: 18px;
  }

  .no-repertoire {
    margin: 0px auto 40px;
  }

  .boxoffice-time-info {
    position: unset;
    flex-wrap: wrap;
  align-items: center;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 0;
    margin-left: 5px;
}

  .navigation2 .cart-small,
  .navigation .cart-small {
  position: relative;
    float: right;
    margin-top: 5px;
    top: 7px;
    right: -15px;
  }

  .navigation2 {
    height: 53px;
  }

  .navigation2 .cart-small {
    right: 2px;
    position: fixed;
    top: 5rem;
    padding: 15px 13px 6px 12px;
  }

  .txt-info-float {
    margin-top: -20px;
  }

  .navigation .count {
    right: -5px;
    top: -13px;
    padding: 3px 9px;
    font-size: 14px;
    line-height: 25px;
  }

  .navigation {
    color: #cfd0bb;
    font-size: 10px;
    overflow: auto;
    min-height: 75px;
  display: block;
    align-content: center;
    align-items: center;
  }

  .navigation i {
    width: 41px;
    height: 45px;
  background-size: 32px;
  background-repeat: no-repeat;
  }

  .cart-date-box {
    margin-top: -40px !important;
  }

  .date-info {
    font-size: 18px;
    color: #f1f1f1;
  }

  .hall-header .term-date {
  flex-direction: column;
}

  #open .term-date .day,
  #open .event-location,
  .hall-header .term-date .day {
    font-size: 17px;
  }

  .days-container .days {
    justify-content: unset;
  }

  .repertoire-ticket-once .product-select span {
    display: block;
  }

  .date-baner {
    font-size: 24px;
    margin-top: 30px;
  }

  .repertoire-ticket-once {
  flex-direction: column;
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 1.5rem;
  }

  .repertoire-ticket-once .qbuttons {
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .main-box>div:nth-child(4)>.info-txt {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  font-size: 16px;
    text-align: center;
}

  .repertoire-box {
  margin-top: 40px;
    margin-bottom: 10px;
  }

  .event-info-box {
    position: unset;
    flex-direction: column;
    align-items: flex-start;

  }

  .event-description {
    width: 100%;
  }

  .months-selector {
    max-height: unset;
    margin: 0;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .days {
    gap: 5px;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .events-btn-buy {
    font-size: 20px;
    min-width: unset;
    margin-right: 0;
    padding: 5px;
  }

  .filter-buttons {
    flex-direction: column-reverse;
  }

  .event-item {
    justify-content: space-between;
    padding-right: 1rem !important;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border: 1px solid #c9d3da;
    width: 95% !important;
  }

  .event-item.hidden {
    margin-bottom: 0;
  }

  .event-item:last-child {
    border-bottom: 1px solid #c9d3da;
  }

  .event-group .date-box {
    font-size: 19px;
    text-align: left;
    min-width: unset;
  }

  .date-baner {
    margin-top: 0;
  }

  .event-group .date-box .date,
  .event-item .time {
    font-size: 23px;
    text-align: center;
    line-height: 35px;
  }

  .event-title-col {
    padding-right: 0;
    padding-left: 0;
  }

  .event-title {
    text-align: center;
    width: 100%;
    margin-top: 8px;
    font-size: 23px;
  }

  .event-info,
  .avlbt {
    flex-wrap: wrap;
    align-items: flex-start;
    position: unset;
    font-size: 17px;
    line-height: 23px;
  }

  .event-poster {
    max-width: none;
    width: 100%;
    height: auto;
  }

  .event-item-box,
  .pone {
    display: flex !important;
    flex-direction: column;
    /* gap: 20px; */
    padding: 0 20px 0;
  }

  .event-item.with-banner .event-buy-col,
  .event-item .event-buy-col {
    position: unset;
    background-color: #F2F6FA;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .event-item .row {
    flex-direction: column;
  }

  .event-item .col-auto {
    width: 100%;
  }

  .event-btn-col,
  .product-btn-col {
    padding: 0;
    margin-top: 10px;
    justify-content: center;
  }

  .product-btn-col {
    margin-bottom: 20px;
  }

  .event-time {
  text-align: center;
  display: flex;
  align-items: center;
  }

  .event-time .date,
  .event-time .day,
  .event-time .time {
    font-size: 26px !important;
    margin-right: 10px;
    font-weight: 500;
  }

  .event-day-col {
    margin: auto;
    border-bottom: 1px solid var(--txt-color-secondary);
    margin-bottom: 10px;
    padding-top: 25px;
  }

  .event-title-col .event-description span,
  .event-title-col .event-description div {
    font-size: 18px !important;
    line-height: 22px;
  }

  .expand-btn,
  .card-body .expand-btn {
    padding: 7px;
    max-width: 45%;
  font-size: 16px;
  font-weight: 500;
    margin-top: 15px;
    margin-bottom: 5px;
  }

  .btn-buy {
    min-width: 300px;
    font-size: 22px;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .event-card {
    flex-direction: column;
    padding: 1rem 1rem 2rem 1rem;
    border: 1px solid #c9d3da;
  }

  .event-card .event-title,
  .card-body .event-title {
    min-height: unset;
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .event-card .event-image {
    width: 100%;
  }

  .card .event-image>img {
    max-width: 100%;
  }

  .event-card .event-button {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 22px;
    padding: 15px;
  }

  .event-header {
    margin-block-end: 0;
  }

  .product-select>div>div.button.product.minus.pbtn,
  .product-select>div>div.button.product.plus.pbtn {
    width: 45px;
    height: 45px;
  }

  .products>.pone>div>.product.pbtn {
    margin: 20px 0 15px;
  }

  input.qfield {
    width: 55px;
    font-size: 22px;
  }

  .repertoire-ticket-once {
    min-height: 220px;
  }

  .product-description {
    font-size: 16px;
    bottom: 1.5rem;
    top: unset;
    width: 88%;
  }

  #sb_cart .cart_info {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .cart_info .count,
  .cart_info .worth,
  .cart_info .pieces,
  .cart_info .decor-line,
  .cart_info .currency-value {
  font-size: 20px;
    font-weight: 500;
  }

  .header-tickets-open {
    margin-top: 35px;
    margin-bottom: 15px;
  }

  p.term-date {
    margin-bottom: -10px;
  }
  .btn-text-availability {
    margin-top: 20px !important;
}
  .cart_buy_button_inactive,
  .cart_buy_button {
    font-size: 16px;
    /* width: 100%; */
    /* padding: 20px 15px; */
  }

  .cart-buttons-container .btn-continue-shopping {
    width: 100%;
  text-align: center;
  }

  .cart-buttons-container #cart_buy_button {
    width: 100%;
  }

  .cart-product-once .remove,
  .boxoffice-details-once .ticket-remove {
    display: flex;
    right: 10px;
    bottom: 1.5rem;
    flex-direction: column;
    font-size: 0;
    background-size: 30px;
    height: 31px;
    width: 40px !important;
  }
  .swal2-cancel.swal2-styled {
    width: 90%;
  }
  .cart_buy_button_inactive {
    /* background: #e7e7e7 !important; */
    color: #b7b7b7 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    border: none !important;
    /* margin-bottom: 105px; */
    /* padding: 30px; */
  }

  #cart_section>div.button.cart_buy_button_inactive>div>img,
  #cart_buy_button>a>img {
    width: 22px;
  }

  #container .back-btn>img {
    width: 15px;
  }

  #cart_buy_button {
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .basket-btns {
    width: 100%;
    top: 110px;
    right: 0;
    flex-direction: column;
    align-items: center;
  }

  .continue-shopping {
    font-size: 20px;
    padding: 10px;
    width: 320px;
    margin-bottom: 8px;
  }

  .continue-shopping-sec {
    margin-top: 105px;
    right: 0;
    margin-right: 0;
    padding: 15px !important;
  }

  .continue-shopping,
  .continue-shopping-sec {
  width: 100%;
    font-size: 18px;
  }

  .inactive-btn-cart {
    font-size: 18px;
    width: 100%;
    min-width: 327px;
    padding: 15px;
    margin: 0;
  }

  .details_content {
    padding: 0;
  }

  #cart_section {
    display: block;
  }

  .cart-product-once {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 1rem 1.5rem;
    max-height: fit-content;
  }

  .cart-product-once .pname {
    padding-left: 0px;
  text-align: left;
    width: 90%;
  }

  .cart-product-once>.pname,
  .cart-product-once>.title,
  .cart-product-once>.place {
    font-size: 17px;
    line-height: 25px;
    padding-left: 0;
  }

  .cart-product-once>.pcount {
  margin-top: 10px;
  }

  .cart-product-once>.pprice,
  .cart-product-once>.pcount {
    position: unset !important;
    font-size: 19px;
    font-weight: 600;
    line-height: 25px;
    padding-left: 0;
  }

  .cart-product-once>.remove>img,
  .ticket-remove>div>img {
    margin-right: 0px !important;
    width: 27px;
  }

  .products {
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 0 1.5rem 3rem;
  }

  .products-box h5 {
    margin-top: 70px !important;
    margin-bottom: 30px;
  }

  .product-title {
    text-align: center;
  }

  .pbox {
    flex-direction: column;
    align-items: center;
  }

  .pone {
    flex-direction: column;
    align-items: center;
    border: 1px solid #c9d3da !important;
    margin-bottom: 20px !important;
  }

  .pone>.product-image {
    margin-top: 20px;
  }

  .pname {
    padding-left: 0;
  text-align: center;
}

  .product-price-col {
    font-size: 24px;
  }

  .pdesc {
    min-height: unset;
    overflow: hidden;
    font-size: 18px;
    padding-right: 0;
  }

  .hall-header {
    padding: 0 1.5rem 0;
    flex-direction: column;
  }

  #open .event-title,
  .hall-header .event-title {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .boxoffice-header {
    flex-direction: column;
  }

  .hall-box {
    max-height: 400px;
    min-height: 400px;
    margin-top: 0 !important;
    margin-left: 4%;
    margin-right: 4%;
    padding: 0;
    overflow: hidden !important;
  }

  #text-hall {
    margin-bottom: 20px;
  }

  #hall {
    width: unset;
    max-height: 380px;
    top: 40px;
  }

  .hall div {
    left: -165px !important;
    width: 800px !important;
    top: -100px !important;
    transform: scale(0.65);
    overflow: hidden;
  }

  .box-buy-btn {
  display: flex;
    justify-content: center;
  }

  .button-submit {
    font-size: 20px;
    min-width: 90%;
  }

  .discount-info-txt {
    font-size: 16px;
    padding: 15px 0 15px;
  }

  .discount-info-txt>i {
    margin-left: 0;
    padding-right: 5px;
    padding-left: 0;
  }

  .btn-text-availability {
    font-size: 13px;
  }

  #legend {
    flex-wrap: wrap;
    width: 90%;
    padding: 15px 0;
  }

  .legend-item {
    min-width: calc(50% - 1rem);
  }

  #legend_section>h3 {
    margin-top: 10px;
    margin-bottom: 20px;
    padding-left: 0;
  }

  .legend-container {
    gap: 1rem;
    padding-left: 0;
  }

  .legend_product {
    display: block;
    width: fit-content;
    margin-top: -2px;
    margin-left: 10px;
    margin-right: 30px;
  }

  .legend_product.discount-product {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .legend_product.discount-product-txt {
    margin: 0;
  }

  #legend_section .elements_line div {
    margin-top: -2px;
    margin-left: 24px !important;
    text-transform: capitalize;
  }

  #legend_section {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
  }

  .legend-txt-info p,
  .legend-name,
  .legend-price {
    font-size: 15px;
    line-height: 21px;
  }

  #legend_section .elements_line,
  #discount_section .elements_line {
    width: 15px;
    height: 15px;
    margin: 0;
    -webkit-border-radius: 0px;
    -khtml-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0;
  }

  #open h2,
  .hall-info-txt h2 {
    font-size: 18px !important;
  }

  #open .event-title span,
  .hall-header .event-title span {
    font-size: 22px;
    margin-bottom: 5px;
  display: block;
  }

  .hall-header .event-title h1 {
    font-size: 28px;
  }

  #open .repertoire-ticket-once .product-name {
    justify-content: center;
    flex-direction: column;
  }

  #open .product-price {
    text-align: center;
  }

  #open>div>h1,
  .hall-info-txt h1 {
    font-size: 13px !important;
    padding-left: 0;
  }

  .hall-info-txt h1 {
    margin: 0 1.5rem 20px;
  }

  .boxoffice-heading>h1,
  .boxoffice-payment-box h4,
  .boxoffice-pcode-box h4,
  .boxoffice-delivery-box h4,
  .user-heading>h3,
  .regulations-heading>h3,
  .invoice-heading>h3 {
    font-size: 22px !important;
    margin-bottom: 30px !important;
  }

  .regulations-heading>h3,
  .invoice-heading>h3 {
    margin-bottom: 30px !important;
  }

  .summary-heading>h3 {
    font-size: 24px !important;
  }

  .boxoffice-pcode-box,
  .boxoffice-payment-box {
    margin-top: 25px;
  }

  #open>.repertoire-ticket-once>.product-name {
    font-size: 22px;
    text-align: center;
    font-weight: 500;
  }

  .boxoffice-ticket-details,
  .repertoire-ticket-once .product-place {
    font-size: 18px;
    padding-left: 0;
  }

  #open>.repertoire-ticket-once>.product-price {
    font-size: 23px;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .cart-product-once .fa-times-circle {
    font-size: 30px;
  }

  .boxoffice-details-once {
    align-items: flex-start;
  justify-content: center;
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 8px;
    transition: padding-bottom 0.4s ease;
  }

  .boxoffice-details>div>.ticket-price {
    padding-left: 0;
  }

  .boxoffice-details>div>.ticket-price-col {
    flex-direction: column;
  align-items: flex-start;
    gap: 8px;
  }

  .boxoffice-details>div>.ticket-price,
  .boxoffice-details>div>.ticket-name,
  .boxoffice-details>div>.ticket-name>strong,
  .boxoffice-details>div>.ticket-qt-boxoffice,
  .boxoffice-details>div>.ticket-price-col {
    font-size: 17px;
    line-height: 25px;
    text-align: left;
  }

  .col-discount,
  .custom-dropdown {
    min-width: unset !important;
  }

  .custom-dropdown {
    width: unset;
  }

  .boxoffice-details>div>.ticket-remove>div {
    font-size: 0;
    margin-top: 10px;
    right: 25px;
    flex-direction: column;
  }

  .boxoffice-details .position-title {
    margin-bottom: 10px !important;
    font-size: 18px;
    margin-top: 25px;
  }

  .ticket-details {
    font-size: 13px;
  }

  .boxoffice-details-once .fa-times-circle {
    font-size: 40px;
    margin: 10px auto;
  }

  .position-title>strong {
    display: block;
  }

  .summary-cart-boxoffice {
    margin-top: 25px;
    padding-bottom: 30px;
    font-size: 20px;
    flex-direction: column;
    align-items: flex-end;
  }

  #summary-box>div,
  .summary-final {
    justify-content: space-between;
  }

  .summary-tickets.summary-tr,
  .summary-tickets-val.summary-td,
  .buy.summary-delivery.summary-tr,
  .buy.summary-delivery-val.summary-td,
  .buy.summary-payment.summary-tr,
  .buy.summary-payment-val.summary-td,
  .summary-final>div,
  #cart_summary {
    font-size: 21px;
  }

  .summary-final div,
  #cart_summary {
    font-size: 25px;
    text-transform: uppercase;
  }

  .radio-box-set {
    flex-direction: column;
    padding: 0rem 1.5rem 1.5rem;
  }

  .boxoffice-user-box {
    margin-right: 0;
    padding-bottom: 0;
  }

  .boxoffice-pcode-box .name {
    display: flex;
    justify-content: center;
  }

  #add-promo-code {
    width: 90%;
    font-size: 18px;
    padding: 12px;
  }

  .user-heading>h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    margin-bottom: 15px !important;
  }

  .footer .institution-logo {
    display: flex;
    align-items: flex-start;
    padding-top: 15px;
  }

  .footer .system-info {
  text-align: center;
  }

  .cart-area {
    width: 100%;
    margin-top: 3vh;
    padding: 0rem 0.5rem;
    min-height: 400px;
}

  .summary-heading>h1 {
    font-size: 22px !important;
    margin-bottom: 25px;
  }

  .row {
    margin-right: 0px !important;
    margin-left: 0px !important;
  }

  #form-error {
    padding: unset !important;
  }

  .validate_err {
    font-size: 15px;
    padding-left: 0;
  }

  .pcinfoerror {
    font-size: 15px;
    bottom: 60px;
  }

  label.invoice-label,
  label.invoice-priv-label {
    padding-left: 10px !important;
  }

  .invoice-form-row .error-icon {
    right: 10px;
  }

  .regulations-form-element {
    flex-wrap: unset !important;
    width: 95%;
    align-items: flex-start;
  }

  label.regulations-form-label {
    padding-left: 0 !important;
  }

  .zoom-box .fas {
    font-size: 50px;
  }

  .zoom-box {
    background-color: #fff;
    height: 43px;
    position: unset;
    top: unset !important;
    bottom: 0;
    right: 0;
    margin: 0px;
    display: flex;
    width: 100% !important;
    flex-direction: row-reverse;
    justify-content: center;
  }

  #default-scale-hall {
    margin: 0 10px;
  }

  .input-visible {
    position: relative;
    left: -65px;
    display: block !important;
  }

  .link>a>img {
    right: 25%;
    top: 4px;
  }

  .invoice_row .invoice-form-row {
    padding-left: 0;
    padding-right: 0;
  }

  .navigation img {
    width: 75px;
    height: auto;
  }

  .navigation2 .count {
    position: relative;
    left: 14px;
    top: -40px;
    padding: 2px 8px;
  }

  .navigation2 i {
    background-size: 26px;
    margin-top: 5px;
    background-repeat: no-repeat;
  }

  .cart-date-nav {
    margin-left: 25px;
    margin-right: -10px;
  }

  #calendar {
    margin-bottom: 5%;
    padding: 10px 0;
  }

  .heading-calendar>h1 {
    font-size: 22px !important;
    font-weight: 700;
    margin-bottom: 0;
  }

  .month-title {
    font-size: 21px;
  }

  .calendar-body {
    padding: 6rem 1.5rem 2rem;
    max-width: 380px;
    margin-left: 25px !important;
    transform: unset !important;
  }

  .calendar .calendar-day {
    width: 47px;
    height: 47px;
    float: left;
  cursor: pointer;
    border-right: 1px solid #d5d4df;
    border-bottom: 1px solid #d5d4df;
    text-align: center;
  }

  .calendar-strip {
    display: block;
    padding: 0px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 250px;
    opacity: 1;
    margin-top: 1rem;
    margin-bottom: 0;
    overflow: unset;
  }

  .days-container {
    margin-bottom: 0;
  }

  .event-group,
  .event-group.active {
    font-size: 18px;
  }

  .cart-empty-info .cart-small {
    margin: 40% auto 0;
  }

  #cart_section .cart_buy_button {
    margin: 15px auto 50px;
  }

  .cart_buy_button {
    margin: 0px auto 50px;
    padding: 15px 50px;
    font-size: 19px !important;
    width: 100%;
  }

  .empty-back {
    width: 70%;
    text-align: center;
  }

  .cart-empty-info .fa-shopping-cart {
    color: #000;
    font-size: 140px;
    margin: 20px auto;
  }

  .cart-empty-info .count {
    position: relative;
    left: -40px;
    top: -90px;
    background: red;
    color: #fff;
    font-size: 42px;
    padding: 3px 22px;
    -webkit-border-radius: 25px;
    -khtml-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 50px;
  }

  .repertoire-ticket-once .product-select {
    justify-content: center;
    align-items: center;
  }

  #cart_buy_button>a>img,
  #sb_cart_buy_button>img {
    margin-left: 10px;
    width: 22px;
  }

  .main-message h1 {
    font-size: 34px !important;
  }

  .main-message>.success-icon>img,
  .error-icon>img {
    width: 40%;
  }

  .btn-back-home {
    width: unset;
    height: auto;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .statement {
    padding: 40px 20px 20px !important;
    margin: 20% 1.5rem 1rem !important;
  }

  .back-btn-reservation {
    margin-left: 0;
    margin-top: 10px;
  }

  #form-error .check-rules,
  #form-error .check-rules,
  #form-error>fieldset:nth-child(5)>div>div>div.regulations-form-element.no-border.row>div {
    padding: 0;
  }

  .dropdown-button {
    width: unset;
    margin: 0 10px;
  }

  .dropdown-content div {
    padding: 15px;
  }

  .dropdown-content {
    left: 0;
    width: 95%;
    padding-top: 5px !important;
    margin-bottom: 10px;
    z-index: 99;
  }

  .pass-box>.dropdown>.dropdown-button {
    border-bottom: unset !important;
    margin: 0 10px 0 0;
  }

  .pass-box>.dropdown>.dropdown-button>span {
    width: 5px;
    height: 10px;
    background-size: 10px;
    margin-left: 5px;
    margin-right: 10px;
    padding: 5px;
    margin-top: 2px;
  }

  .pass-box .dropdown-content>div>label {
    margin-left: -10px;
    padding: 2px 10px;
  }

  .pass-code-details {
    max-width: 100px;
    margin-right: 15px;
  }

  .messages-text {
    font-size: 24px;
    text-align: center;
    line-height: 1.3;
  }

  #info_section img {
    width: 120px;
  }

  .event-image {
    aspect-ratio: 16/9;
  }

  .list-group-item {
    gap: 1rem;
    padding: 1.25rem;
  }

  .date-box,
  .time {
    font-size: 1.375rem;
  }

  .button-group {
    width: 100%;
    justify-content: stretch;
  }

  .button-group .btn {
    flex: 1;
  }

  .seat-select {
  width: 80%;
    padding: 15px;
    font-weight: 500;
    font-size: 20px;
  }

  .seat-select-container {
    margin: 0 auto 15px !important;
  }

  .event-poster-container,
  .events-list-grid .event-image {
    display: flex;
    justify-content: center;
    background: none;
  }

  .event-image-box {
    display: flex;
    justify-content: center;
  }

  .event-image-box {
    display: flex;
    justify-content: center;
  }

  .event-poster,
  .event-image img {
    margin-top: 15px;
    margin-bottom: 15px;
    max-width: 75%;
    width: 100%;
    height: auto;
  }

  .card .event-image img {
    margin-top: 0;
  }

  .selects-container {
    padding: 1rem;
  }

  .modal-content {
    margin: 50% auto;
    width: 90% !important;
  }

  .btn-add-voucher,
  .btn-cancel-voucher {
    padding: 10px 15px;
    min-width: 150px;
  }
}

/* Small Devices: Tablets */
@media (min-width: 768px) and (max-width: 1023px) {
  .navigation {
    min-height: unset;
  }

  #calendar {
    display: flex;
    width: 87%;
    position: absolute;
    top: 305px;
    left: 60px;
  }

  .repertoire-list-events {
    margin-top: 40px;
  }

  .repertoire-filters-box {
    display: flex;
    justify-content: space-between;
    padding: 35px 0 15px;
  }

  .calendar-strip {
    display: flex !important;
    max-width: 55%;
    flex-direction: column;
  }

  .filter-buttons {
    margin: 0 !important;
    padding: 0 !important;
    flex-direction: column;
  }

  .filter-buttons {
    flex-direction: column-reverse;
    justify-content: flex-end;
  }

  .months-selector {
    flex-direction: column;
    max-height: fit-content;
  align-items: center;
  }

  .selection-btn,
  .month-btn {
    font-size: 20px;
    max-width: fit-content;
    min-width: 340px;
  }

  .days-container .days {
    justify-content: unset;
  }

  .navigation h1 {
    font-size: 28px;
  }

  .cart-nav-box {
  margin-top: 10px;
    margin-right: -10px;
  }

  .cart-nav-box span {
    font-size: 20px;
    line-height: 26px !important;
  }

  .cart-empty-info .cart-small {
    margin: 15% auto 0;
  }

  .main-logo {
    margin: 12px 0;
    float: left;
  }

  .header-open,
  .header-hall,
  .header-products {
    padding-top: 6.5rem;
    margin-bottom: 3rem;
  }

  .events-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .event-card .event-image {
    width: inherit;
  }

  .event-content {
    padding: 0 15px 0 20px;
  }

  .boxoffice-back {
    padding-top: 5rem;
    margin-bottom: 3rem;
  }

  .hall-header {
    padding: 0 2rem;
  }

  #container .back-btn {
    margin-bottom: 0;
  }

  .navigation .cart-small {
    margin-top: 15px;
    margin-right: 5%;
  }

  .event-item-box {
    justify-content: center;
    flex-wrap: wrap;
  }

  .event-item-box .event-title-col {
    padding-right: 15px;
  }

  .event-poster {
    max-width: 150px;
  }

  .event-title-col>.event-description span,
  .event-title-col>.event-description>div,
  .card-body .event-description div,
  .card-body .event-description span {
    font-size: 18px !important;
    line-height: 30px;
  }

  .event-title {
    font-size: 28px;
    line-height: 28px;
  }

  .expand-btn {
    font-size: 18px;
  }

  .btn-buy {
  font-size: 20px;
    margin-top: 35px;
    margin-bottom: 35px;
    min-width: unset;
  }

  .cart-buttons-container {
    flex-direction: column;
    gap: 15px;
  }

  .cart_buy_button,
  .inactive-btn-cart {
    font-size: 22px;
    min-width: unset;
  width: 100%;
    padding: 13px 25px;
  }

  a.btn-continue {
    font-size: 22px;
  }

  .pbtn {
    width: 60px;
    height: 48px;
  }

  .plus.pbtn {
    font-size: 46px;
  }

  .minus.pbtn {
    font-size: 60px;
  }

  .cart-buttons-container .btn-continue-shopping {
  width: 100%;
    text-align: center;
  }



  #open .event-title,
  .hall-header .event-title {
  flex-direction: column;
    align-items: unset;
  }

  #container>div.header-tickets-open>div>a>div {
    margin-top: 65px;
  }

  #container>div.header-boxoffice>div>a>div {
    margin-top: 65px;
  }

  .date-separator {
    margin: auto;
  padding: 0;
}

  .repertoire-box {
    left: unset !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .navigation img {
    width: 150px;
    height: auto;
  }

  .navigation2 {
    height: unset;
  }

  .navigation2 .count {
    top: 18px;
  }

  .navigation i {
    background-size: 32px;
    background-repeat: no-repeat;
  }

  .navigation .count {
    right: -7px;
    top: -15px;
    padding: 1px 10px;
    font-size: 15px;
  }

  .main-box {
    flex-direction: column;
  }

  .link>a>img {
    right: 15%;
    top: 4px;
  }

  .calendar-body {
    max-width: 545px;
    transform: unset !important;
    margin-right: auto !important;
  }

  #open>.repertoire-ticket-once>.product-name {
    font-size: 19px;
    overflow: hidden;
  }

  .tooltiptext {
    font-size: 15px;
  }

  .boxoffice-ticket-details,
  .repertoire-ticket-once .product-place {
    font-size: 18px;
    padding-left: 0;
  }

  .hall-info-txt h1 {
    margin: 0 2rem 40px;
  }

  #legend_section {
  display: flex;
  flex-direction: column;
    width: 90%;
    margin-top: 10px;
  }

  #legend {
    flex-wrap: wrap;
    width: 90%;
  }

  #discount_section,
  .discount-info-txt {
    padding: 0 2rem;
  }

  .discount-info-txt {
    margin-bottom: 40px;
  }

  .header-products .back-btn {
    margin-right: 0;
  }

  .product-description {
    font-size: 16px;
    padding-right: 30px;
  }

  .main-box>div:nth-child(4)>.info-txt {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .cart-product-once .pname,
  .cart-product-once .pprice,
  .cart-product-once .title,
  .cart-product-once .pcount,
  .cart-product-once .title .title-event {
  font-size: 20px;
  }

  .cart-product-once {
    padding-bottom: 35px;
    padding-top: 35px;
  }

  .cart-product-once .pname {
    overflow: hidden;
  }

  .cart-product-once .title {
    padding-left: 20px;
  }

  .cart-product-once .remove {
    right: 0.25rem;
    font-size: 0;
  }

  .cart-product-once>.remove>img {
    width: 22px;
  }

  .repertoire-ticket-once .product-select span {
    display: block;
  }

  .repertoire-ticket-once {
    padding: 30px 30px;
    margin: 10px;
    min-height: 150px;
  }

  #open>.repertoire-ticket-once>.product-price {
    font-size: 22px;
  }

  .cart-product-once .fa-times-circle {
    font-size: 30px;
  }

  .product-select>div>div.button.product.minus.pbtn,
  .button.product.plus.pbtn.btn-effect {
    height: 50px;
    width: 50px;
  }

  .prod-image>img {
    height: 150px;
    width: 160px;
    background-size: contain !important;
    max-height: auto;
  }

  .pdesc {
    min-height: 135px;
    font-size: 18px;
    margin-top: 5px;
    padding-right: 30px;
  }

  .products>.pone .pname,
  .products .product-price {
    font-size: 24px;
  }

  .products>.pone>div>.product.pbtn {
    width: 210px;
    margin-left: 40px;
    font-size: 15px;
  }

  input.qfield {
    width: 60px;
  }

  .zoom-box .fas {
    font-size: 60px;
  }

  .zoom-box {
    position: relative;
    top: -190px;
    right: 80px;
    float: left;
  }

  .hall div {
    transform: scale(0.7);
    left: 0px !important;
    overflow: hidden;
    top: -60px !important;
  }

  .hall-box {
    max-height: 450px;
    min-height: 450px;
    margin: -40px 0 0 0 !important;
    padding: 0;
    overflow: hidden !important;
  }

  #legend_section {
    margin: 20px auto;
  }

  /* .UserInfo {
    width: 90% !important;
  } */

  .input-visible {
    position: relative;
    left: -95px;
    display: block !important;
  }

  .cart-date-nav {
    margin-left: 30px;
    margin-top: -5px;
  }

  .heading-calendar>h1 {
    font-size: 28px !important;
  }

  .calendar .calendar-day {
    width: 60px;
    height: 60px;
  }

  #calendar {
    margin-bottom: 15%;
  }

  .month-title {
    font-size: 22px;
  }

  .week-day {
    width: 60px;
    height: 60px;
  }


  .boxoffice-time-info {
    top: -15px;
    font-size: 18px;
  }

  .time-icon {
    width: 18px;
    height: 23px;
  }

  .back-btn,
  .boxoffice-back-btn {
    display: inline-block;
    min-width: unset;
    padding: 10px 20px;
    font-size: 20px;
  }

  .boxoffice-buy-box {
    padding: 40px 30px 45px;
  }

  .radio-box-set {
    padding: 1rem 2.5rem 1rem;
    flex-direction: column;
  }

  .boxoffice-details>div>.ticket-price,
  .boxoffice-details>div>.ticket-name,
  .boxoffice-details>div>.ticket-name>strong,
  .boxoffice-details>div>.ticket-remove>div,
  .boxoffice-details .ticket-qt-boxoffice,
  .boxoffice-details>div>.ticket-price-col {
    font-size: 18px;
  }

  .position-title>strong {
    display: block;
  }

  .boxoffice-details>div>.ticket-remove>div {
    font-size: 0;
  }

  .boxoffice-details-once {
    transition: padding-bottom 0.4s ease;
    padding: 25px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .boxoffice-details>div>.ticket-remove>div>img {
    margin-right: -6px;
    width: 22px;
  }

  .boxoffice-details-once .ticket-remove {
    bottom: 20px;
    right: 30px;

  }

  .boxoffice .buy-float {
    position: unset;
    margin: auto;
  }

  .summary-cart-boxoffice {
    font-size: 24px;
  }

  #add-promo-code {
    padding: 5px;
    width: 230px;
    font-size: 18px;
  }

  .dropdown-button {
    width: 100%;
  }

  .dropdown-content {
    left: 15px;
    padding-top: 8px;
  }

  .button-submit {
    font-size: 22px;
    padding: 15px;
  }

  .pass-code-details {
    max-width: 130px;
  }
}

/* Małe laptopy */
@media (min-width: 1024px) and (max-width: 1365px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-image img {
    max-width: 200px;
  }

  .event-button {
    padding: 10px;
  font-size: 18px;
  }

  .event-content {
    padding: 0 0px 0 15px;
  }

  .event-card .event-image {
    width: 44%;
    flex-shrink: 0;
  }
}

/* Standardowe laptopy i desktopy */
@media (min-width: 1366px) and (max-width: 1919px) {}

/* 2K i większe monitory */
@media (min-width: 1920px) and (max-width: 2559px) {}

/* 4K i większe */
@media (min-width: 2560px) {}

@media (min-width: 640px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 90% !important;
  }
}

@media (prefers-reduced-motion: reduce) {

  .selection-btn,
  .btn-buy,
  .list-group-item,
  .selection-btn,
  .event-button,
  .letter-filter a {
    transition: none;
  }
}