@-webkit-keyframes slide-in-br {
  0% {
    -webkit-transform: translateY(1000px) translateX(1000px);
    transform: translateY(1000px) translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-br {
  0% {
    -webkit-transform: translateY(1000px) translateX(1000px);
    transform: translateY(1000px) translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes slide-out-br {
  0% {
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(1000px) translateX(1000px);
    transform: translateY(1000px) translateX(1000px);
    opacity: 0;
  }
}

@keyframes slide-out-br {
  0% {
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(1000px) translateX(1000px);
    transform: translateY(1000px) translateX(1000px);
    opacity: 0;
  }
}

.tickets_button {
  position: fixed;
  width: 7em;
  height: 7em;
  right: 5em;
  bottom: 2em;
  z-index: 999;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1em;
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 4px 5px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 4px 5px;
  background-color: #ffffff;
  border-radius: 50%;
  border: 6px solid #fff;
  -webkit-animation: slide-in-br 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-br 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  -webkit-transition: border-width 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: border-width 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media screen and (max-width: 560px) {
  .tickets_button {
    right: 1em;
    width: 5em;
    height: 5em;
  }
}

.tickets_button svg {
  width: 100%;
  -webkit-transform: translate(0.1em, 0.2em);
          transform: translate(0.1em, 0.2em);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.tickets_button svg:hover {
  cursor: pointer;
  -webkit-transform: translate(0.1em, 0.2em) scale(1.1);
          transform: translate(0.1em, 0.2em) scale(1.1);
}

.tickets_button.open {
  -webkit-animation: slide-out-br 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  animation: slide-out-br 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.tickets_button.open .rassurant {
  opacity: 0;
  -webkit-transition: opacity 0.25s 0s;
  transition: opacity 0.25s 0s;
}

.tickets_button:hover {
  cursor: pointer;
}

.tickets_button .rassurant {
  background-color: #fff;
  position: absolute;
  color: #222;
  font-size: 1em;
  width: 20em;
  font-weight: 700;
  text-align: center;
  top: -5.5em;
  max-height: 11em;
  right: -18px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 4px 16px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 4px 16px;
  padding: 1em;
  border-radius: 2em;
  -webkit-transition: opacity 0.5s, max-height 0.5s 0.5s, padding 0.5s 0.5s;
  transition: opacity 0.5s, max-height 0.5s 0.5s, padding 0.5s 0.5s;
}

.tickets_button .rassurant.closed {
  opacity: 0;
  max-height: 0;
  padding: 0;
}

.tickets_button .rassurant .close {
  position: absolute;
  top: 0.55em;
  right: 0.5em;
}

.tickets_button .rassurant:after {
  position: absolute;
  bottom: -12px;
  right: 50px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 12px 0 12px;
  border-color: #ffffff transparent transparent transparent;
}

.tickets_form {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 999;
  position: fixed;
  bottom: 0px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 4px 16px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 4px 16px;
  border-radius: 3px 3px 0px 0px;
  right: 150px;
  width: 400px;
  max-height: 0;
  -webkit-transition: max-height 0.5s;
  transition: max-height 0.5s;
}

@media screen and (max-width: 560px) {
  .tickets_form {
    right: 0em;
    width: 100%;
  }
}

.tickets_form.open {
  max-height: 500px;
}

.tickets_form.open.done {
  max-height: 300px;
}

.tickets_form .spacer {
  height: 2em;
  width: 100%;
}

.tickets_form .top-bar {
  text-align: center;
  display: block;
  font-weight: 800;
  color: #fff;
  padding: 1em 1.3em;
}

.tickets_form .top-bar:after {
  content: "_";
  position: absolute;
  top: -0.6em;
  color: #fff;
  right: 0.25em;
  font-size: 3em;
  font-weight: 900;
  cursor: pointer;
}

.tickets_form .form {
  overflow-y: scroll;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  padding: 1.5em;
  height: 500px;
  -webkit-transition: max-height 0.5s 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: max-height 0.5s 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media screen and (max-width: 560px) {
  .tickets_form .form {
    max-height: 90vh;
  }
}

.tickets_form .form .spinnerForm {
  display: none;
  position: absolute;
  top: 3.4em;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(18, 18, 18, 0.5);
  z-index: 999;
}

.tickets_form .form .spinnerForm.loading {
  display: block;
}

.tickets_form .form .spinnerForm img {
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
}

.tickets_form .form p {
  font-size: 1em;
  font-weight: 500;
  color: #3e3e41;
  margin: 0;
  padding-bottom: 1em;
  padding-top: 0.5em;
  text-align: center;
}

.tickets_form .form p.done {
  font-size: 1.2em;
  margin-top: 1.5em;
  font-weight: 800;
}

.tickets_form .form p.error {
  font-size: 0.75em;
  color: #d64546;
  text-align: left;
  margin: 0;
  padding: 0;
}

.tickets_form .form form {
  position: relative;
  max-height: 500px;
  opacity: 1;
  -webkit-transition: opacity 0.5s, max-height 0.5s 0.5s;
  transition: opacity 0.5s, max-height 0.5s 0.5s;
}

.tickets_form .form form .spinnerForm {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.tickets_form .form form.done {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

.tickets_form .form form label {
  display: block;
  margin: 0;
  font-weight: 500;
  font-size: 0.9em;
}

.tickets_form .form form label span.red {
  color: #d64546;
}

.tickets_form .form form input[type="text"], .tickets_form .form form textarea {
  width: 100%;
  border: 1px solid #dddde6;
  color: #3e3e41;
  resize: vertical;
  margin-top: 0.1em;
}

.tickets_form .form form input[type="submit"] {
  border: 0px none;
  width: 80%;
  margin: 1em auto;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -moz-box-align: center;
  border-radius: 4px;
  font-size: 1em;
  font-weight: normal;
  color: white;
  padding: 12px;
  background-color: #0f971f;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 0px, rgba(0, 0, 0, 0.05) 0px -3px 0px inset;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 0px, rgba(0, 0, 0, 0.05) 0px -3px 0px inset;
}
/*# sourceMappingURL=tickets.css.map */