.cookie-overlay {
  background: rgba(0, 0, 0, 0.90);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99999;
  bottom: 0;
}
.cookie-overlay .cookie-inner {
  position: fixed;
  width: 500px;
  height: 200px;
  margin: 5% auto; /* Will not center vertically and won't work in IE6/7. */
  left: 0;
  right: 0;
  color: #fff;
  font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}
.cookie-overlay .cookie-inner .logo-cookie {
  background: #fff;
  border-radius: 100px;
  height: 100px;
  width: 100px;
  color: #000;
  font-weight: bold;
  font-size: 45px;
  text-align: center;
  line-height: 100px;
  display: block;
  margin: 10px auto;
}
.cookie-overlay .cookie-inner .logo-cookie span {
  display: inline-block;
  font-size: 25px;
}
.cookie-overlay .cookie-inner .innerCookieText {
  height: 150px;
  overflow: auto;
  font-size: 12px;
  margin-top: 20px;
  font-weight: 100;
  color: rgba(124, 124, 124, 1.00);
}
.cookie-overlay .cookie-inner .innerCookieText a {
  color: rgba(124, 124, 124, 1.00);
  text-decoration: underline;
}
.cookie-overlay .cookie-inner .innerCookieText::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.cookie-overlay .cookie-inner .innerCookieText::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 10px;
}
.cookie-overlay .cookie-inner .innerCookieText::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
}
.cookie-overlay .cookie-inner .innerCookieText::-webkit-scrollbar-track {
  background: none;
  border-radius: 10px;
}
.cookie-overlay .cookie-inner .button {
  padding: 10px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 20px;
  display: block;
  width: auto;
  text-transform: uppercase;
}
.cookie-overlay .cookie-inner .button.green {
  background: rgba(119, 181, 12, 1.00);
  color: #000;
  float: left;
}
.cookie-overlay .cookie-inner .button.red {
  background: rgba(201, 58, 60, 1.00);
  color: #000;
  float: right;
}
@media only screen and (max-width : 560px), only screen and (max-device-width : 560px) {
  .cookie-overlay .cookie-inner {
    width: 90%;
    font-size: 13px;
  }
  .cookie-overlay .cookie-inner .logo-cookie {
    background: #fff;
    border-radius: 50px;
    height: 50px;
    width: 50px;
    color: #000;
    font-weight: bold;
    font-size: 23px;
    text-align: center;
    line-height: 50px;
    display: block;
    margin: 10px auto;
  }
  .cookie-overlay .cookie-inner .innerCookieText {
    color: #fff;
  }
}