<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
https://www.cssscript.com/simple-modal-window-with-background-blur-effect/
*/

/* Blurs content */
.modal_is-blurred {
    filter: blur(2px);
    -webkit-filter: blur(2px);
}

.modal_header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    margin-bottom: 30px;
    padding: 10px 0;
    background-color: #fff;
}

.modal_heading {
    font-size: 34px;
    font-weight: bold;
}

/* Overlay */
.modal_container {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    padding-top: 10vh;
    background-color: black;
    background-color: rgba(0, 0, 0, 0.4);
    overflow: auto;
    -webkit-transition: 0.5s;
    transition: all 0.3s linear;

}

.modal_content {
    position: relative;
    background-color: #ced5d7;
    margin: auto;
    padding: 20px;
    border-radius: 4px;
    width: 500px;
    max-width: 60vw;
    min-width: 30vw;
    height: 80vh;
    max-height: 80vh;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal_content p {
    overflow-y: auto;
}

.modal_text_container {
    overflow-y: auto;
}

.modal_image_container {
    border-style: solid;
    border-width: 5px;
    border-color: #3D5A80;
    border-radius: 3px;
    padding: 5px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-bottom: 0;
}

.modal_image_container img {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 3px;
}

/* Content styling */
#HQ_page .modal_content h2 {
    margin-top: 1.5vh;
    margin-bottom: 0;
    padding-top: 0;
}

/* Modal functions */
.modal_open {
    overflow: hidden;
}

.modal_is-hidden {
    display: none;
}

.modal_is-visuallyHidden {
    opacity: 0;
}

/* Scrollbar */
.modal_text_container::-webkit-scrollbar-track, .modal_content p::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #a7c6ce;
    border-radius: 2px;
}

.modal_text_container::-webkit-scrollbar, .modal_content p::-webkit-scrollbar-track {
    width: 4px;
    background-color: #a7c6ce;
    border-radius: 2px;
}

.modal_text_container::-webkit-scrollbar-thumb, .modal_content p::-webkit-scrollbar-track {
    background-color: #3D5A80;
    border-radius: 2px;
}

/* The Close Button */

.modal_close {
    position: absolute;
    text-align: center;
    color: #e27d60;
    width: 37px;
    right: 20px;
    font-size: 32px;
    margin-top: 10px;
    margin-right: 10px;
}

#modal_close_murre {
    color: #3D5A80;
}

.modal_close:hover, .modal_close:focus {
    color: #e8a87c;
    text-decoration: none;
    cursor: pointer;
}

.modal_interactivePCB_image {
    width: 100%;
}
</pre></body></html>