:root {
  --main-green: #014a3c;
  --main-text: #333333;
  --main-text-hover: #999;
  --color-green: #508687;
  --color-bg-green: #e5f1f1;
}

@font-face {
  font-family: "agenda";
  src: url("../fonts/agenda_light.woff2") format("woff2"), url("./fonts/agenda_light.woff") format("woff"), url("./fonts/agenda_light.ttf") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
}
@font-face {
  font-family: "agenda";
  src: url("../fonts/agenda.woff2") format("woff2"), url("./fonts/agenda.woff") format("woff"), url("./fonts/agenda.ttf") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
}
@font-face {
  font-family: "agenda";
  src: url("../fonts/agenda_bold.woff2") format("woff2"), url("../fonts/agenda_bold.woff") format("woff"), url("../fonts/agenda_bold.ttf") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
}
* {
  font-family: "agenda", sans-serif;
}

h1 {
  color: var(--main-green);
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

p {
  font-weight: 300;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--main-text);
}

a.button {
  border: 2px solid var(--main-green);
  border-radius: 20px;
  text-decoration: none;
  padding: 5px 20px;
  color: var(--main-text);
  cursor: pointer;
}
a.button:hover {
  background-color: var(--main-green);
  color: white;
}

.form-group + .form-group {
  margin-top: 1rem;
}

.row + p {
  margin-top: 2rem;
}

button[type=submit] {
  margin-top: 2rem;
  border-radius: 25px;
  background-color: var(--color-green);
  border: none;
  padding: 10px 25px;
}
button[type=submit]:hover {
  background-color: var(--main-green);
}

.hp {
  position: absolute;
  left: -5000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.errorInfo {
  border: 1px solid #b00;
  background-color: rgba(255, 0, 0, 0.1);
  color: #b00;
  padding-left: 10px;
  padding-top: 10px;
  margin-bottom: 1rem;
}

p.success {
  border: 1px solid var(--main-green);
  background-color: var(--color-bg-green);
  color: var(--main-green);
  padding: 10px;
}

#nav-icon {
  width: 60px;
  height: 45px;
  position: relative;
  left: 100%;
  transform: translateX(-60px);
  margin-top: 15px;
  margin-right: 15px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 2001;
}
#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 0;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
#nav-icon span:nth-child(1) {
  top: 0;
}
#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
  top: 18px;
}
#nav-icon span:nth-child(4) {
  top: 36px;
}
#nav-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#nav-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

header {
  height: 100vh;
  // width: 100vw;
  background-image: url(../img/header.jpg);
  background-size: cover;
}
header .txt {
  display: grid;
  place-items: center;
  height: 100vh;
}
header .txt h1 {
  font-size: clamp(1.5rem, 3vw, 3.3rem);
}
header.headerBooking {
  display: inline-block;
  background-image: none;
  max-height: 128px;
}
header.headerBooking .txt {
  display: none;
}

