/*
 * GENERAL VARIABLES
 */
/* COLORS */
/* #ccc */
/* #f2f2f2 */
/* #000 */
/* opacity .8 */
/* opacity .8 */
/* FONT */
/* FONT-FAMILY */
/* Font-Size*/
/* Font-Weight */
/* Text */
/* WRAP */
/* SCROLL-TO-TOP */
/* SPACE */
/* PADDING */
/* TABLE */
/* CLASSES FOR MIXINS */
/*
 * NAVIGATION VARIABLES
 */
/*
 * Main
 */
/* mobile */
/* mobile */
/*
 * Mobile Navigation
 */
/*
 * MicroNav
 */
/*
 * FooterNavi
 */
/*
 * Aside
 */
/*
 * TEXT-BLOCK
 */
/*
 * Page-Image
 */
/*
 * Pagination
 */
/*
 * Input-Fields
 */
/*
 * Single-Content Navigation
 */
/*
 * Infinite Loading
 */
/*
 * CORE-DESIGN
 */
/*
 * CONTACT-FORM
 */
/*
 * BREADCRUMBS
 */
/*
 * SEARCH
 */
/*
 * Autosuggest
 */
/*
 * SOCIAL SHARING
 */
/*
 * CLICKLIST
 */
/*
 * CONSENT-TOOL
 */
/*
 * LOGIN-FORM FE
 */
/*
 * PROJECT ADAPTION
 */
/*
 * PAGE-ASIDE
 */
/* MODULE - ASIDE */
/*
 * aside single view
 */
/*
 * SECTION / PAGE-CONTENT
 */
/*
 * section single view
 */
/* FOOTER */
/*
 *  PLUGINS
 */
/*
 * InfoBox
 */
/*
 * InfoImage
 */
/*
 * Gallery
 */
/*
 * Accodreon
 */
/* ZOOM-INDICATOR */
/*
 * FAQ
 */
/*
 * COLS
 */
/*
 * ColRight & ColLeft Space
 */
/*
 * Listings
 */
/*
 * Space If elements > cols-numer (4 items > .cols .items-x3) || .doubleSpace-break
 */
/*
 * Listings
 */
/* Card-Item */
/* Shadow */
/* Zoom */
/* link-cover */
/* List-View */
/* Shadow */
/* Border */
/* Zoom */
/* Vertical Align Content */
/* Vertical Align Image */
/* Spacing */
/* link-cover */
/*
 * WIDGETS
 */
/* Contact */
/* Top-Line */
/* Cites */
/* Reviews */
/* Text with Link */
/* Adjustments */
/* Aside Links */
/*
 * Intern
 */
/* Gradiant for Items */
/* tabs */
/* Dropzone */
/* Dashboard */
/*
 * GENERAL VARIABLES
*/
/* COLORS */
/* background cld */
/* #f2f2f2 */
/* #000 */
/* blue */
/* Orange */
/* dunkler Untergrund (Footer, Topline, CTA, ..) */
/* FONT */
/* FONT-FAMILY */
/* Font-Size*/
/* Font-Weight */
/* Special Options */
/* WRAP */
/* SCROLL-TO-TOP */
/* Top-Line */
/*
 * NAVIGATION VARIABLES
 */
/* Main */
/* mobile */
/* mobile */
/* MOBILE */
/* STICKY */
/* PAGE-ASIDE */
/* SECTION / PAGE-CONTENT */
/* FOOTER */
/* Pagination */
/* Nav-Pageview */
/* Single-Content Navigation */
/* Header-Elements */
/* BREADCRUMBS */
/* SEARCH */
/*
 * COLS
 */
/* List-View */
/* Mixin - Grid */
/* Image Filter */
/* Heading */
/* Listelemnts */
/* NavSpacer */
/* Absolute Position */
/*
 * REMARKS
 */
/*	simple-button		- Generiert normalen Button					*/
/*	btn-diagonal-close	- Größe der Border an Button anpassen		*/
/*	btn-double-swipe	- Größe der Border an Button anpassen		*/
/*	btn-zoning			- Größe der Border an Button anpassen		*/
/*	btn-slice			- Weite der Border an Button anpassen		*/
/*	btn-aware			- leeren span in a-Tag hinterlegen			*/
/*	btn-alternate		- Text/[WIDGET_LINK_MORE] in span einbinden	*/
/*	btn-v-overlap		- Text/[WIDGET_LINK_MORE] in span einbinden	*/
/*	btn-h-overlap		- Text/[WIDGET_LINK_MORE] in span einbinden	*/
/*
 * SIMPLE BUTTON
 */
.simple-button {
  padding: 10px 15px;
  position: relative;
  display: inline-block;
  background: #5b88a7;
  border: 1px solid #5b88a7;
  color: #5b88a7;
  font-size: 120%;
  z-index: 0;
}
.simple-button.text-small {
  padding: 5px 10px;
  font-size: calc(100% - 10%);
}
.simple-button.text-large {
  padding: 15px 25px;
  font-size: calc(100% + 20%);
}
.simple-button.text-larger {
  padding: 20px 40px;
  font-size: calc(100% + 40%);
}
.simple-button.simple-effect:hover {
  background: #ffffff;
  color: #5b88a7;
}
.simple-button:highlight {
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #5b88a7;
}
.simple-button:highlight:hover {
  background: #5b88a7;
  color: #ffffff;
}
/*
 * SWIPE-BUTTON
 */
