#popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fade {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
}

.popup_content {
  z-index: 1001;
  width: 100%;
  height: 100%;
  max-width: 90%;
  max-height: 90%;
}



#popup .close_btn {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 10px;
  z-index: 1;
}

#popup.popup_video .close_btn,
#popup.popup_swiper .close_btn{
    z-index: 1002;
	 padding: 10px;

	}

.popup_login .popup_content {
  width: 500px;
  background: #fff;
  border: 1px solid #999;
  box-shadow: 4px 4px 64px 0px rgba(0, 0, 0, 0.25);
  padding: 70px calc((500px - 350px) / 2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: fit-content !important;
  position: relative;
}

.popup_login .popup_content img:first-child {
  margin-bottom: 20px;
}

.popup_login .popup_content p {
  color: #222;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 30px;
}

.popup_login .popup_content sub {
  color: #707070;
  font-size: 12px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
}

.popup_login .popup_content sub a {
  color: #3d9898;
  font-size: 12px;
  font-weight: 400;
  text-decoration-line: underline;
}

.popup_login .popup_content form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.popup_login .popup_content form div {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.popup_login .popup_content form div span {
  color: #222;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.84px;
}

.popup_login .popup_content form div input {
  margin-top: 6px;
  border: 1px solid #bbb;
  width: 100%;
  height: 40px;
  background: #fff;
  font-size: 16px;
  font-weight: 400;
  padding: 0 12px;
}

.popup_login .popup_content form button {
  width: 100%;
  height: 40px;
  background: #222;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 1024px) {

  #popup.popup_swiper .close_btn img,
  #popup.popup_video .close_btn img {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 820px) {
  .popup_swiper .popup_content {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  #popup.popup_swiper .close_btn img,
  #popup.popup_video .close_btn img {
    width: 50px;
    height: 50px;
  }
  }

@media (max-width: 600px) {
  .popup_login .popup_content {
    padding: 50px 30px;
  }
}