header.summer {
  background-image: url(../img/header.jpg);
  .txt h1 {
    color: white;
  }
}
header nav {
  z-index: 2002;
  width: 100vw;
  display: flex;
  flex: 1 1 0;
  justify-content: space-between;
  align-content: center;
  padding: 3.5em 5em;
  position: fixed;
  transition: all 0.5s ease-in-out;
}
header nav .show_small {
  display: none;
}
header nav .hidden_small {
  display: inline-block;
}
header nav div {
  flex-basis: 100%;
}
header nav .phone a {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  padding: 15px;
  display: inline-block;
  transition: all 0.35s ease-in-out;
}
header nav .phone a svg {
  height: 50px;
  fill: white;
}
header nav .phone a:hover {
  background-color: rgba(255, 255, 255, 0.5);
  filter: drop-shadow(0 0 1rem white);
}
header nav .phone a:hover svg {
  fill: var(--color-green);
}
header nav .phone a.btn {
  padding: 10px 25px;
  background-color: white;
  border-radius: 25px;
  height: 45px;
  margin-top: -5px;
  width: auto;
  font-size: 16px;
  text-transform: uppercase;
}
header nav .phone a.btn:hover {
  background-color: var(--color-green);
  color: white;
  filter: none;
}
header nav .phone a.btn.light {
  background-color: transparent;
  color: white;
}
header nav .phone a.btn.light:hover {
  background-color: var(--color-green);
  color: white;
  filter: none;
}
header nav .menu {
  text-align: right;
}
header nav .menu img {
  width: 50px;
}
header nav .logo {
  text-align: center;
}
header nav .logo img {
  height: 100px;
  width: auto;
}
header nav.small {
  background-color: white;
  padding: 1.5em 5em;
}
header nav.small .phone svg {
  fill: var(--color-green) !important;
}
header nav.small .phone svg:hover {
  fill: var(--main-green) !important;
}
header nav.small .phone a.btn {
  color: var(--color-green);
}
header nav.small .phone a.btn:hover {
  color: var(--main-green);
  background-color: transparent;
}
header nav.small .logo {
  text-align: center;
}
header nav.small .logo img {
  height: 60px;
  width: auto;
}
header nav.small .show_small {
  display: inline-block;
}
header nav.small .hidden_small {
  display: none;
}
header nav.small #nav-icon {
  width: 45px;
  height: 30px;
  margin-top: 6px;
  transform: translateX(-45px);
}
header nav.small #nav-icon span {
  background: var(--color-green);
}
header nav.small #nav-icon span:nth-child(2), header nav.small #nav-icon span:nth-child(3) {
  top: 14px;
}
header nav.small #nav-icon span:nth-child(4) {
  top: 28px;
}
header nav.small .menu img {
  width: 40px;
}
header .welle {
  position: absolute;
  bottom: 0;
  transform: translateY(60%);
}
header.xmas .phone a.btn.light {
  color: var(--main-green);
}
header.xmas .phone a svg {
  fill: var(--main-green);
}
header.xmas #nav-icon span {
  background: var(--main-green);
}

header.winter .txt h1 {
  background-color: #ffffffaa;
  border-radius: 50px;
  padding: 10px 25px;
}

.overlay {
  z-index: 2000;
  position: fixed;
  width: 100vw;
  height: 0;
  top: 0;
  left: 0;
  background-color: white;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}
.overlay .container {
  margin-top: 50vh;
  transform: translateY(-50%);
}
.overlay h2 {
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--main-green);
  margin-bottom: 20px;
}
.overlay a {
  text-decoration: none;
  color: var(--main-text);
}
.overlay a:hover {
  color: var(--main-text-hover);
}

body.headerSmall header {
  position: relative;
  height: 50vh;
}
body.headerSmall header .txt {
  display: none;
}

.logo-submenu {
  width: 60vw;
  padding-bottom: 40px;
  margin: 0 auto;
}

.intro {
  margin-bottom: 100px;
}
.intro .content {
  margin: 0 auto;
  width: min(90vw, 700px);
  text-align: center;
}
.intro .content h1 {
  margin-top: 100px;
  margin-bottom: 50px;
}

.instagram {
  border-radius: 50%;
  width: 250px;
  height: 250px;
  padding: 20px;
  background-color: var(--color-bg-green);
  transition: background-color 0.3s ease-in-out;
  display: inline-block;
}
.instagram svg {
  fill: var(--color-green);
  width: 170px;
  padding-top: 20px;
}
.instagram:hover {
  background-color: var(--main-green);
}
.instagram:hover svg {
  fill: white;
}

