@charset "UTF-8";
.popup.popup-lecture .lecture-text, .grid {
  *zoom: 1;
}
.popup.popup-lecture .lecture-text:before, .grid:before, .popup.popup-lecture .lecture-text:after, .grid:after {
  content: "";
  display: table;
}
.popup.popup-lecture .lecture-text:after, .grid:after {
  clear: both;
}

.hidden,
.sr_only,
.sr-only,
.popup .popup-close span {
  position: absolute;
  display: inline-block;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 0px;
  height: 0px;
  margin: -1px;
  padding: 0;
  word-break: keep-all;
  white-space: nowrap;
  color: transparent;
  border: 0;
  text-indent: -9999px;
}

.grid {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.grid .col {
  position: relative;
  float: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.table {
  display: table;
}
.table .table-cell {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}

.effect-bounce-diagonal {
  -webkit-animation-name: effectBounceDiagonal;
          animation-name: effectBounceDiagonal;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}
@-webkit-keyframes effectBounceDiagonal {
  0%, 100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(-10px, -10px);
    transform: translate(-10px, -10px);
  }
}
@keyframes effectBounceDiagonal {
  0%, 100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(-10px, -10px);
    transform: translate(-10px, -10px);
  }
}

.effect-bounce-updown {
  -webkit-animation-name: effectBounceUpDown;
          animation-name: effectBounceUpDown;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}
