/**
 * Pure/CookiesNotice
 * Author: Vladimir S. <guyasyou@gmail.com>
 * www.pure-web.ru
 * © 2017
 */
.pure-cookies-notice-wrapper {
  position: fixed;
  z-index: 1000;
  background: rgba(0, 106, 175, 0.8);
  color: #fff;
-webkit-box-shadow:  0px -1px 4px 0px rgba(20, 20, 20, 0.2);
        box-shadow:  0px -1px 4px 0px rgba(20, 20, 20, 0.2);
}
.pure-cookies-notice-wrapper.top {
  top: 0;
  left: 0;
  right: 0;
}
.pure-cookies-notice-wrapper.top.has-toolbar {
  top: 48px;
}
.pure-cookies-notice-wrapper.bottom {
  bottom: 0;
  left: 0;
  right: 0;
}

.pure-cookies-notice-content .btn.btn-primary {
    height: 32px;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: flex-end;
    -ms-grid-row-align: flex-end;
    align-self: flex-end;
    line-height: 10px;
}
.pure-cookies-notice-wrapper .pure-cookies-notice-container .pure-cookies-notice-title {
  font-size: 14px;
}
.pure-cookies-notice-wrapper .pure-cookies-notice-container .pure-cookies-notice-content {
  font-size: 16px;
  line-height: 25px;
  padding: 20px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width:768px) {
  .pure-cookies-notice-wrapper .pure-cookies-notice-container .pure-cookies-notice-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.pure-cookies-notice-close-button,
.pure-cookies-notice-content-info{
  -ms-flex: 0 1 auto;
}
@-webkit-keyframes slideUp {
 0% {
  -webkit-transform:translateY(66px);
  transform:translateY(66px)
 }
 100% {
  -webkit-transform:translateY(0);
  transform:translateY(0)
 }
}
@keyframes slideUp {
 0% {
  -webkit-transform:translateY(66px);
  -ms-transform:translateY(66px);
  transform:translateY(66px)
 }
 100% {
  -webkit-transform:translateY(0);
  -ms-transform:translateY(0);
  transform:translateY(0)
 }
}

.pure-cookies-notice-wrapper
{
  animation-duration: 0.8s;
-webkit-animation-duration: 0.8s;
-moz-animation-duration: 0.8s;
-o-animation-duration: 0.8s;
-webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
-webkit-animation-name: slideUp;
animation-name: slideUp;
}
.pure-cookies-notice-content p {
    color: #ffffff;
}
.pure-cookies-notice-wrapper .pure-cookies-notice-container .pure-cookies-notice-content a {
  color: #fff;
  text-decoration: underline;
}
.pure-cookies-notice-wrapper .pure-cookies-notice-container .pure-cookies-notice-content a:hover {
  color: #e6e6e6;
}
.pure-cookies-notice-wrapper .pure-cookies-notice-container .pure-cookies-notice-content a:active,
.pure-cookies-notice-wrapper .pure-cookies-notice-container .pure-cookies-notice-content a:focus {
  color: #cccccc;
}
/*.pure-cookies-notice-wrapper .pure-cookies-notice-container .pure-cookies-notice-close-button {
  font-size: 14px;
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff;
}
.pure-cookies-notice-wrapper .pure-cookies-notice-container .pure-cookies-notice-close-button:hover {
  color: #e6e6e6;
  border-color: #e6e6e6;
  cursor: pointer;
}
.pure-cookies-notice-wrapper .pure-cookies-notice-container .pure-cookies-notice-close-button:active,
.pure-cookies-notice-wrapper .pure-cookies-notice-container .pure-cookies-notice-close-button:focus {
  color: #cccccc;
  border-color: #cccccc;
}*/
.pure-cookies-notice-wrapper .pure-cookies-notice-container .clearfix {
  clear: both;
}