.appartments {
  background-color: var(--color-bg-green);
  background-image: url(../img/bg_welle.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 100px 0;
}
.appartments h1 {
  text-align: center;
  margin-bottom: 50px;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}
.appartments h2 {
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  color: var(--main-green);
}

.appartments h2.highlight {
  color: white;
  background-color: var(--color-green);
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 6rem;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.appartments a + h2 {
  margin-top: 50px;
}
.appartments .info {
  align-self: center;
  padding-right: 30px;
}

.appartment {
  margin-top: 5rem;
  margin-bottom: 1rem;
}
.appartment h2 {
  font-weight: 300;
  font-size: 2.3rem;
  color: var(--main-green);
  margin-bottom: 3rem;
}
.appartment b {
  font-weight: 600;
}
.appartment img {
  margin-bottom: 0.5rem;
}
.appartment ul {
  padding-left: 1rem;
}
.appartment ul li {
  font-size: 1.15rem;
  line-height: 1.6;
  font-weight: 300;
}
.appartment ul + h2 {
  margin-top: 4rem;
}
.appartment ul + p {
  margin-top: 2rem;
}
.appartment a {
  text-decoration: none;
  color: var(--main-text);
}
.appartment a:hover {
  color: var(--main-text-hover);
}

.legal {
  margin-top: 5rem;
  margin-bottom: 1rem;
}
.legal h1 {
  margin-bottom: 50px;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}
.legal h2 {
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  color: var(--main-green);
}
.legal a {
  text-decoration: none;
  color: var(--color-green);
}
.legal a:hover {
  color: var(--color-green-hover);
  text-decoration: underline;
}

footer {
  margin-top: 100px;
  margin-bottom: 50px;
}
footer h2 {
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--main-green);
  margin-bottom: 20px;
}
footer a {
  text-decoration: none;
  color: var(--main-text);
}
footer a:hover {
  color: var(--main-text-hover);
}
footer .links {
  margin-top: 20px;
  font-size: 1.15rem;
  font-weight: 300;
}
footer .icon {
  height: 35px;
}
footer span.news {
  display: block;
  color: var(--main-green);
  margin-top: 15px;
}

.anreise p + h3 {
  margin-top: 2rem;
}
.anreise a {
  text-decoration: underline;
}

.ausstattung {
  padding: 100px 0;
}
.ausstattung h1 {
  text-align: center;
  margin-bottom: 50px;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}
.ausstattung details summary {
  font-weight: 600;
  font-size: 1.15rem;
  padding-bottom: 10px;
  padding-left: 0;
  background-image: none;
  -webkit-appearance: none;
  list-style: none;
}
.ausstattung details summary:before {
  content: "+";
  padding-right: 10px;
}
.ausstattung details summary::-webkit-details-marker {
  display: none;
}
.ausstattung details summary::marker {
  display: none;
  content: "";
}
.ausstattung details ul.partners {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ausstattung details ul.partners a {
  text-decoration: none;
  color: var(--main-text);
  font-size: 1.15rem;
}
.ausstattung details ul.partners a:hover {
  color: var(--main-text-hover);
}
.ausstattung details[open] > summary:before {
  content: "-";
}

/* MailChimp Form Embed Code - Classic - 12/17/2015 v10.7 */
#mc_embed_signup form {
  display: block;
  position: relative;
  text-align: left;
  margin: 20px;
}

#mc_embed_signup h2 {
  font-weight: bold;
  padding: 0;
  margin: 15px 0;
  font-size: 1.4em;
}

#mc_embed_signup input {
  border: 1px solid #ABB0B2;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

#mc_embed_signup input[type=checkbox] {
  -webkit-appearance: checkbox;
}

#mc_embed_signup input[type=radio] {
  -webkit-appearance: radio;
}

#mc_embed_signup input:focus {
  border-color: #333;
}

#mc_embed_signup .button {
  clear: both;
  background-color: #111;
  border: 0 none;
  border-radius: 4px;
  transition: all 0.23s ease-in-out 0s;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: normal;
  height: 32px;
  line-height: 32px;
  margin: 0 5px 10px 0;
  padding: 0 22px;
  text-align: center;
  text-decoration: none;
  vertical-align: top;
  white-space: nowrap;
  width: fit-content;
  width: -moz-fit-content;
}

#mc_embed_signup .button:hover {
  background-color: #222;
}

#mc_embed_signup .small-meta {
  font-size: 11px;
}

#mc_embed_signup .nowrap {
  white-space: nowrap;
}

#mc_embed_signup .mc-field-group {
  clear: left;
  position: relative;
  width: 96%;
  padding-bottom: 3%;
  min-height: 50px;
  display: grid;
}

#mc_embed_signup .size1of2 {
  clear: none;
  float: left;
  display: inline-block;
  width: 46%;
  margin-right: 4%;
}

* html #mc_embed_signup .size1of2 {
  margin-right: 2%; /* Fix for IE6 double margins. */
}

#mc_embed_signup .mc-field-group label {
  display: block;
  margin-bottom: 3px;
}

#mc_embed_signup .mc-field-group input {
  display: block;
  width: 100%;
  padding: 8px 0;
  text-indent: 2%;
}

#mc_embed_signup .mc-field-group select {
  display: inline-block;
  width: 99%;
  padding: 5px 0;
  margin-bottom: 2px;
}

#mc_embed_signup .mc-address-fields-group {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 96%;
  gap: 15px;
}

#mc_embed_signup .mc-sms-phone-group {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 96%;
  gap: 15px;
  padding-top: 5px;
}

#mc_embed_signup .datefield, #mc_embed_signup .phonefield-us {
  padding: 5px 0;
}

