html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    outline: none;
    white-space: nowrap;
    background-color: #000000;
}

#main_content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
#content {
    display: flex;
    justify-content: center;
    align-items: center;
}
#plancia-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
#plancia {
    position: relative;
    display: block;
    margin: 0 auto;
    height: 100%;
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#btn-btnClosePanel {
    z-index: 3;
}

.t-uppercase {
    text-transform: uppercase !important;
}

.t-h5 {
    font-size: 18px;
    margin: 10px 0px;
}

.disabledbutton {
    pointer-events: none;
    opacity: 0.4;
}

.invisible {
    visibility:hidden;
    z-index: -1;
}

#panelMenu {
    top:0;
}

.phaser-box2win {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	visibility:hidden;
}

/****MENU****/
#plancia .menu {
    position: absolute;
    right: 20px;
    top: 15px;
}

#plancia .menu .btn-menu {
    width: 45px;
    height: 39px;
    transition: transform .2s ease-out;
}

#plancia .menu .btn-menu svg {
    fill: white;
    width: 100%;
    height: auto;
}

#plancia .menu .btn-menu:hover {
    transform: scale(1.05);
}

#plancia .menu .btn-menu:active {
    transform: translateY(2%);
}
/****MENU****/

.plancia-wrap {
    height: 100%;
    position: relative;
}

.rules-container {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%/*calc(100% - 95px)*/;
    background-color: rgba(0,0,0,.85);
    opacity: 0;
    pointer-events: none;
    transition: all .4s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: Montserrat-Light;
    user-select: none;
    white-space: normal;
}

.rules-container.show {
    opacity: 1;
    pointer-events: all;
}

.rules-container.show ~ .plancia-container .plancia-wrap {
    background-color: rgba(0,0,0,.85) !important;
}

.rules-container .page-container {
    width: 100%;
    height: 80%;
    overflow: hidden;
}

.rules-container .page-container .rules-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.rules-container .page-container .rules-wrapper .rules-loader-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rules-container .page-container .rules-wrapper .rules-loader-wrapper svg {
    width: 40px;
}

.rules-container .page-container .rules-wrapper h1 {
    font-size: 2rem;
    /*font-family: Montserrat-Bold;*/
    margin-bottom: 2rem;
    text-align: center;
}

.rules-container .page-container .rules-wrapper section {
    width: 70%;
    margin-bottom: 1.5rem;
}

.rules-container .page-container .rules-wrapper section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.rules-container .page-container .rules-wrapper section ul {
    box-sizing: border-box;
    width: calc(100% - 2rem);
    margin-left: 2rem;
    font-size: 18px;
    line-height: 24px;
}

.rules-container .page-container .rules-wrapper section ul li {
    margin-bottom: 1.2rem;
}

.rules-container .page-container .rules-wrapper section ul li .listitem-wrapper {
    display: flex;
    align-items: center;
}

.rules-container .rules-table {
    width: 100%;
    margin-bottom: 2rem;
}

.rules-container .rules-table .rules-table-row {
    display: flex;
    align-items: center;
    border-bottom: solid thin rgba(255,255,255,.3);
    padding: 5px 0px 5px 0px;
}

.rules-container .rules-table .rules-table-headercell {
    width: 100%;
    height: 20px !important;
    font-family: Montserrat-Bold;
    text-transform: uppercase;
    font-size: 12px;
}

