
/*dialog*/

.dialogbox {
  position: absolute;
  z-index: 101;
  border-radius: 8px;
  background-color: #fff;
  overflow: hidden;
}
.dialogboxTitle {
  padding: 1rem 3rem 0 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: move;
}
.dialogboxTitle span, .dialogboxClose, .dialogboxPrev, .dialogboxNext {
  background: url(../img/dialogbox_sprite.png) no-repeat;
}
.dialogboxTitle span {
  display: block;
  width: 25px;
  height: 25px;
  background-position: 0 -62px;
  margin: auto;
}
.dialogboxBody {
  min-width: 320px;
}
.dialogboxClose {
  position: absolute;
  right: 12px;
  top: 12px;
  cursor: pointer;
  height: 30px;
  width: 30px;
}
.dialogboxClose:hover {
  background-position: 0 -30px;
}
.dialogboxOverlay {
  position: absolute;
  left: 0;
  top: 0;
  background: #000;
  z-index: 100;
}
.dialogTips {
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 1.5rem;
  margin-bottom: 1rem;
  min-width: 200px;
}
.dialogTips img {
  vertical-align: middle;
  margin-right: 10px;
}
.dialogTopTips {
  padding: 5px 20px;
}
.dialogConfirm {
  text-align: center;
}
.dialogConfirm .button {
  width: 100%;
}
.dialogLoading {
  background: url(../img/loading_small.gif) no-repeat 50% 50%;
  height: 50px;
  width: 50px;
  margin: auto;
}
.dialogboxIframe .dialogboxBody {
  padding: 0;
}
.dialogPrompt {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 8px 15px;
  background-color: #000;
  background-color: rgba(0, 0, 0, .8);
  color: #fff;
  border-radius: 5px;
}

/*button*/

.button-default, .button-white, .button-disabled {
  border: 1px solid #4200FF;
  background-color: #4200FF;
  color: #fff;
  display: inline-block;
  line-height: 3rem;
  text-align: center;
  cursor: pointer;
}
.button-default:hover {
  color: #fff;
  background-color: #3200c9;
}
.button-disabled, .button-disabled:hover {
  background: #ccc;
  color: #fff;
  border-color: #ccc;
  cursor: default;
}
.button-white {
  border-color: #ddd;
  background: #f7f7f7;
  color: #333;
}
.button-white:hover {
  background: #ddd;
  color: #333;
}
