* {
    margin: 0;
    padding: 0;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

.nav_menu {
    width: 90%;
    margin: 10px auto;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    border-radius: 14px;
    margin: 20px auto;
}

.nav_menu ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.nav_menu li {
    list-style: none;
}

.nav_menu a {
    color: rgb(255, 174, 0);
    text-decoration: none;
    font-size: 18px;
}

body {
    display: grid;
    grid-template-rows: repeat(3, auto);
    gap: 12px;
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, Arial, "Helvetica Neue", Helvetica, sans-serif;

    font-size: 15px;
    line-height: 1.6;
    color: #595959;
}

.header {
    background: #f6f6f6;
}

.container {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    padding: 0 12px;
}

.header__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 12px;
}

#hamburger {
    display: none;
}

.btn-hamburger {
    width: 30px;
    height: 20px;
    display: block;
    border: none;
    padding: 0;
    align-self: center;
    background: linear-gradient(to bottom,
            white 0, white 20%,
            transparent 20%, transparent 40%,
            white 40%, white 60%,
            transparent 60%, transparent 80%,
            white 80%, white 100%);
}

#hamburger:checked~.btn-hamburger {
    opacity: .5;
}

.top-menu__nav {
    display: none;
}

#hamburger:checked~.top-menu__nav,
.top-menu__list {
    display: flex;
    align-items: center;
}

#hamburger:checked~.top-menu__nav {
    flex: 1 1 100%;
    background: rgb(255 255 255 / 15%);
    margin: 15px 0 0;
}

.top-menu__list {
    display: flex;
    flex-direction: column;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}

.top-menu__list li {
    width: 100%;
}

.top-menu__list a {
    display: block;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    text-decoration: none;
    color: #fff;
    padding: 12px;
}

.logo.has-menu {
    margin: 0 auto;
}

.main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

h1,
h2,
h3,
h4 {
    font-variant-numeric: lining-nums tabular-nums;
    font-style: normal;
    margin: 0 0 15px;
    font-weight: 700;
    color: #595959;
}

h1 {
    font-size: 18px;
    line-height: 1.3;
}

h2,
h3,
h4 {
    font-size: 16px;
    line-height: 22px;
}

/**
         * Content style
         */
.content {
    font-size: 16px;
    line-height: 1.6;
    font-style: normal;
}

.content ul,
.content ol {
    margin: 12px 0 12px 24px;
}

.content blockquote {
    margin: 12px 0;
    font-style: italic;
    border-left: solid #000 5px;
    padding: 5px 0 5px 15px;
}

table {
    table-layout: fixed;
    width: 100%;
    position: relative;
    border-collapse: collapse;
    padding: 0 0 0 20px;
    margin: 1.5em -20px 2em;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    line-height: 1.6rem;
    font-weight: 400;
    font-size: .875rem
}

@media (min-width: 768px) {
    table {
        padding: 0;
        margin: 1.5em 0 2em
    }
}

thead {
    font-weight: 700
}

thead tr {
    text-align: left
}

thead tr th {
    padding: 20px
}

tbody tr,
thead tr th {
    border-bottom: 1px solid #e2e5e6
}

tbody tr:nth-child(odd) {
    background-color: hsla(0, 0%, 100%, .05)
}

tbody tr td:first-child {
    border-right: 1px solid #e2e5e6
}

tbody td {
    padding: 10px 20px;
    text-align: left;
    vertical-align: top;
    width: 50%
}

@media (min-width: 768px) {
    tbody td {
        padding: 20px
    }
}

@media (min-width: 1024px) {
    tbody td {
        width: 25%
    }
}

tbody td code {
    display: inline;
    padding: 2px 4px;
    font-family: Fira Mono, monospace;
    font-weight: 500;
    word-break: normal;
    background-color: #e2e5e6;
    font-size: .9em;
    color: #005af0
}

/**
         * Footer style
         */
footer {
    background: #2c2c2c;
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    padding-top: 24px;
    padding-bottom: 12px;
}

.footer__grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

footer a {
    text-decoration: none;
}