.btn-swipe {
  overflow: hidden;
}
.btn-swipe:not( .icon ).simple-button:before,
.btn-swipe > span:before {
  z-index: -1;
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: #ffffff;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.btn-swipe:hover.simple-button,
.btn-swipe:hover > span {
  color: #5b88a7;
}
.btn-swipe:hover:not( .icon ).simple-button:before,
.btn-swipe:hover > span:before {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
/*
 * DIAGONAL-SWIPE BUTTON
 */
.btn-diagonal-swipe {
  overflow: hidden;
}
.btn-diagonal-swipe:not( .icon ).simple-button:before,
.btn-diagonal-swipe > span:before {
  content: '';
  z-index: -1;
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  position: absolute;
  top: 0px;
  right: -50px;
  bottom: 0px;
  left: 0px;
  border-right: 50px solid transparent;
  border-bottom: 80px solid #ffffff;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.btn-diagonal-swipe:not( .icon ).simple-button:after,
.btn-diagonal-swipe > span:after {
  z-index: -1;
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.btn-diagonal-swipe:hover > span,
.btn-diagonal-swipe:hover.simple-button {
  color: #5b88a7;
}
.btn-diagonal-swipe:hover:not( .icon ).simple-button:before,
.btn-diagonal-swipe:hover > span:before {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
/*
 * DOUBLE-SWIPE BUTTON
 */
.btn-double-swipe {
  overflow: hidden;
}
.btn-double-swipe:not( .icon ).simple-button:before,
.btn-double-swipe > span:before {
  content: '';
  position: absolute;
  top: 0px;
  right: -50px;
  bottom: 0px;
  left: 0px;
  border-bottom: 80px solid #ffffff;
  z-index: -1;
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  border-right: 0px solid transparent;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.btn-double-swipe:not( .icon ).simple-button:after,
.btn-double-swipe > span:after {
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: -50px;
  border-bottom: 80px solid #ffffff;
  z-index: -1;
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  border-left: 0px solid transparent;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.btn-double-swipe:hover > span,
.btn-double-swipe:hover.simple-button {
  color: #5b88a7;
}
.btn-double-swipe:hover:not( .icon ).simple-button:before,
.btn-double-swipe:hover > span:before {
  -webkit-transform: translateX(-40%);
  transform: translateX(-40%);
}
.btn-double-swipe:hover:not( .icon ).simple-button:after,
.btn-double-swipe:hover > span:after {
  -webkit-transform: translateX(40%);
  transform: translateX(40%);
}
/*
 * DIAGONAL-CLOSE BUTTON
 */
.btn-diagonal-close {
  overflow: hidden;
}
.btn-diagonal-close:not( .icon ).simple-button:before,
.btn-diagonal-close > span:before {
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: -1;
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.btn-diagonal-close:not( .icon ).simple-button:after,
.btn-diagonal-close > span:after {
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: -1;
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.btn-diagonal-close:hover > span,
.btn-diagonal-close:hover.simple-button {
  color: #5b88a7;
}
/* Größe der Border an Button anpassen */
.btn-diagonal-close:not( .icon ).simple-button:before,
.btn-diagonal-close > span:before {
  right: -50px;
  border-right: 50px solid transparent;
  border-bottom: 80px solid #ffffff;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.btn-diagonal-close:not( .icon ).simple-button:after,
.btn-diagonal-close > span:after {
  left: -50px;
  border-left: 50px solid transparent;
  border-top: 80px solid #ffffff;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.btn-diagonal-close:hover.simple-button,
.btn-diagonal-close:hover > span {
  color: #5b88a7;
}
.btn-diagonal-close:hover:not( .icon ).simple-button:before,
.btn-diagonal-close:hover > span:before {
  -webkit-transform: translateX(-49%);
  transform: translateX(-49%);
}
.btn-diagonal-close:hover:not( .icon ).simple-button:after,
.btn-diagonal-close:hover > span:after {
  -webkit-transform: translateX(49%);
  transform: translateX(49%);
}
/*
 * ZONING BUTTON
 */
/* Größe der Border an Button anpassen */
.btn-zoning {
  overflow: hidden;
}
.btn-zoning:not( .icon ).simple-button:before,
.btn-zoning > span:before {
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  border-top: 25px solid #ffffff;
  border-bottom: 25px solid #ffffff;
  z-index: -1;
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  border-right: 30px solid transparent;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.btn-zoning:not( .icon ).simple-button:after,
.btn-zoning > span:after {
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  border-top: 25px solid #ffffff;
  border-bottom: 25px solid #ffffff;
  z-index: -1;
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  border-left: 30px solid transparent;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.btn-zoning:hover > span,
.btn-zoning:hover.simple-button {
  color: #5b88a7;
}
.btn-zoning:hover:not( .icon ).simple-button:before,
.btn-zoning:hover > span:before {
  -webkit-transform: translateX(-30%);
  transform: translateX(-30%);
}
.btn-zoning:hover:not( .icon ).simple-button:after,
.btn-zoning:hover > span:after {
  -webkit-transform: translateX(30%);
  transform: translateX(30%);
}
/*
 * SLICE BUTTON
 */
/* Größe der Border an Button anpassen */
.btn-slice {
  overflow: hidden;
}
.btn-slice:not( .icon ).simple-button:after,
.btn-slice > span:after {
  content: '';
  width: 0;
  height: 0;
  -webkit-transform: rotate(360deg);
  border-style: solid;
  border-width: 0 0 0 0;
  border-color: transparent #ffffff transparent transparent;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: unset;
  left: unset;
  border: 0 solid;
  transform: rotate(360deg);
  z-index: -1;
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.btn-slice:not( .icon ).simple-button:before,
.btn-slice > span:before {
  content: '';
  width: 0;
  height: 0;
  -webkit-transform: rotate(360deg);
  border-style: solid;
  border-width: 0 0 0 0;
  border-color: transparent transparent transparent #ffffff;
  position: absolute;
  top: unset;
  right: unset;
  bottom: 0px;
  left: 0px;
  border: 0 solid;
  transform: rotate(360deg);
  z-index: -1;
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.btn-slice:hover > span,
.btn-slice:hover.simple-button {
  color: #5b88a7;
}
.btn-slice:hover:not( .icon ).simple-button:before,
.btn-slice:hover > span:before {
  border-width: 80px 262.5px;
  border-color: #ffffff;
}
.btn-slice:hover:not( .icon ).simple-button:after,
.btn-slice:hover > span:after {
  border-width: 80px 262.5px;
  border-color: #ffffff;
}
/*
 * AWARE BUTTON
 */
.btn-aware {
  overflow: hidden;
}
.btn-aware:not( .icon ).simple-button:after,
.btn-aware > span:after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #ffffff;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  -moz-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  -ms-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  -o-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}
.btn-aware:hover > span,
.btn-aware:hover.simple-button {
  color: #5b88a7;
}
.btn-aware:hover:not( .icon ).simple-button:after,
.btn-aware:hover > span:after {
  width: 225%;
  height: 562.5px;
}
/* SMOOSH BUTTON */
.btn-smoosh {
  overflow: hidden;
}
.btn-smoosh:not( .icon ).simple-button:before,
.btn-smoosh > span:before {
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: -1px;
  left: 0px;
  background-color: #ffffff;
  z-index: -1;
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
.btn-smoosh:not( .icon ).simple-button:after,
.btn-smoosh > span:after {
  content: '';
  position: absolute;
  top: -1px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: #ffffff;
  z-index: -1;
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
.btn-smoosh:hover > span,
.btn-smoosh:hover.simple-button {
  color: #5b88a7;
}
.btn-smoosh:hover:not( .icon ).simple-button:before,
.btn-smoosh:hover > span:before {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.btn-smoosh:hover:not( .icon ).simple-button:after,
.btn-smoosh:hover > span:after {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
/*
 * COLLISION BUTTON
 */
@-webkit-keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@-webkit-keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
.btn-collision {
  overflow: hidden;
}
.btn-collision:not( .icon ).simple-button:before,
.btn-collision > span:before {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  z-index: -1;
  box-sizing: border-box;
  left: -20px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.btn-collision:not( .icon ).simple-button:after,
.btn-collision > span:after {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  z-index: -1;
  box-sizing: border-box;
  right: -20px;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
.btn-collision:hover > span,
.btn-collision:hover.simple-button {
  color: #5b88a7 !important;
}
.btn-collision:hover:not( .icon ).simple-button:before,
.btn-collision:hover > span:before {
  -webkit-animation: criss-cross-left 0.8s both;
  animation: criss-cross-left 0.8s both;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
.btn-collision:hover:not( .icon ).simple-button:after,
.btn-collision:hover > span:after {
  -webkit-animation: criss-cross-right 0.8s both;
  animation: criss-cross-right 0.8s both;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
/*
 * From Top
 */
.from-top a:before {
  left: -1px;
  height: 0;
  width: 100%;
  bottom: 0;
  border: 1px solid #ffffff;
  border-top: 0;
  border-bottom: 0;
}
.from-top a:after {
  left: -1px;
  height: 0;
  width: 100%;
  top: 0;
}
.from-top:hover a:before {
  height: 100%;
}
.from-top:hover a:after {
  height: 100%;
}
/*
 * From Left
 */
.from-left a:before {
  top: -1px;
  width: 0;
  height: 100%;
  right: 0;
  border: 1px solid #ffffff;
  border-left: 0;
  border-right: 0;
}
.from-left a:after {
  top: -1px;
  width: 0;
  height: 100%;
  left: 0;
}
.from-left:hover a:before {
  width: 100%;
}
.from-left:hover a:after {
  width: 100%;
}
/*
 * From right
 */
.from-right a:before {
  top: 0;
  width: 0;
  height: 100%;
  left: 0;
  border: 1px solid #ffffff;
  border-left: 0;
  border-right: 0;
}
.from-right a:after {
  top: 0;
  width: 0;
  height: 100%;
  right: 0;
}
.from-right:hover a:before {
  width: 100%;
}
.from-right:hover a:after {
  width: 100%;
}
/*
 * From center
 */
.from-center a:before {
  top: -1px;
  left: 50%;
  height: 100%;
  width: 0;
  border: 1px solid #ffffff;
  border-left: 0;
  border-right: 0;
}
.from-center a:after {
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%;
  background: #ffffff;
}
.from-center:hover a:before {
  left: 0;
  width: 100%;
}
.from-center:hover a:after {
  top: 0;
  height: 100%;
}
/*
 * From Bottom
 */
.from-bottom a:before {
  left: -1px;
  height: 0;
  width: 100%;
  top: 0px;
  border: 1px solid #ffffff;
  border-top: 0;
  border-bottom: 0;
}
.from-bottom a:after {
  left: -1px;
  width: 100%;
  bottom: 0;
  height: 0;
}
.from-bottom:hover a:before {
  height: 100%;
}
.from-bottom:hover a:after {
  height: 100%;
}
/*
 * Rounded Svg
 */
.rounded-svg-fill {
  position: relative;
  margin: auto;
  padding: 19px 22px;
  transition: all .2s ease;
}
.rounded-svg-fill:before {
  content: "";
  top: 0px;
  right: unset;
  bottom: unset;
  left: 0px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 28px;
  opacity: .5;
  background: #ffffff;
  width: 56px;
  height: 56px;
  transition: all .3s ease;
}
.rounded-svg-fill span {
  position: relative;
  font-size: 16px;
  line-height: 18px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  vertical-align: middle;
  color: #555;
  transition: .4s;
}
.rounded-svg-fill svg {
  position: relative;
  top: 2px;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #fff6d9;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all .3s ease;
}
.rounded-svg-fill:hover span {
  color: #fff;
}
.rounded-svg-fill:hover::before {
  width: 100%;
  opacity: 1;
  background: #ffffff;
}
.rounded-svg-fill:hover::before svg {
  transform: translateX(0);
}
.rounded-svg-fill:active {
  transform: scale(0.96);
}
/*
 * UNFILL-EFFECTS
 */
/*
.btn-unfill {
	line-height: 50px;
	height: 50px;
	text-align: center;
	width: 250px;
	cursor: pointer;
}
*/
/*
 * BORDERLINE TOP AND BUTTOM - BUTTON
 */
.btn-2border {
  color: #5b88a7;
  transition: all 0.3s;
  position: relative;
}
.btn-2border:hover {
  color: #5b88a7;
}
.btn-2border:hover a {
  letter-spacing: 2px;
  color: #5b88a7 !important;
}
.btn-2border:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}
.btn-2border:hover::after {
  opacity: 0;
  transform: scale(0.1, 1);
}
.btn-2border a {
  transition: all 0.3s;
  background: transparent !important;
}
.btn-2border::before {
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-bottom-style: solid;
  border-top-color: rgba(80, 43, 22, 0.5);
  border-bottom-color: rgba(80, 43, 22, 0.5);
  transform: scale(0.1, 1);
}
.btn-2border::after {
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: -1;
  transition: all 0.3s;
  background-color: #502b16;
}
/* CROSS BUTTON */
.btn-cross {
  color: #ffffff;
  transition: all 0.5s;
  position: relative;
}
.btn-cross:hover {
  color: #502b16;
}
.btn-cross:hover a {
  color: #555 !important;
}
.btn-cross:hover::before {
  transform: rotate(-45deg);
  background-color: rgba(80, 43, 22, 0);
}
.btn-cross:hover::after {
  transform: rotate(45deg);
  background-color: rgba(80, 43, 22, 0);
}
.btn-cross a {
  background: transparent !important;
  z-index: 2;
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.btn-cross::before {
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 1;
  transition: all 0.5s;
  border: 1px solid rgba(80, 43, 22, 0.2);
  background-color: #502b16;
}
.btn-cross::after {
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 1;
  transition: all 0.5s;
  border: 1px solid rgba(80, 43, 22, 0.2);
  background-color: #502b16;
}
/* COMPLETE BORDER - Button */
.btn-4border {
  color: #ffffff;
  transition: all 0.5s;
  position: relative;
}
.btn-4border a {
  background: transparent !important;
}
.btn-4border:hover {
  color: #502b16;
}
.btn-4border:hover a {
  color: #555 !important;
}
.btn-4border:hover::before {
  opacity: 0;
  transform: scale(0.5, 0.5);
}
.btn-4border:hover::after {
  opacity: 1;
  transform: scale(1, 1);
}
.btn-4border::before {
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: -1;
  background-color: #502b16;
  transition: all 0.3s;
}
.btn-4border::after {
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s;
  border: 1px solid #502b16;
  transform: scale(1.2, 1.2);
}
/*
 * EFFECTS
 */
/*
 * PULSE EFFECT
 */
.pulse-effect {
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -ms-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.pulse-effect:hover {
  animation: pulse 1s;
  -webkit-animation: pulse 1s;
  -moz-animation: pulse 1s;
  box-shadow: 0 0 0 32px rgba(0, 0, 0, 0);
  color: #5b88a7;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -ms-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.pulse-effect:focus {
  animation: pulse 1s;
  -webkit-animation: pulse 1s;
  -moz-animation: pulse 1s;
  box-shadow: 0 0 0 32px rgba(0, 0, 0, 0);
  color: #502b16;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -ms-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #5b88a7;
  }
}
@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #5b88a7;
  }
}
/*
 * RAISE EFFECT
 */
.raise-effect {
  transition: .4s;
}
.raise-effect:hover {
  box-shadow: 0 8px 8px -2px #ffffff;
  transform: translateY(-8px);
  border: 1px solid #5b88a7;
  color: #5b88a7;
}
.raise-effect:focus {
  box-shadow: 0 8px 8px -2px #914f1b;
  transform: translateY(-8px);
  border: 1px solid #5b88a7;
  color: #5b88a7;
}
/*
 * BORDERLINE EFFECT
 */
.borderline-effect a {
  position: relative;
  display: inline-block;
  width: 277px;
  font-size: 16px;
  font-weight: bold;
  line-height: 60px;
  text-align: center;
  background-color: transparent;
  cursor: pointer;
  text-decoration: none;
  font-weight: 900;
}
.borderline-effect svg {
  position: absolute;
  top: 0;
  left: 0;
}
.borderline-effect svg rect {
  stroke: #EC0033;
  stroke-width: 4;
  stroke-dasharray: 353, 0;
  stroke-dashoffset: 0;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}
.borderline-effect span {
  color: #555;
}
.borderline-effect:hover svg rect {
  stroke-width: 4;
  stroke-dasharray: 196, 543;
  stroke-dashoffset: 437;
  transition: .4s;
  -webkit-transition: .4s;
  -ms-transition: .4s;
}
/* Fallback */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .btn1:hover svg rect {
    stroke: #555;
    transition: .4s;
    -webkit-transition: .4s;
  }
}
/*
 * SLIDE TEXT
 */
.slide-effect {
  background: transparent;
  outline: none;
  position: relative;
  border: 2px solid #555;
  padding: 15px 50px;
  overflow: hidden;
}
.slide-effect:hover {
  cursor: pointer;
}
.slide-effect:hover:before {
  opacity: 1;
  transform: translate(0, 0);
}
.slide-effect:hover div {
  opacity: 0;
  transform: translate(100%, 0);
}
.slide-effect:before {
  content: attr(data-hover);
  position: absolute;
  top: 1.1em;
  left: 0;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  font-size: .8em;
  opacity: 0;
  transform: translate(-100%, 0);
  transition: all 0.3s ease-in-out;
}
.slide-effect div {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  font-size: .8em;
  transition: all 0.3s ease-in-out;
}
/*
 * ICONS
 */
.icons-container {
  display: flex;
}
.background {
  background: #f06060;
}
.hi-icon-wrap {
  text-align: center;
  margin: 0 auto;
}
.hi-icon {
  display: inline-block;
  font-size: 0px;
  cursor: pointer;
  margin: 15px 30px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #fff;
}
.hi-icon:after {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: '';
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.hi-icon:before {
  font-family: 'ecoicon';
  speak: none;
  font-size: 48px;
  line-height: 90px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  display: block;
  -webkit-font-smoothing: antialiased;
}
/*
 * Effect 1
 */
.hi-icon-effect-1 .hi-icon {
  background: rgba(255, 255, 255, 0.1);
  -webkit-transition: background 0.2s, color 0.2s;
  -moz-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
.hi-icon-effect-1 .hi-icon:after {
  top: -7px;
  left: -7px;
  padding: 7px;
  box-shadow: 0 0 0 4px #fff;
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
  -webkit-transform: scale(0.8);
  -moz-transition: -moz-transform 0.2s, opacity 0.2s;
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transition: transform 0.2s, opacity 0.2s;
  transform: scale(0.8);
  opacity: 0;
}
/*
 * Effect 1a
 */
.hi-icon-effect-1a .hi-icon:hover {
  background: #ffffff;
  color: #f06060;
}
.hi-icon-effect-1a .hi-icon:hover:after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
/*
 * Effect 4
 */
.hi-icon-effect-4 .hi-icon {
  width: 92px;
  height: 92px;
  box-shadow: 0 0 0 4px #ffffff;
}
.hi-icon-effect-4 .hi-icon:before {
  line-height: 92px;
}
.hi-icon-effect-4 .hi-icon:after {
  top: -4px;
  left: -4px;
  padding: 0;
  z-index: 10;
  border: 4px dashed #fff;
}
.hi-icon-effect-4 .hi-icon:hover {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  color: #fff;
}
.hi-icon-effect-4a .hi-icon {
  -webkit-transition: box-shadow 0.2s;
  -moz-transition: box-shadow 0.2s;
  transition: box-shadow 0.2s;
}
.hi-icon-mail:before {
  content: "\f003";
  font-family: FontAwesome;
}
/*
 * BURGER-MENU
 */
.mobile-svg-btn {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.mobile-svg-rotate.active {
  transform: rotate(45deg);
}
.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #000;
  stroke-width: 7.5;
  stroke-linecap: round;
}
/* FIRST ANIMATION */
.mobile-svg-btn-1 .top {
  stroke-dasharray: 40 139;
}
.mobile-svg-btn-1 .bottom {
  stroke-dasharray: 40 180;
}
.mobile-svg-btn-1.active .top {
  stroke-dashoffset: -98px;
}
.mobile-svg-btn-1.active .bottom {
  stroke-dashoffset: -138px;
}
/*
 * ARROW ANIMATION
 */
.mobile-svg-btn-arrow .top {
  stroke-dasharray: 40 121;
}
.mobile-svg-btn-arrow .bottom {
  stroke-dasharray: 40 121;
}
.mobile-svg-btn-arrow.active .top {
  stroke-dashoffset: -102px;
}
.mobile-svg-btn-arrow.active .bottom {
  stroke-dashoffset: -102px;
}
/*
 * SECOND ANIMATION
 */
.mobile-svg-btn-2 .top {
  stroke-dasharray: 40 121;
}
.mobile-svg-btn-2 .bottom {
  stroke-dasharray: 40 121;
}
.mobile-svg-btn-2.active .top {
  stroke-dashoffset: -68px;
}
.mobile-svg-btn-2.active .bottom {
  stroke-dashoffset: -68px;
}
/*
 * FALLBACK  FOR IE 10/11
 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #webapp_cover {
    position: relative;
    width: 39px;
    margin: 0 auto;
    transform: translateY(-50%) scale(2);
  }
  #menu_button {
    width: 39px;
    overflow: hidden;
  }
  #menu_checkbox {
    display: none;
  }
  #menu_checkbox:checked + #menu_label:before {
    left: -39px;
  }
  #menu_checkbox:checked + #menu_label:after {
    left: 39px;
  }
  #menu_checkbox:checked + #menu_label #menu_text_bar:before {
    animation: moveUpThenDown 0.8s ease 0.2s forwards, shakeWhileMovingUp 0.8s ease 0.2s forwards, shakeWhileMovingDown 0.2s ease 0.8s forwards;
  }
  #menu_label {
    position: relative;
    display: block;
    height: 29px;
    cursor: pointer;
  }
  #menu_label:before {
    content: '';
    position: absolute;
    top: 0px;
    right: unset;
    bottom: unset;
    left: 0px;
    width: 100%;
    height: 5px;
    background-color: #555;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) left;
  }
  #menu_label:after {
    content: '';
    position: absolute;
    top: 12px;
    right: unset;
    bottom: unset;
    left: 0px;
    width: 100%;
    height: 5px;
    background-color: #555;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) left;
  }
  #menu_text_bar {
    position: absolute;
    top: 24px;
    right: unset;
    bottom: unset;
    left: 0px;
    width: 100%;
    height: 5px;
    background-color: #555;
  }
  #menu_text_bar:before {
    content: 'CLOSE';
    position: absolute;
    top: 5px;
    right: 0;
    bottom: unset;
    left: 0px;
    color: #555;
    font-size: 12px;
    font-weight: bold;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    text-align: center;
  }
  @keyframes moveUpThenDown {
    0% {
      top: 0;
    }
    50% {
      top: -27px;
    }
    100% {
      top: -14px;
    }
  }
  @keyframes shakeWhileMovingUp {
    0% {
      transform: rotateZ(0);
    }
    25% {
      transform: rotateZ(-10deg);
    }
    50% {
      transform: rotateZ(0deg);
    }
    75% {
      transform: rotateZ(10deg);
    }
    100% {
      transform: rotateZ(0);
    }
  }
  @keyframes shakeWhileMovingDown {
    0% {
      transform: rotateZ(0);
    }
    80% {
      transform: rotateZ(3deg);
    }
    90% {
      transform: rotateZ(-3deg);
    }
    100% {
      transform: rotateZ(0);
    }
  }
}
/*
 * STYLES CSS - TOC
 *
 * 01) FONTS
 * 02) BASIC CSS
 * 03) PAGE LAYOUT
 * 04) RTE PLUGINS
 */
/*
 * FONTS
 *
 * load local font files here
 *
 * add "@{font-path}" as url-prefix
 *
 * this files is used by
 * 	- styles.less
 *  - editor.less
 */
/* roboto-300 - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-300.eot');
  src: url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-300.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-300.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */ url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-300.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-300.svg#Roboto') format('svg');
  
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* roboto-300italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  src: url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-300italic.eot');
  src: url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-300italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-300italic.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-300italic.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */ url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-300italic.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-300italic.svg#Roboto') format('svg');
  
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* roboto-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-regular.eot');
  src: url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */ url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-regular.svg#Roboto') format('svg');
  
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* roboto-italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  src: url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-italic.eot');
  src: url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-italic.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-italic.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */ url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-italic.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-italic.svg#Roboto') format('svg');
  
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* roboto-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-700.eot');
  src: url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */ url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-700.svg#Roboto') format('svg');
  
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* roboto-700italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  src: url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-700italic.eot');
  src: url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-700italic.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-700italic.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */ url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-700italic.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ url('https://auftrag.implant-oris.de/inc/css//fonts/roboto/roboto-v30-latin-700italic.svg#Roboto') format('svg');
  
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* tinos-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Tinos';
  font-style: normal;
  font-weight: 400;
  src: url('https://auftrag.implant-oris.de/inc/css//oris/fonts/tinos/tinos-v24-latin-regular.eot');
  src: url('https://auftrag.implant-oris.de/inc/css//oris/fonts/tinos/tinos-v24-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('https://auftrag.implant-oris.de/inc/css//oris/fonts/tinos/tinos-v24-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('https://auftrag.implant-oris.de/inc/css//oris/fonts/tinos/tinos-v24-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */ url('https://auftrag.implant-oris.de/inc/css//oris/fonts/tinos/tinos-v24-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ url('https://auftrag.implant-oris.de/inc/css//oris/fonts/tinos/tinos-v24-latin-regular.svg#Tinos') format('svg');
  
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* tinos-italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Tinos';
  font-style: italic;
  font-weight: 400;
  src: url('https://auftrag.implant-oris.de/inc/css//oris/fonts/tinos/tinos-v24-latin-italic.eot');
  src: url('https://auftrag.implant-oris.de/inc/css//oris/fonts/tinos/tinos-v24-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('https://auftrag.implant-oris.de/inc/css//oris/fonts/tinos/tinos-v24-latin-italic.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('https://auftrag.implant-oris.de/inc/css//oris/fonts/tinos/tinos-v24-latin-italic.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */ url('https://auftrag.implant-oris.de/inc/css//oris/fonts/tinos/tinos-v24-latin-italic.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ url('https://auftrag.implant-oris.de/inc/css//oris/fonts/tinos/tinos-v24-latin-italic.svg#Tinos') format('svg');
  
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* tinos-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Tinos';
  font-style: normal;
  font-weight: 700;
  src: url('https://auftrag.implant-oris.de/inc/css//oris/fonts/tinos/tinos-v24-latin-700.eot');
  src: url('https://auftrag.implant-oris.de/inc/css//oris/fonts/tinos/tinos-v24-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('https://auftrag.implant-oris.de/inc/css//oris/fonts/tinos/tinos-v24-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('https://auftrag.implant-oris.de/inc/css//oris/fonts/tinos/tinos-v24-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */ url('https://auftrag.implant-oris.de/inc/css//oris/fonts/tinos/tinos-v24-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ url('https://auftrag.implant-oris.de/inc/css//oris/fonts/tinos/tinos-v24-latin-700.svg#Tinos') format('svg');
  
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* tinos-700italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Tinos';
  font-style: italic;
  font-weight: 700;
  src: url('https://auftrag.implant-oris.de/inc/css//oris/fonts/tinos/tinos-v24-latin-700italic.eot');
  src: url('https://auftrag.implant-oris.de/inc/css//oris/fonts/tinos/tinos-v24-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('https://auftrag.implant-oris.de/inc/css//oris/fonts/tinos/tinos-v24-latin-700italic.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('https://auftrag.implant-oris.de/inc/css//oris/fonts/tinos/tinos-v24-latin-700italic.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */ url('https://auftrag.implant-oris.de/inc/css//oris/fonts/tinos/tinos-v24-latin-700italic.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ url('https://auftrag.implant-oris.de/inc/css//oris/fonts/tinos/tinos-v24-latin-700italic.svg#Tinos') format('svg');
  
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/*
 * REMARKS
 */
/*	simple-button	 	- Generiert normalen Button					*/
/*
 * BUTTONS
 */
/* SIMPLE BUTTON */
.simple-button {
  padding: 10px 15px;
  position: relative;
  display: inline-block;
  background: #ffffff;
  border: 1px solid #5b88a7;
  color: #5b88a7;
  font-size: 120%;
}
.simple-button.simple-effect:hover {
  background: #5b88a7;
  color: #ffffff;
}
/*
 * 01 - General
 * 02 - Team
 * 03 - News
 * 04 - Dates
 */
/* GENERAL */
/* Pagination */
ul.pagination > li {
  border: solid 1px #5b88a7;
  color: #5b88a7;
  background: #5b88a7;
}
ul.pagination > li a {
  color: #5b88a7;
}
ul.pagination > li a:hover {
  background: #ffffff;
  color: #5b88a7;
}
ul.pagination > li.active-page {
  background: #ffffff;
  color: #5b88a7;
}
ul.pagination > li.active-page a:hover {
  background: #ffffff;
  color: #5b88a7;
}
/* Pageview */
.nav-pageview {
  margin-bottom: 30px;
  padding-bottom: 5px;
  border-bottom: 3px solid #000000;
}
.nav-pageview li a {
  padding: 0 5px;
  color: #333333;
  font-weight: 600;
}
.nav-pageview li a:hover {
  color: #000000;
}
@media only screen and (max-width: 600px) {
  .nav-pageview li a span {
    display: none;
  }
}
.single.template-single-default .article-content {
  float: left;
  width: calc(100% -  270px);
  padding-right: 15px;
  display: inline-block;
}
.single.template-single-default .article-aside {
  width: 270px;
  padding-left: 15px;
  display: inline-block;
  float: right;
}
.single.template-single-default .article-aside picture {
  display: block;
}
.single.template-single-default .article-aside picture img {
  width: 100%;
  height: auto;
}
.single.template-single-default .article-aside .news-aside-info {
  padding: calc(15px / 2) 0;
  font-size: 90%;
}
.single.template-single-default footer {
  clear: both;
}
@media only screen and (max-width: 750px) {
  .single.template-single-default .article-content {
    float: none;
    width: 100%;
    padding-right: 0;
    display: block;
  }
  .single.template-single-default .article-aside {
    width: 100%;
    padding-left: 0;
    display: inline-block;
    padding: calc(15px * 2) 0;
  }
}
/*
 * 02) MODULE STYLES
 * import project related module styles
 */
.text-with-link {
  padding: 15px;
  background: #5b88a7;
  text-align: center;
}
.text-with-link h3 {
  color: #ffffff;
  padding-bottom: 15px;
}
.text-with-link p {
  color: #ffffff;
}
.text-with-link a,
.text-with-link a[href^="tel"]:link,
.text-with-link a[href^="tel"]:visited,
.text-with-link a[href^="tel"]:hover {
  font-weight: 600;
  color: #ffffff;
}
.text-with-link a:hover,
.text-with-link a[href^="tel"]:link:hover,
.text-with-link a[href^="tel"]:visited:hover,
.text-with-link a[href^="tel"]:hover:hover {
  color: #e7590b;
}
.member-form-data h2,
.member-form-data h3 {
  color: #5b88a7;
}
.member-form-data ul {
  list-style: none;
}
ul.user-account-infobox {
  list-style: none;
}
ul.user-account-infobox > li {
  padding: calc(15px / 2) 0;
  margin-bottom: calc(15px / 2);
}
ul.user-account-infobox > li:not(:first-child) {
  border-top: 1px solid #5b88a7;
}
ul#block_HTMLBlock,
ul.block-element,
ul#block_actionButtons,
ul.recursive-listing {
  list-style: none;
}
.ordersmyordersmodule .action-panel {
  overflow: hidden;
  padding: 10px 0;
  text-align: right;
}
.ordersmyordersmodule .action-panel a {
  font-family: 'Roboto', sans-serif;
}
.ordersmyordersmodule #searchInFilterTbl {
  width: 100%;
  padding: 5px 0;
  margin: calc(15px / 2) 0;
}
.ordersmyordersmodule table.overview {
  width: 100%;
}
.ordersmyordersmodule table.overview td {
  padding: 3px 5px 3px 0;
}
.ordersmyordersmodule table.overview th {
  padding: 3px 5px 3px 0;
  border-bottom: solid 2px #e7590b;
}
.ordersmyordersmodule table.overview tbody tr:nth-child(n+2) td {
  border-top: solid 1px #e7590b;
}
ul.card-view.link-button.address-list > li .card-item-border .content-link {
  padding-top: 15px;
}
ul.card-view.link-button.address-list > li .card-item-border .content-link .item-actions-edit,
ul.card-view.link-button.address-list > li .card-item-border .content-link .item-actions-delete {
  cursor: pointer;
}
ul.card-view.link-button.address-list > li .card-item-border .content-link .item-actions-edit:hover,
ul.card-view.link-button.address-list > li .card-item-border .content-link .item-actions-delete:hover {
  color: #e7590b;
}
/*
 * CHECKOUT
 */
ul#list-checkout {
  width: calc(100% + 30px);
  overflow: hidden;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px 15px;
}
ul#list-checkout > li {
  display: block;
  float: left;
  width: 20%;
  padding: 15px;
  position: relative;
  text-align: center;
  border-bottom: solid 2px rgba(91, 136, 167, 0.2);
  color: rgba(91, 136, 167, 0.2);
}
ul#list-checkout > li.prev-item {
  border-bottom-color: #706f6f;
}
ul#list-checkout > li.active-item {
  border-bottom-color: #e7590b;
  color: #5b88a7;
}
ul#list-checkout a {
  color: #706f6f;
}
ul#list-checkout a:hover {
  color: #e7590b;
}
ul#list-checkout span.checkout-step {
  display: block;
  font-size: 180%;
  font-weight: 600;
  padding-bottom: 10px;
}
/*
 * CHECKOUT - form fields
 */
div#billAddressWrap,
div#deliveryAddressWrap {
  padding-bottom: 15px;
}
#form-checkout h2 {
  padding: 10px 0 calc(15px / 2) 0;
}
#form-checkout .default-field textarea {
  font-size: 100%;
  font-family: 'Roboto', sans-serif;
}
#form-checkout .default-field.radio .input-wrapper {
  width: 100%;
  float: left;
  text-align: left;
  padding-right: 5px;
  line-height: 15px;
}
#form-checkout .default-field.radio input {
  width: 15px;
  height: 15px;
}
#form-checkout .default-field.radio label #form-checkout .default-field.checkbox label {
  width: calc(100% - 40px);
  line-height: 15px;
  display: inline-block;
}
#form-checkout .default-field.checkbox .input-wrapper {
  line-height: 15px;
}
#form-checkout .default-field.checkbox input {
  margin-top: 5px;
  width: 15px;
  height: 15px;
}
.checkbox .input-wrapper label {
  float: right;
}
ul#order-overview {
  margin: 15px 0;
}
ul#order-overview li {
  list-style: none;
}
ul#order-overview li span.overview-label {
  display: inline-block;
  width: 150px;
  font-weight: 600;
  vertical-align: top;
}
ul#order-overview li span.overview-content {
  display: inline-block;
  width: calc(100% - 150px);
}
ul#order-overview > li:nth-child(n+2) {
  border-top: solid 1px #e6e6e6;
  margin-top: 5px;
  padding-top: 5px;
  overflow: hidden;
}
ul#order-files {
  display: inline-block;
}
ul.form-entries.card-view.border > li {
  padding-bottom: 75px;
}
ul.form-entries.card-view.border > li .card-item-border {
  border-color: #ccc;
  border-radius: 3px;
}
ul.form-entries.card-view.border > li .card-item-border .content-link a {
  border-radius: 3px;
  border: solid 1px #5b88a7;
  background: #ffffff;
  color: #5b88a7;
}
ul.form-entries.card-view.border > li .card-item-border .content-link a:hover {
  border: solid 1px #5b88a7;
  background: #5b88a7;
  color: #ffffff;
}
/* Button Next/Prev */
.button-panel {
  text-align: right;
  padding-top: 15px;
  clear: both;
}
.button-panel button {
  padding: 10px 15px;
  font-size: 100%;
  background: #5b88a7;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #5b88a7;
}
.button-panel button:hover {
  background: #ffffff;
  color: #5b88a7;
}
.button-panel button:disabled {
  background: rgba(91, 136, 167, 0.2);
  color: #5b88a7;
}
#moduleContent .button-panel a {
  padding: 10px 15px;
  font-weight: 400;
  background: rgba(91, 136, 167, 0.2);
  color: #5b88a7;
  margin-right: 10px;
  border: 1px solid rgba(91, 136, 167, 0.2);
}
#moduleContent .button-panel a:hover {
  background: #ffffff;
  color: #5b88a7;
}
ul.address-list {
  margin-top: 15px;
}
ul.address-list li.active-address {
  color: #ffffff;
}
ul.address-list li.active-address .content-headline {
  color: #ffffff;
}
ul.address-list li.active-address .card-item-border {
  background: #5b88a7;
}
ul.address-list li .card-item-wrap:hover {
  background: transparent !important;
}
.Addresses-basic .frontend-main ul.cols > li,
.User-basic .frontend-main ul.cols > li {
  margin: 0 !important;
}
.DropZone,
.ImageDropZoneMulti {
  border: 1px dashed rgba(91, 136, 167, 0.8);
  border-radius: 5px;
  color: rgba(91, 136, 167, 0.8);
  min-height: 70px;
  padding: 2% 5%;
  margin: 1% 0;
  cursor: url("https://auftrag.implant-oris.de/images//default/AddCursor.png"), auto;
  text-align: center;
}
.DropZone:hover,
.ImageDropZoneMulti:hover {
  background: #19a56c;
  color: #ffffff;
  text-shadow: 1px 1px 1px #1a1a1a;
  border: 1px dashed #ffffff;
}
.DropZone ul,
.ImageDropZoneMulti ul {
  margin: 0;
  padding: 0;
}
.DropZone .SelectedFileOverview,
.ImageDropZoneMulti .SelectedFileOverview {
  list-style: none;
}
.DropZone > ul > li {
  float: left;
  list-style: outside none none;
  margin: 0 15px;
  min-height: 30px;
  width: 210px;
}
.DropZone > ul > li span {
  font-size: 70%;
  font-weight: bold;
}
.ImageDropZoneMulti > ul > li {
  float: left;
  list-style: outside none none;
  margin: 6px;
}
.ImageDropZoneMulti > ul > li > span {
  font-size: 70%;
  font-weight: bold;
}
.UploadBlockScreen {
  background: #666666;
  color: #202020;
  font-size: 5vh;
  font-weight: bold;
  height: 100%;
  left: 0;
  opacity: 0.5;
  padding-top: 50vh;
  position: fixed;
  text-align: center;
  text-shadow: 2px 2px 5px #ffffff;
  top: 0;
  width: 100%;
  z-index: 999;
}
/* FileHandling MSG */
ul#file-list .msg-success {
  gap: 15px;
}
ul#file-list .msg-success .remove-uploaded-file {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
ul#file-list .msg-success .remove-uploaded-file:hover {
  color: #880000;
}
/*
 * RECURSIVE - DATA FORM
 */
