@charset "utf-8";

/* 2025 어워드 팝업 스타일 */
.award-dim {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 900;
  transition: all 1s;
}

.award-popup{
  width: 400px;
  height: 600px;
  display: none;
  flex-direction: column;
  border-radius: 20px;
  background-color: #000033;
  background-image: url(../images/event/2025_award/2025_award_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  position: fixed;
  top: 105px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}
.award-popup-main{
  flex:1;
  padding: 36px 55px;
  display: block;
}
.award-popup-footer{
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F5F5F5;
}
.award-popup-chk input[type="checkbox"] {
  display: none;
}
.award-popup-chk label {
  font-size: 16px;
  font-weight: 500;
  color: #666666;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.award-popup-chk label::before {
  content: '';
  width: 24px;
  height: 24px;
  background: #ffffff;
  border: 1px solid #cdcdcd;
  border-radius: 5px;
  box-sizing: border-box;
  flex-shrink: 0;
}
.award-popup-chk input:checked + label::after{
  content: '';
  position: absolute;
  width: 10px;
  height: 6px;
  border-left: 2px solid #7C7C7C;
  border-bottom: 2px solid #7C7C7C;
  transform: rotate(-45deg);
  left: 6px;
  top: 6px;
}
.award-popup-footer button{
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: transparent;
  border: none;
  color: #222222;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

@media screen and (max-width: 480px) {

  .award-popup {
    width: 90vw;
    background-position: center;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .award-popup-main {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .award-popup-footer {
    position: fixed;
    bottom: 0;
  }
}