.audialspopup-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.audialspopup-box {
	width: 768px;
	height: 500px;
	position: relative;
	overflow: hidden;
	border-radius: 17px;
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    border: none;
    border-radius: 50% !important;

    background: rgba(0,0,0,.25) !important;
    cursor: pointer;

    transition:
        background-color .2s ease,
        transform .15s ease;
}

.popup-close:hover {
    background: rgba(0,0,0,.7) !important;
}

.popup-close:active {
    transform: scale(.95);
}

.popup-close svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
    transition: fill .2s ease;
}

.popup-close:hover svg {
    fill: #ffffff;
}

@media screen and (max-width: 767px) {
	.audialspopup-box {
		width: 80%;
		height: 600px;
	}
}
