.modal-mask {
	position: fixed;
	z-index: 9998;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
	display: table;
	transition: opacity .3s ease;
}
.modal-wrapper {
	padding: 10px;
	display: table-cell;
	vertical-align: middle;
}
.modal-container {
	min-width: 250px;
	width: fit-content;
	margin: 0px auto;
	padding: 10px;
	background-color: #fff;
	border-radius: 2px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .33);
	transition: all .3s ease;
	font-family: Helvetica, Arial, sans-serif;
	position: relative;
	z-index: 2;
}
.modal-outer {
	background: #000;
	opacity: .4;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 1;
}
a.modal-default-button {
	position: absolute;
    right: 15px;
    top: 15px;
    background: #ffffff00;
    border-radius: 30px;
    padding: 0px 8px;
    line-height: 23px;
    cursor: pointer;
    color: #000;
    box-shadow: none;
    transition: .3s ease-in-out;
    text-decoration: none;
}
a.modal-default-button:hover {
	background-color: #e01f7c;
	color: #fff;
	text-decoration: none;
}
/*
 * The following styles are auto-applied to elements with
 * transition="modal" when their visibility is toggled
 * by Vue.js.
 *
 * You can easily play with the modal transition by editing
 * these styles.
 */

.modal-enter {
	opacity: 0;
}
.modal-leave-active {
	opacity: 0;
}
.modal-enter .modal-container,
.modal-leave-active .modal-container {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.popup-img {
	max-width: 100%;
	border-radius: 15px;
}