﻿#main {
    padding-top: 10px;
}

footer {
    padding-top: 5px;
    padding-bottom: 10px;
    text-align: center;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: white;
}

body {
    font-weight: 400;
}

.md-form {
    margin-top: 40px;
    margin-bottom: 40px;
}

    .md-form label.active {
        font-size: 1.2em;
    }

.round {
    border-radius: 46px;
}

.pt-12 {
    padding-top: 12px !important;
}

.pb-12 {
    padding-bottom: 12px !important;
}

.transition-3d-hover:hover, .transition-3d-hover:focus {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}
/* PASSING REVERSE */

@keyframes passing-reverse {
    0% {
        transform: translateX(50%);
        opacity: 0;
    }

    50% {
        transform: translateX(0%);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%);
        opacity: 0;
    }
}

.faa-passing-reverse.animated,
.faa-passing-reverse.animated-hover:hover,
.faa-parent.animated-hover:hover > .faa-passing-reverse {
    animation: passing-reverse 2s linear infinite;
}

    .faa-passing-reverse.animated.faa-fast,
    .faa-passing-reverse.animated-hover.faa-fast:hover,
    .faa-parent.animated-hover:hover > .faa-passing-reverse.faa-fast {
        animation: passing-reverse 1s linear infinite;
    }

    .faa-passing-reverse.animated.faa-slow,
    .faa-passing-reverse.animated-hover.faa-slow:hover,
    .faa-parent.animated-hover:hover > .faa-passing-reverse.faa-slow {
        animation: passing-reverse 3s linear infinite;
    }

@media screen and (max-width: 767px), screen and (max-height: 600px) {
    footer {
        display: none !important;
    }
}
