body.dialog-no-scroll {
  overflow: hidden;
}
.dialog-mask {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0);
}
.dialog-mask.dialog-mask-transition {
  -moz-transition: background-color 200ms;
  -webkit-transition: background-color 200ms;
  transition: background-color 200ms;
}
.dialog-mask.dialog-mask-active {
  background-color: rgba(0, 0, 0, 0.5);
}
.dialog-mask.dialog-mask-loading:after {
  position: absolute;
  display: block;
  content: "";
  background-image: url("./loading.gif");
  top: 50%;
  left: 50%;
  width: 107px;
  height: 16px;
  margin-left: -107px;
  margin-top: -16px;
}
.dialog-scroll-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  overflow: auto;
}
.dialog-scroll-container .dialog-container {
  position: absolute;
}
.dialog-container {
  z-index: 1000;
  position: fixed;
  min-height: 200px;
  min-width: 400px;
  background-color: white;
  color: #363636;
  border: 1px solid #b0b0b0;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  padding: 1rem;
}
.dialog-container.dynamic {
  top: 50%;
  left: 50%;
}
.dialog-container .dialog-header {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  position: relative;
  color: var(--wp--preset--color--primary);
  min-height: 19px;
}
.dialog-container .dialog-header .dialog-title {
  font-family: var(--wp--preset--font-family--directa-serif-variable);
  font-weight: 800;
  border-left: 10px solid var(--wp--preset--color--primary);
  padding-left: 1rem;
}
.dialog-container .dialog-header .dialog-close {
  position: absolute;
  top: 4px;
  right: 4px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  background: url(/wp-content/plugins/wp-video-lightbox/images/prettyPhoto/default/sprite.png) 2px 1px no-repeat;
  line-height: 20px;
  text-align: center;
  border-radius: 4px;
}

.dialog-container .dialog-header .dialog-close:hover {
  opacity: 0.7
}
.dialog-container .dialog-header .dialog-close:focus,
.dialog-container .dialog-header .dialog-close:active {
  background-color: #e6e6e6;
  background-image: -moz-linear-gradient(top, #cccccc 0%, #ffffff 100%);
  background-image: -webkit-linear-gradient(top, #cccccc 0%, #ffffff 100%);
  background-image: linear-gradient(to bottom, #cccccc 0%, #ffffff 100%);
}
.dialog-container .dialog-header,
.dialog-container .dialog-footer {
  padding: 5px;
}
.dialog-container .dialog-body {
  padding: 0px;
  margin-bottom: 0px;
}
.dialog-container .dialog-body p {
  font-family: var(--wp--preset--font-family--dm-sans);
  margin-top: 0;
}
.dialog-container .dialog-footer {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 41px;
  text-align: right;
}
.dialog-footer a::after {
  margin-left: 0.5rem;
  content: "\f08e";
  font-family: "Font Awesome 6 Pro";
  font-size: 0.9rem;
}
.dialog-container .dialog-footer .dialog-button {
  float: right;
}
.dialog-container .dialog-button {
  text-align: center;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  -moz-transition: all 200ms;
  -webkit-transition: all 200ms;
  transition: all 200ms;
  box-shadow: inset 0 -15px 10px rgba(0, 0, 0, 0.25);
  border: 1px solid #595e89;
  background-color: #4f537a;
  background-image: -moz-linear-gradient(top, #595e89 0%, #45496a 100%);
  background-image: -webkit-linear-gradient(top, #595e89 0%, #45496a 100%);
  background-image: linear-gradient(to bottom, #595e89 0%, #45496a 100%);
  color: #ffffff;
  font-size: 14px;
}
.dialog-container .dialog-button:hover {
  box-shadow: none;
}
.dialog-container .dialog-button:active,
.dialog-container .dialog-button:focus {
  background-color: #4f537a;
  background-image: -moz-linear-gradient(top, #45496a 0%, #595e89 100%);
  background-image: -webkit-linear-gradient(top, #45496a 0%, #595e89 100%);
  background-image: linear-gradient(to bottom, #45496a 0%, #595e89 100%);
}
.dialog-container .dialog-button.dialog-button + .dialog-button {
  margin-right: 5px;
}

.dialog-inner {
  display: flex;
  gap: 1rem;
  margin: 1rem;
}

.dialog-logo img {
  max-width: 100px;
}
