* {
    box-sizing: border-box;
    line-height: 1;
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    font-family: 'Roboto', sans-serif;
    color: #fff;
}

html {
    width: 100%;
    height: 100%;
}

body {
    background: #252c3f;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1c1a20;
    padding: 0 16px;
    border-bottom: 1px solid #286ca6;
    height: 62px;
}

.header-top .site-logo {
    margin-left: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 28px;
}

.promo-block {
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding-bottom: 14px;
    width: 310px;
    margin: 22px auto;
    animation: glowing 1500ms infinite;
}

.promo-block__icon {
    max-width: 12px;
    margin: 82px;
    margin-bottom: 4px;
    margin-top: 4px;
}

.promo-block__text {
    text-align: center;
    background-color: #fab125;
    border-radius: 12px;
    padding: 18px;
    color: #000000;
    margin-top: 12px;
}

.promo-block__heading {
    font-size: 15px;
}
.promo-block__offer {
    font-size: 21px;
    font-weight: 600;
}
.promo-block__field {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.promo-block__field input {
    border: 1px solid #fab125;
    border-right: none;
    border-radius: 12px 0 0 12px;
    font-weight: 600;
    font-size: 17px;
    text-transform: uppercase;
    padding: 8px 22px 7px;
    outline: none;
    height: 42px;
    width: 52%;
    color: #000000;
}
.promo-block__field button {
    cursor: pointer;
}
.promo-block__field a {
    justify-content: center;
    align-items: center;
}
.promo-block__field button,
.promo-block__field a {
    background-color: #fab125;
    height: 42px;
    width: 36%;
    font-weight: 600;
    text-transform: uppercase;
    color: #000000;
    border-radius: 0 12px 12px 0;
    text-align: center;
    border: none;
}

.login-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 42px;
    color: #fab125;
}

.login-btns a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 42px;
    background: #fab125;
    border: 2px solid #fab125;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 18px;
    border-radius: 7px;
    font-size: 14px;
}

.login-btns a.login {
    border: 2px solid #fab125;
    background: #fab125;
    margin-right: 22px;
}

.nav-bar {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    height: 62px;
}

.nav-list {
    position: absolute;
    top: 0;
    margin-top: 62px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    background: #252c3f;
    background-image: linear-gradient(to bottom, #252c3f, #252c3f, #252c3f, #252c3f, #252c3f);
}

.nav-list>li {
    margin: 0 1.1rem;
    overflow: hidden;
}

.nav-list>li a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
}

.nav-btn-container {
    display: flex;
    height: 100%;
    width: 32px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#nav-toggle {
    display: none;
}

.nav-btn, .nav-btn::before, .nav-btn::after {
    display: block;
    background-color: #fff;
    position: absolute;
    height: 5px;
    width: 32px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 3px;
}

.nav-btn::before {
    content: "";
    margin-top: -9px;
}

.nav-btn::after {
    content: "";
    margin-top: 9px;
}

#nav-toggle:checked+.nav-btn-container .nav-btn::before {
    margin-top: 0px;
    transform: rotate(405deg);
}

#nav-toggle:checked+.nav-btn-container .nav-btn {
    background: rgba(255, 255, 255, 0);
}

#nav-toggle:checked+.nav-btn-container .nav-btn::after {
    margin-top: 0px;
    transform: rotate(-405deg);
}
.brand-logo {
    max-width: 102px;
}

.brand-info {
    text-align: center;
}

