@charset "UTF-8";
/* line 44, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-wrapper {
  position: relative;
  margin: 2rem 0;
}

/* line 49, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-window {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

/* line 57, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player__poster {
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  max-width: 100%;
  margin-bottom: 4rem;
}

/* line 38, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player__poster.is--invisible {
  opacity: 0;
  pointer-events: none;
}

/* line 63, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player__poster.is--floating {
  position: absolute;
  z-index: 1;
  margin: 0;
}

/* line 70, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player__gradient {
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.32) 0%, #000 90%);
}

/* line 38, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player__gradient.is--invisible {
  opacity: 0;
  pointer-events: none;
}

/* line 84, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player__player {
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: all !important;
}

/* line 38, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player__player.is--invisible {
  opacity: 0;
  pointer-events: none;
}

/* line 90, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player__video-container {
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  z-index: 5;
}

/* line 38, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player__video-container.is--invisible {
  opacity: 0;
  pointer-events: none;
}

/* line 98, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-play-button-wrapper {
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: absolute;
  top: 40%;
  left: 25%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 20%;
}

/* line 38, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-play-button-wrapper.is--invisible {
  opacity: 0;
  pointer-events: none;
}

/* line 113, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-play-button {
  --icon-fill: currentColor;
  --icon-margin: 0.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 0.75rem 1rem;
  fill: #fff;
  border-radius: 100px;
  background: #ececec;
  box-shadow: 0 0px 22px 5px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

/* line 128, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-play-button__icon {
  height: 20px;
  margin-right: var(--icon-margin, 0.5rem);
  fill: var(--icon-fill);
}

/* line 133, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-play-button__icon:only-child {
  margin: 0;
}

/* line 136, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-play-button:hover {
  color: #820560;
  fill: #820560;
  background-color: white;
}

/* line 142, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-play-button.is--featured {
  --icon-fill: #820560;
  --icon-margin: 1rem;
  color: #820560;
  font-size: 22px;
}

/* line 149, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-play-button.is--featured .movie-player-play-button__text {
  position: relative;
  top: -1px;
}

/* line 156, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-content {
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  margin: 0;
  padding: 4rem;
}

/* line 38, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-content.is--invisible {
  opacity: 0;
  pointer-events: none;
}

/* line 167, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-content--standalone {
  position: relative;
}

/* line 170, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-cta {
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: row;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.95);
}

/* line 187, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-cta__close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

/* line 193, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-cta.is--active {
  opacity: 1;
  pointer-events: all;
}

/* line 202, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-wrapper.is--standalone {
  margin-top: 0;
  margin-bottom: 0;
}

/* line 206, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-wrapper.is--standalone .movie-player-play-button,
.movie-player-wrapper.is--standalone .movie-player-play-button.is--featured {
  --icon-fill: #820560;
  box-shadow: none;
  background: transparent;
}

/* line 214, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-wrapper.is--standalone .movie-player-play-button__icon {
  width: auto;
  height: 9rem;
}

/* line 218, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-wrapper.is--standalone .movie-player-play-button__icon:hover {
  --icon-fill: #820560;
}

@media (max-width: 1199.98px) {
  /* line 225, app/assets/stylesheets/v5-migration/_movie-player.scss */
  .movie-player-wrapper {
    margin-bottom: 0;
  }
  /* line 226, app/assets/stylesheets/v5-migration/_movie-player.scss */
  .movie-player-content {
    position: relative;
    padding: 2rem 0;
  }
  /* line 230, app/assets/stylesheets/v5-migration/_movie-player.scss */
  .movie-player-content.is--invisible {
    opacity: 1;
    pointer-events: all;
  }
  /* line 236, app/assets/stylesheets/v5-migration/_movie-player.scss */
  .movie-player-play-button-wrapper {
    left: 12.5%;
    width: 75%;
  }
  /* line 241, app/assets/stylesheets/v5-migration/_movie-player.scss */
  .movie-player-play-button {
    padding: 1rem 1.5rem;
  }
  /* line 242, app/assets/stylesheets/v5-migration/_movie-player.scss */
  .movie-player__poster.is--standalone {
    margin-bottom: 0;
  }
  /* line 243, app/assets/stylesheets/v5-migration/_movie-player.scss */
  .movie-player__gradient {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.32) 50%, #000 100%);
  }
}

/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/* line 9, vendor/assets/stylesheets/bootstrap/_normalize.scss */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* line 19, vendor/assets/stylesheets/bootstrap/_normalize.scss */
body {
  margin: 0;
}

/* line 33, vendor/assets/stylesheets/bootstrap/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/* line 54, vendor/assets/stylesheets/bootstrap/_normalize.scss */
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

/* line 67, vendor/assets/stylesheets/bootstrap/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* line 77, vendor/assets/stylesheets/bootstrap/_normalize.scss */
[hidden],
template {
  display: none;
}

/* line 89, vendor/assets/stylesheets/bootstrap/_normalize.scss */
a {
  background-color: transparent;
}

/* line 98, vendor/assets/stylesheets/bootstrap/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* line 110, vendor/assets/stylesheets/bootstrap/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* line 118, vendor/assets/stylesheets/bootstrap/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* line 127, vendor/assets/stylesheets/bootstrap/_normalize.scss */
dfn {
  font-style: italic;
}

/* line 136, vendor/assets/stylesheets/bootstrap/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* line 145, vendor/assets/stylesheets/bootstrap/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* line 154, vendor/assets/stylesheets/bootstrap/_normalize.scss */
small {
  font-size: 80%;
}

/* line 162, vendor/assets/stylesheets/bootstrap/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 170, vendor/assets/stylesheets/bootstrap/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 174, vendor/assets/stylesheets/bootstrap/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* line 185, vendor/assets/stylesheets/bootstrap/_normalize.scss */
img {
  border: 0;
}

/* line 193, vendor/assets/stylesheets/bootstrap/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* line 204, vendor/assets/stylesheets/bootstrap/_normalize.scss */
figure {
  margin: 1em 40px;
}

/* line 212, vendor/assets/stylesheets/bootstrap/_normalize.scss */
hr {
  box-sizing: content-box;
  height: 0;
}

/* line 221, vendor/assets/stylesheets/bootstrap/_normalize.scss */
pre {
  overflow: auto;
}

/* line 229, vendor/assets/stylesheets/bootstrap/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* line 252, vendor/assets/stylesheets/bootstrap/_normalize.scss */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

/* line 266, vendor/assets/stylesheets/bootstrap/_normalize.scss */
button {
  overflow: visible;
}

/* line 277, vendor/assets/stylesheets/bootstrap/_normalize.scss */
button,
select {
  text-transform: none;
}

/* line 290, vendor/assets/stylesheets/bootstrap/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* line 302, vendor/assets/stylesheets/bootstrap/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/* line 311, vendor/assets/stylesheets/bootstrap/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* line 322, vendor/assets/stylesheets/bootstrap/_normalize.scss */
input {
  line-height: normal;
}

/* line 334, vendor/assets/stylesheets/bootstrap/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

/* line 346, vendor/assets/stylesheets/bootstrap/_normalize.scss */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/* line 356, vendor/assets/stylesheets/bootstrap/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

/* line 367, vendor/assets/stylesheets/bootstrap/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 376, vendor/assets/stylesheets/bootstrap/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/* line 387, vendor/assets/stylesheets/bootstrap/_normalize.scss */
legend {
  border: 0;
  padding: 0;
}

/* line 396, vendor/assets/stylesheets/bootstrap/_normalize.scss */
textarea {
  overflow: auto;
}

/* line 405, vendor/assets/stylesheets/bootstrap/_normalize.scss */
optgroup {
  font-weight: bold;
}

/* line 416, vendor/assets/stylesheets/bootstrap/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 421, vendor/assets/stylesheets/bootstrap/_normalize.scss */
td,
th {
  padding: 0;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  /* line 9, vendor/assets/stylesheets/bootstrap/_print.scss */
  *,
*:before,
*:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  /* line 18, vendor/assets/stylesheets/bootstrap/_print.scss */
  a,
a:visited {
    text-decoration: underline;
  }
  /* line 23, vendor/assets/stylesheets/bootstrap/_print.scss */
  a[href]:after {
    content: " (" attr(href) ")";
  }
  /* line 27, vendor/assets/stylesheets/bootstrap/_print.scss */
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /* line 33, vendor/assets/stylesheets/bootstrap/_print.scss */
  a[href^="#"]:after,
a[href^="javascript:"]:after {
    content: "";
  }
  /* line 38, vendor/assets/stylesheets/bootstrap/_print.scss */
  pre,
blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /* line 44, vendor/assets/stylesheets/bootstrap/_print.scss */
  thead {
    display: table-header-group;
  }
  /* line 48, vendor/assets/stylesheets/bootstrap/_print.scss */
  tr,
img {
    page-break-inside: avoid;
  }
  /* line 53, vendor/assets/stylesheets/bootstrap/_print.scss */
  img {
    max-width: 100% !important;
  }
  /* line 57, vendor/assets/stylesheets/bootstrap/_print.scss */
  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }
  /* line 64, vendor/assets/stylesheets/bootstrap/_print.scss */
  h2,
h3 {
    page-break-after: avoid;
  }
  /* line 72, vendor/assets/stylesheets/bootstrap/_print.scss */
  .navbar {
    display: none;
  }
  /* line 77, vendor/assets/stylesheets/bootstrap/_print.scss */
  .btn > .caret,
.dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  /* line 81, vendor/assets/stylesheets/bootstrap/_print.scss */
  .label {
    border: 1px solid #000;
  }
  /* line 85, vendor/assets/stylesheets/bootstrap/_print.scss */
  .table {
    border-collapse: collapse !important;
  }
  /* line 88, vendor/assets/stylesheets/bootstrap/_print.scss */
  .table td,
.table th {
    background-color: #fff !important;
  }
  /* line 94, vendor/assets/stylesheets/bootstrap/_print.scss */
  .table-bordered th,
.table-bordered td {
    border: 1px solid #ddd !important;
  }
}

/* line 11, vendor/assets/stylesheets/bootstrap/_scaffolding.scss */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 14, vendor/assets/stylesheets/bootstrap/_scaffolding.scss */
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 22, vendor/assets/stylesheets/bootstrap/_scaffolding.scss */
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* line 27, vendor/assets/stylesheets/bootstrap/_scaffolding.scss */
body {
  font-family: "Roboto", "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.428571429;
  color: #25292c;
  background-color: #ececec;
}

/* line 36, vendor/assets/stylesheets/bootstrap/_scaffolding.scss */
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* line 48, vendor/assets/stylesheets/bootstrap/_scaffolding.scss */
a {
  color: #820560;
  text-decoration: none;
}

/* line 52, vendor/assets/stylesheets/bootstrap/_scaffolding.scss */
a:hover, a:focus {
  color: #820560;
  text-decoration: underline;
}

/* line 58, vendor/assets/stylesheets/bootstrap/_scaffolding.scss */
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 69, vendor/assets/stylesheets/bootstrap/_scaffolding.scss */
figure {
  margin: 0;
}

/* line 76, vendor/assets/stylesheets/bootstrap/_scaffolding.scss */
img {
  vertical-align: middle;
}

/* line 81, vendor/assets/stylesheets/bootstrap/_scaffolding.scss */
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

/* line 86, vendor/assets/stylesheets/bootstrap/_scaffolding.scss */
.img-rounded {
  border-radius: 6px;
}

/* line 93, vendor/assets/stylesheets/bootstrap/_scaffolding.scss */
.img-thumbnail {
  padding: 4px;
  line-height: 1.428571429;
  background-color: #ececec;
  border: 1px solid #ecf0f1;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

/* line 106, vendor/assets/stylesheets/bootstrap/_scaffolding.scss */
.img-circle {
  border-radius: 50%;
}

/* line 113, vendor/assets/stylesheets/bootstrap/_scaffolding.scss */
hr {
  margin-top: 22px;
  margin-bottom: 22px;
  border: 0;
  border-top: 1px solid #ecf0f1;
}

/* line 125, vendor/assets/stylesheets/bootstrap/_scaffolding.scss */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 141, vendor/assets/stylesheets/bootstrap/_scaffolding.scss */
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* line 159, vendor/assets/stylesheets/bootstrap/_scaffolding.scss */
[role="button"] {
  cursor: pointer;
}

/* line 9, vendor/assets/stylesheets/bootstrap/_type.scss */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Roboto", "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.1;
  color: inherit;
}

/* line 16, vendor/assets/stylesheets/bootstrap/_type.scss */
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small,
.h1 small,
.h1 .small, .h2 small,
.h2 .small, .h3 small,
.h3 .small, .h4 small,
.h4 .small, .h5 small,
.h5 .small, .h6 small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #b4bcc2;
}

/* line 24, vendor/assets/stylesheets/bootstrap/_type.scss */
h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 22px;
  margin-bottom: 11px;
}

/* line 30, vendor/assets/stylesheets/bootstrap/_type.scss */
h1 small,
h1 .small, .h1 small,
.h1 .small,
h2 small,
h2 .small, .h2 small,
.h2 .small,
h3 small,
h3 .small, .h3 small,
.h3 .small {
  font-size: 65%;
}

/* line 35, vendor/assets/stylesheets/bootstrap/_type.scss */
h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 11px;
  margin-bottom: 11px;
}

/* line 41, vendor/assets/stylesheets/bootstrap/_type.scss */
h4 small,
h4 .small, .h4 small,
.h4 .small,
h5 small,
h5 .small, .h5 small,
.h5 .small,
h6 small,
h6 .small, .h6 small,
.h6 .small {
  font-size: 75%;
}

/* line 47, vendor/assets/stylesheets/bootstrap/_type.scss */
h1, .h1 {
  font-size: 41px;
}

/* line 48, vendor/assets/stylesheets/bootstrap/_type.scss */
h2, .h2 {
  font-size: 34px;
}

/* line 49, vendor/assets/stylesheets/bootstrap/_type.scss */
h3, .h3 {
  font-size: 28px;
}

/* line 50, vendor/assets/stylesheets/bootstrap/_type.scss */
h4, .h4 {
  font-size: 20px;
}

/* line 51, vendor/assets/stylesheets/bootstrap/_type.scss */
h5, .h5 {
  font-size: 16px;
}

/* line 52, vendor/assets/stylesheets/bootstrap/_type.scss */
h6, .h6 {
  font-size: 14px;
}

/* line 58, vendor/assets/stylesheets/bootstrap/_type.scss */
p {
  margin: 0 0 11px;
}

/* line 62, vendor/assets/stylesheets/bootstrap/_type.scss */
.lead, .info-block p {
  margin-bottom: 22px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
}

@media (min-width: 768px) {
  /* line 62, vendor/assets/stylesheets/bootstrap/_type.scss */
  .lead, .info-block p {
    font-size: 24px;
  }
}

/* line 78, vendor/assets/stylesheets/bootstrap/_type.scss */
small,
.small {
  font-size: 87%;
}

/* line 83, vendor/assets/stylesheets/bootstrap/_type.scss */
mark,
.mark {
  background-color: #F39C12;
  padding: .2em;
}

/* line 90, vendor/assets/stylesheets/bootstrap/_type.scss */
.text-left {
  text-align: left;
}

/* line 91, vendor/assets/stylesheets/bootstrap/_type.scss */
.text-right {
  text-align: right;
}

/* line 92, vendor/assets/stylesheets/bootstrap/_type.scss */
.text-center {
  text-align: center;
}

/* line 93, vendor/assets/stylesheets/bootstrap/_type.scss */
.text-justify {
  text-align: justify;
}

/* line 94, vendor/assets/stylesheets/bootstrap/_type.scss */
.text-nowrap {
  white-space: nowrap;
}

/* line 97, vendor/assets/stylesheets/bootstrap/_type.scss */
.text-lowercase {
  text-transform: lowercase;
}

/* line 98, vendor/assets/stylesheets/bootstrap/_type.scss */
.text-uppercase, .initialism {
  text-transform: uppercase;
}

/* line 99, vendor/assets/stylesheets/bootstrap/_type.scss */
.text-capitalize {
  text-transform: capitalize;
}

/* line 102, vendor/assets/stylesheets/bootstrap/_type.scss */
.text-muted {
  color: #b4bcc2;
}

/* line 5, vendor/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-primary {
  color: #820560;
}

/* line 8, vendor/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-primary:hover,
a.text-primary:focus {
  color: #51033c;
}

/* line 5, vendor/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-success {
  color: #fff;
}

/* line 8, vendor/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-success:hover,
a.text-success:focus {
  color: #e6e6e6;
}

/* line 5, vendor/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-info {
  color: #fff;
}

/* line 8, vendor/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-info:hover,
a.text-info:focus {
  color: #e6e6e6;
}

/* line 5, vendor/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-warning {
  color: #fff;
}

/* line 8, vendor/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-warning:hover,
a.text-warning:focus {
  color: #e6e6e6;
}

/* line 5, vendor/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-danger {
  color: #fff;
}

/* line 8, vendor/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-danger:hover,
a.text-danger:focus {
  color: #e6e6e6;
}

/* line 119, vendor/assets/stylesheets/bootstrap/_type.scss */
.bg-primary {
  color: #fff;
}

/* line 5, vendor/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-primary {
  background-color: #820560;
}

/* line 8, vendor/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #51033c;
}

/* line 5, vendor/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-success {
  background-color: #820560;
}

/* line 8, vendor/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-success:hover,
a.bg-success:focus {
  background-color: #51033c;
}

/* line 5, vendor/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-info {
  background-color: #3498DB;
}

/* line 8, vendor/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-info:hover,
a.bg-info:focus {
  background-color: #217dbb;
}

/* line 5, vendor/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-warning {
  background-color: #F39C12;
}

/* line 8, vendor/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #c87f0a;
}

/* line 5, vendor/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-danger {
  background-color: #E74C3C;
}

/* line 8, vendor/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #d62c1a;
}

/* line 138, vendor/assets/stylesheets/bootstrap/_type.scss */
.page-header {
  padding-bottom: 10px;
  margin: 44px 0 22px;
  border-bottom: 1px solid transparent;
}

/* line 149, vendor/assets/stylesheets/bootstrap/_type.scss */
ul,
ol {
  margin-top: 0;
  margin-bottom: 11px;
}

/* line 153, vendor/assets/stylesheets/bootstrap/_type.scss */
ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

/* line 167, vendor/assets/stylesheets/bootstrap/_type.scss */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/* line 173, vendor/assets/stylesheets/bootstrap/_type.scss */
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}

/* line 177, vendor/assets/stylesheets/bootstrap/_type.scss */
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

/* line 185, vendor/assets/stylesheets/bootstrap/_type.scss */
dl {
  margin-top: 0;
  margin-bottom: 22px;
}

/* line 189, vendor/assets/stylesheets/bootstrap/_type.scss */
dt,
dd {
  line-height: 1.428571429;
}

/* line 193, vendor/assets/stylesheets/bootstrap/_type.scss */
dt {
  font-weight: bold;
}

/* line 196, vendor/assets/stylesheets/bootstrap/_type.scss */
dd {
  margin-left: 0;
}

/* line 14, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.dl-horizontal dd:before, #sepa-content dl dd:before, .dl-horizontal dd:after, #sepa-content dl dd:after {
  content: " ";
  display: table;
}

/* line 19, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.dl-horizontal dd:after, #sepa-content dl dd:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 211, vendor/assets/stylesheets/bootstrap/_type.scss */
  .dl-horizontal dt, #sepa-content dl dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  /* line 218, vendor/assets/stylesheets/bootstrap/_type.scss */
  .dl-horizontal dd, #sepa-content dl dd {
    margin-left: 180px;
  }
}

/* line 229, vendor/assets/stylesheets/bootstrap/_type.scss */
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #b4bcc2;
}

/* line 235, vendor/assets/stylesheets/bootstrap/_type.scss */
.initialism {
  font-size: 90%;
}

/* line 241, vendor/assets/stylesheets/bootstrap/_type.scss */
blockquote {
  padding: 11px 22px;
  margin: 0 0 22px;
  font-size: 20px;
  border-left: 5px solid #ecf0f1;
}

/* line 250, vendor/assets/stylesheets/bootstrap/_type.scss */
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}

/* line 257, vendor/assets/stylesheets/bootstrap/_type.scss */
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.428571429;
  color: #b4bcc2;
}

/* line 265, vendor/assets/stylesheets/bootstrap/_type.scss */
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}

/* line 274, vendor/assets/stylesheets/bootstrap/_type.scss */
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #ecf0f1;
  border-left: 0;
  text-align: right;
}

/* line 286, vendor/assets/stylesheets/bootstrap/_type.scss */
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: '';
}

/* line 287, vendor/assets/stylesheets/bootstrap/_type.scss */
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}

/* line 294, vendor/assets/stylesheets/bootstrap/_type.scss */
address {
  margin-bottom: 22px;
  font-style: normal;
  line-height: 1.428571429;
}

/* line 7, vendor/assets/stylesheets/bootstrap/_code.scss */
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

/* line 15, vendor/assets/stylesheets/bootstrap/_code.scss */
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}

/* line 24, vendor/assets/stylesheets/bootstrap/_code.scss */
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 32, vendor/assets/stylesheets/bootstrap/_code.scss */
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  box-shadow: none;
}

/* line 41, vendor/assets/stylesheets/bootstrap/_code.scss */
pre {
  display: block;
  padding: 10.5px;
  margin: 0 0 11px;
  font-size: 15px;
  line-height: 1.428571429;
  word-break: break-all;
  word-wrap: break-word;
  color: #7b8a8b;
  background-color: #ecf0f1;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* line 55, vendor/assets/stylesheets/bootstrap/_code.scss */
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

/* line 66, vendor/assets/stylesheets/bootstrap/_code.scss */
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

/* line 10, vendor/assets/stylesheets/bootstrap/_grid.scss */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* line 14, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container:before, .container:after {
  content: " ";
  display: table;
}

/* line 19, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 10, vendor/assets/stylesheets/bootstrap/_grid.scss */
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  /* line 10, vendor/assets/stylesheets/bootstrap/_grid.scss */
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  /* line 10, vendor/assets/stylesheets/bootstrap/_grid.scss */
  .container {
    width: 1170px;
  }
}

/* line 30, vendor/assets/stylesheets/bootstrap/_grid.scss */
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* line 14, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
}

/* line 19, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container-fluid:after {
  clear: both;
}

/* line 39, vendor/assets/stylesheets/bootstrap/_grid.scss */
.row {
  margin-left: -15px;
  margin-right: -15px;
}

/* line 14, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.row:before, .row:after {
  content: " ";
  display: table;
}

/* line 19, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.row:after {
  clear: both;
}

/* line 11, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

/* line 27, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

/* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-1 {
  width: 8.3333333333%;
}

/* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-2 {
  width: 16.6666666667%;
}

/* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-3 {
  width: 25%;
}

/* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-4 {
  width: 33.3333333333%;
}

/* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-5 {
  width: 41.6666666667%;
}

/* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-6 {
  width: 50%;
}

/* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-7 {
  width: 58.3333333333%;
}

/* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-8 {
  width: 66.6666666667%;
}

/* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-9 {
  width: 75%;
}

/* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-10 {
  width: 83.3333333333%;
}

/* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-11 {
  width: 91.6666666667%;
}

/* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-12 {
  width: 100%;
}

/* line 55, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-0 {
  right: auto;
}

/* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-1 {
  right: 8.3333333333%;
}

/* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-2 {
  right: 16.6666666667%;
}

/* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-3 {
  right: 25%;
}

/* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-4 {
  right: 33.3333333333%;
}

/* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-5 {
  right: 41.6666666667%;
}

/* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-6 {
  right: 50%;
}

/* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-7 {
  right: 58.3333333333%;
}

/* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-8 {
  right: 66.6666666667%;
}

/* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-9 {
  right: 75%;
}

/* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-10 {
  right: 83.3333333333%;
}

/* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-11 {
  right: 91.6666666667%;
}

/* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-12 {
  right: 100%;
}

/* line 45, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-0 {
  left: auto;
}

/* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-1 {
  left: 8.3333333333%;
}

/* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-2 {
  left: 16.6666666667%;
}

/* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-3 {
  left: 25%;
}

/* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-4 {
  left: 33.3333333333%;
}

/* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-5 {
  left: 41.6666666667%;
}

/* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-6 {
  left: 50%;
}

/* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-7 {
  left: 58.3333333333%;
}

/* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-8 {
  left: 66.6666666667%;
}

/* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-9 {
  left: 75%;
}

/* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-10 {
  left: 83.3333333333%;
}

/* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-11 {
  left: 91.6666666667%;
}

/* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-12 {
  left: 100%;
}

/* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-0 {
  margin-left: 0%;
}

/* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

/* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

/* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-3 {
  margin-left: 25%;
}

/* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

/* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

/* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-6 {
  margin-left: 50%;
}

/* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

/* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

/* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-9 {
  margin-left: 75%;
}

/* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

/* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

/* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  /* line 27, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-1 {
    width: 8.3333333333%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-2 {
    width: 16.6666666667%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-3 {
    width: 25%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-4 {
    width: 33.3333333333%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-5 {
    width: 41.6666666667%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-6 {
    width: 50%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-7 {
    width: 58.3333333333%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-8 {
    width: 66.6666666667%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-9 {
    width: 75%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-10 {
    width: 83.3333333333%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-11 {
    width: 91.6666666667%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-12 {
    width: 100%;
  }
  /* line 55, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-0 {
    right: auto;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-1 {
    right: 8.3333333333%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-2 {
    right: 16.6666666667%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-3 {
    right: 25%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-4 {
    right: 33.3333333333%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-5 {
    right: 41.6666666667%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-6 {
    right: 50%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-7 {
    right: 58.3333333333%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-8 {
    right: 66.6666666667%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-9 {
    right: 75%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-10 {
    right: 83.3333333333%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-11 {
    right: 91.6666666667%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-12 {
    right: 100%;
  }
  /* line 45, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-0 {
    left: auto;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-1 {
    left: 8.3333333333%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-2 {
    left: 16.6666666667%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-3 {
    left: 25%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-4 {
    left: 33.3333333333%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-5 {
    left: 41.6666666667%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-6 {
    left: 50%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-7 {
    left: 58.3333333333%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-8 {
    left: 66.6666666667%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-9 {
    left: 75%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-10 {
    left: 83.3333333333%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-11 {
    left: 91.6666666667%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-12 {
    left: 100%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 992px) {
  /* line 27, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-1 {
    width: 8.3333333333%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-2 {
    width: 16.6666666667%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-3 {
    width: 25%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-4 {
    width: 33.3333333333%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-5 {
    width: 41.6666666667%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-6 {
    width: 50%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-7 {
    width: 58.3333333333%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-8 {
    width: 66.6666666667%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-9 {
    width: 75%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-10 {
    width: 83.3333333333%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-11 {
    width: 91.6666666667%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-12 {
    width: 100%;
  }
  /* line 55, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-0 {
    right: auto;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-1 {
    right: 8.3333333333%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-2 {
    right: 16.6666666667%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-3 {
    right: 25%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-4 {
    right: 33.3333333333%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-5 {
    right: 41.6666666667%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-6 {
    right: 50%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-7 {
    right: 58.3333333333%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-8 {
    right: 66.6666666667%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-9 {
    right: 75%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-10 {
    right: 83.3333333333%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-11 {
    right: 91.6666666667%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-12 {
    right: 100%;
  }
  /* line 45, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-0 {
    left: auto;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-1 {
    left: 8.3333333333%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-2 {
    left: 16.6666666667%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-3 {
    left: 25%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-4 {
    left: 33.3333333333%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-5 {
    left: 41.6666666667%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-6 {
    left: 50%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-7 {
    left: 58.3333333333%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-8 {
    left: 66.6666666667%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-9 {
    left: 75%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-10 {
    left: 83.3333333333%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-11 {
    left: 91.6666666667%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-12 {
    left: 100%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-0 {
    margin-left: 0%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-3 {
    margin-left: 25%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-6 {
    margin-left: 50%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-9 {
    margin-left: 75%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 1200px) {
  /* line 27, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-1 {
    width: 8.3333333333%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-2 {
    width: 16.6666666667%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-3 {
    width: 25%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-4 {
    width: 33.3333333333%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-5 {
    width: 41.6666666667%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-6 {
    width: 50%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-7 {
    width: 58.3333333333%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-8 {
    width: 66.6666666667%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-9 {
    width: 75%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-10 {
    width: 83.3333333333%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-11 {
    width: 91.6666666667%;
  }
  /* line 35, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-12 {
    width: 100%;
  }
  /* line 55, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-0 {
    right: auto;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-1 {
    right: 8.3333333333%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-2 {
    right: 16.6666666667%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-3 {
    right: 25%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-4 {
    right: 33.3333333333%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-5 {
    right: 41.6666666667%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-6 {
    right: 50%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-7 {
    right: 58.3333333333%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-8 {
    right: 66.6666666667%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-9 {
    right: 75%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-10 {
    right: 83.3333333333%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-11 {
    right: 91.6666666667%;
  }
  /* line 50, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-12 {
    right: 100%;
  }
  /* line 45, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-0 {
    left: auto;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-1 {
    left: 8.3333333333%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-2 {
    left: 16.6666666667%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-3 {
    left: 25%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-4 {
    left: 33.3333333333%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-5 {
    left: 41.6666666667%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-6 {
    left: 50%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-7 {
    left: 58.3333333333%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-8 {
    left: 66.6666666667%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-9 {
    left: 75%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-10 {
    left: 83.3333333333%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-11 {
    left: 91.6666666667%;
  }
  /* line 40, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-12 {
    left: 100%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  /* line 60, vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}

/* line 6, vendor/assets/stylesheets/bootstrap/_tables.scss */
table {
  background-color: transparent;
}

/* line 9, vendor/assets/stylesheets/bootstrap/_tables.scss */
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #b4bcc2;
  text-align: left;
}

/* line 15, vendor/assets/stylesheets/bootstrap/_tables.scss */
th {
  text-align: left;
}

/* line 22, vendor/assets/stylesheets/bootstrap/_tables.scss */
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 22px;
}

/* line 31, vendor/assets/stylesheets/bootstrap/_tables.scss */
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.428571429;
  vertical-align: top;
  border-top: 1px solid #ecf0f1;
}

/* line 41, vendor/assets/stylesheets/bootstrap/_tables.scss */
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ecf0f1;
}

/* line 50, vendor/assets/stylesheets/bootstrap/_tables.scss */
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

/* line 57, vendor/assets/stylesheets/bootstrap/_tables.scss */
.table > tbody + tbody {
  border-top: 2px solid #ecf0f1;
}

/* line 62, vendor/assets/stylesheets/bootstrap/_tables.scss */
.table .table {
  background-color: #ececec;
}

/* line 75, vendor/assets/stylesheets/bootstrap/_tables.scss */
.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}

/* line 88, vendor/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered {
  border: 1px solid #ecf0f1;
}

/* line 94, vendor/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ecf0f1;
}

/* line 101, vendor/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

/* line 114, vendor/assets/stylesheets/bootstrap/_tables.scss */
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

/* line 125, vendor/assets/stylesheets/bootstrap/_tables.scss */
.table-hover > tbody > tr:hover {
  background-color: #ecf0f1;
}

/* line 135, vendor/assets/stylesheets/bootstrap/_tables.scss */
table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}

/* line 143, vendor/assets/stylesheets/bootstrap/_tables.scss */
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}

/* line 9, vendor/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.active,
.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #ecf0f1;
}

/* line 17, vendor/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {
  background-color: #dde4e6;
}

/* line 9, vendor/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.success,
.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #820560;
}

/* line 17, vendor/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {
  background-color: #69044e;
}

/* line 9, vendor/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.info,
.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #3498DB;
}

/* line 17, vendor/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {
  background-color: #258cd1;
}

/* line 9, vendor/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.warning,
.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #F39C12;
}

/* line 17, vendor/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
  background-color: #e08e0b;
}

/* line 9, vendor/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.danger,
.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #E74C3C;
}

/* line 17, vendor/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th {
  background-color: #e43725;
}

/* line 171, vendor/assets/stylesheets/bootstrap/_tables.scss */
.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}

@media screen and (max-width: 767px) {
  /* line 171, vendor/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive {
    width: 100%;
    margin-bottom: 16.5px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ecf0f1;
  }
  /* line 183, vendor/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table {
    margin-bottom: 0;
  }
  /* line 191, vendor/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table > thead > tr > th,
.table-responsive > .table > thead > tr > td,
.table-responsive > .table > tbody > tr > th,
.table-responsive > .table > tbody > tr > td,
.table-responsive > .table > tfoot > tr > th,
.table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  /* line 200, vendor/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table-bordered {
    border: 0;
  }
  /* line 208, vendor/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > thead > tr > th:first-child,
.table-responsive > .table-bordered > thead > tr > td:first-child,
.table-responsive > .table-bordered > tbody > tr > th:first-child,
.table-responsive > .table-bordered > tbody > tr > td:first-child,
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
.table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  /* line 212, vendor/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > thead > tr > th:last-child,
.table-responsive > .table-bordered > thead > tr > td:last-child,
.table-responsive > .table-bordered > tbody > tr > th:last-child,
.table-responsive > .table-bordered > tbody > tr > td:last-child,
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
.table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  /* line 225, vendor/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
.table-responsive > .table-bordered > tbody > tr:last-child > td,
.table-responsive > .table-bordered > tfoot > tr:last-child > th,
.table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

/* line 10, vendor/assets/stylesheets/bootstrap/_forms.scss */
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

/* line 20, vendor/assets/stylesheets/bootstrap/_forms.scss */
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 22px;
  font-size: 24px;
  line-height: inherit;
  color: #25292c;
  border: 0;
  border-bottom: 1px solid transparent;
}

/* line 32, vendor/assets/stylesheets/bootstrap/_forms.scss */
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}

/* line 47, vendor/assets/stylesheets/bootstrap/_forms.scss */
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 52, vendor/assets/stylesheets/bootstrap/_forms.scss */
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}

/* line 59, vendor/assets/stylesheets/bootstrap/_forms.scss */
input[type="file"] {
  display: block;
}

/* line 64, vendor/assets/stylesheets/bootstrap/_forms.scss */
input[type="range"] {
  display: block;
  width: 100%;
}

/* line 70, vendor/assets/stylesheets/bootstrap/_forms.scss */
select[multiple],
select[size] {
  height: auto;
}

/* line 76, vendor/assets/stylesheets/bootstrap/_forms.scss */
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 83, vendor/assets/stylesheets/bootstrap/_forms.scss */
output {
  display: block;
  padding-top: 11px;
  font-size: 16px;
  line-height: 1.428571429;
  color: #25292c;
}

/* line 114, vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-control, .cinema-select .chosen-container-single .chosen-search input[type="text"], .edit_user .chosen-container-single .chosen-search input[type="text"], .partner-form .chosen-container-single .chosen-search input[type="text"] {
  display: block;
  width: 100%;
  height: 46px;
  padding: 10px 15px;
  font-size: 16px;
  line-height: 1.428571429;
  color: #25292c;
  background-color: #fff;
  background-image: none;
  border: 1px solid #dce4ec;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

/* line 57, vendor/assets/stylesheets/bootstrap/mixins/_forms.scss */
.form-control:focus, .cinema-select .chosen-container-single .chosen-search input[type="text"]:focus, .edit_user .chosen-container-single .chosen-search input[type="text"]:focus, .partner-form .chosen-container-single .chosen-search input[type="text"]:focus {
  border-color: #820560;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(130, 5, 96, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(130, 5, 96, 0.6);
}

/* line 103, vendor/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
.form-control::-moz-placeholder, .cinema-select .chosen-container-single .chosen-search input[type="text"]::-moz-placeholder, .edit_user .chosen-container-single .chosen-search input[type="text"]::-moz-placeholder, .partner-form .chosen-container-single .chosen-search input[type="text"]::-moz-placeholder {
  color: #acb6c0;
  opacity: 1;
}

/* line 107, vendor/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
.form-control:-ms-input-placeholder, .cinema-select .chosen-container-single .chosen-search input[type="text"]:-ms-input-placeholder, .edit_user .chosen-container-single .chosen-search input[type="text"]:-ms-input-placeholder, .partner-form .chosen-container-single .chosen-search input[type="text"]:-ms-input-placeholder {
  color: #acb6c0;
}

/* line 108, vendor/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
.form-control::-webkit-input-placeholder, .cinema-select .chosen-container-single .chosen-search input[type="text"]::-webkit-input-placeholder, .edit_user .chosen-container-single .chosen-search input[type="text"]::-webkit-input-placeholder, .partner-form .chosen-container-single .chosen-search input[type="text"]::-webkit-input-placeholder {
  color: #acb6c0;
}

/* line 136, vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-control::-ms-expand, .cinema-select .chosen-container-single .chosen-search input[type="text"]::-ms-expand, .edit_user .chosen-container-single .chosen-search input[type="text"]::-ms-expand, .partner-form .chosen-container-single .chosen-search input[type="text"]::-ms-expand {
  border: 0;
  background-color: transparent;
}

/* line 146, vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-control[disabled], .cinema-select .chosen-container-single .chosen-search input[disabled][type="text"], .edit_user .chosen-container-single .chosen-search input[disabled][type="text"], .partner-form .chosen-container-single .chosen-search input[disabled][type="text"], .form-control[readonly], .cinema-select .chosen-container-single .chosen-search input[readonly][type="text"], .edit_user .chosen-container-single .chosen-search input[readonly][type="text"], .partner-form .chosen-container-single .chosen-search input[readonly][type="text"], fieldset[disabled] .form-control, fieldset[disabled] .cinema-select .chosen-container-single .chosen-search input[type="text"], .cinema-select .chosen-container-single .chosen-search fieldset[disabled] input[type="text"], fieldset[disabled] .edit_user .chosen-container-single .chosen-search input[type="text"], .edit_user .chosen-container-single .chosen-search fieldset[disabled] input[type="text"], fieldset[disabled] .partner-form .chosen-container-single .chosen-search input[type="text"], .partner-form .chosen-container-single .chosen-search fieldset[disabled] input[type="text"] {
  background-color: #ecf0f1;
  opacity: 1;
}

/* line 153, vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-control[disabled], .cinema-select .chosen-container-single .chosen-search input[disabled][type="text"], .edit_user .chosen-container-single .chosen-search input[disabled][type="text"], .partner-form .chosen-container-single .chosen-search input[disabled][type="text"], fieldset[disabled] .form-control, fieldset[disabled] .cinema-select .chosen-container-single .chosen-search input[type="text"], .cinema-select .chosen-container-single .chosen-search fieldset[disabled] input[type="text"], fieldset[disabled] .edit_user .chosen-container-single .chosen-search input[type="text"], .edit_user .chosen-container-single .chosen-search fieldset[disabled] input[type="text"], fieldset[disabled] .partner-form .chosen-container-single .chosen-search input[type="text"], .partner-form .chosen-container-single .chosen-search fieldset[disabled] input[type="text"] {
  cursor: not-allowed;
}

/* line 162, vendor/assets/stylesheets/bootstrap/_forms.scss */
textarea.form-control {
  height: auto;
}

