#custom-navbar-div-wrapper {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 500ms;
}

#custom-navbar-div-wrapper.custom-navbar-div-wrapper-calc {
  max-height: 80px;
  overflow: hidden;
  transition: none;
  position: absolute; 
  opacity: 0;
}

#custom-navbar-div {
  padding: 8px;
  background-color: #0C1829;
  color: #fff;
  font-family: 'Radley', serif;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#custom-navbar-div .custom-navbar-div-close-btn {
  cursor: pointer;
  position: absolute;
  right: 24px;
  top: 8px;
}

@media (max-width: 767px) {
  #custom-navbar-div .custom-navbar-div-message {
    padding-right: calc(24px);
    text-align: left;
  }

  #custom-navbar-div .custom-navbar-div-close-btn {
    right: 16px;
  }
}
