/*
Theme Name: Enfold Child
Description: A <a href='http://codex.wordpress.org/Child_Themes'>Child Theme</a> for the Enfold Wordpress Theme. If you plan to do a lot of file modifications we recommend to use this Theme instead of the original Theme. Updating will be much easier then.
Version: 1.0
Author: Kriesi
Author URI: http://www.kriesi.at
Template: enfold
*/



/*CUSTOM-BUTTON DARK*/

.custombutton {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 30px;
  margin-top:20px;
  margin-bottom:20px;
  font-size: 18px;
  font-weight: normal;
  font-family: 'space-grotesk-v21-latin-700', Helvetica, Arial, sans-serif;
  color: #1E2832 !important;
  border-left: 2px solid #1E2832 !important;
  border-bottom: 2px solid #1E2832 !important;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.6s ease-in-out;
}

/* Linien für obere und rechte Rahmenkante */
.custombutton::before,
.custombutton::after {
  content: "";
  position: absolute;
  background: #1E2832;
  transition: all 0.6s ease-in-out;
}

/* Obere Linie - 80% der Breite */
.custombutton::before {
  width: 80%;
  height: 2px;
  top: 0;
  left: 0;
}

/* Rechte Linie - 80% der Höhe */
.custombutton::after {
  width: 2px;
  height: 80%;
  right: 0;
  top: 20%;
}

/* Pfeil */
.custombutton .arrow {
  margin-left: 8px;
  font-size: 18px;
  transition: all 0.6s ease-in-out;
}

/* Hover-Effekt */
.custombutton:hover {
  color: #00666B !important;
  border-left: 2px solid #00666B !important;
  border-bottom: 2px solid #00666B !important;
}

.custombutton:hover::before {
  width: 100%;
  background: #00666B;
}

.custombutton:hover::after {
  height: 100%;
  top: 0%;
  background: #00666B;
}

.custombutton:hover .arrow {
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.6s ease-in-out;
}

.custombutton:hover span {
  transform: translateX(10px);
  transition: all 0.6s ease-in-out;
}


/*CUSTOM-BUTTON LIGHT*/

.custombuttonlight {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 30px;
  margin-top:20px;
  margin-bottom:20px;
  font-size: 18px;
  font-weight: normal;
  font-family: 'space-grotesk-v21-latin-700', Helvetica, Arial, sans-serif;
  color: #E8D682 !important;
  border-left: 2px solid #E8D682 !important;
  border-bottom: 2px solid #E8D682 !important;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.6s ease-in-out;
}

/* Linien für obere und rechte Rahmenkante */
.custombuttonlight::before,
.custombuttonlight::after {
  content: "";
  position: absolute;
  background: #E8D682;
  transition: all 0.6s ease-in-out;
}

/* Obere Linie - 80% der Breite */
.custombuttonlight::before {
  width: 80%;
  height: 2px;
  top: 0;
  left: 0;
}

/* Rechte Linie - 80% der Höhe */
.custombuttonlight::after {
  width: 2px;
  height: 80%;
  right: 0;
  top: 20%;
}

/* Pfeil */
.custombuttonlight .arrow {
  margin-left: 8px;
  font-size: 18px;
  transition: all 0.6s ease-in-out;
}

/* Hover-Effekt */
.custombuttonlight:hover {
  color: #ffffff !important;
  border-left: 2px solid #ffffff !important;
  border-bottom: 2px solid #ffffff !important;
}

.custombuttonlight:hover::before {
  width: 100%;
  background: #ffffff;
}

.custombuttonlight:hover::after {
  height: 100%;
  top: 0%;
  background: #ffffff;
}

.custombuttonlight:hover .arrow {
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.6s ease-in-out;
}

.custombuttonlight:hover span {
  transform: translateX(10px);
  transition: all 0.6s ease-in-out;
}



/* Teaser-Startseite */

.teasercontainer {
      max-width: 100%;
      margin: 0px;
      padding: 10px 25px 20px 25px;
      background-color: #ffffff;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .flex-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .teaserheading {
      flex: 0 0 80%;
      text-align: left;
      font-size: 26px;
      margin: 0;
    }

    .teasericon {
      flex: 0 0 20%;
      text-align: right;
    }

    .teasericon img {
      width: 25px;
      height: auto;
    }

    @media (max-width: 600px) {
      .teaserheading,
      .teasericon {
        flex: 0 0 100%;
        text-align: center;
        margin-top: 10px;
      }
    }


/*Add your own styles here:*/

.av-main-nav>li>a {
    padding-left: 30px;
	padding-right: 15px;
}


/*Custom Infobox*/

.avia_message_box_content {
    font-size: 18px;
    text-transform: none;
    font-weight: 400;
	padding: 5px;
}

.avia_message_box {
    text-align: left;
    margin: 30px 0;
}

.cstm-infobox-headline {
	color: #fff !important;
	font-size:20px;
	padding-bottom:20px;
}


.dash-list {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.dash-list li {
  position: relative;
  padding-left: 1.5em; /* Platz für den Gedankenstrich */
  margin-bottom: 0.5em; /* Abstand zwischen Listeneinträgen */
  text-align: left;
}

.dash-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
}

.entry-content-wrapper li {
    margin-left: 0em;
}


/* CUSTOM LIST/SYMBOL */

.entry-content-wrapper ul, ul.disc {list-style: '—  ' outside;}

ul {padding-left:20px;}


/*Custom Infobox*/

.downarrow .toggle_icon:before {
	content:"\e877";
	font-family: 'entypo-fontello';
	font-size:40px;
	top: 0px;
  position: relative;
}
.downarrow .toggle_icon {
	border:none;	
	position: absolute;
}
.downarrow .toggle_icon .vert_icon,
.downarrow .toggle_icon .hor_icon {
	display:none;
}


/*Custom Accordion*/

.av-elegant-toggle .activeTitle .toggle_icon, .av-elegant-toggle .single_toggle .toggle_icon {
    opacity: 1;
}

.av-elegant-toggle .toggle_content {
    line-height: 1.7;
    padding: 20px 35px 30px 35px;
}

.avia-admin-preview-container .av-elegant-toggle .toggler, .js_active .av-elegant-toggle .toggler {
    font-size: 20px;
    padding: 35px 55px 30px 0px;
}

.av-elegant-toggle .toggle_content {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.5;
    padding: 20px 35px 30px 0px;
}

.toggler:hover {
font-weight:800 !important; 
}

/* BEITRÄGE */

.avia_desktop .av-hover-overlay-active .av-masonry-image-container {
    opacity: 1 !important;
}

.big-preview.single-big {
    padding: 0 0 40px 0;
}

/* INFOBOX LINK */

.infoboxlink {
	color:white !important;
	text-decoration:underline !important;
}

.infoboxlink:hover {
	color:#e8d582 !important;
	opacity:1 !important;
	text-decoration:none !important;
}
