.pt-modal-container.pt-open {
    display: flex;
    place-content: center;
    justify-content: center;
    align-items: center;
}

.pt-modal-container {
    display: none;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999999;
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    margin: 0 !important;
}

.pt-modal-container .pt-modal {
    max-width: 80%;
    max-height: 80%;
    width: 600px;
    padding: 20px;
    overflow-y: scroll;
	background-color: white;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
	padding: 40px;
	font-size: 14px;
	border-radius: 15px;
}

.pt-modal-close-button {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.pt-modal-close-button i {
    color: var(--green);
}

/* Facility Modal */
.pt-modal-facilty-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    place-content: center;
    justify-content: center;
}
.pt-modal-facilty-image > img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}