@font-face {
    font-family: font;
    src: url(fontBold.woff2);
}

body {
    margin: 0px;
    background-color: #eee;
    font-family: font;
    overflow: hidden;
}

button{
    cursor: pointer;
}

.video-container {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-container video {
    /* Make video to at least 100% wide and tall */
    min-width: 100%;
    min-height: 100%;

    /* Setting width & height to auto prevents the browser from stretching or squishing the video */
    width: auto;
    height: auto;

    /* Center the video */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#header {
    background-color: white;
    box-shadow: -1px 5px 9px #e0e0e0;
    position: absolute;
    width: 100%;
    height: 75px;
    z-index: 1;
    text-align: center;
}

#header_inner {
    width: 90%;
    display: inline-block;
    height: 100%;
    position: relative;
}

#profile_section {
    display: inline-block;
    position: relative;
    float: right;
    height: 100%;
}

#header > span {}

#analyticsIframe {
    position: absolute;
    width: 100%;
    min-width: 1250px;
    height: calc(100%);
    top: 75px;
    left: 50%;
    border: none;
    min-width: 1250px;
    -webkit-transform: translateX(-50%);
    -mos-transform: translateX(-50%);
    transform: translateX(-50%);
}

#editBtn {
    position: relative;
    top: calc(50% - 18px);
    right: 0px;
    padding: 10px 30px;
    background-color: black;
    color: white;
    outline: none;
    font-size: 15px;
    border-radius: 5px;
    display: inline-block;
    vertical-align: middle;
}

#signout {
    position: relative;
    top: calc(50% - 18px);
    right: 0px;
    padding: 10px 30px;
    background-color: orange;
    color: white;
    outline: none;
    font-size: 15px;
    border-radius: 5px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

#logo {
    left: 0px;
    height: 40px;
    top: calc(50% - 20px);
    display: inline-block;
    vertical-align: middle;
}

#welcomeEmail {
    display: block;
    font-size: 15px;
}

#email_outer {
    margin-right: -40px;
    display: inline-block;
    vertical-align: top;
    font-size: 25px;
    height: 100%;
    text-align: center;
    position: relative;
}

#profileImage {
    height: 85%;
    top: 7.5%;
    position: relative;
}

.loader {
    position: absolute;
    margin: 0px auto;
    width: 100px;
    height: 100px;
    zoom: 1;
    top: calc(50% - 25px);
    left: calc(50% - 50px);
}

.circular {
    animation: rotate 1s linear infinite;
    height: 100px;
    position: relative;
    width: 100px;
}


.path {
    stroke: #4885ed;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
    stroke-width: 5px;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

.cover {
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 24px;
}

.bigImage {
    
}

.logoName {
    display: inline-block;
    vertical-align: middle;
    font-size: 26px;
    margin-left: 20px;
}

.header_left {
    display: inline-block;
    float: left;
    top: 50%;
    position: relative;
    margin-top: -20px;
}