.form-data ul.recursive-listing.level-1 > li {
  /*font-size: 120%;*/
  color: #5b88a7;
  overflow: hidden;
}
.form-data label {
  width: 100%;
  display: block;
}
.form-data .label-fake {
  width: 100%;
  display: block;
}
.form-data input[type=text] {
  width: 100%;
  font-size: 100%;
}
.form-data textarea {
  width: 100%;
  font-size: 100%;
}
.form-data .default-field.radio {
  width: 33.333%;
  float: left;
}
.form-data .default-field.radio label {
  display: inline-block;
  width: calc(100% - 30px);
  float: right;
  text-align: left;
}
.form-data .default-field.radio .input-wrapper {
  width: 30px;
  text-align: center;
  float: left;
}
.form-data .default-field.radio input {
  width: 20px;
  height: 20px;
}
.form-data .default-field.checkbox {
  width: 33.333%;
  float: left;
}
.form-data .default-field.checkbox label {
  display: inline-block;
  width: calc(100% - 30px);
  float: right;
  text-align: left;
}
.form-data .default-field.checkbox .input-wrapper {
  /*width: 30px;*/
  text-align: center;
  float: left;
}
.form-data .default-field.checkbox input {
  width: 20px;
  height: 20px;
}
.form-data .default-field.leftCB.checkbox .input-wrapper {
  width: calc(100% - 40px);
  padding-left: 5px;
  padding-top: 3px;
}
.form-data .default-field.leftCB.checkbox .input-wrapper label {
  width: 100%;
  float: none;
}
/*
 * RECURSIVE - PRODUCT CONFIG
 */
