     /* Подложка */
  .cookie-notification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(130, 130, 130, 0.1);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
    -webkit-align-items: end;
       -moz-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    z-index: 9999999!important;
  }

  .cookie-notification__content {
    background: #ffffff;
    /* -webkit-box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.6); */
    /* -webkit-border-radius: 0.357rem;
-moz-border-radius: 0.357rem;
border-radius: 0.357rem; */
padding: 1rem 2rem;
    width: 95%;
    position: relative;
    text-align: center;
    margin-bottom: 1rem;
  }
  .cookie-notification__content a{
    color: #CDA365;
    margin: 0;
    text-decoration: underline;
    font-size: .9rem;
  }
  .cookie-notification__content a:hover{
    color: #442003;
    text-decoration: none;
  }
  .cookie-notification__content p {
    width: 70%;
    margin: 0;
    text-align: left;
    font-size: .9rem;
    line-height: 1.1rem;
    }
    .cookie-notification__content .content{
      align-items: center;
      flex-wrap: wrap;
    }
  .cookie-notification__close {
    position: absolute;
    right: 15px;
    top: 15px;
font-size: 35px;
    cursor: pointer;
    color: #CDA365;
-webkit-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
  }
  
  .cookie-notification__close:hover {
    color: #442003;
-webkit-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
  }
  .cookie-notification__buttons button {
margin: 0 .5rem;
padding: 0.678rem .833rem;
font-size: .9rem;
border: 2px solid;
}
  .cookie-notification__buttons {
    align-items: center;
    width: 30%;
    justify-content: end;
    padding-right: 2rem;
    
    }
  .cookie-notification__buttons button:hover{
    background-color: #442003;
    border-color: #442003;
  }
  #accept-cookies{
    background-color: #CDA365;
    border-color: #CDA365;
    color: #ffffff;
  }
  
  #decline-cookies{
    background-color: #442003;
    border-color: #442003;
    color: #ffffff;
  }
  #decline-cookies:hover, #accept-cookies:hover {
background: transparent;
border-color: #442003;
color: #442003;
}
  @media only screen and (max-width:1200px){
    .cookie-notification__content p, .cookie-notification__buttons {
      width: 100%;
    }
    .cookie-notification__content p{
      margin-bottom: 1rem;
      text-align: center;
    }
    .cookie-notification__close{
      top:0;
      right: 7px;
    }
    .cookie-notification__buttons {
    justify-content: center;
    padding-right: 0;
    }
  }
  @media only screen and (max-width:600px){
    .cookie-notification__content {
        width: 95%;
    }
    .cookie-notification__buttons button:first-child {
        margin-bottom: 1rem;
      }
    .cookie-notification__buttons button:last-child {
        margin-bottom: 0;
      }
  }