.rules-container .rules-table .rules-table-cell {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rules-container .rules-table .rules-table-cell-img span {
    position: absolute;
    font-size: 12px;
    padding-left: 41px;
}

.rules-container .rules-table .rules-table-cell-img img {
    max-width: 90%;
}

.rules-container .rules-table .rules-table-cell-img .rules-table-cell-img-title {
    padding: 0;
    margin-top: -50px;
}

.rules-container .rules-table .rules-table-cell-img .rules-table-cell-img-value {
    margin-top: 13px;
    font-size: 15px;
    padding: 0;
}

.rules-container .rules-table .rules-table-cell-img .rules-table-cell-img-value2 {
    margin-top: 0;
    font-size: 15px;
    padding: 0;
    color: black;
    font-weight: bolder;
}

.rules-container .rules-table .rules-table-cell-lower {
    max-width: 30%;
}

.rules-container .rules-table .rules-table-cell-leftalign {
    justify-content: flex-start;
}

.rules-container .rules-table .rules-table-cell img {
    max-height: 80%;
}

.rules-container .page-container .btn-exit-help {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 50px;
    top: 50px;
    cursor: pointer;
    transition: all .2s ease-out;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rules-container .page-container .btn-exit-help:hover {
    transform: scale3d(1.2,1.2,2);
    background-color: rgba(255,255,255,.3);
}

.rules-container .page-container .btn-exit-help:hover svg {
    transform: rotate(90deg);
}

.rules-container .page-container .btn-exit-help:active {
    transform: scale3d(.95,.95,.95);
}

.rules-container .page-container .btn-exit-help svg {
    fill: white;
    width: 50%;
    transition: all .2s ease-out;
}

.rules-container .version-wrapper {
    position: absolute;
    bottom: 25px;
    right: 30px;
    display: flex;
    font-size: 12px;
    color: rgba(255,255,255,.5);
}
.rules-container .version-wrapper div {
    margin-right: 5px;
}

.rules-container .version-wrapper .version-label {
    color: rgb(255,255,255);
}

.disabled-container {
    width: 100%;
    position: absolute;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    z-index: 9999;
    user-select: none;
    background: rgba(0,0,0,.3);
    top: 0;
    left: 0;
}
.padding-forced {
    padding: 5rem !important;
}
.disabled-container.show {
    pointer-events: all;
    opacity: 1;
}

.disabled-container.show > .disabled-wrap {
    transform: translate3d(0,0,0);
}

.disabled-container .disabled-wrap {
    font-family: Montserrat-Bold, serif;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 5rem 2rem;
    background-color: rgba(0,0,0,.8);
    border-radius: 20px;
    transition: transform .2s ease-out;
    transform: translate3d(0,-200%,0);
}

.disabled-container .disabled-wrap h1 {
    font-size: 35px;
}

.disabled-container .disabled-wrap h5 {
    color: #fbff02;
}

.disabled-container .disabled-wrap .btn-close-dialog {
    width: 50%;
    height: 50px;
    margin-top: 30px;
    background-color: #32b132;
    cursor: pointer;
    transition: background-color .3s;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-family: Montserrat-Medium, serif;
}

.disabled-container .disabled-wrap .btn-close-dialog:hover {
    background-color: greenyellow;
    color: black;
}

.ps__thumb-y {
    background-color: rgb(102, 255, 255) !important;
}

.ps .ps__rail-x:hover, .ps .ps__rail-y:hover, .ps .ps__rail-x:focus, .ps .ps__rail-y:focus, .ps .ps__rail-x.ps--clicking, .ps .ps__rail-y.ps--clicking {
    background-color: rgba(0,0,0,0) !important;
    opacity: 0.9;
}

.ps__rail-y:hover > .ps__thumb-y, .ps__rail-y:focus > .ps__thumb-y, .ps__rail-y.ps--clicking .ps__thumb-y {
    width: 5px !important;
}


/* box footer style */
.box-footer {
    height: 35px;
    width: 90%;
    background: rgb(0, 0, 0);
    display: flex;
    padding-left: 10px;
    padding-right: 10px;
    border-top: solid thin rgba(255, 255, 255, .1);
    border-bottom: solid thin rgba(255, 255, 255, .1);
    align-items: center;
    justify-content: space-between;
}
.box-footer .menu-wrapper {
    display: flex;
    z-index: 1;
}
.box-footer .btn-menu {
    transition: transform .2s ease-out;
    width: 20px;
    height: 20px;
}
.box-footer .btn-menu svg {
    fill: white;
    height: 100%;
}
.box-footer .btn-menu:hover {
    transform: scale(1.05);
    cursor: pointer;
}
.box-footer {
    position: absolute;
    top: 95.6%;
    width: 100%;
    height: 4.4%;
}
.cell-footer1 {
    position: absolute;
    height: 60%;
    width: 20%;
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
}
.cell-footer2 {
    position: absolute;
    height: 60%;
    width: 20%;
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    left: 20%;
    bottom: 0;
    right: 0;
    text-align: center;
}
.cell-footer3 {
    position: absolute;
    height: 60%;
    width: 20%;
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    left: 40%;
    bottom: 0;
    right: 0;
    text-align: center;
}
.cell-footer4 {
    position: absolute;
    height: 60%;
    width: 20%;
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    left: 60%;
    bottom: 0;
    right: 0;
    text-align: center;
}
.cell-footer5 {
    position: absolute;
    height: 60%;
    width: 20%;
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    left: 80%;
    bottom: 0;
    right: 0;
    text-align: center;
}
.text-style-footer-1 {
    font-family: Montserrat-Light, sans-serif;
    color: #5bb7ee;
}
.text-style-footer-2 {
    font-family: Montserrat-Light, sans-serif;
    color: #ffffff;
}
.text-style-footer-3 {
    font-family: Montserrat-Light, sans-serif;
    color: #ff8600;
}
/* box footer style */

.none {
    display: none !important;
}

/****MENU****/
#plancia .plancia-wrap .menu-dialog .menu-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-height: 266px;
    color: white;
}

#plancia .plancia-wrap .menu-dialog {
    z-index: 3;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    font-family: Montserrat-Medium, serif;
    font-size: 2vw;
    background-color: rgba(0, 0, 0, .8);
    display: flex;
    justify-content: center;
    transition: opacity .2s ease-out;
    pointer-events: none;
    width: 100%;
    height: 100%;
    overflow: auto;
}

