.colorwhiteh h1,
.colorwhiteh h2,
.colorwhiteh h3,
.colorwhiteh h4,
.colorwhiteh h5,
.colorwhitep p{
color:#fff;
}

/*************************
    Abstaende link und rechts
 *************************/

.margin-right10 {
  margin-right: 10px;
}

.margin-right20 {
  margin-right: 20px;
}

.margin-right30 {
  margin-right: 30px;
}

.margin-left10 {
  margin-left: 10px;
}

.margin-left20 {
  margin-left: 20px;
}

.margin-left30 {
  margin-left: 30px;
}

.padding-right10 {
  padding-right: 10px;
}

.padding-right20 {
  padding-right: 20px;
}

.padding-right30 {
  padding-right: 30px;
}

.padding-left10 {
  padding-left: 10px;
}

.padding-left20 {
  padding-left: 20px;
}

.padding-left30 {
  padding-left: 30px;
}

.border-right1 {
  border-right: 1px solid #eaeaea;
}

.border-left1 {
  border-left: 1px solid #eaeaea;
}

/**
 * =============================================================================
 * Bilder mit Rahmen
 * ==========================================================================
 */

.imgframe1 img {
  display: inline-block;
  background-color: #f1f1f1;
  border: 1px solid #dadada;
  padding: 5px;
}

.polaroid .image_container {
  overflow: visible;
}

.polaroid .image_container.float_below,
.polaroid .image_container.float_above {
  margin-left: 3px;
  margin-right: 3px;
}

.polaroid .image_container.float_left {
  margin-left: 3px;
}

.polaroid .image_container.float_right {
  margin-right: 3px;
}

.polaroid img {
  display: inline-block;
  border: 10px solid #fff;
          box-shadow: 0 0 3px #777;
}

/**
 * =============================================================================
 * border for elements
 * ==========================================================================
 */

.border-right-white {
  border-right : 1px solid #fff;
}

.border-left-white {
  border-left : 1px solid #fff;
}

.border-right-dark {
  border-right : 1px solid #ddd;
}

.border-left-dark {
  border-left : 1px solid #ddd;
}

/**
 * =============================================================================
 * textausrichtung und farbe
 * ==========================================================================
 */

.bold p {
  font-weight: bold;
}

.text-align-right {
  text-align : right !important;
}

.text-align-left {
  text-align : left !important;
}

.text-align-center,
.center {
  text-align : center !important;
}

#footer .inside .fontcolor-white div,
#footer .inside .fontcolor-white .footermenu,
.fontcolor-white input,
.fontcolor-white textarea,
.fontcolor-white,
.fontcolor-white h1,
.fontcolor-white h2,
.fontcolor-white h3,
.fontcolor-white h4,
.fontcolor-white h5,
.fontcolor-white h6,
.fontcolor-white a {
  color:#fff !important;
}

/*************************
    CSS Counters for accorions
 *************************/

 .csscounters .ce_accordion .toggler {
  padding: 7px 46px 7px 56px;
 }
.csscounters .ce_accordion .toggler:before {
left: auto;
right: 12px;
}
.csscounters {
    counter-reset: section;
}

.csscounters .ce_accordion .toggler::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  height: 100%;
  background-color: #f1f1f1;
  border-right: 1px solid #dcdcdc;
  line-height: 45px;
  text-align: center;
  counter-increment: section;
  content: counter(section) " ";
}

.csscounters .ce_accordion .ui-accordion-header-active {
  border-bottom: 1px solid #dcdcdc;
}


/*PRELOADING --- Css in custom.css */

body {
    position: relative;
}
@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  
  25% {
    transform: rotate(180deg);
  }
  
  50% {
    transform: rotate(180deg);
  }
  
  75% {
    transform: rotate(360deg);
  }
  
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }
  
  25% {
    height: 0%;
  }
  
  50% {
    height: 100%;
  }
  
  75% {
    height: 100%;
  }
  
  100% {
    height: 0%;
  }
}

#overlayer {
  width:100%;
  height:100%;  
  position:absolute;
  z-index:1;
  background:#fff;
  z-index: 9999999;
}
.loadercts {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  z-index:3;
  border: 4px solid #0096d9;
  top: 50vh;
  left: 50%;
  animation: loader 2s infinite ease;
  z-index: 99999999;
}

.loader-innercts {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #0096d9;
  animation: loader-inner 2s infinite ease-in;
  z-index: 999999999;
}