.footer__links {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

/**
         * Casino style
         */
a.go {
    background: #de6217;
    color: #fff;
    font-weight: 700;
    padding: 13px 40px;
    text-decoration: none;
}

a.go::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.front-top-row {
    background: #f6f6f6;
    margin: 0 0 5px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.front-top-row img {
    display: block;
    max-width: 150px;
    height: inherit;
}

.front-top-row span {
    font-weight: 700;
    font-size: 18px;
}

.rating {
    position: absolute;
    width: 40px;
    height: 40px;
    text-align: center;
    left: 0px;
    top: 0px;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    z-index: 1;
    line-height: 40px;
}

.front-top-row .rating:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    border: 30px solid transparent;
    border-left: 30px solid #637cce;
    border-top: 30px solid #637cce;
}

.front-column:nth-child(1) {
    width: 20%;
    text-align: center;
}

.front-column:nth-child(2) {
    width: 15%;
}

.front-column:nth-child(3) {
    width: 45%;
    padding: 15px;
}

.front-column:nth-child(4) {
    width: 20%;
    padding: 5px;
}

@media screen and (max-width: 991px) {
    .front-top-row {
        text-align: center;
        display: block;
    }

    .front-top-row img {
        max-width: 200px;
        margin: 0 auto;
    }

    .front-column:nth-child(1) {
        width: 100%;
        padding: 20px 0 15px;
    }

    .front-column:nth-child(2) {
        width: 100%;
    }

    .front-column:nth-child(3) {
        width: 100%;
        padding: 20px 0 30px;
    }

    .front-column:nth-child(4) {
        width: 100%;
        padding: 0 0 40px;
    }
}

/**
         * Redaction style
         */
.redaction {
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.redaction__headline {
    display: inline-block;
    width: 100%;
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
}

.redaction__item {
    display: grid;
    row-gap: 6px;
    column-gap: 12px;
    grid-template-columns: 60px auto;
    grid-template-rows: repeat(2, auto);
    background: rgb(0 0 0 / 5%);
    padding: 10px;
    border-radius: 5px;
}

.redaction__poster {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-row-start: 1;
    grid-row-end: 3;
}

.redaction__poster,
.redaction__poster img {
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.redaction__info {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    white-space: nowrap;
    border-bottom: solid rgb(0 0 0 / 10%) 1px;
    padding-bottom: 6px;
    flex-wrap: wrap;
}

.redaction__title {
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
}

.redaction__position {
    margin-top: 2px;
    font-size: 14px;
    line-height: 16px;
    opacity: .8;
}

.redaction__description {
    font-size: 14px;
    line-height: 24px;
}


@media (min-width: 768px) {
    .btn-hamburger {
        display: none;
    }

    .top-menu__nav {
        display: flex;
        margin-left: auto;
    }

    .top-menu__list {
        flex-direction: row;
    }

    .logo.has-menu {
        margin: 0 auto 0 0;
    }

    h1 {
        font-size: 32px;
        line-height: 38px;
    }

    h2,
    h3,
    h4 {
        font-size: 28px;
        line-height: 34px;
    }
}

.g_position {
    color: #fff;
    padding: .5rem;
    position: absolute;
    top: -7px;
    left: -43px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    text-align: center;
    line-height: 13px;
    font-weight: 600;
    font-size: 11px;
    background: #20adff
}

a.broken_link {
    box-shadow: 0 0 20px 4px red !important;
    background: red !important;
    color: #fff !important;
    padding: .3em !important;
    border-radius: .25em;
}

a.outer_link {
    box-shadow: 0 0 20px 4px #ffeb00 !important;
    background: #ffeb00 !important;
    color: #222 !important;
    padding: .3em !important;
    border-radius: .25em;
}

a.inner_link {
    box-shadow: 0 0 20px 4px #a2d626 !important;
    background: #a2d626 !important;
    color: #222 !important;
    padding: .3em !important;
    border-radius: .25em;
}

a.outer_link.broken_link {
    box-shadow: 0 0 20px 4px #ffeb00 !important;
    background: #ffeb00 !important;
    color: #222 !important;
    padding: .3em !important;
    border-radius: .25em !important;
    border: solid 2px red !important;
}

a.inner_link.broken_link {
    box-shadow: 0 0 20px 4px #a2d626 !important;
    background: #a2d626 !important;
    color: #222 !important;
    padding: .3em !important;
    border-radius: .25em !important;
    border-radius: .25em !important;
    border: solid 2px red !important;
}

.SEbear-header-target {
    border-bottom: dashed 3px #c90000 !important;
}