/*
Theme Name: Template
Author: Template
Version: 1
Description: Required plugins: Yoast SEO
*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
:root {
    --white: #FFFFFF;
    --light-bg: #EFEFEF;
    --light-button: #DFDFDF;
    --light-lines: #DFDFDF;
    --grey: #878787;
    --background-bg: #2F303A;
    --black: #111111;
    --stars-color: #FFBE01;
    --advantages: #0FBA00;
    --advantages-bg: #ECFAEB;
    --disadvantages: #D22020;
    --disadvantages-bg: #FAEBEB;
    --button-color: #AA151B;
    --button-hover: #730C0F;
    --second-color: #333E98;

    --body1: 400 16px/22px 'Hubot Sans';
    --body2: 400 12px/16px 'Hubot Sans';
    --body3: 400 10px/16px 'Hubot Sans';
    
    --h1: 800 36px/40px 'Hubot Sans';
    --h2: 700 28px/32px 'Hubot Sans';
    --h3: 600 22px/26px 'Hubot Sans';
    --h4: 600 18px/22px 'Hubot Sans';
    --h5: 600 14px/18px 'Hubot Sans';
    --h6: 600 10px/10px 'Hubot Sans';
}
body {
    margin: 0;
    padding: 0;
    background-image: url(images/bg.webp);
    background-attachment: fixed;
    background-color: var(--background-bg);
    font: var(--body1);
}
main {
    padding-bottom: 40px;
    min-height: 75vh;
}
.container, .casino-single-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: auto;
}
.casino-single-wrapper {
    display: grid;
    grid-template-columns: 910px auto;
    gap: 0;
    background-color: white;
    margin-bottom: 30px;
}
aside {
    padding: 0 30px 30px 0;
}
.h2aside {
    font: var(--h4);
    position: relative;
    padding: 6px 6px 6px 32px;
    border-bottom: 3px solid var(--second-color);
}
.h2aside::before {
    content: '';
    position: absolute;
    background-image: url(images/ball.png);
    display: block;
    width: 24px;
    height: 24px;
    left: 0;
}
.casino-single-wrapper .container {
    max-width: 910px;
}
.b {
    margin-top: 40px;
}
.b a {
    transition: opacity 0.2s;
}
.b a:hover {
    opacity: 0.9;
}
.b img {
    width: 100%;
    height: auto;
}
.b__mob {
    display: none;
}
.header {
    padding: 24px 30px;
    background-color: var(--black);
    margin-top: 30px;
    display: flex;
    align-items: center;
    height: 98px;
    position: relative;
}
.header-nav {
    flex-grow: 1;
}
.site-logo {
    height: 50px;
}
    
/* Header Menu */

