html, body{
    background:#eeeeee;
    font-family: roboto;
    font-size: 1em;
    margin:0;
}
h1{
    padding:10px 0 0 0;
    color:#444444;
    font-size:24px;
}
h1 img{
    vertical-align: left;
    zoom: 1;
    width: 52px;
}
h2 {
    color: #888;
    font-weight: bold;
}
.grid-wrap{
    display: grid;
    max-width: 900px;
    margin: 0 auto;
}
.container {
    display: flex;
    flex-direction: column;
}
.logo-title {
    box-sizing: border-box;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    flex: 0 auto;
}
.instruction{
    max-width: 900px;
    margin: 0 auto;
    flex: 0 auto;
    padding: 20px 0;
}
.main-logo {
    background: url(../../../content/img/app/sam-logo.png) no-repeat center center;
    width: 208px;
    background-size: 100%;
    padding: 13px 0;
    text-indent: -9999px;
    margin: 0;
    filter: invert(0.7);
}

#browserName {
    text-transform: capitalize;
}
.container p {
    font-size: 1.2em;
    margin: 0 4px;
    padding-top: 0;
}

.container .content {
    margin: 0;
    padding: 20px 0;
}
.container .content p {
    margin: 0;
    padding: 0;
}

.messagebox {
    font-size: 110%;
    color: #333;
    padding: 0 0 10px 42px;
}
.submessages{
    padding:0;
}
.submessage{
    padding: 12px 12px 12px 52px;
    min-height: 30px;
}
.submessage p.message {
    font-size: 100% !important;
}

.messagebox .info {
    font-size: 100%;
    color: #666;
}
.messagebox .message .info{
    font-size: 80%;
}

.passed {
    position:relative;
}
.passed::before{
    content: '';
    background: #58995e;
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}
.passed::after{
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    top: 5px;
    left: 8px;
    z-index: 2;
}

.failed {
    position:relative;
}
.failed::before {
    font-size:18px;
    font-weight:700;
    content: '!';
    background: #944c4c;
    text-align: center;
    line-height: 24px;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}

.upgrade {
    margin-top: 12px;
    display: none;
}

.upgrade ul {
    list-style-type: none;
    overflow: auto;
    margin: 0;
}

.upgrade ul li {
    float: left;
    width: 50px;
    padding: 0 15px;
    text-align: center;
}
@media screen and (max-width:1000px){
    .container{
        font-size:0.9em;
        padding:0 40px;
    }
}