.incento-widget-mobile {
  min-width: unset !important;
}

.incento_widget__container {
  position: fixed;
  z-index: 2147483647;
  height: min(650px, 90%);
  width: 350px;
  margin: 0;
  border-radius: 12px;
  box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
  overflow: hidden;
  overflow-y: scroll;
  visibility: hidden;
  background-color: white;
  transition: all 0.1s ease-in;
  opacity: 0;
}

.incento_widget__container::-webkit-scrollbar {
  display: none;
}

.incento_widget__inner {
  min-height: 100% !important;
  max-height: 100% !important;
  width: 100% !important;
  height: 100% !important;
  position: relative !important;
}

.incento_widget_right_bottom {
  right: 5px;
  bottom: 5px;
}

#incento_iframe {
  border: none;
  overflow-y: scroll;
  width: 100% !important;
}

.incento_widget__close_btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: 2147483647;
  outline: none;
}

.incento_widget_close {
  display: none;
  overflow: hidden;
  animation: incento-fade-out 0.1s forwards;
  transform: translate(-10px, -10px);
  right: 5px;
  bottom: 5px;
}

.incento_widget__launcher_close {
  animation: incento-fade-out 0.3s forwards !important;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transform: translate(-5px, -5px);
}

.incento_widget__launcher_open {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

@keyframes incento-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes incento-fade-out {
  100% {
    opacity: 0;
  }
}

@keyframes incento-slide-in {
  100% {
    transform: translateY(100px);
  }
}

@keyframes incento-slide-out {
  0% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(200%);
  }
}

@media screen and (max-width: 480px) {
  .incento_widget__container {
    border-radius: 30px 30px 0 0;
    height: 90%;
    width: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    max-height: unset;
    box-shadow: 0 0 10px 0px lightgray;
  }

  .incento_widget__close_btn {
    cursor: auto;
  }

  .incento_widget__launcher {
    cursor: auto;
  }
}

@media screen and (max-device-width: 480px) {
  .incento_widget__container {
    border-radius: 30px 30px 0 0;
    height: 90%;
    width: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    max-height: unset;
    box-shadow: 0 0 10px 0px lightgray;
  }

  .incento_widget__close_btn {
    cursor: auto;
  }

  .incento_widget__launcher {
    cursor: auto;
  }
}

.incento_widget__container_mobile {
  border-radius: 30px 30px 0 0;
  height: 90%;
  width: 100%;
  bottom: 0;
  right: 0;
  left: 0;
  max-height: unset;
  box-shadow: 0 0 10px 0px lightgray;
}

@media (max-width: 480px) {
  .incento_widget_open {
    visibility: visible;
    overflow-y: scroll;
    animation: incento-fade-in 0.1s forwards;
  }
}

@media (min-width: 480px) {
  .incento_widget_open {
    visibility: visible;
    overflow-y: scroll;
    animation: incento-fade-in 0.1s forwards;
    right: 20px;
    bottom: 25px;
  }
}

@keyframes incento-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes incento-shake-animation {
  0% {
    transform: translate(0, 0);
  }
  1.78571% {
    transform: translate(3px, 0);
  }
  3.57143% {
    transform: translate(0, 0);
  }
  5.35714% {
    transform: translate(3px, 0);
  }
  7.14286% {
    transform: translate(0, 0);
  }
  8.92857% {
    transform: translate(3px, 0);
  }
  10.71429% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes incento-rotate-pause {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(360deg);
  } /* 1초 동안 회전 */
  100% {
    transform: rotate(360deg);
  } /* 1초 동안 정지 */
}

@keyframes incento-floatingBounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
