@charset "UTF-8";
/*
	Title:		Main project scss/css file
	Author:		Christoph Schüßler @ SCHÜßLERdesign
	Version:	1.0.0
	Notice:		Only comments and final css will be shown in "main.css"

	IMPORTANT:	Do not edit this css file, it will be overwritten next time 
				the sass files will be compiled.
				EXCLUSIVELY EDIT THE SASS FILES FOUND IN "STYLE/SCSS"!!!
*/
.text-left-not-xs, .text-left-not-sm, .text-left-not-md, .text-left-not-lg {
  text-align: left;
}

.text-center-not-xs, .text-center-not-sm, .text-center-not-md, .text-center-not-lg {
  text-align: center;
}

.text-right-not-xs, .text-right-not-sm, .text-right-not-md, .text-right-not-lg {
  text-align: right;
}

.text-justify-not-xs, .text-justify-not-sm, .text-justify-not-md, .text-justify-not-lg {
  text-align: justify;
}

@media (max-width: 767px) {
  .text-left-not-xs, .text-center-not-xs, .text-right-not-xs, .text-justify-not-xs {
    text-align: inherit;
  }
  .text-left-xs {
    text-align: left;
  }
  .text-center-xs {
    text-align: center;
  }
  .text-right-xs {
    text-align: right;
  }
  .text-justify-xs {
    text-align: justify;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .text-left-not-sm, .text-center-not-sm, .text-right-not-sm, .text-justify-not-sm {
    text-align: inherit;
  }
  .text-left-sm {
    text-align: left;
  }
  .text-center-sm {
    text-align: center;
  }
  .text-right-sm {
    text-align: right;
  }
  .text-justify-sm {
    text-align: justify;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .text-left-not-md, .text-center-not-md, .text-right-not-md, .text-justify-not-md {
    text-align: inherit;
  }
  .text-left-md {
    text-align: left;
  }
  .text-center-md {
    text-align: center;
  }
  .text-right-md {
    text-align: right;
  }
  .text-justify-md {
    text-align: justify;
  }
}
@media (min-width: 1200px) {
  .text-left-not-lg, .text-center-not-lg, .text-right-not-lg, .text-justify-not-lg {
    text-align: inherit;
  }
  .text-left-lg {
    text-align: left;
  }
  .text-center-lg {
    text-align: center;
  }
  .text-right-lg {
    text-align: right;
  }
  .text-justify-lg {
    text-align: justify;
  }
}
.cookie-box {
  background-color: #616161;
}

.cookie-box > p:nth-child(4) > a:nth-child(1) {
  color: #FF9900;
}

.cc-cookies {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  padding: 0.5em 5%;
  background: #7FCCF8;
  background: rgba(80, 80, 80, 0.9) !important;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.55);
  text-align: center;
  z-index: 99999999;
}
.cc-cookies h1 {
  color: #ffffff;
}

.cc-cookies a,
.cc-cookies a:hover {
  color: #fff;
  text-decoration: underline;
}

.cc-cookies a:hover {
  text-decoration: none;
}

.cc-overlay {
  height: 100%;
  padding-top: 10%;
}

.cc-cookies-error {
  float: left;
  width: 90%;
  text-align: center;
  margin: 1em 0 2em 0;
  background: #fff;
  padding: 2em 5%;
  border: 1px solid #ccc;
  font-size: 18px;
  color: #333;
}

.cc-cookies a.cc-cookie-accept,
.cc-cookies-error a.cc-cookie-accept,
.cc-cookies a.cc-cookie-decline,
.cc-cookies-error a.cc-cookie-decline,
.cc-cookies a.cc-cookie-reset {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  background: #7DAF3B;
  padding: 0.1em 0.75em;
  border-radius: 3px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
  -o-transition: background 0.5s ease-in;
  -webkit-transition: background 0.25s ease-in;
  -moz-transition: background 0.25s ease-in;
}

.cc-cookies a.cc-cookie-decline,
.cc-cookies-error a.cc-cookie-decline {
  background: #af3b3b;
  margin-left: 0.5em;
}

.cc-cookies a.cc-cookie-reset {
  background: #f15b00;
}

.cc-cookies a:hover.cc-cookie-accept,
.cc-cookies-error a:hover.cc-cookie-accept,
.cc-cookies a:hover.cc-cookie-decline,
.cc-cookies-error a:hover.cc-cookie-decline,
.cc-cookies a:hover.cc-cookie-reset {
  background: #000;
  -o-transition: background 0.5s ease-in;
  -webkit-transition: background 0.25s ease-in;
  -moz-transition: background 0.25s ease-in;
}

.cc-cookies-error a.cc-cookie-accept,
.cc-cookies-error a.cc-cookie-decline {
  display: block;
  margin-top: 1em;
}

.cc-cookies.cc-discreet {
  width: auto;
  padding: 0 0.1em;
  left: 0;
  top: 0;
}

.cc-cookies.cc-discreet a.cc-cookie-reset {
  background: none;
  text-shadow: none;
  padding: 0;
  text-decoration: underline;
}

.cc-cookies.cc-discreet a:hover.cc-cookie-reset {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .cc-cookies a.cc-cookie-accept,
  .cc-cookies a.cc-cookie-decline,
  .cc-cookies a.cc-cookie-reset {
    display: block;
    margin: 1em 0;
  }
  .cookie-box {
    width: 100%;
  }
}
#con-index-content {
  margin-bottom: 1em;
  margin-top: 2em;
}

