/* START POPUP STYLE */

.overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.7); */
    justify-content: center;
    align-items: flex-end;
    z-index: 9999;
/* display:flex;
justify-content:center; */
margin:30px 0px;

}
.sticky{
position: sticky;
    bottom: 0;
}
.fixed{
    position: fixed;
    bottom: 0;
    margin-bottom:0px;
    left: 23.7%;
}

/* Popup container */
.popupContainer {
    /* background-color: #333e48; */
    max-width: 799px;
    max-height: 90%;
   
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Popup content */
.popupContent {
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
    background-color: #333e48;
	position:relative;
    padding: 0px;
    text-align: center;
}

.popup-discription{
padding:40px 10px;
    background-color: #333e48;
	align-self:center;
    text-align:left;
}
.popup-discription h2{
    line-height: 1.2;
    color: #fff;
    text-align:left;
    padding-left:25px;
}
.popup-discription p{
text-align:left;
    color: #fff;
    padding: 0px 30px !important;
}
/* Responsive image */
.popup-discription,.popup-img{
		width:50%;
}
.popup-img{
background-color: #fff;
}
.popupImage {
       max-width: 290px;
	width:100%;
     height: 100%;
    object-fit:cover;
    border-radius: 0px;
}

/* Close button */
#closePopupBtn {
    position: absolute;
    top: -4px;
    right: 3px;
    font-size: 38px;
    background-color: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Animation for popup display */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@media only screen and (max-width: 1080px){
.popupContainer{
max-width:737px;
}
.popup-discription,.popup-img{
		width:50%;
}
.popup-discription h2{
font-size:26px;
}
}
@media only screen and (max-width: 767px){

.popupContainer{
max-width:83%;
max-height: 90%;
margin:20px;
}
.popupContent{
padding:20px;
}
	.popupImage{
		max-width:107px;
		margin-bottom:16px;
	}
.popup-discription,.popup-img{
		width:100%;
}
.popup-img{
    background-color: unset;
}
.popup-discription h2{
text-align:center;
}
.popup-discription{
padding:10px;
text-align:center;
}
.popup-discription p{
text-align:center;}
.popupContent .popup-discription p{
padding:0px !important;
}

.popup-discription .detail-btn {
margin-left:0px;
}
}
@media only screen and (max-width: 500px){
    .popup-discription h2{
    font-size:20px;
}
.popup-discription p{
padding:16px;
}

}

.popup-discription .detail-btn {
    display: inline-block;
    color: #fff;
    margin-left:26px;
    font-size: 16px;
    background: #6cbd45;
    padding: 14px 24px;
    border: 1px solid #b5bdbc;
    border-radius: 4px;
    text-align: center;
    max-width: 236px;
    font-family: 'AdobeCleanRegular';
}
/* END POPUP STYLE */