/*================================
ALERT - COOKIE
==================================*/
.alert-wrapper-cookie .alert-container {
  display: none;
  width: 540px;
  min-height: 75px;
  background: #FFF;
  padding: 14px 60px 12px 17px;
  position: fixed;
  right: -600px;
  bottom: 0;
  border: 1px solid rgba(0,0,0,0.06);
}
.alert-wrapper-cookie.show-alert .alert-container {
  display: block;
  z-index: 999999999;
  -webkit-animation: cookiemagic 1.2s ease 4.5s forwards;
          animation: cookiemagic 1.2s ease 4.5s forwards;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

@-webkit-keyframes cookiemagic {
  100% { right: 0; }
}
@keyframes cookiemagic {
  100% { right: 0; }
}

.alert-wrapper-cookie .alert-container .alert-interior { position: relative; }
.alert-wrapper-cookie .alert-container .alertDesc {
  position: relative;
  color: #464646;
  font-size: 14px;
  line-height: 20px;
  font-family:'Embedded-DINWebPro', 'DIN Next W01 Regular', Arial, sans-serif;
}
.alert-wrapper-cookie .alert-container .alertDesc a { text-decoration: underline; }
.alert-wrapper-cookie .alert-container .close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  background: url(/includes/client_public/alert-close.png) center no-repeat;
  cursor: pointer;
}
.alert-wrapper-cookie .alert-container .close:hover { background-color:rgba(0,0,0,0.1); }

@media only screen and (max-width: 767px){
  .alert-wrapper-cookie .alert-container {
    padding-left: 18px;
    width:100%;
    max-width: 600px;
  }
}