#myloader h5 {
  /* Startzustand: vollständig transparent */
  opacity: 0;
  
  /* Animation zum Einblenden definieren */
  animation: fadeIn 1.5s ease-in-out forwards 1.5s; /* Animation dauert 2 Sekunden, beginnt nach 2 Sekunden Verzögerung und setzt den Endzustand der Animation beibehalten */
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#gallery-wrap {
  transition: background-color 0.3s ease-in-out;
  -webkit-transition: background-color 0.3s ease-in-out;
  -moz-transition: background-color 0.3s ease-in-out;
  -ms-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 1150px) {
  #gallery-bg {
    background-size: 35% !important;
  }
}
img {
  user-select: none;
}
#gallery .image-wrap {
  padding: 20px;
  position: relative;
}
#gallery .image-wrap img {
  vertical-align: middle;
  box-shadow: 1px 1px 1px #3d2a23;
}
#gallery .image-wrap .image-border .inner-shadow {
 position: relative;
}
#gallery .image-wrap .image-border .inner-shadow::after {
 box-shadow: inset 1px 1px 8px 0px #1b17157d;
 content: '';
 display: block;
 height: 100%;
 position: absolute;
 top: 0;
 width: 100%;
}
/*
#gallery .image-border {
  -webkit-filter: drop-shadow(2px 2.4px 2px rgba(0, 0, 0, 0.129)) drop-shadow(7px 7px 12px rgba(0, 0, 0, 0.189)) drop-shadow(10px 10px 12px rgba(0, 0, 0, 0.189));
  filter: drop-shadow(2px 2.4px 2px rgba(0, 0, 0, 0.129)) drop-shadow(7px 7px 12px rgba(0, 0, 0, 0.189)) drop-shadow(10px 10px 12px rgba(0, 0, 0, 0.189))
}
*/
#gallery .image-wrap .image-border {
  -webkit-filter: none;
  filter: none;
  padding: 5px;
  background-color: #1b1715;
  border-radius: 2px;
  box-shadow: inset 2px 2px 2px #3d2a23, -4px -3px 7px rgba(0, 0, 0, 0.089),
    2px 2.4px 1.2px rgba(0, 0, 0, 0.089), 3px 5.6px 2.8px rgba(0, 0, 0, 0.133),
    4px 10px 5.3px rgba(0, 0, 0, 0.151), 7px 16.1px 9.4px rgba(0, 0, 0, 0.158),
    8px 24.8px 17.5px rgba(0, 0, 0, 0.166), 10px 45px 42px rgba(0, 0, 0, 0.18);
}
#gallery .image-title {
  padding-top: 15px;
}
#gallery .image-title h4,
#gallery .image-title h6 {
  padding-top: 5px;
  font-weight: 400;
  transition: color 0.3s ease-in-out;
  -webkit-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  -ms-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
}
#gallery::after {
  content: "";
  height: 500px;
  width: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 50px;
  left: 50px;
}
#gallery-bg {
  background: url("../img/bg5.png");
  position: absolute;
  height: 100%;
  width: 100%;
}
/*#gallery-bg::after {
  content: "";
  background: linear-gradient(
    100deg,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.2)
  );
  position: absolute;
  height: 100%;
  width: 100%;
}*/
.gallery-light-left {
  width: 35%;
  height: 800px;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  left: -25%;
  top: -100px;
  opacity: 0.8;
  mix-blend-mode: overlay;
  -webkit-transform: scaleX(-1);
  -khtml-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
}
.choose-color {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  margin-top: 30px;
  border: 1px solid #ededed;
  background-color: #f5f5f5;
  border-radius: 10px;
}
.choose-color .color-picker {
  margin-right: 20px;
}

/* GOOEY MENU */
.color-picker .picker-item .element {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
}
.color-picker .element {
  display: inline-block;
  border: 1px solid #ccc;
  height: 50px;
  width: 50px;
  box-shadow: 0;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  cursor: pointer;
  background-color: white;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.color-picker .element:hover {
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
}
.color-picker .picker-button {
  position: relative;
  z-index: 950;
}
.color-picker .picker-button .element {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.color-picker .picker-button i {
  color: #333;
  opacity: 0;
  font-size: 20px;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
}
.color-picker.active .picker-button i {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.color-picker.active .picker-button .element {
  transform: scale(0.85);
  -webkit-transform: scale(0.85);
  -moz-transform: scale(0.85);
  -ms-transform: scale(0.85);
  -o-transform: scale(0.85);
}
.color-picker.active .picker-item .element {
  display: initial;
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.picker-item.open-4 .element {
  top: 60px;
  transition-delay: 0ms;
}
.picker-item.open-3 .element {
  top: 120px;
  transition-delay: 50ms;
}
.picker-item.open-2 .element {
  top: 180px;
  transition-delay: 100ms;
}
.picker-item.open-1 .element {
  top: 240px;
  transition-delay: 150ms;
}
.farbe-1,
#farbe-1 {
  background-color: rgb(80, 77, 77);
}
.farbe-2,
#farbe-2 {
  background-color: #396070;
}
.farbe-3,
#farbe-3 {
  background-color: #d9827d;
}
.farbe-4,
#farbe-4 {
  background-color: #fff;
}
#gallery-wrap.farbe-1 .image-title h4,
#gallery-wrap.farbe-1 .image-title h6,
#farbe-1 i {
  color: #fff;
}
#gallery-wrap.farbe-2 .image-title h4,
#gallery-wrap.farbe-2 .image-title h6,
#farbe-2 i {
  color: #fff;
}
.picker {
  position: relative;
  z-index: 900;
}
.mfp-bottom-bar {
  margin-top: -45px !important;
}
.mfp-title {
  font-size: 18px !important;
  font-weight: 300 !important;
  color: #000000 !important;
  text-align: center !important;
  line-height: 1.15 !important;
	padding: 0 !important;
}
.mfp-counter {
	font-family: "Roboto", sans-serif !important;
	display: none;
}
a[data-toggle="tab"].active {
  	color: #000000 !important;
}
.mfp-figure:after {
	background-color: white !important;
}
.mfp-figure figure {
    padding-left: 70px !important;
    padding-right: 70px !important;
}
img.mfp-img {
    max-width: 95% !important;
    padding: 30px 0 60px !important;
}
.vita-gallery.owl-carousel .owl-item img {
    max-height: 250px;
    object-fit: contain;
}
.vita-gallery-2.owl-carousel .owl-item img {
    max-height: 300px;
    object-fit: contain;
}
.owl-theme .owl-controls {
	position: initial;
}
.owl-prev {
    height: 25px;
    position: absolute;
    top: calc(50% - 13px);
    left: -35px;
    display: block !important;
    border:0px solid black;
}

.owl-next {
    height: 25px;
    position: absolute;
    top: calc(50% - 13px);
    right: -35px;
    display: block !important;
    border:0px solid black;
}
@media screen and (max-width: 991px) {
  .owl-prev {
		left: -32px;
	}
	.owl-next {
		right: -32px;
	}
}
.owl-prev i, .owl-next i {color: #000;}
p.small {
	line-height: 1.5em;
}