.cookie-banner-layout{
  z-index: 10000;
  position: fixed;
  bottom: 0;
  width: 100%;
  display:none;
  -webkit-box-shadow: 0px -1px 23px 2px rgba(0,0,0,0.09);
  -moz-box-shadow: 0px -1px 23px 2px rgba(0,0,0,0.09);
  box-shadow: 0px -1px 23px 2px rgba(0,0,0,0.09);
  padding: 10px;
  background-color: #eeeeee;
}

.cookie-banner-layout.is-show-fullscreen{
 display: block;
}

.cookie-banner {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: auto 300px;
 
}
 
.cookie-text {
  color: #131313;
}
.cookie-text p {
  margin: 0;
  color: #fff;
 }
.cookie-link {
  justify-self: end;

 
}

.cookie-link a {

}
 
@media screen and (max-width: 767px) {
  .cookie-banner {
    grid-template-columns: auto;
    gap: 1rem;
  }
  .cookie-link {
     justify-self: start;
  }
} 

.cookie-link .button {
    margin-left: 10px;
    padding: 8px 15px;
    border: none;
    background-color: #ff4747;
    color: #000;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    font-size: 12px;
}
