@import url(https://fonts.googleapis.com/css?family=Montserrat:300,400,600,700|Open+Sans:400,600,700&display=swap);
/*** COLOURS ***/
/*** SIZES ***/
/*** DOTDOTDOT ***/
/*** FONTS ***/
.cookieBar {
  height: auto;
  left: calc(50% - 350px);
  position: fixed;
  top: auto;
  width: 285px;
  bottom: -150px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border: 2px solid #fff;
  padding: 10px 20px;
  z-index: 10;
  color: #fff;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.cookieBar.active {
  bottom: 50px;
  -webkit-transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.cookieBar .background {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background: #134053;
}
.cookieBar .content {
  position: relative;
}
.cookieBar .content .text {
  padding-right: 50px;
}
.cookieBar .content .text p {
  opacity: 0.6;
  display: inline;
  color: #fff;
}
.cookieBar .content .text a {
  opacity: 1;
  color: #fff;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.cookieBar .content .text a:hover {
  color: #fbbc43;
}
.cookieBar .closeCookie {
  height: 35px;
  left: auto;
  position: absolute;
  top: 50%;
  width: 35px;
  right: 0;
  cursor: pointer;
  -webkit-transform: translateY(-50%) rotate(0deg);
  -moz-transform: translateY(-50%) rotate(0deg);
  -o-transform: translateY(-50%) rotate(0deg);
  -ms-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.cookieBar .closeCookie:hover {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.cookieBar .closeCookie:before,
.cookieBar .closeCookie:after {
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -o-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  background: #fff;
}
.cookieBar .closeCookie:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -moz-transform: translate(-50%, -50%) rotate(-45deg);
  -o-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media all and (max-width: 1024px) {
  .cookieBar {
    left: 20px;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .cookieBar .background {
    opacity: 1;
  }
}
@media all and (max-width: 768px) {
  .cookieBar {
    left: 0;
    width: 100%;
  }
  .cookieBar.active {
    bottom: 0;
  }
}
/*# sourceMappingURL=cookie_bar.css.map */