#con-intro {
  font-family: "Rajdhani", sans-serif;
}
#con-intro h1 {
  font-size: 160%;
  font-weight: 500;
}
#con-intro .lead {
  font-size: 140%;
}
#con-intro p {
  font-size: 110%;
  font-weight: 400;
}
#con-intro .row {
  background-color: #4DC8F0;
}

.con-index-decoimage {
  background-image: url("../../style/images/decoimg-index.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0;
}

.con-welcome {
  color: #FFFFFF;
}
.con-welcome h1 {
  color: #FFFFFF;
  margin-top: 1em;
}

.con-mmueller img {
  margin: 0 auto;
}

.index-news {
  margin-bottom: 2em;
}

.contentNews > div:nth-child(1) > h1:nth-child(1) {
  background-image: url("../../style/images/icon-news.png");
  background-repeat: no-repeat;
  background-position: left top;
  line-height: 35px;
  padding-left: 45px;
}

.index-dates > div:nth-child(1) > div:nth-child(1) > h1:nth-child(1) {
  background-image: url("../../style/images/icon-dates.png");
  background-repeat: no-repeat;
  background-position: left top;
  line-height: 35px;
  padding-left: 45px;
}

.index-fb > div:nth-child(1) > div:nth-child(1) > h1:nth-child(1) {
  background-image: url("../../style/images/icon-fb.png");
  background-repeat: no-repeat;
  background-position: left top;
  line-height: 35px;
  padding-left: 45px;
}

.well-news {
  min-height: 210px;
  height: auto;
  padding-bottom: 4em;
}
.well-news img {
  margin: 5px;
}
.well-news .newsDate {
  color: #3b4444;
  font-size: 80%;
  margin-bottom: 0;
}
.well-news .lead {
  color: #81ACCF;
  font-size: 120%;
  font-weight: 500;
  margin-bottom: 0em;
}
.well-news .sdeWrapper h1 {
  font-size: 120%;
}
.well-news .sdeWrapper h2 {
  font-size: 110%;
}
.well-news .sdeWrapper p, .well-news .sdeWrapper td {
  color: #737373;
  font-size: 90%;
}

.well-index-dates {
  padding-bottom: 0.5em;
}
.well-index-dates h2 {
  color: #3b4444;
  font-size: 100%;
  margin-top: 0;
  margin-bottom: 0.5em;
}
.well-index-dates .dateStart {
  color: #01B0E9;
  font-size: 100%;
}
.well-index-dates hr {
  border-top: 1px solid #B4B4B4;
  border-bottom: 1px solid #FFFFFF;
  margin: 0.3em 0 1em 0;
}

/* Start media queries */
@media (max-width: 768px) {
  #con-intro h1 {
    font-size: 180%;
  }
  #con-intro .lead {
    font-size: 160%;
  }
  #con-intro p {
    font-size: 140%;
  }
  .con-index-decoimage {
    height: 250px;
  }
}
@media (min-width: 768px) {
  .con-logo img {
    margin: inherit;
    max-height: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .con-index-decoimage {
    height: 300px;
  }
}
@media (min-width: 992px) {
  .con-index-decoimage {
    height: 460px;
  }
}
@media (min-width: 1200px) {
  .con-index-decoimage {
    height: 430px;
  }
}
/* End media queries */
.navbar {
  background-color: #F0F0F0;
  border-color: #E6E6E6;
  background-image: none;
  border-width: 4px;
  border-radius: 0;
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  font-size: 130%;
}

.navbar .navbar-brand {
  color: #01B0E9;
  font-family: "Homemade Apple", cursive;
  text-shadow: none;
  font-size: 80%;
}

.navbar .navbar-brand:hover,
.navbar .navbar-brand:focus {
  background-color: transparent;
  color: #01B0E9;
}

.navbar-default .navbar-nav > li > a {
  padding-left: 22px;
  text-transform: uppercase;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  background-color: transparent;
  background-image: url("../../style/images/taucher-hover.png");
  background-position: 1% 50%;
  background-repeat: no-repeat;
  color: #3b4444;
}

.navbar-nav .open .dropdown-menu {
  background-color: #FFFFFF;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:focus {
  background-color: transparent;
  box-shadow: none;
  color: #3b4444;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  background-color: transparent;
  background-image: url("../../style/images/taucher.png");
  background-position: 1% 50%;
  background-repeat: no-repeat;
  box-shadow: none;
  color: #01B0E9;
}

.navbar-default .navbar-nav > li > a {
  color: #7b7b7b;
}

.yamm .dropdown.yamm-fw .dropdown-menu a {
  color: #FF9900;
  font-size: 130%;
}

.itemDescription a,
.itemDescription a:hover,
.itemDescription a:focus {
  color: #3b4444 !important;
  text-decoration: none !important;
  font-size: 100% !important;
}

/* Radjhani: normal, medium, semi-bold */
/* font-family: 'Rajdhani', sans-serif; */
/* rajdhani-regular - latin */
@font-face {
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/rajdhani-v10-latin-regular.eot"); /* IE9 Compat Modes */
  src: local(""), url("../fonts/rajdhani-v10-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/rajdhani-v10-latin-regular.woff2") format("woff2"), url("../fonts/rajdhani-v10-latin-regular.woff") format("woff"), url("../fonts/rajdhani-v10-latin-regular.ttf") format("truetype"), url("../fonts/rajdhani-v10-latin-regular.svg#Rajdhani") format("svg"); /* Legacy iOS */
}
/* rajdhani-500 - latin */
@font-face {
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/rajdhani-v10-latin-500.eot"); /* IE9 Compat Modes */
  src: local(""), url("../fonts/rajdhani-v10-latin-500.eot?#iefix") format("embedded-opentype"), url("../fonts/rajdhani-v10-latin-500.woff2") format("woff2"), url("../fonts/rajdhani-v10-latin-500.woff") format("woff"), url("../fonts/rajdhani-v10-latin-500.ttf") format("truetype"), url("../fonts/rajdhani-v10-latin-500.svg#Rajdhani") format("svg"); /* Legacy iOS */
}
/* rajdhani-600 - latin */
@font-face {
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/rajdhani-v10-latin-600.eot"); /* IE9 Compat Modes */
  src: local(""), url("../fonts/rajdhani-v10-latin-600.eot?#iefix") format("embedded-opentype"), url("../fonts/rajdhani-v10-latin-600.woff2") format("woff2"), url("../fonts/rajdhani-v10-latin-600.woff") format("woff"), url("../fonts/rajdhani-v10-latin-600.ttf") format("truetype"), url("../fonts/rajdhani-v10-latin-600.svg#Rajdhani") format("svg"); /* Legacy iOS */
}
/* Homemade Apple: normal */
/* font-family: 'Homemade Apple', cursive; */
/* homemade-apple-regular - latin */
@font-face {
  font-family: "Homemade Apple";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/homemade-apple-v11-latin-regular.eot"); /* IE9 Compat Modes */
  src: local(""), url("../fonts/homemade-apple-v11-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/homemade-apple-v11-latin-regular.woff2") format("woff2"), url("../fonts/homemade-apple-v11-latin-regular.woff") format("woff"), url("../fonts/homemade-apple-v11-latin-regular.ttf") format("truetype"), url("../fonts/homemade-apple-v11-latin-regular.svg#HomemadeApple") format("svg"); /* Legacy iOS */
}
/* Roboto: normal, medium, bold */
/* font-family: 'Roboto', sans-serif; */
/* roboto-regular - latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v20-latin-regular.eot"); /* IE9 Compat Modes */
  src: local(""), url("../fonts/roboto-v20-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-v20-latin-regular.woff2") format("woff2"), url("../fonts/roboto-v20-latin-regular.woff") format("woff"), url("../fonts/roboto-v20-latin-regular.ttf") format("truetype"), url("../fonts/roboto-v20-latin-regular.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* roboto-500 - latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/roboto-v20-latin-500.eot"); /* IE9 Compat Modes */
  src: local(""), url("../fonts/roboto-v20-latin-500.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-v20-latin-500.woff2") format("woff2"), url("../fonts/roboto-v20-latin-500.woff") format("woff"), url("../fonts/roboto-v20-latin-500.ttf") format("truetype"), url("../fonts/roboto-v20-latin-500.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* roboto-700 - latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-v20-latin-700.eot"); /* IE9 Compat Modes */
  src: local(""), url("../fonts/roboto-v20-latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-v20-latin-700.woff2") format("woff2"), url("../fonts/roboto-v20-latin-700.woff") format("woff"), url("../fonts/roboto-v20-latin-700.ttf") format("truetype"), url("../fonts/roboto-v20-latin-700.svg#Roboto") format("svg"); /* Legacy iOS */
}
body {
  background-color: #FFFFFF;
  background-image: url("../../style/images/bg_1x1700pixel.jpg");
  background-repeat: repeat;
  font-family: "Roboto", sans-serif;
}