/* line 174, vendor/assets/stylesheets/bootstrap/_forms.scss */
input[type="search"] {
  -webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* line 193, vendor/assets/stylesheets/bootstrap/_forms.scss */
  input.form-control[type="date"], .cinema-select .chosen-container-single .chosen-search input[type="date"][type="text"], .edit_user .chosen-container-single .chosen-search input[type="date"][type="text"], .partner-form .chosen-container-single .chosen-search input[type="date"][type="text"],
input.form-control[type="time"],
.cinema-select .chosen-container-single .chosen-search input[type="time"][type="text"],
.edit_user .chosen-container-single .chosen-search input[type="time"][type="text"],
.partner-form .chosen-container-single .chosen-search input[type="time"][type="text"],
input.form-control[type="datetime-local"],
.cinema-select .chosen-container-single .chosen-search input[type="datetime-local"][type="text"],
.edit_user .chosen-container-single .chosen-search input[type="datetime-local"][type="text"],
.partner-form .chosen-container-single .chosen-search input[type="datetime-local"][type="text"],
input.form-control[type="month"],
.cinema-select .chosen-container-single .chosen-search input[type="month"][type="text"],
.edit_user .chosen-container-single .chosen-search input[type="month"][type="text"],
.partner-form .chosen-container-single .chosen-search input[type="month"][type="text"] {
    line-height: 46px;
  }
  /* line 197, vendor/assets/stylesheets/bootstrap/_forms.scss */
  input.input-sm[type="date"], .input-group-sm > .form-control[type="date"], .cinema-select .chosen-container-single .chosen-search .input-group-sm > input[type="date"][type="text"], .edit_user .chosen-container-single .chosen-search .input-group-sm > input[type="date"][type="text"], .partner-form .chosen-container-single .chosen-search .input-group-sm > input[type="date"][type="text"],
.input-group-sm > .input-group-addon[type="date"],
.input-group-sm > .input-group-btn > .btn[type="date"], .input-group-sm input[type="date"],
input.input-sm[type="time"],
.input-group-sm > .form-control[type="time"],
.cinema-select .chosen-container-single .chosen-search .input-group-sm > input[type="time"][type="text"],
.edit_user .chosen-container-single .chosen-search .input-group-sm > input[type="time"][type="text"],
.partner-form .chosen-container-single .chosen-search .input-group-sm > input[type="time"][type="text"],
.input-group-sm > .input-group-addon[type="time"],
.input-group-sm > .input-group-btn > .btn[type="time"], .input-group-sm input[type="time"],
input.input-sm[type="datetime-local"],
.input-group-sm > .form-control[type="datetime-local"],
.cinema-select .chosen-container-single .chosen-search .input-group-sm > input[type="datetime-local"][type="text"],
.edit_user .chosen-container-single .chosen-search .input-group-sm > input[type="datetime-local"][type="text"],
.partner-form .chosen-container-single .chosen-search .input-group-sm > input[type="datetime-local"][type="text"],
.input-group-sm > .input-group-addon[type="datetime-local"],
.input-group-sm > .input-group-btn > .btn[type="datetime-local"], .input-group-sm input[type="datetime-local"],
input.input-sm[type="month"],
.input-group-sm > .form-control[type="month"],
.cinema-select .chosen-container-single .chosen-search .input-group-sm > input[type="month"][type="text"],
.edit_user .chosen-container-single .chosen-search .input-group-sm > input[type="month"][type="text"],
.partner-form .chosen-container-single .chosen-search .input-group-sm > input[type="month"][type="text"],
.input-group-sm > .input-group-addon[type="month"],
.input-group-sm > .input-group-btn > .btn[type="month"], .input-group-sm input[type="month"] {
    line-height: 37px;
  }
  /* line 202, vendor/assets/stylesheets/bootstrap/_forms.scss */
  input.input-lg[type="date"], .input-group-lg > .form-control[type="date"], .cinema-select .chosen-container-single .chosen-search .input-group-lg > input[type="date"][type="text"], .edit_user .chosen-container-single .chosen-search .input-group-lg > input[type="date"][type="text"], .partner-form .chosen-container-single .chosen-search .input-group-lg > input[type="date"][type="text"],
.input-group-lg > .input-group-addon[type="date"],
.input-group-lg > .input-group-btn > .btn[type="date"], .input-group-lg input[type="date"],
input.input-lg[type="time"],
.input-group-lg > .form-control[type="time"],
.cinema-select .chosen-container-single .chosen-search .input-group-lg > input[type="time"][type="text"],
.edit_user .chosen-container-single .chosen-search .input-group-lg > input[type="time"][type="text"],
.partner-form .chosen-container-single .chosen-search .input-group-lg > input[type="time"][type="text"],
.input-group-lg > .input-group-addon[type="time"],
.input-group-lg > .input-group-btn > .btn[type="time"], .input-group-lg input[type="time"],
input.input-lg[type="datetime-local"],
.input-group-lg > .form-control[type="datetime-local"],
.cinema-select .chosen-container-single .chosen-search .input-group-lg > input[type="datetime-local"][type="text"],
.edit_user .chosen-container-single .chosen-search .input-group-lg > input[type="datetime-local"][type="text"],
.partner-form .chosen-container-single .chosen-search .input-group-lg > input[type="datetime-local"][type="text"],
.input-group-lg > .input-group-addon[type="datetime-local"],
.input-group-lg > .input-group-btn > .btn[type="datetime-local"], .input-group-lg input[type="datetime-local"],
input.input-lg[type="month"],
.input-group-lg > .form-control[type="month"],
.cinema-select .chosen-container-single .chosen-search .input-group-lg > input[type="month"][type="text"],
.edit_user .chosen-container-single .chosen-search .input-group-lg > input[type="month"][type="text"],
.partner-form .chosen-container-single .chosen-search .input-group-lg > input[type="month"][type="text"],
.input-group-lg > .input-group-addon[type="month"],
.input-group-lg > .input-group-btn > .btn[type="month"], .input-group-lg input[type="month"] {
    line-height: 67px;
  }
}

/* line 215, vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-group {
  margin-bottom: 15px;
}

/* line 224, vendor/assets/stylesheets/bootstrap/_forms.scss */
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 231, vendor/assets/stylesheets/bootstrap/_forms.scss */
.radio label,
.checkbox label {
  min-height: 22px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

/* line 239, vendor/assets/stylesheets/bootstrap/_forms.scss */
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9;
}

/* line 248, vendor/assets/stylesheets/bootstrap/_forms.scss */
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

/* line 254, vendor/assets/stylesheets/bootstrap/_forms.scss */
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}

/* line 264, vendor/assets/stylesheets/bootstrap/_forms.scss */
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

/* line 276, vendor/assets/stylesheets/bootstrap/_forms.scss */
input[type="radio"][disabled], input.disabled[type="radio"], fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input.disabled[type="checkbox"], fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}

/* line 285, vendor/assets/stylesheets/bootstrap/_forms.scss */
.radio-inline.disabled, fieldset[disabled] .radio-inline,
.checkbox-inline.disabled, fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}

/* line 295, vendor/assets/stylesheets/bootstrap/_forms.scss */
.radio.disabled label, fieldset[disabled] .radio label,
.checkbox.disabled label, fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}

/* line 307, vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-control-static {
  padding-top: 11px;
  padding-bottom: 11px;
  margin-bottom: 0;
  min-height: 38px;
}

/* line 315, vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control, .cinema-select .chosen-container-single .chosen-search .input-group-lg > input.form-control-static[type="text"], .edit_user .chosen-container-single .chosen-search .input-group-lg > input.form-control-static[type="text"], .partner-form .chosen-container-single .chosen-search .input-group-lg > input.form-control-static[type="text"],
.input-group-lg > .form-control-static.input-group-addon,
.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control, .cinema-select .chosen-container-single .chosen-search .input-group-sm > input.form-control-static[type="text"], .edit_user .chosen-container-single .chosen-search .input-group-sm > input.form-control-static[type="text"], .partner-form .chosen-container-single .chosen-search .input-group-sm > input.form-control-static[type="text"],
.input-group-sm > .form-control-static.input-group-addon,
.input-group-sm > .input-group-btn > .form-control-static.btn {
  padding-left: 0;
  padding-right: 0;
}

/* line 71, vendor/assets/stylesheets/bootstrap/mixins/_forms.scss */
.input-sm, .input-group-sm > .form-control, .cinema-select .chosen-container-single .chosen-search .input-group-sm > input[type="text"], .edit_user .chosen-container-single .chosen-search .input-group-sm > input[type="text"], .partner-form .chosen-container-single .chosen-search .input-group-sm > input[type="text"],
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 37px;
  padding: 6px 9px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 79, vendor/assets/stylesheets/bootstrap/mixins/_forms.scss */
select.input-sm, .input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
  height: 37px;
  line-height: 37px;
}

/* line 84, vendor/assets/stylesheets/bootstrap/mixins/_forms.scss */
textarea.input-sm, .input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
select.input-sm[multiple],
.input-group-sm > .form-control[multiple],
.cinema-select .chosen-container-single .chosen-search .input-group-sm > input[multiple][type="text"],
.edit_user .chosen-container-single .chosen-search .input-group-sm > input[multiple][type="text"],
.partner-form .chosen-container-single .chosen-search .input-group-sm > input[multiple][type="text"],
.input-group-sm > .input-group-addon[multiple],
.input-group-sm > .input-group-btn > .btn[multiple] {
  height: auto;
}

/* line 333, vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-group-sm .form-control, .form-group-sm .cinema-select .chosen-container-single .chosen-search input[type="text"], .cinema-select .chosen-container-single .chosen-search .form-group-sm input[type="text"], .form-group-sm .edit_user .chosen-container-single .chosen-search input[type="text"], .edit_user .chosen-container-single .chosen-search .form-group-sm input[type="text"], .form-group-sm .partner-form .chosen-container-single .chosen-search input[type="text"], .partner-form .chosen-container-single .chosen-search .form-group-sm input[type="text"] {
  height: 37px;
  padding: 6px 9px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 340, vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-group-sm select.form-control {
  height: 37px;
  line-height: 37px;
}

/* line 344, vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-group-sm textarea.form-control,
.form-group-sm select.form-control[multiple],
.form-group-sm .cinema-select .chosen-container-single .chosen-search input[multiple][type="text"],
.cinema-select .chosen-container-single .chosen-search .form-group-sm input[multiple][type="text"],
.form-group-sm .edit_user .chosen-container-single .chosen-search input[multiple][type="text"],
.edit_user .chosen-container-single .chosen-search .form-group-sm input[multiple][type="text"],
.form-group-sm .partner-form .chosen-container-single .chosen-search input[multiple][type="text"],
.partner-form .chosen-container-single .chosen-search .form-group-sm input[multiple][type="text"] {
  height: auto;
}

/* line 348, vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-group-sm .form-control-static {
  height: 37px;
  min-height: 36px;
  padding: 7px 9px;
  font-size: 14px;
  line-height: 1.5;
}

/* line 71, vendor/assets/stylesheets/bootstrap/mixins/_forms.scss */
.input-lg, .input-group-lg > .form-control, .cinema-select .chosen-container-single .chosen-search .input-group-lg > input[type="text"], .edit_user .chosen-container-single .chosen-search .input-group-lg > input[type="text"], .partner-form .chosen-container-single .chosen-search .input-group-lg > input[type="text"],
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 67px;
  padding: 18px 27px;
  font-size: 20px;
  line-height: 1.3333333;
  border-radius: 6px;
}

/* line 79, vendor/assets/stylesheets/bootstrap/mixins/_forms.scss */
select.input-lg, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
  height: 67px;
  line-height: 67px;
}

/* line 84, vendor/assets/stylesheets/bootstrap/mixins/_forms.scss */
textarea.input-lg, .input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
select.input-lg[multiple],
.input-group-lg > .form-control[multiple],
.cinema-select .chosen-container-single .chosen-search .input-group-lg > input[multiple][type="text"],
.edit_user .chosen-container-single .chosen-search .input-group-lg > input[multiple][type="text"],
.partner-form .chosen-container-single .chosen-search .input-group-lg > input[multiple][type="text"],
.input-group-lg > .input-group-addon[multiple],
.input-group-lg > .input-group-btn > .btn[multiple] {
  height: auto;
}

/* line 359, vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-group-lg .form-control, .form-group-lg .cinema-select .chosen-container-single .chosen-search input[type="text"], .cinema-select .chosen-container-single .chosen-search .form-group-lg input[type="text"], .form-group-lg .edit_user .chosen-container-single .chosen-search input[type="text"], .edit_user .chosen-container-single .chosen-search .form-group-lg input[type="text"], .form-group-lg .partner-form .chosen-container-single .chosen-search input[type="text"], .partner-form .chosen-container-single .chosen-search .form-group-lg input[type="text"] {
  height: 67px;
  padding: 18px 27px;
  font-size: 20px;
  line-height: 1.3333333;
  border-radius: 6px;
}

/* line 366, vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-group-lg select.form-control {
  height: 67px;
  line-height: 67px;
}

/* line 370, vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-group-lg textarea.form-control,
.form-group-lg select.form-control[multiple],
.form-group-lg .cinema-select .chosen-container-single .chosen-search input[multiple][type="text"],
.cinema-select .chosen-container-single .chosen-search .form-group-lg input[multiple][type="text"],
.form-group-lg .edit_user .chosen-container-single .chosen-search input[multiple][type="text"],
.edit_user .chosen-container-single .chosen-search .form-group-lg input[multiple][type="text"],
.form-group-lg .partner-form .chosen-container-single .chosen-search input[multiple][type="text"],
.partner-form .chosen-container-single .chosen-search .form-group-lg input[multiple][type="text"] {
  height: auto;
}

/* line 374, vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-group-lg .form-control-static {
  height: 67px;
  min-height: 42px;
  padding: 19px 27px;
  font-size: 20px;
  line-height: 1.3333333;
}

/* line 388, vendor/assets/stylesheets/bootstrap/_forms.scss */
.has-feedback {
  position: relative;
}

/* line 393, vendor/assets/stylesheets/bootstrap/_forms.scss */
.has-feedback .form-control, .has-feedback .cinema-select .chosen-container-single .chosen-search input[type="text"], .cinema-select .chosen-container-single .chosen-search .has-feedback input[type="text"], .has-feedback .edit_user .chosen-container-single .chosen-search input[type="text"], .edit_user .chosen-container-single .chosen-search .has-feedback input[type="text"], .has-feedback .partner-form .chosen-container-single .chosen-search input[type="text"], .partner-form .chosen-container-single .chosen-search .has-feedback input[type="text"] {
  padding-right: 57.5px;
}

/* line 398, vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  pointer-events: none;
}

/* line 410, vendor/assets/stylesheets/bootstrap/_forms.scss */
.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, .cinema-select .chosen-container-single .chosen-search .input-group-lg > input[type="text"] + .form-control-feedback, .edit_user .chosen-container-single .chosen-search .input-group-lg > input[type="text"] + .form-control-feedback, .partner-form .chosen-container-single .chosen-search .input-group-lg > input[type="text"] + .form-control-feedback,
.input-group-lg > .input-group-addon + .form-control-feedback,
.input-group-lg > .input-group-btn > .btn + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback,
.form-group-lg .cinema-select .chosen-container-single .chosen-search input[type="text"] + .form-control-feedback,
.cinema-select .chosen-container-single .chosen-search .form-group-lg input[type="text"] + .form-control-feedback,
.form-group-lg .edit_user .chosen-container-single .chosen-search input[type="text"] + .form-control-feedback,
.edit_user .chosen-container-single .chosen-search .form-group-lg input[type="text"] + .form-control-feedback,
.form-group-lg .partner-form .chosen-container-single .chosen-search input[type="text"] + .form-control-feedback,
.partner-form .chosen-container-single .chosen-search .form-group-lg input[type="text"] + .form-control-feedback {
  width: 67px;
  height: 67px;
  line-height: 67px;
}

/* line 417, vendor/assets/stylesheets/bootstrap/_forms.scss */
.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, .cinema-select .chosen-container-single .chosen-search .input-group-sm > input[type="text"] + .form-control-feedback, .edit_user .chosen-container-single .chosen-search .input-group-sm > input[type="text"] + .form-control-feedback, .partner-form .chosen-container-single .chosen-search .input-group-sm > input[type="text"] + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback,
.form-group-sm .cinema-select .chosen-container-single .chosen-search input[type="text"] + .form-control-feedback,
.cinema-select .chosen-container-single .chosen-search .form-group-sm input[type="text"] + .form-control-feedback,
.form-group-sm .edit_user .chosen-container-single .chosen-search input[type="text"] + .form-control-feedback,
.edit_user .chosen-container-single .chosen-search .form-group-sm input[type="text"] + .form-control-feedback,
.form-group-sm .partner-form .chosen-container-single .chosen-search input[type="text"] + .form-control-feedback,
.partner-form .chosen-container-single .chosen-search .form-group-sm input[type="text"] + .form-control-feedback {
  width: 37px;
  height: 37px;
  line-height: 37px;
}

/* line 8, vendor/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
  color: #fff;
}

/* line 21, vendor/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .form-control, .has-success .cinema-select .chosen-container-single .chosen-search input[type="text"], .cinema-select .chosen-container-single .chosen-search .has-success input[type="text"], .has-success .edit_user .chosen-container-single .chosen-search input[type="text"], .edit_user .chosen-container-single .chosen-search .has-success input[type="text"], .has-success .partner-form .chosen-container-single .chosen-search input[type="text"], .partner-form .chosen-container-single .chosen-search .has-success input[type="text"] {
  border-color: #fff;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 24, vendor/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .form-control:focus, .has-success .cinema-select .chosen-container-single .chosen-search input[type="text"]:focus, .cinema-select .chosen-container-single .chosen-search .has-success input[type="text"]:focus, .has-success .edit_user .chosen-container-single .chosen-search input[type="text"]:focus, .edit_user .chosen-container-single .chosen-search .has-success input[type="text"]:focus, .has-success .partner-form .chosen-container-single .chosen-search input[type="text"]:focus, .partner-form .chosen-container-single .chosen-search .has-success input[type="text"]:focus {
  border-color: #e6e6e6;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
}

/* line 31, vendor/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .input-group-addon {
  color: #fff;
  border-color: #fff;
  background-color: #820560;
}

/* line 37, vendor/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .form-control-feedback {
  color: #fff;
}

/* line 8, vendor/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
  color: #fff;
}

/* line 21, vendor/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .form-control, .has-warning .cinema-select .chosen-container-single .chosen-search input[type="text"], .cinema-select .chosen-container-single .chosen-search .has-warning input[type="text"], .has-warning .edit_user .chosen-container-single .chosen-search input[type="text"], .edit_user .chosen-container-single .chosen-search .has-warning input[type="text"], .has-warning .partner-form .chosen-container-single .chosen-search input[type="text"], .partner-form .chosen-container-single .chosen-search .has-warning input[type="text"] {
  border-color: #fff;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 24, vendor/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .form-control:focus, .has-warning .cinema-select .chosen-container-single .chosen-search input[type="text"]:focus, .cinema-select .chosen-container-single .chosen-search .has-warning input[type="text"]:focus, .has-warning .edit_user .chosen-container-single .chosen-search input[type="text"]:focus, .edit_user .chosen-container-single .chosen-search .has-warning input[type="text"]:focus, .has-warning .partner-form .chosen-container-single .chosen-search input[type="text"]:focus, .partner-form .chosen-container-single .chosen-search .has-warning input[type="text"]:focus {
  border-color: #e6e6e6;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
}

/* line 31, vendor/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .input-group-addon {
  color: #fff;
  border-color: #fff;
  background-color: #F39C12;
}

/* line 37, vendor/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .form-control-feedback {
  color: #fff;
}

/* line 8, vendor/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
  color: #fff;
}

/* line 21, vendor/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .form-control, .has-error .cinema-select .chosen-container-single .chosen-search input[type="text"], .cinema-select .chosen-container-single .chosen-search .has-error input[type="text"], .has-error .edit_user .chosen-container-single .chosen-search input[type="text"], .edit_user .chosen-container-single .chosen-search .has-error input[type="text"], .has-error .partner-form .chosen-container-single .chosen-search input[type="text"], .partner-form .chosen-container-single .chosen-search .has-error input[type="text"] {
  border-color: #fff;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 24, vendor/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .form-control:focus, .has-error .cinema-select .chosen-container-single .chosen-search input[type="text"]:focus, .cinema-select .chosen-container-single .chosen-search .has-error input[type="text"]:focus, .has-error .edit_user .chosen-container-single .chosen-search input[type="text"]:focus, .edit_user .chosen-container-single .chosen-search .has-error input[type="text"]:focus, .has-error .partner-form .chosen-container-single .chosen-search input[type="text"]:focus, .partner-form .chosen-container-single .chosen-search .has-error input[type="text"]:focus {
  border-color: #e6e6e6;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
}

/* line 31, vendor/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .input-group-addon {
  color: #fff;
  border-color: #fff;
  background-color: #E74C3C;
}

/* line 37, vendor/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .form-control-feedback {
  color: #fff;
}

/* line 439, vendor/assets/stylesheets/bootstrap/_forms.scss */
.has-feedback label ~ .form-control-feedback {
  top: 27px;
}

/* line 442, vendor/assets/stylesheets/bootstrap/_forms.scss */
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

/* line 453, vendor/assets/stylesheets/bootstrap/_forms.scss */
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #5f6a71;
}

@media (min-width: 768px) {
  /* line 478, vendor/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 485, vendor/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-control, .form-inline .cinema-select .chosen-container-single .chosen-search input[type="text"], .cinema-select .chosen-container-single .chosen-search .form-inline input[type="text"], .form-inline .edit_user .chosen-container-single .chosen-search input[type="text"], .edit_user .chosen-container-single .chosen-search .form-inline input[type="text"], .form-inline .partner-form .chosen-container-single .chosen-search input[type="text"], .partner-form .chosen-container-single .chosen-search .form-inline input[type="text"] {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 492, vendor/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-control-static {
    display: inline-block;
  }
  /* line 496, vendor/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  /* line 500, vendor/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .input-group .input-group-addon,
.form-inline .input-group .input-group-btn,
.form-inline .input-group .form-control,
.form-inline .input-group .cinema-select .chosen-container-single .chosen-search input[type="text"],
.cinema-select .chosen-container-single .chosen-search .form-inline .input-group input[type="text"],
.form-inline .input-group .edit_user .chosen-container-single .chosen-search input[type="text"],
.edit_user .chosen-container-single .chosen-search .form-inline .input-group input[type="text"],
.form-inline .input-group .partner-form .chosen-container-single .chosen-search input[type="text"],
.partner-form .chosen-container-single .chosen-search .form-inline .input-group input[type="text"] {
    width: auto;
  }
  /* line 508, vendor/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .input-group > .form-control, .form-inline .cinema-select .chosen-container-single .chosen-search .input-group > input[type="text"], .cinema-select .chosen-container-single .chosen-search .form-inline .input-group > input[type="text"], .form-inline .edit_user .chosen-container-single .chosen-search .input-group > input[type="text"], .edit_user .chosen-container-single .chosen-search .form-inline .input-group > input[type="text"], .form-inline .partner-form .chosen-container-single .chosen-search .input-group > input[type="text"], .partner-form .chosen-container-single .chosen-search .form-inline .input-group > input[type="text"] {
    width: 100%;
  }
  /* line 512, vendor/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 519, vendor/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .radio,
.form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 526, vendor/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .radio label,
.form-inline .checkbox label {
    padding-left: 0;
  }
  /* line 530, vendor/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  /* line 537, vendor/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

/* line 559, vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 11px;
}

/* line 569, vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 33px;
}

/* line 575, vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}

/* line 14, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
  content: " ";
  display: table;
}

/* line 19, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.form-horizontal .form-group:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 582, vendor/assets/stylesheets/bootstrap/_forms.scss */
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 11px;
  }
}

/* line 593, vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}

@media (min-width: 768px) {
  /* line 603, vendor/assets/stylesheets/bootstrap/_forms.scss */
  .form-horizontal .form-group-lg .control-label {
    padding-top: 19px;
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  /* line 611, vendor/assets/stylesheets/bootstrap/_forms.scss */
  .form-horizontal .form-group-sm .control-label {
    padding-top: 7px;
    font-size: 14px;
  }
}

/* line 9, vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 10px 15px;
  font-size: 16px;
  line-height: 1.428571429;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 26, vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn:focus, .btn.focus, .btn:active:focus, .btn.focus:active, .btn.active:focus, .btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 32, vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn:hover, .btn:focus, .btn.focus {
  color: #fff;
  text-decoration: none;
}

/* line 39, vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn:active, .btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

/* line 46, vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 58, vendor/assets/stylesheets/bootstrap/_buttons.scss */
a.btn.disabled, fieldset[disabled] a.btn {
  pointer-events: none;
}

/* line 68, vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-default {
  color: #fff;
  background-color: #95a5a6;
  border-color: #95a5a6;
}

/* line 11, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:focus, .btn-default.focus {
  color: #fff;
  background-color: #798d8f;
  border-color: #566566;
}

/* line 17, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:hover {
  color: #fff;
  background-color: #798d8f;
  border-color: #74898a;
}

/* line 22, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  color: #fff;
  background-color: #798d8f;
  border-color: #74898a;
}

/* line 29, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:active:hover, .btn-default:active:focus, .btn-default.focus:active, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus {
  color: #fff;
  background-color: #687b7c;
  border-color: #566566;
}

/* line 37, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  background-image: none;
}

/* line 45, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default.focus[disabled], fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus {
  background-color: #95a5a6;
  border-color: #95a5a6;
}

/* line 53, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default .badge {
  color: #95a5a6;
  background-color: #fff;
}

/* line 71, vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-primary {
  color: #fff;
  background-color: #820560;
  border-color: #820560;
}

/* line 11, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #51033c;
  border-color: #070005;
}

/* line 17, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:hover {
  color: #fff;
  background-color: #51033c;
  border-color: #470334;
}

/* line 22, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #51033c;
  border-color: #470334;
}

/* line 29, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary.focus:active, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus {
  color: #fff;
  background-color: #2f0222;
  border-color: #070005;
}

/* line 37, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  background-image: none;
}

/* line 45, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary.focus[disabled], fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus {
  background-color: #820560;
  border-color: #820560;
}

/* line 53, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary .badge {
  color: #820560;
  background-color: #fff;
}

/* line 75, vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-success {
  color: #fff;
  background-color: #18BC9C;
  border-color: #18BC9C;
}

/* line 11, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #128f76;
  border-color: #0a4b3e;
}

/* line 17, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:hover {
  color: #fff;
  background-color: #128f76;
  border-color: #11866f;
}

/* line 22, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #128f76;
  border-color: #11866f;
}

/* line 29, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:active:hover, .btn-success:active:focus, .btn-success.focus:active, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus {
  color: #fff;
  background-color: #0e6f5c;
  border-color: #0a4b3e;
}

/* line 37, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  background-image: none;
}

/* line 45, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success.focus[disabled], fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus {
  background-color: #18BC9C;
  border-color: #18BC9C;
}

/* line 53, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success .badge {
  color: #18BC9C;
  background-color: #fff;
}

/* line 79, vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-info {
  color: #fff;
  background-color: #3498DB;
  border-color: #3498DB;
}

/* line 11, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #217dbb;
  border-color: #16527a;
}

/* line 17, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:hover {
  color: #fff;
  background-color: #217dbb;
  border-color: #2077b2;
}

/* line 22, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #217dbb;
  border-color: #2077b2;
}

/* line 29, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:active:hover, .btn-info:active:focus, .btn-info.focus:active, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus {
  color: #fff;
  background-color: #1c699d;
  border-color: #16527a;
}

/* line 37, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  background-image: none;
}

/* line 45, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info.focus[disabled], fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus {
  background-color: #3498DB;
  border-color: #3498DB;
}

/* line 53, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info .badge {
  color: #3498DB;
  background-color: #fff;
}

/* line 83, vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-warning {
  color: #fff;
  background-color: #F39C12;
  border-color: #F39C12;
}

/* line 11, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:focus, .btn-warning.focus {
  color: #fff;
  background-color: #c87f0a;
  border-color: #7f5006;
}

/* line 17, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:hover {
  color: #fff;
  background-color: #c87f0a;
  border-color: #be780a;
}

/* line 22, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #c87f0a;
  border-color: #be780a;
}

/* line 29, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning.focus:active, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus {
  color: #fff;
  background-color: #a66908;
  border-color: #7f5006;
}

/* line 37, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  background-image: none;
}

/* line 45, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning.focus[disabled], fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus {
  background-color: #F39C12;
  border-color: #F39C12;
}

/* line 53, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning .badge {
  color: #F39C12;
  background-color: #fff;
}

/* line 87, vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-danger {
  color: #fff;
  background-color: #E74C3C;
  border-color: #E74C3C;
}

/* line 11, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #d62c1a;
  border-color: #921e12;
}

/* line 17, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:hover {
  color: #fff;
  background-color: #d62c1a;
  border-color: #cd2a19;
}

/* line 22, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #d62c1a;
  border-color: #cd2a19;
}

/* line 29, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger.focus:active, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus {
  color: #fff;
  background-color: #b62516;
  border-color: #921e12;
}

/* line 37, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  background-image: none;
}

/* line 45, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger.focus[disabled], fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus {
  background-color: #E74C3C;
  border-color: #E74C3C;
}

/* line 53, vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger .badge {
  color: #E74C3C;
  background-color: #fff;
}

/* line 96, vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link {
  color: #820560;
  font-weight: normal;
  border-radius: 0;
}

/* line 101, vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 109, vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}

/* line 115, vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link:hover, .btn-link:focus {
  color: #820560;
  text-decoration: underline;
  background-color: transparent;
}

/* line 123, vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
  color: #b4bcc2;
  text-decoration: none;
}

/* line 135, vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-lg, .btn-group-lg > .btn {
  padding: 18px 27px;
  font-size: 20px;
  line-height: 1.3333333;
  border-radius: 6px;
}

/* line 139, vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-sm, .btn-group-sm > .btn {
  padding: 6px 9px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 143, vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 151, vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-block {
  display: block;
  width: 100%;
}

/* line 157, vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-block + .btn-block {
  margin-top: 5px;
}

/* line 165, vendor/assets/stylesheets/bootstrap/_buttons.scss */
input.btn-block[type="submit"],
input.btn-block[type="reset"],
input.btn-block[type="button"] {
  width: 100%;
}

/* line 10, vendor/assets/stylesheets/bootstrap/_component-animations.scss */
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

/* line 13, vendor/assets/stylesheets/bootstrap/_component-animations.scss */
.fade.in {
  opacity: 1;
}

/* line 18, vendor/assets/stylesheets/bootstrap/_component-animations.scss */
.collapse {
  display: none;
}

/* line 21, vendor/assets/stylesheets/bootstrap/_component-animations.scss */
.collapse.in {
  display: block;
}

/* line 26, vendor/assets/stylesheets/bootstrap/_component-animations.scss */
tr.collapse.in {
  display: table-row;
}

/* line 28, vendor/assets/stylesheets/bootstrap/_component-animations.scss */
tbody.collapse.in {
  display: table-row-group;
}

/* line 30, vendor/assets/stylesheets/bootstrap/_component-animations.scss */
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

/* line 7, vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

/* line 20, vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropup,
.dropdown {
  position: relative;
}

/* line 26, vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-toggle:focus {
  outline: 0;
}

/* line 31, vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 16px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}

/* line 54, vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

/* line 60, vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu .divider {
  height: 1px;
  margin: 10px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

/* line 65, vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.428571429;
  color: #7b8a8b;
  white-space: nowrap;
}

/* line 78, vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #fff;
  background-color: #820560;
}

/* line 88, vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #820560;
}

/* line 103, vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #b4bcc2;
}

/* line 110, vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}

/* line 123, vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.open > .dropdown-menu {
  display: block;
}

/* line 128, vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.open > a {
  outline: 0;
}

/* line 137, vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu-right {
  left: auto;
  right: 0;
}

/* line 147, vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu-left {
  left: 0;
  right: auto;
}

/* line 153, vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #b4bcc2;
  white-space: nowrap;
}

/* line 163, vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}

/* line 173, vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

/* line 186, vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: "";
}

/* line 193, vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  /* line 207, vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  /* line 212, vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}

/* line 6, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

/* line 11, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}

/* line 15, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}

/* line 26, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

/* line 35, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-toolbar {
  margin-left: -5px;
}

/* line 14, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-toolbar:before, .btn-toolbar:after {
  content: " ";
  display: table;
}

/* line 19, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-toolbar:after {
  clear: both;
}

/* line 39, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}

/* line 44, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}

/* line 51, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

/* line 56, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:first-child {
  margin-left: 0;
}

/* line 58, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* line 63, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/* line 69, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-group {
  float: left;
}

/* line 72, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

/* line 76, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* line 81, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/* line 86, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

/* line 105, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}

/* line 109, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}

/* line 116, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

/* line 120, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 127, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn .caret {
  margin-left: 0;
}

/* line 131, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

/* line 136, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px;
}

/* line 145, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}

/* line 14, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table;
}

/* line 19, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-group-vertical > .btn-group:after {
  clear: both;
}

/* line 157, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group > .btn {
  float: none;
}

/* line 162, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

/* line 172, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}

/* line 175, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 179, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 184, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

/* line 188, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 193, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 201, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}

/* line 206, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}

/* line 212, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified > .btn-group .btn {
  width: 100%;
}

/* line 216, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}

/* line 237, vendor/assets/stylesheets/bootstrap/_button-groups.scss */
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

/* line 7, vendor/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

/* line 13, vendor/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}

/* line 19, vendor/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group .form-control, .input-group .cinema-select .chosen-container-single .chosen-search input[type="text"], .cinema-select .chosen-container-single .chosen-search .input-group input[type="text"], .input-group .edit_user .chosen-container-single .chosen-search input[type="text"], .edit_user .chosen-container-single .chosen-search .input-group input[type="text"], .input-group .partner-form .chosen-container-single .chosen-search input[type="text"], .partner-form .chosen-container-single .chosen-search .input-group input[type="text"] {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

/* line 33, vendor/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group .form-control:focus, .input-group .cinema-select .chosen-container-single .chosen-search input[type="text"]:focus, .cinema-select .chosen-container-single .chosen-search .input-group input[type="text"]:focus, .input-group .edit_user .chosen-container-single .chosen-search input[type="text"]:focus, .edit_user .chosen-container-single .chosen-search .input-group input[type="text"]:focus, .input-group .partner-form .chosen-container-single .chosen-search input[type="text"]:focus, .partner-form .chosen-container-single .chosen-search .input-group input[type="text"]:focus {
  z-index: 3;
}

/* line 58, vendor/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon,
.input-group-btn,
.input-group .form-control,
.input-group .cinema-select .chosen-container-single .chosen-search input[type="text"],
.cinema-select .chosen-container-single .chosen-search .input-group input[type="text"],
.input-group .edit_user .chosen-container-single .chosen-search input[type="text"],
.edit_user .chosen-container-single .chosen-search .input-group input[type="text"],
.input-group .partner-form .chosen-container-single .chosen-search input[type="text"],
.partner-form .chosen-container-single .chosen-search .input-group input[type="text"] {
  display: table-cell;
}

/* line 63, vendor/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child),
.input-group .cinema-select .chosen-container-single .chosen-search input[type="text"]:not(:first-child):not(:last-child),
.cinema-select .chosen-container-single .chosen-search .input-group input[type="text"]:not(:first-child):not(:last-child),
.input-group .edit_user .chosen-container-single .chosen-search input[type="text"]:not(:first-child):not(:last-child),
.edit_user .chosen-container-single .chosen-search .input-group input[type="text"]:not(:first-child):not(:last-child),
.input-group .partner-form .chosen-container-single .chosen-search input[type="text"]:not(:first-child):not(:last-child),
.partner-form .chosen-container-single .chosen-search .input-group input[type="text"]:not(:first-child):not(:last-child) {
  border-radius: 0;
}

/* line 68, vendor/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

/* line 77, vendor/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon {
  padding: 10px 15px;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  color: #25292c;
  text-align: center;
  background-color: #ecf0f1;
  border: 1px solid #dce4ec;
  border-radius: 4px;
}

/* line 89, vendor/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon.input-sm,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .input-group-addon.btn {
  padding: 6px 9px;
  font-size: 14px;
  border-radius: 3px;
}

/* line 94, vendor/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon.input-lg,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .input-group-addon.btn {
  padding: 18px 27px;
  font-size: 20px;
  border-radius: 6px;
}

/* line 101, vendor/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}

/* line 108, vendor/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group .form-control:first-child, .input-group .cinema-select .chosen-container-single .chosen-search input[type="text"]:first-child, .cinema-select .chosen-container-single .chosen-search .input-group input[type="text"]:first-child, .input-group .edit_user .chosen-container-single .chosen-search input[type="text"]:first-child, .edit_user .chosen-container-single .chosen-search .input-group input[type="text"]:first-child, .input-group .partner-form .chosen-container-single .chosen-search input[type="text"]:first-child, .partner-form .chosen-container-single .chosen-search .input-group input[type="text"]:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* line 117, vendor/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon:first-child {
  border-right: 0;
}

/* line 120, vendor/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group .form-control:last-child, .input-group .cinema-select .chosen-container-single .chosen-search input[type="text"]:last-child, .cinema-select .chosen-container-single .chosen-search .input-group input[type="text"]:last-child, .input-group .edit_user .chosen-container-single .chosen-search input[type="text"]:last-child, .edit_user .chosen-container-single .chosen-search .input-group input[type="text"]:last-child, .input-group .partner-form .chosen-container-single .chosen-search input[type="text"]:last-child, .partner-form .chosen-container-single .chosen-search .input-group input[type="text"]:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/* line 129, vendor/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon:last-child {
  border-left: 0;
}

/* line 135, vendor/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}

/* line 144, vendor/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn > .btn {
  position: relative;
}

/* line 146, vendor/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}

/* line 150, vendor/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
  z-index: 2;
}

/* line 159, vendor/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}

/* line 165, vendor/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}

/* line 9, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

/* line 14, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.nav:before, .nav:after {
  content: " ";
  display: table;
}

/* line 19, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.nav:after {
  clear: both;
}

/* line 15, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav > li {
  position: relative;
  display: block;
}

/* line 19, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}

/* line 23, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: #ecf0f1;
}

/* line 31, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav > li.disabled > a {
  color: #b4bcc2;
}

/* line 34, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: #b4bcc2;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}

/* line 46, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: #ecf0f1;
  border-color: #820560;
}

/* line 59, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav .nav-divider {
  height: 1px;
  margin: 10px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

/* line 66, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a > img {
  max-width: none;
}

/* line 76, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs {
  border-bottom: 1px solid #ecf0f1;
}

/* line 78, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}

/* line 84, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.428571429;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

/* line 89, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li > a:hover {
  border-color: #ecf0f1 #ecf0f1 #ecf0f1;
}

/* line 96, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #820560;
  background-color: #ececec;
  border: 1px solid #ecf0f1;
  border-bottom-color: transparent;
  cursor: default;
}

/* line 118, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li {
  float: left;
}

/* line 122, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li > a {
  border-radius: 4px;
}

/* line 125, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li + li {
  margin-left: 2px;
}

/* line 131, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #820560;
}

/* line 144, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-stacked > li {
  float: none;
}

/* line 146, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

/* line 160, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified, .nav-tabs.nav-justified {
  width: 100%;
}

/* line 163, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified > li, .nav-tabs.nav-justified > li {
  float: none;
}

/* line 165, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}

/* line 171, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

@media (min-width: 768px) {
  /* line 177, vendor/assets/stylesheets/bootstrap/_navs.scss */
  .nav-justified > li, .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  /* line 180, vendor/assets/stylesheets/bootstrap/_navs.scss */
  .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}

