@font-face {
  font-family: Asciify;
  src: url(/fonts/SourceCodePro-Medium.ttf.woff);
}

/* Layout */

body {
    /*padding-top: 4rem;*/
    font-family: 'News Cycle', sans-serif;
}

pre {
  font-family: Asciify, monospace;
}

/*
#progressbar_container {
    position: fixed;
    top: 100;
    left: 0;
    z-index: 1029;
}
*/

#nav {
    border-bottom: 1px solid #17a2b8;
    border-bottom: 1px solid #f8f9fa;
    border-bottom: 1px solid transparent;
}

#logo {
    font-family: 'Cutive Mono', monospace;
}

a sup.beta {
    font-size: 0.7em;
    color: #fff;
    display: inline-block;
    transform: rotate(20deg);
    margin: -10px 0px 0px -5px;
}
a:hover sup.beta {
    color: #999;
}

.container {
    max-width: 1280px;
}

.upload-drop-zone {
    cursor: pointer;
    height: 10rem;
    line-height: 10rem;
    border: 2px dashed rgba(0,0,0,.125);
}
.upload-drop-zone.drop {
    color: #222;
    border-color: #222;
}

/* Material Design Icons */

.mdi::before {
    font-size: 24px;
    line-height: 14px;
}

.btn .mdi::before {
    position: relative;
    top: 4px;
}

.btn-xs .mdi::before {
    font-size: 18px;
    top: 3px;
}

.btn-sm .mdi::before {
    font-size: 18px;
    top: 3px;
}

.dropdown-menu .mdi {
    width: 18px;
}

.dropdown-menu .mdi::before {
    position: relative;
    top: 4px;
    left: -8px;
}

.nav .mdi::before {
    position: relative;
    top: 4px;
}

.navbar .navbar-toggle .mdi::before {
    position: relative;
    top: 4px;
    color: #FFF;
}

.breadcrumb .mdi::before {
    position: relative;
    top: 4px;
}

.breadcrumb a:hover {
    text-decoration: none;
}

.breadcrumb a:hover span {
    text-decoration: underline;
}

.alert .mdi::before {
    position: relative;
    top: 4px;
    margin-right: 2px;
}

.input-group-addon .mdi::before {
    position: relative;
    top: 3px;
}

.navbar-brand .mdi::before {
    position: relative;
    top: 2px;
    margin-right: 2px;
}

.list-group-item .mdi::before {
    position: relative;
    top: 3px;
    left: -3px
}

.upload-drop-zone {
    position: relative;
    z-index: 2;
    background-color: #fff;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }
  
    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }

    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

.shake {
    animation: shake 0.3s;
}
