﻿/* colors */

:root {
    --body-bg-color: #232323;
    --container-bg-color: #2b2e33;
    --container-border-color: grey;
    --heading-text-color: lightgrey;
    --heading-hover-color: darkgrey;
    --table-light-color: rgb(59, 63, 68);
    --table-dark-color: rgb(47, 49, 51);
    --highlight-color: rgba(242, 22, 55, 0.9);
    --highlight-hover-color: darkred;
    --declined-color: rgba(255, 0, 0, 0.5);
    --accepted-color: rgba(72, 247, 105, 0.5);
    --overlay-color: rgba(35, 35, 35, 0.8);
}



/* text size */

:root {
    --brand-text-size: 92px;
    --superheading-text-size: 32px;
    --heading-text-size: 26px;
    --subheading-text-size: 20px;
    --standard-text-size: 16px;
    --sub-text-size: 14px;
}



/* font face */

@font-face {
    font-family: 'text';
    src: url('../content/fonts/Helvetica/HelveticaNeue-01.ttf') format("truetype");
    font-weight: normal;
    font-style: normal;
}



/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 325px;
    margin-left: 2.5%;
    margin-right: 2.5%;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt, .btn {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}



/* login */

.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    padding: 20px;
}
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

#formContent {
    margin-top: 15px;
    border: 2px solid var(--container-border-color);
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: var(--container-bg-color);
    padding: 30px;
    width: 100%;
    max-width: 300px;
    position: relative;
    padding: 0px;
    -webkit-box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
}

.signin{
    margin: auto;
}


/* body */

body {
    padding-top: 70px;
    padding-bottom: 20px;
    display: block;
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--body-bg-color);
    z-index:1;
}



/* navbar */

.navbar {
    z-index: 2;
    background-color: var(--body-bg-color);
    border-bottom: none;
    padding-top: 40px;
    padding-bottom: 20px;
    padding-right: 7.5%;
    padding-left: 7.5%;
}

.nav .nav-item .nav-link {
    padding-left: 25px;
    font-family: 'text';
    font-size: var(--heading-text-size);
    color: var(--highlight-color);
}

    .nav .nav-item .nav-link:hover {
        color: var(--highlight-hover-color);
    }

    .nav .nav-item .nav-link .fas {
        font-size: var(--superheading-text-size);
    }



/* sidebar */

.sidebar {
    z-index: 3;
    position: fixed;
    top: 0;
    min-height: 100vh;
    height: 100vh;
    width: 325px;
    overflow-x: hidden;
    overflow-y: auto; /* Scrollable contents if viewport is shorter than content */
    background-color: var(--container-bg-color);
    border-right: 4px solid var(--container-border-color);
}

    .sidebar a {
        text-decoration: none;
    }

.sidebar-header .sidebar-logo {
    margin-top: 40px;
    margin-left: 15px;
}

.sidebar-header #close-sidebar .fa-times {
    display: inline-block;
    padding-top: 20px;
    padding-right: 10px;
    text-decoration: none;
    font-size: var(--superheading-text-size);
    color: var(--heading-text-color);
}

