.guide{
    display: flex !important;
        width: 200px !important;
        height: auto !important;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: flex-end;
        justify-content: center;
        gap: 5px;
}
.guide > div{
    position: relative !important;
    top:0 !important;
    left:0 !important;
}
.guidePortrait{
    transition: all 0.3s ease !important;
    width: min(200px, 15vw) !important;
    height: min(200px, 15vw) !important;
    margin: 0 100% !important;
    flex: auto 0 0;
}
body.desktop .guidePortrait:hover{
    box-shadow: 0 0 0 3px #ffffff40;
}

.guide > div.guideTextContainer{
    position: absolute !important;
    top:-210px !important;
}
.guideTextContainer > .ggskin_text > div {
    white-space: normal !important;
}
.guideTextContainer > .ggskin_text > div .h2{
    font-size: 1.2em;
    margin: 0 0 0.2em 0;
    font-weight: bold;
}
.guideTextContainer::before{
    content: "";
    position: absolute;
    bottom:0;
    width:20px;
    height:20px;
    border-radius: 3px;
    background-color: #fff;
    transform: rotate(45deg) translate(0, 40%);
    left: 75%;
}

.guideTextContainerCloseButton{
    width: 30px !important;
    height: 30px !important;
}
@media (max-width: 767.98px), (max-height: 600px) {

    .guidePortrait{
        display: none !important;
    }
    .guide{
        left: 50% !important;
        transform: translateX(-50%) !important;
        bottom:10px !important;
    }

    .guideTextContainer::before{
        display: none;
    }
}