#cookie_notification{
    display: none;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    font-size: 14px;
    line-height: 1.29;
    right: 0;
    bottom: 0;
    left: 0;
    max-width: 100%;
    padding: 24px 0;
    background: #fff;
    -webkit-box-shadow: 2px 0 10px rgba(0,0,0,.25);
    box-shadow: 2px 0 10px rgba(0,0,0,.25);
    z-index: 1;
}

#cookie_notification p{
  margin: 0;
  font-size: 14px;
  text-align: left;
  color: $color_text;
}

.align-center{
  align-items: center;
}

.personal-data__info {
  padding-left: 25px;
}

.personal-data__heading{
  font-size: 16px;
  line-height: 1.31;
  margin-bottom: 10px;
  font-weight: 700;
}

.cookie_accept{
  color: #fff;
  background: #ed2324 !important;
  -webkit-transition: background-color .15s;
  transition: background-color .15s;
  font-size: 14px;
  line-height: 1.3;
  padding: 14px 32px 13px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  border: 0px;
}

@media (min-width: 576px){
  #cookie_notification.show{
    display: flex;
  }
  .cookie_accept{
    margin: 0 0 0 25px;
  }
}

@media (max-width: 575px){
  #cookie_notification.show{
    display: block;
    text-align: left;
  }
  .cookie_accept{
    margin: 10px 0 0 0;
  }
}