.form-products ul.recursive-listing li li {
  margin-left: 25px;
}
.form-products ul.recursive-listing li:hover {
  background: #e7590b;
}
.form-products ul.recursive-listing > li {
  line-height: 40px;
  background: rgba(91, 136, 167, 0.2);
  color: #ffffff;
}
.form-products ul.recursive-listing input[type=radio] {
  width: 20px;
  height: 20px;
  display: block;
  margin: 10px;
  float: left;
}
.form-products ul.recursive-listing input[type=checkbox] {
  width: 20px;
  height: 20px;
  display: block;
  margin: 10px;
  float: left;
}
.form-products ul.recursive-listing label {
  display: block;
  width: calc(100% - 40px);
  cursor: pointer;
}
.form-products .recursive-wrap {
  overflow: hidden;
}
.form-products ul.recursive-listing.level-1 > li {
  font-size: 120%;
  color: #5b88a7;
}
.form-products ul.recursive-listing.level-1 > li:nth-child(n+2) {
  margin-top: 5px;
}
.form-products ul.recursive-listing.level-1 > li:hover {
  background: #aaaaaa;
}
.form-products ul.recursive-listing.level-1 > li.active {
  background: #aaaaaa;
}
.form-products ul.recursive-listing.level-1 li:last-child {
  margin-bottom: 5px;
}
.form-products ul.recursive-listing.level-2 li:last-child {
  margin-bottom: 5px;
}
.form-products ul.recursive-listing.level-2 > li {
  background: #aaaaaa;
}
.form-products ul.recursive-listing.level-2 > li:nth-child(n+2) {
  border-top: solid 1px #ffffff;
}
.form-products ul.recursive-listing.level-2 > li:hover {
  background: #666666;
}
.form-products ul.recursive-listing.level-2 > li.active {
  background: #666666;
}
.form-products ul.recursive-listing.level-3 li:last-child {
  margin-bottom: 5px;
}
.form-products ul.recursive-listing.level-3 > li {
  background: #666666;
}
.form-products ul.recursive-listing.level-3 > li:nth-child(n+2) {
  border-top: solid 1px #ffffff;
}
.form-products ul.recursive-listing.level-3 > li:hover {
  background: #e7590b;
}
.form-products ul.recursive-listing.level-3 > li.active {
  background: #e7590b;
}
.form-products .field-text {
  font-size: 80%;
  padding-left: 40px;
}
ul.status-indicator {
  list-style: none;
  display: inline;
  margin: 7px;
  float: right;
  line-height: normal;
}
ul.status-indicator > li {
  display: inline-block;
  margin: 0 !important;
}
ul.status-indicator > li:nth-child(n+2) span {
  margin-left: 1px;
}
ul.status-indicator > li span.state-icon {
  display: inline-block;
  padding: 0 5px;
  line-height: normal;
  background: #c7c6c6;
}
ul.status-indicator > li span.state-icon .fa {
  opacity: .4;
}
ul.status-indicator > li span.state-icon.state_active .fa {
  opacity: 1;
}
ul.status-indicator > li span.state-icon.state_red {
  color: #880000;
}
ul.status-indicator > li span.state-icon.state_yellow {
  color: #efc940;
}
ul.status-indicator > li span.state-icon.state_green {
  color: #069f04;
}
ul.status-indicator-legend {
  list-style: none;
  padding: 15px 0;
  overflow: hidden;
}
ul.status-indicator-legend > li {
  display: inline-block;
  padding-right: 30px;
}
ul.status-indicator-legend > li span.state_red {
  color: #880000;
}
ul.status-indicator-legend > li span.state_yellow {
  color: #efc940;
}
ul.status-indicator-legend > li span.state_green {
  color: #069f04;
}
ul.status-indicator-legend > li span {
  display: inline-block;
  padding-right: 5px;
}
.overview-content span.state-icon.state_red {
  color: #880000;
}
.overview-content span.state-icon.state_yellow {
  color: #efc940;
}
.overview-content span.state-icon.state_green {
  color: #069f04;
}
/*
 * BASICS
 *
 * project related layout for basic content HTML tags e.g. headlines, links, lists
 *
 * this files is used by
 *	- styles.less
 *  - editor.less
 *
 * TOC
 * 01) HEADLINES
 * 02) LINKS
 * 03) PARAGRAPHS
 * 04) LISTINGS
 * 05) TABLES
 * 06) VARIOUS
 */
