.swiper-pagination-bullet-active {
  background: #4e4e4e;
}
.swiper-pagination-bullet {
  width: 23px;
  border-radius: 3px;
}
/* 체크박스 */
label {
  position: relative;
}
input[type="checkbox"].checkbox2 {
  display: none;
}
input[type="checkbox"].checkbox2 + label:before {
  /* 체크박스 배경 */
  display: inline-block;
  content: "";
  width: 17px;
  height: 17px;
  border: 1px solid #333;
  border-radius: 5px;
  margin: 0 5px -4px 0;
}
input[type="checkbox"].checkbox2 + label:after {
  /* 체크 마크 */
  position: absolute;
  left: 4px;
  top: 3px;
  content: "✔"; /* 체크 마크 ASCii 문자 */
  font-size: 12px;
  line-height: 0.8;
  color: #333;
  transition: 0.3s;
}
[type="checkbox"].checkbox2 + label:after {
  /* 기본 상태 - 투명에 크기 0 */
  opacity: 0;
}
[type="checkbox"]:checked.checkbox2 + label:after {
  /* 체크 상태 - 불투명에 크기 1 */
  opacity: 1;
}
/* Animation */
.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px; /*Fix for safari gap*/
  min-height: 100px;
  max-height: 150px;
}
.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
.header_wave {
  transform: rotate(180deg);
}
@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height: 60px;
    min-height: 40px;
  }
}
