/*-----------------------------------------------------------------------------

-------------------------------------------------------------------------------

CSS INDEX
===================

00. default 
01. Header
02. Ãœber mich
03. Angebot
04. Ablauf
05. Fragen & Antworten
06. Kontakt
07. Footer
08. Preloder

-----------------------------------------------------------------------------------*/
/*===========================
     00. default
===========================*/
@import url("https://fonts.googleapis.com/css?family=Merriweather|Montserrat:300,400,500,600,700,800&display=swap");
body {
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #333;}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;}

.lebensfaeden {
  font-family: 'Merriweather', serif;
  color: #557560;
  font-weight: bold; /* Schrift fett */
}

img {max-width: 100%; vertical-align: middle;}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;}

a:focus,
a:hover {text-decoration: none;}

i,
span,
a {
  display: inline-block;}

h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Merriweather";
font-weight: 400;
color: #666;
margin: 0px;}

h2 {font-size: 23px; font-weight: 500; letter-spacing: 0.2em;}

h3 {font-size: 24px; color: #557560; margin-bottom: 20px;}


h4 {font-size: 28px;
font-style: bold;
font-weight: 900;
line-height: 40px;
text-align: center; 
color: #557560;}

h5 {
font-size: 22px;
font-style: regular;
font-weight: 500;
line-height: 28px;
text-align: center; 
margin-top: 5px;
color: #333}

h6 {font-size: 16px;}

ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;}

p {
  font-size: 18px;
  font-weight: 200;
  line-height: 28px;
  color: #333;
  margin: 5px;}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;}

/*===== All Button Style =====*/
.main-btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 2px solid #557560;
  padding: 0 40px;
  font-size: 16px;
  line-height: 46px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background-color: #557560;
  -webkit-box-shadow: 0px 15px 40px 0px rgba(213, 154, 87, 0.34);
  -moz-box-shadow: 0px 15px 40px 0px rgba(213, 154, 87, 0.34);
  box-shadow: 0px 15px 40px 0px rgba(213, 154, 87, 0.34);}
  .main-btn:hover {
    background-color: #fff;
    color: #d3be8a;
    border-color: #557560;}

/*===== All Section Title Style =====*/
.section_title .title {font-size: 45px; color: #557560;}
  @media (max-width: 767px) {.section_title .title {font-size: 34px;}}

.section_title p {
  font-size: 20px;
  line-height: 22px;
  color: #6666666;}
@media (max-width: 767px) {.section_title p {font-size: 24px;}}

.section_title .text {
  font-size: 14px;
  line-height: 22px;
  color: #333333;
  margin-top: 30px;}

/*===========================
     01.HEADER 
===========================*/
/*===== NAVBAR =====*/
.header_navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background-color: rgba(255, 255, 255, 0.07);}

.navbar {
  padding: 15px 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;}

.navbar-brand {
  padding: 0;}
  .navbar-brand img {
    width: 85px;}

.navbar-toggler {
  padding: 0;}
  .navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #333;
    display: block;
    margin: 5px 0;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;}
    
.sticky {
  position: fixed;
  z-index: 99;
  background-color: #fff;
  -webkit-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s; }
  .sticky .navbar {
    padding: 10px 0; }
    

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px;}}
@media (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px;}}

