iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    position: absolute;
}

#pash_iframe {
    border-radius: 0px 0px 50px 50px;
}

#game-iframe {
    border-radius: 50px;
}

#endGameBtn {
    width: 200px;
    height: 60px;
    color: white;
    border-color: #402171;
    border-width: 2px;
    border-radius: 10px;
    background-color: #402171;
    font-family: FredokaMedium;
    font-size: 25px;
    padding: 10px;
    cursor: pointer
}

[lang="en"] #endGameBtn {
    font-size: 22px;
}

.page {
    width: 100%;
    height: 100%;
}

.container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: black;
    border-radius: 50px 0px 0px 50px;
}

.fadeDiv {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #7ad5eb;
    z-index: 1;
    border-radius: 50px 0px 0px 50px;
}

[dir="ltr"] .container,
[dir="ltr"] .fadeDiv {
    border-radius: 0px 50px 50px 0px;
}

.container img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 2;
}

.blurredBg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #402171;
    opacity: 0.45;
}

.timerAlert {
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#timerImg {
    z-index: 11;
}