/*dialog*/

.dialogbox {
  position: absolute;
  z-index: 101;
  margin-bottom: 25px;
  border-radius: 15px;
  width: auto;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.dialogboxTitle {
}
.dialogboxTitle span,
.dialogboxClose,
.dialogboxPrev,
.dialogboxNext {
}
.dialogboxTitle span {
  display: block;
  width: 25px;
  height: 25px;
  margin: auto;
}
.dialogConfirm .button-default {
  color: black;
}
.dialogboxBody {
  padding: 0;
  background: #fff;
  min-width: 200px;
}
.dialogboxClose {
  position: absolute;
  right: -4px;
  top: -7px;
  cursor: pointer;
  height: 30px;
  width: 30px;
}
.dialogboxClose:hover {
}
.dialogboxOverlay {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  background: #000;
  z-index: 100;
}
.dialogTips {
  text-align: center;
  font-size: 16px;
  padding: 20px 50px;
  min-width: 200px;
}
.dialogTips img {
  vertical-align: middle;
  margin-right: 10px;
}
.dialogTopTips {
  padding: 5px 20px;
}
.dialogConfirm {
  padding: 10px 50px;
  text-align: center;
}
.dialogConfirm .button {
  margin: 0 15px;
}
.dialogLoading {
  height: 50px;
  width: 50px;
  margin: auto;
}
.dialogboxIframe .dialogboxBody {
  padding: 0;
}
.dialogPrompt {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 8px 15px;
  color: #fff;
  border-radius: 5px;
}

/*button*/

.button-default,
.button-white,
.button-disabled {
  cursor: pointer;
  font-family: "Source Sans 3", sans-serif;
  background-color: #e8e8e8;
  color: black;
  padding: 5px 15px 5px 15px;
  border: 1px solid black;
  align-items: center;
  border-collapse: collapse;
  border-radius: 4px;
  border-style: none;
  box-shadow: #32413c 3.6px 3.6px 1px 0.5px, #fdf8f8 -1.4px -1.4px 30px 0;
  box-sizing: border-box;
  cursor: pointer;
  font-weight: 600;
  justify-content: center;
  justify-self: center;
  line-height: 1rem;
  margin: 6px;
  padding: 5px 0 4px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.2s;
  padding: 9px;
}
.button-default:active {
  position: relative;
  top: 1px;
  box-shadow: #32413c 0.5px 0.5px 1px 0.5px, #fdf8f8 0px 0px 2px 0;
  transition: 0.2s;
  text-shadow: 2px 2px 5px white;
}
.button-disabled,
.button-disabled:hover {
  /*  background: #ccc;
  color: #fff;
  border-color: #ccc;
  cursor: default;*/
}
.button-white {
  cursor: pointer;
  font-family: "Source Sans 3", sans-serif;
  background-color: #e8e8e8;
  color: black;
  padding: 5px 15px 5px 15px;
  border: 1px solid black;
  align-items: center;
  border-collapse: collapse;
  border-radius: 4px;
  border-style: none;
  box-shadow: #32413c 3.6px 3.6px 1px 0.5px, #fdf8f8 -1.4px -1.4px 30px 0;
  box-sizing: border-box;
  cursor: pointer;
  font-weight: 600;
  justify-content: center;
  justify-self: center;
  line-height: 1rem;
  margin: 6px;
  padding: 5px 0 4px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.2s;
  padding: 9px;
}
.button-white:active {
  position: relative;
  top: 1px;
  box-shadow: #32413c 0.5px 0.5px 1px 0.5px, #fdf8f8 0px 0px 2px 0;
  transition: 0.2s;
  text-shadow: 2px 2px 5px white;
}