.sidebar .nav-menu {
    padding-top: 75px;
}

    .sidebar .nav-menu .nav-item-parent {
        display: inline-block;
        min-width: 325px;
        padding: 20px;
        padding-left: 25px;
        border-top: 4px solid var(--container-bg-color);
        border-bottom: 4px solid var(--container-bg-color);

    }

        .sidebar .nav-menu .nav-item a {
            font-family: 'text';
            font-size: var(--heading-text-size);
            color: var(--heading-text-color);
        }

        .sidebar .nav-menu .nav-item-parent:hover {
            border-top: 4px solid var(--container-border-color);
            border-bottom: 4px solid var(--container-border-color);
            transition: .3s ease-in-out;
        }

            .sidebar .nav-menu .nav-item-parent:hover {
                color: var(--heading-hover-color);
            }

            .sidebar .nav-menu .nav-item:hover > .nav-link {
                display: inline-block;
                transition: left 3s ease-in-out;
            }

    .sidebar .nav-menu .nav-item .nav-link {
        display: none;
        position: fixed;
        z-index: 4;
        background-color: var(--container-bg-color);
        box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
        border-top: 4px solid var(--container-border-color);
        border-bottom: 4px solid var(--container-border-color);
        border-right: 4px solid var(--container-border-color);
    }

        .sidebar .nav-menu .nav-item .nav-link-child {
            padding: 20px 20px 10px;
            min-height: 77px;
            min-width: 250px;
            display: block;
        }

            .sidebar .nav-menu .nav-item .nav-link li:hover > a {
                color: var(--heading-hover-color);
                transition: .3s ease-in-out;
            }

        .sidebar .nav-menu .nav-item .nav-link a {
            font-size: var(--subheading-text-size);
        }

.sidebar-toggle {
    float: left;
    clear: left;
}



/* Jumbotron*/

.jumbotron {
    background-color: var(--body-bg-color);
    height: 80px;
    padding-top: 1%;
}

    .jumbotron h1 {
        color: var(--heading-text-color);
        font-size: var(--superheading-text-size);
        font-family: 'text';
        text-align: left;
    }



/* main */

.main {
    padding-top: 5%;
    transition: all .5s ease-in-out;
}

    .main h3 {
        font-family: 'text';
        color: var(--container-border-color);
        font-size: var(--subheading-text-size);
        white-space: nowrap;
    }



/* icons */

.icon {
    transition: all .5s ease-in-out;
}

    .icon a {
        text-decoration: none;
    }

        .icon a:hover > img {
            opacity: .75;
            transform: scale(0.98);
        }

        .icon a:hover > h2 {
            color: var(--heading-hover-color);
        }

    .icon h3 {
        margin-bottom: 45px;
        white-space: nowrap;
    }

    .icon img {
        display: inline-block;
        border-radius: 50%;
    }



/* text */

p {
    color: var(--container-border-color);
    font-family: 'text';
}

    p a, a {
        text-decoration: none;
        color: var(--highlight-color);
        font-size: var(--standard-text-size);
        font-family: 'text';
    }

        a:hover, p a:hover, a:active, a:focus {
            text-decoration: none;
            color: var(--highlight-hover-color);
        }

        h2, a h2 {
            font-family: 'text';
            font-size: var(--heading-text-size);
            color: var(--heading-text-color);
        }

h1 {
    color: var(--heading-text-color);
    font-size: var(--superheading-text-size);
    font-family: 'text';
}

h3 {
    font-family: 'text';
    color: var(--container-border-color);
    font-size: var(--subheading-text-size);
}

h4 {
    font-family: 'text';
    color: var(--heading-text-color);
    font-size: var(--sub-text-size);
}

.highlightcolor {
    color: var(--highlight-color);
}

    .highlightcolor:hover {
        text-decoration: none;
        color: var(--highlight-hover-color);
    }

.form-group {
    text-decoration: none;
    color: var(--heading-text-color);
    font-size: var(--standard-text-size);
    font-family: 'text';
}

    .form-group .form-control-plaintext, .form-group .form-control-plaintext:active, .form-group .form-control-plaintext:focus {
        border: none;
    }



/* table */

table {
    background-color: var(--body-bg-color);
    color: var(--heading-hover-color);
    border: none !important;
    font-family: 'text';
    font-size: var(--standard-text-size);
}

    table tr {
        font-family: 'text';
        color: var(--heading-text-color);
        font-size: var(--standard-text-size);
    }

#myTable tr:hover {
    opacity: .98;
}

.table-borderless th, .table-borderless td {
    border: none !important;
}

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
    background-color: var(--table-dark-color);
}

.table-striped > tbody > tr:nth-child(even) > td,
.table-striped > tbody > tr:nth-child(even) > th {
    background-color: var(--table-light-color);
}

