.uvo-modal {
  border-radius: 3px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 8px 0 rgba(0, 0, 0, 0.12);
  position: absolute;
  background-color: white;
  overflow: hidden;

  display: flex;
  align-items: center;
  flex-direction: column;
}

body.uvo-modal-open {
  overflow: hidden;
}

.uvo-modal-header {
  position: relative;
  background-color: #636363;
  border: 0;
  border-top: 1px solid white;
  border-right: 1px solid white;
  border-left: 1px solid white;
  padding: 10px 8px 10px 20px;
  border-radius: 3px;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  color: white;
  width: 100%;
  flex-shrink: 0;
}

.uvo-modal-header:hover {
  cursor: move;
}

.uvo-modal-header.is-primary {
  background-color: #636363;
}

.uvo-modal-header.is-secondary {
  background-color: white;
}

.uvo-modal-header.is-success {
  background-color: var(--bs-success);
}

.uvo-modal-header.is-danger {
  background-color: var(--bs-danger);
}

.uvo-modal-header.is-warning {
  background-color: var(--bs-warning);
}

.uvo-modal-header.is-info {
  background-color: var(--bs-info);
}


.uvo-modal-header.is-secondary {
  color: #444;
}

.uvo-modal-header.is-small {
  padding: 3px 4px 3px 10px;
}

.uvo-modal-header.is-small .uvo-modal-title {
  font-weight: 500;
  font-size: 13px;
  line-height: 13px;
}

.uvo-modal-header.is-small .uvo-modal-title .uvo-modal-title-icon {

}

.uvo-modal-title {
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
}

.uvo-modal-title-icon {
  border: 0;
  background: transparent;
  color: white;
  display: block;
  float: right;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.2s ease;
  margin: 0;
  padding: 1px 6px 1px 6px;
  border-radius: 3px;
}

.uvo-modal-title-icon:hover {
  cursor: pointer;
  color: #ccc;
}

.uvo-modal-title-icon:focus {
  box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5);
}

.uvo-modal-header.is-secondary .uvo-modal-title-icon {
  color: #444;
}

.uvo-modal-header.is-secondary .uvo-modal-title-icon:hover {
  color: #777;
}

.uvo-modal-body {
  background-color: white;
  padding: 15px 20px 15px 20px;
  font-size: 14px;
  overflow: auto;
  height: 100%;
  width: 100%;
}

.uvo-modal-body-nopad {
  padding: 0 !important;
}

.uvo-modal-footer {
  background-color: white;
  padding: 10px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
}

.uvo-modal-footer.is-small {
  padding: 0;
}

.uvo-modal-footer .uvo-modal-button-pane button {
  margin: 7px 6px 7px 0;
}

.uvo-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.16);
}

.blur {
  -webkit-filter: blur(2px);
  -moz-filter: blur(2px);
  -o-filter: blur(2px);
  -ms-filter: blur(2px);
  filter: blur(2px);
}

@keyframes modalOpen {
  0% {
    opacity: 0;
    transform: translate(0px, 20px);
  }

  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}

@keyframes modalClose {
  0% {
    opacity: 1;
    transform: translate(0px, 0px);
  }

  100% {
    opacity: 0;
    transform: translate(0px, -20px);
  }
}

.uvo-modal.opening {
  animation: modalOpen cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
  animation-iteration-count: 1;
  transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1) 0s;
}

.uvo-modal.closing {
  animation: modalClose cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
  animation-iteration-count: 1;
  transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1) 0s;
}

/* @keyframes blink {
  0% { box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.16), 0 10px 20px 0 rgba(0, 0, 0, 0.12); }
  20% { box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 8px 0 rgba(0, 0, 0, 0.12); }
  40% { box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.16), 0 10px 20px 0 rgba(0, 0, 0, 0.12); }
  60% { box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 8px 0 rgba(0, 0, 0, 0.12); }
  80% { box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.16), 0 10px 20px 0 rgba(0, 0, 0, 0.12); }
  100% { box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 8px 0 rgba(0, 0, 0, 0.12); }
}

.uvo-modal.blinking {
  animation: blink .5s linear infinite;
  animation-iteration-count: 2;
} */

.uvo-modal.transparent-moving {
  background-color: rgba(255, 255, 255, .1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

/* jQuery dialog compat.. */
.ui-front {
  z-index: 1000;
}