/*
 * 01) HEADLINES
 */
h1 {
  color: #5b88a7;
  font-family: 'Roboto', sans-serif;
  font-size: 180%;
  font-weight: 600;
  padding: 10px 0 15px;
}
h2 {
  color: #e7590b;
  font-family: 'Roboto', sans-serif;
  font-size: 160%;
  font-weight: 400;
}
h3 {
  color: #e7590b;
  font-family: 'Roboto', sans-serif;
  font-size: 120%;
  font-weight: 600;
}
h4,
h5,
h6 {
  font-family: 'Tinos', serif;
}
/*
 * 02) LINKS
 */
a,
a[href^="tel"]:link,
a[href^="tel"]:visited,
a[href^="tel"]:hover {
  text-decoration: none;
  color: #5b88a7;
}
a:hover,
a[href^="tel"]:link:hover,
a[href^="tel"]:visited:hover,
a[href^="tel"]:hover:hover {
  color: #e7590b;
}
/*
 * 03) PARAGRAPHS (e.g. p, em, strong)
 */
p {
  color: #696969;
}
/*
 * 04) LISTINGS
 */
/* Card-View */
ul.card-view.border > li {
  padding-bottom: 50px;
}
ul.card-view.border .card-item-border {
  border: solid 1px #5b88a7;
  background: #fff;
  box-shadow: 0px 0px 15px 1px #ccc;
}
ul.card-view .content-title a {
  color: #5b88a7;
}
ul.card-view .content-title a:hover {
  color: #e7590b;
}
ul.card-view > li .card-item-border .content-link {
  text-align: right;
  position: absolute;
  bottom: 15px;
  right: 15px;
  left: 0px;
}
ul.card-view > li .card-item-border .content-link a {
  border: 1px solid #5b88a7;
  background: #5b88a7;
  padding: 10px 15px;
  color: #5b88a7;
  display: inline;
  font-size: 100%;
  font-weight: 600;
  position: relative;
  width: 100%;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
ul.card-view > li .card-item-border .content-link a:hover {
  background: #ffffff;
  color: #5b88a7;
}
/* List View */
ul.list-view {
  margin-bottom: 0px;
}
ul.list-view.cols > li:nth-child(n+2) {
  padding-top: 0px;
  border-top: none;
}
ul.list-view li:nth-child(2n) .list-item {
  background: #e7590b;
}
ul.list-view li:nth-child(2n + 1) .list-item {
  background: #5b88a7;
}
ul.list-view li .list-item-image {
  width: 33.333%;
  padding-right: 15px;
}
ul.list-view li .list-item-content {
  width: 66.666%;
  padding: 0px 0px 50px 15px;
}
ul.list-view li .list-item-content .content-title {
  padding-bottom: 0px;
}
ul.list-view li .list-item-content .content-title a {
  color: #5b88a7;
}
ul.list-view li .list-item-content .content-title a:hover {
  color: #5b88a7;
}
ul.list-view li .list-item-content .content-link {
  padding: 5px 0 10px;
  bottom: 0px;
  right: 15px;
}
ul.list-view li .list-item-content .content-link a {
  background: #5b88a7;
  padding: 5px 30px;
  color: #5b88a7;
  border: 1px solid #5b88a7;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
ul.list-view li .list-item-content .content-link a:hover {
  background: #ffffff;
  color: #5b88a7;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
/*
 * 05) TABLES
 */
/*
 * 06) VARIOUS (e.g. cite, address, dl)
 */
hr {
  height: 1px;
  border: 1px solid #5b88a7;
  margin: 75px auto;
  overflow: visible;
  width: 60%;
}
.wrap {
  max-width: 1280px;
}
.simple-button {
  font-family: 'Tinos', serif;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
input.button,
button.button,
.submitBtn,
.login-form .submitBtn,
.password-form .submitBtn {
  border: 1px solid #5b88a7;
  color: #5b88a7;
  background: #ffffff;
}
input.button:hover,
button.button:hover,
.submitBtn:hover,
.login-form .submitBtn:hover,
.password-form .submitBtn:hover {
  background: #5b88a7;
  color: #ffffff;
}
.transitions {
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
a#scrollToTop {
  bottom: 15px;
  border: solid 1px #ffffff;
  background: rgba(91, 136, 167, 0.8);
}
a#scrollToTop:hover {
  background: #5b88a7;
}
/*
 * PAGE LAYOUT
 *
 * layout for page main elements e.g. header, section, aside, footer
 *
 *  * this files is used by
 * 	- styles.less
 *
 * TOC
 * 01) BODY
 * 02) HEADER
 * 03) FOOTER
 * 04) MAIN
 * 05) NAVIGATION
 * 06) HELPER
 * 07) VARIOUS
 */
/*
 * 01) BODY
 */
body {
  background: #fffafa;
  font-family: 'Roboto', sans-serif;
  color: #696969;
}
/*
 * 02) HEADER
 */
#page-header {
  z-index: 100;
}
#page-header h1.page-title {
  padding: 0;
  line-height: initial;
}
#page-header .wrap-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* General */
#page-topline {
  background: #5b88a7;
  font-size: calc(100% - 15%);
}
#page-topline a {
  color: #ffffff;
}
#page-topline a:hover {
  color: #5b88a7;
}
/* Logo */
.wrap-page-logo {
  display: flex;
  gap: 15px;
  align-items: center;
}
.wrap-page-logo .page-title {
  color: #696969;
  font-size: 85%;
  width: 205px;
}
.wrap-page-logo a#page-logo {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: auto;
}
.wrap-page-logo a#page-logo img,
.wrap-page-logo a#page-logo object {
  display: block;
  width: auto;
  height: 60px;
  padding: calc(15px / 2) 0;
}
.wrap-page-logo a#page-logo:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}
#page-image {
  background-color: #5b88a7;
  padding-bottom: 12%;
  border-top: 2px solid #5b88a7;
  border-bottom: 2px solid #5b88a7;
}
#page-image picture img {
  object-fit: contain;
}
/* Breadcrumbs */
div#page-breadcrumbs {
  background: #ffffff;
  padding: 5px 0;
  font-size: 90%;
}
div#page-breadcrumbs #breadcrumb li {
  color: #696969;
}
div#page-breadcrumbs #breadcrumb li a {
  color: #696969;
}
div#page-breadcrumbs #breadcrumb li a:hover {
  color: #e7590b;
}
/*
 * 03) FOOTER
 */
