:root {
  --dark-gray: #1d1d1b;
  --red: #e30613;
}

.body {
  color: #1d1d1b;
  background-color: #f7f7f7;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5em;
}

.header {
  background-color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
}

.content {
  padding-top: 40px;
  padding-bottom: 60px;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.container.small {
  max-width: 820px;
}

.container.small.custom {
  max-width: 760px;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
}

.header-inner-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.logo-link {
  margin-right: 20px;
}

.logo-text {
  color: #333;
  font-size: 24px;
  font-weight: 600;
}

.logo {
  align-items: center;
  display: flex;
}

.header-text {
  color: #333;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5em;
}

.content-inner-wrapper {
  display: flex;
}

.left-panel {
  width: 150px;
  max-width: 150px;
  min-width: 150px;
  flex: none;
}

.content-main {
  flex: 1;
  position: relative;
}

.menu-list {
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.menu-list-item {
  margin-bottom: 20px;
  display: block;
}

.menu-list-item-link {
  color: var(--dark-gray);
  text-decoration: none;
}

.menu-list-item-link:hover {
  text-decoration: underline;
}

.menu-list-item-link.w--current, .menu-list-item-link.active {
  font-weight: 600;
}

.button-primary {
  color: #fff;
  white-space: nowrap;
  background-color: #3c3c3c;
  border: 1px solid #3c3c3c;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1em;
  text-decoration: none;
  transition: all .3s cubic-bezier(.215, .61, .355, 1);
  display: inline-block;
}

.button-primary:hover {
  background-color: #000;
  border-color: #000;
}

.button-primary._w-100 {
  width: 100%;
}

.button-primary.small {
  padding-top: 12px;
  padding-bottom: 12px;
}

.button-primary.small.mt-23 {
  margin-top: 23px;
}

.button-secondary {
  color: #666;
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #3c3c3c;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1em;
  text-decoration: none;
  transition: all .3s cubic-bezier(.215, .61, .355, 1);
  display: inline-block;
}

.button-secondary:hover {
  background-color: #eee;
  border-color: #000;
}

.button-secondary.small {
  padding-top: 12px;
  padding-bottom: 12px;
}

.h1 {
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 35px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.4em;
}

.h1.mb-0 {
  margin-bottom: 0;
  margin-right: 30px;
}

.form-container {
  font-weight: 500;
}

.form-success {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4em;
  display: block;
}

.form-error {
  color: #e90004;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4em;
  display: block;
}

.label {
  color: var(--dark-gray);
  white-space: nowrap;
  margin-bottom: 0;
  font-weight: 400;
}

.label.small {
  font-size: 12px;
}

.label.small.opacity-0 {
  opacity: 0;
}

.input {
  height: 40px;
  color: var(--dark-gray);
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 8px;
  margin-bottom: 0;
  transition: all .3s;
  box-shadow: inset 0 0 4px 1px rgba(33, 33, 33, .09);
}

.input:hover {
  border-color: #9c9c9c;
}

.input:active, .input:focus {
  border-color: #727272;
}

.input:focus-visible {
  border-color: #727272;
}

.input[data-wf-focus-visible] {
  border-color: #727272;
}

.input.mt-0 {
  height: 40px;
  margin-top: 0;
}

.mw-370 {
  max-width: 370px;
  margin-left: auto;
  margin-right: auto;
}

.mw-370.mt-30 {
  margin-top: 30px;
}

.d-flex {
  display: flex;
}

.d-flex.align-items-center {
  align-items: center;
}

.d-flex.align-items-center.justify-content-between {
  justify-content: space-between;
}

.d-flex.align-items-center.mw-700 {
  width: 100%;
  max-width: 700px;
  justify-content: flex-start;
}

.link {
  color: #1d1d1b;
}

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

.link.back-link {
  margin-top: 2px;
  margin-left: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-30.mt-30 {
  margin-top: 30px;
}

.mb-30.mt-20 {
  margin-top: 20px;
}

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

.text-block {
  font-weight: 500;
  position: relative;
}

.text-block-2 {
  color: var(--red);
  font-weight: 500;
}

.form-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.muted {
  color: #b2b2b2;
}

.muted.fz-13 {
  font-size: 13px;
}

.mt-30 {
  margin-top: 30px;
}

.sub-heading {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
  display: flex;
}

.no-tickets {
  margin-bottom: 30px;
}

.h4 {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 600;
}

.h4.mb-0 {
  margin-bottom: 0;
}

.table_cell {
  border-bottom: 1px solid #e6e6e6;
  padding-top: 20px;
  padding-bottom: 20px;
}

.table_header {
  text-align: left;
  border-bottom: 1px solid #e6e6e6;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 500;
}

.table_header._w-130 {
  width: 13px;
}

.table_header.th-1 {
  width: 130px;
}

.table_header.th-3 {
  width: 100px;
}

.table_header.th-4, .table_header.th-5, .table_header.th-6 {
  width: 120px;
}

.table_component {
  width: 100%;
}

.ticket-name {
  font-weight: 700;
}

.ticket-desc {
  font-size: 13px;
}

.table-price-due {
  font-weight: 700;
}

.show-mobile {
  font-weight: 600;
  display: none;
}

.order-details-panel {
  border: 1px solid var(--dark-gray);
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 10px 25px;
  font-weight: 600;
  display: flex;
}

.d-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.d-grid.mw-800 {
  max-width: 800px;
}

.tickets-list-item {
  border-bottom: 1px solid #e6e6e6;
  padding-top: 25px;
  padding-bottom: 25px;
}

.tli-heading {
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.tli-form-block {
  flex: 0 auto;
}

.tli-form {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.tli-form-item {
  width: auto;
  flex: 0 auto;
  margin-right: 20px;
}

.til-content {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 600;
}

.h5.mb-0 {
  margin-bottom: 0;
}

.ticket-icon {
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  display: flex;
}

.info {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.info-icon {
  flex: none;
  margin-right: 10px;
}

.info-text {
  font-weight: 600;
}

.textarea {
  max-width: 390px;
  min-height: 90px;
  color: var(--dark-gray);
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 8px;
  margin-bottom: 15px;
  transition: all .3s;
  box-shadow: inset 0 0 4px 1px rgba(33, 33, 33, .09);
}

.textarea:hover {
  border-color: #9c9c9c;
}

.textarea:active, .textarea:focus {
  border-color: #727272;
}

.textarea:focus-visible {
  border-color: #727272;
}

.textarea[data-wf-focus-visible] {
  border-color: #727272;
}

.textarea.mt-0 {
  height: 40px;
  margin-top: 0;
}

.payment-block {
  width: 500px;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.mb-15 {
  margin-bottom: 15px;
}

.tabs-menu {
  width: 481px;
  border: 1px solid #3c3c3c;
  border-radius: 8px;
  display: flex;
  overflow: hidden;
}

.tab-link {
  width: 160px;
  height: 40px;
  min-width: 160px;
  background-color: #fff;
  border-right: 1px solid #3c3c3c;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 500;
  transition: all .3s;
  display: flex;
}

.tab-link:hover {
  background-color: #dbdbdb;
}

.tab-link.w--current {
  color: #fff;
  background-color: #3c3c3c;
}

.tab-pane {
  padding-top: 20px;
}

.contact-us-miniblock {
  z-index: 2;
  text-align: right;
  padding-top: 10px;
  position: absolute;
  right: 0;
}

.fa-eye-slash {
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: -40px;
  right: 0;
}

.password-eye-container {
  position: relative;
}

.fa-eye {
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: -40px;
  right: 0;
}

.d-none {
  display: none;
}

@media screen and (max-width: 991px) {
  .logo-text, .header-text {
    font-size: 22px;
  }

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

  .h1.mb-0 {
    font-size: 28px;
  }

  .table_header.th-1 {
    width: 70px;
  }

  .table_header.th-3 {
    width: 40px;
  }

  .table_header.th-4 {
    width: 100px;
  }

  .table_header.th-5, .table_header.th-6 {
    width: 80px;
  }

  .tli-form {
    flex-wrap: nowrap;
  }

  .til-content {
    flex-direction: column;
    justify-content: flex-start;
  }

  .contact-us-miniblock {
    order: 1;
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .logo-link {
    margin-right: 10px;
  }

  .logo-text {
    font-size: 18px;
    line-height: 1.2em;
  }

  .header-text {
    text-align: right;
    font-size: 18px;
    line-height: 1.2em;
  }

  .content-inner-wrapper {
    flex-direction: column;
    display: flex;
  }

  .left-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-bottom: 10px;
  }

  .menu-list {
    display: flex;
  }

  .menu-list-item {
    margin-right: 25px;
  }

  .menu-list-item-link {
    display: block;
  }

  .h1.text-center {
    font-size: 28px;
  }

  .h1.mb-0 {
    font-size: 24px;
    line-height: 1.2em;
  }

  .form-grid {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .form-grid-item {
    margin-bottom: 20px;
  }

  .table_cell {
    border-bottom-style: none;
    padding-top: 10px;
    padding-bottom: 10px;
    display: block;
  }

  .table_row {
    border-bottom: 1px solid #ccc;
    padding-top: 20px;
    padding-bottom: 20px;
    display: block;
  }

  .table_body {
    display: block;
  }

  .table_head {
    display: none;
  }

  .table_component {
    border-top: 1px solid #ccc;
  }

  .show-mobile {
    display: block;
  }

  .order-details-panel {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 15px;
    padding-right: 15px;
  }

  .tli-form {
    flex-wrap: nowrap;
  }

  .tli-form-item {
    width: auto;
  }

  .til-content {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .payment-block {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .tabs-menu {
    width: 100%;
  }

  .tab-link {
    width: 33.6%;
    min-width: 33.6%;
  }
}

@media screen and (max-width: 479px) {
  .logo-text, .header-text {
    font-size: 16px;
  }

  .button-primary.small.mt-23 {
    margin-top: 0;
  }

  .label.small.opacity-0 {
    display: none;
  }

  .tli-form {
    width: 100%;
    flex-direction: column;
  }

  .tli-form-item {
    margin-bottom: 20px;
  }

  .tab-link {
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 1em;
  }

  .tab-link.w--current {
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

#w-node-_68a502ce-b9e8-3b4f-b69d-3cd1c0b2eabf-fd0ef9b6, #w-node-f09bf221-f34a-df16-77e1-6aa1d8510e9e-fd0ef9b6, #w-node-_0a31df3f-fa15-b880-76b9-7203cdae3690-fd0ef9b6, #w-node-dd23038e-014b-dfb6-400e-80975958a909-fd0ef9b6, #w-node-_65793c0d-57ea-1daa-c1ef-6ac5a2e4964d-fd0ef9b6, #w-node-_043e7830-b812-f2d6-8e7a-dcf6f1974dd2-fd0ef9b6, #w-node-ec5f1e70-f3b2-97bf-d428-cb578ec97e0f-fd0ef9b6, #w-node-_29edc2e0-dff7-8472-fccd-cf69773fe746-fd0ef9b6, #w-node-_941e4200-d6e2-90f0-02c7-42c543f7b285-00f841cd, #w-node-_941e4200-d6e2-90f0-02c7-42c543f7b289-00f841cd, #w-node-_941e4200-d6e2-90f0-02c7-42c543f7b28d-00f841cd, #w-node-_941e4200-d6e2-90f0-02c7-42c543f7b291-00f841cd, #w-node-_941e4200-d6e2-90f0-02c7-42c543f7b295-00f841cd, #w-node-_941e4200-d6e2-90f0-02c7-42c543f7b299-00f841cd, #w-node-_941e4200-d6e2-90f0-02c7-42c543f7b29d-00f841cd, #w-node-_941e4200-d6e2-90f0-02c7-42c543f7b2a1-00f841cd, #w-node-_12dbbb76-f7f1-2736-56ba-28b2b1eee123-00f841cd, #w-node-_12dbbb76-f7f1-2736-56ba-28b2b1eee12b-00f841cd, #w-node-e0158ab1-29e2-c101-82b5-a707ccf9e016-7509db96, #w-node-ca2bd9fa-8ba2-d39c-5131-01b973bf5a78-7509db96 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


