:root {
    --interfaceOffset: 2rem;
    --interfaceIconSize: 2rem;
    --interfaceNPC: 5rem;
    --interfaceOffsetMobile: 1rem;
}

#fixedGUI {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    font-size: 16px;
}

#fixedGUI .left-top, #fixedGUI .right-top, #fixedGUI .left-bottom, #fixedGUI .right-bottom {
    position: absolute;
}

#fixedGUI .left-top {
    top: var(--interfaceOffset);
    left: var(--interfaceOffset);
    display: flex;
    flex-direction: row;
}

#fixedGUI .left-bottom {
    bottom: var(--interfaceOffset);
    left: var(--interfaceOffset);
}

#fixedGUI .right-top {
    top: var(--interfaceOffset);
    right: var(--interfaceOffset);
    background-color: #000;
}

#fixedGUI .right-bottom {
    bottom: var(--interfaceOffset);
    right: var(--interfaceOffset);
    background-color: #000;
}

#txt-combospecial {
    font-size: 2rem;
    text-align: center;
    
}

.npc-list {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.npc-list div {
    width: var(--interfaceNPC);
    height: var(--interfaceNPC);
    padding: 1rem;
    padding-right: 0;
    background-color: #CCC;
}

.npc-list div:last-child {
    padding-right: 1rem;
}

.npc-list div img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

#eventTransition {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
    z-index: 900;
    background-color: #CCC;
    transition: all 1s;
    opacity: 1;
}

#eventTransition.hidden {
    opacity: 0;
}