body.gin--classic-toolbar {
  padding-block-start: calc(var(--gin-toolbar-y-offset) * 1 + 142px) !important;
}
body .webform-submission-form [data-drupal-messages],
body .webform-submission-form .contextual {
  display: none;
}
body .messages__wrapper {
  left: 10px;
  border-radius: 20px;
  padding: 30px;
  background: white;
  z-index: 200;
  position: fixed;
  top: 230px;
  pointer-events: none;
  opacity: 0;
  /* Starts invisible */
  animation: messagesWrapperfadeIn 0.5s forwards, messagesWrapperfadeOut 0.5s forwards;
  animation-delay: 0s, 3s;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1), /* Lighter, broader shadow */ 0px 2px 5px rgba(0, 0, 0, 0.05);
}
body .messages__wrapper .placeholder {
  display: none;
}
body .ajax-progress.ajax-progress-fullscreen {
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 0;
  opacity: 1;
  background-image: url('../assets/img/loading.gif');
  background-size: 100px;
}
body .com-card {
  display: flex;
  flex-direction: column;
}
body .com-card .desc-wrap {
  flex: 1;
}
body .event-listing .deco.deco-1 {
  right: -110px;
}
@keyframes messagesWrapperfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes messagesWrapperfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Restore semantic text emphasis wiped by assets/css/reset.css (CKEditor uses <em>/<strong>). */
.rte-sty em,
.rte-sty i,
.rte-sty cite,
.rte-sty dfn {
  font-style: italic;
}
.rte-sty strong,
.rte-sty b {
  font-weight: bold;
}
