/* default position */
div[class^=ykwrp_] {
  z-index: 100005;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: fixed;
}

.ykth-hide {
  display: none;
}

.ykth-inner {
  font-family: "Open Sans", "Roboto", Segoe UI, sans-serif;
  background: rgb(255, 255, 255);
  color: rgb(29, 29, 29);
  width: 100%;
  height: 100%;
  margin: auto;
  position: relative;
  z-index: inherit;
}

@media (min-width: 768px) {
  .ykth-inner {
    border: 1px solid rgb(153, 153, 153);
    border-radius: 5px;
    /* offset-x | offset-y | blur-radius | spread-radius | color */
    -webkit-box-shadow: -2px -1px 15px 7px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: -3px -2px 30px 14px rgba(0, 0, 0, 0.425);
    box-shadow: -4px -3px 45px 21px rgba(0, 0, 0, 0.35);
    width: 80%;
    height: auto;
    top: 20%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 810px) and (min-height: 1080px) {
  .ykth-inner {
    top: 10%;
  }
}
div[class^=ykwrp_]::before,
div[class^=ykwrp_]::after,
#ykth::before,
#ykth::after {
  clear: both;
}

.ykth-head {
  background: #d61d1d;
  color: rgb(255, 255, 255);
  padding: 20px;
}
.ykth-head b {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.ykth-head p {
  margin: 0 0 0 35px;
  font-size: 14px;
}
.ykth-head svg {
  float: left;
  margin: 0 9px 0 0;
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) 7;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}
.ykth-head i {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  line-height: 13px;
  font-size: 21px;
  font-weight: 700;
  font-style: normal;
  color: rgb(255, 255, 255);
}

.ykth-body {
  padding: 20px;
  font-size: 100%;
  line-height: 1.7;
  text-align: left;
}
.ykth-body p {
  margin: 0 0 10px;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}