@import "https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css";
@import "https://fonts.googleapis.com/css?family=Lato:400,300,700,400italic,700italic";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: url('../img/funky-lines.png') repeat fixed;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
}
.container,
.container-fluid {
  margin: 100px auto 20px;
}
header {
  padding: 0 20px;
  background: #1c1c1c;
  height: 80px;
  border-bottom: 1px solid #ccc;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  box-shadow: 0px 0px 10px 0px rgba(30, 30, 30, 0.2);
  z-index: 999;
}
header .logo {
  float: left;
}
header .logo img {
  height: 79px;
}
.Navigation {
  float: right;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.Navigation ul {
  margin-bottom: 0px;
}
@media screen and (min-width: 751px) {
  .Navigation__button {
    display: none;
  }
  .Navigation__links {
    display: block !important;
  }
  .Navigation li {
    display: inline-block;
    float: left;
    margin-right: 30px;
  }
  .Navigation li a {
    display: block;
    height: 45px;
    line-height: 45px;
    text-decoration: none;
    color: #ccc;
  }
  .Navigation li a:hover {
    color: white;
  }
  .Navigation li.active a {
    color: white;
    border-bottom: 2px solid #FF1B22;
  }
}
@media screen and (max-width: 750px) {
  .Navigation__button {
    display: block;
  }
  .Navigation__links {
    background: #1c1c1c;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
  }
  .Navigation__links li {
    line-height: 40px;
    border-bottom: 1px solid #ccc;
  }
  .Navigation__links li a {
    color: #ccc;
    padding: 0 20px;
    height: 40px;
    display: block;
  }
  .Navigation__links li a:hover {
    color: black;
    text-decoration: none;
    background: #f1f1f1;
  }
}
.Button {
  height: 40px;
  padding: 0 15px;
  line-height: 40px;
  text-decoration: none;
  color: #777;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
}
.Button:hover {
  color: black;
}
.Button.Button__icon {
  width: 40px;
  padding: 0;
}
.Button.Button__icon i {
  display: block;
}
.Button__primary {
  background: #f1f1f1;
  color: black;
  border: 1px solid #ccc;
}
.Button__list {
  text-transform: uppercase;
  width: 110px;
  height: 30px;
  line-height: 30px;
  font-size: 0.8em;
  float: right;
  color: white;
  border: none;
  padding: 0;
  text-align: center;
  cursor: auto;
}
.Button__list:hover {
  color: white;
}
.Button__confirmed {
  background: #7CD495;
}
.Button__waiting {
  background: #F5A623;
}
.Button__inactive {
  background: #ff4c4c;
}
.Box {
  border: 1px solid #ccc;
  background: white;
  margin-bottom: 20px;
  box-shadow: 0px 0px 10px 0px rgba(30, 30, 30, 0.2);
}
.Box:last-child {
  margin-bottom: 0;
}
.Box__title {
  min-height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #1c1c1c;
  border-bottom: 1px solid #ccc;
  font-size: 1.5em;
  padding: 10px 20px;
  color: white;
  text-transform: uppercase;
}
.Box__title small {
  font-size: 0.6em;
  margin-left: 10px;
  font-style: italic;
  color: #666;
}
.Box__content {
  color: #444;
  padding: 20px;
}
.Box__content--list {
  padding: 0;
}
.Box__content a {
  color: #28A1C9;
}
.Box__content a:hover {
  color: #28A1C9;
}
.Box__content p {
  margin-bottom: 15px;
  line-height: 1.8em;
}
.Box__content i {
  font-weight: bold;
  color: black;
}
.Box__content ul {
  margin-left: 20px;
}
.Box__counter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.Box__counter__item {
  height: 200px;
  -ms-flex: none;
  flex: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 200px;
  margin: 20px;
  border: 1px solid #ddd;
  position: relative;
}
.Box__counter__total {
  font-size: 4em;
}
.Box__counter__name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  height: 30px;
  line-height: 30px;
}
.Form__label {
  font-size: 0.8em;
  font-weight: normal;
  color: #555;
}

