.gallery-modal-container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.637);
    z-index: 1;
    display:none;
}

.gallery-modal {
    display: flex;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #c9c9c9;
    width: 80vw;
    max-width: 900px;
    max-height: 80vh;
    background-color: white;
}

.gallery-modal img {
    object-fit: contain;
    width: 100%;
}

.gallery-modal .gallery-modal-icon {
    font-size: 20px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.842);
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--course-secondary-button);
    box-shadow: 0px 2px 4px #1918193a;
}
.gallery-modal .gallery-modal-exit-container,
.gallery-modal .gallery-modal-left-container,
.gallery-modal .gallery-modal-right-container {
    position: absolute;
    letter-spacing: 0;
}
.gallery-modal .gallery-modal-exit-container {
    top: 15px;
    right: 15px;
}

.gallery-modal .gallery-modal-left-container {
    top: 50%;
    left: 15px;
    transform: translate(0%, -50%);
}

.gallery-modal .gallery-modal-right-container {
    top: 50%;
    right: 15px;
    transform: translate(0%, -50%);
}