.header-menu {
    display: flex;
    row-gap: 10px;
    column-gap: 40px;
    list-style: none;
    justify-content: flex-end;
    margin: 0;
    background-color: var(--black);
}
.header-menu a {
    font: var(--h4);  
    text-decoration: none;
    color: white;
    cursor: pointer;
    transition: color 0.2s;
    position: relative;
}
.header-menu a:hover {
    color: var(--second-color);
}
.new > a::before,
.top > a::before,
.best > a::before {
    position: absolute;
    display: block;
    color: white;
    width: 100%;
    height: 12px;
    line-height: 12px;
    font-size: 10px;
    text-align: center;
    top: 100%;
    left: 0;
    z-index: 15;    
}
.new > a::before {
    content: 'New!';
    background-color: var(--second-color);
}
.top > a::before {
    content: 'Top!';
    background-color: var(--button-color);
}
.best > a::before {
    content: 'Best!';
    background-color: var(--advantages);
}
.menu-item-has-children {
    position: relative;
}
.menu-item-has-children::after {
    content: '';
    display: inline-block;
    margin-left: 5px;    
    border: 5px solid transparent;
    border-top: 5px solid white;
}
.sub-menu {
    display: none;
    list-style: none;
    padding-left: 0;
    z-index: 10;
    position: absolute;
    left: auto;
	right: 0;
    top: 20px;
    list-style: none;
    padding-top: 41px;
    min-width: 250px;
    width: 100%;
    background-color: var(--black);
}
.menu-item-has-children .menu-item-has-children {
	box-shadow: none;
	border-bottom: none;
}
.menu-item-has-children .menu-item-has-children::after {
	content: none;
}
.menu-item-has-children .menu-item-has-children .sub-menu {
	display: none;
}
.menu-item-has-children .menu-item-has-children:hover {
	background: var(--second-color);
}
.menu-item-has-children .menu-item-has-children:hover > a {
	color: white;
}
.menu-item-has-children .menu-item-has-children:hover .sub-menu {
	display: block;
	position: absolute;
	top: -4px;
	right: 100%;
	padding-top: 0;
}
@media (min-width: 1201px) {
	.menu-item-has-children:hover > .sub-menu {
		display: block;
	}
	.menu-item-has-children:hover > a {
	  color: var(--second-color);
	}
	.menu-item-has-children:hover::after {
        border: solid var(--second-color);
        margin-left: 5px;    
        border: 5px solid transparent;
        border-top: 5px solid var(--second-color);
        rotate: -180deg;
        margin-bottom: 5px;
	}
	.line-1 > .sub-menu {
		padding-top: 62px;
	}
	.line-2 > .sub-menu {
		padding-top: 29px;
	}
	.line-3 > .sub-menu {
		padding-top: 12px;
	}	
}
.sub-menu li a {
    display: block;
    padding: 0 45px 15px 20px;
}
.sub-menu li:first-child {
    padding-top: 16px;
}
.sub-menu li:last-child {
    padding-bottom: 5px;
}
.menu-button {
    display: none;
    position: relative;
    width: 24px;
    height: 24px;
}
@media (max-width: 1200px) {
    .b {
        margin-top: 20px;
    }
    .header {
        justify-content: space-between;
        margin-top: 20px;
    }
    .header .site-logo {
        order: 1;
    }
    .menu-button {
        display: block;
        order: 2;
    }
    .menu-button > div {
        width: 24px;
		height: 2px;
		background: white;
    }
    .menu-button.open > div {
		background: var(--button-color);
    }
    .menu-button div:nth-of-type(1),
    .menu-button div:nth-of-type(2) {
        margin-bottom: 6px;
    }
    .menu-button-active {
        top: 10px;
        z-index: 20;
    }
    .menu-button-active div:nth-of-type(1) {
        position: absolute;
        transform: rotate(45deg);
    }
    .menu-button-active div:nth-of-type(2) {
        position: absolute;
        transform: rotate(-45deg);
    }
    .menu-button-active div:nth-of-type(3) {
        display: none;
    }    
    .header-nav {
        position: absolute;
        top: 98px;
        right: 0;
        z-index: 5;
    }
    .header-menu {
        display: none;
    }
    .open .header-menu {
        display: block;
        padding: 10px 10px 20px 10px;
    }
    .header-menu a, .sub-menu li a {
        color: var(--white);
    }
    .header-menu li {
        margin-bottom: 12px;
    }
    .sub-menu {
        display: block;
        position: inherit;
        padding-top: 0;
        left: 0;
        top: 0;    
    }    
    .sub-menu li {
        box-shadow: none;
    }
    .sub-menu li:first-child {
        border-top: none;
    }    
    .sub-menu li a {
        width: auto;
        font-size: 14px;
        padding: 0 45px 10px 20px;
    }    
    .sub-menu li:last-child {
        padding-bottom: 0;
    }
    .menu-item-has-children::after {
        display: none;
    }	
	.menu-item-has-children .menu-item-has-children .sub-menu {
		display: block;
		padding-left: 20px;
	}	
	.menu-item-has-children .menu-item-has-children:hover .sub-menu {
		position: relative;
	}
	.menu-item-has-children .menu-item-has-children:hover {
		background: var(--light-bg);
	}
	.menu-item-has-children .menu-item-has-children:hover > a {
		color: var(--dark-bg-color);
	}
	.menu-item-has-children .menu-item-has-children .sub-menu li:first-child {
		padding-top: 0;
	}
    .casino-single-wrapper {
        grid-template-columns: 1fr;
        margin-bottom: 20px;
    }
    .casino-single-wrapper main {
        padding-bottom: 0;
    }
    .casino-single-wrapper .container {
        max-width: 100%;
    }
    aside {
        padding: 0 30px 30px 30px;
    }
}


/* Article */

