/**
* http://codepen.io/hagemeier/pen/qOxNrN
**/

.cc_banner-wrapper {
  z-index: 9001;
  position: relative;
}

.cc_container .cc_btn {
  cursor: pointer;
  text-align: center;
  font-size: 0.6em;
  transition: font-size 200ms;
  line-height: 1em;
}

.cc_container .cc_message {
  font-size: 0.6em;
  transition: font-size 200ms;
  margin: 0;
  padding: 0;
  line-height: 1.5em;
}

.cc_container .cc_logo {
  display: none;
}

.cc_container .cc_logo:hover,
.cc_container .cc_logo:active {
  opacity: 1;
}

@media screen and (min-width: 500px) {
  .cc_container .cc_btn {
    font-size: 0.8em;
  }

  .cc_container .cc_message {
    font-size: 0.8em;
  }
}
@media screen and (min-width: 768px) {
  .cc_container .cc_btn {
    font-size: 1em;
  }

  .cc_container .cc_message {
    font-size: 1em;
    line-height: 1em;
  }
}
@media screen and (min-width: 992px) {
  .cc_container .cc_message {
    font-size: 1em;
  }
}
@media print {
  .cc_banner-wrapper,
  .cc_container {
    display: none;
  }
}
.cc_container {
  position: fixed;
  left: 0;
  right: 0;
  top: 35px;
  overflow: hidden;
  padding: 15px 15px 40px;
}

.cc_container .cc_btn {
  padding: 8px 16px;
  background-color: #e3000f;
  position: absolute;
  bottom: 10px;
  left: 15px;
  right: 15px;
  text-align: center;
}

@media screen and (min-width: 500px) {
  .cc_container {
    top: 35px;
	left: initial;
	right: 35px;
    width: 300px;
    padding-bottom: 77px;
	bottom: initial;
  }

  .cc_container .cc_btn {
    right: 15px;
    bottom: 26px;
  }
}
@media screen and (min-width: 768px) {
  .cc_container .cc_message {
    font-size: 1em;
  }
}
.cc_container {
  background: #fff;
  color: #999;
  font-size: 16px;
  /*font-family: "Lato", sans-serif;*/
  box-sizing: border-box;
  border: 1px solid #ccc;
}

.cc_container .cc_btn,
.cc_container .cc_btn:visited {
  color: #fff;
  background-color: #e3000f;
  transition: background 200ms ease-in-out, color 200ms ease-in-out, box-shadow 200ms ease-in-out;
}

.cc_container .cc_btn:hover,
.cc_container .cc_btn:active {
  background-color: #000000;
  color: #fff;
}

.cc_container a,
.cc_container a:visited {
  text-decoration: none;
  color: #e3000f;
  transition: 200ms color;
}

.cc_container a:hover,
.cc_container a:active {
  color: #000000;
}

@keyframes fadeInTop {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.cc_container {
  animation: fadeInTop .6s both;
}
