.container-3d {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    pointer-events: none;
    will-change: transform;
}

.box {
    transform-style: preserve-3d;
    position: absolute;
}

.face {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    pointer-events: auto;
    transform-style: preserve-3d;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    font-weight: bold;
    backface-visibility: hidden;

    width: inherit;
    height: inherit;
}

.sign-3d {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    transform-style: preserve-3d;
}

.sign-face {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    transform-style: preserve-3d;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 0px 0px 6px #00000099;
    color: white;
    width: 0;
    height: 0;
}

.direction .sign-face::after {
    content: "";
    width: 180px;
    height: 180px;
    position: absolute;
    filter: drop-shadow(0 0 2px #00000099);
    background-image: url("../../../public/icons/main/direction.svg");
}