@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Reveal Water */
/*
@keyframes reveal_water {
    0% {
        -webkit-clip-path: circle(0% at 50% 36%);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }
    100% {
        -webkit-clip-path: circle(50% at 50% 36%);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }
}
.reveal_water {
    -webkit-animation-name: reveal_water;
    animation-name: reveal_water;
}
@keyframes reveal_water2 {
    0% {
        -webkit-clip-path: circle(0% at 50% 36%);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }
    100% {
        -webkit-clip-path: circle(50% at 50% 36%);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }
}
.reveal_water2 {
    -webkit-animation-name: reveal_water2;
    animation-name: reveal_water2;
} */

@keyframes reveal_water {
    0% {
-webkit-clip-path: polygon(49% 39%, 53% 43%, 52% 47%, 51% 52%, 46% 50%, 43% 45%, 40% 43%, 40% 39%, 43% 38%, 46% 35%);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }
    50% {
        -webkit-clip-path: polygon(44% 19%, 52% 29%, 66% 25%, 74% 36%, 74% 56%, 58% 65%, 54% 84%, 34% 74%, 15% 61%, 18% 31%);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }    
    100% {
        -webkit-clip-path: polygon(0% 0%, 40% 0%, 80% 0%, 100% 0%, 99% 99%, 71% 100%, 25% 100%, 0% 99%, 0% 57%, 0% 36%);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }
}
.reveal_water {
    -webkit-animation-name: reveal_water;
    animation-name: reveal_water;
}

@keyframes fade_in{
    0% { 
        opacity: 0;
        
    }
    
    100% {
        opacity: 1;
    }
}

.fade_in {
    -webkit-animation-name: fade_in;
    animation-name: fade_in;
}

@keyframes scale_in{
    0% { 
        transform:scale(0);
        
    }
    
    100% {
        transform:scale(1);
    }
}

.scale_in {
    -webkit-animation-name: scale_in;
    animation-name: scale_in;
}

@keyframes short_from_left{
    0% { 
        transform: translateX(-15px);
        opacity: 0;
        
    }
    50% { 
        transform: translateX(-7px);
        opacity: .6;
        
    }  
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

.short_from_left {
    -webkit-animation-name: short_from_left;
    animation-name: short_from_left;
}

@keyframes short_from_right{
    0% { 
        transform: translateX(15px);
        opacity: 0;
        
    }
    50% { 
        transform: translateX(7px);
        opacity: .6;
        
    }  
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

.short_from_right {
    -webkit-animation-name: short_from_right;
    animation-name: short_from_right;
}