#deviceTableWidth {
    width: 400px;
}

#deviceTableIcons {
    padding-left: 20px;
}

#deviceTableHeading {
    padding-top: 15px;
}



/* other */

.center {
    text-align: center;
}

.verticalLine {
    border-left: 4px solid var(--table-dark-color);
}



/* images */

.image-cover {
    object-fit: cover;
    width: 180px;
    height: 180px;
}

#memberImg {
    border: 3px solid var(--container-border-color);
}

#ICUImage {
    margin-top: 45px;
    margin-bottom: 45px;
    padding-left: 90px;
}



/* add user */
#drop-area {
    border: 2px dashed var(--container-border-color);
    border-radius: 20px;
    padding: 20px;
    min-height: 350px
}

#run-enroll, #backtolist, #manual-files {
    margin-bottom: 20px;
}

#fileElem {
    display: none;
}



/* device detected scans */

.found {
    background-color: var(--accepted-color);
}

.excluded {
    background-color: var(--declined-color);
}

.not-found {
    background-color: var(--container-border-color);
}

.alert {
    overflow: auto;
    padding: 30px;
    border: solid white 1px;
    background-color: #2b2e33;
    position: relative;
    margin-top: 20px;
}

.result-image-container {
    float: left;
    position: relative;
}

.image-main {
    border: solid grey 4px;
    border-radius: 4px;
}

.image-ref {
    border: solid grey 3px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    height: 200px;
    border: solid grey 4px;
    border-radius: 4px;
}

.result-text-container {
    float: left;
    padding-left: 50px;
    font-size: 20px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

.attribute-container {
    position: absolute;
    bottom: 5px;
    right: 50px;
    font-size: 30px
}

#scanned-update-text {
    padding-top: 20px;
}

/* material icons */
.material-icons {
    /*color: var(--highlight-color);*/
}

    .material-icons.md-18 {
        font-size: 18px;
    }

    .material-icons.md-24 {
        font-size: 24px;
    }

    .material-icons.md-36 {
        font-size: 36px;
    }

    .material-icons.md-48 {
        font-size: 48px;
    }

    .material-icons.md-64 {
        font-size: 64px;
    }

    .material-icons.md-96 {
        font-size: 96px;
    }



/* FORM TYPOGRAPHY */

button[type=button] {
    margin-right: 0px;
}

    button[type=button]:hover {
    }

    button[type=button]:active {
    }

input[type=button],
input[type=submit],
input[type=reset],
input[type=file],
button[type=submit],
button[type=reset],
.cd-popup-container .cd-buttons a {
    background-color: var(--highlight-color);
    border: none;
    color: var(--heading-text-color);
    padding: 15px 80px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: var(--standard-text-size);
    border-radius: 2px;
    transition: all 0.2s ease-in-out;
    margin-top: 5px;
    margin-bottom: 5px;
}

    input[type=button]:hover,
    input[type=submit]:hover,
    input[type=reset]:hover,
    input[type=file]:hover,
    button[type=submit]:hover,
    button[type=reset]:hover,
    .cd-popup-container .cd-buttons a:hover{
        background-color: var(--highlight-hover-color);
        transition: 0.2s;
    }

    input[type=button]:active,
    input[type=submit]:active,
    input[type=reset]:active,
    input[type=file]:active,
    button[type=submit]:active,
    button[type=reset]:active{
        transition: 0.1s;
        transform: scale(0.98);
    }

input[type=number],
input[type=text],
input[type=password] {
    background-color: var(--body-bg-color);
    color: var(--heading-text-color);
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: var(--standard-text-size);
    margin-top: 5px;
    margin-bottom: 5px;
    width: 85%;
    border: 1px solid var(--container-border-color);
    transition: all 0.2s ease-in-out;
    border-radius: 2px;
}

    input[type=number]:focus,
    input[type=text]:focus,
    input[type=password]:focus {
        box-shadow: none;
        border: 1px solid var(--container-border-color);
        border-bottom: 2px solid var(--heading-text-color);
    }

