
/* #################### */
/* #################### */
/* ##### Allgemein #### */
/* #################### */
/* #################### */

.marck
{
    font-family: 'Marck Script', cursive;
    color: #F6C315 !important;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
@media only screen and (max-width: 1480px)
{
 body p, body h2 {
    padding-right: 30px;
 }
 #start h2
 {
    padding-right: 0px;
 }
}

html {
    scroll-behavior: smooth;
    font-family: 'Assistant', sans-serif;
    font-weight: 300;
  }

  body
  {
    overflow-x: hidden;
  }


.mainbutton
{
    padding: 10px;
    background-color: #F6C315;
    border: solid 1px #F6C315;
    color: #fff;
    border-radius: 5px;
    transition: color 0.5s ease;
    transition: background-color 0.5s ease;
}

.mainbutton:hover
{
    padding: 10px;
    background-color: #fff;
    color: #F6C315;
    border: solid 1px #F6C315;
    outline: none;
}

.mainbutton:focus, .mainbutton:focus-visible
{
    padding: 10px;
    background-color: #f3f3f3;
    color: #F6C315;
    border: solid 3px #F6C315;
    outline: none;
}

.secbutton
{
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #F6C315;
    border: solid 3px #dea39c;
    color: #dea39c;
    border-radius: 5px;
    transition: color 0.5s ease;
    transition: background-color 0.5s ease;
}

.secbutton:hover
{
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #fff;
    color: #dea39c;
    border: solid 3px #dea39c;
    outline: none;
}

.secbutton:focus, .secbutton:focus-visible
{
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #f3f3f3;
    color: #dea39c;
    border: solid 2px #dea39c;
    outline: none;
}

.thirdbutton
{
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #F6C315;
    border: solid 3px #dea39c;
    color: #dea39c;
    border-radius: 5px;
    transition: color 0.5s ease;
    transition: background-color 0.5s ease;
}

.thirdbutton:hover
{
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #fff;
    color: #b98584;
    border: solid 3px #dea39c;
    outline: none;
}

.thirdbutton:focus, .thirdbutton:focus-visible
{
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #fff;
    color: #dea39c;
    border: solid 2px #dea39c;
    outline: none;
}

  .sectionheading
  {
      font-size: 2.5rem;

      color: #F6C315;
      margin-bottom: 50px;
  }

  @media only screen and (max-width: 820px)
  {
      .customcontainer
      {
          width: 100%;
          margin-left: 10px;
          margin-right: 10px;
      }
  }
  
  @media only screen and (min-width: 820px) and (max-width: 1500px)
  {
      .customcontainer
      {
          margin-left: auto;
          margin-right: auto;
          max-width: 800px;
      }
  }
  
  @media only screen and (min-width: 1500px)
  {
      .customcontainer
      {
          margin-left: auto;
          margin-right: auto;
          max-width: 1024px;
      }
  }
  

/* #################### */
/* #################### */
/* ##### Navigation#### */
/* #################### */
/* #################### */


  
  /* The sticky cl2ss is added to the navbar with JS when it reaches its scroll position */
  .sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
  }
  

@media only screen and (min-width: 998px)
{
    #topnav
    {
        display: block !important;
    }
    #mobilenav
    {
        display: none !important;
    }

}

@media only screen and (max-width: 998px)
{
    #topnav
    {
        display: none !important;
    }
    #mobilenav
    {
        display: block !important;
    }

}


/* #################### */
/* #################### */
/* ##### Desktop Navigation #### */
/* #################### */
/* #################### */

#topnav
{
    box-shadow: 1px 14px 15px 3px rgba(0,0,0,0.25);
    overflow-x: hidden;
}

#desktopnavouter
{
    background-color: #fff;
}

#desktopnav a 
{
    font-weight: 400;
    color: #F6C315;
    transition: color 0.5s ease;

}
#desktopnav a:hover
{
    color: #E40E0F;

}

#desktopnav
{
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom: 30px;

}