#plancia .plancia-wrap .menu-dialog.show {
    opacity: 1;
    pointer-events: all;
}

.btn-exit-help {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 50px;
    top: 50px;
    cursor: pointer;
    transition: all .2s ease-out;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-exit-help:hover {
    transform: scale3d(1.2, 1.2, 2);
    background-color: rgba(255, 255, 255, .3);
}

.btn-exit-help:hover svg {
    transform: rotate(90deg);
}

.btn-exit-help:active {
    transform: scale3d(.95, .95, .95);
}

.btn-exit-help svg {
    fill: white;
    width: 50%;
    transition: all .2s ease-out;
}

#plancia .plancia-wrap .menu-dialog .separator {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, .5);
    margin-top: 5px;
    margin-bottom: 5px;
}

#plancia .plancia-wrap .menu-dialog .btn-dialog {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 10px;
    padding: 5px 15px 5px 15px;
    transition: background-color .3s ease-out;
}

#plancia .plancia-wrap .menu-dialog .btn-dialog:hover {
    background-color: rgba(255, 255, 255, .2);
    cursor: pointer;
}

#plancia .plancia-wrap .menu-dialog .btn-dialog .btn-icon {
    width: 3vw;
    margin-right: 15px;
    display: flex;
}

.btn-icon {
    width: 3vw;
    margin-right: 15px;
    display: flex;
}

.btn-icon svg {
    fill: white;
}

#plancia .plancia-wrap .menu-dialog .btn-dialog .btn-icon svg {
    fill: white;
}

#plancia .plancia-wrap .menu-dialog .btn-dialog .btn-label {
    user-select: none;
    white-space: nowrap;
}
/****MENU****/


/* Error Wrap */
.error-container {
    position: fixed;
    width: 100% !important;
    height: 100% !important;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
}
.error-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #e52d27; /* fallback for old browsers */
    background: -webkit-linear-gradient(to top, #b31217, #e52d27); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to top, #b31217, #e52d27); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    font-family: Montserrat-Medium, serif;
    color: rgba(0,0,0,.5);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 2rem;
    display: none;
    z-index: 99999;
}
.error-timeout-wrap{
    background: #485563;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to top, #29323c, #485563);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to top, #29323c, #485563); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: rgba(37,255,155,.6);
}
.error-wrap.show{
    display: flex;
}
.error-wrap h1{
    font-family: Montserrat-Light, serif;
    color: white;
    margin: 0;
    padding: 0;
}
.error-wrap h5{
    margin: 0;
    padding: 0;
}
.error-wrap img{
    max-width: 70px;
    margin: 30px;
}
.error-wrap p{
    font-family: Montserrat-Light, serif;
    color: white;
    font-size: 1rem;
    position: absolute;
    bottom: 20%;
    max-width: 85%;
    white-space: normal;
    text-align: center;
}
.error-wrap .error-code {
    bottom: 15%;
}


.paytable-container {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%/*calc(100% - 95px)*/;
    background-color: rgba(0,0,0,.85);
    opacity: 0;
    pointer-events: none;
    transition: all .4s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: Montserrat-Light, serif;
    user-select: none;
    white-space: normal;
}

.paytable-container.show {
    opacity: 1;
    pointer-events: all;
}

.paytable-container.show ~ .plancia-container .plancia-wrap {
    background-color: rgba(0,0,0,.85) !important;
}

.paytable-container .page-container {
    width: 100%;
    height: 90%;
    overflow: hidden;
}

