  * {
      box-sizing: border-box;
  }

  body {
      width: 100%;
      height: 100%;
  }

  .cookie-notification {
      position: fixed;
      background-color: white;
      bottom: 0;
      /* width: 100%; */
      color: black;
      opacity: 0.9;
      padding: 15px;
      border-radius: 20px;
      margin: 20px;
      z-index: 5;
  }

  .cookie-notification_hidden_yes {
      display: none;
  }

  .cookie-notification__header {
      margin-bottom: 10px;
      font-size: 12px;
      font-weight: 600;
  }

  .cookie-notification__body {
      margin-bottom: 10px;
      font-size: 8px;
  }

  .cookie-notification__body p {
      margin-bottom: 7px;
  }

  .cookie-notification__buttons {
      display: flex;
      /* gap: 30px; */
      align-items: center;
      justify-content: center;
  }

  .cookie-notification__button {
      width: 85px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      background-color: #F08A13;
      border: 1px solid transparent;
      border-radius: 5px;
      padding: 5px 5px;
      font-weight: bold;
      font-size: 12px;
      text-decoration: none;
      cursor: pointer;
      user-select: none;
      white-space: nowrap;
      font-family: "Open Sans", sans-serif;

  }