body {
	background-image: url(1pic/bmb-background.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

.text {
	position: absolute;
	bottom: 10%;
	left: 10%;
	color: #9A9DA5;
	font-family: sans-serif;
	line-height: 1.5;
	font-size: 20px;
}

.text-page {
	bottom: 10%;
	left: 10%;
	color: #9A9DA5;
	font-family: sans-serif;
	line-height: 1.5;
	font-size: 20px;
	padding: 40px;
	background: #fff;
	opacity: 0.6;
	margin: 40px;
	border-radius: 20px;
}

a {
	color: #D4C4AC;
}

a:hover {
	color: #000;
}

.cookie-bar {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background: grey;
  color: white;
  font-size: 14px;
  font-family: "Lato", sans-serif;
  font-weight: 100;
  transition: .8s;
  -webkit-animation: slideIn .8s;
          animation: slideIn .8s;
  -webkit-animation-delay: .8s;
          animation-delay: .8s;
}
.cookie-bar .message {
  white-space: nowrap;
}
@media (max-width: 767px) {
  .cookie-bar .message {
    display: none;
  }
}
.cookie-bar .mobile {
  display: none;
}
@media (max-width: 767px) {
  .cookie-bar .mobile {
    display: inline-block;
  }
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideIn {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.close-cb {
  border: none;
  color: white;
  background: #990000;
  position: absolute;
  display: inline-block;
  right: 10px;
  top: 0;
  cursor: pointer;
  border-radius: 3px;
  box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.2);
  line-height: 30px;
  height: 30px;
  width: 30px;
  font-size: 16px;
  font-weight: bold;
}
.close-cb:hover {
  background: #cc0000;
}

.checkbox-cb {
  display: none;
}
.checkbox-cb:checked + .cookie-bar {
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}
