/*!
 * jQuery UI Dialog 1.14.1
 * https://jqueryui.com
 *
 * Copyright OpenJS Foundation and other contributors
 * Released under the MIT license.
 * https://jquery.org/license
 *
 * https://api.jqueryui.com/dialog/#theming
 */
.ui-dialog {
  left: 0;
  outline: 0;
  padding: 0.2em;
  position: absolute;
  top: 0;
}
.ui-dialog .ui-dialog-titlebar {
  padding: 0.4em 1em;
  position: relative;
}
.ui-dialog .ui-dialog-title {
  float: left;
  margin: 0.1em 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 90%;
}
.ui-dialog .ui-dialog-titlebar-close {
  height: 20px;
  margin: -10px 0 0;
  padding: 1px;
  right: 0.3em;
  top: 50%;
  width: 20px;
}
.ui-dialog .ui-dialog-content {
  background: none;
  border: 0;
  overflow: auto;
  padding: 0.5em 1em;
  position: relative;
}
.ui-dialog .ui-dialog-buttonpane {
  background-image: none;
  border-width: 1px 0 0;
  margin-top: 0.5em;
  padding: 0.3em 1em 0.5em 0.4em;
  text-align: left;
}
.ui-dialog .ui-dialog-buttonpane button {
  cursor: pointer;
  margin: 0.5em 0.4em 0.5em 0;
}
.ui-dialog .ui-resizable-n {
  height: 2px;
  top: 0;
}
.ui-dialog .ui-resizable-e {
  right: 0;
  width: 2px;
}
.ui-dialog .ui-resizable-s {
  bottom: 0;
  height: 2px;
}
.ui-dialog .ui-resizable-w {
  left: 0;
  width: 2px;
}
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw,
.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw {
  height: 7px;
  width: 7px;
}
.ui-dialog .ui-resizable-se {
  bottom: 0;
  right: 0;
}
.ui-dialog .ui-resizable-sw {
  bottom: 0;
  left: 0;
}
.ui-dialog .ui-resizable-ne {
  right: 0;
  top: 0;
}
.ui-dialog .ui-resizable-nw {
  left: 0;
  top: 0;
}
.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}
body .ui-dialog {
  background: #fff;
  border: none;
  border-radius: 3px;
  box-shadow: 0 7px 12px 0 #323232b3;
  color: #262626;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  padding: 16px 10px 24px;
  text-align: center;
  z-index: 99999;
}
.ui-dialog .ui-dialog-content {
  color: #262626;
  height: auto;
  overflow: unset;
  padding-top: 15px;
  text-align: center;
}
.ui-dialog .ui-dialog-content.ui-widget-content.no-space {
  height: auto;
}
.ui-dialog .ui-dialog-titlebar {
  background: #0000;
  border: none;
  color: #000;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 22px;
  font-weight: 400;
  height: 38px;
  margin: 2px 2px 0;
  padding: 0;
  position: static;
}
.ui-dialog .ui-dialog-titlebar .ui-dialog-title {
  width: 100%;
}
.ui-dialog .ui-dialog-titlebar-close {
  border: none;
  cursor: pointer;
  height: 19px;
  overflow: hidden;
  position: absolute;
  right: 15px;
  top: 22px;
  width: 19px;
}
.ui-dialog .ui-dialog-titlebar-close,
.ui-dialog .ui-dialog-titlebar-close:hover {
  background-image: url(/static/images/icons/negative.svg);
  background-size: 100%;
}
body .ui-widget-header {
  background: #fff;
  border: none;
}
body .ui-dialog .ui-widget-content {
  background: #fff;
  border: none;
  color: #666;
  height: 100%;
}
.ui-dialog .ui-dialog-buttonpane {
  background: #0000;
  border: none;
  text-align: center;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
  padding-top: 8px;
  width: 100%;
}
.ui-dialog .ui-dialog-buttonpane button {
  border: none;
  border-radius: 2px;
  font-family: 'Nunito Sans', sans-serif;
  height: 40px;
  margin: 0;
  text-transform: uppercase;
  width: 190px;
}
.ui-dialog .ui-dialog-buttonpane button:first-of-type {
  background: #e6e6e6;
  color: #999;
}
.ui-dialog .ui-dialog-buttonpane button:last-of-type {
  background: #0dc166;
  color: #fff;
}
.ui-dialog .ui-dialog-buttonpane button:hover:last-of-type {
  background: #22d47a;
}
.ui-widget-overlay {
  background: #0000;
}
.ui-dialog .radio-input-label {
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 18px;
  margin: 5px;
  padding: 5px 10px;
  text-align: center;
}
.ui-dialog .radio-input:checked + .radio-input-label {
  background-color: #00c3cf;
  border: none;
  color: #fff;
}