#mc_embed_signup .datefield input, #mc_embed_signup .phonefield-us input {
  display: inline;
  width: 60px;
  margin: 0 2px;
  letter-spacing: 1px;
  text-align: center;
  padding: 5px 0 2px 0;
}

#mc_embed_signup .phonefield-us .phonearea input, #mc_embed_signup .phonefield-us .phonedetail1 input {
  width: 40px;
}

#mc_embed_signup .datefield .monthfield input, #mc_embed_signup .datefield .dayfield input {
  width: 30px;
}

#mc_embed_signup .datefield label, #mc_embed_signup .phonefield-us label {
  display: none;
}

#mc_embed_signup .indicates-required {
  text-align: right;
  font-size: 11px;
  margin-right: 4%;
}

#mc_embed_signup .asterisk {
  color: #e85c41;
  font-size: 150%;
  font-weight: normal;
  position: relative;
  top: 5px;
}

#mc_embed_signup .clear {
  clear: both;
}

#mc_embed_signup .foot {
  display: grid;
  grid-template-columns: 3fr 1fr;
  width: 96%;
  align-items: center;
}

@media screen and (max-width: 400px) {
  #mc_embed_signup .foot {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    align-items: center;
  }
}
@media screen and (max-width: 400px) {
  #mc_embed_signup .referralBadge {
    width: 50%;
  }
}
#mc_embed_signup .brandingLogo {
  justify-self: right;
}

@media screen and (max-width: 400px) {
  #mc_embed_signup .brandingLogo {
    justify-self: left;
  }
}
#mc_embed_signup .mc-field-group.input-group ul {
  margin: 0;
  padding: 5px 0;
  list-style: none;
}

#mc_embed_signup .mc-field-group.input-group ul li {
  display: block;
  padding: 3px 0;
  margin: 0;
}

#mc_embed_signup .mc-field-group.input-group label {
  display: inline;
}

#mc_embed_signup .mc-field-group.input-group input {
  display: inline;
  width: auto;
  border: none;
}

#mc_embed_signup div#mce-responses {
  float: left;
  top: -1.4em;
  padding: 0;
  overflow: hidden;
  width: 100%;
  margin: 0;
  clear: both;
}

#mc_embed_signup div.response {
  margin: 1em 0;
  padding: 1em 0.5em 0.5em 0;
  font-weight: bold;
  float: left;
  top: -1.5em;
  z-index: 1;
  width: 80%;
}

#mc_embed_signup #mce-error-response {
  display: none;
}

#mc_embed_signup #mce-success-response {
  color: var(--color-green);
  display: none;
}

#mc_embed_signup label.error {
  display: block;
  float: none;
  width: auto;
  margin-left: 1.05em;
  text-align: left;
  padding: 0.5em 0;
}

#mc_embed_signup .helper_text {
  color: #8d8985;
  margin-top: 2px;
  display: inline-block;
  padding: 3px;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: normal;
  z-index: 1;
}

#mc-embedded-subscribe {
  clear: both;
  width: auto;
  display: block;
  margin: 1em 0 1em 5%;
}

#mc_embed_signup #num-subscribers {
  font-size: 1.1em;
}

#mc_embed_signup #num-subscribers span {
  padding: 0.5em;
  border: 1px solid #ccc;
  margin-right: 0.5em;
  font-weight: bold;
}

#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
  display: inline-block;
  margin: 2px 0 1em 0;
  padding: 3px;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: normal;
  z-index: 1;
  color: #e85c41;
}

#mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error {
  border: 2px solid #e85c41;
}

@media (max-width: 1200px) {
  .hideBtn {
    display: none !important;
  }
}
@media (max-width: 768px) {
  a.button {
    padding: 5px 12px;
  }
  header {
    background-position: center;
  }
  header nav {
    padding: 1rem 1rem;
  }
  header nav .logo {
    margin-top: -25px;
  }
  header nav .phone {
    margin-top: -5px;
  }
  header nav .phone svg {
    height: 30px !important;
  }
  header nav #nav-icon {
    width: 45px;
    height: 30px;
    margin-top: 6px;
    transform: translateX(-45px);
  }
  header nav #nav-icon span:nth-child(2), header nav #nav-icon span:nth-child(3) {
    top: 14px;
  }
  header nav #nav-icon span:nth-child(4) {
    top: 28px;
  }
  header nav.small {
    padding: 1rem 1rem;
  }
  header nav.small .logo {
    margin-top: -10px;
  }
  header .overlay {
    text-align: center;
  }
  .welle {
    display: none;
  }
  .m-top-5 {
    margin-top: 2rem;
  }
  .m-top-10 {
    margin-top: 4rem;
  }
}
@media (min-width: 1200px) {
  .btnSubMenu {
    display: none !important;
  }
}
img {
  max-width: 100%;
}

