.popup-wrap {
    --anim-speed: .4s;
    --overlay-opacity: .4;
	box-sizing: border-box;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1100;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 15px;
	/* opacity: 0; */
	pointer-events: none;
	transition: opacity ease var(--anim-speed);
}
.popup-wrap.open {
	pointer-events: all;
	/* opacity: 1; */
	/* transition: all ease 5s; */
   
}

.popup-wrap .popup-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-backdrop-filter: blur(0px);
	backdrop-filter: blur(0px);
    background-color: rgba(0, 0, 0, 0);
	z-index: 110;
    /* animation: blur-out 4s ease 0s;
    -webkit-animation: blur-out 4s ease 0s;
    -moz-animation: blur-out 4s ease 0s; */
    /* animation: blur-in 4s ease 0s;
    -webkit-animation: blur-in 4s ease 0s;
    -moz-animation: blur-in 4s ease 0s; */

	/* transition: background-color ease 1.3s; */
}
.popup-wrap.init .popup-overlay {
	
    animation: blur-out var(--anim-speed) ease 0s;
    -webkit-animation: blur-out var(--anim-speed) ease 0s;
    -moz-animation: blur-out var(--anim-speed) ease 0s;
}
.popup-wrap.init.open .popup-overlay {
	background-color: rgba(0, 0, 0, var(--overlay-opacity));
    opacity: 1;
    -webkit-backdrop-filter: blur(7px); 
	 backdrop-filter: blur(7px); 
    animation: blur-in var(--anim-speed) ease 0s;
    -webkit-animation: blur-in var(--anim-speed) ease 0s;
    -moz-animation: blur-in var(--anim-speed) ease 0s;
	
	/* transition: background-color ease .2s; */
}
@keyframes blur-in {
    0%{
        backdrop-filter: blur(0px);
      /* -webkit-filter: blur(0px);
      -moz-filter: blur(0px);
      -o-filter: blur(0px);
      -ms-filter: blur(0px); */
      background-color: rgba(0, 0, 0, 0);
    }
    100% {
        backdrop-filter: blur(7px);
      /* -webkit-filter: blur(7px);
      -moz-filter: blur(7px);
      -o-filter: blur(7px);
      -ms-filter: blur(7px); */
      background-color: rgba(0, 0, 0, var(--overlay-opacity));
    }
  }
  @keyframes blur-out {
    0% {
        backdrop-filter: blur(7px);
        opacity: 1;
      /* -webkit-filter: blur(7px);
      -moz-filter: blur(7px);
      -o-filter: blur(7px);
      -ms-filter: blur(7px); */
      background-color: rgba(0, 0, 0, var(--overlay-opacity));
    }
    100%{
        backdrop-filter: blur(0px);
        opacity: 0;
      /* -webkit-filter: blur(0px);
      -moz-filter: blur(0px);
      -o-filter: blur(0px);
      -ms-filter: blur(0px); */
      background-color: rgba(0, 0, 0, 0);
    }
    
  }
.popup-wrap .popup-elem {
	min-height: 100px;
	width: 700px;
	background: #ffffff;
	padding: 50px 20px 20px;
	position: relative;
	border-radius: 5px;
	z-index: 120;
	
	opacity: 0;
	transform: translateY(-50px);
	transition: all ease var(--anim-speed);
}
.popup-wrap.open .popup-elem {
	opacity: 1;
	transform: translateY(0px);
	transition: all ease var(--anim-speed);
}
.popup-content {
	/* background: #def8d6; */
	max-height: 85vh;
    overflow-y: auto;
}
.popup-content::-webkit-scrollbar {
  width: 8px;
}

.popup-content::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 10px;
}

.popup-content::-webkit-scrollbar-thumb {
  background-color: #1a6c7a;
  border-radius: 10px;
  border: 1px solid #ffffff;
}
.popup-close {
	position: absolute;
	top: 15px;
	right: 15px;
	/* font-size: 28px;
	color: red; */
    width: 25px;
    height: 25px;
	cursor: pointer
}
.popup-close svg {
	display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.popup-close svg path {
    width: 100%;
    height: 100%;
	fill: rgb(219, 63, 16);
}