/* .Form__checkbox {
  display: block;
  -webkit-appearance: none;
  -moz-appearance:    none;
  appearance:         none;
  height: 40px;
  width: 40px;
  text-align: center;
  border: 1px solid #ccc;
  margin-bottom: 20px !important;
} */

.Form__checkbox {
  display: flex;
  height: 40px;
  font-size: 14px;
  font-weight: normal;
  position: relative;
  align-items: center;
  padding-left: 60px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.Form__checkbox .Form__input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.Form__submit[disabled] {
  cursor: not-allowed !important;
}

/* Create a custom checkbox */
.Form__checkbox .Form__checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 40px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.Form__checkbox:hover .Form__input ~ .Form__checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.Form__checkbox .Form__input:checked ~ .Form__checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.Form__checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.Form__checkbox .Form__input:checked ~ .Form__checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.Form__checkbox .Form__checkmark:after {
  left: 17px;
  top: 15px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.Form__input,
.Form__select .selectize-input {
  border-radius: 0;
  height: 40px;
  line-height: 40px;
  background: white;
  border: 1px solid #ccc;
  width: 100%;
  padding: 0 20px;
}
.Form__input:-ms-input-placeholder,
.Form__select .selectize-input:-ms-input-placeholder {
  color: #bbb;
  font-size: 0.85em;
  font-style: italic;
}
.Form__input::placeholder,
.Form__select .selectize-input::placeholder {
  color: #bbb;
  font-size: 0.85em;
  font-style: italic;
}
.Form__textarea {
  width: 100%;
  background: white;
  border: 1px solid #ccc;
  padding: 20px;
}
.Form__file {
  height: 60px;
  border: 1px dashed #ccc;
  text-align: center;
  line-height: 60px;
  position: relative;
}
.Form__file:hover {
  border-color: #2da6e2;
}
.Form__file input {
  cursor: pointer;
  position: absolute;
  width: 100%;
  display: block;
  opacity: 0;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.Form__submit {
  width: 100%;
}
.Form__line {
  margin-bottom: 20px;
}
.Form__errors {
  background: #ffe0e0;
  border: 1px solid #d65557;
  padding: 20px;
  font-weight: bold;
}
.Form__errors ul {
  margin: 10px 0 0 20px;
}
.Form__errors li {
  font-weight: normal;
  font-size: 0.8em;
}
.Form fieldset {
  margin-top: 30px;
}
.Form fieldset legend {
  font-size: 1em;
  text-transform: uppercase;
  padding-bottom: 10px;
  color: #444;
  border-bottom: 1px solid #ccc;
}
.Form fieldset:first-child {
  margin-top: 0;
}
.Payment__info {
  border: 1px solid #ccc;
  padding: 20px;
}
.Payment__total {
  height: 90px;
  line-height: 90px;
  text-align: right;
  padding-right: 30px;
  font-size: 3em;
  margin-left: 30px;
}
.Payment__line {
  font-size: 1em;
  color: #888;
  padding: 5px 0;
}
.Payment__line--bold {
  text-transform: uppercase;
  color: black;
  font-weight: bold;
}
.Poster img {
  width: 100%;
}
.Notes, .Regulation {
  padding: 20px;
  border: 1px solid #7BD1ED;
  background: #D6F5FF;
  max-height: 300px;
  overflow-y: scroll;
}

.Regulation {
  background: #f5f5f5;
  border: 1px solid #ddd;
}

.Notes.Notes--alone {
  margin-bottom: 20px;
}
.Notes__title, .Regulation__title {
  margin-top: 0;
}
.Error {
  height: 400px;
  line-height: 400px;
  text-align: center;
  font-size: 3em;
  color: #888;
  font-weight: 300;
}
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialicons/v36/flUhRq6tzZclQEJ-Vdg-IuiaDsNZ.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
}
.icon {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
}
.List__item {
  border-bottom: 1px solid #ccc;
  height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

/*# sourceMappingURL=main.css.map */
