.today_modal{
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 1000;
  /* display: none; */
}
.todaypop{
  display: none;
  width: 420px;
  height: 665px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 3px;
  overflow: hidden;
}

.today_button_area{
  position:absolute;
  bottom:0;
  width: 100%;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #f1f1f1;
  display: flex;
}

.today_button_area a.onlyclose{
  text-decoration: none;
  color: #222;
  position: absolute;
  right: 15px;
  font-size: 14px;
}

.today_button_area input{
  display: none;
}
.today_button_area label{
  margin-left: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.today_button_area label em{
  position: relative;
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  background-color: #fff;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: 0.12s;
}
.today_button_area label em::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: #fa5969;
  /* display: none; */
  opacity: 0;
  border-radius: 50%;
  transition: .12s;
}

.today_button_area label p{
  color: #444;
  font-size: 14px;
  user-select: none;
  cursor: pointer;
}
#todayclose:checked ~ label em::after {
  /* display: block; */
  opacity: 1;
}

#todayclose:checked ~ label em{
  border-radius: 50%;
}


/* ================================= */
.today_link{
  display: block;
  width: 301px;
  height: 36px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 118px;
  z-index: 2;
  border: 1px solid transparent;
  border-radius: 35px;
  transition: 0.12s;
}
.today_link:hover{
  box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.65);
}