#topheader {
  height: auto !important;
  margin-top: -5px;
}

#footer {
  display: none;
}

body.noribbon #topheader {
  margin-top: 0;
}

section.gallery {
  .col {
    background-size: cover;
    background-position: center;
    border: 2px solid #fff;
    box-sizing: border-box;
    transition: all 0.5s ease;
    overflow: hidden;
    position: relative;

    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: inherit;
      background-position: center;
      transition: transform 0.5s ease;
    }

    &:hover::before {
      transform: scale(1.1);
    }

    a {
      display: block;
      position: relative;
    }
  }
}

/*!
 * baguetteBox.js
 * @author  feimosi
 * @version 1.13.0
 * @url https://github.com/feimosi/baguetteBox.js
 */
#baguetteBox-overlay {
  display: none;
  opacity: 0;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  background-color: #222;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
#baguetteBox-overlay.visible {
  opacity: 1;
}
#baguetteBox-overlay .full-image {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}
#baguetteBox-overlay .full-image figure {
  display: inline;
  margin: 0;
  height: 100%;
}
#baguetteBox-overlay .full-image img {
  display: inline-block;
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}
#baguetteBox-overlay .full-image figcaption {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  line-height: 1.8;
  white-space: normal;
  color: #ccc;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
  font-family: sans-serif;
}
#baguetteBox-overlay .full-image:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}

#baguetteBox-slider {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  -webkit-transition: left 0.4s ease, -webkit-transform 0.4s ease;
  transition: left 0.4s ease, -webkit-transform 0.4s ease;
  transition: left 0.4s ease, transform 0.4s ease;
  transition: left 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease, -moz-transform 0.4s ease;
}
#baguetteBox-slider.bounce-from-right {
  -webkit-animation: bounceFromRight 0.4s ease-out;
  animation: bounceFromRight 0.4s ease-out;
}
#baguetteBox-slider.bounce-from-left {
  -webkit-animation: bounceFromLeft 0.4s ease-out;
  animation: bounceFromLeft 0.4s ease-out;
}

@-webkit-keyframes bounceFromRight {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -30px;
  }
  100% {
    margin-left: 0;
  }
}

@keyframes bounceFromRight {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -30px;
  }
  100% {
    margin-left: 0;
  }
}
@-webkit-keyframes bounceFromLeft {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 30px;
  }
  100% {
    margin-left: 0;
  }
}
@keyframes bounceFromLeft {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 30px;
  }
  100% {
    margin-left: 0;
  }
}
.baguetteBox-button#previous-button, .baguetteBox-button#next-button {
  top: 50%;
  top: calc(50% - 30px);
  width: 44px;
  height: 60px;
}

.baguetteBox-button {
  position: absolute;
  cursor: pointer;
  outline: none;
  padding: 0;
  margin: 0;
  border: 0;
  -moz-border-radius: 15%;
  border-radius: 15%;
  background-color: #323232;
  background-color: rgba(50, 50, 50, 0.5);
  color: #ddd;
  font: 1.6em sans-serif;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
.baguetteBox-button:focus, .baguetteBox-button:hover {
  background-color: rgba(50, 50, 50, 0.9);
}
.baguetteBox-button#next-button {
  right: 2%;
}
.baguetteBox-button#previous-button {
  left: 2%;
}
.baguetteBox-button#close-button {
  top: 20px;
  right: 2%;
  right: calc(2% + 6px);
  width: 30px;
  height: 30px;
}
.baguetteBox-button svg {
  position: absolute;
  left: 0;
  top: 0;
}

/*
    Preloader
    Borrowed from http://tobiasahlin.com/spinkit/
*/
.baguetteBox-spinner {
  width: 40px;
  height: 40px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
}

.baguetteBox-double-bounce1,
.baguetteBox-double-bounce2 {
  width: 100%;
  height: 100%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: bounce 2s infinite ease-in-out;
  animation: bounce 2s infinite ease-in-out;
}

.baguetteBox-double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

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