@keyframes jBoxLoading {
  to {
    transform: rotate(360deg);
  }
}
@keyframes jBox-tada {
  0% {
    transform: scale(1);
  }
  10%,
  20% {
    transform: scale(0.8) rotate(-4deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale(1.2) rotate(4deg);
  }
  40%,
  60%,
  80% {
    transform: scale(1.2) rotate(-4deg);
  }
  to {
    transform: scale(1) rotate(0);
  }
}
@keyframes jBox-tadaSmall {
  0% {
    transform: scale(1);
  }
  10%,
  20% {
    transform: scale(0.9) rotate(-2deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale(1.1) rotate(2deg);
  }
  40%,
  60%,
  80% {
    transform: scale(1.1) rotate(-2deg);
  }
  to {
    transform: scale(1) rotate(0);
  }
}
@keyframes jBox-flash {
  0%,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes jBox-shake {
  0%,
  to {
    transform: translateX(0);
  }
  20%,
  60% {
    transform: translateX(-6px);
  }
  40%,
  80% {
    transform: translateX(6px);
  }
}
@keyframes jBox-pulseUp {
  0%,
  to {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
@keyframes jBox-pulseDown {
  0%,
  to {
    transform: scale(1);
  }
  50% {
    transform: scale(0.85);
  }
}
@keyframes jBox-popIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
@keyframes jBox-popOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  to {
    transform: scale(0);
  }
}
@keyframes jBox-fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes jBox-fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes jBox-slideUp {
  0% {
    transform: translateY(0);
  }
  to {
    transform: translateY(-300px);
    opacity: 0;
  }
}
@keyframes jBox-slideRight {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(300px);
    opacity: 0;
  }
}
@keyframes jBox-slideDown {
  0% {
    transform: translateY(0);
  }
  to {
    transform: translateY(300px);
    opacity: 0;
  }
}
@keyframes jBox-slideLeft {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-300px);
    opacity: 0;
  }
}
.jBox-wrapper {
  text-align: left;
}
.jBox-container,
.jBox-content,
.jBox-title {
  position: relative;
  word-break: break-word;
}
.jBox-container {
  background: #eef5ee;
}
.jBox-content {
  overflow-x: hidden;
  overflow-y: auto;
  transition: opacity 0.2s;
}
.jBox-Mouse .jBox-container,
.jBox-Tooltip .jBox-container {
  border-radius: 4px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
}
.jBox-Mouse .jBox-title,
.jBox-Tooltip .jBox-title {
  padding: 8px 10px 0;
  font-weight: 700;
}
.jBox-Mouse.jBox-hasTitle .jBox-content,
.jBox-Tooltip.jBox-hasTitle .jBox-content {
  padding-top: 5px;
}
.jBox-Mouse {
  pointer-events: none;
}
.jBox-pointer {
  position: absolute;
  overflow: hidden;
}
.jBox-pointer:after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  background: #fff;
  transform: rotate(45deg);
}
.jBox-pointer-top {
  top: 0;
}
.jBox-pointer-top:after {
  left: 5px;
  top: 6px;
  box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.15);
}
.jBox-pointer-right {
  right: 0;
}
.jBox-pointer-right:after {
  top: 5px;
  right: 6px;
  box-shadow: 1px -1px 2px rgba(0, 0, 0, 0.15);
}
.jBox-pointer-left {
  left: 0;
}
.jBox-pointer-left:after {
  top: 5px;
  left: 6px;
  box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.15);
}
.jBox-pointer-bottom {
  bottom: 0;
}
.jBox-pointer-bottom:after {
  left: 5px;
  bottom: 6px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}
.jBox-pointer-bottom,
.jBox-pointer-top {
  width: 30px;
  height: 12px;
}
.jBox-pointer-left,
.jBox-pointer-right {
  width: 12px;
  height: 30px;
}
.jBox-Modal .jBox-container {
  border-radius: 20px;
  box-shadow:
    0 3px 15px rgba(0, 0, 0, 0.4),
    0 0 5px rgba(0, 0, 0, 0.4);
}
.jBox-Modal .jBox-footer {
  border-radius: 0 0 4px 4px;
}
.jBox-closeButton {
  top: -16px;
  right: -16px;
  width: 44px;
  height: 44px;
  z-index: 1;
  cursor: pointer;
  position: absolute;
  background-color: #869895;
  padding: 9px;
  border-radius: 50%;
  border: 3px solid #eef5ee;
  box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
}
.jBox-closeButton path {
  fill: #eef5ee;
  transition: fill 0.4s;
}
.jBox-closeButton:hover path {
  fill: #4c5650;
}
.jBox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(32, 34, 32, 0.7);
}
.jBox-footer {
  background: #fafafa;
  border-top: 1px solid #eee;
  padding: 8px 10px;
  border-radius: 0 0 3px 3px;
}
body[class*=" jBox-blockScroll-"],
body[class^="jBox-blockScroll-"] {
  overflow: hidden;
}
.jBox-spinner {
  position: relative;
  display: flex;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 4px solid #869895;
  margin: 0 auto;
  background: radial-gradient(ellipse at center, #869895 4px, transparent 5px);
  border-radius: 50%;
}
.jBox-spinner::after,
.jBox-spinner::before {
  position: absolute;
  display: block;
  content: "";
  width: 5px;
  border-radius: 50px;
  background-color: #869895;
  transform-origin: bottom center;
  bottom: 50%;
}
.jBox-spinner::after {
  height: 24px;
  animation: jBoxLoading 1s linear infinite;
}
.jBox-spinner::before {
  height: 16px;
  animation: jBoxLoading 4s linear infinite;
}
.jBox-loading-spinner .jBox-content {
  opacity: 0.1;
}
.jBox-loading-spinner .jBox-spinner {
  position: absolute;
  margin-top: -30px;
  margin-left: -30px;
  top: 50%;
  left: 50%;
}
[class*=" jBox-animated-"],
[class^="jBox-animated-"] {
  animation-fill-mode: both;
}
.jBox-animated-tada {
  animation: jBox-tada 1s;
}
.jBox-animated-tadaSmall {
  animation: jBox-tadaSmall 1s;
}
.jBox-animated-flash {
  animation: jBox-flash 0.5s;
}
.jBox-animated-shake {
  animation: jBox-shake 0.4s;
}
.jBox-animated-pulseUp {
  animation: jBox-pulseUp 0.25s;
}
.jBox-animated-pulseDown {
  animation: jBox-pulseDown 0.25s;
}
.jBox-animated-popIn {
  animation: jBox-popIn 0.25s;
}
.jBox-animated-popOut {
  animation: jBox-popOut 0.25s;
}
.jBox-animated-fadeIn {
  animation: jBox-fadeIn 0.2s;
}
.jBox-animated-fadeOut {
  animation: jBox-fadeOut 0.2s;
}
.jBox-animated-slideUp {
  animation: jBox-slideUp 0.4s;
}
.jBox-animated-slideRight {
  animation: jBox-slideRight 0.4s;
}
.jBox-animated-slideDown {
  animation: jBox-slideDown 0.4s;
}
.jBox-animated-slideLeft {
  animation: jBox-slideLeft 0.4s;
}
