#draggable {
  float: left;
  width: 140px;
  height: 140px;
  z-index: 9999;
  border-radius: 10px;
  margin: 0 10px 10px 0;
}

.draggable-img {
  width: 400px;
  height: 100px;
  -webkit-animation: transY 3s infinite;
  animation: transY 3s infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

#draggable.is-pointer-down {
  background: #09f;
  z-index: 2; /* above other draggies */
}

#draggable.is-dragging {
  opacity: 0.7;
}

#draggable {
  left: 15px;
  width: 400px;
  height: 100px;
  cursor: pointer;
  /* border-radius: 50%; */
  text-align: center;
  bottom: 15px !important;
  position: fixed !important;
  background-size: 100% !important;
}

.clik-draggable {
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: red;
  position: absolute !important;
}

#draggable.is-pointer-down {
  z-index: 2; /* above other draggies */
}

#draggable.is-dragging {
  opacity: 0.7;
}

/*show banner*/
.draggable-banner {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  display: none;
  align-items: center;
  justify-content: center;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  /* width: 640px;
	height: 480px; */
  width: 100%;
  height: 100%;
  z-index: 99999;
  position: fixed;
  /* overflow: hidden; */
  text-align: center;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  transition-timing-function: cubic-bezier(
    0.165,
    0.84,
    0.44,
    1
  ); /* easeOutQuart */
}

.banner-show {
  display: flex;
}

.draggable-show {
  margin: auto;
  width: 640px;
  height: 480px;
  position: relative;
}

.draggable-show img {
  width: 100%;
}

.close-banner {
  top: -10px;
  right: -10px;
  z-index: 999;
  cursor: pointer;
  position: absolute;
}

.close-swipe {
  left: 5px;
  bottom: 5px;
  z-index: 999;
  color: #fff;
  font-size: 9px;
  cursor: pointer;
  font-family: arial;
  position: absolute;
}
/*end show*/

.droppable {
  left: 0;
  right: 0;
  bottom: 0;
  top: -75px;
  width: 60px;
  height: 60px;
  z-index: 999;
  margin: 0 auto;
  position: fixed;
  text-align: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5) url("../images/x-close.png") no-repeat scroll
    center center;
}

.activee {
  top: 120px;
  animation: mymove 1s;
  -webkit-animation: mymove 1s; /* Chrome, Safari, Opera */
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  color: #363636;
  border: 1px solid #fcefa1;
}

.hidden {
  display: none;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes mymove {
  0% {
    top: 60px;
  }
  25% {
    top: 150px;
  }
  100% {
    top: 120px;
  }
}

/* Standard syntax */
@keyframes mymove {
  0% {
    top: 60px;
  }
  25% {
    top: 150px;
  }
  100% {
    top: 120px;
  }
}

/* Chrome, Safari, Opera */
@-webkit-keyframes transY {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(0, 20px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* Standard syntax */
@keyframes transY {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(0, 20px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.pin-draggable .close-btn {
  width: 40px !important;
  height: 40px !important;
  position: absolute;
  right: -20px;
  top: -20px;
  cursor: pointer;
  padding: 8px;
}

.kcm__horizontal:before {
  content: "" !important;
}

.kcm__horizontal {
  min-height: 0;
}

.kcm__close {
  display: none;
}