.cookie-bar {
    background: rgba(33, 33, 33, 0.94);
    position: fixed;
    display: flex;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 14px 14px;
    color: white;
    box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.1);
    z-index: 9999999999;
  }

  #cookie-img {
    width: 30px;
    height: 30px;
  }

  #divImg {
    height: 100%;
  }

  .btn {
    width: fit-content;
    line-height: 35px;
    border-radius: 23px;
    background: rgba(0, 0, 0, 0);
    /* text-transform: uppercase; */
    border: 3px solid currentColor;
    font-weight: bold;
    letter-spacing: .05em;
    text-align: center;
    color: currentColor;
    padding: 0 25px;
    transition: .3s;
    cursor: pointer;
  }

  .btn-accept-cookie {
    color: #fff;
    background-color: #1f6eb4;
    border-color: #1f6eb4;
  }

  .btn-decline-cookie {
    color: rgba(33, 33, 33, 1);
    background-color: #ccc;
    border-color: #ccc;
  }

  .modal-header>#acceptCookieCloseContainer:hover {
    cursor: pointer;
  }

  .modal-header>#acceptCookieCloseContainer>.closebar {
    position: absolute;
    width: 20px;
    height: 3px;
    display: block;
    background: rgba(255, 255, 255, 1);
    transition: 600ms ease-in-out;
  }

  .modal-header>#acceptCookieCloseContainer>.closebar.bar1 {
    transform: rotate3d(0, 0, 0.5, 45deg);
    background: rgba(200, 200, 200, 1);
  }

  .modal-header>#acceptCookieCloseContainer>.closebar.bar2 {
    transform: rotate3d(0, 0, 0.5, -45deg);
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.8);
    transition: 300ms ease-in-out;
  }

  .modal-header>#acceptCookieCloseContainer:hover>.closebar.bar1 {
    transform: rotate3d(0, 0, 0.5, -45deg);
  }

  .modal-header>#acceptCookieCloseContainer:hover>.closebar.bar2 {
    transform: rotate3d(0, 0, 0.5, 45deg);
  }

  .modal-open .modal {
    z-index: 999999999999999999999999999999999999999;
  }