/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 09 2025 | 00:43:40 */
C/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

/* Modal Overlay */
.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

#customModal, #customModal2, #customModal3{
	justify-content: center;
    align-items: center;
    background: #00000080;
}

/* Modal Content */
.modal-content {
    display: flex;
    background: #fff;
    width: 600px;
    max-width: 90%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
	height: 500px;
	flex-direction: row;
}

/* Left Side Image */
.modal-image {
    width: 50%;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Side Form */
.modal-form {
    width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

/* Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 7px;
    font-size: 50px;
    cursor: pointer;
    color: #000;
}

/* Button */
.btn-modal {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.btn-modal:hover {
    background-color: #0056b3;
}

.boxer{
	padding: 10px;
    border-radius: 5px;
    border: 1px solid #000;
	width: 100%;
}

@media (max-width: 786px) {
    .modal-image {
		display: none;
	}
	
	.modal-form{
		width: 100%;
	}
}
