@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 400;
    font-display: auto;
    src: url(../webfonts/fa-regular-400.eot);
    src: url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"), url(../webfonts/fa-regular-400.woff2) format("woff2"), url(../webfonts/fa-regular-400.woff) format("woff"), url(../webfonts/fa-regular-400.ttf) format("truetype"), url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0px;
    padding: 0px;
    background: #e8e8e8;
}

.logo img {
    height: 70px;
}

header {
    background: #030511;
    position: sticky;
    top: 0px;
    z-index: 1000;
}

.container {
    max-width: 1140px;
    width: 100%;
    margin: auto;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .container a {
    display: inline-block;
    color: #999;
    text-decoration: none;
    outline: 0;
    font-size: 1.1em;
    font-weight: 700;
    padding: 10px;
    border-radius: 5px;
    transition: .2s;
}

header .container a :hover {
    color: #bbb;
}

#banner {
    background: 0 0;
    position: relative;
    overflow: hidden;
}

#banner::before {
    background: url('../images/bannerbg.png');
    bottom: -15px;
    content: "";
    display: block;
    filter: blur(5px) brightness(0.6);
    left: -15px;
    position: absolute;
    right: -15px;
    top: -15px;
    z-index: -1;
}

.banner__content {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 10px;
    color: #d9d9d9;
    text-shadow: 0 0 10px #000;
}

.banner__content h1 {
    font-size: 40px;
    font-weight: 700;
    margin: .67em 0;
}

.banner-text__container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.banner-text__container .banner-text {
    font-size: 16px;
    margin: 20px;
}

.banner__card {
    margin: 20px;
    display: grid;
    grid-template-rows: 1fr 1fr;
    min-height: 200px;
    min-width: 150px;
    max-width: 250px;
    background-color: #fff;
    border-radius: 10px;
    text-decoration: none;
    outline: 0;
}

.banner-card-logo {
    margin: 5px;
    background-position: center;
    background-size: cover;
    background-image: url('../images/banneromg.png');
}

.banner-card-text {
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #222;
    font-weight: 700;
    text-shadow: 0 0 5px #0005;
}

.rating__row {
    display: grid;
    grid-template-columns: .9fr .7fr 1fr 1fr 1fr 1fr;
    border: 1px solid #aaa;
    background-color: #8e8e8e;
    margin-bottom: 10px;
}

.rating__row>div {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
}

.rating__row-rating svg {
    width: 90px;
    height: 90px;
}

.rating__row-rating circle {
    stroke-width: 4;
    fill: transparent;
    stroke: #5054a9;
    transform-origin: center;
    transform: rotate(-90deg);
    transition: 1s;
}

.rating__row-rating text {
    fill: #282828;
    alignment-baseline: middle;
    text-anchor: middle;
    font-weight: 700;
    font-size: 1.5em;
}

