.unsupported-only, .no-js-only {
    position: fixed;
    width: 100%;
    height: 100%;
    width: 100vw;
    height: 100vh;
    visibility: visible;
    opacity: 1;

    font-family: Roboto-Regular, Roboto, sans-serif !important;
}

.unsupported-only.hidden, .no-js-only.hidden {
    opacity: 0;
    visibility: hidden;
}

.unsupported-only .backdrop, .no-js-only .backdrop {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000;
    opacity: .5;
}

.unsupported-only .frame-wrapper, .no-js-only .frame-wrapper {
    position: relative;
    z-index: 9600;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.unsupported-only .frame, .no-js-only .frame {
    max-width: 90vw;
    max-height: 90vh;
    width: 720px;
    background-color: #fff;
    padding: 1em;
    border-radius: 1em;
    margin: 5% auto;
    margin: 5vh auto;
    -webkit-animation: 2s linear infinite softPulse;
    animation: 2s linear infinite softPulse;
}

.unsupported-only .content, .no-js-only .content {
    background-color: #e8e8e8;
    padding: .5em;
    border-radius: .5em;
    line-height: 1.5em;

    text-align: center;
    overflow: auto;
    max-height: 76vh;
}

.unsupported-only .illustration, .no-js-only .illustration {
    margin: 0 auto;
    padding: 2em;
    text-align: center;
}

.unsupported-only .illustration img, .no-js-only .illustration img {
    width: 100%;
    max-width: 300px;
    height: auto;
    transform-origin:center;
    -webkit-animation: .5s ease-out 1 popIn;
    animation: .5s ease-out 1 popIn;
}

.unsupported-only .title, .no-js-only .title {
    font-size: 2em;
}

.unsupported-only .details, .no-js-only .details {
    color: #9c9c9c;
}

.unsupported-only .action-button, .no-js-only .action-button {
    margin: 1em 0 0 auto;
    border: none;
    cursor: pointer;
    padding: .5em;
    border-radius: .5em;
    color: #fff;
    background-color: #9a9a9a;
    width: 50%;
    text-align: center;
    white-space: nowrap;
}

.unsupported-only .action-button:focus, .no-js-only .action-button:focus {
    outline: none;
}

@-webkit-keyframes softPulse {
    0%,100% {
        box-shadow: 0 0 .5em #333
    }

    50% {
        box-shadow: 0 0 1em #000
    }
}

@keyframes softPulse {
    0%,100% {
        box-shadow: 0 0 .5em #333
    }

    50% {
        box-shadow: 0 0 1em #000
    }
}

@-webkit-keyframes popIn {
    0% {
        transform: scale(0.5);
    }

    80% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes popIn {
    0% {
        transform: scale(0.3);
    }

    80% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}