.navbar-nav .nav-item {
  margin-left: 45px;
  position: relative;}
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .navbar-nav .nav-item {
      margin-left: 40px;}}
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item {
      margin: 0;}}
  @media (max-width: 767px) {
    .navbar-nav .nav-item {
      margin: 0;}}
  .navbar-nav .nav-item a {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    padding: 10px 0;
    position: relative;
    font-family: "Montserrat", sans-serif;
    position: relative;}
    
  .navbar-nav .nav-item a:hover {color: #557560;}
  .navbar-nav .nav-item.active a, .navbar-nav .nav-item.active a:hover {color: #d3be8a;}
  
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .navbar-nav .nav-item a {
        display: block;
        padding: 4px 0;
        color: #6666666;}}
    @media (max-width: 767px) {
      .navbar-nav .nav-item a {
        display: block;
        padding: 4px 0;
        color: #6666666;}}

/*===== SLIDER =====*/
.single_slider {
  height: 800px;
  position: relative;}
@media only screen and (min-width: 1400px) {.single_slider {height: 800px;}}
@media (max-width: 767px) {.single_slider {height: 600px;}}

.single_slider::before {position: absolute;content: ''; width: 100%; height: 100%; left: 0; top: 0;}

.slider_content {}

.slider_content .slider_sub_title {padding-top: 200px; color: #557560;}

    @media only screen and (min-width: 768px) and (max-width: 991px) {
.slider_content .slider_sub_title {font-size: 24px;}}
    @media (max-width: 767px) {
.slider_content .slider_sub_title {font-size: 18px;}}

.slider_content .slider_title {font-size: 102px; color: #557560; margin-top: 15px;}
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
.slider_content .slider_title {font-size: 102px;}}
    @media only screen and (min-width: 768px) and (max-width: 991px) {
.slider_content .slider_title {font-size: 82px;}}
    @media (max-width: 767px) {
.slider_content .slider_title {font-size: 42px;}}
    @media only screen and (min-width: 576px) and (max-width: 767px) {
.slider_content .slider_title {font-size: 40px;}}

.slider_content .description {font-size: 40px; font-weight: 400; color: #557560;}
    @media only screen and (min-width: 768px) and (max-width: 991px) {
.slider_content .description {font-size: 24px;}}
    @media (max-width: 767px) {
.slider_content .description {font-size: 18px;}}

/*===========================
     02.Über mich 
===========================*/
.single_couple .couple_image {overflow: hidden; border-radius: 10px;}
.single_couple .couple_image img {
    width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;}
    
.single_couple .couple_content {
  width: 90%;
  margin: 0 auto;
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 32px 0px rgba(177, 177, 177, 0.16);
  -moz-box-shadow: 0px 3px 32px 0px rgba(177, 177, 177, 0.16);
  box-shadow: 0px 3px 32px 0px rgba(177, 177, 177, 0.16);
  padding: 30px;
  border-radius: 10px;
  position: relative;
  margin-top: -70px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 5;}
  @media only screen and (min-width: 768px) and (max-width: 991px) {
.single_couple .couple_content {padding: 15px;}}
  @media (max-width: 767px) {
.single_couple .couple_content {padding: 15px;}}
  @media only screen and (min-width: 576px) and (max-width: 767px) {
.single_couple .couple_content {padding: 30px;}}
.single_couple .couple_content .couple_name {font-size: 36px; color: #557560;}
    @media only screen and (min-width: 768px) and (max-width: 991px) {
.single_couple .couple_content .couple_name {font-size: 30px;}}
    @media (max-width: 767px) {
.single_couple .couple_content .couple_name {font-size: 30px;}}
    @media only screen and (min-width: 576px) and (max-width: 767px) {
.single_couple .couple_content .couple_name {font-size: 40px;}}

.single_couple .couple_content p {font-weight: 300; margin-top: 25px;}

.single_couple:hover .couple_image img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);}
  
.single_couple:hover .couple_content {
  -webkit-box-shadow: 0px 3px 50px 0px rgba(177, 177, 177, 0.3);
  -moz-box-shadow: 0px 3px 50px 0px rgba(177, 177, 177, 0.3);
  box-shadow: 0px 3px 50px 0px rgba(177, 177, 177, 0.3);}


/*===========================
     03. Angebot
===========================*/

.event_area {background-color: #FCF4EC}
.single_event .event_image {
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;}
.single_event .event_image img {
    width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;}
.single_event .event_content {
  padding: 25px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(177, 177, 177, 0.35);
  -moz-box-shadow: 0px 3px 6px 0px rgba(177, 177, 177, 0.35);
  box-shadow: 0px 3px 6px 0px rgba(177, 177, 177, 0.35);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;}
  .single_event .event_content p {
    margin-top: 15px;}
.single_event:hover .event_image img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);}
.single_event:hover .event_content {
  -webkit-box-shadow: 0px 3px 16px 0px rgba(177, 177, 177, 0.35);
  -moz-box-shadow: 0px 3px 16px 0px rgba(177, 177, 177, 0.35);
  box-shadow: 0px 3px 16px 0px rgba(177, 177, 177, 0.35);}

/*===========================
     04.Ablauf
===========================*/
.love_wrapper {position: relative; margin-top: 30px;}
  @media (max-width: 767px) {
.love_wrapper {margin-top: 0;}}

.love_wrapper::before {
    width: 1px;
    height: 100%;
    position: absolute;
    content: '';
    background-color: #d3be8a;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);}
    @media (max-width: 767px) {
.love_wrapper::before {display: none;}}

.single_love .love_content {width: 45%;}
  @media (max-width: 767px) {
.single_love .love_content {width: 100%;margin-top: 30px;}}

.single_love .love_content .love_title {font-size: 22px; color: #d3be8a;}
.single_love .love_content p {margin-top: 30px; font-weight: 300;}
.single_love .love_date, .single_love .love_date p,.single_love .love_date li {font-size: 20px; width: 10%; text-align: center; margin-top: 100px; color: #557560;}
  @media (max-width: 767px) {
.single_love .love_date {width: 100%; margin-top: 30px;}}

.single_love .love_image {width: 45%;}
  @media (max-width: 767px) {
.single_love .love_image {width: 100%; margin-top: 30px;}}

/* Mobile: love_wrapper zentrieren */
@media (max-width: 991px) {
    .love_wrapper {
        text-align: center !important;
    }

    /* falls darin Spalten oder Flex-Elemente sind */
    .love_wrapper .row,
    .love_wrapper .col-lg-6,
    .love_wrapper .col-md-6 {
        text-align: center !important;
        justify-content: center !important;
    }

    /* falls darin Buttons vorhanden sind */
    .love_wrapper .main-btn {
        margin-left: auto;
        margin-right: auto;
        display: inline-block;
    }
}


/*===========================
    05.Fragen & Antworten
===========================*/
.testimonial_area {
  margin-top: 80px;
  background-color: #FCF4EC;
  position: relative;
  overflow: hidden;
  z-index: 9;}

.testimonial_shape_1 {
  position: absolute;
  bottom: -30px;
  left: 0;
  z-index: -1;}
  .testimonial_shape_1 img {
    width: 130px;
    opacity: 0.31;}

.testimonial_shape_2 {
  position: absolute;
  top: -30px;
  right: 0;
  z-index: -1;}
  .testimonial_shape_2 img {
    width: 130px;
    opacity: 0.31;}

.single_testimonial .testimonial_author img {
margin: 30px 0 10px 0;
  border-radius: 50%;
  padding: 5px;
  -webkit-box-shadow: 0px 3px 13px 0px rgba(213, 154, 87, 0.35);
  -moz-box-shadow: 0px 3px 13px 0px rgba(213, 154, 87, 0.35);
  box-shadow: 0px 3px 13px 0px rgba(213, 154, 87, 0.35);
  display: inline-block;
  background-color: #fff;}
.single_testimonial .testimonial_content .author_name {
  margin-top: 20px;}

.testimonial_wrapper .slick-arrow {
  position: absolute;
  top: 50%;
  left: -150px;
  z-index: 9;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial_wrapper .slick-arrow {
      left: -80px; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .testimonial_wrapper .slick-arrow {
      left: -45px; } }
  .testimonial_wrapper .slick-arrow i {
    width: 50px;
    height: 50px;
    line-height: 46px;
    text-align: center;
    border: 2px solid rgba(116, 126, 136, 0.58);
    font-size: 26px;
    color: rgba(116, 126, 136, 0.58);
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .testimonial_wrapper .slick-arrow i {
        width: 40px;
        height: 40px;
        line-height: 36px;
        font-size: 20px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .testimonial_wrapper .slick-arrow i {
        width: 40px;
        height: 40px;
        line-height: 36px;
        font-size: 20px; } }
  .testimonial_wrapper .slick-arrow:hover i {
    color: #d3be8a;
    border-color: #d3be8a; }
  .testimonial_wrapper .slick-arrow.next {
    right: -150px;
    left: auto; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .testimonial_wrapper .slick-arrow.next {
        right: -80px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .testimonial_wrapper .slick-arrow.next {
        right: -45px; } }

@media only screen and (max-width: 767px) {
  .testimonial_wrapper.slick-slider {
    display: block !important;
  }

  .testimonial_wrapper .slick-track,
  .testimonial_wrapper .slick-list {
    transform: none !important;
    width: 100% !important;
    display: block !important;
    height: auto !important;
  }

  .testimonial_wrapper .single_testimonial {
    display: block !important;
    width: 100% !important;
    margin-bottom: 30px !important;
  }

  /* Pfeile und Navigation ausblenden auf Mobil */
  .testimonial_wrapper .slick-arrow,
  .testimonial_wrapper .slick-dots {
    display: none !important;
  }
}

/*===========================
       06.CONTACT
===========================*/

.contact_wrapper {
  padding: 80px 110px;
  -webkit-box-shadow: 0px 3px 32px 0px rgba(177, 177, 177, 0.16);
  -moz-box-shadow: 0px 3px 32px 0px rgba(177, 177, 177, 0.16);
  box-shadow: 0px 3px 32px 0px rgba(177, 177, 177, 0.16);
  background-color: #fff;}
  @media only screen and (min-width: 768px) and (max-width: 991px) {
.contact_wrapper {padding: 30px 50px;}}
  @media (max-width: 767px) {
.contact_wrapper {padding: 30px;}}

.single_form {margin-top: 30px;}
.single_form textarea, .single_form input {
    padding: 0 25px;
    border: 2px solid #F1F1F1;
    border-radius: 5px;
    height: 55px;
    width: 100%;
    color: #333333;
    width: 100%;}
.single_form textarea {
    padding-top: 15px;
    resize: none;
    height: 185px;}

/* ===========================
   MOBILE Styling Kontakt-Bereich
   =========================== */
@media (max-width: 767px) {

    /* Zeilenabstand vergrößern */
    #kontakt .section_title p {
        line-height: 1.8 !important;
    }

    /* Telefonnummer einfärben */
    #kontakt .section_title p {
        color: #333;
    }

    /* spezielle Telefonnummer-Farbe */
    #kontakt .section_title p br + text,
    #kontakt .section_title p span,
    #kontakt .section_title p a,
    #kontakt .section_title p strong {
        color: #557560 !important;
    }

    /* Falls die Nummer reiner Text ist, gezielt über Inhalt einfärben */
    #kontakt .section_title p:contains("+43 664 2577337") {
        color: #557560 !important;
    }
}


/*===========================
       07.FOOTER 
===========================*/
.footer_area {
  background-color: #fbf6ea;
        color: #557560;
  position: relative;
  z-index: 9;
  overflow: hidden;}

.footer_shape_1 {
  position: absolute;
  bottom: -30px;
  left: 0;
  z-index: -1;}
  .footer_shape_1 img {
    width: 130px;
    opacity: 0.31;}

.footer_copyright .social {margin-top: 30px;}
.footer_copyright .social li {display: inline-block; margin: 0 3px;}
.footer_copyright .social li a {
        width: 35px;
        height: 35px;
        line-height: 33px;
        text-align: center;
        border: 1px solid #557560;
        color: #557560;
        font-size: 16px;
        border-radius: 50%;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;}
.footer_copyright .social li a:hover {border-color: #557560; background-color: #d3be8a; color: #557560;}

@media (max-width: 767px) {
.footer_widget .footer_logo a img {width: 160px;}}

.footer_copyright {border-top: 2px solid #d3be8a; display: block; padding: 40px 0;}

/*===== BACK TO TOP =====*/
.back-to-top {
  font-size: 20px;
  color: #fff;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  background-color: #557560;
  text-align: center;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: none;}
.back-to-top:hover {color: #fff; background-color: #d3be8a;}

/*# sourceMappingURL=style.css.map */

/*===========================
       08.Preloader
===========================*/

/*===== All Preloader Style =====*/
.preloader {
  /* Body Overlay */
  position: fixed;
  top: 0;
  left: 0;
  display: table;
  height: 100%;
  width: 100%;
  /* Change Background Color */
  background: #fff;
  z-index: 99999;}
  .preloader .loader {
    display: table-cell;
    vertical-align: middle;
    text-align: center;}
    .preloader .loader .ytp-spinner {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 64px;
      margin-left: -32px;
      z-index: 18;
      pointer-events: none;}
      .preloader .loader .ytp-spinner .ytp-spinner-container {
        pointer-events: none;
        position: absolute;
        width: 100%;
        padding-bottom: 100%;
        top: 50%;
        left: 50%;
        margin-top: -50%;
        margin-left: -50%;
        -webkit-animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
        -moz-animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
        -o-animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
        animation: ytp-spinner-linspin 1568.23529647ms linear infinite;}
        .preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator {
          position: absolute;
          width: 100%;
          height: 100%;
          -webkit-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
          -moz-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
          -o-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
          animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;}
          .preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-left {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            overflow: hidden;
            right: 50%;}
          .preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-right {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            left: 50%;}
    .preloader .loader .ytp-spinner-circle {
      box-sizing: border-box;
      position: absolute;
      width: 200%;
      height: 100%;
      border-style: solid;
      /* Spinner Color */
      border-color: #d3be8a #d3be8a #FCF4EC;
      border-radius: 50%;
      border-width: 6px;}
    .preloader .loader .ytp-spinner-left .ytp-spinner-circle {
      left: 0;
      right: -100%;
      border-right-color: #FCF4EC;
      -webkit-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
      -moz-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
      -o-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
      animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;}
    .preloader .loader .ytp-spinner-right .ytp-spinner-circle {
      left: -100%;
      right: 0;
      border-left-color: #FCF4EC;
      -webkit-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
      -moz-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
      -o-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
      animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;}

/* Preloader Animations */
@-webkit-keyframes ytp-spinner-linspin {
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);}}
@keyframes ytp-spinner-linspin {
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);}}
@-webkit-keyframes ytp-spinner-easespin {
  12.5% {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);}
  25% {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);}
  37.5% {
    -webkit-transform: rotate(405deg);
    -moz-transform: rotate(405deg);
    -ms-transform: rotate(405deg);
    -o-transform: rotate(405deg);
    transform: rotate(405deg);}
  50% {
    -webkit-transform: rotate(540deg);
    -moz-transform: rotate(540deg);
    -ms-transform: rotate(540deg);
    -o-transform: rotate(540deg);
    transform: rotate(540deg);}
  62.5% {
    -webkit-transform: rotate(675deg);
    -moz-transform: rotate(675deg);
    -ms-transform: rotate(675deg);
    -o-transform: rotate(675deg);
    transform: rotate(675deg);}
  75% {
    -webkit-transform: rotate(810deg);
    -moz-transform: rotate(810deg);
    -ms-transform: rotate(810deg);
    -o-transform: rotate(810deg);
    transform: rotate(810deg);}
  87.5% {
    -webkit-transform: rotate(945deg);
    -moz-transform: rotate(945deg);
    -ms-transform: rotate(945deg);
    -o-transform: rotate(945deg);
    transform: rotate(945deg);}
  to {
    -webkit-transform: rotate(1080deg);
    -moz-transform: rotate(1080deg);
    -ms-transform: rotate(1080deg);
    -o-transform: rotate(1080deg);
    transform: rotate(1080deg);}}
@keyframes ytp-spinner-easespin {
  12.5% {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);}
  25% {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);}
  37.5% {
    -webkit-transform: rotate(405deg);
    -moz-transform: rotate(405deg);
    -ms-transform: rotate(405deg);
    -o-transform: rotate(405deg);
    transform: rotate(405deg);}
  50% {
    -webkit-transform: rotate(540deg);
    -moz-transform: rotate(540deg);
    -ms-transform: rotate(540deg);
    -o-transform: rotate(540deg);
    transform: rotate(540deg);}
  62.5% {
    -webkit-transform: rotate(675deg);
    -moz-transform: rotate(675deg);
    -ms-transform: rotate(675deg);
    -o-transform: rotate(675deg);
    transform: rotate(675deg);}
  75% {
    -webkit-transform: rotate(810deg);
    -moz-transform: rotate(810deg);
    -ms-transform: rotate(810deg);
    -o-transform: rotate(810deg);
    transform: rotate(810deg);}
  87.5% {
    -webkit-transform: rotate(945deg);
    -moz-transform: rotate(945deg);
    -ms-transform: rotate(945deg);
    -o-transform: rotate(945deg);
    transform: rotate(945deg);}
  to {
    -webkit-transform: rotate(1080deg);
    -moz-transform: rotate(1080deg);
    -ms-transform: rotate(1080deg);
    -o-transform: rotate(1080deg);
    transform: rotate(1080deg);}}
@-webkit-keyframes ytp-spinner-left-spin {
  0% {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg);}
  50% {
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    transform: rotate(-5deg);}
  to {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg);}}
@keyframes ytp-spinner-left-spin {
  0% {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg);}
  50% {
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    transform: rotate(-5deg);}
  to {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg);}}
@-webkit-keyframes ytp-right-spin {
  0% {
    -webkit-transform: rotate(-130deg);
    -moz-transform: rotate(-130deg);
    -ms-transform: rotate(-130deg);
    -o-transform: rotate(-130deg);
    transform: rotate(-130deg);}
  50% {
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    transform: rotate(5deg);}
  to {
    -webkit-transform: rotate(-130deg);
    -moz-transform: rotate(-130deg);
    -ms-transform: rotate(-130deg);
    -o-transform: rotate(-130deg);
    transform: rotate(-130deg);}}
@keyframes ytp-right-spin {
  0% {
    -webkit-transform: rotate(-130deg);
    -moz-transform: rotate(-130deg);
    -ms-transform: rotate(-130deg);
    -o-transform: rotate(-130deg);
    transform: rotate(-130deg);}
  50% {
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    transform: rotate(5deg);}
  to {
    -webkit-transform: rotate(-130deg);
    -moz-transform: rotate(-130deg);
    -ms-transform: rotate(-130deg);
    -o-transform: rotate(-130deg);
    transform: rotate(-130deg);}}