  /* Подложка */
  .cookie-notification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(189, 189, 189, 0.12);
    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;
    box-shadow: 0px 0px 14px rgba(0, 57, 181, 0.05);
-webkit-border-radius: .571rem;
-moz-border-radius: .571rem;
border-radius: .571rem;
padding: 1rem 2rem;
    width: 95%;
    position: relative;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .cookie-notification__content p {
    width: 70%;
    margin: 0;
    text-align: left;
    }
    .cookie-notification__content a{
      color: #FF7200;
      margin-bottom: 0;
    }
    .cookie-notification__content a:hover{
      color: #0038B5;
    }
    .cookie-notification__content .content{
      align-items: center;
    }
  .cookie-notification__close {
    position: absolute;
    right: 15px;
  font-size: 35px;
    cursor: pointer;
    color: #0038B5;
-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: #FF7200;
-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;
  }
  .cookie-notification__buttons {
    align-items: center;
    width: 30%;
    justify-content: center;
    }
  .cookie-notification__buttons button:hover{
    background-color: #FF7200;
  }
  #decline-cookies{
    background: #0038B5;
    color: #ffffff;
  }
  #decline-cookies:hover{
    background-color: #FF7200;
  }
  #rkncheckboxbutton, #mrkncheckboxbutton{
    vertical-align: middle;
    margin-right: .5rem;
    cursor: pointer;
}
#rkncheckboxbutton .rkncheck, #mrkncheckboxbutton .rkncheck{
    fill: transparent;
}
#rkncheckboxbutton .rkncheckbox, #mrkncheckboxbutton .rkncheckbox{
    fill: #0038B5;
}
#rkncheckboxbutton:hover .rkncheckbox, #rkncheckboxbutton:hover .rkncheck, #mrkncheckboxbutton:hover .rkncheckbox, #mrkncheckboxbutton:hover .rkncheck{
    fill: #FF7200;
}
#rkncheckboxbutton.checked .rkncheck, #mrkncheckboxbutton.checked .rkncheck{
    fill: #FF7200;
}
@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;
  }
}
@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;
      }
}