/*button[type=text],
button[type=password] {
    background-color: var(--heading-text-color);
    color: var(--body-bg-color);
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: var(--standard-text-size);
    margin-top: 5px;
    margin-bottom: 5px;
    width: 85%;
    border: 2px solid var(--heading-text-color);
    transition: all 0.2s ease-in-out;
    border-radius: 2px;
}*/

/* RADIO */

.form-check-input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.form-check-label {
    background-color: var(--highlight-color);
    color: var(--heading-text-color);
    font-size: var(--sub-text-size);
    text-decoration: none;
    text-align: center;
    display: inline-block;
    padding-top: 15px;
    padding-bottom: 15px;
    height: 50px;
    width: 140px;
    margin-bottom: 5px;
    margin-right: 2px;
    border: none;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

    .form-check-label:hover {
        cursor: pointer;
    }

#red {
    background-color: rgba(255,0,0,.7);
}

#teal {
    background-color: rgba(0,128,128,.7);
}

#yellow {
    background-color: rgba(255,255,0,.7);
}

#green {
    background-color: rgba(0,255,0,.7);
}

#blue {
    background-color: rgba(0,0,255,.7);
}

#purple {
    background-color: rgba(128,0,128,.7);
}

.form-check-input:checked + label {
    background-color: var(--highlight-hover-color);
    box-shadow: none;
}
#LedColor .form-check-input:checked + label {
    opacity: 0.4;
    box-shadow: none;
}


/* form control */

/*.form-control {
    background-color: var(--body-bg-color);
    color: var(--heading-text-color);
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: var(--standard-text-size);
    margin-top: 5px;
    margin-bottom: 5px;
    width: 85%;
    border: 1px solid var(--container-border-color);
    transition: all 0.2s ease-in-out;
    border-radius: 5px;
}

    .form-control:hover,
    .form-control:focus,
    .form-control:active {
        background-color: var(--body-bg-color);
        color: var(--heading-text-color);
        box-shadow: none;
        border: 1px solid var(--container-border-color);
        border-bottom: 2px solid var(--heading-text-color);
    }

.dropdown-menu {
    background-color: var(--body-bg-color);
    color: var(--heading-text-color);
    box-shadow: none;
    border: 1px solid var(--container-border-color);
    border-bottom: 2px solid var(--heading-text-color);
}

    .dropdown-menu:hover,
    .dropdown-menu:active,
    .dropdown-menu:focus {
        background-color: var(--body-bg-color);
        color: var(--heading-text-color);
        box-shadow: none;
        border: 1px solid var(--container-border-color);
        border-bottom: 2px solid var(--heading-text-color);
    }*/

ul {
    padding: 0;
}

.img-replace {
    /* replace text with an image */
    display: inline-block;
    overflow: hidden;
    text-indent: 100%;
    color: var(--heading-text-color);
    white-space: nowrap;
}

/* --------------------------------
        xpopup
        -------------------------------- */
.cd-popup {
    z-index: 5;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--overlay-color);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
}

    .cd-popup.is-visible {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.3s 0s, visibility 0s 0s;
    }

.cd-popup-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 4em auto;
    margin-top: 200px;
    background: var(--container-bg-color);
    border: 2px solid var(--container-border-color);
    border-radius: .25em .25em .4em .4em;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-40px);
    /* Force Hardware Acceleration in WebKit */
    transition-property: transform;
    transition-duration: 0.3s;
}

    .cd-popup-container p {
        padding: 3em 1em;
    }

    .cd-popup-container .cd-buttons {
        margin-bottom: -5px;
        margin-top: -5px;
    }

    .cd-popup-container .cd-buttons:after {
        content: "";
        display: table;
        clear: both;
    }

    .cd-popup-container .cd-buttons .btn:active {
        transform: scale(1);
    }

    .cd-popup-container .cd-buttons li {
        list-style: none;
        float: left;
        width: 50%;
    }

        .cd-popup-container .cd-buttons li:first-child a {
            background: var(--highlight-color);
            border-radius: 0 0 0 .25em;
        }

