body {
    margin: 0;
    background-color: #f2f7fa;
    font-family: Arial, sans-serif;
    font-weight: 100;
    -webkit-font-smoothing: antialiased;
    color: #0c3f4c;
    letter-spacing: 0.04em;
    width: 100vw;
    height: 100vh;
}

/* Define this for FF, it has no default styles for b elements */
b {
    font-weight: 700;
}

app-click-and-meet {
    width: inherit;
}

.loading {
    opacity: 1;
    transition: opacity .8s ease-in-out;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #f2f7fa;
    z-index: -1;
}

.loading-image {
    background-image: url("./../img/loading_icon.gif");
    background-position-x: 50%;
    background-position-y: -46px;
    background-size: 50%;
    background-repeat: no-repeat;
    display: block;
    width: 100%;
    height: 163px;
    text-align: center;
    margin-top: 20px;
}

/* .loading screen is visible when app is not bootstraped yet, .my-app is empty */
m1-click-and-meet:empty+.loading {
    opacity: 1;
    width: 100%;
    height: 100%;
    background-color: #f2f7fa;
}

m1-click-and-meet:empty+.loading h1 {
    color: #bfbfbf;
    width: 200px;
    display: block;
    margin: 0 auto;
    position: relative;
    top: -310px;
    left: 45px;
}

m1-click-and-meet:empty+.loading img {
    width: 800px;
    height: 600px;
    margin: 0 auto;
    display: block;
}

#cam-container {
    width: inherit;
    height: inherit;
    position: fixed;
}

m1-click-and-meet {
    margin: 0;
    width: inherit;
    background-color: #f2f7fa;
    font-family: Arial, sans-serif;
    font-weight: 100;
    -webkit-font-smoothing: antialiased;
    color: #134b59;
    letter-spacing: 0.04em;
}

.highlight {
    color: #fedc51;
}

.login-placeholder {
    margin: 8% auto 0;
    background-color: #ffffff;
    height: 565px;
    width: 435px;
    font-size: 18px;
}

.login-logo {
    width: 100%;
    height: 128px;
    min-height: 0;
    margin-top: 2%;
}

.login-text {
    text-align: center;
}

/* #footer {
    height: 7%;
    width: 100%;
    position: fixed;
    z-index: 20;
    background-color: #134b59;
    bottom: 0;
}

#footer .logo {
    background-image: url("./../img/m1_footer_logo.png");
    background-position-x: right;
    background-position-y: 3px;
    background-size: 80%;
    background-repeat: no-repeat;
    width: 300px;
    height: 100%;
    position: absolute;
    margin: 5px 10px;
    top: -8px;
    right: 0px;
} */

/* 
Generic Classes
             */

.clicka {
    cursor: pointer;
}

.overflow {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.bold {
    font-weight: 700;
}

.font-larger {
    font-size: 1.2em;
}

.text-red {
    color: #bb2025;
}

.text-green {
    color: #a3cd3a;
}

/* Browser-specific classes */

input::-ms-clear {
    display: none;
}

::-webkit-scrollbar-track {
    border-radius: 12px;
    background-color: #e1ebed;
}

::-webkit-scrollbar {
    width: 12px;
    background-color: #e1ebed;
    border-radius: 12px;
    position: relative;
    left: 12px;
    display: inline-block;
}

::-webkit-scrollbar-thumb {
    border-radius: 12px;
    background-color: #a7bdc3;
}


::-webkit-input-placeholder {
    /* Chrome */
    color: #bec8cb;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: #bec8cb;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #bec8cb;
    opacity: 1;
}

:-moz-placeholder {
    /* Firefox 4 - 18 */
    color: #bec8cb;
    opacity: 1;
}

.fader-half {
    animation: fadein 0.5s;
}

.fader-third {
    animation: fadein 0.3s;
}

.fader-one {
    animation: fadein 1s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


select {
    /* you should keep these firsts rules in place to maintain cross-browser behaviour */
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-position: 100% center;
    background-repeat: no-repeat;
    background-size: 1.7em;
    outline: none;
}

select::-ms-expand {
    display: none;
}

textarea:focus {
    outline: none;
}

.red-text {
    color: #bb2025;
}

.delete-users {
    width: 50%;
    margin: auto;
    text-align: left;
}

input::-webkit-contacts-auto-fill-button {
    visibility: hidden;
    display: none !important;
    pointer-events: none;
    position: absolute;
    right: 0;
}

input,
select,
textarea,
button {
    font-family: inherit;
}


@media only screen and (max-width: 768px) {
    body {
        font-size: 11px;
    }

    #login-overlay {
        width: 390px;
        height: 400px;
        font-size: 10px;
        margin-top: 4%;
    }

    #login-overlay div.login-logo {
        height: 130px;
        min-height: 100px;
    }

    #footer .logo {
        background-size: 60%;
    }

    .loading-image {
        background-position-y: -36px;
    }
}
