


#alert-bar{
  
  height: 0;
  opacity: 0;
  overflow: hidden;
  display: none;
  transition: height 0.3s ease, opacity 0.3s ease;
  
  position:fixed;
  bottom:0;
  z-index: 9999;
  width: 100%;
  text-align: center;
  display: flex;
}

#alert-bar > *{
  color: #fff;
  background: #004775;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(1rem, calc(1rem + 0.139vw), 1.25rem);
  font-weight: 800;
  line-height: 1.4;
  transition: all 0.3s ease;
  padding: clamp(1rem, calc(1rem + 0.333vw), 1.5rem) clamp(1.5rem, calc(1.5rem + 0.208vw), 1.875rem);
  text-align: center;
  
  
}

#alert-bar  a{
  color: #fff;
  text-decoration: none;
  
}


#alert-bar a:hover{
  background: #004775;
}

#alert-bar .alert-wrapper{
  margin-left: auto !important;
  margin-right: auto !important;
  
}

#alert-bar .close-alert{
  position:absolute;
  right: clamp(1.5rem, calc(1.5rem + 0.208vw), 1.875rem);
  top: 0px; 
  height:100%;
  padding:0;
  cursor: pointer;
}

@media only screen and (min-width: 768px) {
  
  #alert-bar a{
    display:flex; 
    justify-content: center;
    gap: 20px;
    align-items: center;
    align-content: center;}
    #alert-bar a:after{
    content: url("data:image/svg+xml,%3Csvg width='23' height='18' viewBox='0 0 23 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 9H20.9737' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.1316 1.63086L21.5 8.99928L14.1316 16.3677' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
    width: 20px;
    height: 20px;
  }
}
  
  
@media only screen and (max-width: 768px) {
  #alert-bar a{padding-right:55px; text-align: left; font-size: 14px;}
  #alert-bar .close-alert{right:10px;}
}
