/*@color-hi-top:    #7ab1c9;*/
/*@bot-height:      110px;*/
.ticket {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  font-family: 'Glober', sans-serif;
  align-items: start;
}
@media (max-width: 1090px) {
  .ticket {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 750px) {
  .ticket {
    grid-template-columns: 1fr;
  }
}
.ticket-card {
  border-radius: 0;
  position: relative;
  --reveal-inset: 66.67%;
}
@media (max-width: 1090px) {
  .ticket-card {
    --reveal-inset: 50%;
  }
}
@media (max-width: 750px) {
  .ticket-card {
    --reveal-inset: 0%;
  }
}
.ticket-card--open {
  grid-column: 1 / -1;
}
.ticket-card--open .ticket-card__bot {
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}
.ticket-card--open .ticket-card__panel {
  grid-template-rows: 1fr;
}
.ticket-card--open:not(:has(.ticket-card__panel)) .ticket-card__top {
  border-radius: 0;
}
.ticket-card--closing {
  grid-column: 1 / -1;
}
.ticket-card--closing .ticket-card__bot {
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}
.ticket-card--closing .ticket-card__panel {
  grid-template-rows: 0fr;
}
.ticket-card--closing:not(:has(.ticket-card__panel)) .ticket-card__top {
  border-radius: 0;
}
.ticket-card--standard .ticket-card__top {
  background-color: #bda086;
}
.ticket-card--standard .ticket-card__bot {
  background-color: #AC8868;
}
.ticket-card--standard .ticket-card__panel-body .ticket-card__btn {
  /*background-color: @bot;*/
}
.ticket-card--highlight .ticket-card__top {
  background-color: rgba(89, 157, 187, 0.8);
}
.ticket-card--highlight .ticket-card__bot {
  background-color: #599dbb;
}
.ticket-card--highlight .ticket-card__panel-body .ticket-card__btn {
  /*background-color: @bot;*/
}
.ticket-card--secondary .ticket-card__top {
  background-color: rgba(220, 221, 222, 0.8);
}
.ticket-card--secondary .ticket-card__bot {
  background-color: #DCDDDE;
}
.ticket-card--secondary .ticket-card__panel-body .ticket-card__btn {
  /*background-color: @bot;*/
}
.ticket-card--purple .ticket-card__top {
  background-color: rgba(220, 221, 222, 0.8);
}
.ticket-card--purple .ticket-card__bot {
  background-color: #DCDDDE;
}
.ticket-card--purple .ticket-card__panel-body .ticket-card__btn {
  /*background-color: @bot;*/
}
.ticket-card--purple .ticket-card__top,
.ticket-card--purple .ticket-card__bot {
  background-image: repeating-linear-gradient(136deg, rgba(255, 255, 255, 0.3) 0, rgba(255, 255, 255, 0.3) 17px, transparent 7px, transparent 32px);
}
.ticket-card--purple .ticket-card__top {
  background-position-x: 10px;
  background-size: 600px 600px;
}
.ticket-card__toggle {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  border-radius: 10px 10px 0 0;
}
.ticket-card__toggle:hover .ticket-card__top {
  filter: brightness(1.07);
}
.ticket-card__toggle:focus-visible {
  outline: 3px solid rgba(160, 128, 96, 0.55);
  outline-offset: 2px;
  border-radius: 10px 10px 0 0;
}
.ticket-card__toggle:focus {
  border-radius: 10px;
}
.ticket-card--open .ticket-card__toggle,
.ticket-card--closing .ticket-card__toggle {
  cursor: default;
}
.ticket-card__top {
  padding: 14px 15px 6px;
  height: 99px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
  border-radius: 10px 10px 0 0;
  transition: border-radius 420ms cubic-bezier(0.4, 0, 0.2, 1), filter 0.2s ease;
}
.ticket-card__bot {
  border-radius: 0 0 10px 10px;
  padding: 10px 15px 10px;
  height: 38px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  transition: height 420ms cubic-bezier(0.4, 0, 0.2, 1), padding 420ms cubic-bezier(0.4, 0, 0.2, 1), opacity 231ms cubic-bezier(0.4, 0, 0.2, 1);
}
.ticket-card__name-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  min-width: 0;
}
.ticket-card__name {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
  min-width: 0;
}
.ticket-card--secondary .ticket-card__name,
.ticket-card--purple .ticket-card__name {
  color: #5a5a5a;
}
.ticket-card__badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  opacity: 1;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticket-card--secondary .ticket-card__badge,
.ticket-card--purple .ticket-card__badge {
  color: #5a5a5a;
}
.ticket-card__price {
  display: inline-block;
  font-size: 45px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 100%;
  margin-top: 4px;
}
.ticket-card--secondary .ticket-card__price,
.ticket-card--purple .ticket-card__price {
  color: #5a5a5a;
}
.ticket-card__validity {
  display: block;
  font-size: 13px;
  color: #fff;
  line-height: 1.5;
}
.ticket-card__validity p {
  margin: 0;
}
.ticket-card__validity p + p {
  margin-top: 6px;
}
.ticket-card--secondary .ticket-card__validity,
.ticket-card--purple .ticket-card__validity {
  color: #5a5a5a;
}
.ticket-card__close {
  display: none;
}
.ticket-card__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 420ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  margin: 0;
}
.ticket-card__panel-inner {
  overflow: hidden;
  min-height: 0;
}
.ticket-card__panel-body {
  background: #ffffff;
  /*    border: 1px solid @color-panel-border;
    border-top: none;*/
  border-radius: 0 0 10px 10px;
  padding: 19px 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}
