.popup {
    position: relative;
}

.popup-content {
    display: none;
    position: absolute;
    z-index: 10000;
    overflow: auto;
    box-shadow: 0.25em 0.25em 0.25em #888;
}

*[x-can-hover=true] .popup-hover:hover .popup-content {
    display: block;
}

.popup-open.popup-content {
    display: block;
}

.popup-bottom-left {
    width: max-content;
    min-width: 100%;
    left: 0;
    top: 100%;
}

.popup-bottom-right {
    width: max-content;
    min-width: 100%;
    right: 0;
    top: 100%;
}

.popup-right {
    top: 0;
    left: 100%;
    width: max-content;
}

.popup-left {
    top: 0;
    right: 100%;
    width: max-content;
}

@media (max-width: 575px) {
    .popup-right,.popup-left {
        top: 100%;
        left: 0;
        min-width: 100%;
    }

    .popup-content .mobile-hidden-text>span:not(.icon) {
        display: inline;
    }
    .popup-content.popup-bottom-right .popup-content {
        top: 100%;
        right: 0;
        width: 100%;
        left: auto;
    }
    .popup-content.popup-bottom-left .popup-content {
        top: 100%;
        right: auto;
        width: 100%;
        left: 0;
    }
}

@media (min-width: 576px) {
    .popup-content:not(.popup-bottom-left) .popup-content.popup-bottom-right .popup-content {
        top: 0;
        right: 100%;
        width: max-content;
        left: auto;
    }
    .popup-content:not(.popup-bottom-right) .popup-content.popup-bottom-left .popup-content {
        top: 0;
        left: 100%;
        width: max-content;
        right: auto;
    }
}