#footer-image {
  display: block;
  position: relative;
  width: 100%;
  clear: both;
  height: 40vh;
  text-align: center;
}
#footer-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
footer#page-footer {
  background: #5b88a7;
  font-size: 100%;
}
footer#page-footer h2 {
  color: #ffffff;
  padding: 0 0 15px 0;
}
footer#page-footer ul.widgets {
  padding: calc(15px * 2) 0;
}
footer#page-footer ul.widgets > li {
  padding-bottom: 0;
}
footer#page-footer ul.widgets > li.widget-pagelogo {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer#page-footer ul.widgets > li.widget-pagelogo img {
  width: auto;
  max-width: 150px;
  height: auto;
}
footer#page-footer #footer-navigation {
  display: inline-block;
  list-style: none;
}
footer#page-footer #footer-navigation li {
  display: inline-block;
  color: #ffffff;
}
footer#page-footer #footer-navigation li a {
  color: #ffffff;
}
footer#page-footer #footer-navigation li a:hover {
  color: #e7590b;
}
div#footer-copyright {
  border-top: 1px solid #ffffff;
  padding: calc(15px / 2) 0;
  font-size: 90%;
  text-align: center;
}
div#footer-copyright ul {
  display: inline-block;
  list-style: none;
}
div#footer-copyright ul li {
  display: inline-block;
  color: #ffffff;
}
div#footer-copyright ul li:nth-child(n+2):before {
  content: '|';
  width: 10px;
  display: inline-block;
  text-align: center;
}
div#footer-copyright ul li a {
  color: #ffffff;
}
div#footer-copyright ul li a:hover {
  color: #e7590b;
}
/*
 * 04) MAIN
 */
