/*================================
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: 999;
}

/* @T240551 Apply slide-in animation to alert container at larger breakpoints only */

@media only screen and (min-width: 768px){
  .alert-wrapper-cookie.show-alert .alert-container {
    -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); }

/* @T240551 Hide mobile alert at larger breakpoints */
.alert-wrapper-cookie .alert-container .alertDesc .mobile {
  display: none;
}

@media only screen and (max-width: 767px) {
  .alert-wrapper-cookie .alert-container {
    padding-left: 18px;
    width:100%;
    max-width: 600px;
  }
  .alert-wrapper-cookie.show-alert .alert-container {
    right: 0;
   /* z-index: 999999999;*/ /* T280922 restored previous z-index to avoid conflict with certain homepage slideshow elements, etc. (changed in T255681) */
  }
  .alert-wrapper-cookie .alert-container .alertDesc .default {
    display: none;
  }
  .alert-wrapper-cookie .alert-container .alertDesc .mobile {
    display: inline;
  }
}