article {
    background-color: white;
    padding: 30px;
}
article .wp-block-image {
    margin: 1em 0;
}
h1, .h1 {
    font: var(--h1);
    margin-bottom: 25px;
    text-transform: uppercase;
}
h1::after, .h1::after {
    content: '';
    margin-top: 5px;
    display: block;
    width: 280px;
    height: 10px;
    background-color: var(--button-color);
}
h2 {
    font: var(--h2);
    margin: 1em 0;
}
.h2 {
    font: var(--h2);
}
.h2black {
    margin: 0;
    background-color: var(--black);
    color: white;
    border-bottom: 10px solid var(--second-color);
    padding: 8px 8px 8px 66px;
    position: relative;
}
.h2black::before {
    content: '';
    position: absolute;
    background-image: url(images/whiteball.png);
    display: block;
    width: 34px;
    height: 34px;
    top: 8px;
    left: 16px;
}
h3 {
    font: var(--h3);
    margin: 1em 0;
}
.h3 {
    font: var(--h3);
}
h4, .h4 {
    font: var(--h4);
}
h5, .h5 {
    font: var(--h5);
}
h6, .h6 {
    font: var(--h6);
}
p {
    margin: 1em 0;
}
article a {
    color: var(--advantages);
}
article a:hover {
    text-decoration: none;
}
article ul {
    margin: 1em 0;
    list-style: none;
}
article ul li {
    position: relative;
    padding: 5px 10px 5px 34px;
}
article ul li::before {
    content: '';
    position: absolute;
    background-image: url(images/ball.png);
    display: block;
    width: 24px;
    height: 24px;
    left: 0;
}
article ol {
    margin: 1em 0;
    list-style: none;
    counter-reset: ol-counter;
}
article ol li {
    padding: 5px 10px 5px 0;
}
article ol li::before {
    content: counter(ol-counter); 
    counter-increment: ol-counter;
    background-color: var(--second-color);
    color: #fff; 
    width: 24px;
    height: 24px;
    display: inline-block;
    text-align: center;
    line-height: 24px;
    margin-right: 10px;
}
blockquote {
    padding: 20px 20px 20px 110px;
    color: white;
    font: var(--h3);
    background-color: var(--second-color);
    background-image: url(images/bq.png);
    background-repeat: no-repeat;
    background-position: 20px center;
}
blockquote p:first-child {
    margin-top: 0;
}
blockquote p:last-child {
    margin-bottom: 0;
}
.breadcrumbs {
    background-color: white;
    padding: 30px 30px 0 30px;
}
.breadcrumbs, .breadcrumbs a {
    font: var(--h5);
    color: var(--black);
}
.breadcrumbs a {
    text-decoration: underline;
}
.breadcrumbs a:hover {
    text-decoration: none;
}
.breadcrumb_last {
    color: var(--second-color);
}
.homenews {
    background-color: white;
    padding: 30px 30px 0 30px;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}