.no-touch .cd-popup-container .cd-buttons li:first-child a:hover {
    background-color: var(--highlight-hover-color);
}

.cd-popup-container .cd-buttons li:last-child a {
    background: var(--table-light-color);
    border-radius: 0 0 .25em 0;
}

.no-touch .cd-popup-container .cd-buttons li:last-child a:hover {
    background-color: var(--table-dark-color);
}

.cd-popup-container .cd-popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
}

    .cd-popup-container .cd-popup-close::before, .cd-popup-container .cd-popup-close::after {
        content: '';
        position: absolute;
        top: 12px;
        width: 14px;
        height: 3px;
        background-color: var(--heading-hover-color);
    }

    .cd-popup-container .cd-popup-close::before {
        transform: rotate(45deg);
        left: 8px;
    }

    .cd-popup-container .cd-popup-close::after {
        transform: rotate(-45deg);
        right: 8px;
    }

.is-visible .cd-popup-container {
    transform: translateY(0);
}

/* media */
@media(max-width:767px) {
    .body-content {
        padding-left: 0px;
    }
}


/* toggle button */

.toggleWrapper input {
    position: absolute;
}

.toggle {
    cursor: pointer;
    display: inline-block;
    position: relative;
    width: 120px;
    height: 50px;
    background: #2b2e33;
    border-radius: 5px;
    border: 1px solid grey;
}

    .toggle:before, .toggle:after {
        position: absolute;
        line-height: 50px;
        font-size: 14px;
    }

    .toggle:before {
        content: "ON";
        left: 20px;
        color: var(--highlight-color);
    }

    .toggle:after {
        content: "OFF";
        right: 20px;
        color: #fff;
    }

    .toggle__handler {
        display: inline-block;
        position: relative;
        background: var(--highlight-color);
        width: 55px;
        height: 44px;
        border-radius: 3px;
        top: 3%;
        left: 1%;
        -webkit-transition: all 200ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
        transition: all 200ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    input:checked + .toggle {
        background: #2b2e33;
    }

    input:checked + .toggle:before {
        color: #fff;
    }

        input:checked + .toggle:after {
            color: var(--highlight-color);
        }

    input:checked + .toggle .toggle__handler {
        width: 54px;
        -webkit-transform: translateX(60px);
        transform: translateX(60px);
    }


/* unknown reserves */

    /*

.body-content{
    padding-left:180px;
    padding-right:180px;
}

.active {
    color: #2fc737;
}

.inactive {
    color: #b1b1b1;
}

.header-color {
    background-color: #2b2e33;
}

.link-header {
    color: white;
    text-decoration: none;
}

    .link-header:hover {
        color: black;
    }

.small-image-cover {
    object-fit: cover;
    width: 80px;
    height: 60px;
}

.anim {
    transition: background 1s linear;
}

.highlight {
    background: #48acc7;
}

.normal {
    background: transparent;
}

.enrolled {
    background: #cefbc8;
}

.detected {
    background: #f7dede;
}

.detected-table tbody,
.detected-table thead {
    display: block;
}

.detected-table tbody {
    height: 480px;
    overflow-y: auto;
    overflow-x: hidden;
}

.center p {
    color: lightgrey;
}

.icon-color {
    color: #f21637;
}

*/



    /* add user reserves */

    /** SPINNER CREATION **/

    /*.loader {
    position: relative;
    text-align: center;
    margin: 15px auto 35px auto;
    z-index: 9999;
    display: block;
    width: 80px;
    height: 80px;
    border: 10px solid rgba(0, 0, 0, .3);
    border-radius: 50%;
    border-top-color: #000;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}*/

    /*.note {
    width: 500px;
    margin: 50px auto;
    font-size: 1.1em;
    color: #333;
    text-align: justify;
}

    #drop-area.highlight {
        border-color: purple;
    }

p {
    margin-top: 0;
}

.my-form {
    margin-bottom: 10px;
}

#gallery {
    margin-top: 10px;
}

    #gallery img {
        width: 150px;
        margin-bottom: 10px;
        margin-right: 10px;
        vertical-align: middle;
    }

.button {
    display: inline-block;
    padding: 10px;
    background: #ccc;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid #ccc;
}

    .button:hover {
        background: #ddd;
    }

.new-member-entry {
    color: white;
}

    .new-member-entry p {
        color: black;
        padding: 5px;
    }

    .new-member-entry input {
        color: black;
        padding: 5px;
    }

.img-show {
    margin: 10px;
}

.img-row {
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 8px;
    margin-bottom: 8px;
}


@@import url(https://fonts.googleapis.com/css?family=Roboto:300,400)


.button-wrap {
    position: relative;
    text-align: center;
}

{
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.5);
    border-radius: 0px;
    border-color: #222;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 1.1em;
    font-weight: 400;
    letter-spacing: 1px;
    small

{
    font-size: 0.8rem;
    letter-spacing: normal;
    text-transform: none;
}



/** SPINNER CREATION **/

    /*@@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

.found {
    background-color: rgba(72, 247, 105, 0.5);
}

.not-found {
    background-color: rgba(128,128,128,0.5);
}

.image-cover-large {
    object-fit: cover;
    width: 360px;
    height: 360px;
}*/

    /** MODAL STYLING **/

    /*.modal-backdrop.show {
    opacity: 0.75;
}

.loader-txt {

{
    font-size: 13px;
    color: #666;
    small

{
    font-size: 11.5px;
    color: #999;
}


#output {
    padding: 25px 15px;
    background: #222;
    border: 1px solid #222;
    max-width: 350px;
    margin: 35px auto;
    font-family: 'Roboto', sans-serif !important;
    p .subtle

{
    color: #555;
    font-style: italic;
    font-family: 'Roboto', sans-serif !important;
}

h4 {
    font-weight: 300 !important;
    font-size: 1.1em;
    font-family: 'Roboto', sans-serif !important;
}

p {
    font-family: 'Roboto', sans-serif !important;
    font-size: 0.9em;

{
    text-transform: uppercase;
    text-decoration: underline;
}*/

    /* device settings*/

    /*    @@import url(https://fonts.googleapis.com/css?family=Roboto:300,400);

    .btn {
        white-space: normal;
    }

    .button-wrap {
        position: relative;
        text-align: center;
    }

    /** SPINNER CREATION **/

    /*.loader {
    position: relative;
    text-align: center;
    margin: 15px auto 35px auto;
    z-index: 9999;
    display: block;
    width: 80px;
    height: 80px;
    border: 10px solid rgba(0, 0, 0, .3);
    border-radius: 50%;
    border-top-color: #000;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

.found {
    background-color: #78d46a;
}

.not-found {
    background-color: rgba(128,128,128,0.5);
}

.image-cover-large {
    object-fit: cover;
    width: 360px;
    height: 360px;
}

/** MODAL STYLING **/

    /*.modal-content {
    border-radius: 0px;
}

.modal-backdrop.show {
    opacity: 0.75;
}

#output {
    padding: 25px 15px;
    background: #222;
    border: 1px solid #222;
    max-width: 350px;
    margin: 35px auto;
    font-family: 'Roboto', sans-serif !important;
    p .subtle
}

h3 {
    font-weight: 300 !important;
    font-size: 1.1em;
    font-family: 'Roboto', sans-serif !important;
}

p {
    font-family: 'Roboto', sans-serif !important;
    font-size: 0.9em;
}*/


