/* 팝업 */
.winners {
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #111;
}

.winners.visible {
  display: flex;
}
.winners_wrap {
  padding: 12px;
  padding-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #fff;
  will-change: clip-path;
  clip-path: circle(100% at 50% 50%);
}
.close_btn {
  margin-left: auto;
  display: block;
  width: 20px;
  position: relative;
  cursor: pointer;
}
.winners_data {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 10px;
  padding-top: 20px;
}
.winners_data .title h4 {
  font-size: 25px;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}
.winner {
  background-color: #000;
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  padding: 5px;
  animation: neon 1s infinite alternate linear;
  margin: 10px 0;

  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.goto_reservation,
.reservation {
  display: none;
}
@keyframes neon {
  0% {
    color: #5298da;
  }
  100% {
    color: #fff;
  }
}
.winner_input {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 10px;
}
.winner_input span {
  width: 100px;
  display: inline-block;
  text-align: left;
}
.winner_input input {
  all: unset;
  font-size: 16x;
  padding: 5px;
  background-color: #f0f0f0;
}
.winner_input input::placeholder {
  font-size: 12px;
}
.winner_btn {
  width: 120px;
  cursor: pointer;
  height: 30px;
  padding: 5px 12px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  margin-top: 20px;
  justify-content: center;
  background-color: #111;
}
.winner_btn span {
  width: auto;
  color: #fff;
}
.today_close {
  cursor: pointer;
  text-align: right;
}
.today_close span {
  font-size: 12px;
  text-decoration: underline;
}
.winner_result {
  display: none;
}
.winner_data {
  display: none;
}
.winner_data.visible {
  display: flex;
}
.winner_result.visible {
  display: flex;
}
.winner_result .title {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  display: flex;
}
.winner_result h4 {
  margin-bottom: 20px;
}
.winner_result span {
  font-size: 17px;
  text-align: center;
  line-height: 1.4;
}
.winner_result a {
  font-size: 14px;
  color: #757575;
  text-decoration: underline;
  transition: all 0.3s;
}
.winner_result a:hover {
  color: #5298da;
}
.result_img {
  width: 60%;
  max-width: 340px;
  margin: 30px 0;
}
.gift_box_vid {
  position: relative;
  z-index: 0;
  transform: translate(-31px, -15px);
}
.winners2 {
  position: fixed;
  top: 0%;
  left: 0%;
  background: #000000b0;

  border: 2px solid #757575;
  width: 100%;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
}
.winners2.visible {
  display: flex;
}
.winners2_wrap {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  background-color: #fff;
  max-width: 360px;
  width: 100%;
  height: 480px;
  flex-direction: column;
}
.winner_title {
  text-align: center;
}
.winner_wrap {
  overflow: auto;
  width: 100%;
  height: 600px;
}
.winner_lists {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(5, 1fr);
  border-left: 1px solid #000;
  border-top: 1px solid #000;
}
.winner_lists li {
  border-right: 1px solid #000;
  text-align: center;
  border-bottom: 1px solid #000;
}
.result_phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.result_phone input {
  all: unset;
  font-size: 16px;
  padding: 10px;
  background-color: #f0f0f0;
  font-size: 14px;
  text-align: center;
  color: #bdbdbd;
}
.theable_instargram {
  color: #000;
  font-weight: 600;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  max-width: 305px;
  white-space: pre;
  line-height: 1.2;
}
.theable_instargram a {
  color: #5298da;
  font-weight: bold;
}
.phone_number {
  cursor: pointer;
  margin: 20px 0;
  margin-top: 30px;
  display: flex;
  background-color: #b58868;
  color: #fff;
  width: 140px;
  height: 35px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media all and (max-width: 420px) {
  .winners_wrap {
    width: 90%;
  }
  .winner_list {
    display: flex;
    gap: 10px;
    flex-direction: column;
  }
  .winner_list span {
    width: auto;
  }

  .result_img {
    width: 80%;
    /* margin: 10px 0; */
  }
  .theable_instargram {
    font-size: 13px;
  }
  .result_phone input {
    font-size: 16px;
    padding: 10px 0;
    font-weight: bold;
  }
}
