html, body {
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    height: 100%;
    font-size: 87.5%;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    width: 100%;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex: 1 1 auto;
}

.page-container {
    max-width: calc(90rem + 32px);
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

.page-layout-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
}

.main-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex: 1 1 auto;
}

.page-footer {
    width: 100%;
    border-top: solid #FFF;
    background-color: #f2f2f2;
    height: 140px;
}

.page-footer-container {
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
    padding-bottom: 20px;
}

.skin-bg {
    background: hsl(203, 10%, 32%);
}

.attention {
    position: relative;
    padding-left: 75px;
    min-height: 37px;
    max-width: 45rem;
    margin-bottom: 2rem;
}

.attention::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 55px;
    width: 1px;
    background-color: #ea5326;
}

.attention > svg {
    position: absolute;
    display: block;
    width: 23px;
    height: 23px;
    left: 9px;
    top: 9px;
    margin-bottom: -5px;
    color: #ea5326;
    fill: #ea5326;
}

.attention > h1 {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 14px;
    color: #4d4d4d;
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.4;
}

.attention > p {
    margin-top: 0;
    color: #4d4d4d;
    font-size: 14px;
}