@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 400;
    src: local('Noto Sans'), local('NotoSans'),
    url('../fonts/NotoSans/noto-sans-v8-latin-regular.ttf') format('truetype');
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 500;
    src: local('Noto Sans Medium'), local('NotoSans-Medium'),
    url('../fonts/NotoSans/noto-sans-v8-latin-medium.ttf') format('truetype');
}

body {
    margin: 0
}

.js-required .header, .unsupported-browser .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 16px 0;
    background-color: #21272a;
    margin-bottom: 64px;
}

.js-required main, .unsupported-browser main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.js-required .content, .unsupported-browser .content {
    max-width: 705px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin: 0 16px;
    gap: 24px;
}

.js-required .message-box, .unsupported-browser .message-box {
    padding: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #dde1e6;
    background-color: #f2f4f8;
    border-radius: 4px;
}

.js-required .message-box img {
    margin-bottom: 32px;
}

.js-required .message-box h1, .unsupported-browser .message-box h1 {
    margin: 0 0 8px 0;
    font-family: Noto Sans, Helvetica Neue, Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #343A3F;
}

.js-required .message-box h1 + p, .unsupported-browser .message-box h1 + p {
    margin: 0;
    font-family: Noto Sans, Helvetica Neue, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #697077;
}

.unsupported-browser .message-box .browser-icons {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
}

.unsupported-browser .message-box .browser-icons .icon-wrapper a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.unsupported-browser .message-box .browser-icons .icon-wrapper a img {
    border-style: none;
}

.unsupported-browser .message-box .browser-icons .icon-wrapper a p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: #343a3f;
}

.unsupported-browser .message-box .browser-icons .icon-wrapper a .browser-icon.color {
    display: none;
}

.unsupported-browser .message-box .browser-icons .icon-wrapper:hover .browser-icon.color {
    display: inline-block;
}

.unsupported-browser .message-box .browser-icons .icon-wrapper:hover .browser-icon.gray {
    display: none;
}

.unsupported-browser {
    position: absolute;
    left: 0;
    top: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    background-color: #fff;
    z-index: 600;
    width: 100%;
    height: 100%;
    text-align: center;
}

.unsupported-browser:not(.visible) {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}