.bkse-flex-fixer{
	position: absolute;
	display: flex;
	top: 0;
	height: 0;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	gap:15px;
}
.bkse-flex-fixer a{
	display: block !important;
	height: auto !important;
	padding: 0 10px !important;
	background: #2271b1 !important;
    border-color: #2271b1 !important;
	color: #fff !important;
	font-size: 20px !important;
	font-weight: 600 !important;
	opacity: 0 !important;
	transition: opacity 0.5s;  
}
.bkse-flex-fixer a:hover{
	background: #007cba !important;
    color: #fff !important;
}

.bkse-flex-fixer:hover a{
	opacity: 1 !important;
}


.popup {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
        z-index: 100002; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.popup-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
#imageContainer{
	display: flex;
	
	flex-wrap: wrap;
	
}
#imageContainer a{
	padding: 15px;
	background: #f9f9f9;
	border: 1px solid #ddd;
	-webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 calc(33.3333% - 14px); /* Adjust width to account for margins */
    max-width: calc(33.3333% - 14px); /* Adjust width to account for margins */
    margin-right: 7px;
    margin-left: 7px;
    margin-bottom: 14px;
}
#imageContainer img {
    max-width: 100%;
}