﻿@-webkit-keyframes ga-cookie-accept-bar-slide-in {
  from {
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes ga-cookie-accept-bar-slide-in {
  from {
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes ga-cookie-accept-bar-slide-out {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
  }
}

@keyframes ga-cookie-accept-bar-slide-out {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
  }
}

.module-ga-cookie-accept-bar {
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
  -webkit-animation-name: ga-cookie-accept-bar-slide-in;
  animation-name: ga-cookie-accept-bar-slide-in;
  background-color: #f5e0bf;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #000;
  font-size: 14px;
  line-height: 1.5;
  padding: 5px 20px;
  position: fixed;
  display: flex;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  align-items: center;
  justify-content: space-around;
}

.module-ga-cookie-accept-bar.state-remove {
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
  -webkit-animation-name: ga-cookie-accept-bar-slide-out;
  animation-name: ga-cookie-accept-bar-slide-out;
}

.module-ga-cookie-accept-bar p {
  margin: 7px 0;
  color: #000;
  padding: 0;
  margin-right: 7px;
}

.module-ga-cookie-accept-bar a {
  color: #000 !important;
  text-decoration: underline !important;
}

.module-ga-cookie-accept-bar .material-icons {
  vertical-align: middle;
  margin-right: 3px;
}

.module-ga-cookie-accept-bar p button:first-child {
  margin-right: 14px;
}

.module-ga-cookie-accept-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  background-color: #f49b00;
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: 14px;
  padding: 7px 21px;
  border-radius: 3px;
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out;
}

.module-ga-cookie-accept-btn:hover {
  -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .14), 0 1px 7px 0 rgba(0, 0, 0, .12), 0 3px 1px -1px rgba(0, 0, 0, .2);
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .14), 0 1px 7px 0 rgba(0, 0, 0, .12), 0 3px 1px -1px rgba(0, 0, 0, .2);
  cursor: pointer;
}

.module-ga-cookie-accept-bar p:first-child {
  width: 520px;
}

.module-ga-cookie-accept-btn.module-ga-cookie-deny-btn {
  background-color: #293f49;
  border-color: #fff;
  display: none;
}