.mainGameWrap {
    position: relative;
    margin: 20px auto 40px;
    width: 100%;
    max-width: 550px;

    /* max-height: 613px; */
}

canvas {
    position: absolute;
    width: 100%;
    margin: 0 auto;
    border: 0px solid gray;
    background: unset !important;
    inset: 0px !important;
    z-index: 0 !important;
}

#dRewardGambleButtonsContainer {
    text-align: center;
}

#dRewardCloseButtonsContainer {
    text-align: center;
}

.starsInfo {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 5px;
    max-width: 580px;
    width: 97%;
    margin: 20px auto 0;
    border-radius: 6px;
}

.gameLbWrap {
    position: relative;
    margin: 20px auto;
    max-width: 97%;
    width: 600px;
}

.clickswrap {
    /* max-width: 300px; */
    margin: 0 auto;
    display: flex;
}

.clicks {
    color: #fff;
    font-size: 25px;
    padding: 5px;
    border-radius: 6px;
    margin: 5px;
    width: 100%;
    text-align: center;
    font-weight: bold;
}

.comp {
    background-color: #0dcaf0;
    color: #000000;
}

.avail {
    background-color: #ff0f27;
    color: #FFFFFF;
}

.error {
    color: #dd1717;
    font-size: 16px;
    border-radius: 6px;
    text-align: center;
    width: 100%;
    display: block;
}

#gameCover {
    z-index: 2;
    position: absolute;
    width: 100%;
    height: 100%;
    /* max-width: 680px; */
    max-height: 613px;
    /* margin-top: -42px; */
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}



.game-cover-elements {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#countdown {
    font-family: 'Roboto Condensed', sans-serif;
    width: 200px;
    height: 100px;
    position: absolute;
    left: 50%;
    top: 7%;
    margin-left: -100px;
    margin-top: -50px;
    color: #1e52a3;
    font-size: 60px;
    text-align: center;
    font-weight: bold;
    font-style: italic;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    -webkit-transition: opacity 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -ms-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden;
}


.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}