body.scroll-locked {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    top: var(--scroll-top, 0);
    left: 0;
}

dialog {
	display: flex;
	flex-direction: column;
	align-items: center;
	align-content: center;
	justify-content: center;
    border: none;
    border-radius: 12px;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    max-height: 100vh;
    height: 600px;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background-color: #F1F3F7;
    padding: 0 0;
    overflow-y: hidden;
    overflow-x: hidden;
}

dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    
}

dialog:focus{
	border: none;
}

dialog:active{
	border: none;
}

.open-btn {
	display: none;
    padding: 15px 30px;
    font-size: 18px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal-open-btn{
	display: none;
}




.modal-window-btn-close__container{
	width: 100%;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: flex-end;
}

.modal-close-btn{
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	border: none;
	background-color: #000;
	padding: 0 0;
	margin: 0 0;
	cursor: pointer;
	transition-duration: .5s;
	color: #fff;
	border-radius: 50%;
	z-index: 1000;
	position: absolute;
	top: 10px;
	right: 10px;
}

.modal-close-btn:hover{
	background-color: #fff;
	color: #000;
}


.modal-ad-test{
	width: 100%;
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	flex-direction: column;
}

.modal-ad-test-img__container{
	width: 100%;
	display: block;
}

.modal-ad-test-img-content{
	width: 100%;
}

.modal-ad-test-img-content > img{
	width: 100%;
	height: 700px;
	object-fit: cover;
}

.modal-ad-test-text__container{
	width: 100%;
}

.modal-ad-test-text__container > h3{

}

.modal-ad-test-text__container > p > ul{
	margin: 0 0;
	padding: 0 0;
}

.modal-ad-test-text__container > p > ul > li{
	margin: 0 0;
	padding: 0 0;
}

.modal-ad-test-text__container > p{
	margin: 0 0;
	padding: 0 0;
}
