.ma-gallery {
    background: #000000d1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.ma-gallery-container {
    margin: auto;
    width: 800px;
    min-height: 800px;
    max-height: 800px;
    overflow-y: scroll;
    border: 2px solid #dfc9a2;
    display: flex;
    flex-direction: column;

    position: relative;
}

.ma-gallery-title {
    background: #dfc9a2;
    color: black;
    padding: 10px;
    margin: 10px;
    font-weight: 500;
    font-size: 23px;
}

.ma-gallery-content {
    flex-grow: 1;
    min-height: 500px;
    max-height: 500px;
    background: #dfc9a2;
    margin: 10px;
    margin-top: 0;
    display: flex;
}

.ma-gallery-content-thumbnails {
    width: 45%;
    padding: 20px;
    text-align: left;
}

.ma-gallery-content-thumbnails img {
    width: 75px;
}
.ma-gallery-content-image {
    width: 60%;
    max-width: 60%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ma-gallery-text {
    margin: 10px;
    margin-top: 0;
    padding: 10px 0;
    font-size: 18px;
    color: #dfc9a2;
    text-align: left !important;
}

.ma-gallery-pre-container {
    position: relative;
}

.ma-gallery-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    color: #dfc9a2;
    cursor: pointer;
    background: black;
    border: 1px solid #dfc9a2;
    border-radius: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hidden {
    display: none;
}

.full-image {
    width: 100%;
    height: auto;
}
