#main-gamecontainer {
    position: relative;
    width: 1280px;
    min-height: 560px;
    height: auto;
    display: inline-block;
    padding: 0px;
    margin: 0 auto;
}

#main-gamecontainer-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    display: inline-block;
    padding: 0px 0px 0px 0px;
    margin: 5px auto 5px auto;
}

.box-header-game {
    position: relative;
    height: 100%;
    width: 100%;
    display: inline-block;
    padding: 0px 0px;
    margin: 0px auto;
    background: #D36582 url(../imgs/bg.webp);
    background-repeat: repeat-x;
    vertical-align: top;
    text-align: left;
    border-radius: 5px;
}

.box-header-options {
    position: relative;
    float: right;
    right: 0px;
    top: 0px;
    height: auto;
    vertical-align: top;
    width: 100%;
    height: 75px;
    padding: 5px 0px 0px 0px;
}

.box-header-options h1 {
    text-align: left;
    font-size: 27px;
    line-height: 17px;
    color: #fff;
    margin: 5px 0px 6px 0px;
    padding: 5px 0px 0px 8px;
    position: relative;
}

.button-game {
    text-align: left;
    margin: 0px;
    padding: 2px 0px 0px 0px;
    width: 60%;
    position: absolute;
    right: 20px;
    text-align: right;
    top: 15px;
}

.btn-fullsize {
    display: inline-block;
    margin: 0px 5px;
    padding: 10px 10px;
    text-align: center;
    background: #3b83da;
    color: #fff;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    -webkit-box-shadow: 0px 5px 6px 0px rgba(0,0,0,0.22);
    -moz-box-shadow: 0px 5px 6px 0px rgba(0,0,0,0.22);
    box-shadow: 0px 5px 6px 0px rgba(0,0,0,0.22);
}

.btn-fullsize:hover {
    background: #4029d1;
}

.box-header-options .button-game button i {
    font-size: 18px;
    font-weight: bold;
}

.box-container-frame {
    display: flex;
    width: 100%;
    height: auto;
    position: relative;
    margin: 0px 0px 0px 0px;
    background: #fff;
    vertical-align: top;
    text-align: center;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    -webkit-box-shadow: 0px 5px 6px 0px rgba(0,0,0,0.22);
    -moz-box-shadow: 0px 5px 6px 0px rgba(0,0,0,0.22);
    box-shadow: 0px 5px 6px 0px rgba(0,0,0,0.22);
    border-radius: 5px;
}

.moregames-left {
    position: relative;
    overflow: hidden;
    width: 150px;
    height: 600px;
    margin: 0px;
    display: inline-block;
    vertical-align: top;
    text-align: center;
}

.moregames-right {
    position: relative;
    overflow: hidden;
    width: 150px;
    height: 600px;
    margin: 0px;
    display: inline-block;
    vertical-align: top;
    text-align: center;
}

#content-framegame {
    display: flex;
    justify-content: center;
    height: 600px;
    flex: 1;
}

#content-framegame .game-iframe__iframe {
    width: 100%;
    height: 100%;
}

#content-framegame .game-iframe__iframe.vertical {
    width: 40%;
}

.wrapper {
    width: 100%;
    height: 100%;
}

.wrapper .screen {
    width: 100%;
    height: 100%;
}

.wrapper .screen #content-game {
    width: 100%;
    height: 100%;
}

.gameSizeNormal {
    position: relative;
    height: 450px;
    margin: 0px;
    display: inline-block;
    vertical-align: top;
    text-align: center;
}

.content-game-wrapper {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: min(50px, 5vw);
}

.wrapper-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
}

.wrapper-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(30px);
}

.wrapepr-content {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.55);
    z-index: 9999;
    border-radius: 40px;
    transition: 300ms linear;
}

.wrapepr-content:hover {
    box-shadow: 0px 0px 9px 5px #fff;
}

.wrapper-detail {
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-columns: 1fr 1fr;
    box-sizing: border-box;
    place-items: center;
    padding: min(20px, 2vw);
}

.wrapper-detail>div {
    text-align: center;
    padding: min(20px, 2vw);
    width: 100%;
}

.content-info .content-info-title {
    height: 10vh;
    font-size: min(36px, 4vh);
    user-select: none;
    color: #1c1c1c;
    line-height: normal;
}