.brand-button {
    background-color: rgb(255, 0, 0);
    color: white;
    font-weight: bolder;
    padding: 11px 22px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.brand-button:hover {
    background-color: #f00;
}
.brand-button1 {
    background-color: rgb(30, 254, 0);
    color: rgb(0, 0, 0);
    font-weight: bolder;
    padding: 9px 26px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s;
    margin: 3px;
}

.info-table {
    border-collapse: collapse;
    width: 100%;
}

.info-table td {
    border: 3px solid #ffffff;
    padding: 4px;
    text-align: center;
}
.info-table {
    border: 3px #ffffff
}

.date {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    margin: 11px 0;
}
.date img {
    max-width: 32px;
}
.date .updated {
    display: flex;
    flex-direction: column;
}
.date time {
    font-weight: 600;
}

@media (min-width: 100px) {
    .nav-btn-container {
        display: flex;
    }

    .nav-list {
        z-index: 9999;
        position: absolute;
        top: 0;
        margin-top: 62px;
        left: 0;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    #nav-toggle~.nav-list li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    #nav-toggle:checked~.nav-list li {
        display: flex;
        align-items: center;
        border: 1px solid #286ca6;
        height: 2.6em;
        padding: 0.6em;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .nav-list>li {
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0.6em 0;
        width: 100%;
        color: white;
    }

    .nav-list>li:not(:last-child) {
        border-bottom: 1px solid #445;
    }
}

@media (max-width: 575px) {
    .login-btns a.register {
        display: none;
    }
    .login-btns a.login {
        background: #80ad31;
        margin-right: 0;
    }
}

.banner {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.banner-wrap {
    background: url(images/7slots50.jpg) no-repeat center;
    height: 402px;
    margin: 0 auto;
    background-size: cover;
    width: auto;
}
.promo-banner img {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    margin-bottom: 11px;
}
@media (max-width: 600px) {
    .banner {
        width: 100%;
    }
    .banner-wrap {
        background-size: cover;
        height: 302px;
        background-position: left;
    }
}

.working-mirror {
    width: 402px;
    margin: 42px auto;
}

.working-mirror .top-part {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #cbdbff;
    border-radius: 16px 16px 0 0;
    background: #fff;
    padding: 7px 16px;
}

.working-mirror .circles-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 11px 0;
}

.working-mirror .circle {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 4px;
    line-height: 9px;
}

.adress-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f1f5f9;
    border-radius: 4px;
    padding: 7px 52px;
    width: 100%;
    margin: 0 26px;
}

.adress-bar span {
    display: inline-block;
    width: 102px;
    color: #b3b6ba;
    font-size: 14px;
    line-height: 14px;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.working-mirror .bottom-part {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-top: #e2e6e7;
    background: #f1f5f9;
    min-height: 202px;
}

.working-mirror .bottom-part img {
    margin-top: 11px;
}

.bottom-part .link {
    display: inline-block;
    padding: 15px 22px;
    border-radius: 7px;
    background: #80ad31;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.working-mirror .bottom-part p {
    margin: 11px 0;
    font-size: 15px;
    color: #90abc2;
}

.working-mirror .bottom-part ul {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.working-mirror .bottom-part ul li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 9px 17px;
    border-radius: 5px;
    border: 1px solid #90abc2;
    font-size: 14px;
    color: #90abc2;
    margin: 0 0 16px;
}

.working-mirror .bottom-part ul li:last-child {
    margin-bottom: 0;
}

.working-mirror .bottom-part ul li::marker {
    content: '➕';
}

@media (max-width: 450px) {
    .working-mirror {
        width: calc(100% - 32px);
        margin: 42px 16px;
    }
    .working-mirror .bottom-part {
        text-align: center;
        padding: 0 16px;
    }
    .adress-bar {
        padding: 7px 32px;
        margin: 0 16px;
    }
    .working-mirror .bottom-part p {
        line-height: 1.3;
    }
}

.main-content {
    width: 1282px;
    margin: 0 auto;
    padding: 42px 26px;
    background: #191e2b;
}

@media (min-width: 576px) {
    .main-content {
        width: 542px;
    }
}

@media (min-width: 768px) {
    .main-content {
        width: 722px;
    }
}

@media (min-width: 992px) {
    .main-content {
        width: 962px;
    }
}

@media (min-width: 1200px) {
    .main-content {
        width: 1142px;
    }
}

@media (max-width: 575px) {
    .main-content {
        width: 100%;
    }
}

.main-content h1,
.main-content h2,
.main-content h3,
.main-content h4,
.main-content h5,
.main-content h6 {
    font-size: 29px;
    margin: 0 0 26px;
}

.main-content h2 {
    font-size: 25px;
}

.main-content h2::marker {
    display: list-item;
    content: '#️⃣';
}

.main-content h3 {
    font-size: 23px;
}

.main-content h4 {
    font-size: 21px;
}

.main-content h5 {
    font-size: 19px;
}

.main-content h6 {
    font-size: 17px;
}

.main-content p {
    font-size: 16px;
    line-height: 1.4;
    margin: 0 0 22px;
}

.main-content ul,
.main-content ol {
    padding: 0 0 0 34px;
    margin: 0 0 22px;
}

.main-content ul li,
.main-content ol li {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.4;
    padding-left: 11px;
}

.main-content ol li::marker {
    color: #80ad31;
    font-weight: bold;
}

.main-content ul li::marker {
    content: '✅';
}

.main-content .content-anchors ul li {
    margin-bottom: 11px;
}

.main-content .content-anchors ul li:hover a,
.main-content .content-anchors ul li:hover::marker {
    color: #80ad31;
}

.main-content .content-anchors ul li::marker {
    content: '#️';
}

.main-content .content-anchors ul li a {
    text-decoration: none;
    font-weight: 500;
}

.main-content .info-table {
    margin-bottom: 26px;
}

.main-content table,
.info-table table {
    width: 100%;
    border-collapse: collapse;
}

.main-content tbody,
.info-table tbody {
    background: #002e5d;
}

.main-content table tr td,
.info-table table tr td {
    border: 1px solid #ffffff;
    padding: 9px;
    font-size: 16px;
    line-height: 1.3;
}

.info-table table tr td {
    border-left: 0;
    border-right: 0;
    padding: 11px 16px;
}

.info-table table tr td:first-child {
    font-weight: 500;
    border-right: 1px solid #1b1d28;
}

.main-content table tr td p {
    font-size: 16px;
}

.main-content table tr th {
    padding: 0 6px 11px;
}

.main-content table p {
    margin: 0;
}

.main-content blockquote {
    background: #1d2935;
    padding: 32px;
    border-radius: 7px;
    margin-bottom: 26px;
    position: relative;
}

.main-content blockquote * {
    margin: 0;
}

.main-content blockquote::before {
    content: '';
    background: url(/quote-left.svg) no-repeat;
    display: inline-block;
    width: 23px;
    height: 23px;
    background-size: contain;
    position: absolute;
    top: 6px;
    left: 6px;
}

.main-content blockquote::after {
    content: '';
    background: url(/quote-right.svg) no-repeat;
    display: inline-block;
    width: 23px;
    height: 23px;
    background-size: contain;
    position: absolute;
    right: 6px;
    bottom: 6px;
}

.main-content mark {
    background: #00b900;
    color: #fff;
}

.responsive-table {
    overflow-x: auto;
    margin-bottom: 26px;
}

.img-container {
    text-align: center;
    margin-bottom: 26px;
}

.img-container img {
    width: auto;
    max-width: 50%;
    border-style: none;
}

footer {
    padding: 22px 0;
    text-align: center;
}

footer small {
    font-size: 13px;
    line-height: 13px;
    text-transform: uppercase;
}