.rating__row_payments_container {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.rating__row_payments_item {
    height: 25px;
    margin: 2px;
    transition: all .5s;
    box-shadow: 0 0 6px #aaa;
}

.rating__row_payments_title {
    text-align: center;
    font-size: 13px;
    padding-bottom: 5px;
}

.rating__row_payments {
    padding: 20px;
}

img {
    max-width: 100%;
}

.rating__row-logo {
    padding: 10px
}

.rating__row_buttons_name {
    font-weight: 700;
    color: #545454;
    padding: 5px;
    text-align: center;
}

.rating__row_buttons_review {
    color: #545454;
    padding: 5px;
    text-decoration: none;
    text-align: center;
}

.rating__row_buttons_play {
    margin: 5px;
    border-radius: 5px;
    background-color: #f90;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    text-align: center;
}

.rating__row-bonus {
    align-items: center;
    color: #5054a9;
    text-align: center;
}

.rating__row_money>div {
    padding: 5px 0;
    font-size: 13px;
    color: #545454;
}

@media (max-width: 575px) {
    .logo img {
        height: 40px;
    }
    header .container {
        flex-flow: column nowrap;
    }
    header .container a {
        font-size: .8em;
        padding-bottom: 0px;
        padding-top: 0px;
    }
    header .nav {
        text-align: center;
    }
    .banner-text__container {
        flex-direction: column-reverse;
    }
    .rating__row {
        grid-template-columns: 1fr;
    }
    .rating__row-rating {
        align-items: center !important;
    }
    .rating__row_buttons,
    .rating__row_money {
        padding: 10px;
    }
}

.banner_play {
    margin-top: 25px;
    padding: 15px 30px;
    font-weight: 700;
    color: #d9d9d9;
    background-color: #f86e03;
    border-radius: 10px;
    text-transform: uppercase;
    text-decoration: unset;
    transition: all .2s
}

.banner_play:hover {
    background-color: #d84e03;
}

.text-center {
    text-align: center;
}

.info_table_container {
    min-height: 100px;
    padding: 10px;
    margin: 10px;
    background-color: #e9e9e9;
}

.info_table-title {
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 1px solid;
    font-weight: 700;
    font-size: 1.6em;
    border-top: 1px solid #434343;
}

.infoTable {
    display: table;
    width: 100%;
}

.infoTableRow {
    display: table-row;
}

.infoTableIcon {
    padding-left: 10px;
    display: table-cell;
    width: 1%;
    white-space: nowrap;
}

.infotTibleTitle {
    display: table-cell;
    width: 1%;
    white-space: nowrap;
    font-weight: 700;
    font-size: 1em;
    padding: 20px 15px;
}

.infotTibleTitle br {
    display: none;
}

.whitebg {
    background: white;
}

.img-table-group {
    display: flex;
    flex-flow: row wrap;
}

.img-table-group img {
    height: 25px;
    margin: 2px;
}

@media (max-width: 576px) {
    .infotTibleTitle br {
        display: block;
    }
    .infoTableText {
        font-size: 13px;
    }
}

.reviewNav {
    min-height: 100px;
    padding: 10px;
    margin: 10px;
    background-color: #e9e9e9;
}

.reviewNav ul {
    margin: 0px;
}

.reviewNav__title {
    padding-top: 15px;
    padding-bottom: 15px;
    font-weight: 700;
    font-size: 1.6em;
    border-top: 1px solid #434343;
}

.reviewNav a {
    color: #434343;
    text-decoration: none;
    outline: 0;
}

.reviewNav a:hover {
    color: #000;
}

.screensContainer {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    justify-items: center;
}

.screensContainer img {
    padding: 5px;
    box-sizing: border-box;
    max-height: unset;
    height: 150px;
    width: 100%;
    object-fit: cover;
}

.reviewHeader {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.reviewHeader>div:first-child {
    width: calc(40% - 10px);
    box-sizing: border-box;
    margin-right: 10px;
}

.reviewHeader>div:last-child {
    width: 55%;
}

@media (max-width: 700px) {
    .reviewHeader>div {
        margin: 10px;
        width: 100% !important;
    }
    .guideElement {
        width: 100% !important;
    }
}

.rating__row_buttons_play:hover {
    background-color: #d80;
}

.rating__row_buttons_review:hover {
    font-weight: 700;
}

.banner__card:hover {
    background-color: #ddd;
}

.imgcenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: auto;
}

.container {
    padding-left: 5px;
    padding-right: 5px;
    box-sizing: border-box;
}

img.left {
    float: left;
    margin: 0 1em 1em 0;
}

img.rigth {
    float: right;
    margin: 0 0 1em 1em;
}

img {
    max-width: 100%;
    height: auto;
}

.guideMainContainer {
    background-color: #434343;
    padding-bottom: 50px;
}

.guideMainContainer .container {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    margin: auto;
}

.guide__title {
    color: white;
    padding: 50px 10px;
    margin: 0;
    font-size: 30px;
    text-align: center;
    font-weight: bold;
}

.guideElement {
    width: 33%;
}

.guideElement>div {
    background-color: #555555;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    padding: 20px;
    margin: 15px;
    height: calc(100% - 40px - 30px);
}

.guideElement>div a img {
    padding: 5px;
    box-sizing: border-box;
    width: 100%;
}

.guideElement>div>div:last-child {
    color: #d5d5d5;
    text-align: center;
}

.guideElement>div>div:first-child {
    background-color: #d34e24;
    color: #f5f5f5;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 999px;
    font-weight: bold;
    margin-bottom: 15px;
}

body,
header,
#banner::before {

background: #fff !important;
filter: none !important;
}

.banner__content {
	color: black !important;
	text-shadow: none !important;
}

.rating__row {
    background-color: #f9f9f9 !important;
    border: 1px solid #c2bbbb !important;
}

.rating__row-logo {
    background: black;
}