@media only screen and (max-width: 1480px)
{
    #desktopnav .logo
    {
        width: 200px;
    
    }
    
    #desktopnav .logo img
    {
        width: 200px;
    }
    #desktopnav a
    {
        font-size: 1.25rem;
    
    }
    .navitems1, .navitems2, .navitems3, .navitems4
    {
        margin-top: 30px;
    }
}

@media only screen and (min-width: 1480px)
{
    #desktopnav .logo
    {
        width: 305px;
    
    }
    
    #desktopnav .logo img
    {
        width: 300px;
    }
    #desktopnav a
    {
        font-size: 1.5rem;
    
    }
    .navitems1, .navitems2, .navitems3, .navitems4
    {
        margin-top: 60px;
    }
}



/* #################### */
/* #################### */
/* ##### Mobile Navigation #### */
/* #################### */
/* #################### */
#mobilenav
{
    overflow-x: hidden;
}

#mobilenav img
{
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

@media only screen and (max-width: 550px)
{
    #mobilenav img
    {
        max-width: 150px;
    }
    .mobileitem a
    {
        font-size: 0.75rem;
    }

    .mobilkontitem1, .mobilkontitem2
    {
        width: 50%;
    }

}
@media only screen and (min-width: 550px)
{
    #mobilenav img
    {
        max-width: 200px;
    }
    .mobileitem a
    {
        font-size: 1rem;
    }

    .mobilkontitem2
    {
        width: 75%;
    }
    .mobilkontitem1
    {
        width: 25%;
    }

}

#mobilenav
{
    width: 100%;
    padding-bottom: 20px;
    background-color: #fff;
    box-shadow: 1px 14px 15px 3px rgba(0,0,0,0.25);
}

#mobilitems
{
    padding-top: 10px;
    width: 100%;
    display: flex;
}

.mobileitem
{
    width: 25%;
    text-align: center;
}

.mobileitem a
{
    font-weight: 400;
    color: #F6C315;
    transition: color 0.5s ease;
}

.mobileitem a:hover
{
    color: #E40E0F;
}




/* #################### */
/* #################### */
/* ##### Background Section #### */
/* #################### */
/* #################### */

#start h1
{

    color: #F6C315;

}

@media only screen and (max-width: 1480px)
{
    #start
    {
        margin-top: 100px;
    }
}
@media only screen and (min-width: 1480px)
{
    #start
    {
        margin-top: 150px;
    }
}



@media only screen and (max-width: 768px)
{

    .slider h1
    {
        font-size: 2.5rem;
        font-weight: 600;
        color: #fff;
    }
    
    .slider p
    {
        font-size: 1.5rem;
        color: #fff;
    }
}

@media only screen and (min-width: 768px)
{
    .slider h1
    {
        font-size: 3.5rem;
        font-weight: 600;
        color: #fff;
    }
    
    .slider p
    {
        font-size: 2rem;
        color: #fff;
    }
}

  
.slider {
    position: relative;
    overflow: hidden;
    height: 70vh;
    width: 100vw;
  }
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
  }
  
  .slide.current {
    opacity: 1;
  }
  
  .slide .content {
      text-align: center;
    position: absolute;
    bottom: 70px;

    opacity: 0;
    width: 100%;

    color: #333;
    padding: 35px;
  }
  
  .slide .content h1 {
    margin-bottom: 10px;
  }
  
  .slide.current .content {
    opacity: 1;

    transition: all 0.7s ease-in-out 0.3s;
  }
  
  .buttons button#next {
    position: absolute;
    top: 40%;
    right: 15px;
  }
  
  .buttons button#prev {
    position: absolute;
    top: 40%;
    left: 15px;
  }
  
  .buttons button {
    border: 2px solid #fff;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    padding: 13px 15px;
    border-radius: 50%;
    outline: none;
  }
  
  .buttons button:hover {
    background-color: #fff;
    color: #333;
  }
  
  @media (max-width: 500px) {
    .slide .content {
      bottom: -300px;
      left: 0;
      width: 100%;
    }
  
    .slide.current .content {
      transform: translateY(-300px);
    }
  }
  
  
  
  /* Backgorund Images */
   
  .slide:first-child {
    background: url('../img/bg1.jpg') no-repeat
      center center/cover;
  }
  .slide:nth-child(2) {
    background: url('../img/bg2.jpg') no-repeat
      center center/cover;
  }
  .slide:nth-child(3) {
    background: url('../img/bg3.jpg') no-repeat
      center center/cover;
  }