.content-info .content-info-desc {
    font-weight: 400;
    font-size: 15px;
    user-select: none;
    color: #1c1c1c;
}

.content-info-button {
    transition: .2s;
    position: relative;
    cursor: pointer;
    text-align: center;
    display: grid;
    row-gap: 20px;
    width: max-content;
    padding: 20px;
    margin: 0 auto;
}

.content-info-button:hover {
    transform: scale(1.1)
}

.content-info-button.play span {
    background-color: #067BC2 !important;
}

.content-info-button span {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 10px;
    background-color: #1c1c1c;
    color: #fff;
    border-radius: 100px;
    padding: min(20px, 3vh) min(40px, 5vw);
    font-weight: 400;
    font-size: min(25px, 5vw);
    box-shadow: 0 0 20px rgba(0,0,0,.8);
    align-items: center;
    cursor: pointer;
    transition: .3s;
    text-transform: uppercase;
    user-select: none;
    pointer-events: none;
}

.content-info-button span:before {
    display: block;
    content: " ";
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAPCAYAAADUFP50AAABKklEQVQokY2TvyvEcRjHX75dDFIGFhmuFFaLC7NFERkNBvInuCubhdtsBsUimVx28iPJarHSme4kAyU/6qVPPur6du7uqc+zPJ/3834/7+fzQR1Un9RzNavSykmAXaAMVIB7YAvopVmoFXU9skypD+qbuqZm/mMPqaxupAp59V2tqrNqkgYmUVBbSlgR6Ab2gBJwBeRqLyQNJvkA8kBPnP8GOAGyzYB/8QzMARNAF3AGTLcC7I+s11HuKXDQCBi6bwMXcd5O4BCYAVbrAYNRi8Aj0AesAMvAKzAcZIaGmTrAfWASWIim7ESp89Hh34h73KzZ0ai6pJbUF7WgdqT3GBjbga/YZwQoAGPAETAEVOs6oN6ql2pR/VaP1YFmDz2kcfVTvVNzLf0O5QcZKy4YNKUs+wAAAABJRU5ErkJggg==);
    background-repeat: no-repeat;
    background-position: center;
    width: 15px;
    height: 15px;
}

.content-info-button:hover span:before {
    animation: wgKnock .3s infinite
}

@keyframes wgKnock {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-10px)
    }
}

.content-img {
    position: relative;
    padding-bottom: 100%;
}

.content-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0,0,0,.8);
    transition: .2s;
}

.content-img img:hover {
    transform: scale(1.1);
}

.content-tags {
    display: flex;
    width: 100%;
    margin: 20px 0;
}

.content-tags span {
    background-color: #ECC30B;
    font-size: 20px;
    margin-right: 20px;
    padding: 5px 10px;
    border-radius: 10px;
    color: #fff;
    transition: .2s;
    user-select: none;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,.5);
}

.content-tags span:hover {
    transform: scale(1.1);
}

.content-tags span:last-child {
    margin-right: 0px;
}

.row.games{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    width: 98%;
    margin: 0 auto;
    grid-gap: 10px
}

@media (max-width: 1280px) {
    #main-gamecontainer {
        width: 98%;
    }
    .wrapper-detail {
        display: flex;
        flex-direction: column;
    }
    .wrapper-detail div:first-child {
        order: 1;
    }
    .wrapper-detail div:last-child {
        order: 0;
    }
    .content-info .content-info-title {
        height: 20px;
        font-size: 20px;
    }
    .content-info .content-info-desc {
        display: none;
    }
    .content-tags {
        display: none;
    }
    .content-img {
        width: 100%;
        height: 250px;
        padding: 0;
    }
    .content-img img {
        object-fit: cover;
        border-radius: 10px;
    }
    .button-game {
        display: none;
    }
}

@media (max-width: 768px) {
    .wrapepr-content {
        border-radius: 20px;
    }
    .box-container-frame {
        flex-direction: column;
    }
    .moregames-left,.moregames-right {
        display: none;
    }
    .box-header-options h1 {
        font-size: 4vmin;
    }
    .content-img img {
        border-radius: 3vmin;
    }
    .content-info-button {
        padding: 20px 0;
        width: 57vmin;
    }
}