﻿/* CSS Hack for IE 10-11 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    body {
        font-family: Roboto, Arial, Helvetica, sans-serif;
        font-size: 16px;
        line-height: 24px;
    }

        body::after {
            content: '';
            position: fixed;
            z-index: 9998;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            max-width: 100%;
            background: 50% 0 / 100% auto url('/gfx/screenshot.png') no-repeat;
        }

    .root {
        display: none;
    }

    .browser-banner {
        display: block !important;
    }
}

/* CSS Hack for IE 9 */
@media screen and (min-width: 0\0) {
    body {
        font-family: Roboto, Arial, Helvetica, sans-serif;
        font-size: 16px;
        line-height: 24px;
    }

        body::after {
            content: '';
            position: fixed;
            z-index: 9998;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            max-width: 100%;
            background: 50% 0 / 100% auto url('/gfx/screenshot.png') no-repeat;
        }

    .root {
        display: none;
    }

    .browser-banner {
        display: block !important;
    }
}

.browser-banner {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #000;
    background-color: rgba(0, 0, 0, 0.75);
}

.browser-banner__inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    padding: 50px 75px;
    max-width: 80%;
    width: 600px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0px 3px 25px rgba(0, 0, 0, 0.25);
}

.browser-banner__title {
    font-size: 25px;
    line-height: 32px;
}

    .browser-banner__title::after {
        content: '';
        display: table;
        clear: both;
    }

.browser-banner__logo {
    width: 70px;
    height: auto;
    display: block;
    float: left;
    margin: 0 25px 0 0;
}
