/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 26 2024 | 17:09:59 */
.row{
    display: flex;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.item {
    margin: 10px;
}

.item img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.pagination {
    text-align: center;
}

.pagination button {
    background-color: #FFB65C;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 5px;
}

.pagination button:hover {
    background-color: #FFA500;
}

.pagination button.active {
    background-color: #FF8C00;
}

.modal {
	    transition: transform 0.5s ease;
	border-style: solid 1px transparent;
	border-radius: 10%;
    display: none;
    position: fixed;
    z-index: 1;
    bottom: 20%;
    padding: 1vh 1vw;
	flex-direction: column;
    left: 5%;
    width: 90%;
    height: 55%;
    overflow: visible;
	    background-color: transparent;

  	background-image: radial-gradient(circle, white, #fffaed,  #fffaed);
justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    display: block;
    position: relative;
    margin: 10px auto;
    transition: transform 0.3s ease;
}

.modal-content::after {
    content: '\2039';
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 3em;
    color: white;
    cursor: pointer;
    transform: translate(-50%, -50%);
}
.small-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    cursor: pointer;
}

.close {
    position: absolute;
    min-width: 50px;
    top: 6%;
    right: 6%;
    font-size: 55px;
    font-weight: bold;
    cursor: pointer;
	color: #FF8C00;
}





.buttons-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
margin-top: 20%;
}

.modal .buttons-container button {
    background-color: #FFA500; /* Change to orange */
    color: white;
    padding: 18px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s ease;
    margin: 0 20px;
}

.buttons-container button:hover {
    background-color: #FF8C00; /* Change to a darker shade of orange on hover */
    transform: scale(1.1);
}

.buttons-container button:disabled {
    background-color: #ddd;
    color: #aaa;
    cursor: not-allowed;
}