/* ASIDE */
.default aside#page-aside ul.navi > li a {
  margin: 0;
  padding: 10px 0;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.default aside#page-aside ul.navi > li:hover a {
  color: #e7590b;
}
.default aside#page-aside ul.navi > li.active-item a {
  color: #ffffff;
  background: #5b88a7;
  padding-left: 15px;
}
.default section#page-content h1 {
  padding-top: 0;
}
.checkout section#page-content,
.customer section#page-content {
  width: 100% !important;
  float: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
div#login-form_default {
  width: 350px;
}
.plugin-text-with-image .image-content.contain img {
  position: relative !important;
}
/*
 * 05) NAVIGATION
 */
.nav-item-wrap .item > .fa {
  padding-right: 5px;
}
@media only screen and (min-width: 1025px) {
  .main-navigation {
    /* Root Level */
    float: unset;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .main-navigation a,
  .main-navigation span {
    font-family: 'Roboto', sans-serif;
  }
  .main-navigation > li {
    float: left;
    display: inline-block;
    /* first level */
  }
  .main-navigation > li .sub-navigation li {
    line-height: 20px;
  }
  .main-navigation > li > span.nav-item-wrap {
    height: 40px;
    line-height: 40px;
    background: #fffafa;
    border-bottom: 3px solid transparent;
  }
  .main-navigation > li > span.nav-item-wrap a,
  .main-navigation > li > span.nav-item-wrap span {
    font-size: 105%;
    color: #5b88a7;
    font-weight: 400;
    display: inline;
    letter-spacing: 1px;
  }
  .main-navigation > li > span.nav-item-wrap .dropdown-indicator.level-0 {
    color: #5b88a7;
  }
  .main-navigation > li:hover > span.nav-item-wrap {
    background: #5b88a7;
    border-bottom: 3px solid #e7590b;
  }
  .main-navigation > li:hover > span.nav-item-wrap a span {
    color: #ffffff;
  }
  .main-navigation > li:hover > span.nav-item-wrap .dropdown-indicator.level-0 {
    color: #ffffff;
  }
  .main-navigation > li:hover ul.level-1 {
    height: 500px;
  }
  .main-navigation > li.active-item > span.nav-item-wrap {
    background: #5b88a7;
    border-bottom: 3px solid #e7590b;
  }
  .main-navigation > li.active-item > span.nav-item-wrap a span {
    color: #ffffff;
  }
  .main-navigation > li.active-item > span.nav-item-wrap .dropdown-indicator.level-0 {
    color: #ffffff;
  }
  .main-navigation > li ul > li:nth-child(n+2) {
    border-top: 1px solid #ffffff;
  }
  .main-navigation > li ul.level-1 {
    width: 250px;
    /* Second Level */
  }
  .main-navigation > li ul.level-1 > li.with-dropdown span.dropdown-indicator {
    top: 0px;
    right: 0px;
    width: 40px;
    padding: 10px;
    color: #ffffff;
  }
  .main-navigation > li ul.level-1 > li.with-dropdown span.dropdown-indicator:before {
    content: '\f054';
    font-family: fontAwesome;
  }
  .main-navigation > li ul.level-1 > li:hover > span.nav-item-wrap a {
    background: #e7590b;
  }
  .main-navigation > li ul.level-1 > li:hover > span.nav-item-wrap a span {
    color: #ffffff;
  }
  .main-navigation > li ul.level-1 a {
    padding: 10px;
    background: #5b88a7;
    color: #ffffff;
  }
  .main-navigation > li ul.level-2 {
    left: 250px;
    top: 0px;
  }
  .main-navigation > li ul.level-2 li > span.nav-item-wrap a {
    background: #e7590b;
    color: #ffffff;
  }
  .main-navigation > li ul.level-2 li:hover > span.nav-item-wrap a {
    background: #e4e4e4;
  }
  .main-navigation > li:nth-last-child(2) ul.level-2,
  .main-navigation > li:last-child ul.level-2 {
    left: -250px;
  }
}
/*
 * 06) HELPER
 */
/*
 * 07) VARIOUS
 */
/* List with Icon */
ul.iconlist {
  list-style: none;
  margin: 15px 0 15px 0px;
}
ul.iconlist li {
  list-style: none;
  padding: 5px 0 5px 30px;
  position: relative;
}
ul.iconlist li:before {
  content: "\f08a";
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  color: #e7590b;
  font-size: 125%;
}
/* TABS */
#tabs {
  border: none;
  padding: 0;
  background: transparent;
}
#tabs .tabs-menu,
#tabs .ui-tabs-nav {
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
  border-radius: 0;
}
#tabs .tabs-menu > li,
#tabs .ui-tabs-nav > li {
  margin: 0px !important;
  padding: 0;
  border: none;
  border-radius: 0;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  cursor: pointer;
}
#tabs .ui-tabs-nav {
  justify-content: center;
  background: none;
  border: none;
}
#tabs .ui-tabs-nav > li {
  width: 200px;
  display: flex;
  padding: 0 10px;
  background: none;
  justify-content: center;
}
#tabs .ui-tabs-nav > li a {
  border-bottom: 2px solid transparent;
  text-transform: uppercase;
  font-size: 95%;
  display: inline-block;
  color: #696969;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
#tabs .ui-tabs-nav > li a:hover {
  border-bottom: 2px solid #5b88a7;
}
#tabs .ui-tabs-nav > li.ui-state-active a {
  border-bottom: 2px solid #5b88a7;
  color: #5b88a7;
}
/*
 * styles available in editor and frontend
 * extending basic RTE manager styles
 */