h1 {
  color: #4DC8F0;
  font-family: "Rajdhani", sans-serif;
  font-size: 200%;
  font-weight: 600;
  margin-bottom: 0.5em;
  margin-top: 0;
}

h2 {
  color: #3b4444;
  font-family: "Rajdhani", sans-serif;
  font-size: 120%;
  font-weight: 600;
  margin-bottom: 0.5em;
}

h3 {
  color: #4DC8F0;
  font-family: "Rajdhani", sans-serif;
  font-size: 120%;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0;
}

p {
  margin-bottom: 1em;
}

ul {
  list-style-type: square;
  margin-bottom: 1em;
  margin-left: -26px;
}

li {
  font-size: 100%;
}

a {
  color: #FF9900;
}

.commercial-link {
  font-size: 80%;
}

a:active,
a:focus,
a:hover,
a:visited {
  outline: none;
}

a:hover {
  color: #FF9900;
}

.required {
  color: #A94442;
}

.btn-tit {
  background-color: #4DC8F0;
  border: none;
  color: #FFFFFF;
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-topleft: 0;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-tit:hover {
  background-color: #4DC8F0;
  color: #FFFFFF;
  font-weight: 500;
}

.btn-tit-small {
  height: 26px;
  padding: 0 0.5em;
  margin-top: -2px;
}

.alb-id,
.alb-autor,
.alb-fotograf {
  color: #4DC8F0;
  font-family: "Rajdhani", sans-serif;
  font-size: 120%;
  font-weight: 600;
  margin-bottom: 0;
}

.openPs {
  background-color: #4DC8F0;
  -webkit-box-shadow: 5px 5px 5px 0px rgba(153, 153, 153, 0.75);
  -moz-box-shadow: 5px 5px 5px 0px rgba(153, 153, 153, 0.75);
  box-shadow: 5px 5px 5px 0px rgba(153, 153, 153, 0.75);
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  cursor: pointer;
  max-width: 130px;
  padding: 5px;
}

#con-content .row {
  margin-bottom: 1em;
}