/* line 190, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0;
}

/* line 193, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}

/* line 199, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ecf0f1;
}

@media (min-width: 768px) {
  /* line 206, vendor/assets/stylesheets/bootstrap/_navs.scss */
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ecf0f1;
    border-radius: 4px 4px 0 0;
  }
  /* line 210, vendor/assets/stylesheets/bootstrap/_navs.scss */
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
    border-bottom-color: #ececec;
  }
}

/* line 224, vendor/assets/stylesheets/bootstrap/_navs.scss */
.tab-content > .tab-pane {
  display: none;
}

/* line 227, vendor/assets/stylesheets/bootstrap/_navs.scss */
.tab-content > .active {
  display: block;
}

/* line 237, vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 11, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar {
  position: relative;
  min-height: 110px;
  margin-bottom: 22px;
  border: 1px solid transparent;
}

/* line 14, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar:before, .navbar:after {
  content: " ";
  display: table;
}

/* line 19, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 11, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar {
    border-radius: 4px;
  }
}

/* line 14, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-header:before, .navbar-header:after {
  content: " ";
  display: table;
}

/* line 19, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-header:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 31, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-header {
    float: left;
  }
}

/* line 50, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}

/* line 14, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-collapse:before, .navbar-collapse:after {
  content: " ";
  display: table;
}

/* line 19, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-collapse:after {
  clear: both;
}

/* line 59, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-collapse.in {
  overflow-y: auto;
}

@media (min-width: 768px) {
  /* line 50, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  /* line 68, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  /* line 75, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-collapse.in {
    overflow-y: visible;
  }
  /* line 81, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}

/* line 92, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}

@media (max-device-width: 480px) and (orientation: landscape) {
  /* line 92, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}

/* line 108, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 768px) {
  /* line 108, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}

/* line 128, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}

@media (min-width: 768px) {
  /* line 128, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-static-top {
    border-radius: 0;
  }
}

/* line 138, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

@media (min-width: 768px) {
  /* line 138, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top,
.navbar-fixed-bottom {
    border-radius: 0;
  }
}

/* line 150, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

/* line 154, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

/* line 163, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand {
  float: left;
  padding: 44px 15px;
  font-size: 20px;
  line-height: 22px;
  height: 110px;
}

/* line 170, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

/* line 175, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand > img {
  display: block;
}

@media (min-width: 768px) {
  /* line 180, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}

/* line 193, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 38px;
  margin-bottom: 38px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

/* line 206, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle:focus {
  outline: 0;
}

/* line 211, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}

/* line 217, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

@media (min-width: 768px) {
  /* line 193, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-toggle {
    display: none;
  }
}

/* line 232, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav {
  margin: 22px -15px;
}

/* line 235, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 22px;
}

@media (max-width: 767px) {
  /* line 243, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  /* line 251, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a,
.navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  /* line 255, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 22px;
  }
  /* line 257, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}

@media (min-width: 768px) {
  /* line 232, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav {
    float: left;
    margin: 0;
  }
  /* line 270, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav > li {
    float: left;
  }
  /* line 272, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav > li > a {
    padding-top: 44px;
    padding-bottom: 44px;
  }
}

/* line 286, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 32px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  /* line 478, vendor/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 485, vendor/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .form-control, .navbar-form .cinema-select .chosen-container-single .chosen-search input[type="text"], .cinema-select .chosen-container-single .chosen-search .navbar-form input[type="text"], .navbar-form .edit_user .chosen-container-single .chosen-search input[type="text"], .edit_user .chosen-container-single .chosen-search .navbar-form input[type="text"], .navbar-form .partner-form .chosen-container-single .chosen-search input[type="text"], .partner-form .chosen-container-single .chosen-search .navbar-form input[type="text"] {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 492, vendor/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .form-control-static {
    display: inline-block;
  }
  /* line 496, vendor/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  /* line 500, vendor/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .input-group .input-group-addon,
.navbar-form .input-group .input-group-btn,
.navbar-form .input-group .form-control,
.navbar-form .input-group .cinema-select .chosen-container-single .chosen-search input[type="text"],
.cinema-select .chosen-container-single .chosen-search .navbar-form .input-group input[type="text"],
.navbar-form .input-group .edit_user .chosen-container-single .chosen-search input[type="text"],
.edit_user .chosen-container-single .chosen-search .navbar-form .input-group input[type="text"],
.navbar-form .input-group .partner-form .chosen-container-single .chosen-search input[type="text"],
.partner-form .chosen-container-single .chosen-search .navbar-form .input-group input[type="text"] {
    width: auto;
  }
  /* line 508, vendor/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .input-group > .form-control, .navbar-form .cinema-select .chosen-container-single .chosen-search .input-group > input[type="text"], .cinema-select .chosen-container-single .chosen-search .navbar-form .input-group > input[type="text"], .navbar-form .edit_user .chosen-container-single .chosen-search .input-group > input[type="text"], .edit_user .chosen-container-single .chosen-search .navbar-form .input-group > input[type="text"], .navbar-form .partner-form .chosen-container-single .chosen-search .input-group > input[type="text"], .partner-form .chosen-container-single .chosen-search .navbar-form .input-group > input[type="text"] {
    width: 100%;
  }
  /* line 512, vendor/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 519, vendor/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .radio,
.navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 526, vendor/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .radio label,
.navbar-form .checkbox label {
    padding-left: 0;
  }
  /* line 530, vendor/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .radio input[type="radio"],
.navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  /* line 537, vendor/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}

@media (max-width: 767px) {
  /* line 298, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  /* line 302, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  /* line 286, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

/* line 327, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 332, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 343, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-btn {
  margin-top: 32px;
  margin-bottom: 32px;
}

/* line 346, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
  margin-top: 36.5px;
  margin-bottom: 36.5px;
}

/* line 349, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
  margin-top: 44px;
  margin-bottom: 44px;
}

/* line 359, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-text {
  margin-top: 44px;
  margin-bottom: 44px;
}

@media (min-width: 768px) {
  /* line 359, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-text {
    float: left;
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media (min-width: 768px) {
  /* line 379, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-left {
    float: left !important;
  }
  /* line 382, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  /* line 386, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}

/* line 397, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default {
  background-color: #fff;
  border-color: transparent;
}

/* line 401, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-brand {
  color: #25292c;
}

/* line 403, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  color: #820560;
  background-color: transparent;
}

/* line 410, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-text {
  color: #25292c;
}

/* line 415, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > li > a {
  color: #25292c;
}

/* line 418, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #820560;
  background-color: transparent;
}

/* line 425, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #e6e6e6;
}

/* line 433, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}

/* line 442, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle {
  border-color: #25292c;
}

/* line 444, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: #f0f0f0;
}

/* line 448, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle .icon-bar {
  background-color: #25292c;
}

/* line 453, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: transparent;
}

/* line 462, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  background-color: #e6e6e6;
  color: #fff;
}

@media (max-width: 767px) {
  /* line 473, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #25292c;
  }
  /* line 475, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #820560;
    background-color: transparent;
  }
  /* line 482, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #e6e6e6;
  }
  /* line 490, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}

/* line 506, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-link {
  color: #25292c;
}

/* line 508, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-link:hover {
  color: #820560;
}

/* line 513, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .btn-link {
  color: #25292c;
}

/* line 515, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
  color: #820560;
}

/* line 521, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}

/* line 531, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse {
  background-color: #18BC9C;
  border-color: transparent;
}

/* line 535, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-brand {
  color: #fff;
}

/* line 537, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
  color: #820560;
  background-color: transparent;
}

/* line 544, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-text {
  color: #fff;
}

/* line 549, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > li > a {
  color: #fff;
}

/* line 552, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  color: #820560;
  background-color: transparent;
}

/* line 559, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #15a589;
}

/* line 567, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}

/* line 577, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle {
  border-color: #128f76;
}

/* line 579, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  background-color: #128f76;
}

/* line 583, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}

/* line 588, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #149c82;
}

/* line 596, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #15a589;
  color: #fff;
}

@media (max-width: 767px) {
  /* line 607, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: transparent;
  }
  /* line 610, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: transparent;
  }
  /* line 613, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #fff;
  }
  /* line 615, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #820560;
    background-color: transparent;
  }
  /* line 622, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #15a589;
  }
  /* line 630, vendor/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}

/* line 641, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-link {
  color: #fff;
}

/* line 643, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-link:hover {
  color: #820560;
}

/* line 648, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .btn-link {
  color: #fff;
}

/* line 650, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
  color: #820560;
}

/* line 656, vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #ccc;
}

/* line 6, vendor/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 22px;
  list-style: none;
  background-color: #ecf0f1;
  border-radius: 4px;
}

/* line 13, vendor/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > li {
  display: inline-block;
}

/* line 16, vendor/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > li + li:before {
  content: "/ ";
  padding: 0 5px;
  color: #ccc;
}

/* line 25, vendor/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > .active {
  color: #95a5a6;
}

/* line 4, vendor/assets/stylesheets/bootstrap/_pagination.scss */
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 22px 0;
  border-radius: 4px;
}

/* line 10, vendor/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li {
  display: inline;
}

/* line 12, vendor/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 10px 15px;
  line-height: 1.428571429;
  text-decoration: none;
  color: #fff;
  background-color: #820560;
  border: 1px solid #69044e;
  margin-left: -1px;
}

/* line 25, vendor/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

/* line 32, vendor/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

/* line 41, vendor/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  z-index: 2;
  color: #fff;
  background-color: #38022a;
  border-color: transparent;
}

/* line 52, vendor/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  background-color: #38022a;
  border-color: transparent;
  cursor: default;
}

/* line 64, vendor/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #ecf0f1;
  background-color: #cc0896;
  border-color: transparent;
  cursor: not-allowed;
}

/* line 5, vendor/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 18px 27px;
  font-size: 20px;
  line-height: 1.3333333;
}

/* line 12, vendor/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}

/* line 18, vendor/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}

/* line 5, vendor/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 6px 9px;
  font-size: 14px;
  line-height: 1.5;
}

/* line 12, vendor/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

/* line 18, vendor/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 6, vendor/assets/stylesheets/bootstrap/_pager.scss */
.pager {
  padding-left: 0;
  margin: 22px 0;
  list-style: none;
  text-align: center;
}

/* line 14, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.pager:before, .pager:after {
  content: " ";
  display: table;
}

/* line 19, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.pager:after {
  clear: both;
}

/* line 12, vendor/assets/stylesheets/bootstrap/_pager.scss */
.pager li {
  display: inline;
}

/* line 14, vendor/assets/stylesheets/bootstrap/_pager.scss */
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #820560;
  border: 1px solid #69044e;
  border-radius: 15px;
}

/* line 23, vendor/assets/stylesheets/bootstrap/_pager.scss */
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #38022a;
}

/* line 31, vendor/assets/stylesheets/bootstrap/_pager.scss */
.pager .next > a,
.pager .next > span {
  float: right;
}

/* line 38, vendor/assets/stylesheets/bootstrap/_pager.scss */
.pager .previous > a,
.pager .previous > span {
  float: left;
}

/* line 45, vendor/assets/stylesheets/bootstrap/_pager.scss */
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #fff;
  background-color: #820560;
  cursor: not-allowed;
}

/* line 5, vendor/assets/stylesheets/bootstrap/_labels.scss */
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}

/* line 20, vendor/assets/stylesheets/bootstrap/_labels.scss */
.label:empty {
  display: none;
}

/* line 25, vendor/assets/stylesheets/bootstrap/_labels.scss */
.btn .label {
  position: relative;
  top: -1px;
}

/* line 33, vendor/assets/stylesheets/bootstrap/_labels.scss */
a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* line 44, vendor/assets/stylesheets/bootstrap/_labels.scss */
.label-default {
  background-color: #95a5a6;
}

/* line 7, vendor/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-default[href]:hover, .label-default[href]:focus {
  background-color: #798d8f;
}

/* line 48, vendor/assets/stylesheets/bootstrap/_labels.scss */
.label-primary {
  background-color: #820560;
}

/* line 7, vendor/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: #51033c;
}

/* line 52, vendor/assets/stylesheets/bootstrap/_labels.scss */
.label-success {
  background-color: #18BC9C;
}

/* line 7, vendor/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-success[href]:hover, .label-success[href]:focus {
  background-color: #128f76;
}

/* line 56, vendor/assets/stylesheets/bootstrap/_labels.scss */
.label-info {
  background-color: #3498DB;
}

/* line 7, vendor/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-info[href]:hover, .label-info[href]:focus {
  background-color: #217dbb;
}

/* line 60, vendor/assets/stylesheets/bootstrap/_labels.scss */
.label-warning {
  background-color: #F39C12;
}

/* line 7, vendor/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: #c87f0a;
}

/* line 64, vendor/assets/stylesheets/bootstrap/_labels.scss */
.label-danger {
  background-color: #E74C3C;
}

/* line 7, vendor/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: #d62c1a;
}

/* line 7, vendor/assets/stylesheets/bootstrap/_badges.scss */
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #820560;
  border-radius: 10px;
}

/* line 22, vendor/assets/stylesheets/bootstrap/_badges.scss */
.badge:empty {
  display: none;
}

/* line 27, vendor/assets/stylesheets/bootstrap/_badges.scss */
.btn .badge {
  position: relative;
  top: -1px;
}

/* line 32, vendor/assets/stylesheets/bootstrap/_badges.scss */
.btn-xs .badge, .btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}

/* line 41, vendor/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
  color: #820560;
  background-color: #fff;
}

/* line 47, vendor/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item > .badge {
  float: right;
}

/* line 51, vendor/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item > .badge + .badge {
  margin-right: 5px;
}

/* line 55, vendor/assets/stylesheets/bootstrap/_badges.scss */
.nav-pills > li > a > .badge {
  margin-left: 3px;
}

/* line 62, vendor/assets/stylesheets/bootstrap/_badges.scss */
a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* line 6, vendor/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #ecf0f1;
}

/* line 13, vendor/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}

/* line 18, vendor/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron p {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 200;
}

/* line 24, vendor/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron > hr {
  border-top-color: #cfd9db;
}

/* line 28, vendor/assets/stylesheets/bootstrap/_jumbotron.scss */
.container .jumbotron, .container-fluid .jumbotron {
  border-radius: 6px;
  padding-left: 15px;
  padding-right: 15px;
}

/* line 35, vendor/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron .container {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  /* line 6, vendor/assets/stylesheets/bootstrap/_jumbotron.scss */
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  /* line 43, vendor/assets/stylesheets/bootstrap/_jumbotron.scss */
  .container .jumbotron, .container-fluid .jumbotron {
    padding-left: 60px;
    padding-right: 60px;
  }
  /* line 49, vendor/assets/stylesheets/bootstrap/_jumbotron.scss */
  .jumbotron h1,
.jumbotron .h1 {
    font-size: 72px;
  }
}

/* line 7, vendor/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 22px;
  line-height: 1.428571429;
  background-color: #ececec;
  border: 1px solid #ecf0f1;
  border-radius: 4px;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}

/* line 17, vendor/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnail > img,
.thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

/* line 27, vendor/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnail .caption {
  padding: 9px;
  color: #25292c;
}

/* line 34, vendor/assets/stylesheets/bootstrap/_thumbnails.scss */
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #820560;
}

/* line 9, vendor/assets/stylesheets/bootstrap/_alerts.scss */
.alert {
  padding: 15px;
  margin-bottom: 22px;
  border: 1px solid transparent;
  border-radius: 4px;
}

/* line 16, vendor/assets/stylesheets/bootstrap/_alerts.scss */
.alert h4 {
  margin-top: 0;
  color: inherit;
}

/* line 23, vendor/assets/stylesheets/bootstrap/_alerts.scss */
.alert .alert-link {
  font-weight: bold;
}

/* line 28, vendor/assets/stylesheets/bootstrap/_alerts.scss */
.alert > p,
.alert > ul {
  margin-bottom: 0;
}

/* line 33, vendor/assets/stylesheets/bootstrap/_alerts.scss */
.alert > p + p {
  margin-top: 5px;
}

/* line 42, vendor/assets/stylesheets/bootstrap/_alerts.scss */
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}

/* line 47, vendor/assets/stylesheets/bootstrap/_alerts.scss */
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

/* line 59, vendor/assets/stylesheets/bootstrap/_alerts.scss */
.alert-success {
  background-color: #820560;
  border-color: #820560;
  color: #fff;
}

/* line 8, vendor/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-success hr {
  border-top-color: #69044e;
}

/* line 11, vendor/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-success .alert-link {
  color: #e6e6e6;
}

/* line 63, vendor/assets/stylesheets/bootstrap/_alerts.scss */
.alert-info {
  background-color: #3498DB;
  border-color: #3498DB;
  color: #fff;
}

/* line 8, vendor/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-info hr {
  border-top-color: #258cd1;
}

/* line 11, vendor/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-info .alert-link {
  color: #e6e6e6;
}

/* line 67, vendor/assets/stylesheets/bootstrap/_alerts.scss */
.alert-warning {
  background-color: #F39C12;
  border-color: #F39C12;
  color: #fff;
}

/* line 8, vendor/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-warning hr {
  border-top-color: #e08e0b;
}

/* line 11, vendor/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-warning .alert-link {
  color: #e6e6e6;
}

/* line 71, vendor/assets/stylesheets/bootstrap/_alerts.scss */
.alert-danger {
  background-color: #E74C3C;
  border-color: #E74C3C;
  color: #fff;
}

/* line 8, vendor/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-danger hr {
  border-top-color: #e43725;
}

/* line 11, vendor/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-danger .alert-link {
  color: #e6e6e6;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

/* line 26, vendor/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress {
  overflow: hidden;
  height: 22px;
  margin-bottom: 22px;
  background-color: #ecf0f1;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* line 36, vendor/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 14px;
  line-height: 22px;
  color: #fff;
  text-align: center;
  background-color: #820560;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

/* line 54, vendor/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}

/* line 64, vendor/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}

/* line 73, vendor/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-success {
  background-color: #18BC9C;
}

/* line 7, vendor/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 77, vendor/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-info {
  background-color: #3498DB;
}

/* line 7, vendor/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 81, vendor/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-warning {
  background-color: #F39C12;
}

/* line 7, vendor/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 85, vendor/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-danger {
  background-color: #E74C3C;
}

/* line 7, vendor/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 1, vendor/assets/stylesheets/bootstrap/_media.scss */
.media {
  margin-top: 15px;
}

/* line 5, vendor/assets/stylesheets/bootstrap/_media.scss */
.media:first-child {
  margin-top: 0;
}

/* line 10, vendor/assets/stylesheets/bootstrap/_media.scss */
.media,
.media-body {
  zoom: 1;
  overflow: hidden;
}

/* line 16, vendor/assets/stylesheets/bootstrap/_media.scss */
.media-body {
  width: 10000px;
}

/* line 20, vendor/assets/stylesheets/bootstrap/_media.scss */
.media-object {
  display: block;
}

/* line 24, vendor/assets/stylesheets/bootstrap/_media.scss */
.media-object.img-thumbnail {
  max-width: none;
}

/* line 29, vendor/assets/stylesheets/bootstrap/_media.scss */
.media-right,
.media > .pull-right {
  padding-left: 10px;
}

/* line 34, vendor/assets/stylesheets/bootstrap/_media.scss */
.media-left,
.media > .pull-left {
  padding-right: 10px;
}

/* line 39, vendor/assets/stylesheets/bootstrap/_media.scss */
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}

/* line 46, vendor/assets/stylesheets/bootstrap/_media.scss */
.media-middle {
  vertical-align: middle;
}

/* line 50, vendor/assets/stylesheets/bootstrap/_media.scss */
.media-bottom {
  vertical-align: bottom;
}

/* line 55, vendor/assets/stylesheets/bootstrap/_media.scss */
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 63, vendor/assets/stylesheets/bootstrap/_media.scss */
.media-list {
  padding-left: 0;
  list-style: none;
}

/* line 10, vendor/assets/stylesheets/bootstrap/_list-group.scss */
.list-group {
  margin-bottom: 20px;
  padding-left: 0;
}

/* line 21, vendor/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ecf0f1;
}

/* line 31, vendor/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

/* line 34, vendor/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 46, vendor/assets/stylesheets/bootstrap/_list-group.scss */
a.list-group-item,
button.list-group-item {
  color: #555;
}

/* line 50, vendor/assets/stylesheets/bootstrap/_list-group.scss */
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}

/* line 55, vendor/assets/stylesheets/bootstrap/_list-group.scss */
a.list-group-item:hover, a.list-group-item:focus,
button.list-group-item:hover,
button.list-group-item:focus {
  text-decoration: none;
  color: #555;
  background-color: #ecf0f1;
}

/* line 63, vendor/assets/stylesheets/bootstrap/_list-group.scss */
button.list-group-item {
  width: 100%;
  text-align: left;
}

/* line 70, vendor/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  background-color: #ecf0f1;
  color: #b4bcc2;
  cursor: not-allowed;
}

/* line 78, vendor/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}

/* line 81, vendor/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
  color: #b4bcc2;
}

/* line 87, vendor/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #820560;
  border-color: #820560;
}

/* line 96, vendor/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}

/* line 101, vendor/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
  color: #f95ace;
}

/* line 4, vendor/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-success {
  color: #fff;
  background-color: #820560;
}

/* line 11, vendor/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success,
button.list-group-item-success {
  color: #fff;
}

/* line 14, vendor/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}

/* line 18, vendor/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success:hover, a.list-group-item-success:focus,
button.list-group-item-success:hover,
button.list-group-item-success:focus {
  color: #fff;
  background-color: #69044e;
}

/* line 23, vendor/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
button.list-group-item-success.active,
button.list-group-item-success.active:hover,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #fff;
  border-color: #fff;
}

/* line 4, vendor/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-info {
  color: #fff;
  background-color: #3498DB;
}

/* line 11, vendor/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info,
button.list-group-item-info {
  color: #fff;
}

/* line 14, vendor/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}

/* line 18, vendor/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info:hover, a.list-group-item-info:focus,
button.list-group-item-info:hover,
button.list-group-item-info:focus {
  color: #fff;
  background-color: #258cd1;
}

/* line 23, vendor/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
button.list-group-item-info.active,
button.list-group-item-info.active:hover,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #fff;
  border-color: #fff;
}

/* line 4, vendor/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-warning {
  color: #fff;
  background-color: #F39C12;
}

/* line 11, vendor/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning,
button.list-group-item-warning {
  color: #fff;
}

/* line 14, vendor/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}

/* line 18, vendor/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning:hover, a.list-group-item-warning:focus,
button.list-group-item-warning:hover,
button.list-group-item-warning:focus {
  color: #fff;
  background-color: #e08e0b;
}

/* line 23, vendor/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
button.list-group-item-warning.active,
button.list-group-item-warning.active:hover,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #fff;
  border-color: #fff;
}

/* line 4, vendor/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-danger {
  color: #fff;
  background-color: #E74C3C;
}

/* line 11, vendor/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger,
button.list-group-item-danger {
  color: #fff;
}

/* line 14, vendor/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}

/* line 18, vendor/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger:hover, a.list-group-item-danger:focus,
button.list-group-item-danger:hover,
button.list-group-item-danger:focus {
  color: #fff;
  background-color: #e43725;
}

/* line 23, vendor/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
button.list-group-item-danger.active,
button.list-group-item-danger.active:hover,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #fff;
  border-color: #fff;
}

/* line 123, vendor/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 127, vendor/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

/* line 7, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel {
  margin-bottom: 22px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

/* line 16, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel-body {
  padding: 25px;
}

/* line 14, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.panel-body:before, .panel-body:after {
  content: " ";
  display: table;
}

/* line 19, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.panel-body:after {
  clear: both;
}

/* line 22, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel-heading {
  padding: 10px 25px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

/* line 27, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

/* line 33, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  color: inherit;
}

/* line 39, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}

/* line 49, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel-footer {
  padding: 10px 25px;
  background-color: #ecf0f1;
  border-top: 1px solid #ecf0f1;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 63, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}

/* line 67, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}

/* line 74, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

/* line 82, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 89, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 96, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

/* line 100, vendor/assets/stylesheets/bootstrap/_panels.scss */
.list-group + .panel-footer {
  border-top-width: 0;
}

/* line 110, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}

/* line 115, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-left: 25px;
  padding-right: 25px;
}

/* line 121, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

/* line 127, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 131, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}

/* line 135, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}

/* line 143, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 149, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

/* line 153, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}

/* line 157, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}

/* line 164, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ecf0f1;
}

/* line 170, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}

/* line 174, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}

/* line 181, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}

/* line 185, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}

/* line 194, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}

/* line 203, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}

/* line 210, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}

/* line 222, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel-group {
  margin-bottom: 22px;
}

/* line 226, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}

/* line 230, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel + .panel {
  margin-top: 5px;
}

/* line 235, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-heading {
  border-bottom: 0;
}

/* line 238, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ecf0f1;
}

/* line 244, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-footer {
  border-top: 0;
}

/* line 246, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ecf0f1;
}

/* line 254, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel-default {
  border-color: #ecf0f1;
}

/* line 6, vendor/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-heading {
  color: #25292c;
  background-color: #ecf0f1;
  border-color: #ecf0f1;
}

/* line 11, vendor/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ecf0f1;
}

/* line 14, vendor/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-heading .badge {
  color: #ecf0f1;
  background-color: #25292c;
}

/* line 20, vendor/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ecf0f1;
}

/* line 257, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel-primary {
  border-color: #820560;
}

/* line 6, vendor/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #820560;
  border-color: #820560;
}

/* line 11, vendor/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #820560;
}

/* line 14, vendor/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-heading .badge {
  color: #820560;
  background-color: #fff;
}

/* line 20, vendor/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #820560;
}

/* line 260, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel-success {
  border-color: #820560;
}

/* line 6, vendor/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-heading {
  color: #fff;
  background-color: #820560;
  border-color: #820560;
}

/* line 11, vendor/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #820560;
}

/* line 14, vendor/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-heading .badge {
  color: #820560;
  background-color: #fff;
}

/* line 20, vendor/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #820560;
}

/* line 263, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel-info {
  border-color: #3498DB;
}

/* line 6, vendor/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-heading {
  color: #fff;
  background-color: #3498DB;
  border-color: #3498DB;
}

/* line 11, vendor/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #3498DB;
}

/* line 14, vendor/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-heading .badge {
  color: #3498DB;
  background-color: #fff;
}

/* line 20, vendor/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #3498DB;
}

/* line 266, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel-warning {
  border-color: #F39C12;
}

/* line 6, vendor/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-heading {
  color: #fff;
  background-color: #F39C12;
  border-color: #F39C12;
}

/* line 11, vendor/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #F39C12;
}

/* line 14, vendor/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-heading .badge {
  color: #F39C12;
  background-color: #fff;
}

/* line 20, vendor/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #F39C12;
}

/* line 269, vendor/assets/stylesheets/bootstrap/_panels.scss */
.panel-danger {
  border-color: #E74C3C;
}

/* line 6, vendor/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-heading {
  color: #fff;
  background-color: #E74C3C;
  border-color: #E74C3C;
}

/* line 11, vendor/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #E74C3C;
}

/* line 14, vendor/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-heading .badge {
  color: #E74C3C;
  background-color: #fff;
}

/* line 20, vendor/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #E74C3C;
}

/* line 5, vendor/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

/* line 12, vendor/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

/* line 28, vendor/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

/* line 33, vendor/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive-4by3 {
  padding-bottom: 75%;
}

/* line 7, vendor/assets/stylesheets/bootstrap/_wells.scss */
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #ecf0f1;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

/* line 15, vendor/assets/stylesheets/bootstrap/_wells.scss */
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

/* line 22, vendor/assets/stylesheets/bootstrap/_wells.scss */
.well-lg {
  padding: 24px;
  border-radius: 6px;
}

/* line 26, vendor/assets/stylesheets/bootstrap/_wells.scss */
.well-sm {
  padding: 9px;
  border-radius: 3px;
}

/* line 6, vendor/assets/stylesheets/bootstrap/_close.scss */
.close {
  float: right;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: none;
  opacity: 0.2;
  filter: alpha(opacity=20);
}

/* line 15, vendor/assets/stylesheets/bootstrap/_close.scss */
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* line 30, vendor/assets/stylesheets/bootstrap/_close.scss */
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

/* line 11, vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-open {
  overflow: hidden;
}

/* line 16, vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

/* line 32, vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}

/* line 36, vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

/* line 38, vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 44, vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

/* line 51, vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}

/* line 64, vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

/* line 73, vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}

/* line 74, vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* line 79, vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

/* line 14, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-header:before, .modal-header:after {
  content: " ";
  display: table;
}

/* line 19, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-header:after {
  clear: both;
}

/* line 85, vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-header .close {
  margin-top: -2px;
}

/* line 90, vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-title {
  margin: 0;
  line-height: 1.428571429;
}

/* line 97, vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-body {
  position: relative;
  padding: 20px;
}

/* line 103, vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer {
  padding: 20px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

/* line 14, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-footer:before, .modal-footer:after {
  content: " ";
  display: table;
}

/* line 19, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-footer:after {
  clear: both;
}

/* line 110, vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}

/* line 115, vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

/* line 119, vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

/* line 125, vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  /* line 136, vendor/assets/stylesheets/bootstrap/_modals.scss */
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  /* line 140, vendor/assets/stylesheets/bootstrap/_modals.scss */
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  /* line 145, vendor/assets/stylesheets/bootstrap/_modals.scss */
  .modal-sm {
    width: 300px;
  }
}

@media (min-width: 992px) {
  /* line 149, vendor/assets/stylesheets/bootstrap/_modals.scss */
  .modal-lg {
    width: 900px;
  }
}

/* line 7, vendor/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Roboto", "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.428571429;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 14px;
  opacity: 0;
  filter: alpha(opacity=0);
}

/* line 18, vendor/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

/* line 19, vendor/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}

/* line 20, vendor/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}

/* line 21, vendor/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}

/* line 22, vendor/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}

/* line 26, vendor/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}

/* line 36, vendor/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 45, vendor/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 52, vendor/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 59, vendor/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 66, vendor/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}

/* line 73, vendor/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}

/* line 80, vendor/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 87, vendor/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 94, vendor/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 6, vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Roboto", "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.428571429;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 16px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* line 27, vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover.top {
  margin-top: -10px;
}

/* line 28, vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover.right {
  margin-left: 10px;
}

/* line 29, vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover.bottom {
  margin-top: 10px;
}

/* line 30, vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover.left {
  margin-left: -10px;
}

/* line 33, vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 16px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

/* line 42, vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover-content {
  padding: 9px 14px;
}

/* line 51, vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 61, vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover > .arrow {
  border-width: 11px;
}

/* line 64, vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover > .arrow:after {
  border-width: 10px;
  content: "";
}

/* line 70, vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: fadein(rgba(0, 0, 0, 0.2), 5%);
  bottom: -11px;
}

/* line 77, vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff;
}

/* line 85, vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: fadein(rgba(0, 0, 0, 0.2), 5%);
}

/* line 92, vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff;
}

/* line 100, vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: fadein(rgba(0, 0, 0, 0.2), 5%);
  top: -11px;
}

/* line 107, vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff;
}

/* line 116, vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: fadein(rgba(0, 0, 0, 0.2), 5%);
}

/* line 123, vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px;
}

/* line 7, vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel {
  position: relative;
}

/* line 11, vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* line 16, vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}

/* line 22, vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 1;
}

@media all and (transform-3d), (-webkit-transform-3d) {
  /* line 16, vendor/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -moz-transition: -moz-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
  }
  /* line 34, vendor/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-inner > .item.next, .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  /* line 39, vendor/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  /* line 44, vendor/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}

/* line 53, vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}

/* line 59, vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active {
  left: 0;
}

/* line 63, vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

/* line 70, vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .next {
  left: 100%;
}

/* line 73, vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .prev {
  left: -100%;
}

/* line 76, vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}

/* line 81, vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active.left {
  left: -100%;
}

/* line 84, vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active.right {
  left: 100%;
}

/* line 93, vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
}

/* line 109, vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}

/* line 112, vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control.right {
  left: auto;
  right: 0;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}

/* line 119, vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control:hover, .carousel-control:focus {
  outline: 0;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

/* line 128, vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 5;
  display: inline-block;
}

/* line 138, vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}

/* line 143, vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}

/* line 148, vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  line-height: 1;
  font-family: serif;
}

/* line 158, vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-prev:before {
  content: '\2039';
}

/* line 163, vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-next:before {
  content: '\203a';
}

/* line 174, vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}

/* line 185, vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
}

/* line 207, vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
}

/* line 218, vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

/* line 229, vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-caption .btn {
  text-shadow: none;
}

@media screen and (min-width: 768px) {
  /* line 240, vendor/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-prev,
.carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  /* line 249, vendor/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
    margin-left: -10px;
  }
  /* line 253, vendor/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
    margin-right: -10px;
  }
  /* line 260, vendor/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }
  /* line 267, vendor/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-indicators {
    bottom: 20px;
  }
}

/* line 14, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

/* line 19, vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.clearfix:after {
  clear: both;
}

/* line 12, vendor/assets/stylesheets/bootstrap/_utilities.scss */
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 15, vendor/assets/stylesheets/bootstrap/_utilities.scss */
.pull-right {
  float: right !important;
}

/* line 18, vendor/assets/stylesheets/bootstrap/_utilities.scss */
.pull-left {
  float: left !important;
}

/* line 27, vendor/assets/stylesheets/bootstrap/_utilities.scss */
.hide {
  display: none !important;
}

/* line 30, vendor/assets/stylesheets/bootstrap/_utilities.scss */
.show {
  display: block !important;
}

/* line 33, vendor/assets/stylesheets/bootstrap/_utilities.scss */
.invisible {
  visibility: hidden;
}

/* line 36, vendor/assets/stylesheets/bootstrap/_utilities.scss */
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 45, vendor/assets/stylesheets/bootstrap/_utilities.scss */
.hidden {
  display: none !important;
}

/* line 53, vendor/assets/stylesheets/bootstrap/_utilities.scss */
.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}

/* line 17, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-xs {
  display: none !important;
}

/* line 17, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-sm {
  display: none !important;
}

/* line 17, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-md {
  display: none !important;
}

/* line 17, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-lg {
  display: none !important;
}

/* line 36, vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  /* line 7, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-xs {
    display: block !important;
  }
  /* line 10, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-xs {
    display: table !important;
  }
  /* line 11, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-xs {
    display: table-row !important;
  }
  /* line 12, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-xs,
td.visible-xs {
    display: table-cell !important;
  }
}

@media (max-width: 767px) {
  /* line 54, vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  /* line 59, vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  /* line 64, vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 7, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-sm {
    display: block !important;
  }
  /* line 10, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-sm {
    display: table !important;
  }
  /* line 11, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-sm {
    display: table-row !important;
  }
  /* line 12, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-sm,
td.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 73, vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 78, vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 83, vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 7, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-md {
    display: block !important;
  }
  /* line 10, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-md {
    display: table !important;
  }
  /* line 11, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-md {
    display: table-row !important;
  }
  /* line 12, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-md,
td.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 92, vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 97, vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 102, vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  /* line 7, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-lg {
    display: block !important;
  }
  /* line 10, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-lg {
    display: table !important;
  }
  /* line 11, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-lg {
    display: table-row !important;
  }
  /* line 12, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-lg,
td.visible-lg {
    display: table-cell !important;
  }
}

@media (min-width: 1200px) {
  /* line 111, vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  /* line 116, vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  /* line 121, vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  /* line 17, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 17, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 17, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  /* line 17, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-lg {
    display: none !important;
  }
}

/* line 17, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-print {
  display: none !important;
}

@media print {
  /* line 7, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-print {
    display: block !important;
  }
  /* line 10, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-print {
    display: table !important;
  }
  /* line 11, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-print {
    display: table-row !important;
  }
  /* line 12, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-print,
td.visible-print {
    display: table-cell !important;
  }
}

/* line 155, vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print-block {
  display: none !important;
}

@media print {
  /* line 155, vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print-block {
    display: block !important;
  }
}

/* line 162, vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print-inline {
  display: none !important;
}

@media print {
  /* line 162, vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print-inline {
    display: inline !important;
  }
}

/* line 169, vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print-inline-block {
  display: none !important;
}

@media print {
  /* line 169, vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  /* line 17, vendor/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-print {
    display: none !important;
  }
}

/* line 7, app/assets/stylesheets/_bootswatch.scss */
.navbar {
  border-width: 0;
}

