body {
    padding: 0px;
    margin: 0px;
    background: url('../images/bg.png');
    background-color: #000;
    font-family: Russo One, sans-serif;
}

header {
    background: url('../images/header.png');
    height: 105px;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12);
    position: fixed;
    z-index: 5000;
    width: 100%;
}

.header-conent {
    display: flex;
    width: 100%;
    max-width: 1185px;
    margin: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

.btns {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    top: 25px;
}

.registration, .singin {
    display: flex;
    font-weight: 600;
    width: 170px;
    font-style: normal;
    line-height: 17px;
    height: 50px!important;
    background-color: unset!important;
    background-size: cover;
    border-radius: 5px;
    font-size: 14px;
    /* box-sizing: border-box; */
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
    color: rgba(0, 0, 0, .87);
    text-transform: uppercase;
    text-decoration: none;
}

.registration:hover, .singin:hover {
    opacity: 0.9;
}

.registration svg {
    width: 14px;
    margin-right: 5px;
}

.registration {
    background-image: url(../images/btn_bg1.png);
    margin-right: 20px;
}

.singin {
    background-image: url(../images/btn-bg2.png);
}

main {
    width: 100%;
    max-width: 1185px;
    margin: auto;
}

main:first-of-type {
    padding-top: 120px;
}

main:last-of-type {
    padding-bottom: 70px;
}

#panel {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.panel__item {
    height: 60px;
    color: #fff;
    background-color: transparent!important;
    border-style: inset;
    border-color: #c18f24;
    border-radius: 5px;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22%;
    box-sizing: border-box;
}

.panel__item:hover {
    box-shadow: 0 0 10px #c18f24;
}

.panel__item img {
    height: 35px;
    padding-right: 5px;
}

.panel__item svg {
    width: 24px;
    height: 24px;
    padding-left: 5px;
}

.slots {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
    width: 100%;
}

.slot {
    position: relative;
}

.slot-name {
    background: black;
    height: 25px;
    position: relative;
    top: -30px;
    z-index: 1;
    color: white;
    opacity: 0.8;
    text-align: center;
}

.slot-overlay {
    -webkit-transition: .5s ease;
    transition: .5s ease;
    z-index: 5;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    vertical-align: middle;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(0, 0, 0, .7);
    border: 1px solid #c18f24;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: inset 0 0 10px #c18f24, inset 0 0 5px hsla(0, 0%, 100%, .35);
    box-shadow: inset 0 0 10px #c18f24, inset 0 0 5px hsla(0, 0%, 100%, .35);
}

.slot:hover .slot-overlay {
    opacity: 1;
}

.slot img {
    border: 1px solid transparent;
    -o-object-fit: fill;
    object-fit: fill;
    width: 99%;
    height: 100%;
}

.slot-play {
    min-width: 64px;
    padding: 0 16px;
    font-weight: 600;
    background-color: unset!important;
    width: 170px;
    background-image: url(../images/btn_bg1.png);
    background-size: cover;
    color: #000;
    border-radius: 5px;
    font-style: normal;
    font-size: 14px;
    top: calc(50% - 22.5px);
    height: 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
    margin: auto;
    margin-top: 70px;
}

.slot svg {
    width: 24px;
}

.slot-demo {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.slot-demo:hover {
    text-decoration: underline;
}

.top-players-lg {
    grid-row: 1/6;
    grid-column: 5/7;
    background: black;
    padding: 0px;
    min-width: 290px;
    min-height: 100%;
}

.top-players-table {
    width: 320px;
    margin: 0 auto;
    font-size: 15px;
    font-family: Montserrat;
    color: #fff;
    margin-top: 15px;
}

.top-players-table>div {
    border-radius: 3px;
    margin: 0px auto;
    white-space: nowrap;
    border: solid 1px #c18f24;
    display: flex;
    padding: 5px;
}

#advantages {
    background: #000;
    margin: 20px 0px;
    padding: 20px 0px;
}

.advantages {
    display: flex;
    flex-wrap: wrap;
    max-width: 1185px;
    width: 100%;
    margin: auto;
    justify-content: space-between;
}

.advantage {
    width: 13%;
    border: solid 2px #c18f24;
    margin: 10px;
    border-radius: 4px;
    text-align: center;
    color: white;
}

.advantage svg {
    width: 6vw;
    margin-top: 15px;
}

.advantage b {
    color: #c18f24;
    font-weight: 400;
}

.new-player-title {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    color: white;
    margin-top: 20px;
}

.new-player {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0px;
}

.new-player img {
    width: 60px;
    height: 60px;
}

.new-player-summ div:first-child, .new-player-summ div:last-child {
    padding: 0px 15px;
    text-align: left;
    color: white;
    font-family: Montserrat;
    white-space: nowrap;
}

.new-player-summ div:nth-child(2) {
    padding: 0px 15px;
    text-align: left;
    color: #c18f24;
    font-size: 25px;
}

.top-players-table>div>div:last-child {
    margin-left: auto;
}

.top-players-table>div>div:first-child {
    margin-right: 5px;
}

#payments img {
    opacity: 0.3;
    vertical-align: middle;
}

#payments, #providers {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 20px 0px;
}

#providers {
    background: black;
    flex-wrap: wrap;
    padding: 10px 0px;
}

#providers img {
    max-width: 100px;
    max-height: 100px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    width: 100%;
}

#providers>div {
    width: 16.6666666667%;
    text-align: center;
}

.slick-arrow {
    background: #c18f24 !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    z-index: 111;
}

.slot:first-child {
    grid-area: 5 / 3 / 7 / 5;
}

.slot:nth-child(2) {
    grid-area: 3 / 1 / 5 / 3;
}

