.gg-iframe-container {
    position: relative;
    padding-bottom: 50%;
}

@media (max-width: 550px) {
    .gg-iframe-container {
        position: relative;
        padding-bottom: 100%;
    }
}

.gg-iframe-container.ios-fullscreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    padding-bottom: 0 !important;
    z-index: 999999 !important;
    background: black !important;
}

.gg-iframe-container.ios-fullscreen .game-iframe {
    width: 100% !important;
    height: 100% !important;
}

.gg-iframe-container.ios-fullscreen .game-fullscreen-button {
    display: block !important;
    z-index: 1000000 !important;
}

.gg-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gg-fullscreen-button{
    position: absolute;
    width: 30px;
    height: 30px;
    bottom: 0;
    right: 0;
    opacity: 0.5;
    margin: 7.5px;
    border: none;
    z-index: 100;
    transition: 0.3s;
    display: none;
}

.gg-fullscreen-button:hover{
    opacity: 1;
}

.gg-iframe-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: black;
}

.gg-start-button{
    position: absolute;
    color: black;
    background-color: white;
    font-weight: bold;
    border: solid 2px black;
    border-radius: 15px;
    text-align: center;
    padding: 10px;
    opacity: 0.7;
    display: flex;
    transition: 0.3s;
    align-items: center;
}

.gg-start-button:hover{
    opacity: 1;
}

.gg-start-button img{
    width: 25px !important;
    height: 25px !important;
    margin-right: 5px;
}

.gg-thumbnail-image{
    background-color: black;
    border: none;
}

.gg-thumbnail-image-wide{
    width: auto;
    height: 100%;
}

.gg-thumbnail-image-long{
    width: auto;
    height: 100%;
}

@media (max-width: 550px) {
    .gg-thumbnail-image-wide{
        width: 100%;
        height: auto;
    }
}