/* line 12, app/assets/stylesheets/_bootswatch.scss */
.navbar-default .badge {
  background-color: #fff;
  color: #fff;
}

/* line 20, app/assets/stylesheets/_bootswatch.scss */
.navbar-inverse .badge {
  background-color: #fff;
  color: #18BC9C;
}

/* line 26, app/assets/stylesheets/_bootswatch.scss */
.navbar-brand {
  line-height: 1;
}

/* line 33, app/assets/stylesheets/_bootswatch.scss */
.btn {
  border-width: 2px;
}

/* line 37, app/assets/stylesheets/_bootswatch.scss */
.btn:active {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 41, app/assets/stylesheets/_bootswatch.scss */
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 47, app/assets/stylesheets/_bootswatch.scss */
.text-primary,
.text-primary:hover {
  color: #820560;
}

/* line 52, app/assets/stylesheets/_bootswatch.scss */
.text-success,
.text-success:hover {
  color: #18BC9C;
}

/* line 57, app/assets/stylesheets/_bootswatch.scss */
.text-danger,
.text-danger:hover {
  color: #E74C3C;
}

/* line 62, app/assets/stylesheets/_bootswatch.scss */
.text-warning,
.text-warning:hover {
  color: #F39C12;
}

/* line 67, app/assets/stylesheets/_bootswatch.scss */
.text-info,
.text-info:hover {
  color: #3498DB;
}

/* line 77, app/assets/stylesheets/_bootswatch.scss */
table a:not(.btn),
.table a:not(.btn) {
  text-decoration: underline;
}

/* line 81, app/assets/stylesheets/_bootswatch.scss */
table .dropdown-menu a,
.table .dropdown-menu a {
  text-decoration: none;
}

/* line 85, app/assets/stylesheets/_bootswatch.scss */
table .success,
table .warning,
table .danger,
table .info,
.table .success,
.table .warning,
.table .danger,
.table .info {
  color: #fff;
}

/* line 91, app/assets/stylesheets/_bootswatch.scss */
table .success > th > a,
table .success > td > a,
table .success > a,
table .warning > th > a,
table .warning > td > a,
table .warning > a,
table .danger > th > a,
table .danger > td > a,
table .danger > a,
table .info > th > a,
table .info > td > a,
table .info > a,
.table .success > th > a,
.table .success > td > a,
.table .success > a,
.table .warning > th > a,
.table .warning > td > a,
.table .warning > a,
.table .danger > th > a,
.table .danger > td > a,
.table .danger > a,
.table .info > th > a,
.table .info > td > a,
.table .info > a {
  color: #fff;
}

/* line 98, app/assets/stylesheets/_bootswatch.scss */
table-bordered > thead > tr > th, table-bordered > tbody > tr > th, table-bordered > tfoot > tr > th, table-bordered > thead > tr > td, table-bordered > tbody > tr > td, table-bordered > tfoot > tr > td,
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ecf0f1;
}

/* line 110, app/assets/stylesheets/_bootswatch.scss */
.form-control, .cinema-select .chosen-container-single .chosen-search input[type="text"], .edit_user .chosen-container-single .chosen-search input[type="text"], .partner-form .chosen-container-single .chosen-search input[type="text"],
input {
  border-width: 2px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 115, app/assets/stylesheets/_bootswatch.scss */
.form-control:focus, .cinema-select .chosen-container-single .chosen-search input[type="text"]:focus, .edit_user .chosen-container-single .chosen-search input[type="text"]:focus, .partner-form .chosen-container-single .chosen-search input[type="text"]:focus,
input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 121, app/assets/stylesheets/_bootswatch.scss */
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label,
.has-warning .form-control-feedback {
  color: #F39C12;
}

/* line 135, app/assets/stylesheets/_bootswatch.scss */
.has-warning .form-control, .has-warning .cinema-select .chosen-container-single .chosen-search input[type="text"], .cinema-select .chosen-container-single .chosen-search .has-warning input[type="text"], .has-warning .edit_user .chosen-container-single .chosen-search input[type="text"], .edit_user .chosen-container-single .chosen-search .has-warning input[type="text"], .has-warning .partner-form .chosen-container-single .chosen-search input[type="text"], .partner-form .chosen-container-single .chosen-search .has-warning input[type="text"],
.has-warning .form-control:focus {
  border: 2px solid #F39C12;
}

/* line 140, app/assets/stylesheets/_bootswatch.scss */
.has-warning .input-group-addon {
  border-color: #F39C12;
}

/* line 146, app/assets/stylesheets/_bootswatch.scss */
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label,
.has-error .form-control-feedback {
  color: #E74C3C;
}

/* line 160, app/assets/stylesheets/_bootswatch.scss */
.has-error .form-control, .has-error .cinema-select .chosen-container-single .chosen-search input[type="text"], .cinema-select .chosen-container-single .chosen-search .has-error input[type="text"], .has-error .edit_user .chosen-container-single .chosen-search input[type="text"], .edit_user .chosen-container-single .chosen-search .has-error input[type="text"], .has-error .partner-form .chosen-container-single .chosen-search input[type="text"], .partner-form .chosen-container-single .chosen-search .has-error input[type="text"],
.has-error .form-control:focus {
  border: 2px solid #E74C3C;
}

/* line 165, app/assets/stylesheets/_bootswatch.scss */
.has-error .input-group-addon {
  border-color: #E74C3C;
}

/* line 171, app/assets/stylesheets/_bootswatch.scss */
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label,
.has-success .form-control-feedback {
  color: #18BC9C;
}

/* line 185, app/assets/stylesheets/_bootswatch.scss */
.has-success .form-control, .has-success .cinema-select .chosen-container-single .chosen-search input[type="text"], .cinema-select .chosen-container-single .chosen-search .has-success input[type="text"], .has-success .edit_user .chosen-container-single .chosen-search input[type="text"], .edit_user .chosen-container-single .chosen-search .has-success input[type="text"], .has-success .partner-form .chosen-container-single .chosen-search input[type="text"], .partner-form .chosen-container-single .chosen-search .has-success input[type="text"],
.has-success .form-control:focus {
  border: 2px solid #18BC9C;
}

/* line 190, app/assets/stylesheets/_bootswatch.scss */
.has-success .input-group-addon {
  border-color: #18BC9C;
}

/* line 198, app/assets/stylesheets/_bootswatch.scss */
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  border-color: transparent;
}

/* line 206, app/assets/stylesheets/_bootswatch.scss */
.pager a,
.pager a:hover {
  color: #fff;
}

/* line 212, app/assets/stylesheets/_bootswatch.scss */
.pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focus, .pager .disabled > span {
  background-color: #cc0896;
}

/* line 223, app/assets/stylesheets/_bootswatch.scss */
.close {
  color: #fff;
  text-decoration: none;
  opacity: 0.4;
}

/* line 228, app/assets/stylesheets/_bootswatch.scss */
.close:hover, .close:focus {
  color: #fff;
  opacity: 1;
}

/* line 237, app/assets/stylesheets/_bootswatch.scss */
.alert .alert-link {
  color: #fff;
  text-decoration: underline;
}

/* line 245, app/assets/stylesheets/_bootswatch.scss */
.progress {
  height: 10px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 248, app/assets/stylesheets/_bootswatch.scss */
.progress .progress-bar {
  font-size: 10px;
  line-height: 10px;
}

/* line 256, app/assets/stylesheets/_bootswatch.scss */
.well {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 262, app/assets/stylesheets/_bootswatch.scss */
a.list-group-item.active, a.list-group-item.active:hover, a.list-group-item.active:focus {
  border-color: #ecf0f1;
}

/* line 269, app/assets/stylesheets/_bootswatch.scss */
a.list-group-item-success.active {
  background-color: #820560;
}

/* line 273, app/assets/stylesheets/_bootswatch.scss */
a.list-group-item-success.active:hover, a.list-group-item-success.active:focus {
  background-color: #69044e;
}

/* line 280, app/assets/stylesheets/_bootswatch.scss */
a.list-group-item-warning.active {
  background-color: #F39C12;
}

/* line 284, app/assets/stylesheets/_bootswatch.scss */
a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus {
  background-color: #e08e0b;
}

/* line 291, app/assets/stylesheets/_bootswatch.scss */
a.list-group-item-danger.active {
  background-color: #E74C3C;
}

/* line 295, app/assets/stylesheets/_bootswatch.scss */
a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus {
  background-color: #e43725;
}

/* line 304, app/assets/stylesheets/_bootswatch.scss */
.panel-default .close {
  color: #25292c;
}

/* line 311, app/assets/stylesheets/_bootswatch.scss */
.modal .close {
  color: #25292c;
}

/* line 316, app/assets/stylesheets/_bootswatch.scss */
.popover {
  color: #25292c;
}

/* @group Base */
/* line 5, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  user-select: none;
}

/* line 11, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container * {
  box-sizing: border-box;
}

/* line 14, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  z-index: 1010;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  clip: rect(0, 0, 0, 0);
  clip-path: inset(100% 100%);
}

/* line 26, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container.chosen-with-drop .chosen-drop {
  clip: auto;
  clip-path: none;
}

/* line 30, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container a {
  cursor: pointer;
}

/* line 35, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
  color: #999999;
}

/* line 42, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
  content: ":";
  padding-left: 2px;
  vertical-align: top;
}

/* @end */
/* @group Single Chosen */
/* line 54, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 25px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background-clip: padding-box;
  box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px;
}

/* line 71, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-single .chosen-default {
  color: #999;
}

/* line 74, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 81, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px;
}

/* line 84, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url(/assets/chosen-sprite-3cde13df3c9baedea2fd869a0935de8e43408ba7dec321fe3c8c4414788b8b41.png) -42px 1px no-repeat;
  font-size: 1px;
}

/* line 93, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}

/* line 97, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px;
}

/* line 100, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%;
}

/* line 107, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url(/assets/chosen-sprite-3cde13df3c9baedea2fd869a0935de8e43408ba7dec321fe3c8c4414788b8b41.png) no-repeat 0px 2px;
}

/* line 114, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
}

/* line 121, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-single .chosen-search input[type="text"] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  background: url(/assets/chosen-sprite-3cde13df3c9baedea2fd869a0935de8e43408ba7dec321fe3c8c4414788b8b41.png) no-repeat 100% -20px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}

/* line 135, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box;
}

/* line 140, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(100% 100%);
}

/* @end */
/* @group Results */
/* line 149, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
}

/* line 158, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  word-wrap: break-word;
  -webkit-touch-callout: none;
}

/* line 166, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}

/* line 170, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}

/* line 175, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff;
}

/* line 180, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4;
}

/* line 185, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default;
}

/* line 190, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}

/* line 193, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
}

/* @end */
/* @group Multi Chosen */
/* line 203, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 5px;
  width: 100%;
  height: auto;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: linear-gradient(#eee 1%, #fff 15%);
  cursor: text;
}

/* line 215, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}

/* line 218, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

/* line 222, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
  width: 25px;
}

/* line 238, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eeeeee;
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default;
}

/* line 254, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word;
}

/* line 257, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url(/assets/chosen-sprite-3cde13df3c9baedea2fd869a0935de8e43408ba7dec321fe3c8c4414788b8b41.png) -42px 1px no-repeat;
  font-size: 1px;
}

/* line 266, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px;
}

/* line 271, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  color: #666;
}

/* line 278, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4;
}

/* line 280, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px;
}

/* line 285, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0;
}

/* line 289, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default;
}

/* @end */
/* @group Active  */
/* line 299, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* line 304, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  -moz-border-radius-bottomright: 0;
  border-bottom-right-radius: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-left-radius: 0;
  background-image: linear-gradient(#eee 20%, #fff 80%);
  box-shadow: 0 1px 0 #fff inset;
}

/* line 313, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent;
}

/* line 316, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px;
}

/* line 321, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* line 324, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #222 !important;
}

/* @end */
/* @group Disabled Support */
/* line 332, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default;
}

/* line 335, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-disabled .chosen-single {
  cursor: default;
}

/* line 338, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}

/* @end */
/* @group Right to Left */
/* line 345, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl {
  text-align: right;
}

/* line 347, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0;
}

/* line 351, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl;
}

/* line 356, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px;
}

/* line 359, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px;
}

/* line 363, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px;
}

/* line 367, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl .chosen-choices li {
  float: right;
}

/* line 369, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl .chosen-choices li.search-field input[type="text"] {
  direction: rtl;
}

/* line 372, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px;
}

/* line 375, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px;
}

/* line 381, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0;
}

/* line 385, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0;
}

/* line 389, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none;
}

/* line 392, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl .chosen-search input[type="text"] {
  padding: 4px 5px 4px 20px;
  background: url(/assets/chosen-sprite-3cde13df3c9baedea2fd869a0935de8e43408ba7dec321fe3c8c4414788b8b41.png) no-repeat -30px -20px;
  direction: rtl;
}

/* line 398, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px;
}

/* line 402, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px;
}

/* @end */
/* @group Retina compatibility */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
  /* line 413, vendor/bundle/ruby/3.1.0/gems/chosen-rails-1.10.0/vendor/assets/stylesheets/chosen.scss */
  .chosen-rtl .chosen-search input[type="text"],
.chosen-container-single .chosen-single abbr,
.chosen-container-single .chosen-single div b,
.chosen-container-single .chosen-search input[type="text"],
.chosen-container-multi .chosen-choices .search-choice .search-choice-close,
.chosen-container .chosen-results-scroll-down span,
.chosen-container .chosen-results-scroll-up span {
    background-image: url(/assets/chosen-sprite@2x-f811c9f3282470438df5d1b7fe6faf244a0a17124591b467957a91634aac16e8.png) !important;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important;
  }
}

/* @end */
/* line 12, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-select {
  width: 100%;
}

/* line 13, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-select-deselect {
  width: 100%;
}

/* line 15, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container {
  display: inline-block;
  font-size: 16px;
  position: relative;
  vertical-align: middle;
}

/* line 21, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container .chosen-drop {
  background: #fff;
  border: 1px solid #dce4ec;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  -webkit-box-shadow: 0 8px 8px rgba(0, 0, 0, 0.25);
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.25);
  margin-top: -1px;
  position: absolute;
  top: 100%;
  left: -9000px;
  z-index: 1060;
}

/* line 33, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container.chosen-with-drop .chosen-drop {
  left: 0;
  right: 0;
}

/* line 38, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container .chosen-results {
  color: #95a5a6;
  margin: 0 4px 4px 0;
  max-height: 240px;
  padding: 0 0 0 4px;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* line 48, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container .chosen-results li {
  display: none;
  line-height: 1.428571429;
  list-style: none;
  margin: 0;
  padding: 5px 6px;
}

/* line 55, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container .chosen-results li em {
  background: #feffde;
  font-style: normal;
}

/* line 60, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container .chosen-results li.group-result {
  display: list-item;
  cursor: default;
  color: #999;
  font-weight: bold;
}

/* line 67, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}

/* line 71, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container .chosen-results li.active-result {
  cursor: pointer;
  display: list-item;
}

/* line 76, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container .chosen-results li.highlighted {
  background-color: #820560;
  background-image: none;
  color: white;
}

/* line 81, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container .chosen-results li.highlighted em {
  background: transparent;
}

/* line 86, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #b4bcc2;
}

/* line 92, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container .chosen-results .no-results {
  background: #ecf0f1;
  display: list-item;
}

/* line 98, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container .chosen-results-scroll {
  background: white;
  margin: 0 4px;
  position: absolute;
  text-align: center;
  width: 321px;
  z-index: 1;
}

/* line 106, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container .chosen-results-scroll span {
  display: inline-block;
  height: 1.428571429;
  text-indent: -5000px;
  width: 9px;
}

/* line 114, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container .chosen-results-scroll-down {
  bottom: 0;
}

/* line 117, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container .chosen-results-scroll-down span {
  background: url(/assets/chosen-sprite-3cde13df3c9baedea2fd869a0935de8e43408ba7dec321fe3c8c4414788b8b41.png) no-repeat -4px -3px;
}

/* line 123, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container .chosen-results-scroll-up span {
  background: url(/assets/chosen-sprite-3cde13df3c9baedea2fd869a0935de8e43408ba7dec321fe3c8c4414788b8b41.png) no-repeat -22px -3px;
}

/* line 130, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-single .chosen-single {
  background-color: #fff;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  border: 1px solid #dce4ec;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  color: #95a5a6;
  display: block;
  height: 46px;
  overflow: hidden;
  line-height: 46px;
  padding: 0 0 0 8px;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

/* line 149, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-single .chosen-single span {
  display: block;
  margin-right: 26px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 155, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-single .chosen-single abbr {
  background: url(/assets/chosen-sprite-3cde13df3c9baedea2fd869a0935de8e43408ba7dec321fe3c8c4414788b8b41.png) right top no-repeat;
  display: block;
  font-size: 1px;
  height: 10px;
  position: absolute;
  right: 26px;
  top: 18px;
  width: 12px;
}

/* line 165, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-single .chosen-single abbr:hover {
  background-position: right -11px;
}

/* line 170, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-single .chosen-single.chosen-disabled .chosen-single abbr:hover {
  background-position: right 2px;
}

/* line 174, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-single .chosen-single div {
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
}

/* line 182, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-single .chosen-single div b {
  background: url(/assets/chosen-sprite-3cde13df3c9baedea2fd869a0935de8e43408ba7dec321fe3c8c4414788b8b41.png) no-repeat 0 7px;
  display: block;
  height: 100%;
  width: 100%;
}

/* line 191, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-single .chosen-default {
  color: #b4bcc2;
}

/* line 195, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-single .chosen-search {
  margin: 0;
  padding: 3px 4px;
  position: relative;
  white-space: nowrap;
  z-index: 1000;
}

/* line 202, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-single .chosen-search input[type="text"] {
  background: url(/assets/chosen-sprite-3cde13df3c9baedea2fd869a0935de8e43408ba7dec321fe3c8c4414788b8b41.png) no-repeat 100% -20px, #fff;
  border: 1px solid #dce4ec;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  margin: 1px 0;
  padding: 4px 20px 4px 4px;
  width: 100%;
}

/* line 214, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

/* line 225, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-single-nosearch .chosen-search input[type="text"] {
  position: absolute;
  left: -9000px;
}

/* line 233, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-multi .chosen-choices {
  background-color: #fff;
  border: 1px solid #dce4ec;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  cursor: text;
  height: auto !important;
  height: 1%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
}

/* line 247, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}

/* line 252, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-multi .chosen-choices .search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

/* line 257, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-multi .chosen-choices .search-field input[type="text"] {
  background: transparent !important;
  border: 0 !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #95a5a6;
  height: 44px;
  margin: 0;
  padding: 4px;
  outline: 0;
}

/* line 268, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-multi .chosen-choices .search-field .default {
  color: #999;
}

/* line 273, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-multi .chosen-choices .search-choice {
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  background-color: #ecf0f1;
  border: 1px solid #dce4ec;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-image: -webkit-linear-gradient(top, white 0%, #ecf0f1 100%);
  background-image: -o-linear-gradient(top, white 0%, #ecf0f1 100%);
  background-image: linear-gradient(to bottom, white 0%, #ecf0f1 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFECF0F1', GradientType=0);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  color: #7b8a8b;
  cursor: default;
  line-height: 13px;
  margin: 6px 0 3px 5px;
  padding: 3px 20px 3px 5px;
  position: relative;
}

/* line 290, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-multi .chosen-choices .search-choice .search-choice-close {
  background: url(/assets/chosen-sprite-3cde13df3c9baedea2fd869a0935de8e43408ba7dec321fe3c8c4414788b8b41.png) right top no-repeat;
  display: block;
  font-size: 1px;
  height: 10px;
  position: absolute;
  right: 4px;
  top: 5px;
  width: 12px;
  cursor: pointer;
}

/* line 301, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-multi .chosen-choices .search-choice .search-choice-close:hover {
  background-position: right -11px;
}

/* line 307, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-multi .chosen-choices .search-choice-focus {
  background: #d4d4d4;
}

/* line 310, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-multi .chosen-choices .search-choice-focus .search-choice-close {
  background-position: right -11px;
}

/* line 316, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-multi .chosen-results {
  margin: 0 0 0 0;
  padding: 0;
}

/* line 322, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-multi .chosen-drop .result-selected {
  display: none;
}

/* line 329, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-active .chosen-single {
  border: 1px solid #820560;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #820560;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #820560;
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
}

/* line 335, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-active.chosen-with-drop .chosen-single {
  background-color: #fff;
  border: 1px solid #820560;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #820560;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #820560;
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
}

/* line 342, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-active.chosen-with-drop .chosen-single div {
  background: transparent;
  border-left: none;
}

/* line 346, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 7px;
}

/* line 352, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-active .chosen-choices {
  border: 1px solid #820560;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #820560;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #820560;
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
}

/* line 358, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-active .chosen-choices .search-field input[type="text"] {
  color: #111 !important;
}

/* line 363, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-container-active.chosen-with-drop .chosen-choices {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 368, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-disabled {
  cursor: default;
  opacity: 0.5 !important;
}

/* line 372, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-disabled .chosen-single {
  cursor: default;
}

/* line 376, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}

/* line 381, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-rtl {
  text-align: right;
}

/* line 384, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-rtl .chosen-single {
  padding: 0 8px 0 0;
  overflow: visible;
}

/* line 388, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-rtl .chosen-single span {
  margin-left: 26px;
  margin-right: 0;
  direction: rtl;
}

/* line 394, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-rtl .chosen-single div {
  left: 7px;
  right: auto;
}

/* line 399, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-rtl .chosen-single abbr {
  left: 26px;
  right: auto;
}

/* line 406, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-rtl .chosen-choices .search-field input[type="text"] {
  direction: rtl;
}

/* line 410, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-rtl .chosen-choices li {
  float: right;
}

/* line 414, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-rtl .chosen-choices .search-choice {
  margin: 6px 5px 3px 0;
  padding: 3px 5px 3px 19px;
}

/* line 418, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-rtl .chosen-choices .search-choice .search-choice-close {
  background-position: right top;
  left: 4px;
  right: auto;
}

/* line 426, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0;
}

/* line 431, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-rtl .chosen-results .group-option {
  padding-left: 0;
  padding-right: 15px;
}

/* line 436, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none;
}

/* line 440, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
.chosen-rtl .chosen-search input[type="text"] {
  background: url(/assets/chosen-sprite-3cde13df3c9baedea2fd869a0935de8e43408ba7dec321fe3c8c4414788b8b41.png) no-repeat -28px -20px, #fff;
  direction: rtl;
  padding: 4px 5px 4px 20px;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 2dppx) {
  /* line 448, vendor/bundle/ruby/3.1.0/gems/bootstrap-chosen-rails-0.0.4/vendor/assets/stylesheets/bootstrap-chosen.scss */
  .chosen-rtl .chosen-search input[type="text"],
.chosen-container-single .chosen-single abbr,
.chosen-container-single .chosen-single div b,
.chosen-container-single .chosen-search input[type="text"],
.chosen-container-multi .chosen-choices .search-choice .search-choice-close,
.chosen-container .chosen-results-scroll-down span,
.chosen-container .chosen-results-scroll-up span {
    background-image: url(/assets/chosen-sprite@2x-f811c9f3282470438df5d1b7fe6faf244a0a17124591b467957a91634aac16e8.png) !important;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important;
  }
}

