﻿html, body, #content {
    padding: 0;
    margin: 0;
    font-family: "proxima-nova",sans-serif !important;
}

.public.primary-image{
    background-color:#333333;
}

h1, h2, h3, h4 {
    font-family: "proxima-nova",sans-serif !important;
}

.spinner {
    display: none;
    width: 55px;
    height: 55px;
    position: relative;
    margin: 40px auto;
}

.spinner-bounce1, .spinner-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.spinner-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
    0%, 100% {
        -webkit-transform: scale(0.0)
    }

    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

