/* Array
(
    [theme] => light
    [size] => 1
    [primary] => #3366ff
    [radius] => 2
    [success] => #22bb22
    [error] => #ff5555
    [borderSize] => 1
    [wbg] => #f9f9f9
    [secondary] => #616161
    [disabled] => #aaaaaa
    [border] => #dddddd
    [text] => #111111
    [pHover] => rgba(0,64,255,1)
    [sHover] => rgba(72,72,72,1)
    [suHover] => rgba(26,144,26,1)
    [eHover] => rgba(255,34,34,1)
    [divider] => #dddddd
    [textDark] => #111111
    [textLight] => #eeeeee
)
 */
@import url(http://fonts.googleapis.com/css?family=Roboto:400,400italic,700,700italic);
*[class^=addui-dialog]{
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  font-size: 18px;
}
.addui-dialog-holder {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}
.addui-dialog-overlay {
  background-color: rgba(0,0,0,0.3);
  pointer-events: auto;
}
.addui-dialog-outer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: none;
}
.addui-dialog {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #f9f9f9;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  color: #111111;
  position: relative;
  pointer-events: auto;
  box-shadow:
    0 0 1px rgba(0,0,0,0.25),
    0 0 3px rgba(0,0,0,0.25),
    0 5px 50px rgba(0,0,0,0.5);
  max-width: 90vw;
  max-height: 90vh;
  outline: none;
  font-family: 'Roboto', sans-serif;
}
.addui-dialog-title,
.addui-dialog-close {
  display: none;
}
.addui-dialog-message {
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 16px;
  overflow: auto;
}
.addui-dialog-controls {
  min-height: 50px;
  text-align: right;
}
.addui-dialog-controls > div {
  display: inline-block;
  padding: 0 16px;
  margin: 0 5px;
  font-size: 18px;
  line-height: 50px;
  cursor: pointer;
  color: #3366ff;
  text-transform: uppercase;
  outline: none;
}
.addui-dialog input:not([type=checkbox]):not([type=radio]),
.addui-dialog textarea {
  display: block !important;
  border-radius: 0 !important;
  padding: 4px 2px !important;
  padding-top: 8px !important;
  margin-top: 4px !important;
  margin-bottom: 4px !important;
  width: 100% !important;
  color: #111111 !important;
  background-color: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid #999!important;
  outline: none !important;
}
.addui-dialog input:not([type=checkbox]):not([type=radio]):focus,
.addui-dialog textarea:focus {
  margin-bottom: 3px !important;
  border-bottom: 2px solid #3366ff !important;
  box-shadow: 0 0 0 black;
}
.addui-dialog-form {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  visibility: hidden;
}
.addui-dialog {
  visibility: visible;
}