.hiper-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5000;
    transition: opacity 0.3s ease;
}

    .hiper-popup::before {
        content: "";
        position: absolute;
        background-color: #333F4D;
        backdrop-filter: blur(1px);
        inset: 0;
        opacity: 0.9;
    }

    .hiper-popup [class*='container'] {
        height: 100%;
    }

    .hiper-popup:not(.active) {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        z-index: -999999;
    }

    .hiper-popup .popup-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        position: relative;
        z-index: 10;
    }

        .hiper-popup .popup-inner .close-popup {
            top: -2.8125rem;
            right: 0;
        }

@media (min-width:1025px) {
    .hiper-popup .popup-inner .close-popup {
        top: -2.1875rem;
        right: -2.1875rem;
    }
}

.hiper-popup .close-popup {
    position: absolute;
    top: 2.1875rem;
    right: 2.1875rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    cursor: pointer;
    z-index: 11;
}

    .hiper-popup .close-popup svg {
        width: 2.8125rem;
        height: 2.8125rem;
    }

.hiper-popup .popup-content {
    position: relative;
    padding: 0.625rem;
}

    .hiper-popup .popup-content:has(.search-wrapper) {
        width: 100%;
    }

.hiper-popup .search-wrapper {
    width: 100%;
}

    .hiper-popup .search-wrapper .form-group {
        display: flex;
        align-items: stretch;
    }

        .hiper-popup .search-wrapper .form-group input {
            background: transparent;
            color: white;
            border-bottom: 1px solid currentColor;
            flex: 1;
            padding: 0.25rem 1rem;
            outline: none;
            font-size: 1.125rem;
        }

            .hiper-popup .search-wrapper .form-group input::placeholder {
                color: white;
            }

    .hiper-popup .search-wrapper .search-button {
        border-radius: 0;
        border-bottom: 1px solid white;
        color: #fff;
        font-size: 1.875rem;
    }

    .hiper-popup .search-wrapper .search-result {
        margin-top: 1.25rem;
    }

        .hiper-popup .search-wrapper .search-result [data-area=Keywords] {
            text-align: center;
            background: var(--primary-color);
            color: white;
            border-radius: 10px;
            padding: 10px;
            border: 1px solid white;
            margin-bottom: 8px;
        }

        .hiper-popup .search-wrapper .search-result [data-area=All] {
            margin-top: 8px;
        }

        .hiper-popup .search-wrapper .search-result .search-result-card-wrapper {
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-height: 61svh;
        }

@media (max-height: 740px) {
    .hiper-popup .search-wrapper .search-result .search-result-card-wrapper {
        max-height: 43svh;
    }

    .hiper-popup img{
        zoom: .8;
    }
}
