.tickets {
  max-width: 100%;
  margin: 0 auto;
  padding: 3em; }
  .tickets .selectPaymentMethod {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: stretch;
    margin: 0 auto;
    max-width: 1400px; }
    .tickets .selectPaymentMethod .block {
      text-align: center;
      display: inherit;
      flex-flow: column nowrap;
      justify-content: space-between;
      align-items: center;
      margin: 0 2rem; }
      .tickets .selectPaymentMethod .block img {
        margin-bottom: 2rem; }
      .tickets .selectPaymentMethod .block a {
        margin: 0;
        padding: 0;
        text-align: center;
        font-size: 200%;
        font-weight: bold;
        white-space: nowrap; }
    @media screen and (max-width: 765px) {
      .tickets .selectPaymentMethod {
        flex-wrap: wrap;
        align-items: center; }
        .tickets .selectPaymentMethod .block:first-child {
          margin-bottom: 2rem; } }
  .tickets .ticketForm {
    text-align: center; }
    .tickets .ticketForm .ticketsContainer {
      margin: 0 auto; }
    .tickets .ticketForm .ticket {
      display: flex;
      justify-content: center;
      margin-bottom: 2em; }
    .tickets .ticketForm .field {
      margin: 0 1em;
      text-align: left; }
    .tickets .ticketForm .field.remove {
      width: 0; }
    .tickets .ticketForm select {
      font-size: 120%;
      padding: 0.2em; }
    .tickets .ticketForm label {
      font-weight: bold;
      font-size: 1em;
      display: block; }
    .tickets .ticketForm input[type=text] {
      border-radius: 3px;
      background-color: #fff;
      border: solid 1px #ad5500;
      padding: 0.2em;
      font-size: 120%; }
    .tickets .ticketForm .removeTicket {
      display: none;
      cursor: pointer; }
      .tickets .ticketForm .removeTicket img {
        width: 2em;
        position: relative;
        top: 2em; }
    .tickets .ticketForm select.country {
      width: 200px; }
    @media screen and (max-width: 768px) {
      .tickets .ticketForm .ticket {
        flex-wrap: wrap; }
      .tickets .ticketForm .removeTicket {
        width: 100%; }
        .tickets .ticketForm .removeTicket img {
          top: -1.45rem;
          left: calc(100% + .5rem); }
      .tickets .ticketForm .field.remove {
        width: 100%; } }
    .tickets .ticketForm .discount {
      margin: 2em;
      font-size: 85%; }
      .tickets .ticketForm .discount label {
        margin-bottom: 0.5em; }
      .tickets .ticketForm .discount input {
        width: 10em; }
    .tickets .ticketForm .errors {
      display: none;
      background-color: #ffa17f;
      padding: 1em;
      color: #870000;
      margin: 2em auto;
      text-align: left;
      border: solid 1px #870000;
      box-sizing: border-box;
      width: 100%;
      max-width: 400px;
      border-radius: 5px;
      box-sizing: border-box; }
      .tickets .ticketForm .errors ul {
        margin: 0 2em; }
    .tickets .ticketForm .actions {
      display: flex;
      flex-flow: row wrap;
      justify-content: center;
      align-items: center; }
      .tickets .ticketForm .actions .button {
        font-size: 100%;
        margin: .5rem .1rem; }
      .tickets .ticketForm .actions .button.pay {
        background-color: #ba3c0e;
        position: relative; }
        .tickets .ticketForm .actions .button.pay span.amount {
          color: #ffeb70; }
    .tickets .ticketForm .recaptcha {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-flow: column nowrap;
      width: 100%;
      margin-top: 2rem;
      color: #000; }
      .tickets .ticketForm .recaptcha p {
        font-weight: bold; }
    .tickets .ticketForm .g-recaptcha {
      margin: 1em auto;
      display: flex;
      justify-content: center; }
    @media screen and (max-width: 1070px) {
      .tickets .ticketForm .field, .tickets .ticketForm .field input, .tickets .ticketForm .field select {
        width: 100%;
        box-sizing: border-box; }
      .tickets .ticketForm .field input, .tickets .ticketForm .field select {
        margin-bottom: 1rem; } }
  .tickets .dontHaveBitcoins, .tickets .studentTickets {
    margin: 5em auto 0 auto;
    font-size: 120%;
    text-align: center;
    max-width: 400px; }
  .tickets .studentTickets {
    font-size: 85%; }

.modalWindow {
  position: fixed;
  z-index: 1000;
  display: none; }

.modalWindow .modal:before {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1; }

.modalWindow .modalDialog {
  background-color: #fff;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  max-width: 30em;
  width: 100%;
  max-height: 85%;
  min-height: 5em;
  border-radius: 0.5em;
  padding: 2em;
  overflow: hidden;
  overflow-y: auto; }

.modalWindow .close {
  font-size: 90%;
  margin-top: 3em; }
