﻿.drop {
    position: relative;
    width: 25px;
    height: 25px;
    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;
    z-index: 2;
}

    .drop:before {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        border-left: 12px solid transparent;
        border-right: 13px solid transparent;
        border-bottom: 35px solid rgba(255,255,255,1);
        top: -26px;
        z-index: 2;
    }

.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: 1800px;
    }
}

.dropWrap {
    margin-top: -31px;
    /*    margin-left: -172px;*/
    position: relative;
    z-index: 2;
    height: 0;
    display: block;
}

.scrolled .dropWrap {
    display: none;
}




@media screen and (min-width:768px) {
 /*   .dropWrap {
        display: block;
    }*/
}


@media screen and (min-width:992px) {
    .drop {
        width: 30px;
        height: 30px;
    }

    .drop:before {
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 50px solid rgba(255,255,255,1);
        top: -40px;
    }
}


@media screen and (min-width:1200px) {
    .drop {
        width: 36px;
        height: 36px;
    }
        .drop:before {
            border-left: 18px solid transparent;
            border-right: 18px solid transparent;
            border-bottom: 64px solid rgba(255,255,255,1);
            top: -52px;
        }
}