@charset "utf-8";
/* CSS Document */

#cstm-img-pop-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: start;
	justify-content: center;
	background-color: rgba(0,0,0, 0.8);
}
#cstm-img-pop-wrapper .cstm-img-pop-overlay {
	margin-top: 20px;
	display: flex;
	position: relative;
}
#cstm-img-pop-wrapper .cstm-img-pop-overlay .fas.fa-times {
	position: absolute;
    right: 0;
    top: 0;
    padding: 15px;
    background-color: rgba(0,0,0, .7);
    overflow: hidden;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}
#cstm-img-pop-wrapper .cstm-img-pop-overlay img {
	width: 100%;
	object-fit: contain;
}