/* line 1, vendor/assets/stylesheets/cookieconsent.css */
.cc-window {
  opacity: 1;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

/* line 7, vendor/assets/stylesheets/cookieconsent.css */
.cc-window.cc-invisible {
  opacity: 0;
}

/* line 11, vendor/assets/stylesheets/cookieconsent.css */
.cc-animate.cc-revoke {
  -webkit-transition: transform 1s ease;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}

/* line 19, vendor/assets/stylesheets/cookieconsent.css */
.cc-animate.cc-revoke.cc-top {
  -webkit-transform: translateY(-2em);
  transform: translateY(-2em);
}

/* line 24, vendor/assets/stylesheets/cookieconsent.css */
.cc-animate.cc-revoke.cc-bottom {
  -webkit-transform: translateY(2em);
  transform: translateY(2em);
}

/* line 29, vendor/assets/stylesheets/cookieconsent.css */
.cc-animate.cc-revoke.cc-active.cc-top {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* line 34, vendor/assets/stylesheets/cookieconsent.css */
.cc-animate.cc-revoke.cc-active.cc-bottom {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* line 39, vendor/assets/stylesheets/cookieconsent.css */
.cc-revoke:hover {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* line 44, vendor/assets/stylesheets/cookieconsent.css */
.cc-grower {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 1s;
  transition: max-height 1s;
}

/* line 51, vendor/assets/stylesheets/cookieconsent.css */
.cc-revoke,
.cc-window {
  position: fixed;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: Helvetica, Calibri, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  z-index: 9999;
}

/* line 68, vendor/assets/stylesheets/cookieconsent.css */
.cc-window.cc-static {
  position: static;
}

/* line 72, vendor/assets/stylesheets/cookieconsent.css */
.cc-window.cc-floating {
  padding: 2em;
  max-width: 24em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* line 81, vendor/assets/stylesheets/cookieconsent.css */
.cc-window.cc-banner {
  padding: 1em 1.8em;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

/* line 90, vendor/assets/stylesheets/cookieconsent.css */
.cc-revoke {
  padding: .5em;
}

/* line 94, vendor/assets/stylesheets/cookieconsent.css */
.cc-revoke:hover {
  text-decoration: underline;
}

/* line 98, vendor/assets/stylesheets/cookieconsent.css */
.cc-header {
  font-size: 18px;
  font-weight: 700;
}

/* line 103, vendor/assets/stylesheets/cookieconsent.css */
.cc-btn,
.cc-close,
.cc-link,
.cc-revoke {
  cursor: pointer;
}

/* line 110, vendor/assets/stylesheets/cookieconsent.css */
.cc-link {
  opacity: .8;
  display: inline-block;
  padding: .2em;
  text-decoration: underline;
}

/* line 117, vendor/assets/stylesheets/cookieconsent.css */
.cc-link:hover {
  opacity: 1;
}

/* line 121, vendor/assets/stylesheets/cookieconsent.css */
.cc-link:active,
.cc-link:visited {
  color: initial;
}

/* line 126, vendor/assets/stylesheets/cookieconsent.css */
.cc-btn {
  display: block;
  padding: .4em .8em;
  font-size: .9em;
  font-weight: 700;
  border-width: 2px;
  border-style: solid;
  text-align: center;
  white-space: nowrap;
}

/* line 137, vendor/assets/stylesheets/cookieconsent.css */
.cc-highlight .cc-btn:first-child {
  background-color: transparent;
  border-color: transparent;
}

/* line 142, vendor/assets/stylesheets/cookieconsent.css */
.cc-highlight .cc-btn:first-child:focus,
.cc-highlight .cc-btn:first-child:hover {
  background-color: transparent;
  text-decoration: underline;
}

/* line 148, vendor/assets/stylesheets/cookieconsent.css */
.cc-close {
  display: block;
  position: absolute;
  top: .5em;
  right: .5em;
  font-size: 1.6em;
  opacity: .9;
  line-height: .75;
}

/* line 158, vendor/assets/stylesheets/cookieconsent.css */
.cc-close:focus,
.cc-close:hover {
  opacity: 1;
}

/* line 163, vendor/assets/stylesheets/cookieconsent.css */
.cc-revoke.cc-top {
  top: 0;
  left: 3em;
  border-bottom-left-radius: .5em;
  border-bottom-right-radius: .5em;
}

/* line 170, vendor/assets/stylesheets/cookieconsent.css */
.cc-revoke.cc-bottom {
  bottom: 0;
  left: 3em;
  border-top-left-radius: .5em;
  border-top-right-radius: .5em;
}

/* line 177, vendor/assets/stylesheets/cookieconsent.css */
.cc-revoke.cc-left {
  left: 3em;
  right: unset;
}

/* line 182, vendor/assets/stylesheets/cookieconsent.css */
.cc-revoke.cc-right {
  right: 3em;
  left: unset;
}

/* line 187, vendor/assets/stylesheets/cookieconsent.css */
.cc-top {
  top: 1em;
}

/* line 191, vendor/assets/stylesheets/cookieconsent.css */
.cc-left {
  left: 1em;
}

/* line 195, vendor/assets/stylesheets/cookieconsent.css */
.cc-right {
  right: 1em;
}

/* line 199, vendor/assets/stylesheets/cookieconsent.css */
.cc-bottom {
  bottom: 1em;
}

/* line 203, vendor/assets/stylesheets/cookieconsent.css */
.cc-floating > .cc-link {
  margin-bottom: 1em;
}

/* line 207, vendor/assets/stylesheets/cookieconsent.css */
.cc-floating .cc-message {
  display: block;
  margin-bottom: 1em;
}

/* line 212, vendor/assets/stylesheets/cookieconsent.css */
.cc-window.cc-floating .cc-compliance {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

/* line 218, vendor/assets/stylesheets/cookieconsent.css */
.cc-window.cc-banner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* line 224, vendor/assets/stylesheets/cookieconsent.css */
.cc-banner.cc-top {
  left: 0;
  right: 0;
  top: 0;
}

/* line 230, vendor/assets/stylesheets/cookieconsent.css */
.cc-banner.cc-bottom {
  left: 0;
  right: 0;
  bottom: 0;
}

/* line 236, vendor/assets/stylesheets/cookieconsent.css */
.cc-banner .cc-message {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  max-width: 100%;
  margin-right: 1em;
}

/* line 245, vendor/assets/stylesheets/cookieconsent.css */
.cc-compliance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: justify;
  align-content: space-between;
}

/* line 256, vendor/assets/stylesheets/cookieconsent.css */
.cc-floating .cc-compliance > .cc-btn {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/* line 262, vendor/assets/stylesheets/cookieconsent.css */
.cc-btn + .cc-btn {
  margin-left: .5em;
}

@media print {
  /* line 268, vendor/assets/stylesheets/cookieconsent.css */
  .cc-revoke,
.cc-window {
    display: none;
  }
}

@media screen and (max-width: 900px) {
  /* line 275, vendor/assets/stylesheets/cookieconsent.css */
  .cc-btn {
    white-space: normal;
  }
}

@media screen and (max-width: 414px) and (orientation: portrait), screen and (max-width: 736px) and (orientation: landscape) {
  /* line 282, vendor/assets/stylesheets/cookieconsent.css */
  .cc-window.cc-top {
    top: 0;
  }
  /* line 286, vendor/assets/stylesheets/cookieconsent.css */
  .cc-window.cc-bottom {
    bottom: 0;
  }
  /* line 290, vendor/assets/stylesheets/cookieconsent.css */
  .cc-window.cc-banner,
.cc-window.cc-floating,
.cc-window.cc-left,
.cc-window.cc-right {
    left: 0;
    right: 0;
  }
  /* line 298, vendor/assets/stylesheets/cookieconsent.css */
  .cc-window.cc-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  /* line 305, vendor/assets/stylesheets/cookieconsent.css */
  .cc-window.cc-banner .cc-compliance {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  /* line 311, vendor/assets/stylesheets/cookieconsent.css */
  .cc-window.cc-floating {
    max-width: none;
  }
  /* line 315, vendor/assets/stylesheets/cookieconsent.css */
  .cc-window .cc-message {
    margin-bottom: 1em;
  }
  /* line 319, vendor/assets/stylesheets/cookieconsent.css */
  .cc-window.cc-banner {
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
  }
  /* line 325, vendor/assets/stylesheets/cookieconsent.css */
  .cc-window.cc-banner .cc-message {
    margin-right: 0;
  }
}

/* line 330, vendor/assets/stylesheets/cookieconsent.css */
.cc-floating.cc-theme-classic {
  padding: 1.2em;
  border-radius: 5px;
}

/* line 335, vendor/assets/stylesheets/cookieconsent.css */
.cc-floating.cc-type-info.cc-theme-classic .cc-compliance {
  text-align: center;
  display: inline;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

/* line 343, vendor/assets/stylesheets/cookieconsent.css */
.cc-theme-classic .cc-btn {
  border-radius: 5px;
}

/* line 347, vendor/assets/stylesheets/cookieconsent.css */
.cc-theme-classic .cc-btn:last-child {
  min-width: 140px;
}

/* line 351, vendor/assets/stylesheets/cookieconsent.css */
.cc-floating.cc-type-info.cc-theme-classic .cc-btn {
  display: inline-block;
}

/* line 355, vendor/assets/stylesheets/cookieconsent.css */
.cc-theme-edgeless.cc-window {
  padding: 0;
}

/* line 359, vendor/assets/stylesheets/cookieconsent.css */
.cc-floating.cc-theme-edgeless .cc-message {
  margin: 2em;
  margin-bottom: 1.5em;
}

/* line 364, vendor/assets/stylesheets/cookieconsent.css */
.cc-banner.cc-theme-edgeless .cc-btn {
  margin: 0;
  padding: .8em 1.8em;
  height: 100%;
}

/* line 370, vendor/assets/stylesheets/cookieconsent.css */
.cc-banner.cc-theme-edgeless .cc-message {
  margin-left: 1em;
}

/* line 374, vendor/assets/stylesheets/cookieconsent.css */
.cc-floating.cc-theme-edgeless .cc-btn + .cc-btn {
  margin-left: 0;
}

/* line 44, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-wrapper {
  position: relative;
  margin: 2rem 0;
}

/* line 49, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-window {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

/* line 57, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player__poster {
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  max-width: 100%;
  margin-bottom: 4rem;
}

/* line 38, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player__poster.is--invisible {
  opacity: 0;
  pointer-events: none;
}

/* line 63, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player__poster.is--floating {
  position: absolute;
  z-index: 1;
  margin: 0;
}

/* line 70, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player__gradient {
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.32) 0%, #000 90%);
}

/* line 38, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player__gradient.is--invisible {
  opacity: 0;
  pointer-events: none;
}

/* line 84, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player__player {
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: all !important;
}

/* line 38, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player__player.is--invisible {
  opacity: 0;
  pointer-events: none;
}

/* line 90, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player__video-container {
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  z-index: 5;
}

/* line 38, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player__video-container.is--invisible {
  opacity: 0;
  pointer-events: none;
}

/* line 98, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-play-button-wrapper {
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: absolute;
  top: 40%;
  left: 25%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 20%;
}

/* line 38, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-play-button-wrapper.is--invisible {
  opacity: 0;
  pointer-events: none;
}

/* line 113, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-play-button {
  --icon-fill: currentColor;
  --icon-margin: 0.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 0.75rem 1rem;
  fill: #fff;
  border-radius: 100px;
  background: #ececec;
  box-shadow: 0 0px 22px 5px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

/* line 128, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-play-button__icon {
  height: 20px;
  margin-right: var(--icon-margin, 0.5rem);
  fill: var(--icon-fill);
}

/* line 133, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-play-button__icon:only-child {
  margin: 0;
}

/* line 136, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-play-button:hover {
  color: #820560;
  fill: #820560;
  background-color: white;
}

/* line 142, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-play-button.is--featured {
  --icon-fill: #820560;
  --icon-margin: 1rem;
  color: #820560;
  font-size: 22px;
}

/* line 149, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-play-button.is--featured .movie-player-play-button__text {
  position: relative;
  top: -1px;
}

/* line 156, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-content {
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  margin: 0;
  padding: 4rem;
}

/* line 38, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-content.is--invisible {
  opacity: 0;
  pointer-events: none;
}

/* line 167, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-content--standalone {
  position: relative;
}

/* line 170, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-cta {
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: row;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.95);
}

/* line 187, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-cta__close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

/* line 193, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-cta.is--active {
  opacity: 1;
  pointer-events: all;
}

/* line 202, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-wrapper.is--standalone {
  margin-top: 0;
  margin-bottom: 0;
}

/* line 206, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-wrapper.is--standalone .movie-player-play-button,
.movie-player-wrapper.is--standalone .movie-player-play-button.is--featured {
  --icon-fill: #820560;
  box-shadow: none;
  background: transparent;
}

/* line 214, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-wrapper.is--standalone .movie-player-play-button__icon {
  width: auto;
  height: 9rem;
}

/* line 218, app/assets/stylesheets/v5-migration/_movie-player.scss */
.movie-player-wrapper.is--standalone .movie-player-play-button__icon:hover {
  --icon-fill: #820560;
}

@media (max-width: 1199.98px) {
  /* line 225, app/assets/stylesheets/v5-migration/_movie-player.scss */
  .movie-player-wrapper {
    margin-bottom: 0;
  }
  /* line 226, app/assets/stylesheets/v5-migration/_movie-player.scss */
  .movie-player-content {
    position: relative;
    padding: 2rem 0;
  }
  /* line 230, app/assets/stylesheets/v5-migration/_movie-player.scss */
  .movie-player-content.is--invisible {
    opacity: 1;
    pointer-events: all;
  }
  /* line 236, app/assets/stylesheets/v5-migration/_movie-player.scss */
  .movie-player-play-button-wrapper {
    left: 12.5%;
    width: 75%;
  }
  /* line 241, app/assets/stylesheets/v5-migration/_movie-player.scss */
  .movie-player-play-button {
    padding: 1rem 1.5rem;
  }
  /* line 242, app/assets/stylesheets/v5-migration/_movie-player.scss */
  .movie-player__poster.is--standalone {
    margin-bottom: 0;
  }
  /* line 243, app/assets/stylesheets/v5-migration/_movie-player.scss */
  .movie-player__gradient {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.32) 50%, #000 100%);
  }
}

/*! @license
 * Shaka Player
 * Copyright 2016 Google LLC
 * SPDX-License-Identifier: Apache-2.0
 */
/* line 6, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-hidden {
  display: none !important;
}

/* line 10, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-video-container {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
}

/* line 17, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-video-container .material-icons-round {
  font-family: "Material Icons Round";
  font-size: 24px;
}

/* line 22, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-video-container * {
  font-family: Roboto-Regular, Roboto, sans-serif, TengwarTelcontar;
}

/* line 26, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-video-container:fullscreen {
  width: 100%;
  height: 100%;
  background-color: #000;
}

/* line 32, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-video-container:fullscreen .shaka-text-container {
  font-size: 4.4vmin;
}

/* line 36, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-video-container:-webkit-full-screen {
  width: 100%;
  height: 100%;
  background-color: #000;
}

/* line 42, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-video-container:-webkit-full-screen .shaka-text-container {
  font-size: 4.4vmin;
}

/* line 46, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-video-container:-moz-full-screen {
  width: 100%;
  height: 100%;
  background-color: #000;
}

/* line 52, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-video-container:-moz-full-screen .shaka-text-container {
  font-size: 4.4vmin;
}

/* line 56, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-video-container:-ms-fullscreen {
  width: 100%;
  height: 100%;
  background-color: #000;
}

/* line 62, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-video-container:-ms-fullscreen .shaka-text-container {
  font-size: 4.4vmin;
}

/* line 66, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-controls-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  z-index: 1;
}

/* line 84, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-video-container:not([shaka-controls=true]) .shaka-controls-container {
  display: none;
}

/* line 88, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-controls-container * {
  flex-shrink: 0;
}

/* line 92, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-controls-container[casting=true] .shaka-fullscreen-button {
  display: none;
}

/* line 96, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* line 109, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-bottom-controls {
  width: 96%;
  padding: 0;
  padding-bottom: 2.5%;
  z-index: 1;
}

/* line 116, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-controls-button-panel {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  min-width: 48px;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  opacity: 0;
  transition: opacity cubic-bezier(0.4, 0, 0.6, 1) 0.6s;
}

/* line 136, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-controls-container[casting=true] .shaka-controls-button-panel,
.shaka-controls-container[shown=true] .shaka-controls-button-panel {
  opacity: 1;
}

/* line 141, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-controls-button-panel > * {
  color: #fff;
  height: 32px;
  line-height: .5;
  margin: 1px;
  padding: 0 5px;
  background: 0 0;
  border: 0;
  cursor: pointer;
}

/* line 152, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-controls-button-panel .shaka-overflow-menu-only {
  display: none;
}

/* line 156, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-play-button-container {
  margin: 0;
  width: 100%;
  height: 100%;
  flex-shrink: 1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 171, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-statistics-container {
  overflow-x: hidden;
  overflow-y: auto;
  min-width: 300px;
  color: #fff;
  background-color: RGBA(35 35 35/90%);
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 2px;
  position: absolute;
  z-index: 2;
  left: 15px;
  top: 15px;
  opacity: 0;
  transition: opacity cubic-bezier(0.4, 0, 0.6, 1) 0.6s;
}

/* line 188, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-controls-container[casting=true] .shaka-statistics-container,
.shaka-controls-container[shown=true] .shaka-statistics-container {
  opacity: 1;
}

/* line 193, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-statistics-container div {
  display: flex;
  justify-content: space-between;
}

/* line 198, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-statistics-container span {
  color: #969696;
}

/* line 202, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-context-menu {
  background-color: RGBA(35 35 35/90%);
  border-radius: 2px;
  position: absolute;
  z-index: 3;
}

/* line 209, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-context-menu button {
  padding: 5px 10px;
  width: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  background: 0 0;
  border: 0;
  cursor: pointer;
}

/* line 220, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-context-menu button:hover {
  background-color: RGBA(50 50 50/90%);
}

/* line 224, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-context-menu label {
  padding: 0 20px;
  align-items: flex-start;
  color: #fff;
  cursor: pointer;
}

/* line 231, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-context-menu .shaka-current-selection-span {
  align-items: flex-start;
  color: #fff;
  cursor: pointer;
}

/* line 237, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-scrim-container {
  margin: 0;
  width: 100%;
  height: 100%;
  flex-shrink: 1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity cubic-bezier(0.4, 0, 0.6, 1) 0.6s;
  background: linear-gradient(to top, #000 0, transparent 15%);
}

/* line 252, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-controls-container[casting=true] .shaka-scrim-container,
.shaka-controls-container[shown=true] .shaka-scrim-container {
  opacity: 1;
}

/* line 257, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-text-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  bottom: 0;
  width: 100%;
  min-width: 48px;
  transition: bottom cubic-bezier(0.4, 0, 0.6, 1) 0.1s;
  transition-delay: 0.5s;
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
}

/* line 274, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-text-container span.shaka-text-wrapper {
  display: inline;
  background: 0 0;
}

/* line 279, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-controls-container[shown=true] ~ .shaka-text-container {
  bottom: 15%;
  transition-delay: 0s;
}

/* line 284, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-spinner-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  flex-shrink: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 298, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-video-container:not([shaka-controls=true]) .shaka-spinner-container {
  display: none;
}

/* line 302, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-spinner {
  position: relative;
  top: 0;
  left: 0;
  margin: 0;
  box-sizing: border-box;
  padding: calc(15.6% / 2);
  width: 0;
  height: 0;
  filter: drop-shadow(0 0 2px RGBA(255 255 255/50%));
}

/* line 314, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-hidden-fast-forward-container,
.shaka-hidden-rewind-container {
  height: 100%;
  width: 40%;
  flex-shrink: 1;
}

/* line 321, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-hidden-fast-forward-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  left: 60%;
}

/* line 330, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-hidden-rewind-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/* line 338, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-play-button {
  box-sizing: border-box;
  padding: calc(15% / 2);
  width: 0;
  height: 0;
  margin: 0;
  border-radius: 50%;
  box-shadow: RGBA(0 0 0/10%) 0 0 20px 0;
  border: none;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: RGBA(255 255 255/90%);
  opacity: 0;
  transition: opacity cubic-bezier(0.4, 0, 0.6, 1) 0.6s;
}

/* line 355, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-controls-container[casting=true] .shaka-play-button,
.shaka-controls-container[shown=true] .shaka-play-button {
  opacity: 1;
}

/* line 360, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-play-button[icon=play] {
  background-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22%23000000%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M8%205v14l11-7z%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%2F%3E%0A%3C%2Fsvg%3E");
}

/* line 364, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-play-button[icon=pause] {
  background-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22%23000000%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M6%2019h4V5H6v14zm8-14v14h4V5h-4z%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%2F%3E%0A%3C%2Fsvg%3E");
}

/* line 368, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-current-time {
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}

/* line 374, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-current-time[disabled] {
  background-color: transparent;
  color: #fff;
  cursor: default;
}

/* line 380, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-controls-container button:focus,
.shaka-controls-container input:focus {
  outline: 1px solid Highlight;
}

/* line 385, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-controls-container button:-moz-focus-inner,
.shaka-controls-container input:-moz-focus-outer {
  outline: 0;
  border: 0;
}

/* line 391, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-controls-container:not(.shaka-keyboard-navigation) button:focus,
.shaka-controls-container:not(.shaka-keyboard-navigation) input:focus {
  outline: 0;
}

/* line 396, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-fast-foward-container,
.shaka-rewind-container {
  height: 100%;
  width: 100%;
  flex-shrink: 1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0;
  border: none;
  color: #fff;
  background-color: RGBA(0, 0, 0, 0.5);
  cursor: default;
  font-size: 20px;
  opacity: 0;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* line 423, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-fast-foward-container {
  border-radius: 40% 0 0 40%;
}

/* line 427, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-rewind-container {
  border-radius: 0 40% 40% 0;
}

/* line 431, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-forward-rewind-container-icon {
  font-family: "Material Icons Round";
  font-size: 34px;
}

/* line 436, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-range-container {
  position: relative;
  top: 0;
  left: 0;
  margin: calc((12px - 4px)/ 2) 6px;
  height: 4px;
  border-radius: 4px;
  background: #fff;
}

/* line 446, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-volume-bar-container {
  width: 100px;
  padding: 0;
}

/* line 451, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-range-element {
  -webkit-appearance: none;
  background: 0 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  height: 12px;
  top: calc((4px - 12px)/ 2);
  z-index: 1;
}

/* line 468, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-range-element::-webkit-slider-runnable-track {
  width: 100%;
  cursor: pointer;
  height: 12px;
  background: 0 0;
  color: transparent;
  border: none;
}

/* line 477, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-range-element::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  border-radius: 12px;
  height: 12px;
  width: 12px;
  background: #fff;
}

/* line 486, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-range-element::-moz-range-track {
  width: 100%;
  cursor: pointer;
  height: 12px;
  background: 0 0;
  color: transparent;
  border: none;
}

/* line 495, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-range-element::-moz-range-thumb {
  -webkit-appearance: none;
  border: none;
  border-radius: 12px;
  height: 12px;
  width: 12px;
  background: #fff;
}

/* line 504, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-seek-bar-container {
  opacity: 0;
  transition: opacity cubic-bezier(0.4, 0, 0.6, 1) 0.6s;
}

/* line 509, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-controls-container[casting=true] .shaka-seek-bar-container,
.shaka-controls-container[shown=true] .shaka-seek-bar-container {
  opacity: 1;
}

/* line 514, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-ad-markers {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

/* line 526, app/assets/stylesheets/v5-migration/_shaka-player.scss */
#shaka-player-ui-chapters-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  z-index: 0;
}

/* line 534, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-chapter {
  height: 100%;
  position: relative;
}

/* line 539, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-chapter-label {
  position: relative;
  top: -2.5em;
  width: 100%;
  text-align: center;
  text-shadow: 1px 1px gray;
  line-height: normal;
}

/* line 548, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-chapter > div:first-child {
  width: 100%;
  height: 100%;
  border-right: 1px solid;
  position: absolute;
}

/* line 555, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-chapter:last-child > div:first-child {
  border-right: none;
}

/*!
 * @license
 * The SVG/CSS buffering spinner is based on http://codepen.io/jczimm/pen/vEBpoL
 * Some local modifications have been made.
 *
 * Copyright (c) 2016 by jczimm
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */
/* line 584, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-spinner-svg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  animation: rotate 2s linear infinite;
  transform-origin: center center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

/* line 598, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-spinner-path {
  stroke: #202124;
  stroke-dasharray: 20, 200;
  stroke-dashoffset: 0;
  animation: dash 1s ease-in-out infinite;
  stroke-linecap: round;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

/* line 629, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-spacer {
  cursor: default;
  flex-shrink: 1;
  flex-grow: 1;
  margin: 0;
}

/* line 636, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-overflow-menu,
.shaka-settings-menu {
  overflow-x: hidden;
  overflow-y: auto;
  white-space: nowrap;
  background: #fff;
  box-shadow: 0 1px 9px 0 RGBA(0 0 0/40%);
  border-radius: 2px;
  max-height: 250px;
  min-width: 180px;
  opacity: 0;
  transition: opacity cubic-bezier(0.4, 0, 0.6, 1) 0.6s;
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 30px;
}

/* line 656, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-controls-container[casting=true] .shaka-overflow-menu,
.shaka-controls-container[casting=true] .shaka-settings-menu,
.shaka-controls-container[shown=true] .shaka-overflow-menu,
.shaka-controls-container[shown=true] .shaka-settings-menu {
  opacity: 1;
}

/* line 663, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-overflow-menu button,
.shaka-settings-menu button {
  font-size: 14px;
  background: 0 0;
  color: #000;
  border: none;
  min-height: 30px;
  padding: 3.5px 6px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* line 676, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-overflow-menu button:hover,
.shaka-settings-menu button:hover {
  background: #e0e0e0;
}

/* line 681, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-overflow-menu button label,
.shaka-settings-menu button label {
  cursor: pointer;
}

/* line 686, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-keyboard-navigation .shaka-overflow-menu button:focus,
.shaka-keyboard-navigation .shaka-settings-menu button:focus {
  background: #e0e0e0;
}

/* line 691, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-overflow-menu i,
.shaka-settings-menu i {
  padding-left: 10px;
  padding-right: 10px;
}

/* line 697, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-overflow-menu.shaka-low-position,
.shaka-settings-menu.shaka-low-position {
  bottom: 15px;
}

/* line 702, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-overflow-menu span {
  text-align: left;
}

/* line 706, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-overflow-button-label {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* line 712, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-current-selection-span {
  color: RGBA(0 0 0/54%);
}

/* line 716, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-settings-menu span {
  margin-left: 54px;
}

/* line 720, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-back-to-overflow-button span {
  margin-left: 0;
}

/* line 724, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-back-to-overflow-button i {
  padding-right: 20px;
}

/* line 728, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-auto-span {
  left: 17px;
}

/* line 732, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-controls-container[ad-active=true] {
  pointer-events: none;
}

/* line 736, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-controls-container[ad-active=true] .shaka-bottom-controls {
  pointer-events: auto;
}

/* line 740, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-client-side-ad-container,
.shaka-server-side-ad-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/* line 749, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-video-container[shaka-controls=true] .shaka-client-side-ad-container iframe,
.shaka-video-container[shaka-controls=true] .shaka-server-side-ad-container iframe {
  height: 90%;
}

/* line 754, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-server-side-ad-container {
  width: 100%;
  height: 100%;
  flex-shrink: 1;
}

/* line 760, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-server-side-ad-container:not([ad-active=true]) {
  pointer-events: none;
}

/* line 764, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-ad-controls {
  display: flex;
  flex-direction: row;
  z-index: 1;
  padding-bottom: 1%;
}

/* line 771, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-video-container:not([shaka-controls=true]) .shaka-ad-controls {
  display: none;
}

/* line 775, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-ad-controls button,
.shaka-ad-controls div {
  color: #fff;
  font-size: initial;
}

/* line 781, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-ad-controls div:not(.shaka-skip-ad-counter) {
  margin: 1px;
}

/* line 785, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-ad-counter,
.shaka-ad-position {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  text-shadow: 1px 1px 4px #000;
}

/* line 793, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-ad-controls .shaka-ad-position:not(.shaka-hidden) + .shaka-ad-counter {
  margin-left: .75em;
}

/* line 797, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-skip-ad-container {
  position: relative;
  right: calc((100% - 96%)/ 2 * -1);
  display: flex;
  flex-direction: row;
  margin: 0;
}

/* line 805, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-skip-ad-button {
  padding: 5px 15px;
  background: RGBA(0 0 0/70%);
  border: none;
  cursor: pointer;
}

/* line 812, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-skip-ad-button:disabled {
  background: RGBA(0 0 0/30%);
}

/* line 816, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-skip-ad-counter {
  padding: 5px;
  background: RGBA(0 0 0/70%);
  margin: 0;
}

/*!
 * @license
 * The tooltip is based on https://github.com/felipefialho/css-components/
 * Local modifications have been performed.
 *
 * Copyright (c) 2017 Felipe Fialho
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */
/* line 847, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-tooltips-on {
  overflow: visible;
}

/* line 851, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-tooltips-on > [class*=shaka-tooltip] {
  position: relative;
}

/* line 855, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-tooltips-on > [class*=shaka-tooltip]:active:after,
.shaka-tooltips-on > [class*=shaka-tooltip]:focus-visible:after,
.shaka-tooltips-on > [class*=shaka-tooltip]:hover:after {
  content: attr(aria-label);
  font-family: Roboto-Regular, Roboto, sans-serif;
  line-height: calc(32px / 2);
  white-space: nowrap;
  font-size: 13px;
  background: RGBA(35 35 35/90%);
  color: #fff;
  border-radius: 3px;
  padding: 5px 10px;
  position: absolute;
  bottom: calc(32px + 5px);
  left: calc(32px / 2);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* line 877, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-tooltips-on > .shaka-tooltip-status:active:after,
.shaka-tooltips-on > .shaka-tooltip-status:focus-visible:after,
.shaka-tooltips-on > .shaka-tooltip-status:hover:after {
  content: attr(aria-label) " (" attr(shaka-status) ")";
}

/* line 883, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-tooltips-on button:first-child:active:after,
.shaka-tooltips-on button:first-child:focus-visible:after,
.shaka-tooltips-on button:first-child:hover:after {
  left: 0;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

/* line 894, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.shaka-tooltips-on button:last-child:active:after,
.shaka-tooltips-on button:last-child:focus-visible:after,
.shaka-tooltips-on button:last-child:hover:after {
  left: 32px;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}

/* line 905, app/assets/stylesheets/v5-migration/_shaka-player.scss */
#shaka-player-ui-thumbnail-container {
  background-color: #000;
  border: 1px solid #000;
  box-shadow: 0 8px 8px 0 RGBA(0, 0, 0, 0.5);
  min-width: 150px;
  overflow: hidden;
  position: absolute;
  visibility: hidden;
  width: 15%;
  z-index: 1;
}

/* line 917, app/assets/stylesheets/v5-migration/_shaka-player.scss */
#shaka-player-ui-thumbnail-container #shaka-player-ui-thumbnail-image {
  position: absolute;
}

/* line 921, app/assets/stylesheets/v5-migration/_shaka-player.scss */
#shaka-player-ui-thumbnail-container #shaka-player-ui-thumbnail-time {
  background-color: RGBA(0, 0, 0, 0.5);
  bottom: 0;
  color: #fff;
  font-size: 16px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
}

@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxP.ttf) format("truetype");
}

@font-face {
  font-family: 'Material Icons Round';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialiconsround/v108/LDItaoyNOAY6Uewc665JcIzCKsKc_M9flwmM.otf) format("opentype");
}

/* line 946, app/assets/stylesheets/v5-migration/_shaka-player.scss */
.material-icons-round {
  font-family: 'Material Icons Round';
  font-weight: 400;
  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;
}

/*# sourceMappingURL=controls.css.map */
/* line 1, app/assets/stylesheets/_app_info_pages.scss */
.app-info-wrapper {
  margin-top: -59px;
  padding-top: 75px;
  padding: 75px 0 70px 0;
  background-image: url(/assets/landingpage/app-info/hero-bg-44e19c017d830108ab829693befab384d0de7c72e18a5a3ca60de23f39c786a7.jpg);
  background-position-y: -1px;
  background-size: cover;
  background-repeat: no-repeat;
}

/* line 11, app/assets/stylesheets/_app_info_pages.scss */
.app-info-wrapper--bought-packages {
  background-size: cover;
}

/* line 13, app/assets/stylesheets/_app_info_pages.scss */
.app-info-wrapper__title {
  max-width: 80%;
  font-size: 60px;
  font-weight: 400;
  text-transform: none;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.15);
}

/* line 22, app/assets/stylesheets/_app_info_pages.scss */
.app-info-wrapper__subtitle {
  max-width: 60%;
  margin-top: 40px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  color: #820560;
}

/* line 33, app/assets/stylesheets/_app_info_pages.scss */
.app-info-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 60px;
}

/* line 39, app/assets/stylesheets/_app_info_pages.scss */
.app-info-cta__description {
  width: 25rem;
  margin-right: 6rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.7;
}

/* line 47, app/assets/stylesheets/_app_info_pages.scss */
.app-info-cta__link {
  height: 6rem;
}

/* line 49, app/assets/stylesheets/_app_info_pages.scss */
.app-info-cta__link img {
  height: 100%;
}

/* line 51, app/assets/stylesheets/_app_info_pages.scss */
.app-info-cta__link + .app-info-cta__link {
  margin-left: 3rem;
}

/* line 55, app/assets/stylesheets/_app_info_pages.scss */
.app-info-walkthrough {
  margin: 0 0 80px 0;
  padding: 70px 0;
  background-color: #131418;
}

/* line 61, app/assets/stylesheets/_app_info_pages.scss */
.app-info-walkthrough__wrapper {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

/* line 67, app/assets/stylesheets/_app_info_pages.scss */
.app-info-walkthrough__preview {
  flex: 0 0 60%;
}

/* line 69, app/assets/stylesheets/_app_info_pages.scss */
.app-info-walkthrough__slider {
  display: none;
  flex-direction: row;
  overflow-x: scroll;
  overflow-y: hidden;
  margin-bottom: 70px;
}

/* line 78, app/assets/stylesheets/_app_info_pages.scss */
.app-info-walkthrough__slide {
  height: 60rem;
}

/* line 80, app/assets/stylesheets/_app_info_pages.scss */
.app-info-walkthrough__slide + .app-info-walkthrough__slide {
  margin-left: 5rem;
}

/* line 81, app/assets/stylesheets/_app_info_pages.scss */
.app-info-walkthrough__slide img {
  height: 100%;
}

/* line 84, app/assets/stylesheets/_app_info_pages.scss */
.app-info-walkthrough__list-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10rem;
}

/* line 91, app/assets/stylesheets/_app_info_pages.scss */
.app-info-walkthrough__list {
  padding-left: 0;
  list-style: none;
  counter-reset: app-info-counter;
  font-size: 0.9em;
  font-weight: 400;
}

/* line 98, app/assets/stylesheets/_app_info_pages.scss */
.app-info-walkthrough__list li {
  counter-increment: app-info-counter;
  position: relative;
  margin-bottom: 3rem;
}

/* line 103, app/assets/stylesheets/_app_info_pages.scss */
.app-info-walkthrough__list li:last-child {
  margin-bottom: 0;
}

/* line 104, app/assets/stylesheets/_app_info_pages.scss */
.app-info-walkthrough__list li:before {
  content: counter(app-info-counter) ".";
  position: absolute;
  top: -13px;
  left: -4rem;
  font-size: 2em;
  font-weight: 300;
  color: #820560;
}

/* line 119, app/assets/stylesheets/_app_info_pages.scss */
.app-info-footer__subtitle {
  max-width: 60%;
  margin-top: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  color: #820560;
}

/* line 130, app/assets/stylesheets/_app_info_pages.scss */
.app-info-contact {
  margin: 80px 0 -40px 0;
  padding: 70px 0;
  background-color: #131418;
}

/* line 136, app/assets/stylesheets/_app_info_pages.scss */
.app-info-contact__title {
  margin-bottom: 4rem;
  font-size: 1.25em;
  font-weight: 400;
  line-height: 1.7;
  color: #820560;
  text-align: center;
}

/* line 146, app/assets/stylesheets/_app_info_pages.scss */
.app-info-contact-funding {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

/* line 154, app/assets/stylesheets/_app_info_pages.scss */
.app-info-contact-funding__notice {
  width: 100%;
  font-size: 0.9em;
  text-align: center;
  font-style: italic;
}

/* line 161, app/assets/stylesheets/_app_info_pages.scss */
.app-info-contact-funding__image {
  width: 250px;
  height: 69px;
  background-image: url(/assets/landingpage/app-info/logo-fms-nrw-71e8d72fd7d18879ead8f703aac64b2f7a322b363a0ad62bba72740b9a0e72a4.png);
  background-size: 250px 69px;
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 192dpi), screen and (min-resolution: 2dppx) {
  /* line 173, app/assets/stylesheets/_app_info_pages.scss */
  .app-info-contact-funding__image {
    background-image: url(/assets/landingpage/app-info/logo-fms-nrw@2x-83562cfae20c2ea815e065ca5de7e07d2d89c3adae2e5334865ccbb8a2ed0679.png);
  }
}

@media only screen and (max-width: 992px) {
  /* line 180, app/assets/stylesheets/_app_info_pages.scss */
  .app-info-wrapper__title br {
    display: none;
  }
  /* line 181, app/assets/stylesheets/_app_info_pages.scss */
  .app-info-wrapper__subtitle {
    max-width: 80%;
  }
  /* line 185, app/assets/stylesheets/_app_info_pages.scss */
  .app-info-walkthrough__wrapper {
    flex-direction: column;
  }
  /* line 186, app/assets/stylesheets/_app_info_pages.scss */
  .app-info-walkthrough__preview {
    margin-bottom: 70px;
  }
  /* line 187, app/assets/stylesheets/_app_info_pages.scss */
  .app-info-walkthrough__list-wrapper {
    margin-right: 5rem;
  }
  /* line 191, app/assets/stylesheets/_app_info_pages.scss */
  .app-info-footer__subtitle {
    max-width: 80%;
  }
}

@media only screen and (max-width: 480px) {
  /* line 196, app/assets/stylesheets/_app_info_pages.scss */
  .app-info-wrapper {
    background-image: url(/assets/landingpage/app-info/hero-bg--mobile-8f7a35308ae057c60c941a2875eb325484b042b508eb6da1f1dc262730b1abe4.jpg);
    background-size: contain;
  }
  /* line 200, app/assets/stylesheets/_app_info_pages.scss */
  .app-info-wrapper__title {
    max-width: 100%;
    font-size: 30px;
  }
  /* line 204, app/assets/stylesheets/_app_info_pages.scss */
  .app-info-wrapper__subtitle {
    max-width: 100%;
  }
  /* line 207, app/assets/stylesheets/_app_info_pages.scss */
  .app-info-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  /* line 211, app/assets/stylesheets/_app_info_pages.scss */
  .app-info-cta__description {
    width: auto;
    margin-right: 0;
    margin-bottom: 3rem;
  }
  /* line 217, app/assets/stylesheets/_app_info_pages.scss */
  .app-info-cta__link {
    margin-bottom: 3rem;
  }
  /* line 218, app/assets/stylesheets/_app_info_pages.scss */
  .app-info-cta__link + .app-info-cta__link {
    margin-left: 0;
  }
  /* line 224, app/assets/stylesheets/_app_info_pages.scss */
  .app-info-walkthrough__wrapper {
    overflow-x: hidden;
  }
  /* line 225, app/assets/stylesheets/_app_info_pages.scss */
  .app-info-walkthrough__preview {
    display: none;
  }
  /* line 226, app/assets/stylesheets/_app_info_pages.scss */
  .app-info-walkthrough__slider {
    display: flex;
  }
  /* line 227, app/assets/stylesheets/_app_info_pages.scss */
  .app-info-walkthrough__list-wrapper {
    margin-left: 5rem;
    margin-right: 2rem;
  }
  /* line 234, app/assets/stylesheets/_app_info_pages.scss */
  .app-info-footer__subtitle {
    max-width: 100%;
  }
}

/* line 1, app/assets/stylesheets/_cards.scss */
.cards {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #fff;
  border-radius: 3px;
}

/* line 13, app/assets/stylesheets/_cards.scss */
.cards--left {
  justify-content: flex-start;
}

/* line 14, app/assets/stylesheets/_cards.scss */
.cards--danger {
  border-left: 5px solid #E74C3C;
}

/* line 17, app/assets/stylesheets/_cards.scss */
.card {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

/* line 25, app/assets/stylesheets/_cards.scss */
.card--left {
  flex-grow: 0;
  align-items: flex-start;
}

/* line 30, app/assets/stylesheets/_cards.scss */
.card--spaced {
  margin-left: 4rem;
}

/* line 32, app/assets/stylesheets/_cards.scss */
.card__icon {
  margin-right: 0.5rem;
}

/* line 34, app/assets/stylesheets/_cards.scss */
.card__title {
  margin-top: 0.5rem;
  font-size: 0.8em;
  text-transform: uppercase;
  color: #95a5a6;
  border-top: 2px solid rgba(149, 165, 166, 0.75);
}

/* line 44, app/assets/stylesheets/_cards.scss */
.card__content {
  font-size: 1.25em;
  font-weight: 300;
}

@media (max-width: 991px) {
  /* line 51, app/assets/stylesheets/_cards.scss */
  .cards {
    flex-direction: column;
    width: 100%;
  }
  /* line 55, app/assets/stylesheets/_cards.scss */
  .card {
    width: 100%;
  }
  /* line 57, app/assets/stylesheets/_cards.scss */
  .card + .card {
    margin-top: 1rem;
  }
  /* line 59, app/assets/stylesheets/_cards.scss */
  .card__image {
    align-self: center;
  }
  /* line 60, app/assets/stylesheets/_cards.scss */
  .card--left {
    align-items: center;
  }
}

/* line 2, app/assets/stylesheets/_chosen_custom.scss */
.chosen-container-single .chosen-single,
.chosen-container-active.chosen-with-drop .chosen-single {
  border-width: 2px;
  box-shadow: none;
  background: none;
  height: 46px;
  color: #25292c;
  padding-left: 15px;
  padding-right: 15px;
}

/* line 13, app/assets/stylesheets/_chosen_custom.scss */
.chosen-container-single .chosen-default {
  color: #b4bcc2;
}

/* line 18, app/assets/stylesheets/_chosen_custom.scss */
.edit_user .chosen-container-single .chosen-single,
.edit_user .chosen-container-active.chosen-with-drop .chosen-single, .partner-form .chosen-container-single .chosen-single,
.partner-form .chosen-container-active.chosen-with-drop .chosen-single {
  height: 46px;
  color: #25292c;
  background-color: #fff;
}

/* line 24, app/assets/stylesheets/_chosen_custom.scss */
.edit_user .chosen-container-single .chosen-single span,
.edit_user .chosen-container-active.chosen-with-drop .chosen-single span, .partner-form .chosen-container-single .chosen-single span,
.partner-form .chosen-container-active.chosen-with-drop .chosen-single span {
  line-height: 42px;
}

/* line 26, app/assets/stylesheets/_chosen_custom.scss */
.edit_user .chosen-container-single .chosen-single div b,
.edit_user .chosen-container-active.chosen-with-drop .chosen-single div b, .partner-form .chosen-container-single .chosen-single div b,
.partner-form .chosen-container-active.chosen-with-drop .chosen-single div b {
  display: none;
}

/* line 38, app/assets/stylesheets/_chosen_custom.scss */
.partner-user-form .chosen-container-single .chosen-single,
.partner-user-form .chosen-container-active.chosen-with-drop .chosen-single {
  height: auto;
}

/* line 47, app/assets/stylesheets/_chosen_custom.scss */
.partner-form .chosen-container-single .chosen-single span, .partner-form .chosen-container-active.chosen-with-drop .chosen-single span {
  line-height: 42px;
  text-align: left;
}

/* line 56, app/assets/stylesheets/_chosen_custom.scss */
.cinema-select .chosen-container-single .chosen-single,
.cinema-select .chosen-container-active.chosen-with-drop .chosen-single {
  border-color: #820560;
  border-radius: 50px;
}

/* line 61, app/assets/stylesheets/_chosen_custom.scss */
.cinema-select .chosen-container-single .chosen-single div b,
.cinema-select .chosen-container-active.chosen-with-drop .chosen-single div b {
  display: none;
}

/* line 62, app/assets/stylesheets/_chosen_custom.scss */
.cinema-select .chosen-container-single .chosen-single span,
.cinema-select .chosen-container-active.chosen-with-drop .chosen-single span {
  line-height: 42px;
  margin-right: 0;
}

/* line 68, app/assets/stylesheets/_chosen_custom.scss */
.cinema-select .chosen-container-single .chosen-search input[type="text"] {
  color: #25292c;
  background-color: #fff;
}

/* line 76, app/assets/stylesheets/_chosen_custom.scss */
.chosen-container-multi .chosen-choices {
  padding: 1rem;
  border-radius: 4px;
  border: 2px solid #dce4ec;
  box-shadow: none;
  background-image: none;
}

/* line 85, app/assets/stylesheets/_chosen_custom.scss */
.chosen-container-multi .chosen-choices li.search-choice {
  padding: 1rem 2rem 1rem 1rem;
  color: #fff;
  border: none;
  background: #820560;
}

/* line 92, app/assets/stylesheets/_chosen_custom.scss */
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  top: 50%;
  margin-top: -5px;
}

/* line 2, app/assets/stylesheets/_cinema.scss */
.cinemas-index .header {
  padding-bottom: 60px;
}

/* line 5, app/assets/stylesheets/_cinema.scss */
.cinemas-index .header h1 {
  margin-bottom: 36px;
}

/* line 10, app/assets/stylesheets/_cinema.scss */
.cinemas-index .light {
  margin-bottom: -40px;
}

/* line 14, app/assets/stylesheets/_cinema.scss */
.cinemas-index .intro-text {
  margin-bottom: 36px;
}

/* line 18, app/assets/stylesheets/_cinema.scss */
.cinema-single .header-image {
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-top: -60px;
}

/* line 26, app/assets/stylesheets/_cinema.scss */
.cinema-single .header {
  padding-bottom: 100px;
  text-align: center;
}

/* line 30, app/assets/stylesheets/_cinema.scss */
.cinema-single .header h1 {
  margin-bottom: 36px;
}

/* line 34, app/assets/stylesheets/_cinema.scss */
.cinema-single .header .logo {
  height: 280px;
  width: 280px;
  background: #eee;
  border-radius: 280px;
  margin: -140px auto 40px;
  line-height: 280px;
  padding: 50px 0;
}

/* line 43, app/assets/stylesheets/_cinema.scss */
.cinema-single .header .logo img {
  margin: 0 auto;
  width: 180px;
  height: 180px;
}

/* line 50, app/assets/stylesheets/_cinema.scss */
.cinema-single .header .description {
  margin-bottom: 70px;
}

/* line 55, app/assets/stylesheets/_cinema.scss */
.cinema-single .movies {
  padding-top: 90px;
}

/* line 59, app/assets/stylesheets/_cinema.scss */
.cinema-single .dark {
  margin-bottom: -40px;
}

/* line 66, app/assets/stylesheets/_cinema.scss */
.cinemas h2 {
  margin-top: 0;
  margin-bottom: 60px;
}

/* line 71, app/assets/stylesheets/_cinema.scss */
.cinemas img {
  border-radius: 6px;
}

/* line 75, app/assets/stylesheets/_cinema.scss */
.cinemas .cinema {
  margin-bottom: 70px;
}

/* line 78, app/assets/stylesheets/_cinema.scss */
.cinemas .cinema .cinema-info {
  padding-left: 15px;
  position: relative;
  padding-bottom: 12px;
}

/* line 83, app/assets/stylesheets/_cinema.scss */
.cinemas .cinema .cinema-info .border {
  position: absolute;
  left: 0;
  height: 100%;
  width: 25px;
  border-left: 1px solid #820560;
  border-bottom: 1px solid #820560;
}

/* line 92, app/assets/stylesheets/_cinema.scss */
.cinemas .cinema .cinema-info h3 {
  margin-bottom: 10px;
  margin-top: 25px;
}

/* line 96, app/assets/stylesheets/_cinema.scss */
.cinemas .cinema .cinema-info h3 a {
  color: #222222;
}

/* line 101, app/assets/stylesheets/_cinema.scss */
.cinemas .cinema .cinema-info .subtitle {
  color: #92969C;
  font-size: 22px;
}

/* line 1, app/assets/stylesheets/_cta.scss */
#cta {
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: absolute;
  z-index: 10000 !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  background-color: #000;
  color: #fff;
  font-size: 1.25em;
}

/* line 22, app/assets/stylesheets/_cta.scss */
#cta.is--visible {
  opacity: 1;
  pointer-events: all;
}

/* line 27, app/assets/stylesheets/_cta.scss */
#cta .cta-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
}

/* line 1, app/assets/stylesheets/_dropdowns.scss */
.dropdown-menu--light {
  border-radius: 0;
  border: none;
  border-top: 1px solid transparent;
}

/* line 8, app/assets/stylesheets/_dropdowns.scss */
.dropdown-item__icon {
  margin-right: 1rem;
}

/* line 12, app/assets/stylesheets/_dropdowns.scss */
.dropdown-menu .divider + .divider {
  display: none;
}

/* line 17, app/assets/stylesheets/_dropdowns.scss */
.dropdown-menu > li > a.dropdown-item--success .dropdown-item__icon {
  color: #18BC9C;
}

/* line 18, app/assets/stylesheets/_dropdowns.scss */
.dropdown-menu > li > a.dropdown-item--success:hover, .dropdown-menu > li > a.dropdown-item--success:active, .dropdown-menu > li > a.dropdown-item--success:focus {
  color: #18BC9C;
  background-color: rgba(24, 188, 156, 0.25);
}

/* line 17, app/assets/stylesheets/_dropdowns.scss */
.dropdown-menu > li > a.dropdown-item--danger .dropdown-item__icon {
  color: #E74C3C;
}

/* line 18, app/assets/stylesheets/_dropdowns.scss */
.dropdown-menu > li > a.dropdown-item--danger:hover, .dropdown-menu > li > a.dropdown-item--danger:active, .dropdown-menu > li > a.dropdown-item--danger:focus {
  color: #E74C3C;
  background-color: rgba(231, 76, 60, 0.25);
}

/* line 17, app/assets/stylesheets/_dropdowns.scss */
.dropdown-menu > li > a.dropdown-item--warning .dropdown-item__icon {
  color: #F39C12;
}

/* line 18, app/assets/stylesheets/_dropdowns.scss */
.dropdown-menu > li > a.dropdown-item--warning:hover, .dropdown-menu > li > a.dropdown-item--warning:active, .dropdown-menu > li > a.dropdown-item--warning:focus {
  color: #F39C12;
  background-color: rgba(243, 156, 18, 0.25);
}

@media (max-width: 991px) {
  /* line 32, app/assets/stylesheets/_dropdowns.scss */
  .dropdown-menu .divider {
    background-color: #e6e6e6;
  }
}

/* line 2, app/assets/stylesheets/_filters.scss */
.filter-selection__modal {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
}

/* line 18, app/assets/stylesheets/_filters.scss */
.filter-selection__wrapper {
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  display: flex;
  flex-direction: column;
  max-height: 95%;
  min-width: 40rem;
  border-radius: 4px;
  background-color: #fff;
}

/* line 29, app/assets/stylesheets/_filters.scss */
.filter-selection__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #dce4ec;
}

/* line 38, app/assets/stylesheets/_filters.scss */
.filter-selection__title {
  margin-right: 6rem;
  padding-left: 2rem;
  font-weight: 500;
}

