.float {
  position: fixed;
  width: 128px;
  height: 66px;
  bottom: 140px;
  right: 0px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  padding-top: 22px;
  z-index: 50;
}

.float img {
  width: 112px;
  float: left;
  box-shadow: 4px 4px 3px #999;
}

.my-float {
  margin-top: 22px;
}

.zmodal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}
.modal-content {
  position: absolute;
  bottom: 32px;
  right: 32px;
  background-color: none;
  height: 60%;
  width: 400px;
  border-radius: 5px;
  box-shadow: 5px 10px 18px #888888;
}

.ziframe {
  height: 100%;
  width: 100%;
  border: none;
  border-radius: 5px;
}
@media (min-width: 320px) and (max-width: 1024px) {
  .zmodal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 1000px;
    visibility: hidden;
    transform: scale(1.1);
    overflow: scroll;
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
  }

  .modal-content {
    position: absolute;
    top: 0;
    left: 0;
    background-color: none;
    height: 1000px;
    width: 100%;
    border-radius: 5px;
    overflow: scroll;
    box-shadow: 5px 10px 18px #888888;
  }

  .ziframe {
    height: 1200px;
  }
}
.close-button {
  float: right;
  width: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  cursor: pointer;
  border-radius: 0.25rem;
  color: #fff;
  position: absolute;
  right: 2px;
  top: 2px;
}
.close-button:hover {
  background-color: #000;
}
.show-modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
  z-index: 100;
}

#alertWindow {
  display: none;
  text-align: center;
  border: 1px solid #be4747;
  width: 200px;
  height: 80px;
  border-radius: 5px;
  padding: 10px;
  margin: 0 auto;
}
#btnOk,
#btnCancel {
  width: 70px;
}
