
/* floating */

.floating {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating {
    from { transform: translate(0,  0px); }
    65% { transform: translate(0, 15px); }
    to { transform: translate(0, -0px); }
}



/* cd-loader */

.cd-loader {
    background-color: rgba(255, 255, 255, 0.5);
    cursor: wait;
    width: 100%;
    height: 100%;
    z-index: 10000;
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    min-height: 160px;
}

.cd-loader .fa {
    display: block;
    margin: 0 0 0 0;
    font-size: 60px;
}

.cd-loader.grey {
    background-color: rgba(0,0,0, 0.3);
}

.cd-loader.white {
    background-color: rgba(255, 255, 255, 0.6);
}

.cd-loader-info-wrap {
    display: table;
    margin: 20px auto 0 auto;
    text-align: center;
    padding: 20px;
}

.cd-loader-info {
    color: #222;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    display: table-cell;
    text-align: center;
}

.preloader-image {
    content: url("/images/preloader.gif");
}