

    #footer-cookie,
    #footer-cookie * {
      box-sizing: border-box;
    }

    #footer-cookie {
      display: none;
      position: fixed;
      font-family: arial, verdana;
       font-size: 20px;
      bottom: 40%;
      left: 15%;
      width: 70%;
      height: 35%;
       border: 2px solid #000000;
      padding-left: 20px;
      padding-right: 20px;
      line-height: 40px;
      background: #ACACAC;
      color:#121212;
      animation-name: example;
  <!-- animation-duration: 3s;    -->
    }

    #footer-cookie a {
      color: #fff;
    }

    #footer-cookie #description {
      float: left;
    }

    #footer-cookie #accept {
      float: right;
    }

    #footer-cookie #accept a {
      border: 2px solid #000000;
       background: #008000;
      text-shadow: 3px 3px #1F1F1F;
      padding: 5px 10px;
      text-decoration: none;

    }

    @media (max-width: 3200px) {
      #footer-cookie {
        padding-top: 30px;
        padding-bottom: 30px;
        line-height: inherit;
        height: auto;
      }


@keyframes example {
  0%   {background-color: red;}
  25%  {background-color: yellow;}
  50%  {background-color: blue;}
  100% {background-color: green;}
}




      #footer-cookie #description {
        width: 100%;
      }

      #footer-cookie #accept {
        width: 100%;
        margin-top: 15px;
        font-size: 30px;

      }

      #footer-cookie #accept a {
        width: 100%;
        display: block;
        text-align: center;
      }
    }