.lead {
  font-weight: 500;
  font-size: 110%;
}

.panel-group .panel,
.panel {
  border: 4px solid transparent;
  border-radius: 0;
  box-shadow: none;
}

.panel-group .panel-default,
.panel-default {
  border-color: #E6E6E6;
}

.panel-default > .panel-heading {
  background: none;
  background-color: #F0F0F0;
  border: none;
}

.well {
  background-color: #F0F0F0;
  background-image: none;
  border: none;
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-topleft: 0;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.well-dates {
  border: 2px solid #B4B4B4;
  background-color: #FFFFFF;
}
.well-dates hr {
  border: none;
  border-top: 1px solid #B4B4B4;
}
.well-dates img {
  vertical-align: -90%;
}

.form-control,
.input-group-addon {
  border-radius: 0;
}

.has-error .checkbox,
.has-error .checkbox-inline,
.has-error.checkbox label,
.has-error.checkbox-inline label {
  font-weight: 500;
}

.btn-group .btn {
  border: 1px solid #FFFFFF;
  background-color: #4DC8F0;
  background-image: none !important;
  border-radius: 0 !important;
  color: #FFFFFF;
  text-shadow: none;
  cursor: pointer !important;
}
.btn-group .btn-default.active.focus,
.btn-group .btn-default.active:focus,
.btn-group .btn-default.active:hover,
.btn-group .btn-default.focus:active,
.btn-group .btn-default:active:focus,
.btn-group .btn-default:active:hover,
.btn-group .open > .dropdown-toggle.btn-default.focus,
.btn-group .open > .dropdown-toggle.btn-default:focus,
.btn-group .open > .dropdown-toggle.btn-default:hover {
  background-color: #01B0E9;
  color: #FFFFFF;
}
.btn-group .btn.disabled:active,
.btn-group .btn[disabled]:active,
.btn-group .btn.disabled.active,
.btn-group .btn.disabled.active:focus,
.btn-group .btn.disabled.active:hover,
.btn-group .btn[disabled].active,
.btn-group .btn[disabled].active:focus,
.btn-group .btn[disabled].active:hover,
.btn-group .btn.disabled:focus,
.btn-group .btn[disabled]:focus,
.btn-group .btn.disabled.focus,
.btn-group .btn[disabled].focus,
.btn-group .btn.disabled:hover,
.btn-group .btn[disabled]:hover,
.btn-group .btn.disabled.hover,
.btn-group .btn[disabled].hover {
  background-color: rgba(77, 200, 240, 0.7);
  cursor: default !important;
}

.con-main {
  background-color: #FFFFFF;
  padding: 0;
  padding-top: 16px;
}

#con-top {
  margin-bottom: 1em;
}
#con-top .con-logo img {
  max-height: 60px;
}
#con-top .claim {
  font-family: "Homemade Apple", cursive;
  font-size: 140%;
}

