.simple-dialog {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: row;
  background: #33333333;
  backdrop-filter: blur(3px);
  z-index: 5000;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}
.simple-dialog.animated {
  opacity: 0;
}
@keyframes income {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes income-dlg {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  70% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes outgo {
  0% {
    opacity: 1;
    margin-left: 0;
  }
  99% {
    opacity: 0;
    margin-left: 0;
  }
  100% {
    margin-left: 100000px;
    display: none;
  }
}
@keyframes outgo-dlg {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
.simple-dialog.animated.opened {
  animation: income 0.1s 0s 1 normal forwards;
}
.simple-dialog.animated.opened .dialog {
  animation: income-dlg 0.3s 0s 1 normal forwards;
}
.simple-dialog.animated.closed {
  animation: outgo 0.5s 0s 1 normal forwards;
}
.simple-dialog.animated.closed .dialog {
  animation: outgo-dlg 0.3s 0s 1 normal forwards;
}
.simple-dialog.transparent {
  background: transparent;
}
.simple-dialog.closed {
  overflow: hidden;
  width: 0;
  height: 0;
}
.simple-dialog > .modal,
.simple-dialog > .dialog {
  background: #fff;
  border: 1px solid #eee;
  width: 90%;
  max-width: 900px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  max-height: 100%;
}
.simple-dialog > .modal.wide,
.simple-dialog > .dialog.wide {
  width: 100%;
  max-width: 100%;
  margin: 0 10px;
}
.simple-dialog > .modal.small,
.simple-dialog > .dialog.small {
  max-width: 500px;
}
.simple-dialog > .modal.medium,
.simple-dialog > .dialog.medium {
  max-width: 1200px;
}
.simple-dialog > .modal.mini,
.simple-dialog > .dialog.mini {
  max-width: 350px;
}
.simple-dialog .dialog-header,
.simple-dialog .dialog-body,
.simple-dialog .dialog-footer {
  padding: 1em;
}
.simple-dialog .dialog-header,
.simple-dialog .dialog-footer {
  flex: 0 0 auto;
}
.simple-dialog .dialog-header {
  background: #eeeeee77;
  border-bottom: 1px solid #e4e4e4;
}
.simple-dialog .dialog-title {
  font-size: 1.2em;
}
.simple-dialog .dialog-body {
  flex: 1 1 auto;
  overflow-y: auto;
}
.simple-dialog .dialog-body::-webkit-scrollbar {
  width: 10px;
}
.simple-dialog .dialog-body::-webkit-scrollbar-track {
  background: #eee;
}
.simple-dialog .dialog-body::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}
.simple-dialog .dialog-footer {
  background: #eeeeee77;
  border-top: 1px solid #efefef;
}
.simple-dialog .dialog-footer button {
  margin-right: 0.6em;
}
.simple-dialog .close,
.simple-dialog .dismiss {
  padding: 0 0.6em;
  cursor: pointer;
}
.simple-dialog .ajax-progress-throbber {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ffffff10;
}
.simple-dialog .ajax-progress-throbber .throbber {
  position: fixed;
  left: 50%;
  top: 45%;
  z-index: 99999;
  display: inline-block;
  text-align: center;
  transform-origin: 50%;
  float: none;
  background: none;
  margin: 0;
  padding: 0;
}
.simple-dialog .ajax-progress-throbber .throbber,
.simple-dialog .ajax-progress-throbber .throbber:after {
  width: 50px;
  height: 50px;
  font-size: 50px;
  line-height: 50px;
}
.simple-dialog .ajax-progress-throbber .throbber:after {
  font-family: FontAwesome, sans-serif;
  content: '\f110';
  color: rgba(59, 102, 174, 0.5);
  position: absolute;
  display: inline-block;
  left: 0;
}
.simple-dialog.iframed {
  z-index: 555555;
}
.simple-dialog.iframed > .modal,
.simple-dialog.iframed > .dialog {
  width: 94%;
  max-width: 100%;
  height: 95vh;
}
.simple-dialog.iframed .dialog-body {
  overflow: hidden;
  position: relative;
}
.simple-dialog.iframed .dialog-body iframe {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 4px solid #fdfdfd;
}
.simple-dialog.iframed .dialog-footer {
  text-align: right;
}
@media only screen and (min-width: 0) and (max-width: 767px) {
  .simple-dialog .modal,
  .simple-dialog .dialog {
    width: 100%;
    margin: 15px;
  }
}
.modal-opened,
.dialog-opened {
  overflow: hidden;
  height: 101vh;
}
.views-field-entity-reference-bridge {
  width: 1em;
}
table.advanced-view-table-settings {
  font-size: 0.8em;
  width: 100%;
}
table.advanced-view-table-settings td,
table.advanced-view-table-settings th {
  padding: 4px;
}
table.advanced-view-table-settings th {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: none;
  height: 8em;
  font-size: 10px;
  line-height: 10px;
}
table.advanced-view-table-settings .form-element {
  padding: 3px 5px;
  max-width: 12em;
  font-size: 0.8em;
  min-height: 28px;
  line-height: 16px;
  height: 0;
}
table.advanced-view-table-settings .form-elementselect,
table.advanced-view-table-settings .form-element.form-element--type-select {
  background-position: 97% 98%;
  background-size: 9px;
}
.views-table {
  table-layout: fixed;
  width: 100%;
}
.views-table .td.id,
.views-table .td.check {
  width: 1px;
  white-space: nowrap;
  min-width: 1em;
}
.views-table .td.fill {
  width: 100%;
}