.homenews-cat {
    padding: 30px;
}
.homenews-cat-pag {
    background-color: white;
    padding: 0 30px 30px 30px;
}
.homenews-cat-after {
    margin-bottom: 30px;
}
.big {
    grid-row: span 3;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: brightness(0.9);
}
.big:hover {
    filter: brightness(1);
}
.cat {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--black);
    color: white;
    font: var(--h5);
    padding: 5px 17px;
    z-index: 1;
}
.big__info {
    position: absolute;
    bottom: 0;
    left: 0;
    backdrop-filter: brightness(0.4);
    width: 100%;
    padding: 30px;
    z-index: 1;
}
.big__title {
    color: white;
}
.big__pub {
    margin-top: 16px;
    display: flex;
    gap: 18px;
    color: white;
    font: var(--body2);
}
.big__pub > div {
    position: relative;
    padding-left: 28px;
}
.big__pub > div::before {
    position: absolute;
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    top: -2px;
    left: 0;
}
.big__pub > div:nth-of-type(1)::before {
    background-image: url('images/viewed.png');
}
.big__pub > div:nth-of-type(1)::before {
    top: -3px;
    background-image: url('images/published.png');
}
.small {
    height: 180px;
    background-color: var(--light-bg);
    border-bottom: 12px solid var(--second-color);
    position: relative;
    display: grid;
    grid-template-columns: 168px 1fr;
    gap: 20px;
}
.homenews-cat .small {
	height: auto;
	grid-template-columns: 1fr;
	text-decoration: none;
	padding-left: 10px;
}
.homenews-cat .small:hover {
	background-color: var(--light-button);
}
.small__title {
	color: var(--black);
}
.small__cat {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--black);
    color: white;
    font: var(--h6);
    padding: 7px 14px;
    z-index: 1;
}
.small__image {
    width: 168px;
    height: 168px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    grid-row: span 2;
    filter: brightness(0.9);
}
.small__image:hover {
    filter: brightness(1);
}
.small__text {
    padding-top: 30px;
    padding-right: 20px;
}
.small__p {
    margin-top: 8px;
    color: var(--grey);
    font: var(--body2);
}
.small__pub {
    margin-top: 0;
    margin-bottom: 10px;
    filter: brightness(0.6);
}
.nav-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.nav-links a, .nav-links span {
    var(--h4);
    color: var(--black);
    font: var(--h3);
    text-decoration: none;
}
.nav-links a:hover, .nav-links .current {
    color: var(--advantages);
}
.schema-faq {
    margin: 1em 0;
}
@media (max-width: 1200px) {
    .homenews {
        padding: 20px 20px 0 20px;
        gap: 10px;
        grid-template-columns: 2fr 3fr;
    }
    .homenews-cat {
        padding: 20px;
        grid-template-columns: 1fr 1fr;
    }
    .homenews-cat-pag {
        padding: 0 20px 20px 20px;
    }
    .homenews-cat-after {
        margin-bottom: 20px;
    }
    .small {
        height: 152px;
        grid-template-columns: 140px 1fr;
        gap: 10px;
    }
    .small__image {
        height: 140px;
        width: 140px;
    }
    .small__text {
        padding-top: 10px;
        padding-right: 10px;
    }
	.homenews-cat .small__text {
		padding-top: 30px;
	}
}
@media (max-width: 600px) {
    :root {
        --body1: 400 16px/22px 'Hubot Sans';
        --body2: 400 12px/16px 'Hubot Sans';
        --body3: 400 10px/16px 'Hubot Sans';
        --h1: 700 28px/40px 'Hubot Sans';
        --h2: 700 24px/24px 'Hubot Sans';
        --h3: 600 22px/26px 'Hubot Sans';
        --h4: 600 18px/22px 'Hubot Sans';
        --h5: 600 18px/18px 'Hubot Sans';
        --h6: 600 18px/18px 'Hubot Sans';
    }
    article {
        padding: 15px;
    }
    h1, .h1 {
        margin-bottom: 15px;
    }
    h1::after, .h1::after {
        margin-top: 0;
    }
    .h2black {
        padding: 8px 8px 8px 54px;
    }
    .h2black::before {
        width: 30px;
        height: 30px;
        background-size: cover;
        top: 5px;
        left: 12px;
    }
    .header-nav {
        width: 100%;
    }
    .new > a::before, .top > a::before, .best > a::before {
        top: 9px;
        left: 100%;
        margin-left: 10px;
        width: auto;
        padding: 1px 10px;
    }
    blockquote {
        padding: 15px 15px 15px 78px;
        background-size: 48px 48px;
        background-position: 15px center;
        font: var(--h4);
    }
    .breadcrumbs {
        padding: 15px 15px 0 15px;
    }
    .b__pc {
        display: none;
    }
    .b__mob {
        display: block;
    }
    .homenews {
        padding: 15px 15px 0 15px;
        grid-template-columns: 1fr;
    }
    .homenews-cat {
        padding: 15px;
    }
    .homenews-cat-pag {
        padding: 0 15px 15px 15px;
    }
    .homenews-cat-after {
        margin-bottom: 15px;
    }
    .big {
        height: 200px;
        grid-row: unset;
    }
    .big__info {
        padding: 10px;
    }
    .small {
        height: auto;
        grid-template-columns: 150px 1fr;
    }
    .small__cat {
        font: var(--body2);
        padding: 3px 10px;
    }
    .small__image {
        width: 150px;
        height: 150px;
        grid-row: unset;
    }
    .small__text {
        padding-top: 30px;
    }
    .small__pub div {
        margin: auto;
    }
    aside {
        padding: 0 15px 15px 15px;
    }
}

/* Bookmakers */

