.pop_window_1,.pop_window_2,.pop_window_3,.pop_window_4
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -100;
    background-color: #000000a0;
    opacity: 0;
    transition: all 0.3s;
}
.pop_window_content
{
    max-width: 70%;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px 40px;
	max-height:90vh;
	overflow: auto;
	scrollbar-width: thin;
	scrollbar-color: gray transparent;
}
.pop_window_content::-webkit-scrollbar-thumb {
	background: transparent;
}
.pop_window_close_div
{
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.close_btn
{
    font-size: 24px;
    padding: 5px 12px;
    border-radius: 30px;
    background-color: #ccc;
    opacity: 0.7;
    transition: all 0.3s;
    cursor: pointer;
}
@media(max-width:1024px)
{
	.pop_window_content
	{
		max-width: 90%;
		background-color: #ffffff;
		border-radius: 20px;
		padding: 30px 40px;
		max-height:90vh;
		overflow: auto;
		scrollbar-width: thin;
		scrollbar-color: gray transparent;
	}
}