        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1;
            background: rgba(0, 0, 0, 0.6);
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: all 0.5s 0s ease;
        }

        .modal-overlay.visible {
            display: block;
            opacity: 1;
            z-index: 100;
        }

        .modalInclude {
            display: none;
        }

        .modal {
            /* width: 100%; */
            max-width: 880px;
            max-height: 73vh;
            position: fixed;
            box-sizing: border-box;
            top: 50%;
            left: 50%;
            padding: 20px;
            transform: translate(-50%, -50%);
            z-index: 999;
            overflow: scroll;
            background: #fff;
            opacity: 0;
            z-index: 1;
            transition: all 0.5s 0s ease;
        }
        @media screen and (max-width: 1023px) {
            .modal {
                max-width: 95vw;
                max-width: initial;
            }
            .modal > div {
                width: 85vw;
            }
        }
        .modal img#targetElm {
            /* width: calc(100% + 40px); */
            max-height: 73vh;
            vertical-align: bottom;
            margin: -20px;
            object-fit: contain;
        }
        @media screen and (max-width: 1023px) {
            .modal img#targetElm {
                max-width: 95vw;
                /* max-height: initial; */
            }
        }
        .modal .modal-closebtn {
            cursor: pointer;
            text-align: center;
        }
        .modal.visible {
            display: block;
            opacity: 1;
            z-index: 999;
            border-radius: 10px;
            overflow: hidden;
        }

        .fadein {
            animation: fadein .3s;
        }

        .fadeout {
            animation: fadeout .3s;
            animation-fill-mode: forwards;
        }

        @keyframes fadein {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }

        @keyframes fadeout {
            0% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                display: none;
            }
        }
.fa-times-circle:before {
    content: "~ ";
}