.bookmakers {
    margin: 1em 0;
    display: grid;
    gap: 1em;
}
.bookmaker {
    width: 100%;
    min-height: 168px;
    background-color: var(--light-bg);
    display: grid;
    gap: 15px;
    grid-template-columns: 250px 1fr 2fr 220px;
    grid-template-areas: "logo base   bonus  bonus  buttons"
                         "logo plus18 plus18 plus18 plus18";
}
.bookmaker-single {
    margin: 1em 0;
    min-height: 170px;
    grid-template-columns: 170px 200px auto;
    grid-template-areas: "logo base    bonus"
                         "logo buttons plus18";
    padding-right: 14px;
    row-gap: 0;
}
.bookmaker__logo {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 0.2s;
    grid-area: logo;
}
.bookmaker__logo:hover {
    opacity: 0.8;
}
.bookmaker__base {
    grid-area: base;
    position: relative;
    padding: 24px 14px 24px 44px;
}
.bookmaker-single .bookmaker__base {
    padding: 14px 0 0 0;
}
.bookmaker__base-num {
    position: absolute;
    width: 30px;
    height: 40px;
    background-color: var(--black);
    color: white;
    top: 0;
    left: 0;
    font: var(--h4);
    display: flex;
    align-items: center;
    justify-content: center;
}
.bookmaker__base-title {
    font: var(--h4);
}
.bookmaker:nth-of-type(1) .bookmaker__base-num {
    background-color: var(--button-color);
}
.bookmaker:nth-of-type(2) .bookmaker__base-num {
    background-color: var(--advantages);
}
.bookmaker:nth-of-type(3) .bookmaker__base-num {
    background-color: var(--second-color);
}
.bookmaker__base-rating {
    display: flex;
    gap: 6px;
    margin-top: 10px;
    align-items: center;
}
.stars {
    width: 121px;
    height: 22px;
    position: relative;
}
.stars > div {
    position: absolute;
    width: 121px;
    height: 22px;
    background-image: url(images/stars.png);
}
.stars > div:nth-of-type(1) {
    filter: grayscale(0.9);
}
.stars > div:nth-of-type(2) {
    width: 90%;
}
.rating {
    font: var(--body2);
}
.bookmaker__bonus {
    grid-area: bonus;
    background-color: white;
    border: 2px dashed var(--second-color);
    padding: 15px 15px 15px 90px;
    background-image: url(images/bonus.png);
    background-position: 15px center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 24px;
}
.bookmaker-single .bookmaker__bonus {
    align-items: flex-start;
}
.bookmaker-single .bookmaker__plus18 {
    display: flex;
    align-items: center;
}
.bookmaker__bonus > div:nth-of-type(1) {
    font: var(--h3);
    color: var(--advantages);
}
.bookmaker__bonus > div:nth-of-type(2) {
    font: var(--body2);
    color: var(--grey);
}
.bookmaker__buttons {
    margin-top: 24px;
    grid-area: buttons;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding-right: 15px;
}
.bookmaker-single .bookmaker__buttons {
    margin-top: 0;
    margin-bottom: 14px;
    padding-right: 0;
}
.bookmaker__buttons-get {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 190px;
    height: 42px;
    background-color: var(--button-color);
    color: white;
    font: var(--h4);
    text-decoration: none;
    transition: background-color 0.2s;
}
.bookmaker__buttons-get:hover {
    background-color: var(--button-hover);
}
.bookmaker__buttons-read {
    font: var(--h4);
    color: var(--black);
}
.bookmaker__plus18 {
    grid-area: plus18;
    font: var(--body2);
    color: var(--grey);
    text-align: center;
    margin-bottom: 15px;
}
.proscons {
    margin: 1em 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.pros {
    background-color: var(--advantages-bg);
    padding: 15px;
}
.pros div {
    font: var(--h4);
    border-bottom: 2px solid var(--advantages);
    padding-bottom: 5px;
    margin-bottom: 15px;
}
.cons {
    background-color: var(--disadvantages-bg);
    padding: 15px;
}
.cons div {
    font: var(--h4);
    border-bottom: 2px solid var(--disadvantages);
    padding-bottom: 5px;
    margin-bottom: 15px;
}
.proscons p, .proscons li {
    margin: 0;
    padding: 5px 10px 5px 30px;
    position: relative;
}
.proscons ul {
    margin: 0;
}
.cons li::before, .cons p::before {
    position: absolute;
    content: '—';
    color: var(--disadvantages);
    display: inline;
    background-image: none;
    font: var(--h2);
    top: -2px;
    left: 0;
}
.pros li::before, .pros p::before {
    position: absolute;
    content: '+';
    color: var(--advantages);
    display: inline;
    background-image: none;
    font: var(--h2);
    top: -1px;
    left: 0;
}
.bookmaker-table {
    margin: 1em 0;
    display: grid;
    grid-template-columns: 1fr 2fr;
}
.bookmaker-table div {
    border-bottom: 2px solid var(--light-button);
    padding: 20px 0;
}
.bookmaker-table div:nth-of-type(odd) {
    font: var(--h4);
}
.bookmaker-table div:nth-of-type(even) {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.bookmaker-table div:nth-of-type(even) span {
    font: var(--body2);
    background-color: var(--light-bg);
    padding: 6px 12px;
}
.asidebookmakers, .asidenews {
    margin: 1em 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}
.asidebookmakers a {
    display: grid;
    grid-template-columns: 116px auto;
    column-gap: 10px;
    row-gap: 0;
    text-decoration: none;
    color: var(--black);
    background-color: var(--light-bg);
    align-items: center;
}
.asidebookmakers__image {
    width: 116px;
    height: 116px;
    grid-row: span 3;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: brightness(0.9);
}
.asidebookmakers__image:hover {
    filter: brightness(1);
}
.asidebookmakers__title {
    font: var(--h5);
    align-self: end;
}
.asidebookmakers__bonus {
    font: var(--body2);
}
.asidebookmakers__button {
    width: 90px;
    height: 26px;
    font: var(--h5);
    align-self: start;
}
.asidenews a {
    text-decoration: none;
    color: var(--black);
    background-color: var(--light-bg);
    position: relative;
}
.asidenews__image {
    width: 100%;
    height: 160px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: brightness(0.9);
}
.asidenews__image:hover {
    filter: brightness(1);
}
.asidenews__title {
    font: var(--h4);
    padding: 15px;
}
.asidenews__pub {
    padding: 0 15px 15px 15px;
}
@media (max-width: 1200px) {
    .bookmaker {
        gap: 10px;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "logo    base"
                             "bonus   bonus"
                             "plus18  plus18"
                             "buttons buttons";
    }
    .bookmaker__base {
        padding: 0 15px 0 0;
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
    }
    .bookmaker-single .bookmaker__base {
        justify-content: flex-start;
        gap: 10px;
    }
    .bookmaker__base-num {
        position: relative;
        top: 0;
        width: 20px;
        height: 30px;
        font: var(--h5);
    }
    .bookmaker__logo {
        min-height: 100px;
    }
    .bookmaker__base-rating {
        margin-top: 0;
    }
    .stars {
        margin-bottom: 5px;
    }
    .bookmaker__bonus {
        margin-left: 15px;
        margin-right: 15px;
        margin-top: 5px;
    }
    .bookmaker__buttons {
        margin: 0 15px 15px 15px;
    }
    .bookmaker__plus18 {
        margin: 0 15px 5px 15px;
    }
    .proscons {
        gap: 10px;
    }
    .asidebookmakers, .asidenews {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    .asidebookmakers a, .asidenews a {
        width: 290px;
    }
    .asidenews__pub div {
        margin: 0;
    }
}

@media (max-width: 600px) {
    .proscons {
        grid-template-columns: 1fr;
    }
    .pros li::before, .pros p::before {
        top: 4px;
    }
    .cons li::before, .cons p::before {
        top: 3px;
    }
    .bookmaker-table div {
        padding: 12px 0;
    }
    .bookmaker-table div:nth-of-type(odd) {
        font: var(--h5);
    }
    .asidebookmakers a, .asidenews a {
        width: 100%;
    }
}

/* Footer */

.footer {
    background-color: var(--black);
}

.footer-menu {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 30px 0;
}
.footer-menu a {
    font: var(--h4);  
    text-decoration: none;
    color: white;
    cursor: pointer;
    transition: color 0.2s;
}
.footer-menu a:hover {
    color: var(--second-color);
}
.footer__hr {
    width: 100%;
    height: 2px;
    background-color: var(--grey);
    border-radius: 2px;
}
.footer__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    color: white;
}
@media (max-width: 1200px) {
    .footer .container {
        padding-left: 15px;
        padding-right: 15px;
    }    
}
@media (max-width: 600px) {
    .header {
        padding: 20px 15px;
    }
    .footer-menu {
        flex-direction: column;
        justify-content: flex-start;
    }
    .footer__info {
        align-items: flex-start;
        gap: 10px;
        flex-direction: column;
    }
}

