@-webkit-keyframes gradient_animation_basic {
  0% {
    background-position: 93% 0%;
  }
  50% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 93% 0%;
  }
}
@-moz-keyframes gradient_animation_basic {
  0% {
    background-position: 93% 0%;
  }
  50% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 93% 0%;
  }
}
@keyframes gradient_animation_basic {
  0% {
    background-position: 93% 0%;
  }
  50% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 93% 0%;
  }
}
@keyframes animate_hovering_soft {
  0% {
    transform: translateY(0) rotate3d(0, 0, 0, 5deg);
  }
  32% {
    transform: translateY(-5%) rotate3d(0, 0, 0, 5deg);
  }
  62% {
    transform: translateY(4%) rotate3d(0, 0, 0, 5deg);
  }
  100% {
    transform: translateY(0) rotate3d(0, 0, 0, 5deg);
  }
}
@keyframes animate_hovering {
  0% {
    transform: translateY(0) rotate3d(0, 0, 0, 5deg);
  }
  15% {
    transform: translateY(2%) rotate3d(0, 0.01, 0.002, 5deg);
  }
  32% {
    transform: translateY(-1%) rotate3d(0.01, -0.0012, 0, 5deg);
  }
  48% {
    transform: translateY(2%) rotate3d(0, 0, -0.0017, 5deg);
  }
  70% {
    transform: translateY(-3%) rotate3d(-0.01, 0, 0, 5deg);
  }
  87% {
    transform: translateY(3%) rotate3d(0, -0.01, 0.0016, 5deg);
  }
  100% {
    transform: translateY(0) rotate3d(0, 0, 0, 5deg);
  }
}
@keyframes animate_rotate {
  0% {
    transform: translateY(0) rotate3d(0, 0, 0, 0deg);
  }
  100% {
    transform: translateY(0) rotate3d(1, 1, 1, 358deg);
  }
}
@keyframes animate_rotate_inverted {
  0% {
    transform: translateY(0) rotate3d(0, 0, 0, 0deg);
  }
  100% {
    transform: translateY(0) rotate3d(1, 1, 1, -358deg);
  }
}
@keyframes animate_rotate_flat {
  0% {
    transform: translateY(0) rotate3d(0, 0, 0, 0deg);
  }
  100% {
    transform: translateY(0) rotate3d(0, 0, 1, 358deg);
  }
}
@keyframes animate_rotate_flat_inverted {
  0% {
    transform: translateY(0) rotate3d(0, 0, 0, 0deg);
  }
  100% {
    transform: translateY(0) rotate3d(0, 0, 1, -358deg);
  }
}
@keyframes animatedBackground {
  from {
    background-position: 0 0;
  }
  /*use negative width if you want it to flow right to left else and positive for left to right*/
  to {
    background-position: 0 -10000px;
  }
}
.bubble {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  width: 50%;
  background-color: #fafdfe;
  border: 0 solid #2f3f46;
  border-radius: 2rem;
  font-size: 14px;
  padding: 1rem 0.5rem;
  z-index: 6;
  transform: translateX(-50%);
  text-align: center;
  box-shadow: 2px 2px 10px rgba(47, 63, 70, 0.5);
}
.bubble a, .bubble a:link, .bubble a:visited {
  color: #d5512a;
}
.bubble:after, .bubble:before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.bubble:after {
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #fafdfe;
  border-width: 16px;
  margin-left: -16px;
}
.bubble:before {
  border-color: rgba(194, 225, 245, 0);
  border-bottom-color: #2f3f46;
  border-width: 16px;
  margin-left: -16px;
}

body.login {
  color: #fafdfe;
  display: flex;
  align-items: center;
  /* Old browsers */
  background: #00a2a5; /* Old browsers */
  /* FF3.6-15 */
  background: -moz-linear-gradient(90deg, #00a2a5 0%, #002526 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-linear-gradient(90deg, #00a2a5 0%, #002526 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  background: linear-gradient(90deg, #00a2a5 0%, #002526 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$color_01", endColorstr="$color_02",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  background-size: 400% 400%;
  -webkit-animation: "gradient_animation_basic" 20s ease infinite;
  -moz-animation: "gradient_animation_basic" 20s ease infinite;
  animation: "gradient_animation_basic" 20s ease infinite;
}
body.login p a, body.login p a:visited, body.login p a:link,
body.login a, body.login a:link, body.login a:visited {
  color: #fafdfe !important;
}
body.login p a:hover, body.login p a:visited:hover, body.login p a:link:hover,
body.login a:hover, body.login a:link:hover, body.login a:visited:hover {
  color: #edef2e !important;
}
body.login .language-switcher {
  display: none;
  visibility: hidden;
}

#login h1 a {
  background-image: url("../images/logo/fichtelgard-photography-logo-white.svg");
  display: block;
  width: 220px;
  background-size: contain;
  margin-bottom: 0;
}
#login form {
  border-radius: 1rem;
  background-color: #fafdfe;
}

body.login #loginform, body.login p#nav, body.login p#backtoblog {
  opacity: 0;
  max-height: 0;
  pointer-events: none;
  -webkit-transition: all 0.42s ease-out 0s;
  -moz-transition: all 0.42s ease-out 0s;
  -o-transition: all 0.42s ease-out 0s;
  transition: all 0.42s ease-out 0s;
}
body.login #loginform {
  border-radius: 0;
  background-color: transparent;
  border: none;
  margin: 0;
  box-shadow: none;
}
body.login.start-login #loginform, body.login.start-login p#nav, body.login.start-login p#backtoblog {
  opacity: 1;
  max-height: 1000px;
  pointer-events: auto;
}

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