.paytable-container .page-container .paytable-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.paytable-container .page-container .paytable-wrapper h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.paytable-container .page-container .btn-exit-help {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 50px;
    top: 50px;
    cursor: pointer;
    transition: all .2s ease-out;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.paytable-container .page-container .btn-exit-help:hover {
    transform: scale3d(1.2,1.2,2);
    background-color: rgba(255,255,255,.3);
}

.paytable-container .page-container .btn-exit-help:hover svg {
    transform: rotate(90deg);
}

.paytable-container .page-container .btn-exit-help:active {
    transform: scale3d(.95,.95,.95);
}

.paytable-container .page-container .btn-exit-help svg {
    fill: white;
    width: 50%;
    transition: all .2s ease-out;
}

.paytable-container .paytable-combinations {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 1%;
    box-sizing: border-box;
}

.paytable-container .paytable-combinations .paytable-combination {
    width: 18%;
    height: 150px;
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    margin-bottom: 45px;
    margin-right: 2%;
}

.paytable-container .paytable-combinations .paytable-combination.paytable-rank {
    width: 10%;
}

.paytable-container .paytable-combinations .paytable-combination .paytable-combination-title {
    position: absolute;
    bottom: 0;
    margin-bottom: -25px;
    display: block;
    width: 100%;
    border-top: solid thin white;
    padding-left: 5px;
    font-size: 14px;
    font-weight: bolder;
}

.btn-paytable {
    position: absolute;
    top: 2%;
    left: 2%;
    width: 4%;
    z-index: 1;
}

.btn-paytable svg {
    fill: white;
}


/******************************** Messages Dialog ********************************/
#messagesDialog {
    opacity: 0;
    pointer-events: none;
}
#messagesDialog.show {
    opacity: 1;
    pointer-events: all;
}
.message-container {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.4);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.message-container .message-wrapper {
    min-width: 40%;
    background: rgba(0,0,0,.8);
    border: solid thin rgba(255,255,255,.2);
    border-radius: 10px;
    color: rgba(255,255,255,.8);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 1.5vw;
}
.message-container .message-wrapper .message-title {
    width: 100%;
    height: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Montserrat-Light, serif;
    font-weight: bolder;
    border-bottom: solid thin rgba(255,255,255,.2);
    color: #f8ff20;
    position: relative;
    padding: 5% 5%;
    box-sizing: border-box;
}
.message-container .message-wrapper .message-icon {
    background-image: url(imgs/message_icon.png);
    background-position: center;
    background-size: contain;
    position: absolute;
    left: 5%;
    width: 2vw;
    height: 2vw;
    background-repeat: no-repeat;
}
.message-container .message-wrapper .message-timer {
    position: absolute;
    right: 5%;
}
.message-container .message-wrapper .message-body {
    width: 100%;
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Montserrat-Light, serif;
    word-break: break-all;
    text-wrap: initial;
    padding: 5% 5%;
    box-sizing: border-box;
    font-size: 1.2vw;
}
/******************************** Messages Dialog ********************************/

/*******************************************************************************************/
/*************************************RESPONSIVE-STYLES*************************************/
/*******************************************************************************************/
@media only screen and (max-width: 400px) {
    #plancia .plancia-wrap .spin-group .spin-container .btn-arrow-new svg {
        width: 35%;
    }

    #plancia .plancia-wrap .menu-dialog {
        font-size: 4vw;
    }

    #plancia .plancia-wrap .menu {
        height: 10vw;
        padding: 1rem 1rem 0 1rem;
    }

    #plancia .plancia-wrap .coin-value {
        font-size: 2vw;
        padding-left: 1rem;
    }

    #plancia .plancia-wrap .coin-value.right {
        padding: 1rem 1rem 0 1rem;
    }

    #plancia .plancia-wrap .autoplay-counter {
        height: 13vw;
    }

    #plancia .plancia-wrap .autoplay-counter .autoplay-counter-container .btn-stopAutoplay {
        width: 10vw;
    }

    #plancia .plancia-wrap .autoplay-counter .autoplay-counter-container .autoplay-counter-value {
        width: 20vw;
        font-size: 5vw;
        border-radius: 5px;
        margin-left: 6px;
    }
}

