body {
    font-family: Verdana, sans-serif;
    margin: 0;
}

.row {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    height: auto;
    justify-content: center;
}

.column img {
    align-self: center;
    height: 150px;
    width: 150px;
    margin: 10px;
    object-fit: cover;
    border: 2px solid rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.images_row {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.column1 {
    align-self: center;
    display: flex;
    flex-direction: column;
    height: 80px;
}

.column1 img {
    height: 70px;
    width: 70px;
    margin: 1px;
    border: 2px solid rgba(0, 0, 0, 0.6);
    cursor: pointer;
    object-fit: cover;
}

/* The Modal (background) */
.dialog_modal {
    display: none;
    position: fixed;
    z-index: 9999;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    padding: 20px;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

/* Modal Content */
.dialog_modal_content {
    align-self: center;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #f2f2f2;
    margin: auto;
    padding: 20px;
    max-width: 1000px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);

}

.modal_action_button {
    color: white;
    margin: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    font-size: 20px;
    width: 32px;
    height: 32px;
    text-align: center;
    font-weight: bold;
    transition: all 0.4s;
}

.modal_action_button:hover {
    background-color: rgba(0, 0, 0, 0.6);
    transition: all 0.4s;
}

/* The Close Button */

.close_button1 {
    position: absolute;
    top: 0;
    right: 0;
}

.prev {
    position: absolute;
    top: 40%;
    left: 0;
}

.next {
    position: absolute;
    top: 40%;
    right: 0;
}

.mySlides {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    width: 100%;
}

.mySlides img {
    align-self: center;
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    margin: 6px;
    position: absolute;
    top: 0;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    font-weight: bold;
}

.demo {
    opacity: 0.5;
}

.active,
.demo:hover {
    opacity: 1;
}

img.hover-shadow {
    transition: 0.3s;
}

.hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.image_view {
    width: 250px;
    height: 200px;
    margin: 5px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}