#con-image-box {
  background-color: #4DC8F0;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
}

#con-content {
  margin-bottom: 1em;
  margin-top: 2em;
}
#con-content .error404 {
  margin-bottom: 5em;
  margin-top: 5em;
}
#con-content .error404 i {
  color: #FF9900;
}
#con-content img {
  margin-bottom: 1em;
}

#con-advertising {
  background-color: #3b4444;
  color: #B4B4B4;
  padding-top: 1em;
}
#con-advertising a,
#con-advertising a:hover {
  text-decoration: none;
}
#con-advertising .ad-image {
  margin: 2em auto;
}

#con-footer {
  background-color: #3b4444;
  color: #B4B4B4;
  padding-bottom: 1em;
}
#con-footer hr {
  border-top: 2px groove #000000;
  margin: 0;
}
#con-footer h2 {
  color: #B4B4B4;
  font-size: 140%;
  font-weight: 700;
}
#con-footer p {
  font-size: 110%;
}
#con-footer .facebook-button {
  background-image: url("../../style/images/facebook-button.jpg");
  background-position: left;
  background-repeat: no-repeat;
  display: block;
  float: left;
  height: 40px;
  width: 40px;
  margin-right: 10px;
}
#con-footer .facebook-button:hover {
  background-image: url("../../style/images/facebook-button-hover.jpg");
}
#con-footer .google-button {
  background-image: url("../../style/images/google-button.jpg");
  background-position: left;
  background-repeat: no-repeat;
  display: block;
  float: left;
  height: 40px;
  width: 40px;
  margin-right: 10px;
}
#con-footer .google-button:hover {
  background-image: url("../../style/images/google-button-hover.jpg");
}
#con-footer .youtube-button {
  background-image: url("../../style/images/youtube-button.jpg");
  background-position: left;
  background-repeat: no-repeat;
  display: block;
  float: left;
  height: 40px;
  width: 40px;
}
#con-footer .youtube-button:hover {
  background-image: url("../../style/images/youtube-button-hover.jpg");
}
#con-footer .footer-links {
  padding-bottom: 1em;
  padding-top: 20px;
}
#con-footer .footer-links a {
  color: #B4B4B4;
}
#con-footer .copyright {
  color: #EEEEEE;
  font-size: 80%;
  margin-top: 1em;
}
#con-footer .copyright a {
  color: #EEEEEE;
}

