﻿.cookie_sticky {
  top: 0;
  position: fixed;
  z-index: 999999;
  background: #eee;
  border-bottom: solid 1px #f06b5a;
  font-style: italic;
  font-size: 1.3em;
  color: #1a4455;
  height: 70px;
  text-transform: none;
  padding: 10px 15px;
  box-shadow: 0 5px 10px #999;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 870px) {
  .cookie_sticky {
    font-size: 1.25em;
  }
}
@media screen and (max-width: 690px) {
  .cookie_sticky {
    font-size: 1.1em;
    height: 50px;
    line-height: 15px;
    font-weight: 300;
    padding: 0 15px;
  }
}
@media screen and (max-width: 500px) {
  .cookie_sticky {
    font-size: 1.1em;
    height: 60px;
    line-height: 14px;
  }
}
@media screen and (max-width: 321px) {
  .cookie_sticky {
    font-size: .9em;
  }
}
.cookie_sticky_detail {
  text-align: center;
  margin: 0 70px 0 0;
  text-wrap: balance;
 font-size:0.65em;
}
@media screen and (max-width: 690px) {
  .cookie_sticky_detail {
    margin: 0 50px 0 0;
  }
}
@media screen and (max-width: 500px) {
  .cookie_sticky_detail {
    margin: 0 40px 0 0;
  }
}
.cookie_sticky_close {
  position: absolute;
  top: 0;
  right: 0;
  height: 70px;
  line-height: 70px;
  width: 50px;
  background: #f06b5a;
  cursor: pointer;
  text-align: center;
  color: #fff;
  text-indent: 0;
  font-size: 1.8em;
}
@media screen and (max-width: 690px) {
  .cookie_sticky_close {
    height: 50px;
    line-height: 50px;
  }
}
@media screen and (max-width: 500px) {
  .cookie_sticky_close {
    height: 60px;
    line-height: 60px;
    width: 40px;
  }
}
.cookie_sticky_show {
  top: -150px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}