@media only screen and (max-width: 460px) and (orientation: portrait) {

    .disabled-container .disabled-wrap h1 {
        font-size: 3vh;
    }

    .paytable-container .paytable-combinations {
        padding: 5%;
    }

    .paytable-container .paytable-combinations .paytable-combination {
        width: 48%;
    }

    .paytable-container .paytable-combinations .paytable-combination.paytable-rank {
        width: 20%;
    }

    .btn-paytable {
        left: 2.5%;
        width: 7%;
        top: 1.5%;
    }

    #plancia .plancia-wrap .autoplay-group .autoplay-dialog {
        font-size: 2vh;
    }

    #plancia .plancia-wrap .menu-dialog .btn-dialog .btn-icon {
        width: 7vw;
        height: 7vw;
        margin-right: 15px;
        display: flex;
    }

    #plancia .plancia-wrap .menu-dialog {
        font-size: 3vh;
    }

    #plancia .plancia-wrap .menu {
        height: 6vh;
        padding: 1rem 1rem 0 1rem;
    }

    #plancia .plancia-wrap .coin-value {
        font-size: 2vh;
        padding-left: 1rem;
    }

    #plancia .plancia-wrap .coin-value.right {
        padding: 1rem 1rem 0 1rem;
    }

    #plancia .rules-container .page-container .rules-wrapper section ul {
        font-size: 4vw;
        margin-left: 0;
        width: 100%;
    }

    #plancia .rules-container .page-container .rules-wrapper section h2 {
        font-size: 4.5vw;
    }

    #plancia .rules-container .page-container .rules-wrapper h1 {
        font-size: 5vw;
    }

    #plancia .rules-container .page-container .rules-wrapper section {
        width: 78%;
    }

    .message-container .message-wrapper .message-icon {
        width: 2vh;
        height: 2vh;
    }
    .message-container .message-wrapper {
        font-size: 1.5vh;
    }
    .message-container .message-wrapper .message-body {
        font-size: 1.2vh;
    }

}

@media only screen and (orientation: landscape) {

    .plancia-wrap .footer {
        width: 100%;
    }

    .plancia-wrap .bottom-group {
        height: calc(100vh - 60px);
        align-items: end;
        justify-content: center;
        width: 100%;
    }

    .plancia-wrap .spin-group {
        justify-content: end;
        min-width: 150px;
        max-width: 200px;
        width: 12vw;
        height: 70vh;
        min-height: 100px;
        max-height: 400px;
    }

    .plancia-wrap .spin-group .bet-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .plancia-wrap .spin-group .spin-container {
        justify-content: space-around;
        flex-direction: column;
        height: 100%;
        background: linear-gradient(90deg, black 50%, #5f5f5f57);
        width: 100%;
    }

    .plancia-wrap .spin-group .spin-container .bet-btns {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .plancia-wrap .spin-group .spin-container .btn-center {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: none !important;
        min-height: 70px;
        padding: 5px 0;
        flex: 1;
    }

    .plancia-wrap .spin-group .spin-container .btn-in-group {
        width: 100%;
        height: 33.3%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .plancia-wrap .spin-group .spin-container .btn-in-group svg {
        transform: scale(.6);
        width: 100%;
        height: 100%;
    }

    .plancia-wrap .spin-group .spin-container .btn-in-group:hover svg {
        transform: scale(.6);
    }

    .plancia-wrap .spin-group .spin-container .btn-center .spin-icon svg {
        height: 100%;
        width: 100%;
    }

    .plancia-wrap .spin-group .spin-container .btn-center .take-icon svg {
        height: 100%;
        width: 100%;
    }

    .center-icon {
        width: 100%;
        height: 100%;
        padding: 10%;
    }

    .plancia-wrap .spin-group .spin-container .btn-arrow-new svg{
        height: 100%;
    }

    .plancia-wrap .autoplay-counter {
        position: absolute;
        right: 0 !important;
        left: auto !important;
        width: 15vw;
        height: 100%;
        flex-direction: column;
    }

    .plancia-wrap .autoplay-counter .autoplay-counter-container {
        flex-direction: column;
    }

    .plancia-wrap .autoplay-counter .autoplay-counter-container .btn-stopAutoplay {
        width: 10vh;
    }

    .plancia-wrap .autoplay-counter .autoplay-counter-container .autoplay-counter-value {
        width: 20vh;
        font-size: 5vh;
        border-radius: 5px;
        margin: 5px;
    }

    .plancia-wrap .coin-value.right {
        position: relative;
        right: inherit;
        user-select: none;
        pointer-events: none;
        padding: 0 0 0 2rem;
        text-align: left;
    }

    .plancia-wrap .spin-group .spin-container .btn-center {
        max-width: 20vh;
    }
}

@media only screen and (max-width: 900px) {
    .rules-container .rules-table .rules-table-row {
        flex-wrap: wrap;
    }

    .rules-container .rules-table .rules-table-cell {
        height: auto !important;
        display: flex;
        justify-content: center;
    }

    .rules-container .rules-table .rules-table-cell-lower {
        max-width: none;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .rules-container .rules-table .rules-table-cell img {
        max-height: 80px;
    }
}
/*******************************************************************************************/
/*************************************RESPONSIVE-STYLES*************************************/
/*******************************************************************************************/
