*, :after, :before {
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
}
body *, html * {
    font-family: 'Rubik', sans-serif;
}
body {
    min-width: 360px;
}
#wrapper, body {
    min-height: 100vh;
    width: 100%;
    position: relative;
}
body.page-error {
    background-color: #262625;
    color: #d8d9d5;
}
#wrapper {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}
body.page-error .site__header {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    max-height: 136px;
    min-height: 136px;
    padding: 0;
}
.header__logo {
    align-content: center;
    align-items: center;
    display: flex;
}
body.page-error .site__header .logo__link {
    display: block;
    height: auto;
    width: 316px;
    outline: none;
    text-decoration: none;
    margin: 0 auto;
}
body.page-error .site__header .logo__link svg {
    display: block;
    height: auto;
    max-width: 100%;
}
body.page-error .main {
    align-items: center;
    display: flex;
    justify-content: center;
    flex: 1 auto;
}
.block {
    margin-bottom: 48px;
}
body.page-error .page-title {
    color: #fff;
    font-family: Rubik, sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 38px;
    margin-bottom: 20px;
    text-align: center;
}
body.page-error .page-message {
    color: #d8d9d5;
    font-family: Rubik, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
}
body.page-error .page-action {
    margin-top: 40px;
    text-align: center;
}
body.page-error .page-action .btn {
    align-items: center;
    background-color: #b9ea56;
    background-image: none;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 8px 0 rgba(147, 212, 16, .2);
    color: #3f501d;
    display: inline-flex;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 400;
    justify-content: center;
    line-height: 22px;
    margin: 0 auto;
    outline: none;
    padding: 13px 50px;
    text-align: center;
    text-decoration: none;
    transition: background-color .2s, color .2s, box-shadow .2s;
}
body.page-error .page-action .btn:hover {
    background-color: #c8f56e;
    box-shadow: 0 4px 8px 0 rgba(147, 212, 16, .2);
    color: #3f501d;
}
