body .cookies-warning {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  box-sizing: border-box;
  padding: 10px;
  background: #fff;
  color: #333;
  font-size: 13px;
  z-index: 600;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
  font-weight: normal;
  display: none;
  font-family: 'Roboto', sans-serif; }
  body .cookies-warning.opened {
    display: block; }
  body .cookies-warning__body {
    line-height: 1.1;
    text-align: center; }
  body .cookies-warning__close {
    cursor: pointer;
    padding: 10px 15px;
    margin-top: 5px;
    font-weight: 600;
    font-size: 12px;
    display: inline-block;
    color: #2db0a2;
    border: 2px solid #2db0a2; }
    body .cookies-warning__close:hover {
      background-color: #2db0a2;
      color: #fff; }
