.open-survey-layer {
	font-size: 0;;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 9999999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.open-survey-box {
  width: 720px;
  background: #fff;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}


/* 헤더 */
.open-survey-header {
  margin-bottom: 20px;
}

.open-survey-header .badge {
  display: inline-block;
  border: 1px solid #00a3a3;
  color: #00a3a3;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
}

.open-survey-header .date {
  margin-top: 10px;
  font-size: 16px;
  color: #00a3a3;
}

.open-survey-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-top: 10px;
}

/* 이미지 */
.open-survey-content {
  text-align: right;
  /* margin: 20px 0; */
}


/* 액션 */
.open-survey-action {
  margin-top: 20px;
}

.btn-go {
  background: #00a3a3;
  color: #fff;
  border-radius: 30px;
  padding: 12px 28px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.open-survey-action .desc {
  margin-top: 10px;
  font-size: 12px;
  color: #666;
}

/* 하단 */
.open-survey-footer {
  /* margin-top: 30px; */
  /* display: flex; */
  /* justify-content: flex-end; */
  gap: 10px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.open-survey-footer button {
  background: #333333;
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-size: 13px;
  cursor: pointer;
}
.open-survey-footer button:hover{
	text-decoration: underline;
}


@media(max-width:1024px) {
	.open-survey-box{
		width: 100%;;
	}
}