/* line 44, app/assets/stylesheets/_filters.scss */
.filter-selection__close-button {
  padding: 1rem;
  cursor: pointer;
}

/* line 48, app/assets/stylesheets/_filters.scss */
.filter-selection__close-button:hover {
  background-color: rgba(231, 76, 60, 0.25);
}

/* line 51, app/assets/stylesheets/_filters.scss */
.filter-selection__content {
  padding: 2rem;
  min-height: 30rem;
  overflow-y: auto;
  border: 2px solid #dce4ec;
  border-top: 0;
}

/* line 60, app/assets/stylesheets/_filters.scss */
.filter-selection__option {
  padding: 0.5rem 1rem;
  cursor: pointer;
}

/* line 64, app/assets/stylesheets/_filters.scss */
.filter-selection__option-description {
  display: block;
  font-size: 0.9em;
  color: #95a5a6;
}

/* line 70, app/assets/stylesheets/_filters.scss */
.filter-selection__option:hover {
  background-color: rgba(130, 5, 96, 0.25);
}

/* line 74, app/assets/stylesheets/_filters.scss */
.filter-selection__option + .filter-selection__option {
  margin-top: 1rem;
}

/* line 79, app/assets/stylesheets/_filters.scss */
.section-filter__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: -0.5rem;
}

/* line 87, app/assets/stylesheets/_filters.scss */
.section-filter__entry {
  margin: 0.5rem;
  padding: 1rem;
  white-space: nowrap;
  border: 2px solid #dce4ec;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
}

/* line 98, app/assets/stylesheets/_filters.scss */
.section-filter__entry:hover .section-filter__entry-close-button {
  color: #E74C3C;
}

/* line 100, app/assets/stylesheets/_filters.scss */
.section-filter__entry-close-button {
  margin-left: 1rem;
}

/* line 102, app/assets/stylesheets/_filters.scss */
.section-filter__entry + .section-filter__entry {
  margin-left: 1rem;
}

/* line 107, app/assets/stylesheets/_filters.scss */
.filter-time-span__wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* line 113, app/assets/stylesheets/_filters.scss */
.filter-time-span__input {
  width: 8rem;
}

/* line 114, app/assets/stylesheets/_filters.scss */
.filter-time-span__colon {
  margin: 0 1rem;
  font-weight: 900;
}

@media (max-width: 767px) {
  /* line 123, app/assets/stylesheets/_filters.scss */
  .section-filter__list {
    flex-direction: column;
    width: 100%;
    margin: 0;
  }
  /* line 129, app/assets/stylesheets/_filters.scss */
  .section-filter__entry {
    flex: none;
    width: 100%;
    margin: 0;
  }
  /* line 134, app/assets/stylesheets/_filters.scss */
  .section-filter__entry-close-button {
    float: right;
  }
  /* line 136, app/assets/stylesheets/_filters.scss */
  .section-filter__entry + .section-filter__entry {
    margin: 1rem 0 0 0;
  }
}

/* line 1, app/assets/stylesheets/_flash.scss */
.flash.alert {
  position: fixed;
  z-index: 10000;
  left: 2.5%;
  bottom: 2.5%;
  width: 95%;
  margin-bottom: 0;
  padding: 30px 25px;
  border-radius: 0px;
  border: none;
  font-weight: 500;
  font-size: 18px;
  box-shadow: 0 0px 1.5em rgba(0, 0, 0, 0.175);
}

/* line 17, app/assets/stylesheets/_flash.scss */
.flash.alert .close {
  font-size: 18px;
  margin-left: 10px;
}

/* line 23, app/assets/stylesheets/_flash.scss */
.invalid-email-warning {
  margin-top: -60px;
  margin-bottom: 60px;
  padding: 2rem;
  text-align: center;
}

/* line 30, app/assets/stylesheets/_flash.scss */
.alert-success-light {
  border: 2px solid #820560;
  background-color: rgba(130, 5, 96, 0.25);
}

/* line 35, app/assets/stylesheets/_flash.scss */
.alert-info-light {
  border: 2px solid rgba(52, 152, 219, 0.5);
  background-color: rgba(52, 152, 219, 0.1);
}

/* line 1, app/assets/stylesheets/_footer.scss */
footer.footer {
  position: relative;
  padding: 50px 0;
  background: #820560;
  color: #222429;
}

/* line 7, app/assets/stylesheets/_footer.scss */
footer.footer h3 {
  margin-top: 0;
}

/* line 11, app/assets/stylesheets/_footer.scss */
footer.footer h4 {
  text-transform: uppercase;
}

/* line 15, app/assets/stylesheets/_footer.scss */
footer.footer p {
  margin-bottom: 6px;
}

/* line 19, app/assets/stylesheets/_footer.scss */
footer.footer a {
  color: #222429;
}

/* line 22, app/assets/stylesheets/_footer.scss */
footer.footer a:hover {
  text-decoration: none;
  color: #454953;
}

/* line 28, app/assets/stylesheets/_footer.scss */
footer.footer ul.list-inline {
  margin-bottom: 0;
}

/* line 32, app/assets/stylesheets/_footer.scss */
footer.footer .logo-col {
  padding-top: 7px;
}

/* line 36, app/assets/stylesheets/_footer.scss */
footer.footer .eu-description {
  margin-top: 15px;
  font-size: 14px;
}

/* line 41, app/assets/stylesheets/_footer.scss */
footer.footer .brand-image {
  width: 120px;
}

@media (max-width: 767px) {
  /* line 46, app/assets/stylesheets/_footer.scss */
  footer.footer .text-right {
    text-align: left;
  }
  /* line 50, app/assets/stylesheets/_footer.scss */
  footer.footer .col-sm-3 {
    margin-bottom: 40px;
  }
  /* line 53, app/assets/stylesheets/_footer.scss */
  footer.footer .col-sm-3:last-of-type {
    margin-bottom: 0;
  }
}

/* line 60, app/assets/stylesheets/_footer.scss */
.footer-creative-europe {
  background: #E8EBF0;
  padding: 15px 0;
  color: #222429;
}

/* line 65, app/assets/stylesheets/_footer.scss */
.footer-creative-europe p {
  font-size: 14px;
}

@media (min-width: 768px) {
  /* line 70, app/assets/stylesheets/_footer.scss */
  .footer-creative-europe p {
    margin: 0;
  }
}

/* line 1, app/assets/stylesheets/_forms.scss */
form .actions {
  margin-top: 2rem;
}

/* line 3, app/assets/stylesheets/_forms.scss */
.form-error-explanation {
  margin-bottom: 2rem;
  padding: 2rem;
  border: 2px solid #820560;
  border-radius: 3px;
  background: rgba(130, 5, 96, 0.1);
}

/* line 12, app/assets/stylesheets/_forms.scss */
.field_with_errors {
  display: inline;
  color: #E74C3C;
}

/* line 16, app/assets/stylesheets/_forms.scss */
.field_with_errors .form-control, .field_with_errors .edit_user .chosen-container-single .chosen-search input[type="text"], .edit_user .chosen-container-single .chosen-search .field_with_errors input[type="text"], .field_with_errors .partner-form .chosen-container-single .chosen-search input[type="text"], .partner-form .chosen-container-single .chosen-search .field_with_errors input[type="text"], .field_with_errors .cinema-select .chosen-container-single .chosen-search input[type="text"], .cinema-select .chosen-container-single .chosen-search .field_with_errors input[type="text"] {
  border-color: #E74C3C;
}

/* line 19, app/assets/stylesheets/_forms.scss */
.form-control, .edit_user .chosen-container-single .chosen-search input[type="text"], .partner-form .chosen-container-single .chosen-search input[type="text"], .cinema-select .chosen-container-single .chosen-search input[type="text"] {
  -webkit-appearance: none;
}

/* line 22, app/assets/stylesheets/_forms.scss */
.form-control.multiple, .edit_user .chosen-container-single .chosen-search input.multiple[type="text"], .partner-form .chosen-container-single .chosen-search input.multiple[type="text"], .cinema-select .chosen-container-single .chosen-search input.multiple[type="text"] {
  min-height: 400px;
}

/* line 26, app/assets/stylesheets/_forms.scss */
.input-group .form-control, .input-group .edit_user .chosen-container-single .chosen-search input[type="text"], .edit_user .chosen-container-single .chosen-search .input-group input[type="text"], .input-group .partner-form .chosen-container-single .chosen-search input[type="text"], .partner-form .chosen-container-single .chosen-search .input-group input[type="text"], .input-group .cinema-select .chosen-container-single .chosen-search input[type="text"], .cinema-select .chosen-container-single .chosen-search .input-group input[type="text"] {
  height: 44px;
}

