.cookie-alert {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  border-radius: .5rem;
  transform: translateY(100%);
  transition: all .5s ease-out;
  background: #fff;
  width: 100%;
  max-width: 768px;
  box-shadow: 0 0.125em 0.313em rgba(10, 37, 64, .09), 0 0.063em 0.125em rgba(0, 0, 0, .07);
  border: none;


}
@media (min-width: 768px) {
	  .cookie-alert{ 
	  bottom: 1.25rem;
	  }

}
 .cookie-alert .cookie-alert__btn{
    font-weight: 500;
    display: inline-block;
    border-radius: .25rem;
    padding: .5rem 1.25rem;
    line-height: 1.5em;
    background-color: #007074;
	color:hsla(0, 0%, 100%, .8);
    font-size: 14px;
    color: rgba(255,255,255,.8);
    border: none;

}
 .cookie-alert .cookie-alert__btn:hover{
	 color:#fff;
 }
.cookie-alert__container{
	display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
    align-items: center;
    
}
@media (min-width: 768px) {
	.cookie-alert__container{
		flex-wrap: nowrap;
	}    
}
.cookie-alert__desc {
    display: inline-block;
    font-size: 0.875rem
}
.cookie-alert__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cookie-alert.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 1s
}

.cookie-alert a {
  text-decoration: underline;
  color: #0080A7;
  font-size: .875rem;
  font-weight: 500;
}
.cookie-alert a:hover { color: #005760;}

.cookie-alert .accept-cookies {
  text-transform: none;
}