
        .LIREMANO-container {
            font-family: Arial, sans-serif;
            padding: 10px;
        }

        .LIREMANO-container .LIREMANO-image-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: nowrap;
            overflow-x: auto;
        }

        .LIREMANO-container .LIREMANO-image-container img {
            height: auto;
            width: 100%;
            max-width: 200px;
            cursor: pointer;
            border: 2px solid #ccc;
            border-radius: 5px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .LIREMANO-container .LIREMANO-image-container img:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .LIREMANO-container #LIREMANO-popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            max-width: 600px;
            height: 100%;
            max-height: 842px;
            background-color: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
            z-index: 1000;
            border-radius: 10px;
            overflow: hidden;
        }

        .LIREMANO-container #LIREMANO-popup-content {
            position: relative;
            width: 100%;
            height: 100%;
            background: transparent;
        }

        .LIREMANO-container #LIREMANO-popup iframe {
            width: 100%;
            height: 100%;
            display: block;
        }

        .LIREMANO-container #LIREMANO-popup .LIREMANO-close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 35px;
            height: 35px;
            background: #D25F3B;
            color: #fff;
            border: none;
            font-size: 18px;
            font-weight: bold;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .LIREMANO-container #LIREMANO-popup .LIREMANO-close-btn:hover {
            background: #fff;
            color: #D25F3B;
        }


       @media (max-width: 1024px) {
        .LIREMANO-container .LIREMANO-image-container img {
            height: auto;
            width: 100%;
            max-width: 150px;
            cursor: pointer;
            border: 2px solid #ccc;
            border-radius: 5px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .LIREMANO-container #LIREMANO-popup {
            width: 80%;
            max-width: 500px;
            height: 100%;
            max-height: 720px;
        }
        .LIREMANO-container #LIREMANO-popup {
            height: 90%;
        }
        .LIREMANO-container #LIREMANO-popup-content {
            width: 100%;
            height: 100%;
        }
        }
        
        @media (max-width: 768px) {
        .LIREMANO-container .LIREMANO-image-container img {
            height: auto;
            width: 100%;
            max-width: 120px;
            cursor: pointer;
            border: 2px solid #ccc;
            border-radius: 5px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        }

        @media (max-width: 576px) {
        .LIREMANO-container .LIREMANO-image-container img {
            height: auto;
            width: 100%;
            max-width: 140px;
            cursor: pointer;
            border: 2px solid #ccc;
            border-radius: 5px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .LIREMANO-container .LIREMANO-image-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            overflow-x: auto;
        }

        }

        @media (max-width: 480px) {
        .LIREMANO-container .LIREMANO-image-container img {
            height: auto;
            width: 100%;
            max-width: 140px;
            cursor: pointer;
            border: 2px solid #ccc;
            border-radius: 5px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .LIREMANO-container #LIREMANO-popup {
            height: 70%;
        }
        }