@import url("https://fonts.googleapis.com/css?family=Arsenal|Lato");
#header {
  padding-top: 25px;
  padding-bottom: 25px; }
  #header #callus {
    text-align: right; }
  #header #alsterfilm-logo {
    background-image: url("../img/logo_text@2x.png");
    background-size: cover;
    height: 75px;
    width: 100%; }

#menu {
  background-color: #d9d9d9; }
  #menu ul {
    padding: 0;
    margin: 0; }
    #menu ul li:first-child {
      padding-left: 0 !important; }
      #menu ul li:first-child a {
        margin-left: -13px !important; }
    #menu ul li {
      padding: 10px; }
      #menu ul li a {
        font-family: 'Arsenal';
        color: black;
        padding: 13px !important; }
      #menu ul li a:hover {
        text-decoration: none;
        background-color: #f3f3f3; }

.covershot {
  padding-top: 55px;
  padding-bottom: 55px;
  color: white;
  background-image: url("../img/cam1b.jpg");
  background-size: cover;
  background-position: center center;
  font-family: Lato; }
  .covershot h1, .covershot h2, .covershot h3 {
    font-family: 'Arsenal';
    font-weight: 400; }
  .covershot a {
    color: #add8e6; }
  .covershot a:hover {
    color: #72bcd4; }

.centertext {
  color: #09224e; }
  .centertext .row {
    padding-top: 30px;
    padding-bottom: 30px; }
  .centertext .col {
    text-align: center; }

.studiospotlight {
  padding: 15px;
  background-color: #269;
  background: radial-gradient(black 15%, transparent 16%) 0 0, radial-gradient(black 15%, transparent 16%) 8px 8px, radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 20%) 0 1px, radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 20%) 8px 9px;
  background-color: #282828;
  background-size: 16px 16px; }
  .studiospotlight .imgrow .row {
    -webkit-box-shadow: 1px 1px 4px 0px rgba(50, 50, 50, 0.45);
    -moz-box-shadow: 1px 1px 4px 0px rgba(50, 50, 50, 0.45);
    box-shadow: 1px 1px 4px 0px rgba(50, 50, 50, 0.45); }
  .studiospotlight .text {
    font-family: Lato;
    text-align: center;
    padding: 15px;
    padding-top: 15px;
    width: 100%;
    background-color: white;
    overflow: hidden;
    height: 140px; }
    .studiospotlight .text h3 {
      font-family: Arsenal; }

.calendar .row {
  margin-bottom: 1em; }
.calendar .col-sm-2 {
  border-right: 1px dashed silver; }

.entry {
  margin-top: 25px; }
  .entry h1, .entry h2, .entry h3, .entry h4, .entry h5 {
    font-family: Arsenal; }
  .entry .col-sm-8 {
    text-align: justify; }

footer {
  margin: 25px 0; }
  footer div {
    font-size: 12px;
    padding: 0 15px; }
    footer div a {
      color: #1a1a1a; }
  footer div:nth-child(2) {
    text-align: right; }

@keyframes fluidboxLoading {
  0% {
    transform: translate(-50%, -50%) rotateX(0) rotateY(0); }
  50% {
    transform: translate(-50%, -50%) rotateX(-180deg) rotateY(0); }
  100% {
    transform: translate(-50%, -50%) rotateX(-180deg) rotateY(-180deg); } }
.fluidbox {
  outline: none; }

.fluidbox__overlay {
  background-color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  cursor: zoom-out;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: -100%;
  /* Negative top and bottom is to fix some Safari cases where image got blurry */
  left: 0;
  bottom: -100%;
  /* Negative top and bottom is to fix some Safari cases where image got blurry */
  right: 0;
  /* Transition time for overlay is halved to ensure that flickering doesn't happen */
  transition: all 0.5s ease-in-out; }
  .fluidbox--opened .fluidbox__overlay {
    pointer-events: auto; }

.fluidbox__wrap {
  background-position: center center;
  background-size: cover;
  margin: 0 auto;
  position: relative;
  transition: all 0.5s ease-in-out; }

.fluidbox__thumb {
  transition: opacity 0s ease-in-out 0s;
  /* To prevent flickering, we delay the showing of the image */ }
  .fluidbox--closed .fluidbox__thumb {
    transition: opacity 0s ease-in-out 0s; }

.fluidbox__ghost {
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  transition-duration: 0s, 0.5s;
  transition-delay: 0s;
  -webkit-transition-property: opacity, -webkit-transform;
  /* autoprefixer: off */
  transition-property: opacity, -webkit-transform;
  /* autoprefixer: off */
  transition-property: opacity, transform;
  /* autoprefixer: off */ }
  .fluidbox--opened .fluidbox__ghost {
    cursor: pointer;
    cursor: -webkit-zoom-out;
    cursor: -moz-zoom-out;
    cursor: zoom-out; }
  .fluidbox--closed .fluidbox__ghost {
    transition-delay: 0.5s, 0s; }

.fluidbox__loader {
  opacity: 0;
  perspective: 200px;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0; }
  .fluidbox__loader::before {
    /* You can replace this with any color you want, or even a loading gif if desired */
    background-color: rgba(255, 255, 255, 0.85);
    content: '';
    transform-style: preserve-3d;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20%;
    padding-bottom: 20%;
    transform: translate(-50%, -50%);
    transition-property: transform;
    transition-duration: 0.5s;
    transition-delay: 0s; }

.fluidbox--loading .fluidbox__loader {
  opacity: 1;
  transition: opacity 0.5s ease-in-out 0.5s; }
  .fluidbox--loading .fluidbox__loader::before {
    animation: fluidboxLoading 1s 0s infinite ease-in-out forwards; }

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