.art-modal-popup {
	height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 98;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.25s;
    opacity: 0;
    visibility: hidden;
}
.art-modal-popup-container {
	width: 600px;
	max-width: 100%;
	margin: 15px;
	height: auto;
    background: white;
	padding: 40px;
    position: relative;
    box-shadow: 0px 0px 4px 2px rgb(0 0 0 / 15%);
}
.art-modal-popup-overlay {
    height: 100%;
    width: 100%;
    /* background: rgba(0, 0, 0, 0.25); */
    position: absolute;
    top: 0;
    left: 0;
}
.art-modal-popup-content {
    z-index: 99;
    position: relative;
}
.art-modal-popup-btn {
    position: absolute;
    right: -12px;
    top: -30px;
    cursor: pointer;
}
.art-modal-popup-btn .fal.fa-times {
    font-size: 22px;
    text-align: right;
    color: black;
}
.art-modal-popup-container p,
.art-modal-popup-container h1,
.art-modal-popup-container h2,
.art-modal-popup-container h3,
.art-modal-popup-container h4,
.art-modal-popup-container h5 {
		text-align: center; 
		margin-bottom: 20px;
}