/* line 29, app/assets/stylesheets/_forms.scss */
.input-group .form-control:last-child, .input-group .edit_user .chosen-container-single .chosen-search input[type="text"]:last-child, .edit_user .chosen-container-single .chosen-search .input-group input[type="text"]:last-child, .input-group .partner-form .chosen-container-single .chosen-search input[type="text"]:last-child, .partner-form .chosen-container-single .chosen-search .input-group input[type="text"]:last-child, .input-group .cinema-select .chosen-container-single .chosen-search input[type="text"]:last-child, .cinema-select .chosen-container-single .chosen-search .input-group input[type="text"]:last-child {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

/* line 36, app/assets/stylesheets/_forms.scss */
.nested-fields {
  margin-bottom: 10px;
}

/* line 38, app/assets/stylesheets/_forms.scss */
select[multiple], select[size] {
  min-height: 250px;
}

/* line 39, app/assets/stylesheets/_forms.scss */
select.select-provider[multiple] {
  height: 300px;
}

/* line 41, app/assets/stylesheets/_forms.scss */
select.form-control {
  background-image: linear-gradient(45deg, transparent 50%, #25292c 50%), linear-gradient(135deg, #25292c 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

/* line 47, app/assets/stylesheets/_forms.scss */
select.form-control.is-inline {
  display: inline-block;
  width: auto;
  padding-right: 30px;
}

/* line 54, app/assets/stylesheets/_forms.scss */
.form-hint {
  margin: 5px;
}

/* line 56, app/assets/stylesheets/_forms.scss */
.input-overlay {
  position: relative;
  width: 100%;
  height: 100%;
}

/* line 61, app/assets/stylesheets/_forms.scss */
.input-overlay:before {
  content: " ";
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  background-color: rgba(236, 236, 236, 0.5);
  transition: opacity 0.25s ease-in-out;
}

/* line 76, app/assets/stylesheets/_forms.scss */
.input-overlay.is--active {
  pointer-events: none;
}

/* line 79, app/assets/stylesheets/_forms.scss */
.input-overlay.is--active:before {
  opacity: 1;
}

/* line 4, app/assets/stylesheets/_general.scss */
html, body {
  height: 100%;
}

/* line 6, app/assets/stylesheets/_general.scss */
.wrapper {
  min-height: 100%;
  height: auto !important;
  /* This line and the next line are not necessary unless you need IE6 support */
  height: 100%;
  margin: 0 auto -130px;
  /* the bottom margin is the negative value of the footer's height */
}

/* line 14, app/assets/stylesheets/_general.scss */
body.light-body {
  background: #FFF;
}

/* line 15, app/assets/stylesheets/_general.scss */
body.light-grey-body {
  background: #f2f3f5;
}

/* line 17, app/assets/stylesheets/_general.scss */
body.body--primary {
  background-color: #820560;
}

/* line 20, app/assets/stylesheets/_general.scss */
.push {
  height: 170px;
}

/* line 21, app/assets/stylesheets/_general.scss */
.is--hidden {
  display: none !important;
}

/* line 22, app/assets/stylesheets/_general.scss */
.col-centered {
  margin: 0 auto;
}

/* line 23, app/assets/stylesheets/_general.scss */
.container {
  position: relative;
}

/* line 25, app/assets/stylesheets/_general.scss */
.mb-0 {
  margin-bottom: 0 !important;
}

/* line 26, app/assets/stylesheets/_general.scss */
.mt-2 {
  margin-top: 1rem;
}

/* line 32, app/assets/stylesheets/_general.scss */
h1 {
  text-transform: uppercase;
}

/* line 34, app/assets/stylesheets/_general.scss */
h1 .label {
  font-size: 18px;
  display: inline-block;
  top: -9px;
  position: relative;
}

/* line 43, app/assets/stylesheets/_general.scss */
h2 {
  font-weight: 300;
}

/* line 44, app/assets/stylesheets/_general.scss */
.font-weight-medium {
  font-weight: 500;
}

/* line 46, app/assets/stylesheets/_general.scss */
blockquote {
  border-left: 2px solid #820560;
  padding: 0px 30px;
  margin-left: 2px;
  line-height: 34px;
}

/* line 56, app/assets/stylesheets/_general.scss */
.dark {
  background: #222222;
}

/* line 59, app/assets/stylesheets/_general.scss */
.dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6 {
  color: #fff;
}

/* line 61, app/assets/stylesheets/_general.scss */
.dark .btn.btn-primary.btn-bordered {
  color: #FFF;
  border-color: #FFF;
  background: none;
}

/* line 66, app/assets/stylesheets/_general.scss */
.dark .btn.btn-primary.btn-bordered:hover {
  color: #820560;
  border-color: #820560;
  background: none;
}

/* line 74, app/assets/stylesheets/_general.scss */
.light {
  background: #FFF;
  color: #7b8a8b;
}

/* line 78, app/assets/stylesheets/_general.scss */
.light h1, .light h2, .light h3, .light h4, .light h5, .light h6 {
  color: #222222;
}

/* line 80, app/assets/stylesheets/_general.scss */
.light .btn.btn-primary.btn-bordered {
  color: #222222;
  border-color: #222222;
  background: none;
}

/* line 85, app/assets/stylesheets/_general.scss */
.light .btn.btn-primary.btn-bordered:hover {
  color: #820560;
  border-color: #820560;
  background: none;
}

/* line 93, app/assets/stylesheets/_general.scss */
.light-grey {
  background: #f2f3f5;
  color: #7b8a8b;
}

/* line 97, app/assets/stylesheets/_general.scss */
.light-grey h1, .light-grey h2, .light-grey h3, .light-grey h4, .light-grey h5, .light-grey h6 {
  color: #222222;
}

/* line 100, app/assets/stylesheets/_general.scss */
.grey {
  background: #E8EBF0;
  color: #7b8a8b;
}

/* line 104, app/assets/stylesheets/_general.scss */
.grey h1, .grey h2, .grey h3, .grey h4, .grey h5, .grey h6 {
  color: #222222;
}

/* line 107, app/assets/stylesheets/_general.scss */
.bg-white {
  background: #fff;
}

/* line 110, app/assets/stylesheets/_general.scss */
.bg-white .well {
  background: #ececec;
}

/* line 113, app/assets/stylesheets/_general.scss */
.bg-grey {
  background: #ececec;
}

/* line 116, app/assets/stylesheets/_general.scss */
.bg-grey .well {
  background: #fff;
}

/* line 119, app/assets/stylesheets/_general.scss */
.bg-primary {
  background: #820560;
}

/* line 125, app/assets/stylesheets/_general.scss */
.btn {
  padding: 10px 20px;
  font-size: 15px;
}

/* line 129, app/assets/stylesheets/_general.scss */
.btn:focus, .btn:active {
  outline: none !important;
  box-shadow: none;
}

/* line 135, app/assets/stylesheets/_general.scss */
.btn i {
  margin-right: 5px;
}

/* line 138, app/assets/stylesheets/_general.scss */
.btn.btn-icon i {
  margin-right: 0;
}

/* line 141, app/assets/stylesheets/_general.scss */
.btn.btn-bordered {
  background: transparent;
  border: 1px solid;
  border-radius: 50px;
}

/* line 147, app/assets/stylesheets/_general.scss */
.btn.btn-nested-delete {
  margin-top: 39px;
}

/* line 149, app/assets/stylesheets/_general.scss */
.btn span.glyphicon-play {
  font-size: 16px;
  top: -1px;
  left: 5px;
}

/* line 156, app/assets/stylesheets/_general.scss */
.btn.btn-primary.btn-block {
  white-space: normal;
}

/* line 157, app/assets/stylesheets/_general.scss */
.btn-more-details {
  margin-top: 10px;
}

/* line 159, app/assets/stylesheets/_general.scss */
.btn-xs, .btn-group-xs > .btn {
  padding: 1px 8px;
  font-size: 12px;
}

/* line 164, app/assets/stylesheets/_general.scss */
.btn-sm, .btn-group-sm > .btn {
  padding: 6px 12px;
  font-size: 14px;
}

/* line 169, app/assets/stylesheets/_general.scss */
.btn-lg, .btn-group-lg > .btn {
  padding: 18px 27px;
  font-size: 20px;
}

/* line 174, app/assets/stylesheets/_general.scss */
.btn.btn-exposed {
  border-radius: 100px;
  color: #222429;
  padding: 18px 50px;
  background-image: linear-gradient(-180deg, #F6BC25 0%, #f5b40d 100%);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.45);
  border: none;
  font-size: 24px;
}

/* line 183, app/assets/stylesheets/_general.scss */
.btn.btn-exposed:hover {
  background-image: none;
  background: darken #820560, 7%;
}

/* line 190, app/assets/stylesheets/_general.scss */
.heading-button .heading {
  float: left;
}

/* line 192, app/assets/stylesheets/_general.scss */
.heading-button .button {
  float: left;
  margin-left: 20px;
  margin-top: 26px;
}

/* line 197, app/assets/stylesheets/_general.scss */
.heading-button .button .btn {
  margin-right: 5px;
}

/* line 200, app/assets/stylesheets/_general.scss */
.heading-button .button .btn:last-of-type {
  margin-right: 0;
}

/* line 209, app/assets/stylesheets/_general.scss */
.more-link {
  text-align: center;
  padding-bottom: 80px;
}

/* line 215, app/assets/stylesheets/_general.scss */
a:hover,
a:focus {
  text-decoration: none;
}

/* line 219, app/assets/stylesheets/_general.scss */
a:hover .label-default,
a:focus .label-default {
  background: #820560;
}

/* line 227, app/assets/stylesheets/_general.scss */
.pagination > li > a {
  border-top: none;
  border-bottom: none;
  border-right: none;
}

/* line 234, app/assets/stylesheets/_general.scss */
.pagination > li:first-child > a {
  border-left: none;
}

/* line 242, app/assets/stylesheets/_general.scss */
.handle {
  cursor: pointer;
}

/* line 243, app/assets/stylesheets/_general.scss */
.last-item {
  margin-bottom: -40px;
}

/* line 247, app/assets/stylesheets/_general.scss */
.attachinary_container ul {
  margin-top: 15px;
  list-style: none;
  padding: 0;
}

/* line 252, app/assets/stylesheets/_general.scss */
.attachinary_container ul li {
  display: inline-block;
}

/* line 255, app/assets/stylesheets/_general.scss */
.attachinary_container ul li img {
  border: 2px solid #dce4ec;
  border-radius: 4px;
}

/* line 260, app/assets/stylesheets/_general.scss */
.attachinary_container ul li a {
  display: block;
  text-align: center;
}

/* line 268, app/assets/stylesheets/_general.scss */
.modal-body {
  color: #000;
  font-size: 18px;
}

/* line 272, app/assets/stylesheets/_general.scss */
.modal-body h1, .modal-body h2, .modal-body h3, .modal-body h4, .modal-body h5, .modal-body h6 {
  color: #000;
}

@media (min-width: 992px) {
  /* line 280, app/assets/stylesheets/_general.scss */
  .col-md-offset-3-5 {
    margin-left: 29.1666666%;
  }
}

@media (max-width: 767px) {
  /* line 285, app/assets/stylesheets/_general.scss */
  .navbar .navbar-btn {
    margin-top: 15px;
  }
  /* line 289, app/assets/stylesheets/_general.scss */
  .heading-button .heading {
    float: none;
  }
  /* line 291, app/assets/stylesheets/_general.scss */
  .heading-button .button {
    float: none;
    margin: 0 0 20px 0;
  }
}

@media (max-width: 480px) {
  /* line 299, app/assets/stylesheets/_general.scss */
  .btn-group {
    margin-bottom: -10px;
  }
  /* line 302, app/assets/stylesheets/_general.scss */
  .btn-group .btn {
    display: block;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 5px;
    border-radius: 4px !important;
  }
  /* line 311, app/assets/stylesheets/_general.scss */
  .btn-group .pull-left, .btn-group .pull-right {
    float: none !important;
  }
}

/* line 1, app/assets/stylesheets/_gift_coupon_package_templates.scss */
.coupon-packages-wrapper {
  position: relative;
  min-height: 640px;
  margin-top: -59px;
  padding-top: 160px;
}

/* line 7, app/assets/stylesheets/_gift_coupon_package_templates.scss */
.coupon-packages-wrapper:before {
  content: " ";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/assets/coupon-packages/hero-bg-6633d7f80fd8a13ce4112ffbaf4f17c561e8e90f27ec8dee5741dfac669262cc.jpg);
  background-position-y: -1px;
  background-size: contain;
  background-repeat: no-repeat;
}

/* line 22, app/assets/stylesheets/_gift_coupon_package_templates.scss */
.coupon-packages-wrapper__title {
  max-width: 60%;
  font-size: 60px;
  font-weight: bold;
}

/* line 28, app/assets/stylesheets/_gift_coupon_package_templates.scss */
.coupon-packages-wrapper__subtitle {
  max-width: 60%;
  margin-top: 70px;
  color: #820560;
}

/* line 35, app/assets/stylesheets/_gift_coupon_package_templates.scss */
.coupon-packages-wrapper__vouchers {
  position: absolute;
  width: 40%;
  top: -60px;
  right: 0;
}

/* line 42, app/assets/stylesheets/_gift_coupon_package_templates.scss */
.coupon-packages-wrapper__legal {
  margin-top: 60px;
  padding-top: 60px;
  font-style: italic;
  border-top: 1px solid #7b8a8b;
}

/* line 51, app/assets/stylesheets/_gift_coupon_package_templates.scss */
.coupon-packages {
  margin-top: 70px;
  margin-bottom: 60px;
}

/* line 56, app/assets/stylesheets/_gift_coupon_package_templates.scss */
.coupon-package {
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 6px;
  background: linear-gradient(0deg, #2E323E 0%, #4A4E58 100%);
  box-shadow: 0 20px 38px 0 rgba(0, 0, 0, 0.25);
}

/* line 64, app/assets/stylesheets/_gift_coupon_package_templates.scss */
.coupon-package__body {
  padding: 60px 60px 40px 60px;
}

/* line 65, app/assets/stylesheets/_gift_coupon_package_templates.scss */
.coupon-package__footer {
  padding: 40px;
  border-top: 4px dashed #222429;
}

/* line 70, app/assets/stylesheets/_gift_coupon_package_templates.scss */
.coupon-package__title {
  margin-top: 0;
  font-size: 28px;
}

/* line 75, app/assets/stylesheets/_gift_coupon_package_templates.scss */
.coupon-package__subtitle {
  font-size: 27px;
}

/* line 77, app/assets/stylesheets/_gift_coupon_package_templates.scss */
.coupon-package__list {
  margin-left: 0;
  padding-left: 20px;
  font-size: 19px;
  color: #b4bcc2;
}

/* line 85, app/assets/stylesheets/_gift_coupon_package_templates.scss */
.coupon-package__list-item + .coupon-package__list-item {
  margin-top: 10px;
}

/* line 89, app/assets/stylesheets/_gift_coupon_package_templates.scss */
.coupon-package__price {
  font-size: 32px;
  font-weight: bold;
  color: #820560;
}

/* line 95, app/assets/stylesheets/_gift_coupon_package_templates.scss */
.coupon-package__button {
  letter-spacing: 0.5px;
  font-size: 24px !important;
  font-weight: bold;
  color: #222222;
  border: none;
  border-radius: 100px;
  background-image: linear-gradient(-180deg, #820560 0%, #69044e 100%);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.45);
}

/* line 106, app/assets/stylesheets/_gift_coupon_package_templates.scss */
.coupon-package__button:hover {
  background-image: none;
  background: darken #820560, 7%;
}

/* line 113, app/assets/stylesheets/_gift_coupon_package_templates.scss */
.gift-coupon-package-template {
  margin-bottom: 70px;
}

/* line 116, app/assets/stylesheets/_gift_coupon_package_templates.scss */
.gift-coupon-package-template .collection-link {
  position: absolute;
  top: 10px;
}

/* line 120, app/assets/stylesheets/_gift_coupon_package_templates.scss */
.gift-coupon-package-template .collection-link .label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

@media only screen and (max-width: 768px) {
  /* line 129, app/assets/stylesheets/_gift_coupon_package_templates.scss */
  .coupon-packages-wrapper {
    padding-top: 100px;
  }
  /* line 131, app/assets/stylesheets/_gift_coupon_package_templates.scss */
  .coupon-packages-wrapper__title {
    max-width: initial;
  }
  /* line 132, app/assets/stylesheets/_gift_coupon_package_templates.scss */
  .coupon-packages-wrapper__subtitle {
    max-width: 70%;
  }
  /* line 133, app/assets/stylesheets/_gift_coupon_package_templates.scss */
  .coupon-packages-wrapper__vouchers {
    width: 35%;
    top: 100px;
  }
}

@media only screen and (max-width: 480px) {
  /* line 141, app/assets/stylesheets/_gift_coupon_package_templates.scss */
  .coupon-packages-wrapper {
    padding-top: 100px;
  }
  /* line 143, app/assets/stylesheets/_gift_coupon_package_templates.scss */
  .coupon-packages-wrapper__title {
    max-width: initial;
    font-size: 50px;
  }
  /* line 147, app/assets/stylesheets/_gift_coupon_package_templates.scss */
  .coupon-packages-wrapper__subtitle {
    max-width: 100%;
  }
  /* line 148, app/assets/stylesheets/_gift_coupon_package_templates.scss */
  .coupon-packages-wrapper__vouchers {
    display: none;
  }
}

/* line 3, app/assets/stylesheets/_gift_coupon_packages.scss */
.coupon-packages-wrapper__box {
  position: relative;
  display: inline-block;
  padding: 20px 40px;
}

/* line 8, app/assets/stylesheets/_gift_coupon_packages.scss */
.coupon-packages-wrapper__box:before {
  content: ' ';
  position: absolute;
  width: 50px;
  height: 100px;
  bottom: 0;
  left: 0;
  border-left: 3px solid #820560;
  border-bottom: 3px solid #820560;
}

/* line 21, app/assets/stylesheets/_gift_coupon_packages.scss */
.coupon-packages-wrapper__subtitle.is--closer {
  margin-top: 30px;
}

/* line 27, app/assets/stylesheets/_gift_coupon_packages.scss */
.coupon-package.is--order {
  display: inline-block;
}

/* line 29, app/assets/stylesheets/_gift_coupon_packages.scss */
.coupon-package__validity {
  margin-top: 0;
  font-size: 19px;
  color: #b4bcc2;
}

/* line 35, app/assets/stylesheets/_gift_coupon_packages.scss */
.coupon-package__code {
  display: inline-block;
  min-width: 14rem;
  margin: 1rem 0.5rem;
  text-align: center;
  font-weight: bold;
  color: #820560;
}

/* line 44, app/assets/stylesheets/_gift_coupon_packages.scss */
.coupon-package__code.is--redeemed {
  color: #b4bcc2;
  text-decoration: line-through;
}

@media only screen and (max-width: 768px) {
  /* line 53, app/assets/stylesheets/_gift_coupon_packages.scss */
  .coupon-packages-wrapper__box {
    width: auto;
  }
}

@media only screen and (max-width: 480px) {
  /* line 61, app/assets/stylesheets/_gift_coupon_packages.scss */
  .coupon-packages-wrapper__box {
    width: auto;
  }
}

/* line 2, app/assets/stylesheets/_home.scss */
.home .welcome {
  margin-top: 65px;
  margin-bottom: 80px;
}

/* line 6, app/assets/stylesheets/_home.scss */
.home .welcome h1, .home .welcome h2, .home .welcome h3 {
  margin-top: 0;
}

/* line 11, app/assets/stylesheets/_home.scss */
.home .cinemas {
  padding-top: 90px;
}

/* line 15, app/assets/stylesheets/_home.scss */
.home .light {
  margin-bottom: -40px;
}

/* line 20, app/assets/stylesheets/_home.scss */
.home .dark .btn.btn-primary.btn-bordered {
  white-space: normal;
}

/* line 24, app/assets/stylesheets/_home.scss */
.jumbotron-background {
  color: #fff;
  margin-top: -24px;
  background: #820560;
  padding: 50px 0;
}

/* line 30, app/assets/stylesheets/_home.scss */
.jumbotron-background .jumbotron {
  background: #fff;
  padding: 15px;
  margin-bottom: 0;
}

/* line 38, app/assets/stylesheets/_home.scss */
.sy-box .sy-caption-wrap {
  position: absolute;
  bottom: 0;
  z-index: 12;
  left: 0;
}

/* line 44, app/assets/stylesheets/_home.scss */
.sy-box .sy-caption-wrap .sy-caption {
  position: relative;
  left: 70px;
  bottom: 45px;
  background-color: transparent;
  color: #fff;
  padding: 0;
  text-transform: uppercase;
}

/* line 53, app/assets/stylesheets/_home.scss */
.sy-box .sy-caption-wrap .sy-caption h3 {
  color: #fff;
  font-size: 60px;
}

/* line 57, app/assets/stylesheets/_home.scss */
.sy-box .sy-caption-wrap .sy-caption h4 {
  color: #820560;
  font-size: 30px;
}

/* line 65, app/assets/stylesheets/_home.scss */
.info-block {
  background: #fff;
  padding: 75px 0;
  text-align: center;
}

/* line 70, app/assets/stylesheets/_home.scss */
.info-block h1 {
  margin-bottom: 20px;
  color: #25292c;
  font-size: 52px;
  font-weight: bold;
}

/* line 77, app/assets/stylesheets/_home.scss */
.info-block h2 {
  margin-top: -20px;
  font-size: 41px;
  color: #820560;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* line 90, app/assets/stylesheets/_home.scss */
.info-block ul.list-inline li {
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 767px) {
  /* line 100, app/assets/stylesheets/_home.scss */
  .jumbotron-background .jumbotron {
    padding: 5px;
  }
  /* line 106, app/assets/stylesheets/_home.scss */
  .sy-box .sy-caption-wrap {
    display: none;
  }
}

/* line 114, app/assets/stylesheets/_home.scss */
.slideshow {
  position: relative;
  margin-top: -60px;
  z-index: 0;
}

/* line 119, app/assets/stylesheets/_home.scss */
.slideshow #slides {
  position: relative;
  height: 470px;
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}

/* line 127, app/assets/stylesheets/_home.scss */
.slideshow .slide {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  -webkit-transition: opacity 3s;
  -moz-transition: opacity 3s;
  -o-transition: opacity 3s;
  transition: opacity 3s;
  font-size: 40px;
  box-sizing: border-box;
  color: #fff;
}

/* line 148, app/assets/stylesheets/_home.scss */
.slideshow .slide .shadow {
  position: absolute;
  height: 100%;
  width: 65%;
  background-image: linear-gradient(to right, #000, #000 40%, transparent 100%);
}

/* line 155, app/assets/stylesheets/_home.scss */
.slideshow .slide .container {
  height: 100%;
}

/* line 158, app/assets/stylesheets/_home.scss */
.slideshow .slide .container .content {
  bottom: 95px;
  position: absolute;
}

/* line 162, app/assets/stylesheets/_home.scss */
.slideshow .slide .container .content h3 {
  font-size: 55px;
  text-transform: uppercase;
}

/* line 167, app/assets/stylesheets/_home.scss */
.slideshow .slide .container .content h4 {
  font-size: 34px;
  color: #820560;
}

/* line 172, app/assets/stylesheets/_home.scss */
.slideshow .slide .container .content .btn {
  color: #FFF;
  border-color: #FFF;
}

/* line 176, app/assets/stylesheets/_home.scss */
.slideshow .slide .container .content .btn:hover {
  color: #820560;
  border-color: #820560;
}

/* line 185, app/assets/stylesheets/_home.scss */
.slideshow .showing {
  opacity: 1;
  z-index: 2;
}

/* line 190, app/assets/stylesheets/_home.scss */
.slideshow .controls {
  display: none;
}

/* line 194, app/assets/stylesheets/_home.scss */
.slideshow .controls {
  background: #333;
  color: #fff;
  border: none;
  padding: 20px 0px;
  font-size: 20px;
  cursor: pointer;
  border: 2px solid #fff;
  margin: 10px 0px 0px 10px;
  width: 70px;
}

/* line 206, app/assets/stylesheets/_home.scss */
.slideshow .controls:hover,
.slideshow .controls:focus {
  background: #eee;
  color: #333;
}

/* line 212, app/assets/stylesheets/_home.scss */
.slideshow .buttons {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 10;
  font-size: 0px;
}

@media (max-width: 991px) {
  /* line 223, app/assets/stylesheets/_home.scss */
  .slideshow .slide .container .content h3 {
    font-size: 35px;
  }
  /* line 224, app/assets/stylesheets/_home.scss */
  .slideshow .slide .container .content h4 {
    font-size: 25px;
  }
}

/* line 3, app/assets/stylesheets/_imdb_imports.scss */
.input-group .input-group-btn .btn {
  border-width: 1px;
}

/* line 10, app/assets/stylesheets/_imdb_imports.scss */
.table.search-results tr > td {
  vertical-align: middle;
}

/* line 6, app/assets/stylesheets/_movies.scss */
.movies-index h1 {
  margin-bottom: 36px;
}

/* line 12, app/assets/stylesheets/_movies.scss */
.movies img {
  border-radius: 4px;
}

/* line 16, app/assets/stylesheets/_movies.scss */
.movies h2 {
  margin-top: 0;
  margin-bottom: 60px;
}

/* line 21, app/assets/stylesheets/_movies.scss */
.movies h3 {
  color: #FFF;
  margin-bottom: 8px;
}

/* line 25, app/assets/stylesheets/_movies.scss */
.movies h3 a {
  color: #FFF;
}

/* line 30, app/assets/stylesheets/_movies.scss */
.movies .movie-info {
  padding-left: 15px;
  position: relative;
  padding-bottom: 12px;
}

/* line 35, app/assets/stylesheets/_movies.scss */
.movies .movie-info .border {
  position: absolute;
  left: 0;
  height: 100%;
  width: 25px;
  border-left: 1px solid #820560;
  border-bottom: 1px solid #820560;
}

/* line 44, app/assets/stylesheets/_movies.scss */
.movies .movie-info .subtitle {
  color: #92969C;
  font-size: 20px;
}

/* line 49, app/assets/stylesheets/_movies.scss */
.movies .movie-info .movie__watch-list-removal {
  position: absolute;
  top: -7rem;
  left: 2.5%;
  width: 95%;
}

/* line 55, app/assets/stylesheets/_movies.scss */
.movies .movie-info .movie__watch-list-removal__button {
  padding: 0.5rem 1rem;
  font-size: 0.7em;
  font-weight: 500;
  text-transform: uppercase;
  border: 2px solid #820560;
  background-color: rgba(0, 0, 0, 0.75);
  cursor: pointer;
}

/* line 66, app/assets/stylesheets/_movies.scss */
.movies .movie-info .movie__watch-list-removal__button:hover {
  color: #000;
  background-color: #820560;
}

/* line 74, app/assets/stylesheets/_movies.scss */
.movies .movie {
  margin-bottom: 70px;
}

/* line 77, app/assets/stylesheets/_movies.scss */
.movies .movie .collection-link {
  position: absolute;
  top: 10px;
}

/* line 81, app/assets/stylesheets/_movies.scss */
.movies .movie .collection-link .label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 90, app/assets/stylesheets/_movies.scss */
.movie-single .movies {
  padding-top: 90px;
}

/* line 94, app/assets/stylesheets/_movies.scss */
.movie-single .movie-header {
  margin-bottom: 20px;
}

/* line 97, app/assets/stylesheets/_movies.scss */
.movie-single .movie-header .btn-return:hover {
  color: #820560;
  border-color: #820560;
}

/* line 103, app/assets/stylesheets/_movies.scss */
.movie-single .movie-title {
  margin-top: 6px;
  margin-bottom: 0;
}

/* line 108, app/assets/stylesheets/_movies.scss */
.movie-single .trailer {
  padding-bottom: 60px;
}

/* line 111, app/assets/stylesheets/_movies.scss */
.movie-single .trailer p {
  font-size: 22px;
  font-weight: 400;
}

/* line 116, app/assets/stylesheets/_movies.scss */
.movie-single .trailer #player {
  border-radius: 6px;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

/* line 121, app/assets/stylesheets/_movies.scss */
.movie-single .trailer blockquote {
  margin-top: 35px;
  margin-bottom: 0;
}

/* line 127, app/assets/stylesheets/_movies.scss */
.movie-single .details {
  background: #7b8a8b;
  padding-top: 70px;
  padding-bottom: 90px;
}

/* line 132, app/assets/stylesheets/_movies.scss */
.movie-single .details .header {
  margin-bottom: 35px;
}

/* line 136, app/assets/stylesheets/_movies.scss */
.movie-single .details .free-movie-geoblock-hint {
  margin-bottom: 2rem;
  padding: 2rem;
  font-weight: 400;
  border: 2px solid #820560;
  border-radius: 6px;
  background: rgba(130, 5, 96, 0.125);
}

/* line 146, app/assets/stylesheets/_movies.scss */
.movie-single .details h1 {
  font-size: 45px;
  margin-top: 0;
  text-transform: none;
}

/* line 152, app/assets/stylesheets/_movies.scss */
.movie-single .details h4 {
  font-size: 22px;
  font-weight: 300;
}

/* line 157, app/assets/stylesheets/_movies.scss */
.movie-single .details .description {
  margin-bottom: 60px;
  text-align: justify;
}

/* line 163, app/assets/stylesheets/_movies.scss */
.movie-single .details .dl-horizontal dt, .movie-single .details #sepa-content dl dt, #sepa-content .movie-single .details dl dt {
  text-align: left;
  width: 250px;
}

/* line 168, app/assets/stylesheets/_movies.scss */
.movie-single .details .dl-horizontal dd, .movie-single .details #sepa-content dl dd, #sepa-content .movie-single .details dl dd {
  margin-left: 260px;
  padding-bottom: 25px;
}

/* line 175, app/assets/stylesheets/_movies.scss */
.movie-single .sidebar {
  float: right;
  text-align: center;
}

/* line 179, app/assets/stylesheets/_movies.scss */
.movie-single .sidebar .form-hint {
  margin: 0 0 20px 0;
  font-weight: 400;
  color: #fff;
}

/* line 185, app/assets/stylesheets/_movies.scss */
.movie-single .sidebar .hint-times-remaining {
  margin-bottom: 2rem;
  padding: 2rem;
  font-weight: 400;
  border: 2px solid #820560;
  border-radius: 6px;
  background: rgba(130, 5, 96, 0.125);
}

/* line 194, app/assets/stylesheets/_movies.scss */
.movie-single .sidebar .hint-times-remaining__counter {
  font-weight: 500;
  white-space: nowrap;
  color: #820560;
}

/* line 201, app/assets/stylesheets/_movies.scss */
.movie-single .sidebar .help-block {
  font-size: 18px;
  color: #92969C;
  margin-top: 25px;
}

/* line 207, app/assets/stylesheets/_movies.scss */
.movie-single .sidebar .cinema-select {
  margin-bottom: 30px;
}

/* line 211, app/assets/stylesheets/_movies.scss */
.movie-single .sidebar .btn-buy {
  border-radius: 100px;
  color: #222222;
  padding-top: 21px;
  padding-bottom: 21px;
  background-image: linear-gradient(-180deg, #820560 0%, #69044e 100%);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.45);
  border: none;
  font-weight: 300;
}

/* line 221, app/assets/stylesheets/_movies.scss */
.movie-single .sidebar .btn-buy:hover {
  background-image: none;
  background: darken #820560, 7%;
}

/* line 226, app/assets/stylesheets/_movies.scss */
.movie-single .sidebar .btn-buy span {
  display: block;
  font-weight: 500;
  font-size: 26px;
}

/* line 233, app/assets/stylesheets/_movies.scss */
.movie-single .sidebar .btn-coupon {
  color: #222222;
}

/* line 237, app/assets/stylesheets/_movies.scss */
.movie-single .sidebar .enter-coupon-code-form {
  display: none;
}

/* line 243, app/assets/stylesheets/_movies.scss */
.movie--deleted {
  opacity: 0.25;
  pointer-events: none;
}

/* line 249, app/assets/stylesheets/_movies.scss */
.movie__watch-list-button {
  display: block;
  margin: 2.5rem 0 2rem 0;
  padding: 1rem 2rem;
  font-size: 0.9em;
  border: 2px solid #820560;
  border-radius: 100px;
}

/* line 258, app/assets/stylesheets/_movies.scss */
.movie__watch-list-button:first-child {
  margin-top: 0;
}

/* line 260, app/assets/stylesheets/_movies.scss */
.movie__watch-list-button:hover, .movie__watch-list-button:active, .movie__watch-list-button:focus {
  outline: none;
  background-color: rgba(130, 5, 96, 0.125);
}

/* line 268, app/assets/stylesheets/_movies.scss */
.movie-bonus-content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

/* line 276, app/assets/stylesheets/_movies.scss */
.movie-bonus-content-trigger {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 2rem;
  padding: 1.25rem 2.5rem;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  cursor: pointer;
}

/* line 289, app/assets/stylesheets/_movies.scss */
.movie-bonus-content-trigger:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* line 291, app/assets/stylesheets/_movies.scss */
.movie-bonus-content-trigger__icon {
  margin-right: 1rem;
  font-size: 1.75em;
}

@media only screen and (max-width: 768px) {
  /* line 299, app/assets/stylesheets/_movies.scss */
  .movie-single .details .sidebar {
    float: none;
    margin-bottom: 40px;
  }
  /* line 305, app/assets/stylesheets/_movies.scss */
  .movie-single .details .dl-horizontal dd, .movie-single .details #sepa-content dl dd, #sepa-content .movie-single .details dl dd {
    margin-left: 1rem;
  }
}

/* line 6, app/assets/stylesheets/optional/_events.scss */
.event-categories-wrapper {
  display: block;
  position: relative;
  height: 500px;
  border-bottom: 1px solid #7b8a8b;
  background-size: cover;
  background-repeat: no-repeat;
}

/* line 16, app/assets/stylesheets/optional/_events.scss */
.event-categories-wrapper:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #ececec 100%);
  pointer-events: none;
}

/* line 29, app/assets/stylesheets/optional/_events.scss */
.event-categories-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 300px;
}

/* line 36, app/assets/stylesheets/optional/_events.scss */
.event-categories__title, .event-categories-wrapper h1 {
  margin: 0 0 1rem 0;
  font-weight: 400;
  text-transform: none;
  text-shadow: #000 0px 0px 5px;
}

/* line 45, app/assets/stylesheets/optional/_events.scss */
.event-categories__subtitle, .event-categories-wrapper p {
  margin-top: 0;
  text-shadow: #000 0px 0px 5px;
}

/* line 52, app/assets/stylesheets/optional/_events.scss */
.event-categories-wrapper p {
  font-size: 27px;
  font-weight: 400;
  line-height: 1.1;
  color: #FFFFFF;
}

/* line 60, app/assets/stylesheets/optional/_events.scss */
.event-categories-scroller {
  height: 200px;
  padding: 0 2rem;
}

/* line 64, app/assets/stylesheets/optional/_events.scss */
.event-categories-scroller__category-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 70, app/assets/stylesheets/optional/_events.scss */
.event-categories-scroller__category {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #7b8a8b;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

/* line 82, app/assets/stylesheets/optional/_events.scss */
.event-categories-scroller__category-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background: linear-gradient(180deg, rgba(19, 20, 22, 0.31) 0%, rgba(0, 0, 0, 0.78) 100%);
  border-radius: 6px;
  pointer-events: none;
  transition: all 0.25s ease-in-out;
}

/* line 98, app/assets/stylesheets/optional/_events.scss */
.event-categories-scroller__category-image {
  border-radius: 6px;
}

/* line 100, app/assets/stylesheets/optional/_events.scss */
.event-categories-scroller__category-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1.1px;
  text-shadow: #000 0px 0px 5px;
}

/* line 119, app/assets/stylesheets/optional/_events.scss */
.event-categories-scroller__category.is--active, .event-categories-scroller__category:hover {
  border-color: #820560;
}

/* line 123, app/assets/stylesheets/optional/_events.scss */
.event-categories-scroller__category.is--active .event-categories-scroller__category-shadow, .event-categories-scroller__category:hover .event-categories-scroller__category-shadow {
  opacity: 0.75;
}

/* line 132, app/assets/stylesheets/optional/_events.scss */
.event-list {
  margin-top: 8rem;
}

/* line 134, app/assets/stylesheets/optional/_events.scss */
.event-item {
  --highlight-color: #fff;
  display: flex;
  flex-direction: row;
}

/* line 139, app/assets/stylesheets/optional/_events.scss */
.event-item__body {
  flex-grow: 1;
  margin: 0 2rem 0 0;
}

/* line 144, app/assets/stylesheets/optional/_events.scss */
.event-item__header {
  margin-bottom: 4rem;
  font-size: 0.8em;
  font-weight: 400;
  color: var(--highlight-color);
}

/* line 151, app/assets/stylesheets/optional/_events.scss */
.event-item__header > * + * {
  margin-left: 2rem;
  padding-left: 2rem;
  border-left: 2px solid var(--highlight-color);
}

/* line 159, app/assets/stylesheets/optional/_events.scss */
.event-item__title-container {
  margin-bottom: 2rem;
}

/* line 163, app/assets/stylesheets/optional/_events.scss */
.event-item__title {
  margin: 0;
  color: #fff;
  font-size: 28px;
  font-weight: 400;
}

/* line 171, app/assets/stylesheets/optional/_events.scss */
.event-item__category {
  font-size: 0.8em;
  font-weight: 400;
  color: var(--highlight-color);
}

/* line 177, app/assets/stylesheets/optional/_events.scss */
.event-item__poster {
  display: block;
  flex-shrink: 0;
  width: 25%;
}

/* line 182, app/assets/stylesheets/optional/_events.scss */
.event-item__poster > img {
  border-radius: 6px;
}

/* line 185, app/assets/stylesheets/optional/_events.scss */
.event-item__description {
  color: #b4bcc2;
}

/* line 188, app/assets/stylesheets/optional/_events.scss */
.event-item__description p {
  margin: 0;
}

/* line 189, app/assets/stylesheets/optional/_events.scss */
.event-item__description p + p {
  margin-top: 1rem;
}

/* line 193, app/assets/stylesheets/optional/_events.scss */
.event-item__buttons {
  margin-top: 8rem;
}

/* line 195, app/assets/stylesheets/optional/_events.scss */
.event-item__button {
  color: var(--highlight-color);
  border: 2px solid var(--highlight-color);
  border-radius: 100px;
  transition: all 0.25s ease-in-out;
}

/* line 202, app/assets/stylesheets/optional/_events.scss */
.event-item__button:hover {
  color: #ececec;
  background-color: var(--highlight-color);
}

/* line 207, app/assets/stylesheets/optional/_events.scss */
.event-item__button--filled {
  color: #ececec;
  background-color: var(--highlight-color);
}

/* line 211, app/assets/stylesheets/optional/_events.scss */
.event-item__button--filled:hover {
  color: var(--highlight-color);
  background-color: transparent;
}

/* line 217, app/assets/stylesheets/optional/_events.scss */
.event-item__button--fixed-width {
  width: 280px;
}

/* line 223, app/assets/stylesheets/optional/_events.scss */
.event-item:hover .event-item__button, .event-item:focus .event-item__button, .event-item:active .event-item__button {
  color: #ececec;
  background-color: var(--highlight-color);
}

/* line 229, app/assets/stylesheets/optional/_events.scss */
.event-item.is--archived {
  opacity: 0.5;
}

/* line 231, app/assets/stylesheets/optional/_events.scss */
.event-item + .event-item {
  margin-top: 8rem;
  padding-top: 8rem;
  border-top: 2px solid #7b8a8b;
}

/* line 243, app/assets/stylesheets/optional/_events.scss */
.event__title {
  margin-top: 0;
}

/* line 245, app/assets/stylesheets/optional/_events.scss */
.event__location {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 4rem;
  font-size: 0.8em;
  font-weight: 400;
  color: var(--highlight-color);
}

/* line 256, app/assets/stylesheets/optional/_events.scss */
.event__address {
  color: var(--highlight-color);
}

/* line 258, app/assets/stylesheets/optional/_events.scss */
.event__address:hover, .event__address:active, .event__address:focus {
  color: rgba(255, 255, 255, 0.9);
}

/* line 260, app/assets/stylesheets/optional/_events.scss */
.event__address-line {
  margin: 0;
}

/* line 263, app/assets/stylesheets/optional/_events.scss */
.event__details {
  margin-top: 70px;
  background: transparent !important;
}

/* line 268, app/assets/stylesheets/optional/_events.scss */
.event__buttons {
  display: flex;
  flex-direction: column;
  margin-top: 4rem;
}

/* line 273, app/assets/stylesheets/optional/_events.scss */
.event__buttons > * + * {
  margin-top: 2rem;
}

/* line 278, app/assets/stylesheets/optional/_events.scss */
.event__footer {
  margin-top: 12rem;
}

@media (max-width: 991px) {
  /* line 287, app/assets/stylesheets/optional/_events.scss */
  .event-categories-wrapper {
    height: 460px;
  }
  /* line 288, app/assets/stylesheets/optional/_events.scss */
  .event-categories-header {
    height: 300px;
  }
  /* line 289, app/assets/stylesheets/optional/_events.scss */
  .event-categories-scroller {
    height: 160px;
  }
  /* line 293, app/assets/stylesheets/optional/_events.scss */
  .event-item__body {
    flex-direction: column;
  }
  /* line 294, app/assets/stylesheets/optional/_events.scss */
  .event-item__content {
    margin: 2rem 0 0 0;
  }
  /* line 298, app/assets/stylesheets/optional/_events.scss */
  .event__details {
    margin-top: 0;
  }
  /* line 299, app/assets/stylesheets/optional/_events.scss */
  .event__description {
    margin-top: 6rem;
  }
}

@media (max-width: 767px) {
  /* line 305, app/assets/stylesheets/optional/_events.scss */
  .event-categories-wrapper {
    height: 380px;
  }
  /* line 306, app/assets/stylesheets/optional/_events.scss */
  .event-categories-header {
    height: 250px;
  }
  /* line 307, app/assets/stylesheets/optional/_events.scss */
  .event-categories-scroller {
    height: 125px;
  }
  /* line 311, app/assets/stylesheets/optional/_events.scss */
  .event-item__button {
    display: block;
    width: 100%;
    margin-top: 2rem;
  }
}

/* line 9, app/assets/stylesheets/optional/_movie-categories.scss */
.movie-list-wrapper {
  position: relative;
}

/* line 11, app/assets/stylesheets/optional/_movie-categories.scss */
.movie-category {
  position: relative;
}

/* line 14, app/assets/stylesheets/optional/_movie-categories.scss */
.movie-category__title {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: 3% 2rem 1.5% 2rem;
  font-size: 22px;
  cursor: pointer;
}

/* line 28, app/assets/stylesheets/optional/_movie-categories.scss */
.movie-category__expander {
  margin-left: 1rem;
  font-size: 0.75em;
  transition: all 0.25s ease-in-out;
}

/* line 35, app/assets/stylesheets/optional/_movie-categories.scss */
.movie-category .movie-list-wrapper {
  position: relative;
}

/* line 37, app/assets/stylesheets/optional/_movie-categories.scss */
.movie-category .movie-list {
  position: relative;
  flex-wrap: nowrap;
  overflow: hidden;
  margin-top: -7rem;
  margin-bottom: -7rem;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

/* line 48, app/assets/stylesheets/optional/_movie-categories.scss */
.movie-category .movie-list > * {
  flex-shrink: 0;
}

/* line 51, app/assets/stylesheets/optional/_movie-categories.scss */
.movie-category + .movie-category {
  margin-top: 8rem;
}

/* line 52, app/assets/stylesheets/optional/_movie-categories.scss */
.movie-category.is--collapsed + .movie-category {
  margin-top: 2rem;
}

/* line 55, app/assets/stylesheets/optional/_movie-categories.scss */
.movie-category.is--collapsed .movie-category__title {
  display: flex;
}

/* line 60, app/assets/stylesheets/optional/_movie-categories.scss */
.movie-category:nth-child(odd) {
  background-color: #ececec;
}

/* line 62, app/assets/stylesheets/optional/_movie-categories.scss */
.movie-category:nth-child(odd) .movie-category-control__previous {
  background: linear-gradient(90deg, #ececec 25%, rgba(255, 255, 255, 0) 100%);
}

/* line 63, app/assets/stylesheets/optional/_movie-categories.scss */
.movie-category:nth-child(odd) .movie-category-control__next {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ececec 75%);
}

/* line 66, app/assets/stylesheets/optional/_movie-categories.scss */
.movie-category:nth-child(even) {
  background-color: #7b8a8b;
}

/* line 68, app/assets/stylesheets/optional/_movie-categories.scss */
.movie-category:nth-child(even) .movie-category-control__previous {
  background: linear-gradient(90deg, #7b8a8b 25%, rgba(255, 255, 255, 0) 100%);
}

/* line 69, app/assets/stylesheets/optional/_movie-categories.scss */
.movie-category:nth-child(even) .movie-category-control__next {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #7b8a8b 75%);
}

/* line 74, app/assets/stylesheets/optional/_movie-categories.scss */
.movie-category.is--expanded .movie-category__expander {
  transform: rotate(90deg);
}

/* line 75, app/assets/stylesheets/optional/_movie-categories.scss */
.movie-category.is--expanded .movie-category-controls {
  display: none;
}

/* line 77, app/assets/stylesheets/optional/_movie-categories.scss */
.movie-category.is--expanded .movie-list {
  flex-wrap: wrap;
  overflow: visible;
}

/* line 83, app/assets/stylesheets/optional/_movie-categories.scss */
.movie-category-controls {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 92, app/assets/stylesheets/optional/_movie-categories.scss */
.movie-category-control {
  position: absolute;
  pointer-events: all;
  top: 0;
  height: 100%;
  width: calc(100% / 12 + 2rem);
  min-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

/* line 105, app/assets/stylesheets/optional/_movie-categories.scss */
.movie-category-control.is--hidden {
  opacity: 0;
  pointer-events: none;
}

/* line 110, app/assets/stylesheets/optional/_movie-categories.scss */
.movie-category-control__previous {
  left: 0;
}

/* line 111, app/assets/stylesheets/optional/_movie-categories.scss */
.movie-category-control__next {
  right: 0;
}

/* line 113, app/assets/stylesheets/optional/_movie-categories.scss */
.movie-category-control__handle {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease-in-out;
  width: 64px;
  height: 64px;
  cursor: pointer;
  color: #820560;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 100%;
}

/* line 127, app/assets/stylesheets/optional/_movie-categories.scss */
.movie-category-control__handle:hover {
  color: #000;
  background: #820560;
}

@media only screen and (max-width: 480px) {
  /* line 137, app/assets/stylesheets/optional/_movie-categories.scss */
  .movie-category:nth-child(odd) .movie-category-control__previous {
    background: none;
  }
  /* line 138, app/assets/stylesheets/optional/_movie-categories.scss */
  .movie-category:nth-child(odd) .movie-category-control__next {
    background: none;
  }
  /* line 141, app/assets/stylesheets/optional/_movie-categories.scss */
  .movie-category:nth-child(even) {
    background-color: #7b8a8b;
  }
  /* line 143, app/assets/stylesheets/optional/_movie-categories.scss */
  .movie-category:nth-child(even) .movie-category-control__previous {
    background: none;
  }
  /* line 144, app/assets/stylesheets/optional/_movie-categories.scss */
  .movie-category:nth-child(even) .movie-category-control__next {
    background: none;
  }
  /* line 147, app/assets/stylesheets/optional/_movie-categories.scss */
  .movie-category__title {
    width: calc(100vw - 4rem);
  }
  /* line 149, app/assets/stylesheets/optional/_movie-categories.scss */
  .movie-category__expander {
    margin-left: auto;
    font-size: 1.25em;
  }
}

/* line 1, app/assets/stylesheets/_navigation.scss */
.navbar {
  border-radius: 0;
}

/* line 4, app/assets/stylesheets/_navigation.scss */
.navbar .navbar-brand {
  padding: 13px 15px;
  font-size: 22px;
}

/* line 8, app/assets/stylesheets/_navigation.scss */
.navbar .navbar-brand img {
  height: 85px;
}

/* line 13, app/assets/stylesheets/_navigation.scss */
.navbar .navbar-btn {
  padding: 5px 25px;
  margin-left: 15px;
  margin-top: 37px;
  border: 1px solid #25292c;
  color: #25292c;
  background: none;
  font-size: 16px;
  font-weight: 300;
}

/* line 23, app/assets/stylesheets/_navigation.scss */
.navbar .navbar-btn:hover {
  border-color: #820560;
  color: #820560;
}

/* line 28, app/assets/stylesheets/_navigation.scss */
.navbar .navbar-btn:active, .navbar .navbar-btn:focus {
  background: none;
}

/* line 35, app/assets/stylesheets/_navigation.scss */
.navbar-user-icon {
  margin: -1rem;
  padding: 1rem;
  background: #fff;
  border-radius: 5px;
}

/* line 42, app/assets/stylesheets/_navigation.scss */
body.disable--navbar-spacing .navbar {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  /* line 47, app/assets/stylesheets/_navigation.scss */
  .navbar-user__caret {
    top: 50%;
    bottom: auto;
    left: 100%;
    margin-top: -4px;
    margin-left: 6px;
  }
}

/* line 1, app/assets/stylesheets/_newsletter.scss */
.newsletter {
  background: #7b8a8b;
  border-radius: 100px;
  padding: 30px 55px;
  margin-bottom: 80px;
  font-size: 22px;
}

/* line 8, app/assets/stylesheets/_newsletter.scss */
.newsletter span {
  color: #820560;
}

/* line 9, app/assets/stylesheets/_newsletter.scss */
.newsletter .help-block {
  margin-top: 9px;
}

/* line 10, app/assets/stylesheets/_newsletter.scss */
.newsletter .btn {
  padding: 6px 40px;
}

/* line 12, app/assets/stylesheets/_newsletter.scss */
.newsletter .form-control, .newsletter .edit_user .chosen-container-single .chosen-search input[type="text"], .edit_user .chosen-container-single .chosen-search .newsletter input[type="text"], .newsletter .partner-form .chosen-container-single .chosen-search input[type="text"], .partner-form .chosen-container-single .chosen-search .newsletter input[type="text"], .newsletter .cinema-select .chosen-container-single .chosen-search input[type="text"], .cinema-select .chosen-container-single .chosen-search .newsletter input[type="text"] {
  border: none;
  border-radius: 50px;
  height: 47px;
  width: 100%;
  padding: 5px 25px;
  font-size: 22px;
  color: #222222;
}

/* line 22, app/assets/stylesheets/_newsletter.scss */
.newsletter--standalone {
  margin-top: 8rem;
}

@media (max-width: 991px) {
  /* line 26, app/assets/stylesheets/_newsletter.scss */
  .newsletter {
    border-radius: 30px;
    padding: 20px 25px;
  }
  /* line 30, app/assets/stylesheets/_newsletter.scss */
  .newsletter .form-control, .newsletter .edit_user .chosen-container-single .chosen-search input[type="text"], .edit_user .chosen-container-single .chosen-search .newsletter input[type="text"], .newsletter .partner-form .chosen-container-single .chosen-search input[type="text"], .partner-form .chosen-container-single .chosen-search .newsletter input[type="text"], .newsletter .cinema-select .chosen-container-single .chosen-search input[type="text"], .cinema-select .chosen-container-single .chosen-search .newsletter input[type="text"] {
    margin-bottom: 15px;
  }
  /* line 31, app/assets/stylesheets/_newsletter.scss */
  .newsletter .text-right {
    text-align: left;
  }
}

/* line 1, app/assets/stylesheets/_order.scss */
.panel-login,
.panel-payment,
.panel-provider,
.panel-package {
  color: #fff;
  margin-bottom: 10px;
}

/* line 8, app/assets/stylesheets/_order.scss */
.panel-login .panel-body,
.panel-payment .panel-body,
.panel-provider .panel-body,
.panel-package .panel-body {
  padding: 30px 40px;
}

/* line 10, app/assets/stylesheets/_order.scss */
.panel-login span.badge,
.panel-payment span.badge,
.panel-provider span.badge,
.panel-package span.badge {
  margin-top: -4px;
  margin-right: 10px;
  font-size: 16px;
  color: #7b8a8b;
  width: 28px;
  line-height: 28px;
  padding: 0;
  border-radius: 28px;
}

/* line 22, app/assets/stylesheets/_order.scss */
.panel-login .btn.btn-lg, .panel-login .btn-group-lg > .btn,
.panel-payment .btn.btn-lg,
.panel-payment .btn-group-lg > .btn,
.panel-provider .btn.btn-lg,
.panel-provider .btn-group-lg > .btn,
.panel-package .btn.btn-lg,
.panel-package .btn-group-lg > .btn {
  color: #7b8a8b;
  border-radius: 50px;
}

/* line 27, app/assets/stylesheets/_order.scss */
.panel-login .btn.btn-sm, .panel-login .btn-group-sm > .btn,
.panel-payment .btn.btn-sm,
.panel-payment .btn-group-sm > .btn,
.panel-provider .btn.btn-sm,
.panel-provider .btn-group-sm > .btn,
.panel-package .btn.btn-sm,
.panel-package .btn-group-sm > .btn {
  background: none;
  border: 1px solid #fff;
  border-radius: 50px;
  padding-right: 30px;
  padding-left: 30px;
  font-size: 12px;
}

/* line 37, app/assets/stylesheets/_order.scss */
.panel-login .actions,
.panel-payment .actions,
.panel-provider .actions,
.panel-package .actions {
  margin-top: 40px;
}

/* line 41, app/assets/stylesheets/_order.scss */
.panel-login p,
.panel-payment p,
.panel-provider p,
.panel-package p {
  margin-bottom: 0;
}

/* line 47, app/assets/stylesheets/_order.scss */
.panel-package .panel-body {
  padding: 20px;
  color: #D6D7DD;
}

/* line 51, app/assets/stylesheets/_order.scss */
.panel-package .panel-body p {
  line-height: 32px;
}

/* line 57, app/assets/stylesheets/_order.scss */
.panel-login {
  display: none;
  margin-bottom: 15px;
}

/* line 61, app/assets/stylesheets/_order.scss */
.panel-login.is--active {
  display: block;
}

/* line 63, app/assets/stylesheets/_order.scss */
.panel-login .heading {
  margin-bottom: 20px;
}

/* line 64, app/assets/stylesheets/_order.scss */
.panel-login .alert {
  cursor: pointer;
}

/* line 67, app/assets/stylesheets/_order.scss */
.panel-login .user-info p {
  margin-bottom: 0;
}

/* line 71, app/assets/stylesheets/_order.scss */
.panel-provider {
  margin-bottom: 15px;
}

/* line 75, app/assets/stylesheets/_order.scss */
.panel-payment {
  font-size: 20px;
}

/* line 78, app/assets/stylesheets/_order.scss */
.panel-payment .panel-body {
  display: none;
}

/* line 81, app/assets/stylesheets/_order.scss */
.panel-payment .panel-body:nth-of-type(2), .panel-payment .panel-body:nth-of-type(3) {
  padding-top: 0;
}

/* line 84, app/assets/stylesheets/_order.scss */
.panel-payment .panel-body.panel-body--title {
  display: block;
}

/* line 87, app/assets/stylesheets/_order.scss */
.panel-payment .panel-body.panel-body--title p.lead, .panel-payment .panel-body.panel-body--title .info-block p, .info-block .panel-payment .panel-body.panel-body--title p {
  margin-bottom: 0;
  font-weight: bold;
  font-size: 22px;
}

/* line 95, app/assets/stylesheets/_order.scss */
.panel-payment .panel-body .payment .tab-pane {
  margin-top: 15px;
}

/* line 98, app/assets/stylesheets/_order.scss */
.panel-payment .panel-body .payment .btn-group .btn {
  font-size: 14px;
  padding: 1.75rem 12px;
  border-right: 1px solid #798d8f;
  text-transform: none;
}

/* line 104, app/assets/stylesheets/_order.scss */
.panel-payment .panel-body .payment .btn-group .btn:last-of-type {
  border-right: none;
}

/* line 105, app/assets/stylesheets/_order.scss */
.panel-payment .panel-body .payment .btn-group .btn:focus, .panel-payment .panel-body .payment .btn-group .btn:active, .panel-payment .panel-body .payment .btn-group .btn.focus {
  outline: none !important;
}

/* line 106, app/assets/stylesheets/_order.scss */
.panel-payment .panel-body .payment .btn-group .btn.active {
  background-color: #820560;
  border-color: #820560;
}

/* line 114, app/assets/stylesheets/_order.scss */
.panel-payment .panel-body .buy {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #95a5a6;
}

/* line 120, app/assets/stylesheets/_order.scss */
.panel-payment .panel-body .buy .checkbox {
  margin: 0;
}

/* line 121, app/assets/stylesheets/_order.scss */
.panel-payment .panel-body .buy .btn {
  text-transform: uppercase;
}

/* line 123, app/assets/stylesheets/_order.scss */
.panel-payment .panel-body .buy__availability-hint {
  display: block;
  margin-bottom: 1rem;
  padding: 0 1rem;
  text-align: center;
}

/* line 131, app/assets/stylesheets/_order.scss */
.panel-payment .panel-body .buy__movie-payment-description {
  padding: 2rem;
  text-align: center;
  border: 2px solid #820560;
  border-radius: 6px;
  background-color: rgba(130, 5, 96, 0.25);
}

/* line 142, app/assets/stylesheets/_order.scss */
.panel-payment .form-error-explanation {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* line 148, app/assets/stylesheets/_order.scss */
.panel-movie-small {
  background: none;
  border: none;
  margin-bottom: 10px;
  color: #fff;
}

/* line 154, app/assets/stylesheets/_order.scss */
.panel-movie-small .panel-body {
  padding: 0px;
}

/* line 161, app/assets/stylesheets/_order.scss */
#sepa-content dl dt {
  text-align: left;
}

/* line 165, app/assets/stylesheets/_order.scss */
.well .lead, .well .info-block p, .info-block .well p {
  margin-bottom: 0;
}

/* line 169, app/assets/stylesheets/_order.scss */
.order-provider-selection__section {
  display: none;
}

/* line 171, app/assets/stylesheets/_order.scss */
.order-provider-selection__section.is--active {
  display: block;
}

/* line 174, app/assets/stylesheets/_order.scss */
.order-provider-selection__form {
  margin-top: 3rem;
}

/* line 177, app/assets/stylesheets/_order.scss */
.order-payment-redirect-hint {
  margin: 4rem 0;
  font-size: 0.9em;
  font-weight: 400;
}

/* line 183, app/assets/stylesheets/_order.scss */
.order-payment-selection {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

/* line 195, app/assets/stylesheets/_order.scss */
.order-payment-option {
  transition: all 0.25s ease-in;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-grow: 0;
  flex-basis: 30%;
  flex-shrink: 0;
  position: relative;
  padding: 1rem;
  background: #eeeeee;
  border-radius: 3px;
}

/* line 215, app/assets/stylesheets/_order.scss */
.order-payment-option__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-top: 0 !important;
  opacity: 0;
  cursor: pointer;
}

/* line 227, app/assets/stylesheets/_order.scss */
.order-payment-option__label {
  font-size: 0.8em;
}

/* line 231, app/assets/stylesheets/_order.scss */
.order-payment-option__icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* line 236, app/assets/stylesheets/_order.scss */
.order-payment-option__icon--giropay {
  width: auto;
  height: 14px;
}

/* line 241, app/assets/stylesheets/_order.scss */
.order-payment-option__icon--sofort {
  width: auto;
  height: 8px;
}

/* line 247, app/assets/stylesheets/_order.scss */
.order-payment-option.active, .order-payment-option:hover {
  background: rgba(130, 5, 96, 0.025);
  outline: 1px solid #820560;
}

@media only screen and (max-width: 992px) {
  /* line 254, app/assets/stylesheets/_order.scss */
  .order-payment-selection {
    gap: 0.75rem;
    margin-left: 0;
    margin-right: 0;
  }
  /* line 261, app/assets/stylesheets/_order.scss */
  .order-payment-option {
    flex-basis: 45%;
    padding: 1.25rem;
  }
}

@media only screen and (max-width: 768px) {
  /* line 272, app/assets/stylesheets/_order.scss */
  .panel-login .panel-body,
.panel-payment .panel-body,
.panel-provider .panel-body,
.panel-package .panel-body {
    padding-left: 15px;
    padding-right: 15px;
  }
  /* line 278, app/assets/stylesheets/_order.scss */
  .panel-payment .panel-body .payment .btn-group .btn {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  /* line 283, app/assets/stylesheets/_order.scss */
  .panel-payment .panel-body .buy .btn {
    border-radius: 6px;
    margin-top: 3rem;
  }
}

/* line 1, app/assets/stylesheets/_orders.scss */
img.disabled {
  opacity: 0.3;
}

/* line 5, app/assets/stylesheets/_orders.scss */
.order_meta_data {
  margin-top: 36px;
  text-align: right;
}

/* line 10, app/assets/stylesheets/_orders.scss */
.row.my_movies > .col-md-4:nth-child(3n+1) {
  clear: both;
}

/* line 15, app/assets/stylesheets/_orders.scss */
span.input-group-btn .btn {
  padding-bottom: 9px;
}

/* line 20, app/assets/stylesheets/_orders.scss */
.expired-orders-heading {
  margin-top: 0;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* line 26, app/assets/stylesheets/_orders.scss */
.expired-orders {
  padding: 75px 0 75px;
}

/* line 30, app/assets/stylesheets/_orders.scss */
.well-rented {
  margin-bottom: 10px;
}

/* line 34, app/assets/stylesheets/_orders.scss */
.unique-device-content {
  margin: 6rem 0;
  text-align: center;
}

/* line 40, app/assets/stylesheets/_orders.scss */
.unique-device__register {
  border-radius: 100px;
  color: #222222;
  padding-top: 21px;
  padding-bottom: 21px;
  background-image: linear-gradient(-180deg, #820560 0%, #69044e 100%);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.45);
  border: none;
  font-weight: 500;
  font-size: 26px;
}

/* line 53, app/assets/stylesheets/_orders.scss */
.unique-device__register:hover {
  background-image: none;
  background: darken #820560, 7%;
}

/* line 59, app/assets/stylesheets/_orders.scss */
.order-content-wrapper {
  margin-bottom: 2rem;
}

/* line 3, app/assets/stylesheets/_panels.scss */
.panel .panel-body h1, .panel .panel-body h3, .panel .panel-body h4.top {
  margin-top: 0;
}

/* line 6, app/assets/stylesheets/_panels.scss */
.panel .additional-links {
  margin-top: 25px;
  font-size: 80%;
}

/* line 13, app/assets/stylesheets/_panels.scss */
.panel-table-only .panel-body,
.panel-table-only .table {
  margin: 0 !important;
  padding: 0 !important;
}

/* line 19, app/assets/stylesheets/_panels.scss */
.panel-table-only th:first-child,
.panel-table-only td:first-child {
  padding-left: 2rem;
}

/* line 22, app/assets/stylesheets/_panels.scss */
.panel-table-only th:last-child,
.panel-table-only td:last-child {
  padding-right: 2rem;
}

/* line 26, app/assets/stylesheets/_panels.scss */
.panel-spaced {
  margin-top: 6rem;
}

/* line 1, app/assets/stylesheets/_providers.scss */
.provider--deleted {
  opacity: 0.25;
}

/* line 1, app/assets/stylesheets/_ratings.scss */
.rating {
  font-size: 0.9em;
}

/* line 4, app/assets/stylesheets/_ratings.scss */
.rating + .rating {
  margin-top: 2rem;
}

/* line 6, app/assets/stylesheets/_ratings.scss */
.rating-stars {
  padding-top: 0.5rem;
}

/* line 8, app/assets/stylesheets/_ratings.scss */
.rating-stars__star {
  width: 18px;
}

/* line 12, app/assets/stylesheets/_ratings.scss */
.rating-star-selection {
  display: flex;
  flex-direction: row;
  margin-top: 0.5rem;
  color: #820560;
}

/* line 18, app/assets/stylesheets/_ratings.scss */
.rating-star-selection__input {
  display: none;
}

/* line 20, app/assets/stylesheets/_ratings.scss */
.rating-star-selection__label {
  padding: 0 0.5rem;
  cursor: pointer;
}

/* line 24, app/assets/stylesheets/_ratings.scss */
.rating-star-selection__label:before {
  font-family: 'FontAwesome';
  font-size: 32px;
  content: "\f006";
}

/* line 31, app/assets/stylesheets/_ratings.scss */
.rating-star-selection__label.is--active:before, .rating-star-selection__label:hover:before {
  content: "\f005";
}

/* line 36, app/assets/stylesheets/_ratings.scss */
.rating-star-display {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  margin-left: 2rem;
  color: #F39C12;
}

/* line 47, app/assets/stylesheets/_ratings.scss */
.order-rating-wrapper,
.movie-single .trailer .order-rating-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

/* line 57, app/assets/stylesheets/_ratings.scss */
.order-rating-wrapper__closeButton,
.movie-single .trailer .order-rating-wrapper__closeButton {
  margin-top: 2rem;
}

/* line 60, app/assets/stylesheets/_ratings.scss */
.order-rating-description,
.movie-single .trailer .order-rating-description {
  padding: 2rem;
  text-align: center;
}

/* line 64, app/assets/stylesheets/_ratings.scss */
.order-rating-description h1, .order-rating-description h2, .order-rating-description h3, .order-rating-description h4, .order-rating-description h5, .order-rating-description h6,
.movie-single .trailer .order-rating-description h1,
.movie-single .trailer .order-rating-description h2,
.movie-single .trailer .order-rating-description h3,
.movie-single .trailer .order-rating-description h4,
.movie-single .trailer .order-rating-description h5,
.movie-single .trailer .order-rating-description h6 {
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 2rem 0;
}

/* line 70, app/assets/stylesheets/_ratings.scss */
.order-rating-description p,
.movie-single .trailer .order-rating-description p {
  font-size: 18px;
  text-transform: none;
  margin-bottom: 0;
}

/* line 76, app/assets/stylesheets/_ratings.scss */
.order-rating-description p + p,
.movie-single .trailer .order-rating-description p + p {
  margin-top: 0.5rem;
}

/* line 1, app/assets/stylesheets/_registration.scss */
.captcha-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}

/* line 1, app/assets/stylesheets/_tables.scss */
.table.table--light {
  font-size: 16px;
}

/* line 3, app/assets/stylesheets/_tables.scss */
.table.table--light th, .table.table--light td {
  vertical-align: middle;
}

/* line 4, app/assets/stylesheets/_tables.scss */
.table.table--light th {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.9em;
  color: #95a5a6;
}

/* line 10, app/assets/stylesheets/_tables.scss */
.table.table--light th a {
  color: inherit;
  text-decoration: none;
}

/* line 16, app/assets/stylesheets/_tables.scss */
.table.table--light:last-child {
  margin-bottom: 0;
}

/* line 19, app/assets/stylesheets/_tables.scss */
.table-sort-icon {
  margin-right: 0.5rem;
}

/* line 21, app/assets/stylesheets/_tables.scss */
.th--icon {
  width: 1px;
  white-space: nowrap;
}

/* line 26, app/assets/stylesheets/_tables.scss */
.td--center {
  vertical-align: middle !important;
}

/* line 27, app/assets/stylesheets/_tables.scss */
.table-content-subtitle {
  font-size: 0.9em;
}

/* line 4, app/assets/stylesheets/_themes_worlds.scss */
.collection-index .btn-return {
  margin-top: 28px;
}

/* line 6, app/assets/stylesheets/_themes_worlds.scss */
.collection-index .btn-return:hover {
  color: #820560;
  border-color: #820560;
}

/* line 12, app/assets/stylesheets/_themes_worlds.scss */
.collection-index .collection {
  background: #36393F;
  padding-top: 60px;
  padding-bottom: 80px;
  margin-bottom: -40px;
}

/* line 18, app/assets/stylesheets/_themes_worlds.scss */
.collection-index .collection h2 {
  color: #820560;
}

/* line 22, app/assets/stylesheets/_themes_worlds.scss */
.collection-index .collection img {
  border-radius: 6px;
}

/* line 26, app/assets/stylesheets/_themes_worlds.scss */
.collection-index .collection .header {
  margin-bottom: 35px;
}

/* line 29, app/assets/stylesheets/_themes_worlds.scss */
.collection-index .collection .header h4 {
  font-size: 22px;
}

/* line 37, app/assets/stylesheets/_themes_worlds.scss */
.collections--surrounded-by-movies {
  margin-top: 70px;
}

/* line 39, app/assets/stylesheets/_themes_worlds.scss */
.collections .collection {
  height: 540px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 6px;
  position: relative;
}

/* line 47, app/assets/stylesheets/_themes_worlds.scss */
.collections .collection .title {
  padding: 30px 45px 0 45px;
  position: absolute;
  bottom: 0;
  width: 100%;
  background-image: linear-gradient(to top, #111, #111 40%, transparent 100%);
}

/* line 54, app/assets/stylesheets/_themes_worlds.scss */
.collections .collection .title h4 {
  font-size: 45px;
  color: #820560;
}

/* line 62, app/assets/stylesheets/_themes_worlds.scss */
.collection-wrapper {
  position: relative;
  display: block;
  margin-bottom: 70px;
  box-shadow: 0 20px 38px 0 rgba(0, 0, 0, 0.25);
}

/* line 70, app/assets/stylesheets/_themes_worlds.scss */
.collection-list {
  margin: 0;
  padding: 20px 45px;
  background: linear-gradient(0deg, #1e2024 0%, #111 100%);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* line 78, app/assets/stylesheets/_themes_worlds.scss */
.collection-list li {
  padding-right: 0;
  color: #FFF;
}

/* line 82, app/assets/stylesheets/_themes_worlds.scss */
.collection-list li::after {
  content: '/';
  padding-left: 10px;
}

/* line 88, app/assets/stylesheets/_themes_worlds.scss */
.collection-list li:last-child::after {
  content: '';
  padding-left: 0;
}

/* line 98, app/assets/stylesheets/_themes_worlds.scss */
.collection .list-inline li {
  padding-right: 0;
  color: #FFF;
}

/* line 102, app/assets/stylesheets/_themes_worlds.scss */
.collection .list-inline li::after {
  content: '/';
  padding-left: 10px;
}

/* line 108, app/assets/stylesheets/_themes_worlds.scss */
.collection .list-inline li:last-child::after {
  content: '';
  padding-left: 0;
}

/* line 1, app/assets/stylesheets/_videojs.scss */
.jw-settings-submenu-captions button[aria-label="Unknown CC"] {
  display: none !important;
}

/* line 2, app/assets/stylesheets/_videojs.scss */
.jw-text-duration {
  transform-style: flat !important;
}

/* line 1, app/assets/stylesheets/_youtube.scss */
.youtube-embed {
  z-index: 1;
}

/* line 4, app/assets/stylesheets/_youtube.scss */
.youtube-embed__player {
  display: none;
}

/* line 6, app/assets/stylesheets/_youtube.scss */
.youtube-embed__player.is--enabled {
  display: block;
}

/* line 9, app/assets/stylesheets/_youtube.scss */
.youtube-embed__minipanel {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

/* line 17, app/assets/stylesheets/_youtube.scss */
.youtube-embed__privacy {
  padding: 0 1rem;
  font-size: 0.8em;
}

/* line 23, app/assets/stylesheets/_youtube.scss */
.responsive-youtube-wrapper {
  position: relative;
  height: 0;
  padding-top: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}

/* line 30, app/assets/stylesheets/_youtube.scss */
.responsive-youtube-wrapper iframe, .responsive-youtube-wrapper object, .responsive-youtube-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 39, app/assets/stylesheets/_youtube.scss */
.youtube-privacy-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem;
  text-align: center;
  color: #d6d7dd;
  background-color: #000;
  border-radius: 6px;
}

/* line 51, app/assets/stylesheets/_youtube.scss */
.youtube-privacy-placeholder.is--hidden {
  display: none;
}

/* line 53, app/assets/stylesheets/_youtube.scss */
.youtube-privacy-placeholder__title {
  font-size: 2em;
  margin-bottom: 6rem;
}

/* line 58, app/assets/stylesheets/_youtube.scss */
.youtube-privacy-placeholder__description {
  margin-bottom: 6rem;
  max-width: 50rem;
  font-weight: 300;
}

/* line 65, app/assets/stylesheets/_youtube.scss */
.youtube-privacy-placeholder__accept {
  margin-bottom: 2rem;
}

/* line 69, app/assets/stylesheets/_youtube.scss */
.youtube-privacy-placeholder__privacy-hint {
  max-width: 50rem;
}

/* line 1, app/assets/stylesheets/optional/_cooperation-logos.scss */
.cooperation-logos {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #820560;
}

/* line 7, app/assets/stylesheets/optional/_cooperation-logos.scss */
.cooperation-logos__title {
  margin: 0;
  color: #820560;
  font-size: 24px;
}

/* line 14, app/assets/stylesheets/optional/_cooperation-logos.scss */
.cooperation-logos__social-media-links {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* line 22, app/assets/stylesheets/optional/_cooperation-logos.scss */
.cooperation-logos__social-media-link + .cooperation-logos__social-media-link {
  margin-left: 3rem;
}

/* line 25, app/assets/stylesheets/optional/_cooperation-logos.scss */
.cooperation-logos__social-media-icon {
  fill: #820560;
  height: 32px;
}

/* line 31, app/assets/stylesheets/optional/_cooperation-logos.scss */
.cooperation-logo {
  display: inline-block;
}

/* line 33, app/assets/stylesheets/optional/_cooperation-logos.scss */
.cooperation-logo + .cooperation-logo {
  margin-left: 4rem;
}

@media (max-width: 991px) {
  /* line 38, app/assets/stylesheets/optional/_cooperation-logos.scss */
  .cooperation-logos__title {
    margin-bottom: 2rem;
  }
  /* line 39, app/assets/stylesheets/optional/_cooperation-logos.scss */
  .cooperation-logos__social-media-links {
    justify-content: flex-start;
  }
}

/* line 3, app/assets/stylesheets/optional/_movie-tiles.scss */
.movie-tiles {
  margin-top: 75px;
}

/* line 5, app/assets/stylesheets/optional/_movie-tiles.scss */
.movie-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 10rem 0;
}

/* line 12, app/assets/stylesheets/optional/_movie-tiles.scss */
.movie-tile__link {
  position: relative;
  display: block;
}

/* line 17, app/assets/stylesheets/optional/_movie-tiles.scss */
.movie-tile__title {
  margin: 3rem 0 1rem 0;
  color: #820560;
  font-size: 24px;
}

/* line 24, app/assets/stylesheets/optional/_movie-tiles.scss */
.movie-tile__content {
  padding-left: 1rem;
  border-left: 2px solid rgba(130, 5, 96, 0.75);
}

/* line 29, app/assets/stylesheets/optional/_movie-tiles.scss */
.movie-tile__details {
  display: inline-block;
  color: #181A1B;
}

/* line 34, app/assets/stylesheets/optional/_movie-tiles.scss */
.movie-tile__order-detail {
  display: inline-block;
  margin-top: 0.25rem;
}

/* line 39, app/assets/stylesheets/optional/_movie-tiles.scss */
.movie-tile__director {
  display: block;
}

/* line 43, app/assets/stylesheets/optional/_movie-tiles.scss */
.movie-tile__watch-list-removal {
  position: absolute;
  top: 2rem;
  right: 2rem;
}

/* line 48, app/assets/stylesheets/optional/_movie-tiles.scss */
.movie-tile__watch-list-removal__button, .movie-tile__watch-list-removal__button.btn {
  padding: 1rem 2rem;
  font-size: 14px;
  line-height: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* line 59, app/assets/stylesheets/optional/_movie-tiles.scss */
.movie-tile.is--disabled {
  pointer-events: none;
  opacity: 0.5;
}

/* line 67, app/assets/stylesheets/optional/_movie-tiles.scss */
.movie-tile__detail + .movie-tile__detail:before {
  content: '|';
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

/* line 74, app/assets/stylesheets/optional/_movie-tiles.scss */
.movie-tile__detail + .movie-tile__director {
  margin-top: 0.25rem;
}

@media (min-width: 992px) {
  /* line 78, app/assets/stylesheets/optional/_movie-tiles.scss */
  .movie-tiles__title {
    text-align: left;
  }
  /* line 80, app/assets/stylesheets/optional/_movie-tiles.scss */
  .movie-tile:nth-child(0n+1) {
    align-items: flex-start;
  }
  /* line 81, app/assets/stylesheets/optional/_movie-tiles.scss */
  .movie-tile:nth-child(0n+3) {
    align-items: flex-end;
  }
  /* line 83, app/assets/stylesheets/optional/_movie-tiles.scss */
  .movie-tile__link {
    max-width: 360px;
  }
}

@media (max-width: 991px) {
  /* line 88, app/assets/stylesheets/optional/_movie-tiles.scss */
  .movie-tiles {
    margin: 0;
  }
}

/* line 1, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_title_boxes.scss */
.gi-title-box {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* line 9, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_title_boxes.scss */
.gi-title-box__content {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1920px;
  padding: 10rem 10%;
  overflow: hidden;
}

/* line 17, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_title_boxes.scss */
.gi-title-box__content img {
  position: relative;
}

/* line 20, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_title_boxes.scss */
.gi-title-box__title {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* line 29, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_title_boxes.scss */
.gi-title-box__title-content {
  margin: -3rem 0 0 0;
  font-family: "Clan W01 Bold", "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 240px;
  line-height: 250px;
  font-weight: bold;
  text-transform: uppercase;
  color: #820560;
}

@media (max-width: 991px) {
  /* line 44, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_title_boxes.scss */
  .gi-title-box__content {
    padding: 10% 5%;
  }
  /* line 45, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_title_boxes.scss */
  .gi-title-box__title-content {
    display: none;
  }
}

/* line 2, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_glide.scss */
.glide__arrow {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  height: 100%;
  width: 10rem;
  z-index: 2;
  color: #fff;
  text-transform: uppercase;
  background-color: transparent;
  border: none;
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
}

/* line 23, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_glide.scss */
.glide__arrow:focus {
  outline: none;
}

/* line 24, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_glide.scss */
.glide__arrow:hover {
  border-color: white;
}

/* line 26, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_glide.scss */
.glide__arrow--left {
  left: 0;
  background: linear-gradient(90deg, #e4e6e7 0%, transparent 100%);
}

/* line 31, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_glide.scss */
.glide__arrow--right {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, #e4e6e7 100%);
}

/* line 36, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_glide.scss */
.glide__arrow--disabled {
  opacity: 0;
  pointer-events: none;
}

/* line 42, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_glide.scss */
.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}

/* line 52, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_glide.scss */
.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}

/* line 65, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_glide.scss */
.glide__bullet:focus {
  outline: none;
}

/* line 66, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_glide.scss */
.glide__bullet:hover, .glide__bullet:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.5);
}

/* line 71, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_glide.scss */
.glide__bullet--active {
  background-color: white;
}

/* line 74, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_glide.scss */
.glide--swipeable {
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

/* line 80, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_glide.scss */
.glide--dragging {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

/* line 87, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_glide.scss */
.playlist-movies-title {
  margin: 10rem 0 2rem 0;
  font-family: "Clan W01 Bold", "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 20px;
  text-transform: uppercase;
  color: #929A9E;
}

/* line 98, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_glide.scss */
.movie-scroller__movie-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* line 104, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_glide.scss */
.movie-scroller__movie {
  padding: 1rem;
  border: 2px solid transparent;
}

/* line 108, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_glide.scss */
.movie-scroller__movie + .movie-scroller__movie {
  margin-left: 2rem;
}

/* line 109, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_glide.scss */
.movie-scroller__movie.is--active {
  border-color: #820560;
  background-color: #fff;
}

/* line 114, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_glide.scss */
.movie-scroller__movie:not(.is--active) {
  cursor: pointer;
}

/* line 117, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_glide.scss */
.movie-scroller__movie:not(.is--active):hover {
  border-color: #929A9E;
  background-color: rgba(255, 255, 255, 0.5);
}

/* line 123, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_glide.scss */
.movie-scroller__movie.is--disabled {
  opacity: 0.25;
  pointer-events: none;
}

/* line 129, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_glide.scss */
.movie-scroller__image {
  margin-bottom: 1rem;
}

/* line 130, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_glide.scss */
.movie-scroller__title {
  max-width: 180px;
}

/* line 132, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_glide.scss */
.movie-scroller__directional-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  background-color: #000;
}

@media (max-width: 991px) {
  /* line 145, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_glide.scss */
  .glide__arrow {
    pointer-events: none;
  }
  /* line 146, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_glide.scss */
  .movie-scroller__directional-button {
    display: none;
  }
}

/* line 1, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_playlists.scss */
.next-movie-cta {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: all 0.25s ease-in-out;
}

/* line 21, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_playlists.scss */
.next-movie-cta.is--active {
  opacity: 1;
  pointer-events: all;
}

/* line 26, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_playlists.scss */
.next-movie-cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60%;
}

/* line 34, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_playlists.scss */
.next-movie-cta__title {
  margin-bottom: 2rem;
  font-family: "Clan W01 Bold", "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 30px;
  text-transform: uppercase;
}

/* line 41, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_playlists.scss */
.next-movie-cta__image {
  margin-bottom: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

/* line 46, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_playlists.scss */
.next-movie-cta__description {
  margin-bottom: 2rem;
  line-height: 28px;
}

/* line 51, app/themes/goethe-institut/assets/stylesheets/goethe-institut/custom/_playlists.scss */
.next-movie-cta__button {
  border-radius: 3px;
}

/* line 7, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_collections.scss */
.collection-index .collection {
  background-color: #222429;
}

/* line 11, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_collections.scss */
.collection-index .collection .list-inline li {
  color: #181A1B;
}

/* line 12, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_collections.scss */
.collection-index .collection .description {
  color: #181A1B;
}

/* line 16, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_collections.scss */
.collections {
  margin-top: 70px;
}

/* line 21, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_collections.scss */
.collection-details {
  margin-bottom: 150px;
}

/* line 25, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_collections.scss */
.collection-title {
  position: relative;
  margin-top: 70px;
  margin-bottom: 40px;
  font-family: "Clan W01 Bold", "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 50px;
  line-height: 70px;
  font-weight: bold;
  text-transform: uppercase;
  color: #E4E6E7;
}

/* line 38, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_collections.scss */
.collection-description {
  font-size: 25px;
  line-height: 40px;
  color: #E4E6E7;
}

/* line 44, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_collections.scss */
.collection-divider {
  height: 0;
  border: none;
  border-bottom: 2px solid #E4E6E7;
}

/* line 54, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_collections.scss */
.gi-title-box.is--collection {
  color: #E4E6E7;
  background-color: #303436;
}

/* line 58, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_collections.scss */
.gi-title-box.is--collection + .gi-title-box.is--collection {
  padding-top: 2rem;
  border-top: 4px solid #000000;
}

/* line 65, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_collections.scss */
.gi-title-box.is--collection .gi-title-box__title-content {
  color: #000000;
}

/* line 70, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_collections.scss */
.gi-title-box.is--collection .gi-title-box__content {
  padding-bottom: 20rem;
}

@media (max-width: 991px) {
  /* line 81, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_collections.scss */
  .gi-title-box.is--collection .gi-title-box__content {
    padding-bottom: 5rem;
  }
}

/* line 1, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_cookies.scss */
.cc-banner {
  font-family: "Roboto", "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 0.25px;
}

/* line 6, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_cookies.scss */
.cc-banner .cc-message {
  color: #E4E6E7;
}

/* line 8, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_cookies.scss */
.cc-banner .cc-link {
  opacity: 1;
  color: #E4E6E7 !important;
}

/* line 13, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_cookies.scss */
.cc-banner .cc-btn.cc-deny {
  color: #E4E6E7 !important;
}

/* line 14, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_cookies.scss */
.cc-banner .cc-btn.cc-allow {
  border-radius: 6px;
}

/* line 1, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_cooperation_logos.scss */
.cooperation-logos {
  background-color: #820560;
  border-top: 2px solid #DEE0E1;
}

/* line 5, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_cooperation_logos.scss */
.cooperation-logos__title {
  margin: 0;
  color: #E4E6E7;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
}

/* line 1, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_dropdowns.scss */
.dropdown-menu {
  background-color: #181A1B;
  box-shadow: 10px 10px 2px rgba(0, 0, 0, 0.15);
}

/* line 6, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_dropdowns.scss */
.dropdown-menu > li > a {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-family: "Clan W01 Bold", "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 0.9em;
  text-transform: uppercase;
  color: #929A9E;
  background-color: transparent;
}

/* line 19, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_dropdowns.scss */
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  color: #E4E6E7;
  background-color: transparent;
}

/* line 1, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_home.scss */
.home {
  background-color: #820560;
}

/* line 4, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_home.scss */
.home .slideshow {
  margin: 0;
}

/* line 7, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_home.scss */
.home .slideshow .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10rem 10%;
  overflow: hidden;
}

/* line 19, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_home.scss */
.slide-heading-wrapper {
  position: absolute;
  top: -3rem;
  left: 0;
  z-index: 0;
}

/* line 26, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_home.scss */
.slide-image-wrapper {
  position: relative;
}

/* line 27, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_home.scss */
.slide-image {
  max-width: 100%;
}

/* line 29, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_home.scss */
.slide-heading {
  margin: 0;
  font-family: "Clan W01 Bold", "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 240px;
  line-height: 250px;
  font-weight: bold;
  text-transform: uppercase;
  color: #E4E6E7;
}

/* line 40, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_home.scss */
.slide-subtitle {
  position: absolute;
  right: 25px;
  bottom: 15px;
  font-size: 16px;
  font-weight: bold;
}

/* line 50, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_home.scss */
.info-block {
  padding-top: 125px;
  color: #E4E6E7;
  text-align: left;
  background-color: #820560;
}

/* line 57, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_home.scss */
.info-block h1, .info-block h2, .info-block h3, .info-block h4, .info-block h5, .info-block p {
  color: #E4E6E7;
}

/* line 59, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_home.scss */
.info-block h1 {
  margin: 0 0 85px 0;
}

/* line 60, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_home.scss */
.info-block h2 {
  margin-bottom: 4rem;
  font-weight: bold;
  font-size: 26px;
  line-height: 40px;
  letter-spacing: 0.5px;
  text-transform: none;
}

/* line 69, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_home.scss */
.info-block a {
  color: inherit;
  font-weight: bold;
}

@media (max-width: 767px) {
  /* line 76, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_home.scss */
  .home .slideshow #slides {
    height: 250px;
  }
}

@media (min-width: 768px) {
  /* line 80, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_home.scss */
  .home .slideshow #slides {
    height: 450px;
  }
}

@media (min-width: 992px) {
  /* line 84, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_home.scss */
  .home .slideshow #slides {
    height: 610px;
  }
}

@media (min-width: 1200px) {
  /* line 88, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_home.scss */
  .home .slideshow #slides {
    height: 810px;
  }
}

@media (max-width: 991px) {
  /* line 93, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_home.scss */
  .home .slideshow .slide {
    padding: 10% 5%;
  }
  /* line 97, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_home.scss */
  .slide-heading-wrapper {
    display: none;
  }
  /* line 100, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_home.scss */
  .info-block {
    padding-top: 5rem;
  }
  /* line 102, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_home.scss */
  .info-block p {
    font-size: 22px;
  }
}

/* line 1, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_footer.scss */
.footer-creative-europe {
  padding: 15px 0;
  color: #8e8e8e;
}

/* line 5, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_footer.scss */
.footer-creative-europe p {
  font-size: 14px;
}

@media (min-width: 768px) {
  /* line 8, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_footer.scss */
  .footer-creative-europe p {
    margin: 0;
  }
}

/* line 12, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_footer.scss */
footer.footer {
  font-size: 14px;
  background: #000;
}

/* line 16, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_footer.scss */
footer.footer .brand-image {
  width: 120px;
}

/* line 18, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_footer.scss */
footer.footer a {
  color: #E4E6E7;
}

/* line 20, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_footer.scss */
footer.footer a:hover {
  color: #fff;
}

/* line 24, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_footer.scss */
.footer {
  font-weight: bold;
  text-transform: uppercase;
}

/* line 29, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_footer.scss */
.footer-link-block + .footer-link-block {
  margin-left: 4rem;
}

/* line 32, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_footer.scss */
.footer-link {
  display: block;
}

/* line 34, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_footer.scss */
.footer-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

/* line 42, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_footer.scss */
.footer-col + .footer-col {
  margin-left: 2rem;
}

/* line 44, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_footer.scss */
.footer-col--logo {
  flex-grow: 0;
  flex-basis: 20rem;
}

/* line 49, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_footer.scss */
.footer-col--links {
  flex-grow: 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

/* line 61, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_footer.scss */
.collection-index .collection {
  background-color: #222429;
}

/* line 65, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_footer.scss */
.collection-index .collection .list-inline li {
  color: #181A1B;
}

/* line 69, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_footer.scss */
.collection-index .collection .description {
  color: #181A1B;
}

@media (max-width: 991px) {
  /* line 77, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_footer.scss */
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
  /* line 83, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_footer.scss */
  .footer-col + .footer-col {
    margin-top: 2rem;
    margin-left: 0;
  }
  /* line 88, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_footer.scss */
  .footer-col--logo {
    flex-basis: auto;
  }
  /* line 92, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_footer.scss */
  .footer-col--links {
    flex-direction: column;
    align-items: flex-start;
  }
  /* line 98, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_footer.scss */
  .footer-link-block {
    text-align: left;
  }
  /* line 101, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_footer.scss */
  .footer-link-block + .footer-link-block {
    margin-top: 0;
    margin-left: 0;
  }
  /* line 107, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_footer.scss */
  .footer-link {
    padding: 0.5rem;
  }
}

/* line 2, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-tiles-wrapper + .movie-tiles-wrapper {
  border-top: 2px solid #A3AAAD;
}

/* line 7, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-tiles-content {
  position: relative;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

/* line 14, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-tiles {
  max-width: 1920px;
  margin: 0 5vw;
}

/* line 18, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-tiles__title {
  margin: 10rem 0 8rem 0;
  font-family: "Clan W01 Bold", "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 20px;
  text-transform: uppercase;
  color: #929A9E;
}

/* line 30, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-tile__title {
  margin: 4rem 0 1rem 0;
  color: #181A1B;
  font-weight: bold;
  font-size: 30px;
}

/* line 38, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-tile__director {
  display: inline-block;
}

/* line 40, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-tile__director strong {
  letter-spacing: 0.5px;
}

/* line 45, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-tile__director + .movie-tile__duration:before {
  content: '|';
  font-weight: bold;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

/* line 58, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-tiles.is--inverted .movie-tiles__title {
  color: #E4E6E7;
}

/* line 68, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-tile.is--inverted .movie-tile__title,
.movie-tile.is--inverted .movie-tile__director,
.movie-tile.is--inverted .movie-tile__duration {
  color: #E4E6E7;
}

/* line 74, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-single {
  margin-bottom: 20rem;
}

/* line 77, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-single .btn.btn-primary.btn-buy {
  display: inline-flex;
  flex-direction: row;
  margin-left: auto;
  align-items: center;
  width: auto;
  padding: 1rem 2rem;
}

/* line 86, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-single .btn-buy__image {
  padding: 0.25rem 0 0.25rem 3rem;
}

/* line 87, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-single .details + .details {
  border-top: 2px solid #ADB3B6;
}

/* line 89, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-single .details {
  margin: 0;
  background: none;
}

/* line 93, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-single .details .header {
  margin: 0;
}

/* line 96, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-single .details .header h1 {
  font-family: "Clan W01 Bold", "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
}

/* line 101, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-single .details .header h4 {
  font-family: "Clan W01 Bold", "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* line 104, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-single .details .description {
  text-align: left;
}

/* line 107, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-single .details .description h2 {
  margin-bottom: 6rem;
  font-size: 24px;
  font-weight: bold;
  line-height: 40px;
  letter-spacing: 0.25px;
}

/* line 115, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-single .details .description p {
  font-size: 22px;
  line-height: 36px;
}

/* line 121, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-single .details .facts {
  font-weight: bold;
  line-height: 30px;
  letter-spacing: 0.25px;
}

/* line 126, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-single .details .facts .fact-name {
  padding-right: 1rem;
  font-weight: normal;
  letter-spacing: initial;
}

/* line 136, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie__button-wrapper {
  text-align: right;
}

/* line 138, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie__button-wrapper .help-block {
  display: none;
}

/* line 141, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie__button-wrapper.hide-watch-list .movie__watch-list-button {
  display: none;
}

/* line 145, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie__still-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #181A1B;
}

/* line 154, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie__still-wrapper img {
  width: 100%;
}

/* line 157, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie__watch-list-button {
  display: inline-block;
  margin: 0;
  border-radius: 0.5rem;
}

/* line 162, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie__watch-list-button:not(:first-child) {
  margin-top: 2rem;
}

/* line 166, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.btn-buy {
  text-transform: none;
}

/* line 167, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.my-movies {
  margin-top: 5rem;
}

/* line 168, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movies h3 a {
  font-family: "Clan W01 Bold", "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: #181A1B;
}

/* line 175, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-bonus-content-wrapper {
  position: relative;
  z-index: 1;
  justify-content: space-evenly;
  width: 100%;
  margin-top: 0;
}

/* line 183, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-bonus-content-trigger {
  flex-grow: 1;
  margin: 0;
  text-transform: uppercase;
  font-family: "Clan W01 Bold", "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: #929A9E;
  border-radius: 0;
  background-color: #181A1B;
}

/* line 195, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-bonus-content-trigger:hover, .movie-bonus-content-trigger.is--active {
  color: #fff;
  background: #181A1B;
}

/* line 199, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-bonus-content-trigger:hover .movie-bonus-content-trigger__icon, .movie-bonus-content-trigger.is--active .movie-bonus-content-trigger__icon {
  fill: #fff;
}

/* line 202, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-bonus-content-trigger + .movie-bonus-content-trigger {
  margin-left: 2px;
}

/* line 204, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
.movie-bonus-content-trigger__icon {
  position: relative;
  top: -1px;
  margin-left: 1rem;
  height: 14px;
  fill: #929A9E;
}

@media (min-width: 992px) {
  /* line 216, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
  .my-movies {
    margin-top: 10rem;
  }
}

@media (max-width: 991px) {
  /* line 220, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
  .movie__button-wrapper {
    margin-top: 4rem;
    text-align: left;
  }
  /* line 226, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_movies.scss */
  .movie-single .btn.btn-primary.btn-buy {
    margin-left: 0;
  }
}

@keyframes goethe-navbar-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}

/* line 7, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_navbar.scss */
.navbar {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-weight: bold;
  background-color: #000;
  box-shadow: 10px 10px 2px rgba(0, 0, 0, 0.15);
}

/* line 16, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_navbar.scss */
.navbar .navbar-brand {
  position: relative;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 30px;
}

/* line 22, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_navbar.scss */
.navbar .navbar-brand img {
  height: 85px;
  max-height: 100%;
  padding: 0;
}

/* line 28, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_navbar.scss */
.navbar .navbar-brand img.navbar-brand__animation {
  position: absolute;
  right: 16px;
  top: 25px;
  height: 60px;
}

/* line 36, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_navbar.scss */
.navbar .navbar-brand:hover img.navbar-brand__animation {
  animation: goethe-navbar-pulse 1.5s infinite;
}

/* line 40, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_navbar.scss */
.navbar-attribution {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  color: #E4E6E7;
}

/* line 54, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_navbar.scss */
.navbar .navbar-toggle {
  margin-right: 30px;
  border: 0;
}

/* line 58, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_navbar.scss */
.navbar .navbar-toggle:focus {
  background-color: inherit;
}

/* line 59, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_navbar.scss */
.navbar .navbar-toggle .icon-bar {
  background-color: #ADB3B6;
}

/* line 62, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_navbar.scss */
.navbar .navbar-top-link--last {
  margin-right: 2rem;
}

/* line 64, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_navbar.scss */
.navbar.navbar-default .navbar-nav > li > a {
  text-transform: uppercase;
  font-size: 15px;
  color: #929A9E;
}

/* line 69, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_navbar.scss */
.navbar.navbar-default .navbar-nav > li > a:hover, .navbar.navbar-default .navbar-nav > li > a.is--active {
  color: #E4E6E7;
}

/* line 73, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_navbar.scss */
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  background-color: #181A1B;
  color: #820560;
}

@media (min-width: 768px) {
  /* line 82, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_navbar.scss */
  .navbar .navbar-right {
    margin-right: 0;
  }
  /* line 83, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_navbar.scss */
  .navbar.navbar-default .navbar-nav > li > a.navbar-top-link--language-selection {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (min-width: 992px) {
  /* line 92, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_navbar.scss */
  .navbar .navbar-nav > li > a {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (max-width: 991px) {
  /* line 101, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_navbar.scss */
  .navbar-attribution {
    position: static;
  }
}

/* line 1, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_panels.scss */
.panel-default, .panel-form {
  color: #181A1B;
  background: transparent;
  border-color: #ADB3B6;
  border-radius: 0;
  border-width: 2px;
}

/* line 8, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_panels.scss */
.panel-default .additional-links, .panel-form .additional-links {
  margin-top: 4rem;
}

/* line 11, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_panels.scss */
.panel-movie-small {
  color: #181A1B;
  background: none;
  box-shadow: none;
}

/* line 16, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_panels.scss */
.panel-movie-small p {
  font-size: 22px;
}

/* line 21, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_panels.scss */
.panel-login,
.panel-payment,
.panel-provider,
.panel-package {
  color: #181A1B;
  font-size: 16px;
}

/* line 28, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_panels.scss */
.panel-login span.badge,
.panel-payment span.badge,
.panel-provider span.badge,
.panel-package span.badge {
  color: #fff;
}

/* line 33, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_panels.scss */
.panel-login .btn.btn-lg, .panel-login .btn-group-lg > .btn,
.panel-payment .btn.btn-lg,
.panel-payment .btn-group-lg > .btn,
.panel-provider .btn.btn-lg,
.panel-provider .btn-group-lg > .btn,
.panel-package .btn.btn-lg,
.panel-package .btn-group-lg > .btn {
  color: #fff;
}

/* line 37, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_panels.scss */
.panel-login .btn.btn-sm, .panel-login .btn-group-sm > .btn,
.panel-payment .btn.btn-sm,
.panel-payment .btn-group-sm > .btn,
.panel-provider .btn.btn-sm,
.panel-provider .btn-group-sm > .btn,
.panel-package .btn.btn-sm,
.panel-package .btn-group-sm > .btn {
  color: #181A1B;
  color: #181A1B;
}

/* line 44, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_panels.scss */
.panel-form {
  margin-top: 2rem;
}

/* line 47, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_panels.scss */
.panel-form .form-group + .form-group {
  margin-top: 2rem;
}

/* line 49, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_panels.scss */
.panel-form .btn-primary {
  font-size: 13px;
}

/* line 50, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_panels.scss */
.panel-form .additional-links {
  font-weight: bold;
}

/* line 53, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_panels.scss */
.panel-form .additional-links a:last-child {
  display: inline-block;
  margin-top: 0.25rem;
}

/* line 60, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_panels.scss */
.standalone-panel-wrapper {
  margin-top: 10rem;
}

/* line 65, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_panels.scss */
.standalone-panel-wrapper .btn-block:not(#buy_button),
.standalone-panel-wrapper input.btn-block[type="submit"]:not(#buy_button) {
  width: auto;
}

/* line 70, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_panels.scss */
.panel-payment .panel-body .buy__availability-hint {
  color: #929A9E;
}

/* line 72, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_panels.scss */
.panel-payment .panel-body .buy .checkbox + .checkbox {
  margin-top: 0.5rem;
}

/* line 9, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_rtl.scss */
.is--rtl .navbar li.dropdown {
  direction: rtl;
  text-align: right;
}

/* line 11, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_rtl.scss */
.is--rtl .navbar li.dropdown .glyphicon-chevron-right {
  transform: rotate(180deg);
}

/* line 12, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_rtl.scss */
.is--rtl .navbar li.dropdown .dropdown-menu {
  direction: rtl;
  text-align: right;
}

/* line 16, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_rtl.scss */
.is--rtl .navbar .navbar-top-link.rtl-content .glyphicon-chevron-right {
  transform: rotate(180deg);
}

/* line 21, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_rtl.scss */
.is--rtl .full-page .info-block {
  direction: rtl;
  text-align: right;
}

/* line 25, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_rtl.scss */
.is--rtl .movie-tiles .col-md-4 {
  float: right;
}

/* line 28, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_rtl.scss */
.is--rtl .movie-tile__link {
  direction: rtl;
  text-align: right;
}

/* line 31, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_rtl.scss */
.is--rtl .collections .title,
.is--rtl .collections .collection-list {
  direction: rtl;
  text-align: right;
}

/* line 37, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_rtl.scss */
.is--rtl .movie-single .movie-container .col-md-8 {
  direction: rtl;
  text-align: right;
  float: right;
}

/* line 42, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_rtl.scss */
.is--rtl .movie-single .movie-container .col-md-4 {
  float: right;
  text-align: left;
}

/* line 48, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_rtl.scss */
.is--rtl .movie-single .movie__button-wrapper {
  direction: rtl;
  text-align: left;
}

/* line 52, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_rtl.scss */
.is--rtl .movie-single .movie__button-wrapper .btn-buy__image {
  transform: rotate(180deg);
}

/* line 56, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_rtl.scss */
.is--rtl .movie-single .fact-container .col-md-4 {
  float: right;
}

/* line 57, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_rtl.scss */
.is--rtl .movie-single .fact-container .fact {
  direction: rtl;
  text-align: right;
}

/* line 59, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_rtl.scss */
.is--rtl .movie-single .fact-container .fact .fact-name {
  padding-right: 0;
  padding-left: 1rem;
}

/* line 66, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_rtl.scss */
.is--rtl .movie-single .description {
  direction: rtl;
  text-align: right;
}

/* line 69, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_rtl.scss */
.is--rtl .rtl-content,
.is--rtl .static-content {
  direction: rtl;
  text-align: right;
}

/* line 71, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_rtl.scss */
.is--rtl .standalone-panel-wrapper {
  direction: rtl;
  text-align: right;
}

/* line 74, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_rtl.scss */
.is--rtl .user-form-container .col-md-4,
.is--rtl .user-form-container .col-md-8 {
  float: right;
}

/* line 78, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_rtl.scss */
.is--rtl .movie-scroller__title {
  direction: rtl;
  text-align: right;
}

@media (min-width: 992px) {
  /* line 84, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_rtl.scss */
  .is--rtl .movie-tile:nth-child(0n+1) {
    align-items: flex-end;
  }
  /* line 85, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_rtl.scss */
  .is--rtl .movie-tile:nth-child(0n+3) {
    align-items: flex-start;
  }
}

/* line 1, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_structure.scss */
body {
  background: #E4E6E7;
  color: #181A1B;
}

/* line 5, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_structure.scss */
body.bg--dark {
  background: #303436;
  color: #E4E6E7;
}

/* line 11, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_structure.scss */
.wrapper {
  margin: 0 auto;
}

/* line 13, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_structure.scss */
h1 {
  font-family: "Clan W01 Bold", "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
}

/* line 18, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_structure.scss */
h2 {
  font-weight: bold;
}

/* line 20, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_structure.scss */
.btn {
  text-transform: uppercase;
}

/* line 21, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_structure.scss */
.btn-primary {
  font-family: "Clan W01 Bold", "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 17px;
  color: #E4E6E7;
}

/* line 28, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_structure.scss */
.btn-primary:hover {
  color: #E4E6E7;
}

/* line 31, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_structure.scss */
.panel-login .panel-body .btn.btn-lg, .panel-login .panel-body .btn-group-lg > .btn,
.panel-payment .panel-body .buy .btn {
  border-radius: 6px;
}

/* line 33, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_structure.scss */
.font-weight-medium {
  font-weight: bold;
}

/* line 35, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_structure.scss */
.flash.alert {
  font-weight: bold;
}

/* line 37, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_structure.scss */
.flash.alert .close {
  opacity: 1;
}

/* line 40, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_structure.scss */
.alert-warning, .alert-success {
  background-color: #820560;
}

/* line 43, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_structure.scss */
.about-us h1 {
  margin-bottom: 8rem;
}

/* line 44, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_structure.scss */
.about-us p {
  font-size: 24px;
}

/* line 45, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_structure.scss */
.about-us p + p {
  margin-top: 4rem;
}

/* line 48, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_structure.scss */
.page-header {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 55, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_structure.scss */
.page-header__content {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1920px;
}

/* line 65, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_structure.scss */
.page-header__title {
  width: 100%;
}

/* line 68, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_structure.scss */
.page-header__title-content {
  margin: -6rem 0 0 -2rem;
  font-family: "Clan W01 Bold", "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 240px;
  line-height: 250px;
  font-weight: bold;
  text-transform: uppercase;
  color: #820560;
}

/* line 81, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_structure.scss */
#newsletter_checkbox {
  display: none;
}

/* line 83, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_structure.scss */
.w-75 {
  width: 75%;
}

/* line 84, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_structure.scss */
.mb-0 {
  margin-bottom: 0 !important;
}

/* line 85, app/themes/goethe-institut/assets/stylesheets/goethe-institut/overwrites/_structure.scss */
.pb-0 {
  padding-bottom: 0 !important;
}
