/*куки*/
#cookie-banner {
      position: fixed;
      bottom: 20px;
      left: 20px;
      width: 45%;
      max-width: 480px;
      background: #3b3b3b;
      color: white;
      padding: 15px 20px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.2);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: sans-serif;
      z-index: 9999;
    }

    #cookie-banner p {
      margin: 0;
      font-size: 14px;
      line-height: 1.4;
      flex: 1;
    }

    #cookie-banner a {
      color: white;
      text-decoration: underline;
    }

    #cookie-banner button {
    background: white;
    color: #3b3b3b;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    margin-left: 20px;
    height: 30px;
    flex-shrink: 0;
    line-height: 30px;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 500;
}

    #cookie-banner button:hover {
      background: #e0e0e0;
    }

    @media (max-width: 600px) {
    #cookie-banner {
        width: 100%;
        left: 0;
        bottom: 0;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        z-index: 9999999999;
        border-radius:0;
    }

      #cookie-banner button {
        margin-left: 0;
      }
      #cookie-banner p {
          text-align:center;
      }
    }
/*куки конец*/   