.ticket-card__detail {
  width: 66.66%;
  flex: none;
  font-size: 13.5px;
  line-height: 1.7;
  color: #323232;
  font-family: 'Glober', sans-serif;
  /*p  { margin: 0 0 6px; }*/
}
@media (max-width: 900px) {
  .ticket-card__detail {
    width: 100%;
  }
}
.ticket-card__detail ul {
  margin: 4px 0 8px;
  padding-left: 0px;
  list-style-type: none;
  margin-top: 0;
}
.ticket-card__detail li {
  margin-bottom: 4px;
}
.ticket-card__detail li:before {
  content: '';
  position: absolute;
  left: 0px;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 2px;
  background: #5a5a5a;
}
.ticket-card__detail strong {
  font-weight: 700;
}
.ticket-card__cta {
  width: auto;
}
.ticket-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  color: #323232;
  white-space: nowrap;
  transition: filter 0.18s, transform 0.12s;
  padding: 0;
}
.ticket-card__btn:hover {
  /*filter: brightness(1.1);*/
  /*transform: translateY(-1px);*/
}
.ticket-card__btn:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.35);
  outline-offset: 2px;
}
.ticket-card--secondary .ticket-card__btn {
  color: #5a5a5a;
  background: none;
}
.ticket-card--purple .ticket-card__btn {
  color: #5a5a5a;
  background: none;
}
@media (max-width: 560px) {
  .ticket-card__btn {
    width: 100%;
    justify-content: center;
  }
}
.ticket-card__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}
.ticket-card__btn-img {
  display: block;
  width: auto;
  height: 27px;
  /*border-radius: 5px;*/
  /*transition: transform .18s ease;*/
  transition: box-shadow 0.15s ease-in-out;
}
.ticket-card__btn:hover .ticket-card__btn-img {
  /*transform: scale(1.12);*/
  box-shadow: 0 0 5px #5a5a5a;
}
.ticket-card__btn-text {
  display: inline-block;
  margin-bottom: 0px;
  margin-top: 0;
  font-size: 16px;
  font-weight: bold;
}
.ticket-card__btn:hover .ticket-card__btn-text {
  text-decoration: underline;
  color: #323232;
}
.ticket-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 110px;
  height: 110px;
  pointer-events: none;
}
.ticket-badge svg {
  display: block;
  width: 100%;
  height: 100%;
}
.ticket-card--reveal .ticket-card__top {
  animation: tnReveal 420ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.ticket-card--unreveal .ticket-card__top {
  animation: tnUnreveal 420ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes tnReveal {
  from {
    clip-path: inset(0 var(--reveal-inset) 0 0 round 0);
  }
  to {
    clip-path: inset(0 0% 0 0 round 0);
  }
}
@keyframes tnUnreveal {
  from {
    clip-path: inset(0 0% 0 0 round 0);
  }
  to {
    clip-path: inset(0 var(--reveal-inset) 0 0 round 0);
  }
}
.righttop-button a {
  text-decoration: none;
  color: #5a5a5a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.righttop-button p {
  font-weight: 700;
  font-size: 13px;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: unset;
}
