


#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%;
  
}

#alert-bar a{
  color: #fff;
  background: var(--wp--preset--color--coral-pink);
  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;
  display: flex;
  
}



#alert-bar a:hover{
  background: var(--wp--preset--color--soft-teal);
  color: var(--wp--preset--color--deep-ocean);
}

#alert-bar:hover .close-alert path{
  stroke: var(--wp--preset--color--deep-ocean)
  
}

#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%;
  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{
    
    width: 20px;
    height: 20px;
  }
}
  
  
@media only screen and (max-width: 768px) {
  #alert-bar a{padding-right:55px; text-align: left; font-weight: normal}
}
