.cookie-notice {
  box-sizing: border-box;
  width: 100%;
  max-width: 420px;
  position: fixed;
  z-index: 1000;
  left: 15px;
  bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 4px;
  padding: 20px 25px;
  -webkit-box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
}

.cookie-notice-close {
	display: inline-block;
	width: 15px;
	height: 15px;
	position: absolute;
	top: 6px;
	right: 6px;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="15" height="15" viewBox="0 0 24 24"><path d="M 19.990234 2.9863281 A 1.0001 1.0001 0 0 0 19.292969 3.2929688 L 12 10.585938 L 4.7070312 3.2929688 A 1.0001 1.0001 0 0 0 3.9902344 2.9902344 A 1.0001 1.0001 0 0 0 3.2929688 4.7070312 L 10.585938 12 L 3.2929688 19.292969 A 1.0001 1.0001 0 1 0 4.7070312 20.707031 L 12 13.414062 L 19.292969 20.707031 A 1.0001 1.0001 0 1 0 20.707031 19.292969 L 13.414062 12 L 20.707031 4.7070312 A 1.0001 1.0001 0 0 0 19.990234 2.9863281 z"></path></svg>');
	background-repeat: no-repeat;
	cursor: pointer;
}

@media (max-width: 768px) {
  .cookie-notice {
	width: calc(100% - 30px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

.cookie-notice * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cookie-notice-img {
  width: 40px;
}

@media (max-width: 768px) {
  .cookie-notice-img {
    margin-bottom: 15px;
  }
}

.cookie-notice-text {
  width: 100%;
  padding: 0;
  font: 14px 'Lato', sans-serif;
  line-height: 1.4;
  color: #333333;
}

@media (max-width: 768px) {}

.cookie-notice-text a {
  color: #333333;
  text-decoration: underline;
}

.cookie-notice-text a:visited {
  color: #333333;
}

.cookie-notice-text a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #333333;
}

.cookie-notice-button {
  width: 100px;
  font: 13px 'Lato', sans-serif;
  letter-spacing: 1px;
  border-radius: 3px;
  height: 36px;
  border: none;
  background: #333333;
  /*text-transform: uppercase;*/
  color: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.cookie-notice-button:hover {
  background: #333333;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
/*# sourceMappingURL=smart-cookies.css.map */