/**
* Public casino table

.rw-top-casinos-wrapper{
    margin: 15px 0;
    width: 100%;
    float: left;
    border: none;
}
.rw-top-casinos-wrapper thead tr{
    width: 100%;
    display: block;
    float: left;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    border-radius: 3px;
}
.rw-top-casinos-wrapper tr{
    width: 100%;
    display: block;
    float: left;
    border: 1px solid #ccc;
    position: relative;
    transition: 0.5s;
}
.rw-top-casinos-wrapper tr.rw-top-casinos-item:hover{
    border: 1px solid green;
    transition: 0.5s;
}
.rw-top-casinos-wrapper tr.rw-top-casinos-item:hover span.rw-iterator{
    border: 1px solid green;
    transition: 0.5s;
}
tr.rw-top-casinos-item:first-child{
    border: 3px solid orange;
    transition: 0.5s;
}
tr.rw-top-casinos-item:first-child:hover{
    border: 3px solid red;
    transition: 0.5s;
}
tr.rw-top-casinos-item:first-child:hover span.rw-iterator{
    border: 1px solid red;
    color: red;
    transition: 0.5s;
}
span.rw-iterator{
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: 1;
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    border-radius: 50%;
    color: green;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}
tr.rw-top-casinos-item:first-child span.rw-iterator{
    border: 1px solid orange;
    color: orange;
    transition: 0.5s;
}
.rw-top-casinos-wrapper td,.rw-top-casinos-wrapper th{
    text-align: center;
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    border: none;
}
.rw-top-casinos-wrapper td{
    min-height: 125px;
    display: block;
}
.rw-top-casinos-wrapper h2{
    text-align: center;
}
.rw-top-casinos-items-th{
    display: block;
}
.rw-top-casinos-item{
    cursor: pointer;
    background: #fff;
    border-radius: 3px;
    min-height: 90px;
    padding: 10px;
    height: auto;
    margin-bottom: 15px;
}
.rw-top-casinos-item img{
    width: 100px;
    height: auto;
}
.rw-top-casinos-item-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 2px solid green;
    border-radius: 3px;
    max-width: 150px;
    width: 100%;
    height: 40px;
    margin: 0 auto;
    background: white;
    color: green;
    transition: 0.5s;
    font-size: 16px;
}
.rw-top-casinos-item-btn:hover{
    color: white;
    background: green;
    transition: 0.5s;
}
.rw-top-casinos-item-link{
    display: block;
    padding-top: 5px;
    text-align: center;
    color: #202020;
    text-decoration: underline;
    font-size: 14px;
}
#rw_show_more_wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}
#rw_show_more{
    min-height: 40px;
    background-color: white;
    color: green;
    border: 1px solid green;
    border-radius: 2px;
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    padding: 10px 0;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
}
#rw_show_more:hover{
    background-color: green;
    color: #fff;
}

@media(max-width: 768px){
    .rw-top-casinos-items-th{
        display: none;
    }
    .rw-top-casinos-wrapper td{
        width: 100%;
        min-height: 70px;
    }
}
*/
.single-casino-data{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.single-casino-data img{
    width: 200px;
    height: auto;
}
.single-casino-data .rw-top-casinos-item-btn{
    width: 200px;
}