/* 비디오 팝업 */
#Popup {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1002;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
#Popup .box {
  width: fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 20px 40px 10px 0px rgba(0, 0, 0, 0.25);
}

#Popup .box img {
  margin: 0;
  padding: 0;
}

#Popup .box p {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
  padding: 10px 15px;
}

#Popup .box input[type="checkbox"] {
  display: none;
}

#Popup .box input[type="checkbox"]:checked + label::before {
  background: url(../images/icon/check_on.svg) center / 100% no-repeat;
}

#Popup .box input[type="checkbox"] + label {
  display: flex;
  align-items: center;
  position: relative;
  color: #878787;
  font-size: 15px;
  font-weight: 500;
  line-height: 150%; /* 22.5px */
  letter-spacing: -0.6px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#Popup .box input[type="checkbox"] + label::before {
  content: "";
  display: inline-block;
  margin-right: 8px;
  width: 15px;
  height: 15px;
  background: url(../images/icon/check.svg) center / 100% no-repeat;
}

@media (max-width: 550px) {
  #Popup .box {
    width: 90%;
  }
}
