.gameDetail {
    background-color: #f6f7fb;
}

.gameDetail .gameInfo {
    padding: 50px 0;
    margin: 0 5vw;
}

.gameDetail .gamecard_newGame::after {
    position: absolute;
    content: '';
    background-image: none;
    top: 0;
    left: 15px;
    background-size: 100%;
    height: 40px;
    width: 40px;
}

@media only screen and (max-width: 480px) {
    .gameDetail .gameInfo {
        padding: 10px 0;
        margin: 0;
    }

    .gameDetail .gamecard_newGame::after {
        left: 0;
        height: 30px;
        width: 30px;
    }
}

.gameInfo__left {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.gameInfo__right a {
    display: flex;
    align-items: center;
}

.gameDetail .gameInfo__card {
    padding: 20px 20px 20px 0px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

@media only screen and (max-width: 480px) {
    .gameDetail .gameInfo__card {
        padding: 10px;
    }

    .gameInfo__left {
        justify-content: flex-start;
        padding: 0;
    }

    .gameInfo__left>div {
        text-align: left !important;
    }

}

.gameDetail .gameInfo__center,
.gameDetail .gameInfo__right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 0;
}

.gameDetail .gameInfo__thumbnail {
    width: 80%;
    position: relative;
}

.gameDetail .gameInfo__name {
    font-size: var(--large_title);
    font-weight: bold;
    text-transform: uppercase;
}

@media only screen and (max-width: 480px) {
    .gameDetail .gameInfo__thumbnail {
        width: 90%;
    }

    .gameDetail .gameInfo__name {
        margin-bottom: 0px;
        font-size: var(--medium_title);
    }
}

.gameDetail .gameInfo__navigation img,
.gameDetail .gameInfo__download img {
    width: 36px;
    margin: 0 5px 0 0;
    height: auto;
}

.gameDetail .gameInfo__navigation img {
    margin-bottom: 5px;
}

.gameDetail .gameInfo__navigation a {
    color: transparent;
}

@media only screen and (max-width: 480px) {

    .gameDetail .gameInfo__navigation,
    .gameDetail .gameInfo__download {
        display: flex;
        justify-content: space-between;
    }

    .gameDetail .gameInfo__navigation img,
    .gameDetail .gameInfo__download img {
        margin-right: 0;
        width: 30px;
    }
}

@media only screen and (max-width: 480px) and (max-width: 375px) {

    .gameDetail .gameInfo__navigation img,
    .gameDetail .gameInfo__download img {
        width: 26px;
    }
}

@media only screen and (max-width: 480px) and (max-width: 320px) {

    .gameDetail .gameInfo__navigation img,
    .gameDetail .gameInfo__download img {
        width: 24px;
    }
}

.gameDetail .gameInfo__button {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.gameDetail .gameInfo__button img {
    cursor: pointer;
    width: 120px;
    height: 32px;
}

@media only screen and (max-width: 480px) {
    .gameDetail .gameInfo__button img {
        width: 110px;
        height: 40px;
    }
}

@media only screen and (max-width: 375px) {
    .gameDetail .gameInfo__button img {
        width: 100px;
        height: 35px;
    }
}

@media only screen and (max-width: 320px) {
    .gameDetail .gameInfo__button img {
        width: 85px;
        height: 32px;
    }
}

.gameDetail .gameInfo__giftcode,
.gameDetail .gameInfo__playnow {
    display: flex;
    justify-content: flex-end;
    height: 100%;
    /* padding: 15px; */
}

.gameDetail .gameInfo__giftcode img,
.gameDetail .gameInfo__playnow img {
    width: 130px;
    height: 45px;
}

.gameDetail .gameInfo .card-content {
    background: white;
    min-height: 20vh;
    border-radius: 5px;
    border: 1px solid #ccc;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    min-height: 700px;
}

@media only screen and (max-width: 480px) {
    .gameDetail .gameInfo .card-content .custom-tabs .nav-link {
        height: 36px;
        font-size: var(--small_title);
    }
}

.gameDetail .gameInfo__tabs {
    display: flex;
    width: 100%;
    justify-content: space-between;
    z-index: 1;
}

.gameDetail .tab-content {
    padding: 20px;
}

@media only screen and (max-width: 480px) {
    .gameDetail .tab-content {
        padding: 10px;
    }
}