/**
 * 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, 40, 136, 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;
    border-color: #45659a !important;
    color: white !important
}
.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-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 .clearfix {
  clear: both;
}

@media (max-width: 520px) { 
    .pure-cookies-notice-wrapper .pure-cookies-notice-container .pure-cookies-notice-content {
        display: block;
        text-align: left;
        font-size: 14px;
        line-height: 1.4em;
    }
    
    .pure-cookies-notice-close-button {
        margin-top: 20px;
        position: relative;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        
    }
}
