/* ******************************** ECL message banner ********************************  */

.modal-ecl-message {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  z-index: 9999999;
}

#editionBannerContainer {
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 1rem;
}

.ecl-message {
  background: #F3F6FC;
  border-radius: 7px 0px 0px 7px;
}

.ecl-button {
  font-weight: 400;
  font: normal normal 400 1rem/1.25rem arial,sans-serif;
}

.ecl-icon {
  height: 1.25em;
  width: 1.25em;
}

.ecl-icon--l {
  height: 1.6em;
  width: 1.6em;
}

.ecl-message--info .ecl-message__icon {
  -webkit-margin-end: 0.5rem;
  margin-top: -0.15rem;
}

.ecl-message--info {
  border-color: #0e47cb;
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-left-width: 6px;
}

.ecl-message__close {
  top: 1.2rem;
  right: 0.5rem;
  position: absolute;
  color: #0e47cb;
}

.ecl-message__close:hover {
  box-shadow: 0 0 5px rgba(9, 49, 142, 0.3);
  border-radius: 5px;
}

.ecl-message__content {
  margin-bottom: -1rem;
}

.ecl-message__title {
  margin-bottom: 1rem;
}

.ecl-message__description {
  padding-right: 2rem;
}

.ecl-message__content a {
  color: #0e47cb;
  text-decoration: underline;
}

.ecl-message__content a:hover {
  color: #082b7a !important;
}

.ecl-message__content a:visited {
  color: #510dcd;
}

@supports (display: grid) {
  .ecl-message__close {
    margin-top: -0.6rem;
  }
}

/* *************************************************************************************** */