@-webkit-keyframes effectBounceUpDown {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes effectBounceUpDown {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

.effect-extend {
  -webkit-animation-name: effectExtend;
          animation-name: effectExtend;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}
@-webkit-keyframes effectExtend {
  0%, 100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
}
@keyframes effectExtend {
  0%, 100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
}

.effect-blink {
  -webkit-animation-name: effectBlink;
          animation-name: effectBlink;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: step-start;
          animation-timing-function: step-start;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}
@-webkit-keyframes effectBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes effectBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.effect-left-and-right {
  -webkit-animation-name: effectLeftAndRight;
          animation-name: effectLeftAndRight;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: step-start;
          animation-timing-function: step-start;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}
@-webkit-keyframes effectLeftAndRight {
  0% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
}
@keyframes effectLeftAndRight {
  0% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
}

.popup-dim {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.6);
}

.popup {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 400;
  display: none;
  width: 90%;
  max-width: 720px;
  letter-spacing: -1px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (min-width: 1100px) {
  .popup {
    max-width: 500px;
  }
}
.popup * {
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}
.popup p {
  margin: 0;
}
.popup .popup-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 5.5555555556vw;
  height: 5.5555555556vw;
  margin: 2.0833333333vw;
  background: url(https://img.eduwill.net/eduwill/img/2022/X/common/closed_btn.png) no-repeat 0;
  background-size: 100%;
  cursor: pointer;
}
@media screen and (min-width: 720px) {
  .popup .popup-close {
    width: 40px;
  }
}
@media screen and (min-width: 720px) {
  .popup .popup-close {
    height: 40px;
  }
}
@media screen and (min-width: 720px) {
  .popup .popup-close {
    margin: 15px;
  }
}
.popup .popup-close:after, .popup .popup-close:before {
  display: none !important;
}
@media screen and (min-width: 1100px) {
  .popup .popup-close {
    width: 30px;
    height: 30px;
    margin: 20px;
  }
}
.popup .popup-title {
  padding: 0.625rem;
  text-align: left;
  border-radius: 0;
  background-color: #000;
}
@media screen and (min-width: 720px) {
  .popup .popup-title {
    padding: 20px;
  }
}
.popup .popup-title p {
  font-size: 3.3333333333vw;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 720px) {
  .popup .popup-title p {
    font-size: 24px;
  }
}
.popup .popup-body {
  padding: 0.78125rem;
  text-align: left;
  line-height: 1.4;
  font-size: 2.5vw;
  font-weight: 400;
  color: #222;
  border: 2px solid #000;
  border-radius: 0;
  background-color: #fff;
}
@media screen and (min-width: 720px) {
  .popup .popup-body {
    padding: 25px;
  }
}
@media screen and (min-width: 720px) {
  .popup .popup-body {
    font-size: 18px;
  }
}
.popup .popup-body > div {
  margin-top: 20px;
}
.popup .popup-body > div:first-child {
  margin-top: 0;
}
.popup .popup-body div:first-child strong {
  margin-top: 0;
}
.popup .popup-body p {
  font-size: 2.2222222222vw;
}
@media screen and (min-width: 720px) {
  .popup .popup-body p {
    font-size: 16px;
  }
}
.popup .popup-body p.popup-notice {
  margin-top: 0.3125rem;
  text-align: left;
  font-size: 1.9444444444vw;
}
@media screen and (min-width: 720px) {
  .popup .popup-body p.popup-notice {
    margin-top: 10px;
  }
}
@media screen and (min-width: 720px) {
  .popup .popup-body p.popup-notice {
    font-size: 14px;
  }
}
.popup .popup-body strong {
  display: block;
  margin-top: 0.625rem;
  font-size: 2.5vw;
}
@media screen and (min-width: 720px) {
  .popup .popup-body strong {
    margin-top: 20px;
  }
}
@media screen and (min-width: 720px) {
  .popup .popup-body strong {
    font-size: 18px;
  }
}
.popup .popup-table .table-row {
  width: 100%;
  table-layout: fixed;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
.popup .popup-table .table-row th,
.popup .popup-table .table-row td {
  padding: 0.3125rem;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
}
@media screen and (min-width: 720px) {
  .popup .popup-table .table-row th,
  .popup .popup-table .table-row td {
    padding: 10px;
  }
}
.popup .popup-table .table-row th {
  font-size: 2.2222222222vw;
  background-color: #ddd;
}
@media screen and (min-width: 720px) {
  .popup .popup-table .table-row th {
    font-size: 16px;
  }
}
.popup .popup-table .table-row td {
  font-size: 1.9444444444vw;
  background-color: #fff;
}
@media screen and (min-width: 720px) {
  .popup .popup-table .table-row td {
    font-size: 14px;
  }
}
@media screen and (min-width: 1100px) {
  .popup.popup-base {
    max-width: 1000px;
  }
}
.popup.popup-base .popup-body {
  max-height: 18.75rem;
  overflow-y: auto;
}
@media screen and (min-width: 720px) {
  .popup.popup-base .popup-body {
    max-height: 600px;
  }
}
@media screen and (min-width: 1100px) {
  .popup.popup-teacher {
    max-width: 500px;
  }
}
.popup.popup-teacher .popup-body {
  padding: 9.7222222222vw 2.7777777778vw 2.7777777778vw;
  max-height: 18.75rem;
  overflow-y: auto;
}
@media screen and (min-width: 720px) {
  .popup.popup-teacher .popup-body {
    padding: 70px 20px 20px;
  }
}
@media screen and (min-width: 720px) {
  .popup.popup-teacher .popup-body {
    max-height: 600px;
  }
}
@media screen and (min-width: 1100px) {
  .popup.popup-teacher .popup-body {
    padding: 70px 20px 20px !important;
  }
}
.popup.popup-teacher .popup-body .teacher-core {
  margin-top: 1.25rem;
}
@media screen and (min-width: 720px) {
  .popup.popup-teacher .popup-body .teacher-core {
    margin-top: 40px;
  }
}
.popup.popup-teacher .popup-body .teacher-ace,
.popup.popup-teacher .popup-body .teacher-core {
  color: #222;
}
@media screen and (min-width: 1100px) {
  .popup.popup-teacher .popup-body .teacher-ace,
  .popup.popup-teacher .popup-body .teacher-core {
    display: inline-block;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-top: 0;
    vertical-align: top;
  }
}
.popup.popup-teacher .popup-body .teacher-title {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.625rem;
  font-size: 3.3333333333vw;
  font-weight: 700;
  color: #fff;
  text-align: left;
  border-radius: 0;
  background-color: #000;
}
@media screen and (min-width: 720px) {
  .popup.popup-teacher .popup-body .teacher-title {
    padding: 20px;
  }
}
@media screen and (min-width: 720px) {
  .popup.popup-teacher .popup-body .teacher-title {
    font-size: 24px;
  }
}
.popup.popup-teacher .popup-body .teacher-title span {
  color: #FFD800;
}
.popup.popup-teacher .popup-body .teacher-name {
  margin-top: 0.625rem;
  font-size: 2.9166666667vw;
  font-weight: 700;
}
@media screen and (min-width: 720px) {
  .popup.popup-teacher .popup-body .teacher-name {
    margin-top: 20px;
  }
}
@media screen and (min-width: 720px) {
  .popup.popup-teacher .popup-body .teacher-name {
    font-size: 21px;
  }
}
.popup.popup-teacher .popup-body .teacher-profile {
  margin-top: 0.625rem;
  font-size: 2.7777777778vw;
  font-weight: 500;
}
@media screen and (min-width: 720px) {
  .popup.popup-teacher .popup-body .teacher-profile {
    margin-top: 20px;
  }
}
@media screen and (min-width: 720px) {
  .popup.popup-teacher .popup-body .teacher-profile {
    font-size: 20px;
  }
}
.popup.popup-teacher .popup-body .teacher-profile-list {
  margin-top: 0.3125rem;
  font-size: 2.5vw;
  font-weight: 300;
}
@media screen and (min-width: 720px) {
  .popup.popup-teacher .popup-body .teacher-profile-list {
    margin-top: 10px;
  }
}
@media screen and (min-width: 720px) {
  .popup.popup-teacher .popup-body .teacher-profile-list {
    font-size: 18px;
  }
}
@media screen and (min-width: 1100px) {
  .popup.popup-lecture {
    max-width: 500px;
  }
}
.popup.popup-lecture .popup-body {
  padding: 0;
}
.popup.popup-lecture .lecture-title {
  padding: 0.625rem;
  font-size: 3.3333333333vw;
  font-weight: 700;
  color: #fff;
  text-align: left;
  border-radius: 0;
  background-color: #000;
}
@media screen and (min-width: 720px) {
  .popup.popup-lecture .lecture-title {
    padding: 20px;
  }
}
@media screen and (min-width: 720px) {
  .popup.popup-lecture .lecture-title {
    font-size: 24px;
  }
}
.popup.popup-lecture .lecture-title span {
  color: #FFD800;
}
.popup.popup-lecture .lecture-text {
  max-height: 18.75rem;
  overflow-y: auto;
  padding: 0.78125rem;
}
@media screen and (min-width: 720px) {
  .popup.popup-lecture .lecture-text {
    max-height: 600px;
  }
}
@media screen and (min-width: 720px) {
  .popup.popup-lecture .lecture-text {
    padding: 25px;
  }
}
@media screen and (min-width: 1100px) {
  .popup.popup-lecture .lecture-text > div {
    float: left;
    width: 50%;
  }
}
.popup.popup-curriculum .lecture-title span {
  color: #FFD800;
}
.popup.popup-content6 img {
  width: 100% !important;
}
@media screen and (min-width: 1100px) {
  .popup.popup-content6 {
    max-width: 620px;
  }
}
.popup.popup-content6 .popup-close {
  top: 4.1666666667vw;
  right: 4.1666666667vw;
  background: none !important;
}
@media screen and (min-width: 720px) {
  .popup.popup-content6 .popup-close {
    top: 30px;
  }
}
@media screen and (min-width: 720px) {
  .popup.popup-content6 .popup-close {
    right: 30px;
  }
}
@media screen and (min-width: 1100px) {
  .popup.popup-content6 .popup-close {
    top: 30px !important;
    right: 30px !important;
  }
}

.eco-base-text, .eco-1718 p {
  display: none;
  line-height: 1.5;
  font-size: 2.7777777778vw;
  font-weight: 400;
  color: #222;
  letter-spacing: -1px;
}
@media screen and (min-width: 720px) {
  .eco-base-text, .eco-1718 p {
    font-size: 20px;
  }
}
@media screen and (min-width: 1100px) {
  .eco-base-text, .eco-1718 p {
    font-size: 14px;
  }
}

.product-eco .motion-1 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.product-eco .motion-2 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.product-eco .motion-3 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.product-eco .motion-4 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.product-eco .motion-5 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.product-eco .motion-6 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.product-eco .motion-7 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.product-eco .motion-8 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.product-eco .motion-9 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.product-eco .motion-10 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.product-eco .motion-11 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.product-eco .motion-12 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.product-eco .motion-op1 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.product-eco .motion-op2 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.product-eco .motion-op3 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.product-eco .motion-box-1 {
  opacity: 1;
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.product-eco .motion-box-2 {
  opacity: 0;
  -webkit-transform: scale(0.1, 0.1);
  transform: scale(0.1, 0.1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.product-eco .motion-box-3 {
  opacity: 0;
  -webkit-transform: scale(0.1, 0.1);
  transform: scale(0.1, 0.1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.product-eco .motion-box-4 {
  opacity: 0;
  -webkit-transform: scale(0.1, 0.1);
  transform: scale(0.1, 0.1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.product-eco .motion-box-5 {
  opacity: 0;
  -webkit-transform: scale(0.1, 0.1);
  transform: scale(0.1, 0.1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.product-eco .motion-scale-y-1 {
  opacity: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}
.product-eco .motion-scale-y-2 {
  opacity: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}
.product-eco .motion-scale-y-3 {
  opacity: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}
.product-eco .motion-scale-y-4 {
  opacity: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}
.product-eco .motion-scale-y-5 {
  opacity: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}
.product-eco .motion-scale-y-6 {
  opacity: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}
.product-eco .show {
  display: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.product-eco .active .motion-1 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.product-eco .active .motion-2 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.product-eco .active .motion-3 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.product-eco .active .motion-4 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.product-eco .active .motion-5 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
.product-eco .active .motion-6 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}
.product-eco .active .motion-7 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}
.product-eco .active .motion-8 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}
.product-eco .active .motion-9 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1.8s;
  transition-delay: 1.8s;
}
.product-eco .active .motion-10 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 2s;
  transition-delay: 2s;
}
.product-eco .active .motion-11 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 2.2s;
  transition-delay: 2.2s;
}
.product-eco .active .motion-12 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 2.4s;
  transition-delay: 2.4s;
}
.product-eco .active .motion-op1 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.product-eco .active .motion-op2 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.product-eco .active .motion-op3 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
.product-eco .active .motion-box-1 {
  -webkit-transform: scale(1.8, 1.8);
  transform: scale(1.8, 1.8);
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
  opacity: 0;
}
.product-eco .active .motion-box-2 {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.product-eco .active .motion-box-3 {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.product-eco .active .motion-box-4 {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.product-eco .active .motion-box-5 {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.product-eco .active .motion-scale-y-1 {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}
.product-eco .active .motion-scale-y-2 {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}
.product-eco .active .motion-scale-y-3 {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}
.product-eco .active .motion-scale-y-4 {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}
.product-eco .active .motion-scale-y-5 {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}
.product-eco .active .motion-scale-y-6 {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}
.product-eco .active .show {
  display: block;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

body {
  overflow-x: hidden;
}

.product-eco {
  line-height: normal;
  letter-spacing: -1px;
  /*공통영역*/
  /*리뷰슬라이드*/
}
.product-eco * {
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}
.product-eco .wrap {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.product-eco .wrap-full {
  width: 100%;
}
.product-eco .action {
  position: absolute;
}
.product-eco .action.t-left {
  top: 0;
  left: 50px;
}
.product-eco .action.t-right {
  top: 0;
  right: 50px;
}
.product-eco .action.t-center {
  top: 0;
  left: 0;
  right: 0;
  margin: 0 atuo;
}
.product-eco .action.b-left {
  bottom: 0;
  left: 50px;
}
.product-eco .action.b-right {
  bottom: 0;
  right: 50px;
}
.product-eco .action.b-center {
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 atuo;
}
.product-eco .motion.motion-x-r-1.bg {
  left: 0;
  right: 0;
  background: none;
}
.product-eco .motion.motion-x-r-1.bg:after {
  content: "";
  display: inline-block;
  background: #2a2d38;
  width: 100%;
  height: 850px;
  position: absolute;
  top: 0;
}
.product-eco .exam-new .action {
  top: 139px;
  left: 435px;
}
.product-eco .content-title {
  text-align: center;
}
.product-eco .content-title strong {
  font-weight: 900;
  font-size: 42px;
}
.product-eco .content-title strong span.point-text {
  font-weight: 500;
  font-size: 32px;
}
.product-eco .content-title .eco-1718 {
  color: #aaa !important;
}
.product-eco .content-title.left-bar {
  position: relative;
}
.product-eco .content-title.left-bar:before {
  content: "";
  width: 6px;
  height: 41%;
  display: inline-block;
  position: absolute;
  top: 89px;
  left: 0px;
  background: #6633cc;
}
.product-eco .eco-1718 {
  position: relative !important;
  top: 0 !important;
}
.product-eco .eco-1718 p {
  color: #bfbfbf !important;
}
.product-eco .newbrand .eco-1718 p {
  display: none;
}
.product-eco .newbrand .eco-1718 p.newbrand {
  display: block;
}
.product-eco .eco-4532 {
  display: inline-block;
}
.product-eco .point-color {
  color: #6731cd;
}
.product-eco .point-bg {
  background-color: #6731cd;
}
.product-eco .bg {
  background-color: #f3f3f3;
}
.product-eco .sale-area {
  padding-bottom: 40px;
  overflow: hidden;
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 1100px;
  margin: 20px auto 0;
}
.product-eco .sale-area.bottom {
  margin: 0 auto;
}
.product-eco .sale-area .sale-info {
  float: left;
  width: 24.2%;
  margin-left: 1%;
}
.product-eco .sale-area .sale-info:first-child {
  margin-left: 0;
}
.product-eco .sale-area .sale-info:hover .price-box {
  border: 2px solid #6633cc;
}
.product-eco .sale-area .sale-info:hover .sale-btn a {
  background: #6633cc;
}
.product-eco .sale-area .sale-info:first-child .price-box {
  margin-left: 0;
}
.product-eco .sale-area .sale-info .price-box {
  border: 2px solid #e3e3e3;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.product-eco .sale-area .sale-info .price-box .sale-top {
  margin: 20px;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 20px;
}
.product-eco .sale-area .sale-info .price-box .sale-top .name {
  font-size: 23px;
  font-weight: 900;
  color: #222;
  display: block;
}
.product-eco .sale-area .sale-info .price-box .sale-middle {
  padding: 20px;
}
.product-eco .sale-area .sale-info .price-box .sale-middle .flag {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  padding: 0 10px;
  border-radius: 5px;
  -webkit-animation-name: flagEvent;
          animation-name: flagEvent;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: step-start;
          animation-timing-function: step-start;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}
@-webkit-keyframes flagEvent {
  0%, 100% {
    color: #ff427f;
    background-color: #ffd800;
  }
  50% {
    color: #fff;
    background-color: #6633cc;
  }
}
@keyframes flagEvent {
  0%, 100% {
    color: #ff427f;
    background-color: #ffd800;
  }
  50% {
    color: #fff;
    background-color: #6633cc;
  }
}
.product-eco .sale-area .sale-info .price-box .sale-bottom {
  text-align: center;
}
.product-eco .sale-area .sale-info .price-box .sale-bottom a {
  display: block;
  padding: 10px 20px 10px 10px;
  color: #8a8a8a;
  font-size: 16px;
  border-top: 1px solid #e4e4e4;
}
.product-eco .sale-area .sale-info .price-box .sale-bottom .check-box {
  background: #f3f3f3;
  padding: 10px;
}
.product-eco .sale-area .sale-info .price-box .sale-bottom .check-box input {
  width: 15px;
  height: 15px;
}
.product-eco .sale-area .sale-info .price-box .sale-bottom .check-box label {
  color: #222;
  font-size: 18px;
  display: inline-block;
  margin-left: 5px;
}
.product-eco .sale-area .sale-info .price-box .price {
  font-family: "Roboto";
}
.product-eco .sale-area .sale-info .price-box .price.before-price {
  color: #8a8a8a;
  font-size: 21px;
  position: relative;
  font-weight: 600;
  display: inline-block;
}
.product-eco .sale-area .sale-info .price-box .price.before-price .data-cost {
  font-family: "Roboto";
}
.product-eco .sale-area .sale-info .price-box .price.before-price .data-cost:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #8a8a8a;
  position: absolute;
  left: 0;
  top: 50%;
}
.product-eco .sale-area .sale-info .price-box .price.after-price {
  font-size: 30px;
  font-weight: 900;
  color: #000;
}
.product-eco .sale-area .sale-info .price-box .price.after-price .data-cost {
  font-family: "Roboto";
  font-size: 50px;
  letter-spacing: -3.3px;
}
.product-eco .sale-area .sale-info .sale-btn {
  text-align: center;
  overflow: hidden;
  margin-top: 15px;
}
.product-eco .sale-area .sale-info .sale-btn a {
  display: block;
  height: 100%;
  padding: 15px 30px 15px 15px;
  color: #fff;
  background: #222;
  font-weight: 900;
  font-size: 20px;
}
.product-eco .review-slide .list {
  position: relative;
}
.product-eco .review-slide .list .txt {
  position: absolute;
}
.product-eco .review-slide .list .txt p {
  color: #606060;
  font-size: 18px;
  line-height: 1.7;
  text-align: left;
  font-weight: 300;
  letter-spacing: -2px;
}
.product-eco .review-slide .list .txt p .point-color {
  color: #6633cc;
  font-weight: 600;
}
.product-eco .review-slide.review-s .txt {
  top: 115px;
  left: 666px;
}
.product-eco .review-slide.review-s .txt.txt2 {
  top: 106px;
}
.product-eco .review-slide.teachers-s .txt {
  top: 21px;
  left: 230px;
}
.product-eco .review-slide.curriculum-s .txt {
  top: 21px;
  left: 230px;
}
.product-eco .review-slide.book-s .txt {
  top: 30px;
  left: 230px;
}
.product-eco .review-slide .slick-arrow {
  -webkit-transform: translateY(-205%);
          transform: translateY(-205%);
}
.product-eco a:hover {
  color: #606060;
}
.product-eco #saleBottom .content-title {
  padding: 80px 50px 40px;
}
.product-eco .sub-title {
  font-size: 30px;
  font-weight: 500;
  color: #000;
  line-height: 1.3;
  letter-spacing: -2px;
}
.product-eco .pointer {
  position: relative;
  display: inline-block;
}
.product-eco .pointer:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  z-index: 1;
  display: block;
  width: 5.5555555556vw;
  height: 6.3888888889vw;
  background: url("//img.eduwill.net/Img2/Common/icon/pointer/icon_pointer_12.png") no-repeat 0 0;
  background-size: 100% auto;
  -webkit-animation-name: pointerBounceDiagonal;
          animation-name: pointerBounceDiagonal;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}
@media screen and (min-width: 720px) {
  .product-eco .pointer:after {
    width: 40px;
  }
}
@media screen and (min-width: 720px) {
  .product-eco .pointer:after {
    height: 46px;
  }
}
@-webkit-keyframes pointerBounceDiagonal {
  0%, 100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(-10px, -10px);
    transform: translate(-10px, -10px);
  }
}
@keyframes pointerBounceDiagonal {
  0%, 100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(-10px, -10px);
    transform: translate(-10px, -10px);
  }
}
.product-eco .fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 99;
}
.product-eco .sector-bottom-banner {
  background: rgba(0, 0, 0, 0.85);
  position: fixed;
  bottom: 0;
  z-index: 100;
  width: 100%;
}
.product-eco .sector-bottom-banner .pointer:after {
  right: 280px;
}
.product-eco .sector-wing-banner {
  position: fixed;
  right: 0;
  top: 250px;
  z-index: 99;
}
.product-eco .sector-wing-banner a {
  display: block;
}
.product-eco .sector-title {
  position: relative;
  overflow: hidden;
  height: 938px;
  background: url("//img.eduwill.net/eduwill/img/2022/X/product/221014/pc/bg_title.jpg") no-repeat center;
  background-size: cover;
}
.product-eco .sector-title .wrap {
  z-index: 9;
  height: 938px;
  text-align: center;
}
.product-eco .sector-title .wrap > p {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.product-eco .sector-title .wrap > p.title-1 {
  top: 0px;
}
.product-eco .sector-title .wrap > p.title-2 {
  top: 215px;
}
.product-eco .sector-title .wrap > p.title-3 {
  top: 745px;
}
.product-eco .sector-title .wrap > p.title-3 .effect-blink {
  -webkit-animation-duration: 2s !important;
          animation-duration: 2s !important;
}
.product-eco .sector-title .action {
  bottom: 89px !important;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.product-eco .sector-early-bird {
  background: url("//img.eduwill.net/eduwill/img/2022/X/product/221014/pc/bg_early_bird.jpg") no-repeat center;
  background-size: cover;
}
.product-eco .sector-sale {
  padding: 98px 0;
}
.product-eco .sector-benefit .content-title {
  position: relative;
  text-align: center;
  padding: 80px 50px 40px !important;
}
.product-eco .sector-benefit .content-title strong {
  font-weight: 900;
}
.product-eco .sector-benefit .action {
  bottom: 80px !important;
}
.product-eco .sector-benefit .eco-1718 {
  left: 0;
  right: 0;
}
.product-eco .sector-benefit .indication {
  position: absolute;
}
.product-eco .sector-benefit .indication.i-1 {
  left: 235px;
  bottom: 42px;
  z-index: -9;
}
.product-eco .sector-benefit .indication.i-2 {
  left: 560px;
  bottom: 20px;
  z-index: -9;
}
.product-eco .sector-benefit .indication.i-3 {
  right: 280px;
  bottom: 30px;
  z-index: -9;
}
.product-eco .sector-plus {
  background-color: #feaeae;
  background-image: url("//img.eduwill.net/eduwill/img/2022/X/product/221014/pc/bg_plus.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: relative;
}
.product-eco .sector-plus:before {
  content: "";
  width: 90px;
  height: 53px;
  display: inline-block;
  background: url("//img.eduwill.net/eduwill/img/2022/X/product/221014/pc/plus_mark.png") no-repeat 50% 0/cover;
  position: absolute;
  top: -38px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99;
}
.product-eco .sector-content1 .emphasis {
  position: absolute;
  top: 86px;
  left: 43px;
}
.product-eco .sector-content1 .newbrand {
  position: absolute;
  left: 21px;
  width: 100%;
  top: 74px;
  text-align: left;
}
.product-eco .sector-content2 .action {
  top: 121px;
  left: 521px;
}
.product-eco .sector-content2 .action a {
  background-color: #f3f3f3;
}
.product-eco .sector-content2 .emphasis {
  position: absolute;
  top: 97px;
  left: 43px;
}
.product-eco .sector-content3 .emphasis {
  position: absolute;
  top: 94px;
  left: 51px;
  width: 53px;
  height: 51px;
}
.product-eco .sector-content3 .emphasis img {
  width: 100%;
}
.product-eco .sector-content3 .slick-arrow {
  -webkit-transform: translateY(-208%);
          transform: translateY(-208%);
}
.product-eco .sector-content4 .emphasis {
  position: absolute;
  top: 86px;
  left: 563px;
}
.product-eco .sector-content4 .slick-arrow {
  -webkit-transform: translateY(-208%);
          transform: translateY(-208%);
}
.product-eco .sector-content5 {
  background-color: #ffd900;
  padding-bottom: 100px;
}
.product-eco .sector-content5 p.arrows {
  position: absolute;
  left: 0;
  right: 0;
  top: -70px;
  opacity: 0.5;
}
.product-eco .sector-content5 .box-type2 .box {
  float: left;
  width: 50%;
  cursor: pointer;
}
.product-eco .sector-content5 .box-type2:after {
  content: "";
  display: table;
  clear: both;
}
.product-eco .sector-content5 .pointer:after {
  top: 88%;
  right: 90px;
}
.product-eco .sector-content5 canvas {
  z-index: 999;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  -webkit-transform: scale(1.9);
          transform: scale(1.9);
  text-align: center;
}
.product-eco .sector-scroll-box {
  padding-bottom: 400px;
  position: relative;
}
.product-eco .sector-scroll-box .s-box {
  position: relative;
  border-radius: 30px;
  text-align: left;
  height: 500px;
  margin-top: 40px;
}
.product-eco .sector-scroll-box .s-box + .s-box {
  margin-top: 60px;
}
.product-eco .sector-scroll-box .s-box .text-area {
  padding: 70px 54px;
}
.product-eco .sector-scroll-box .s-box .text-area .num {
  display: inline-block;
  font-size: 20px;
  background-color: #fff;
  text-align: center;
  padding: 0 20px;
  border-radius: 30px;
  font-family: "Roboto";
}
.product-eco .sector-scroll-box .s-box .text-area strong {
  display: block;
  color: #fff;
  font-size: 32px;
  line-height: 1.2;
  margin-top: 10px;
}
.product-eco .sector-scroll-box .s-box .text-area p {
  color: #fff;
  font-size: 20px;
  margin: 30px 0 10px;
}
.product-eco .sector-scroll-box .s-box .review-rolling {
  position: absolute;
  top: 73px;
  right: 0px;
  height: 424px;
  width: 660px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-y: auto;
  margin-right: 23px;
}
.product-eco .sector-scroll-box .s-box .review-rolling .slick-dots {
  text-align: left;
}
.product-eco .sector-scroll-box .s-box .review-rolling .slick-dots li.slick-active button {
  background: #fff;
}
.product-eco .sector-scroll-box .s-box .review-rolling .slick-dots li button {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
}
.product-eco .sector-scroll-box .s-box .review-rolling2 {
  position: absolute;
  top: 136px;
  right: 0px;
  height: 335px;
  width: 660px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-y: auto;
  margin-right: 40px;
}
.product-eco .sector-scroll-box .s-box .review-rolling2 img {
  width: 416px;
}
.product-eco .sector-scroll-box .s-box .review-rolling2 .slick-slide {
  display: block;
}
.product-eco .sector-scroll-box .s-box .review-rolling2 .slick-dots {
  text-align: left;
}
.product-eco .sector-scroll-box .s-box .review-rolling2 .slick-dots li.slick-active button {
  background: #fff;
}
.product-eco .sector-scroll-box .s-box .review-rolling2 .slick-dots li button {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
}
.product-eco .sector-scroll-box .s-box .scroll-area {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 500px;
  width: 460px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: auto;
  padding-right: 30px;
  margin-right: 23px;
}
.product-eco .sector-scroll-box .s-box .scroll-area::-webkit-scrollbar {
  width: 6px;
  margin-right: 23px;
}
.product-eco .sector-scroll-box .s-box .scroll-area::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 5px;
}
.product-eco .sector-scroll-box .s-box .scroll-area::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f5f5f5));
  background: linear-gradient(#fff, #f5f5f5);
  border-radius: 5px;
}
.product-eco .sector-scroll-box .s-box .review-box p {
  border-radius: 30px;
  padding: 23px;
  font-size: 18px;
}
.product-eco .sector-scroll-box .s-box .review-box p img {
  width: 100%;
}
.product-eco .sector-scroll-box .s-box .review-box p .name {
  display: block;
  color: rgba(34, 34, 34, 0.5);
  margin-top: 25px;
  font-size: 18px;
}
.product-eco .sector-scroll-box .s-box .review-box p + p {
  margin-top: 10px;
}
.product-eco .sector-scroll-box .s-box .review-box p:first-child {
  background-color: #f6f5ff;
}
.product-eco .sector-scroll-box .s-box .review-box p:nth-child(2) {
  background-color: #f3fdf1;
}
.product-eco .sector-scroll-box .s-box .review-box p:nth-child(3) {
  background-color: #fff8f0;
}
.product-eco .sector-scroll-box .s-box .review-box p:nth-child(4) {
  background-color: #effffe;
}
.product-eco .sector-scroll-box .s-box .review-box p:nth-child(5) {
  background-color: #fff4fa;
}
.product-eco .sector-scroll-box .s-box .review-box p:nth-child(6) {
  background-color: #fffff4;
}
.product-eco .sector-scroll-box .s-box video {
  display: none;
}
.product-eco .sector-scroll-box .s-box.box-1 {
  background-color: #58359d;
}
.product-eco .sector-scroll-box .s-box.box-1 .point-color {
  color: #58359d;
}
.product-eco .sector-scroll-box .s-box.box-2 {
  background-color: #88359d;
}
.product-eco .sector-scroll-box .s-box.box-2 .point-color {
  color: #88359d;
}
.product-eco .sector-scroll-box .s-box.box-3 {
  background-color: #98295d;
}
.product-eco .sector-scroll-box .s-box.box-3 .point-color {
  color: #98295d;
}
.product-eco .sector-scroll-box .s-box.box-3 p {
  padding: 0;
  border-radius: 0;
  background: none;
}
.product-eco .sector-scroll-box .s-box.box-3 .sub {
  color: #d98ec0;
  font-size: 14px;
  text-indent: -7px;
  display: block;
  padding-left: 7px;
}
.product-eco .sector-scroll-box .winner-wrap {
  margin-top: 180px;
}
.product-eco .sector-scroll-box .winner-wrap .winner-list {
  overflow: hidden;
  -webkit-transform: perspective(400px) rotateX(35deg);
  transform: perspective(400px) rotateX(35deg);
}
.product-eco .sector-scroll-box .winner-wrap .winner-list .slick-track {
  -webkit-transform: translate(0) !important;
  transform: translate(0) !important;
}
.product-eco .sector-scroll-box .winner-wrap p {
  margin: 0;
  line-height: 2.2;
  font-size: 20px;
  font-weight: 700;
  color: #8a8a8a;
  text-align: center;
}
.product-eco .sector-teacher {
  padding-bottom: 340px;
}
.product-eco .sector-teacher .content-title {
  margin-bottom: 26px;
}
.product-eco .sector-teacher p.sub {
  top: 0;
  padding: 0;
  margin: 0;
}
.product-eco .sector-teacher .teachers {
  overflow: hidden;
  width: 1100px;
  margin: 0 auto;
  position: absolute;
  top: 284px;
  left: 0;
  right: 0;
}
.product-eco .sector-teacher .teachers .team-teacher {
  position: relative;
  width: 531px;
}
.product-eco .sector-teacher .teachers .team-teacher .off {
  margin-bottom: 35px;
  height: 699px;
}
.product-eco .sector-teacher .teachers .team-teacher .off p {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
.product-eco .sector-teacher .teachers .team-teacher.ace-teachers {
  float: left;
  text-align: left;
}
.product-eco .sector-teacher .teachers .team-teacher.ace-teachers:hover .off p {
  display: none;
}
.product-eco .sector-teacher .teachers .team-teacher.core-teachers {
  float: right;
  text-align: right;
}
.product-eco .sector-teacher .teachers .team-teacher.core-teachers:hover .off p {
  display: none;
}
.product-eco .sector-teacher .teachers .team-teacher .action {
  position: absolute;
  top: 0;
  right: 0;
}
.product-eco .sector-teacher .btn {
  position: absolute;
  width: 100px;
  top: 10px;
  right: 20px;
}
.product-eco .sector-teacher .btn .btn-text {
  background-color: #fff;
  padding: 6px 18px 6px 6px;
}
.product-eco .sector-teacher .btn-class-list {
  position: absolute;
  width: 530px;
  height: 70px;
  top: 629px;
  border-radius: 0 0 5px 5px;
}
.product-eco .sector-teacher .btn-class-list a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 24px;
  color: #fff;
  text-align: center;
  font-weight: 600;
  line-height: 2.9;
  text-align: center;
}
.product-eco .sector-teacher .btn-class-list a:after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 0.3125rem;
  height: 0.3125rem;
  margin-top: -0.15625rem;
  border-width: 0;
  border-style: solid;
  border-color: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top-width: 2px;
  border-right-width: 2px;
  right: 173px;
}
@media screen and (min-width: 720px) {
  .product-eco .sector-teacher .btn-class-list a:after {
    width: 10px;
  }
}
@media screen and (min-width: 720px) {
  .product-eco .sector-teacher .btn-class-list a:after {
    height: 10px;
  }
}
@media screen and (min-width: 720px) {
  .product-eco .sector-teacher .btn-class-list a:after {
    margin-top: -5px;
  }
}
.product-eco .sector-teacher .btn-class-list.ace {
  left: 0;
}
.product-eco .sector-teacher .btn-class-list.core {
  right: 0;
}
.product-eco .sector-teacher .slick-arrow.slick-prev {
  left: 0;
}
.product-eco .sector-teacher .slick-arrow.slick-next {
  right: 0;
}
.product-eco .sector-teacher .team-name {
  font-size: 46px;
  font-weight: 900;
  position: absolute;
  top: 380px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  text-align: center;
}
.product-eco .sector-book .action {
  top: 207px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99;
}
.product-eco .sector-book .action a {
  background-color: #fff;
}
.product-eco .sector-book .slide-book {
  height: 390px;
  background: url("//img.eduwill.net/eduwill/img/2022/X/product/221014/pc/book.png") 0/1787px repeat-x;
  -webkit-animation: slideLeft 100s linear infinite;
  animation: slideLeft 100s linear infinite;
  position: relative;
}
.product-eco .sector-book .slide-book:before {
  content: "";
  width: 100%;
  height: 100px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #e7e7e7), to(#fff));
  background: linear-gradient(to bottom, #e7e7e7 1%, #fff 100%);
  position: absolute;
  bottom: 54px;
  left: 0;
  z-index: -9;
}
.product-eco .sector-book .semblable .eco-4240 {
  width: 1100px !important;
}
.product-eco .sector-book .semblable .eco-4240 .semblable {
  border: 2px solid #000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.product-eco .sector-book .semblable .eco-4240 .semblable .semblable-tab {
  width: 1095px;
}
.product-eco .sector-book .semblable .content-title {
  display: none;
}
.product-eco .sector-book .semblable .eco-4971 {
  display: none;
}
.product-eco .sector-book .title {
  background-color: #adadad;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  width: 1100px;
  margin: 0 auto;
  padding: 12px 0px;
}
.product-eco .sector-book .slick-prev {
  -webkit-transform: translateY(-224%);
          transform: translateY(-224%);
}
@-webkit-keyframes slideLeft {
  0% {
    background-position: 0;
  }
  100% {
    background-position: -1787px;
  }
}
@keyframes slideLeft {
  0% {
    background-position: 0;
  }
  100% {
    background-position: -1787px;
  }
}
.product-eco .sector-content6 {
  padding-bottom: 110px;
}
.product-eco .sector-content6 .list {
  overflow: hidden;
}
.product-eco .sector-content6 .list .list-box {
  float: left;
  width: 33.3%;
  margin-top: 30px;
  padding-bottom: 15px;
}
.product-eco .sector-content6 .list .list-box a {
  display: inline-block;
  -webkit-box-shadow: 10px 5px 12px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 10px 5px 12px 0px rgba(0, 0, 0, 0.07);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product-eco .sector-content6 .list .list-box a:hover {
  -webkit-box-shadow: 10px 5px 12px 0px rgba(0, 0, 0, 0.24);
          box-shadow: 10px 5px 12px 0px rgba(0, 0, 0, 0.24);
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product-eco .sector-sale .survey-3 .eco-1718,
.product-eco .sector-sale .survey-5 .eco-1718,
.product-eco .sector-sale .brand2022 .eco-1718 {
  line-height: 0.2;
}
.product-eco .sector-service {
  padding-bottom: 110px;
}
.product-eco .sector-service .service-box {
  width: 1100px;
  margin: 60px auto 0;
  -webkit-box-shadow: 10px 2px 12px 10px rgba(0, 0, 0, 0.07);
          box-shadow: 10px 2px 12px 10px rgba(0, 0, 0, 0.07);
  border-radius: 5px;
  position: relative;
}
.product-eco .sector-service .service-box:after {
  content: "";
  width: 100%;
  height: 0px;
  border: 2px solid #6633cc;
  background-color: #6633cc;
  position: absolute;
  top: 63px;
  left: 0;
  z-index: -9;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.product-eco .sector-first-rank {
  background-color: #312D46;
  background-image: url("//img.eduwill.net/eduwill/img/2022/X/common/pc/bg_first_rank.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.product-eco .sector-first-rank .content-sub-title {
  color: #fff;
  font-size: 26px;
  font-weight: 300;
  position: absolute;
  top: 232px;
  right: 245px;
  text-align: left;
}
.product-eco .sector-first-rank .content-sub-title .point-color {
  color: #ffd800;
  font-weight: 600;
}
.product-eco .sector-first-rank .slick-arrow {
  -webkit-transform: translateY(-205%) !important;
          transform: translateY(-205%) !important;
}
.product-eco .sector-first-rank .slick-arrow.slick-prev {
  left: 27px;
}
.product-eco .sector-first-rank .slick-arrow.slick-next {
  right: 27px;
}
.product-eco .sector-first-rank .action {
  bottom: 80px !important;
}
.product-eco .sector-video-review {
  background-color: #FFD800;
  background-image: url("//img.eduwill.net/eduwill/img/2022/X/common/pc/bg_video.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.product-eco .sector-video-review .content-title {
  margin-bottom: 60px;
}
.product-eco .sector-video-review .content-title .sub {
  color: #c0a71f;
}
.product-eco .sector-video-review .review_video {
  width: 100%;
  max-width: 1920px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  position: relative;
}
.product-eco .sector-video-review .review_video .review-single-arrows .slick-slide .item {
  margin: 0 auto;
  position: relative;
  height: 320px;
}
.product-eco .sector-video-review .review_video .review-single-arrows .slick-slide .item a {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.product-eco .sector-video-review .review_video .review-single-arrows .slick-slide .item a img {
  height: 100%;
  margin: auto;
  opacity: 0.6;
}
.product-eco .sector-video-review .review_video .review-single-arrows .slick-slide .item video {
  display: none;
}
.product-eco .sector-video-review .review_video .review-single-arrows .slick-slide.slick-current .item a img {
  height: 100%;
  opacity: 1;
}
.product-eco .sector-video-review .review_video .slick-arrow.slick-prev {
  left: 50%;
  margin-left: -300px;
}
.product-eco .sector-video-review .review_video .slick-arrow.slick-next {
  right: 50%;
  margin-right: -300px;
}
.product-eco .sector-video-review .video-review {
  margin-top: 87px;
  text-align: center;
}
.product-eco .sector-video-review .video-review .sub-title {
  color: #695900;
  font-size: 23px;
}
.product-eco .sector-video-review .video-review strong {
  display: block;
  color: #695900;
  font-size: 41px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 30px;
}
.product-eco .sector-video-review .video-review .slick-arrow {
  -webkit-transform: translateY(-210.4%);
          transform: translateY(-210.4%);
}
.product-eco .sector-video-review .video-review .action {
  bottom: 100px;
  right: 50px;
}
.product-eco .sector-video-review .video-review .action a {
  background-color: #6633cc;
  color: #fff;
}
.product-eco .sector-video-review .video-review .action a:after {
  border-color: #fff;
}
.product-eco .sector-video .point-color {
  color: #6633cc !important;
}
.product-eco .sector-video .content-title {
  margin-bottom: 50px;
}
.product-eco .sector-video .content-title .sub {
  color: #c0a71f !important;
}
.product-eco .sector-video .video-review {
  margin-top: 87px;
  text-align: center;
}
.product-eco .sector-video .video-review .sub-title {
  color: #695900;
  font-size: 23px;
}
.product-eco .sector-video .video-review strong {
  display: block;
  color: #695900;
  font-size: 41px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 30px;
}
.product-eco .sector-video .video-review .slick-arrow {
  -webkit-transform: translateY(-210.4%);
          transform: translateY(-210.4%);
}
.product-eco .sector-video .video-review .action {
  position: absolute;
  bottom: 100px;
  right: 50px;
}
.product-eco .sector-video .video-review .action a {
  background-color: #6633cc;
  color: #fff;
}
.product-eco .sector-video .video-review .action a:after {
  border-color: #fff;
}
.product-eco .sector-band {
  position: relative;
  padding: 30px 0;
  background-color: #13183b;
  background-image: url("//img.eduwill.net/eduwill/img/2022/X/product/221014/pc/bg_band.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.product-eco .sector-band .content-title-center strong {
  font-weight: 900;
  margin-top: 10px;
}
.product-eco .sector-band .eco-1718 p {
  color: #767885 !important;
}
.product-eco .sector-band .point-color {
  color: #ad76ff !important;
}
.product-eco .sector-band .sub {
  font-size: 12px;
  color: #767885;
}
.product-eco .sector-band .sub-title {
  color: #fff;
  font-weight: 500;
  font-size: 24px;
}
.product-eco .sector-band.type2 {
  padding: 13px 0;
  background-color: #13183b;
  background-image: url("//img.eduwill.net/eduwill/img/2022/X/product/221014/pc/bg_band2.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.product-eco .sector-band.type3 {
  padding: 13px 0;
  background-color: #13183b;
  background-image: url("//img.eduwill.net/eduwill/img/2022/X/product/221014/pc/bg_band3.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.product-eco .sector-prize {
  background-color: #fffae0;
}

.tab-list {
  display: table;
  width: 1100px;
  margin: 0 auto;
  /* one items */
  /* two items */
  /* three items */
}
.tab-list li {
  position: relative;
  width: 32.3%;
  float: left;
  height: 70px;
  vertical-align: middle;
  background-color: #f3f3f3;
  font-size: 24px;
  color: #919191;
  font-weight: 900;
  cursor: pointer;
  line-height: 1.1;
}
.tab-list li span {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-44%);
          transform: translateY(-44%);
}
.tab-list li small {
  font-size: 26px;
  display: block;
}
.tab-list li:nth-child(2) {
  width: 33.3%;
  margin-left: 10.5px;
}
.tab-list li:last-child {
  float: right;
}
.tab-list li.on {
  background-color: #6633cc;
  color: #fff;
}
.tab-list li.on:after {
  display: none;
}
.tab-list li:nth-child(1):nth-last-child(1) {
  width: 100%;
}
.tab-list li:nth-child(1):nth-last-child(1) label {
  letter-spacing: 0;
}
.tab-list li:nth-child(1):nth-last-child(2),
.tab-list li:nth-child(2):nth-last-child(1) {
  width: 49.5%;
}
.tab-list li:nth-child(1):nth-last-child(2) label,
.tab-list li:nth-child(2):nth-last-child(1) label {
  letter-spacing: 0;
}
.tab-list li:nth-child(1):nth-last-child(3),
.tab-list li:nth-child(2):nth-last-child(2),
.tab-list li:nth-child(3):nth-last-child(1) {
  width: 32.3%;
}
.tab-list li:nth-child(1):nth-last-child(3) label,
.tab-list li:nth-child(2):nth-last-child(2) label,
.tab-list li:nth-child(3):nth-last-child(1) label {
  letter-spacing: 0;
}

.tab-views .tab-view {
  display: none;
  overflow: hidden;
}
.tab-views .tab-view.on {
  display: block;
}

.content-title .sub {
  opacity: 0.7;
}

.sector-top-banner {
  background-color: #FFD800;
}

div#refund {
  margin: -60px 52px 100px !important;
}

.product-apply {
  padding: 20px 0 !important;
}

.product-apply-title .content-title {
  text-align: left !important;
  padding: 80px 50px 10px !important;
}

.sector-protagonist {
  padding-bottom: 100px;
}
.sector-protagonist .protagonist-box {
  width: 1100px;
  margin: 40px auto 0;
  overflow: hidden;
}
.sector-protagonist .protagonist-box .g-box {
  float: left;
  width: 33.3%;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sector-protagonist .protagonist-box .g-box p {
  font-size: 24px;
  font-weight: 600;
  position: absolute;
  left: 63px;
  top: 12px;
  letter-spacing: -1.5px;
}
.sector-protagonist .protagonist-box .g-box .dim {
  background: rgba(0, 0, 0, 0.85);
  width: 348px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 9px;
  border-radius: 5px;
}
.sector-protagonist .protagonist-box .g-box .dim p {
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  position: absolute;
  top: 37%;
  line-height: 1.5;
}
.sector-protagonist .protagonist-box .g-box .dim p .point-color {
  color: #ffd900 !important;
}
.sector-protagonist .protagonist-box .g-box .dim:hover {
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.congratulation {
  -webkit-animation: scaleBounce 0.5s alternate infinite;
          animation: scaleBounce 0.5s alternate infinite;
}

@-webkit-keyframes scaleBounce {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@keyframes scaleBounce {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.vibration {
  -webkit-animation: vibration 0.1s infinite;
          animation: vibration 0.1s infinite;
}

@-webkit-keyframes vibration {
  from {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  to {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
}

@keyframes vibration {
  from {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  to {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
}
.eduf-layer {
  z-index: 400 !important;
}

.top-banner {
  background-color: #000;
  padding: 2.7777777778vw 0;
  text-align: center;
}
@media screen and (min-width: 720px) {
  .top-banner {
    padding: 20px 0;
  }
}
.top-banner .tag {
  background-color: #eb2b1b;
  border-radius: 0.6944444444vw;
  display: inline-block;
  text-align: center;
  font-weight: 900;
  font-size: 2.5vw;
  color: #fff;
  padding: 0.6944444444vw 5.5555555556vw;
}
@media screen and (min-width: 720px) {
  .top-banner .tag {
    border-radius: 5px;
  }
}
@media screen and (min-width: 720px) {
  .top-banner .tag {
    font-size: 18px;
  }
}
@media screen and (min-width: 720px) {
  .top-banner .tag {
    padding: 5px 40px;
  }
}
.top-banner p {
  font-size: 3.4722222222vw;
  letter-spacing: -0.2777777778vw;
  text-align: left;
  color: #ffde26;
  font-weight: 900;
  display: inline-block;
  margin: 0 1.3888888889vw;
}
@media screen and (min-width: 720px) {
  .top-banner p {
    font-size: 25px;
  }
}
@media screen and (min-width: 720px) {
  .top-banner p {
    letter-spacing: -2px;
  }
}
@media screen and (min-width: 720px) {
  .top-banner p {
    margin: 0 10px;
  }
}
.top-banner p .br {
  display: block;
}
@media screen and (min-width: 1100px) {
  .top-banner p .br {
    display: inline-block;
  }
}
.top-banner .sub-text {
  font-size: 1.8055555556vw;
  color: #646464;
}
@media screen and (min-width: 720px) {
  .top-banner .sub-text {
    font-size: 13px;
  }
}

.bulb-message {
  background-color: #fcf3d2;
  width: 1100px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
  position: relative;
}
.bulb-message p {
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  line-height: 0;
  display: inline-block;
  position: relative;
}
.bulb-message p:before {
  content: "";
  display: inline-block;
  background: url(https://img.eduwill.net/eduwill/img/2022/X/common/bulb.png) no-repeat;
  width: 68px;
  height: 84px;
  position: absolute;
  left: -94px;
  top: -47px;
}
.bulb-message span {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #bbbbbb;
}

#refund {
  position: relative;
  bottom: -30px;
  right: 0;
}

.sector-visual-hyeri .visual-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -1px;
  right: 0;
  z-index: 2;
}

.moneyflake {
  color: #fff;
  font-size: 1em;
  font-family: Arial;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@-webkit-keyframes moneyflakes-fall {
  0% {
    top: -30%;
  }
  100% {
    top: 100%;
  }
}
@-webkit-keyframes moneyflakes-shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(80px);
    transform: translateX(80px);
  }
}
@keyframes moneyflakes-fall {
  0% {
    top: -30%;
  }
  100% {
    top: 100%;
  }
}
@keyframes moneyflakes-shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(80px);
            transform: translateX(80px);
  }
}
.moneyflake {
  position: absolute;
  top: -30%;
  z-index: 9;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  -webkit-animation-name: moneyflakes-fall, moneyflakes-shake;
  -webkit-animation-duration: 10s, 3s;
  -webkit-animation-timing-function: linear, ease-in-out;
  -webkit-animation-iteration-count: infinite, infinite;
  -webkit-animation-play-state: running, running;
  animation-name: moneyflakes-fall, moneyflakes-shake;
  animation-duration: 10s, 3s;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: infinite, infinite;
  animation-play-state: running, running;
}

.moneyflake:nth-of-type(0) {
  left: 1%;
  -webkit-animation-delay: 0s, 0s;
  animation-delay: 0s, 0s;
}

.moneyflake:nth-of-type(1) {
  left: 5%;
  -webkit-animation-delay: 1s, 1s;
  animation-delay: 1s, 1s;
}

.moneyflake:nth-of-type(2) {
  left: 10%;
  -webkit-animation-delay: 6s, 0.5s;
  animation-delay: 6s, 0.5s;
}

.moneyflake:nth-of-type(3) {
  left: 15%;
  -webkit-animation-delay: 4s, 2s;
  animation-delay: 4s, 2s;
}

.moneyflake:nth-of-type(4) {
  left: 20%;
  -webkit-animation-delay: 2s, 2s;
  animation-delay: 2s, 2s;
}

.moneyflake:nth-of-type(5) {
  left: 25%;
  -webkit-animation-delay: 8s, 3s;
  animation-delay: 8s, 3s;
}

.moneyflake:nth-of-type(6) {
  left: 30%;
  -webkit-animation-delay: 6s, 2s;
  animation-delay: 6s, 2s;
}

.moneyflake:nth-of-type(7) {
  left: 35%;
  -webkit-animation-delay: 2.5s, 1s;
  animation-delay: 2.5s, 1s;
}

.moneyflake:nth-of-type(8) {
  left: 40%;
  -webkit-animation-delay: 1s, 0s;
  animation-delay: 1s, 0s;
}

.moneyflake:nth-of-type(9) {
  left: 45%;
  -webkit-animation-delay: 3s, 1.5s;
  animation-delay: 3s, 1.5s;
}

.moneyflake:nth-of-type(10) {
  left: 50%;
  -webkit-animation-delay: 0s, 0s;
  animation-delay: 0s, 0s;
}

.moneyflake:nth-of-type(11) {
  left: 55%;
  -webkit-animation-delay: 1s, 1s;
  animation-delay: 1s, 1s;
}

.moneyflake:nth-of-type(12) {
  left: 60%;
  -webkit-animation-delay: 6s, 0.5s;
  animation-delay: 6s, 0.5s;
}

.moneyflake:nth-of-type(13) {
  left: 65%;
  -webkit-animation-delay: 4s, 2s;
  animation-delay: 4s, 2s;
}

.moneyflake:nth-of-type(14) {
  left: 70%;
  -webkit-animation-delay: 2s, 2s;
  animation-delay: 2s, 2s;
}

.moneyflake:nth-of-type(15) {
  left: 75%;
  -webkit-animation-delay: 8s, 3s;
  animation-delay: 8s, 3s;
}

.moneyflake:nth-of-type(16) {
  left: 80%;
  -webkit-animation-delay: 6s, 2s;
  animation-delay: 6s, 2s;
}

.moneyflake:nth-of-type(17) {
  left: 85%;
  -webkit-animation-delay: 2.5s, 1s;
  animation-delay: 2.5s, 1s;
}

.moneyflake:nth-of-type(18) {
  left: 90%;
  -webkit-animation-delay: 1s, 0s;
  animation-delay: 1s, 0s;
}

.moneyflake:nth-of-type(19) {
  left: 95%;
  -webkit-animation-delay: 3s, 1.5s;
  animation-delay: 3s, 1.5s;
}/*# sourceMappingURL=web.css.map */