.cookies-info {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 30px 20px 20px;
  width: 480px;
  text-shadow: none;
  margin: 30px;
  box-shadow: 0px 4px 20px 0px rgba(8, 8, 8, 0.2);
  z-index: 1000000;
  display: none;
}


.cookies-info>div {
  padding-left: 70px;
  font-size: 15px;
  line-height: 24px;
}

.cookies-info>div p {
  width: 280px;
  font-size: 15px;
  line-height: 150%;
  margin-bottom: 20px;
}

.cookies-info::before {
  background-image: url("images/cookie/cookie.png");
  width: 64px;
  height: 64px;
  display: block;
  content: "";
  float: left;
  margin-right: 15px;
  margin: 8px 0;
}

.cookies-info button {
  cursor: pointer;
  border: 0;
}

.cookies-info .cookies-close:hover {
  opacity: 0.8;
}

.cookies-info .cookies-close {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: transparent;
  position: absolute;
  right: 5px;
  top: 5px;
  font-size: 2em;
  font-weight: normal;
  padding: 0 5px;
}

.cookies-info .cookies-confirm {
  float: right;
  border-radius: 3px;
  background-color: #0066D3;
  color: #fff;
  font-size: 13px;
  padding: 6px 15px;

  position: relative;
  top: -3px;
}

.cookies-info .cookies-confirm::before {
  background-image: url('images/cookie/ok.png');
  width: 14px;
  height: 9px;
  display: inline-block;
  content: "";
  margin-right: 8px;
}

.cookies-info a {
  text-decoration: underline;
  font-weight: normal;
  text-shadow: none !important;
}

/* blue */
.theme-blue {
  background-color: #0066d3;
  color: #fff;
}

.cookies-info.theme-blue .cookies-confirm {
  background-color: #0CA0E7;
}

.cookies-info.theme-blue a:hover,
.cookies-info.theme-blue a:focus {
  color: #1cb4fd;
}

.cookies-info.theme-blue .cookies-confirm:hover {
  background-color: #1cb4fd;
}

.cookies-info.theme-blue .cookies-close {
  color: #fff;
}

.cookies-info.theme-blue a {
  color: #ffffff;
}

/* dark */
.theme-dark {
  background-color: #444;
  color: #fff;
}

.theme-dark button {
  color: #fff;
}

.cookies-info.theme-dark::before,
.cookies-info.theme-blue::before {
  background-image: url("images/cookie/cookie-w.png");
}

/* white */
.theme-white {
  background-color: #f2f2f2;
  color: #111;
}

.cookies-info.theme-white .cookies-confirm:hover {
  background-color: #0f78ea;
}

.cookies-info.theme-white a {
  color: #0066d3;
}

.cookies-info.theme-white a:hover {
  color: #007bff;
}

@media (max-width: 600px) {
  .cookies-info {
    margin: 0;
    width: 100%;
  }

  .cookies-info .cookies-confirm {
    float: left;
    top: 5px;
    margin-top: 15px;
  }

  .cookies-info::before {
    margin: 4px 0;
  }
}