#scrollUp {
  background-color: rgba(77, 200, 240, 0.4);
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-topleft: 0;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  bottom: 10px;
  color: #ffffff;
  display: block;
  padding: 10px 15px 10px 15px;
  right: 10px;
  text-decoration: none;
  text-align: center;
}

#scrollUp:hover {
  background-color: rgb(77, 200, 240);
}

/* filemanager */
.img-left {
  float: left;
  margin: 0 0.5em 0.5em 0;
}

.img-right {
  float: right;
  margin: 0 0 0.5em 0.5em;
}

.wegdamit {
  position: absolute;
  left: -9999px;
}

/* Start media queries */
@media (max-width: 768px) {
  .con-logo img {
    margin: 0 auto;
  }
  .claim {
    font-size: 100%;
  }
  .openPs {
    max-width: 220px;
  }
  .facebook-button {
    background-image: url("../../style/images/facebook-button-hover.jpg") !important;
    margin-bottom: 1em;
  }
  .google-button {
    background-image: url("../../style/images/google-button-hover.jpg") !important;
    margin-bottom: 1em;
  }
  .youtube-button {
    background-image: url("../../style/images/youtube-button-hover.jpg") !important;
    margin-bottom: 1em;
  }
}
@media (min-width: 768px) {
  .con-logo img {
    max-height: 100%;
  }
  .claim {
    color: #01B0E9;
    font-size: 160%;
    margin-top: 30px;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }
}
/* End media queries */