body {
  background: #e6ecfc;
}
a,
abbr,
button,
h1,
h2,
h3,
h4,
h5,
h6,
label,
p,
small,
span {
  font-smoothing: auto !important;
  -webkit-font-smoothing: auto !important;
}
.center {
  text-align: center;
}
.expand {
  width: 100%;
}
.aligner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.aligner.nointerface {
  position: absolute;
  width: 100%;
}
.aligner-item--top {
  align-self: flex-start;
}
.aligner-item--bottom {
  align-self: flex-end;
}
.MuiButton-root.Mui-disabled {
  border: 1px solid rgba(0, 0, 0, 0.23);
}
.actionsButtonsContainer > :not(:first-child) {
  margin-left: 8px;
}
.flatButtonStyle {
  font-size: 1.3rem !important;
  font-weight: 400 !important;
  height: 26px !important;
  padding: 0 0.34em !important;
  text-transform: none !important;
}
[data-tooltip] {
  position: relative;
}
[data-tooltip]:after {
  word-wrap: break-word;
  background: rgba(97, 97, 97, 0.9);
  border-radius: 4px;
  bottom: 0;
  color: #fff;
  content: attr(data-tooltip);
  font-size: 1.3rem;
  left: 100%;
  line-height: 1.4em;
  opacity: 0;
  padding: 4px 8px;
  pointer-events: none;
  position: absolute;
  -webkit-transition: opacity 0.75s ease-in-out;
  width: max-content;
}
[data-tooltip]:hover:after {
  opacity: 1;
}
.CarouselItem {
  height: 500px;
  width: 100%;
}
.blink {
  animation: blink-animation 2s steps(20, start) infinite;
  -webkit-animation: blink-animation 2s steps(20, start) infinite;
}
@keyframes blink-animation {
  0% {
    background-color: #e6e3ff;
  }
  50% {
    background-color: #cdc8ff;
  }
  to {
    background-color: transparent;
  }
}
@-webkit-keyframes blink-animation {
  0% {
    background-color: #c1ddc3;
  }
  50% {
    background-color: #8bde90;
  }
  to {
    background-color: transparent;
  }
}
