/* Popup styling */
.mak_popup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 80%;
    max-width: 530px;
}

.mak-btn-popup
{
	cursor:pointer;
}
.mak_popup .close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
    color: #333;
}
.popup_content{
text-align: left;
padding-bottom: 20px;
}
.popup_content h2 {
 
font-family: "manrope", Sans-serif;
font-size: 36px;
font-weight: 700;
color: #005653;
}

@media (max-width: 1440px){

.popup-content {
	height:100%;
	overflow-y: scroll;
}
}
@media (max-width: 600px){
.popup-content {
	height:450px;
	overflow-y: auto;
	 -webkit-overflow-scrolling: touch;
}
}