/* #################### */
/* #################### */
/* ##### About Section #### */
/* #################### */
/* #################### */

#aboutcontent p
{
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 10px;
}
#aboutcontent h4
{
    font-size: 1rem;
    font-weight: 300;
    color: #E40E0F;
    margin-bottom: 10px;
}

#aboutcontent h2
{
    font-size: 2rem;
    font-weight: 500;
    font-style: italic;

    margin-bottom: 10px;
}

#aboutcontent button
{
margin-top: 20px;
}



@media only screen and (min-width: 768px)
{
    #about
    {
        width: 100%;
        background-image: url('../img/logobig.png');
        background-size: 100% auto;
        background-repeat: no-repeat;
        background-color: #fff;
    }
    #about
    {
        min-height: 500px;
    }
    #aboutcontent
    {
        display: flex;
        justify-content: space-between;
    }
    #abcont1, #abcont2
    {
        width: 50%;
        padding-top: 100px;
        padding-bottom: 100px;
        padding-right: 20px;
    }
    #responsivstudio
    {
        display: none;
    }
}

@media only screen and (max-width: 768px)
{
    #about
    {
        width: 100%;
        background-image: none;
        background-color: #fff;
        background-size: 100% auto;
        overflow-x: hidden;
    }
    #about
    {
        min-height: 500px;
    }
    #aboutcontent
    {
        display: block;
    }
    #abcont1, #abcont2
    {
        width: 100%;
        padding-top: 60px;
        padding-bottom: 10px;
    }
    #responsivstudio
    {
        display: block;
        width: 100%;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    

}


#about, #aboutcontent
{
    margin-top: 0px;
    margin-bottom: 0px;
}


/* #################### */
/* #################### */
/* ##### Leistungen #### */
/* #################### */
/* #################### */

#leistungenintro
{
    text-align: left;
    padding-bottom: 50px;
}

#leistungenintro p
{
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 10px;
}
#leistungenintro h4
{
    font-size: 1rem;
    font-weight: 300;
    color: #E40E0F;
    margin-bottom: 10px;
}

#leistungenintro h2
{
    font-size: 2rem;
    font-weight: 500;
    font-style: italic;

    margin-bottom: 10px;
}




#vorteilcontainer2 img, #vorteilcontainer1 img
{
    height: 190px;
    width: 190px;
}

#vorteilcontainer3 img
{
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 2px 2px 10px 10px rgba(0,0,0,0.1);
}

.vorteilbox .boxicon
{
    height: 200px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;


    border: solid 1px #f3f3f3;
    box-shadow: 2px 2px 10px 10px rgba(0,0,0,0.1);

}
.vorteilbox .boxicon:hover
{
    background-color: #e7e2e1;
}

.vorteilbox .boxiconinner
{
    height: 190px;
    width: 190px;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 4px;
    background-color: #fff;
    margin-left: auto;
    margin-right: auto;

    transition: background-color 0.5s ease;
}

@media only screen and (min-width: 768px)
{
    #leistungenintro
    {
        display: flex;
        justify-content: space-between;
    }
    #leistintro1
    {
        width: 50%;
    }
    #leistintro2
    {
        width: 50%;
    }
    #leistungen1
    {
        padding-right: 0px;
    }
    #vorteilcontainer, #vorteilcontainer2, #vorteilcontainer3
    {
        display: flex;
        justify-content: space-between;
    }
    .vorteilbox 
    {
        width: 33%;
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    #preisliste
    {
        margin-top: 50px;
        text-align: left;
    }
}

@media only screen and (max-width: 768px)
{
    #leistintro2
    {
        width: 100%;
    }
    #leistintro2
    {
        width: 100%;
    }
    #leistungenintro
    {
        display: block;
    }
    #leistungen1
    {
        padding-right: 30px;
    }
    #vorteilcontainer, #vorteilcontainer2
    {
        display: block;
    }
    #vorteilcontainer3
    {
        display: flex;
        justify-content: space-between;
    }
    .vorteilbox 
    {
        width: 100%;
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    #preisliste
    {
        margin-top: 50px;
        text-align: center;
    }
}

#leistungen1
{
    padding-top: 200px;
    padding-bottom: 100px;
    text-align: center;
    overflow-x: hidden;
    background-color: #f3f3f3;
}

  .vorteilbox
  {
      width: 100%;
  }


    .vorteilbox h3
    {
        margin-top: 20px;
        font-size: 1.5rem;
    }



    #leistungen1, #leistungenintro
    {
        margin-top: 0px;
        margin-bottom: 0px;
    }









/* #################### */
/* #################### */
/* ##### Yoga #### */
/* #################### */
/* #################### */



#leistungen .sectionheading
{
    margin-top: 20px;
    font-size: 2.5rem;
    color: #F6C315;
    font-family: 'Marck Script', cursive;
    text-align: center !important;
}


.leistungbox h3
{
    margin-top: 20px;
    font-size: 2rem;
    color: #F6C315;
    font-family: 'Marck Script', cursive;
}
.leistungbox p
{
    font-size: 1.25rem;
}

.leistungbox li
{
    font-size: 1.25rem;
}
.leistungbox i
{
    font-size: 0.75rem;
}

.leistungbox i
{
    color: #F6C315;
}

.leistungbox ul
{
 margin-top: 20px;
}

/*

.leistungbox i
{
    animation-name: drop2;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}


@keyframes drop2 {
    0%   {color: #03254c;}
    33%   {color: #1167b1;}
    66%   {color: #187bcd;}
    100%   {color: #2a9df4;}
  }

  */

.leistungbox
{
    width: 100%;
    margin: 0px;
    padding: 0px;
}

#leistungen
{
    margin-top: 100px;
    margin-bottom: 100px;
    text-align: left;
    overflow-x: hidden;
}

#leistungbg5
{
    background-image: url('../img/reiki.jpg');
    background-size: cover;
    background-position: center center;
    border: 1px solid #d3d3d3;

}

#leistungbg4
{
    background-image: url('../img/bg3.jpg');
    background-size: cover;
    background-position: center center;

}

#leistungbg1
{
    background-image: url('../img/yoga.jpg');
    background-size: cover;
    background-position: center center;

}

#leistungbg2
{
    background-image: url('../img/yoga2.jpg');
    background-size: cover;
    background-position: center center;
}

#leistungbg3
{

    background-image: url('../img/yoga2.jpg');
    background-size: cover;
    background-position: center center;
}

.leistungcontent
{
    padding: 20px;
}

@media only screen and (min-width: 768px)
{
    #leistungen
    {
        padding-right: 0px;
    }
    #leistungcontainer, #leistungcontainer2
    {
    box-shadow: 0px 0px 16px 2px rgba(0,0,0,0.24);
    }

    .leistungbox
    {
        display: flex;
        box-shadow: none;
        margin-bottom: 0px;
        margin-left: 0px;
        margin-right: 0px;
    }

    #leistungbg1 , #leistungbg2 , #leistungbg3, #leistungbg4, #leistungbg5
    {
        min-height: 400px;
        justify-content: center;
        align-items: stretch;
        width: 50%;
    }
    .leistungcontent
    {
        width: 50%;
    }
}

@media only screen and (max-width: 768px)
{
    #leistungen
    {
        padding-right: 30px;
    }
    #leistungcontainer, #leistungcontainer2
    {
    box-shadow: none;
    }
    .leistungbox
    {
        display: block;
        box-shadow: 0px 0px 16px 2px rgba(0,0,0,0.24);
        margin-bottom: 50px;
        margin-left: 10px;
        margin-right: 10px;
    }
    #leistungbg1 , #leistungbg2 , #leistungbg3, #leistungbg4, #leistungbg5
    {
        min-height: 300px;
        width: 100%;
    }
    .leistungcontent
    {
        width: 100%;
    }
}
/* #################### */
/* #################### */
/* ##### Kontakt #### */
/* #################### */
/* #################### */

#kontakt
{
    padding-top: 100px;
    padding-bottom: 150px;
    overflow-x: hidden;
    background-color: #fff;
}

#anschrift
{
    margin-top: 50px;
    font-weight: 300;
}


#anschrift a
{
    color: #333;
    transition: color 0.5s ease;
}
#anschrift a:hover
{
    color: #E40E0F
}

#kontakt label
{
   font-size: 1rem;
   color: #333;
   padding-left: 5px;
}

#kontakt h4
{
   font-size: 1.25rem;
   color: #333;
}

#kontakt span
{
    color: #F6C315;
    margin-right: 5px;
}

#kontaktdata img
{
    width: 100%;
    max-width: 250px;

}

#kontaktbox
{
    width: 100%;
}

@media only screen and (min-width: 768px)
{
    #mapdesktop
    {
        display: block;
        width: 100%;
        box-shadow: 2px 2px 10px 10px rgba(0,0,0,0.1);
    }
    #mapphone
    {
        display: none;
        width: 100%;
    }
    #kontakt
    {
        padding-right: 0px;
    }
    #kontaktbox
    {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
    }
    #kontaktform
    {
        width: 45%;
    }
    #kontaktdata
    {
        margin-top: 0px;
        width: 45%;
        text-align: left;
    }
    #kontaktdata img 
    {
        margin: 0px;
    }
    .formsplit
    {
        display: flex;
        justify-content: space-between;
    }
    .split
    {
        width: 48%;
    }
}


@media only screen and (max-width: 768px)
{
    #mapdesktop
    {
        display: none;
        width: 100%;
    }
    #mapphone
    {
        display: block;
        width: 100%;
    }
    #kontakt
    {
        padding-right: 20px;
    }
    #kontaktbox
    {
        display: block;
    }
    #kontaktform
    {
        width: 100%;
    }
    #kontaktdata
    {
        margin-top: 100px;
        width: 100%;
        text-align: center;
    }
    #kontaktdata img 
    {
        margin-left: auto;
        margin-right: auto;
    }
    .formsplit
    {
        display: block;
    }
    .split
    {
        width: 100%;
    }
}

#kontaktbox input, #kontaktbox textarea
{
    width: 100%;
    background-color: #f3f3f3;
    color: #333;
    margin-top: 20px;
    font-size: 1.25rem;
    border: solid 3px #F6C315;
    border-radius: 4px;
    padding: 5px;
}

#kontaktbox
{
    color: #333;
}

#kontaktbox input:focus, #kontaktbox textarea:focus
{
    outline: none;
    border: solid 3px #E40E0F;
    box-shadow: 0px 0px 4px 2px #E40E0F;
}

#hinweis
{
    width: 30px !important;
    height: 30px !important;
    background-color: #F6C315 !important;
    color: #333 !important;
    outline: none;
    box-shadow: 0px 0px 2px 1px #E40E0F;
    position: relative;
    top: 25px;
    margin-right: 20px !important;
}

#hinweis:focus
{
    width: 30px;
    height: 30px;
    margin-left: 0px;
    outline: none;
    box-shadow: 0px 0px 4px 2px #E40E0F;
}

#hinweis:after
{
    background-color: #F6C315;
    color: red;
}

/* #################### */
/* #################### */
/* ##### Footer #### */
/* #################### */
/* #################### */

footer
{
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #f3f3f3;
    overflow-x: hidden;
}

@media only screen and (max-width: 768px)
{
    footer 
    {
        text-align: center;
    }
}

@media only screen and (min-width: 768px)
{
    footer 
    {
        text-align: right;
    }
}


footer button, footer p
{
    font-size: 1.25rem;
}

footer button
{
    color: #555;
    transition: color 0.5s ease;
    font-weight: 300;
    margin-left: 20px;
}

footer button:hover
{
    color: #E40E0F;
}

footer button:focus
{
    outline: none;
}

/* #################### */
/* #################### */
/* ##### Modals #### */
/* #################### */
/* #################### */

.modalstyle
{
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 4000;
    background-color: #fff;
    overflow-y: scroll;
    overflow-x: hidden;
}

.modalcontent
{
    margin-top: 100px;
    margin-bottom: 100px;
}

.modalcontent p, .modalcontent h2, .modalcontent h3, .modalcontent h4, .modalcontent h5, .modalcontent h6, .modalcontent li
{
    color: #555;
    margin-top: 10px;
}

@media only screen and (min-width: 1480px)
{
    .modalcontent p
    {
        font-size: 1rem;
    }
    
    .modalcontent h6
    {
        font-size: 1.25rem;
    }
    
    .modalcontent h5
    {
        font-size: 1.5rem;
    }
    
    .modalcontent h4
    {
        font-size: 1.75rem;
    }
    
    .modalcontent h3
    {
        font-size: 2rem;
    }
    
    .modalcontent h2
    {
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 1480px)
{
    .modalcontent p
    {
        font-size: 1rem;
    }
    
    .modalcontent h6
    {
        font-size: 1rem;
    }
    
    .modalcontent h5
    {
        font-size: 1.2rem;
    }
    
    .modalcontent h4
    {
        font-size: 1.4rem;
    }
    
    .modalcontent h3
    {
        font-size: 1.6rem;
    }
    
    .modalcontent h2
    {
        font-size: 1.8rem;
    }
}


.modalcontent a
{
    color: #dea39c;
    transition: color 0.5s ease;
}

.modalcontent a:hover
{
    color: #e9cdd0;
}

.modalcontent button
{
    font-size: 1.5rem;
}

.modalnotshow
{
    display: none;
}

.modalshow
{
    display: block;

}

/* #################### */
/* #################### */
/* ##### Water Drop ANimation #### */
/* #################### */
/* #################### */



.drop {
    position: relative;
      width: 20px;
      height: 20px;
    top: -30px;
    margin: 0 auto;
      background: #FFF;
      -moz-border-radius: 20px;
      -webkit-border-radius: 20px;
      border-radius: 20px;
    -moz-animation-name: drip;
    -webkit-animation-name: drip;
    animation-name: drip;
    -moz-animation-timing-function: cubic-bezier(1,0,.91,.19);
    -webkit-animation-timing-function: cubic-bezier(1,0,.91,.19);
    animation-timing-function: cubic-bezier(1,0,.91,.19);
    -moz-animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }
  
  .drop:before {
    content: "";
    position: absolute;
    width: 0;
      height: 0;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 30px solid rgba(255,255,255,1);
    top: -22px;
  }
  
  .wave {
    position: relative;
    opacity: 0;
    top: 0;
      width: 2px;
      height: 1px;
    border: #FFF 7px solid;
      -moz-border-radius: 300px / 150px;
      -webkit-border-radius: 300px / 150px;
      border-radius: 300px / 150px;
    -moz-animation-name: ripple;
    -webkit-animation-name: ripple;
    animation-name: ripple;
    -moz-animation-delay: 2s;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -moz-animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }
  
  .wave:after {
    content: "";
    position: absolute;
    opacity: 0;
    top: -5px;
    left: -5px;
      width: 2px;
      height: 1px;
    border: #FFF 5px solid;
      -moz-border-radius: 300px / 150px;
      -webkit-border-radius: 300px / 150px;
      border-radius: 300px / 150px;
    -moz-animation-name: ripple-2;
    -webkit-animation-name: ripple-2;
    animation-name: ripple-2;
    -moz-animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }
  
  @keyframes ripple {
      from {
        opacity: 1;
      }
      to {
        width: 600px;
        height: 300px;
        border-width: 1px;
        top: -100px;
        opacity: 0;
      }
  }
  
  @keyframes ripple-2 {
      0% {
        opacity: 1;
      }
      50% {
        opacity: 0;
      }
    100% {
      width: 200px;
      height: 100px;
      border-width: 1px;
      top: 100px;
      left: 200px;
    }
  }
  
  @keyframes drip {
      to {
        top: 190px;
      }
  }