.slot:nth-child(3) {
    grid-area: 1 / 3 / 3 / 5;
}

#top-players {
    display: none;
}

.slick-slide img {
    width: 100%;
}

.advice {
    position: fixed;
    z-index: 220;
    bottom: -1px;
    width: 100%;
    overflow: hidden;
    background-color: #000;
    border-top: solid 2px #c18f24;
}

.advice-content {
    color: white;
    max-width: 1185px;
    width: 100%;
    margin: auto;
    text-align: center;
    padding: 20px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.advice-content a {
    margin-left: 20px;
}

.slick-next {
    right: 5px !important;
}

.slick-prev {
    left: 5px !important;
}

.content {
    color: white;
}

.content p, .content ul {
    font-family: Montserrat;
    font-size: 14px;
}

ul {
    list-style: none;
    padding: 0px;
}

a {
    text-decoration: none;
    text-transform: none;
    color: yellow;
}

h1, h2, h3, h4, h5 {
    color: #c18f24;
    font-weight: 400;
    padding: 0px;
    margin: 0px;
}

.content {
    padding-top: 20px !important;
    padding-bottom: 10px !important;
}

h1 {
    font-size: 25px;
}

h2 {
    font-size: 22px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

.content a:hover {
    color: yellowgreen;
}

@media screen and (max-width:1000px) {
    .slots {
        grid-template-columns: auto auto;
        grid-auto-rows: 200px;
        width: 100%;
    }
    .slot:first-child {
        grid-area: auto;
    }
    .slot:nth-child(2) {
        grid-area: auto;
    }
    .slot:nth-child(3) {
        grid-area: auto;
    }
    .slot:nth-child(5) {
        grid-area: 3 / 1 / 4 / 3;
    }
    .slot:nth-child(12) {
        grid-area: 7 / 1 / 8 / 3;
    }
    .slot:nth-child(17) {
        grid-area: 11 / 1 / 10 / 3;
    }
    #panel, .header-conent, .content {
        padding: 0px 5px;
    }
    .panel__item {
        width: 49%;
        margin-bottom: 10px;
    }
    .top-players-lg {
        display: none;
    }
    .advantages {
        justify-content: space-between;
    }
    .advantage {
        width: 45%;
    }
    #top-players {
        display: flex;
        justify-content: center;
        background: black;
        padding-bottom: 10px;
    }
    .header-conent {
        justify-content: start;
    }
}

@media screen and (max-width:500px) {
    .advantages {
        justify-content: center;
    }
    .advantage {
        width: 80%;
        display: flex;
        align-self: center;
        justify-content: center;
        padding: 0px 5px;
    }
    .advantage svg {
        margin-top: 0px;
        margin-right: 10px;
    }
}

@media screen and (max-width:600px) {
    .logo img {
        width: 110px;
        height: 100%;
    }
    .btns a {
        width: 120px;
        font-size: 12px;
    }
    .header-conent {
        align-items: center;
    }
}

@media screen and (max-width:400px) {
    .header-conent {
        ALIGN-ITEMS: center;
        justify-content: center;
    }
    .btns {
        position: relative;
        top: 0px;
    }
}

@media screen and (max-width:370px) {
    header {
        height: 120px;
    }
    main:first-of-type {
        padding-top: 130px;
    }
}

.bpo {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    right: 0;
    bottom: 5px;
    max-width: 300px;
    margin: 0 auto;
}

.bpo img {
    width: 300px;
}

.bpclose {
    position: absolute;
    top: -16px;
    right: -18px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    background: url('../images/close.png') no-repeat;
}

@media (max-width: 340px) {
    .bpo {
        max-width: 87%;
    }
}



#mirror {
    padding-top: 20px;
}

.mirror {
    padding-top: 20px;
    display: flex;
    flex-wrap: nowrap;
    place-content: stretch flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 25px;
    color: white;
}

.mirror-bonus-btn {
    display: flex;
    justify-content: center;
}

.mirror .mirror-text {
    margin: 0 15px 0 30px;
    flex-grow: 2;
    font-size: 18px;
    font-family: "Segoe UI";
    font-weight: 500;
    box-sizing: content-box;
    width: 100%;
}

.mirror-text li {
    list-style: none;
    margin-right: 20px;
    display: flex;
}

.mirror .info-stats {
    display: flex;
    flex-wrap: wrap;
}

.mirror-link {
    display: block;
    min-width: 170px;
    text-align: center;
    background: #ee392b;
    color: #fff;
    text-transform: uppercase;
    padding: 12px 20px;
    margin: 10px 0;
    text-decoration: none;
    font-size: 14px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
    font-weight: 700;
    border-radius: 30px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.mirror .mirror-text .info-link {
    margin-bottom: 8px;
}

.mirror .mirror-button span {
    color: #25a75c;
    font-weight: 700;
}

.mirror .mirror-button {
    text-align: center;
}

@media only screen and (max-width: 1000px) {
    .mirror {
        flex-direction: column;
    }
}

#promo {
    padding-bottom: 20px;
    color: white;
}

#promo .promo-ends {
    text-align: center;
    margin: 10px 0;
    display: block;
    width: 100%;
}

#promo .promo-code {
    width: 250px;
    margin: 20px auto;
    display: flex;
}

#promo #myInput {
    display: block;
    font-size: 22px;
    height: 50px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 2px dashed #bababa;
    text-align: center;
    min-width: 180px;
}

#promo .promo-registration {  
    margin: 20px auto;
    justify-content: center;
    text-align: center;
    align-items: center;  
    display: flex;
}

.mirror-bonus-btn a {
    width: 100%;
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

