        * {
            position: relative;
            box-sizing: border-box;
            outline: none;
        }
        
        body {
            background: #CEE3F3;
            color: #14376a;
            font: 400 14px/20px "Roboto", sans-serif;
            min-height: 100%;
            min-width: 320px;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-flex-direction: column;
            flex-direction: column;
            -webkit-justify-content: space-between;
            justify-content: space-between;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .section-title {
            color: #ffffff;
            font-size: 32px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 30px;
            text-transform: uppercase;
        }
        
        .container {
            max-width: 1300px;
            width: 100%;
            height: 100%;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .input {
            background-color: transparent;
            border: none;
            border-bottom: 1px solid #d94a12;
            color: #b0b1b1;
            height: 30px;
        }
        
        .btn {
            -moz-user-select: none;
            -webkit-user-select: none;
            -ms-user-select: none;
            user-select: none;
            color: #fff;
            font: 700 14px/38px "Roboto", sans-serif;
            position: relative;
            height: 30px;
            padding: 0 28px;
            text-align: center;
            text-transform: uppercase;
            cursor: pointer;
            border-radius: 35px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .input.btn-red,
        .btn-red {
            background-color: #fe284a;
            border: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 15px 25px;
            line-height: normal;
        }
        
        input.btn-red {
            padding: 0 10px;
        }
        
        .btn-red:hover {
            background: none;
            background-color: #871628;
        }
        
        .btn-border {
            background: none;
            border: 1px solid #fff;
            border-radius: 35px;
            color: #fff;
            width: auto;
            padding: 12px 25px !important;
        }
        
        .btn-border:hover {
            color: #fff;
        }
        
        .btn-menu {
            display: flex;
            flex-direction: column;
            width: 35px;
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .btn-menu span {
            display: flex;
            background-color: #ffffff;
            height: 3px;
            width: 100%;
            margin: 3px 0;
        }
        
        .btn-menu__close {
            width: 45px;
            height: 45px;
            z-index: 99;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 15px;
            right: 0;
        }
        
        .btn-menu__close span {
            display: flex;
            background-color: #ffffff;
            height: 1px;
            width: 100%;
            margin: 3px 0;
            transform-origin: 50% 50%;
        }
        
        .btn-menu__close span:first-child {
            transform: rotate(45deg) translate(9px, -8px);
        }
        
        .btn-menu__close span:last-child {
            transform: rotate(-45deg) translate(-8px, -7px);
        }
        
        .btn-menu:hover,
        .btn-menu__close:hover {
            cursor: pointer;
        }
        
        .content-text {
            align-items: flex-start;
            justify-content: flex-start;
            font-weight: 400;
            font-size: 16px;
            line-height: 1.5;
        }
        
        .navbar-wrapper {
            position: fixed;
            left: 0;
            top: 0;
            z-index: 400;
            width: 100%;
            min-width: 280px;
            background: rgba(19, 40, 79, .95);
            padding: 5px 0;
            height: 60px;
        }
        
        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .navbar-auth__wrapper {
            display: flex;
            justify-content: flex-end;
            width: 75%;
        }
        
        
        
        .logo {
            position: relative;
            z-index: 9;
            width: 200px;
            max-width: 200px;
            height: 46px;
            -ms-flex-shrink: 0;
            -webkit-flex-shrink: 0;
            flex-shrink: 0;
        }
        
        .logo a {
            display: block;
            height: 100%;
            margin-left: 30px;
            text-align: center;
        }
        
        .logo img {
            width: 100%;
            height: 100%;
            display: block;
        }
        
        .btn-login {
            padding: 0 1px;
            margin: 0 20px;
            font-weight: 400;
        }
        
        .header {
            padding-top: 56px;
        }
        
        .navbar-nav {
            position: fixed;
            top: 0;
            z-index: 505;
            -webkit-transition: all 0.5s ease;
            -o-transition: all 0.5s ease;
            -moz-transition: all 0.5s ease;
            transition: all 0.5s ease;
            right: -320px;
            width: 320px;
            height: 100%;
            padding-bottom: 20px;
            background: rgba(37, 37, 54, .95);
        }
        
        .navbar-nav .navbar-auth {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .navbar-nav .navbar-auth .btn.btn-red.btn-reg {
            margin-bottom: 10px;
        }
        
        .navbar-nav.open {
            right: 0;
            z-index: 502;
        }
        
        .navbar-nav nav {
            width: 100%;
            height: 100%;
            padding-top: 60px;
        }
        
        .navbar-nav ul {
            list-style: none;
            padding-left: 15px;
        }
        
        .navbar-nav ul li {
            border-bottom: 1px solid rgba(255, 255, 255, 0.09);
        }
        
        .navbar-nav ul li a {
            color: #bababa;
            font-size: 14px;
            text-decoration: none;
            line-height: 40px;
        }
        
        .navbar-nav ul li a:hover {
            color: #fff;
        }
        
        .slider {
            background-color: rgb(1, 42, 80);
        }
        
        .slider .item {
            height: 428px;
            background-position: 50% 50%;
            background-repeat: no-repeat;
            overflow: hidden;
        }
        
        .slider-content {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 50px;
            padding: 10px 10px 35px 10px;
            color: #ffffff;
            text-align: center;
            width: 200px;
        }
        
        .slider-content__offer {
            font: 500 14px/1.2em "Roboto", sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #fff;
        }
        
        .slider-content__offer span {
            margin-bottom: 24px;
            font: 500 14px/1.2em "Roboto", sans-serif;
            color: #fff;
        }
        
        .slider-btn {
            font-size: 16px;
            padding: 19px 34px;
            text-transform: none;
            font-weight: 500;
            background-color: #007fde;
        }
        
        .slider-btn:hover {
            background-color: rgba(19, 40, 79, .95);
        }
        
        .navbar-middle {
            background: #212132;
            background-image: url(../images/bg/body_strips.svg);
            overflow: hidden;
            padding: 0 50px;
        }
        
        .navbar-middle .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .middle-nav {
            background: #fff;
            border-radius: 5px;
            margin-top: -15px;
            z-index: 1;
            height: 65px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .middle-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }
        
        .middle-nav ul li {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
        }
        
        .middle-nav ul li a {
            color: #007ede;
            font-weight: 500;
            font-size: 14px;
            text-decoration: none;
        }
        
        .search {
            background: #007ede;
            color: #13284f;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 20px;
            height: 100%;
        }
        
        .search-submit {
            background-color: transparent;
            border: none;
            display: none;
        }
        
        .search-field {
            border: none;
            background: #007ede;
            color: #13284f;
        }
        
        .search-field::placeholder {
            color: #13284f;
        }
        
        .screen-reader-text {
            display: none;
        }
        /************************/
        
        .slots {
            padding: 50px;
        }
        
        .slots-items {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .slot-outer {
            flex-basis: 20%;
            box-shadow: 0 4px 10px 0 #000;
            transition: transform .15s linear;
        }
        
        .slot-outer__link {
            position: absolute;
            z-index: 1;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
        }
        
        .slot-outer:last-child {
            margin-right: 0;
        }
        
        .slot {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            height: 100%;
        }
        
        .slot-title {
            background-color: #161626;
            border: 1px solid #393a51;
            width: 100%;
            padding: 15px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border-top: none;
        }
        
        .slot-inner {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            display: none;
            align-items: center;
            justify-content: center;
            background-color: rgba(0, 0, 0, .5);
            transition: 0.2s;
            transition: transform .15s linear;
            z-index: 2;
        }
        
        .slot-outer:hover .slot-inner {
            display: flex;
        }
        
        .slot-icon {
            object-fit: cover;
            width: 100%;
            height: 100%;
        }
        .demo {
            margin-top: 10px;
        }
        
        .btn-slot {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            text-transform: none;
            background-color: #007fde;
        }
        
        .footer-navbar {
            border-bottom: 1px solid rgba(16, 160, 67, 0.15);
        }
        
        .footer-nav ul {
            list-style: none;
            padding: 0;
            display: flex;
            justify-content: center;
        }
        
        .footer-nav ul li {
            margin: 5px;
        }
        
        .footer-nav ul li a {
            color: #0091ff;
            text-decoration: none;
            padding: 5px;
        }
        
        .footer-nav ul li a:hover {
            color: #fff;
        }
        
        .copyright {
            text-align: center;
        }
        
        .related-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 46px;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
        }
        
        .slot-frame {
            padding: 30px 0;
        }
        
        .slot-frame iframe {
            width: 100%;
            height: auto;
            min-height: 550px;
        }
        
        .breadcrumbs {
            color: #14376a;
            margin: 20px 0;
        }
        
        .breadcrumbs a {
            color: #14376a;
        }
        
        .footer {
            color: #0091ff;
            background-color: #14376a;
        }
        
        .footer_payments {
            display: flex;
            align-items: center;
        }
        
        .footer_payments h3 {
            color: #ffffff;
            font-weight: 500;
        }
        
        .footer .footer_partners ul,
        .footer_payments ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding-left: 20px;
        }
        
        .footer .footer_partners li,
        .footer_payments li {
            height: 40px;
            margin: 0 30px 0 0;
        }
        
        .footer .footer_partners img,
        .footer_payments img {
            height: inherit;
            -o-object-fit: contain;
            object-fit: contain;
            max-width: 180px;
        }
        
        .footer_payments .payment_visa {
            width: 80px;
        }
        
        .footer_payments .payment_mastercard {
            width: 45px;
        }
        
        .footer_payments .payment_neteller {
            width: 120px;
        }
        
        .footer_payments .payment_skrill {
            width: 80px;
        }
        
        .footer_payments .payment_qiwi,
        .footer_payments .payment_webmoney,
        .footer_payments .payment_yandex-money {
            width: 40px;
        }
        
        .footer_payments .payment_moneta {
            width: 90px;
        }
        
        .footer_payments .payment_mobile {
            width: 40px;
        }
        
        .footer_payments .payment_apple-pay {
            width: 80px;
        }
        
        .footer_payments .payment_bitcoin {
            width: 40px;
        }
        
        .footer .services {
            display: block;
            margin: 0 auto;
            text-align: center;
        }
        
        .footer .services {
            display: block;
            margin: 0 auto;
            text-align: center
        }
        
        .footer .services iframe {
            display: none;
            background: none;
            width: 70px;
            height: 70px;
            -o-transform: scale(0.5);
            -moz-transform: scale(0.5);
            -webkit-transform: scale(0.5);
            transform: scale(0.5);
            margin-top: -10px
        }
        
        .footer .services .ico {
            display: inline-block;
            vertical-align: middle;
            height: 42px;
            background: url(../images/payments/developers-c44e04c30f34bcc82aa7e9d7c8db92abc555d342f11907272e3b63b0d329cc18.png) 0 0 no-repeat;
            margin: 0;
            width: initial
        }
        
        .footer .services .ico.license {
            background: none;
            width: 70px;
            -o-transform: scale(0.5);
            -moz-transform: scale(0.5);
            -webkit-transform: scale(0.5);
            transform: scale(0.5);
            margin-top: -10px
        }
        
        .footer .services .ico.games_lab,
        .footer .services .ico.boomerang,
        .footer .services .ico.splitrock,
        .footer .services .ico.gamefish_global,
        .footer .services .ico.bigtime {
            display: none
        }
        
        .footer .services .adults {
            width: 51px;
            background-position: -21px -9px;
            margin: 5px 14px
        }
        
        .footer .services .netent {
            width: 87px;
            background-position: -72px -9px;
            margin: 5px 14px
        }
        
        .footer .services .netent:hover {
            background-position: -72px -55px
        }
        
        .footer .services .microgaming {
            width: 130px;
            background-position: -159px -9px;
            margin: 5px 14px
        }
        
        .footer .services .microgaming:hover {
            background-position: -159px -55px
        }
        
        .footer .services .playson {
            width: 146px;
            background-position: -289px -9px;
            margin: 5px 14px
        }
        
        .footer .services .playson:hover {
            background-position: -289px -55px
        }
        
        .footer .services .booongo {
            width: 134px;
            background-position: -435px -9px;
            margin: 5px 14px
        }
        
        .footer .services .booongo:hover {
            background-position: -435px -55px
        }
        
        .footer .services .betsoft {
            width: 89px;
            background-position: -569px -9px;
            margin: 5px 14px
        }
        
        .footer .services .betsoft:hover {
            background-position: -569px -55px
        }
        
        .footer .services .quickspin {
            width: 129px;
            background-position: -658px -9px;
            margin: 5px 14px
        }
        
        .footer .services .quickspin:hover {
            background-position: -658px -55px
        }
        
        .footer .services .yggdrasil {
            width: 145px;
            background-position: -787px -9px;
            margin: 5px 14px
        }
        
        .footer .services .yggdrasil:hover {
            background-position: -787px -55px
        }
        
        .footer .services .redrake {
            width: 109px;
            background-position: -932px -9px;
            margin: 5px 14px
        }
        
        .footer .services .redrake:hover {
            background-position: -932px -55px
        }
        
        .footer .services .endorphina {
            width: 94px;
            background-position: -1041px -9px;
            margin: 5px 14px
        }
        
        .footer .services .endorphina:hover {
            background-position: -1041px -55px
        }
        
        .footer .services .booming {
            width: 103px;
            background-position: -1135px -9px;
            margin: 5px 14px
        }
        
        .footer .services .booming:hover {
            background-position: -1135px -55px
        }
        
        .footer .services .playngo {
            width: 105px;
            background-position: -1238px -9px;
            margin: 5px 14px
        }
        
        .footer .services .playngo:hover {
            background-position: -1238px -55px
        }
        
        .footer .services .nextgen {
            width: 141px;
            background-position: -1343px -9px;
            margin: 5px 14px
        }
        
        .footer .services .nextgen:hover {
            background-position: -1343px -55px
        }
        
        .footer .services .amatic {
            width: 107px;
            background-position: -1484px -9px;
            margin: 5px 14px
        }
        
        .footer .services .amatic:hover {
            background-position: -1484px -55px
        }
        
        .footer .services .novomatic-disabled {
            width: 155px;
            background-position: -1591px -9px;
            margin: 5px 14px
        }
        
        .footer .services .novomatic-disabled:hover {
            background-position: -1591px -55px
        }
        
        .footer .services .pushgaming {
            width: 195px;
            background-position: -1746px -9px;
            margin: 5px 14px
        }
        
        .footer .services .pushgaming:hover {
            background-position: -1746px -55px
        }
        
        .footer .services .betdigital {
            width: 141px;
            background-position: -1941px -9px;
            margin: 5px 14px
        }
        
        .footer .services .betdigital:hover {
            background-position: -1941px -55px
        }
        
        .footer .services .elk {
            width: 82px;
            background-position: -2082px -9px;
            margin: 5px 14px
        }
        
        .footer .services .elk:hover {
            background-position: -2082px -55px
        }
        
        .footer .services .thunderkick {
            width: 128px;
            background-position: -2164px -9px;
            margin: 5px 14px
        }
        
        .footer .services .thunderkick:hover {
            background-position: -2164px -55px
        }
        
        .footer .services .pragmatic {
            width: 116px;
            background-position: -2292px -9px;
            margin: 5px 14px
        }
        
        .footer .services .pragmatic:hover {
            background-position: -2292px -55px
        }
        
        .footer .services .gaming_1x2 {
            width: 94px;
            background-position: -2408px -9px;
            margin: 5px 14px
        }
        
        .footer .services .gaming_1x2:hover {
            background-position: -2408px -55px
        }
        
        .footer .services .tomhorn {
            width: 128px;
            background-position: -2502px -9px;
            margin: 5px 14px
        }
        
        .footer .services .tomhorn:hover {
            background-position: -2502px -55px
        }
        
        .footer .services .iron_dog {
            width: 127px;
            background-position: -2630px -9px;
            margin: 5px 14px
        }
        
        .footer .services .iron_dog:hover {
            background-position: -2630px -55px
        }
        
        .footer .services .leap_gaming {
            width: 86px;
            background-position: -2757px -9px;
            margin: 5px 14px
        }
        
        .footer .services .leap_gaming:hover {
            background-position: -2757px -55px
        }
        
        .footer .services .blueprint {
            width: 100px;
            background-position: -2843px -9px;
            margin: 5px 14px
        }
        
        .footer .services .blueprint:hover {
            background-position: -2843px -55px
        }
        
        .footer .services .evoplay-temp {
            width: 151px;
            background-position: -2943px -9px;
            margin: 5px 14px
        }
        
        .footer .services .evoplay-temp:hover {
            background-position: -2943px -55px
        }
        
        .footer .services .august {
            width: 94px;
            background-position: -3094px -9px;
            margin: 5px 14px
        }
        
        .footer .services .august:hover {
            background-position: -3094px -55px
        }
        
        .footer .services .redtiger {
            width: 151px;
            background-position: -3188px -9px;
            margin: 5px 14px
        }
        
        .footer .services .redtiger:hover {
            background-position: -3188px -55px
        }
        
        .footer .services .playtech {
            width: 148px;
            background-position: -3339px -9px;
            margin: 5px 14px
        }
        
        .footer .services .playtech:hover {
            background-position: -3339px -55px
        }
        
        .footer .services .egt {
            width: 90px;
            background-position: -3487px -9px;
            margin: 5px 14px
        }
        
        .footer .services .egt:hover {
            background-position: -3487px -55px
        }
        
        .footer .services .evolution {
            width: 178px;
            background-position: -3577px -9px;
            margin: 5px 14px
        }
        
        .footer .services .evolution:hover {
            background-position: -3577px -55px
        }
        
        .footer .services .relax_gaming {
            width: 96px;
            background-position: -3755px -9px;
            margin: 5px 14px
        }
        
        .footer .services .relax_gaming:hover {
            background-position: -3755px -55px
        }
        
        .footer .services .greentube_novomatic {
            width: 93px;
            background-position: -3851px -9px;
            margin: 5px 14px
        }
        
        .footer .services .greentube_novomatic:hover {
            background-position: -3851px -55px
        }
        
        .footer .services .wazdan {
            width: 165px;
            background-position: -3944px -9px;
            margin: 5px 14px
        }
        
        .footer .services .wazdan:hover {
            background-position: -3944px -55px
        }
        /******************************************/
        
        .comments-title {
            font-weight: 700;
            text-transform: uppercase;
            font-size: 24px;
            margin-bottom: 30px;
        }
        
        .comment-item {
            border: 2px solid #f0f0f0;
            padding: 15px;
            margin-bottom: 20px;
        }
        
        .comment-footer {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            margin-top: 20px;
        }
        
        .comment-rating {
            display: flex;
            margin-bottom: 5px;
        }
        
        .comment-rating__title {
            margin-right: 10px;
        }
        
        .comment-author {
            display: flex;
            align-items: center;
        }
        
        .comment-author__title {
            margin-right: 10px;
        }
        
        #commentform {
            max-width: 320px;
        }
        
        #commentform .input {
            border-bottom: 1px solid #f0f0f0;
            width: 100%;
        }
        
        #commentform .input:focus,
        #commentform .input:active {
            border-bottom: 1px solid #10a043;
        }
        
        #commentform .textarea:focus,
        #commentform .textarea:active {
            border: 1px solid #10a043;
        }
        
        .textarea {
            background-color: transparent;
            border: 1px solid #f0f0f0;
            color: #b0b1b1;
            max-width: 320px;
            width: 100%;
            min-height: 150px;
            padding: 10px;
        }
        /**************************************/
        
        .dashicons-star-filled,
        .all_com_pr span:before {
            color: #FB9C30;
        }
        
        .com_block_star {
            margin: 10px 0;
        }
        
        .comments-rating {
            border: none;
            padding: 0;
            margin-left: 0;
        }
        
        .comments-rating label {
            display: inline-block;
            font-size: 18px;
        }
        
        .rating-container {
            font-size: 0;
            unicode-bidi: bidi-override;
            direction: rtl;
        }
        
        .rating-container * {
            font-size: 1.4rem;
        }
        
        .rating-container>input {
            display: none;
        }
        
        .rating-container>input+label {
            font-family: 'dashicons';
            display: inline-block;
            overflow: hidden;
            text-indent: 9999px;
            width: 1em;
            white-space: nowrap;
            cursor: pointer;
            margin: 0;
        }
        
        .rating-container>input+label:before {
            display: inline-block;
            text-indent: -9999px;
            content: "\f154";
            color: #888;
        }
        
        .rating-container>input:checked~label:before,
        .rating-container>input+label:hover~label:before,
        .rating-container>input+label:hover:before {
            content: "\f155";
            color: #FB9C30;
            text-shadow: 0 0 1px #888;
        }
        
        .rating-container>.star-cb-clear+label {
            text-indent: -9999px;
            width: .5em;
            margin-left: -.5em;
        }
        
        .rating-container>.star-cb-clear+label:before {
            width: .5em;
        }
        
        .rating-container:hover>input+label:before {
            content: "\f154";
            color: #888;
            text-shadow: none;
        }
        
        .rating-container:hover>input+label:hover~label:before,
        .rating-container:hover>input+label:hover:before {
            content: "\f155";
            color: #FB9C30;
            text-shadow: 0 0 1px #888;
        }