/* Default Layout Styles
 * Dont Edit These
 */
@media (max-width:1120px)
{
    .cookie-notification-message
    {
        display: inline-block !important;
    }
}
@media (max-width:860px) and (min-width:770px)
{
    #cookie-notification
    {
        top: 72px;
        position: relative;
    }
}
@media (max-width:770px)
{
    .cookie-notification-message{padding-right:0px !important;}
    .cookie-notification-message p{width:65% !important;}
}
@media (max-width:600px)
{
    .cookie-notification-button{margin-top:13px !important;}
}
@media (max-width:400px)
{
    .cookie-notification-button{margin-top:24px !important;}
}
.cookie-notification-wrapper {
    display: none;
    width: 100%;
    font-size: 16px;
    overflow: auto;
    clear:both;
    background-color: white;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 18px 10px 12px 10px;
    background-color: #e8eeed;
    overflow: hidden;
    display: block;
    position: fixed;
    z-index: 99999;
    top: 0;
}
.cookie-notification-message {
    font-family: 'Arial', sans-serif;
    color: #647f90;
    width: 100%;
    max-width: 1170px;
    margin: 0px auto;
    padding-left: 50px;
    background-image: url('../images/global/cookie.png');
    background-position: 14px 50%;
    background-repeat: no-repeat;
    padding-right: 30px;
    min-height: 35px;
    display: block;
    vertical-align: bottom;
}
.cookie-notification-message p{
    width:80%;
    float:left;
    padding-top: 5px;
}
.cookie-notification-message a{
    font-weight:bold;
}
.cookie-notification-message a:link{
    color: #16a6b6;
}
.cookie-notification-message a:hover{
    text-decoration:none;
    cursor:pointer;
    underline-style:none;
    opacity:0.9;
}
.cookie-notification-link {text-decoration: none; font-weight: 700; color: inherit;}
.cookie-notification-link:hover { color: #AAA; }
/*
min-width: 20%; max-width: 150px
*/
.cookie-notification-button {
    display: block;
    float: right;
    text-align: center;
    background: #00a6b6;
    border: none;
    color: white;
    padding: 5px 10px;
    box-sizing: border-box;
    cursor:pointer;
    border-radius: 7px;
    font-weight: normal;
}
.cookie-notification-button:hover {opacity:0.8;}

/*
* Pulse animation
*/
.animated{
    -webkit-animation-name: bounceIn;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: 10;
    -webkit-animation-timing-function: ease-out;
    -webkit-animation-fill-mode: forwards;
    animation-name: bounceIn;
    animation-duration: 2s;
    animation-iteration-count: 10;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

/*
* Animation for webkit
*/
@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}
    40% {-webkit-transform: translateY(-15px);}
    60% {-webkit-transform: translateY(-5px);}
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-15px);}
    60% {transform: translateY(-5px);}
}

/*
* Adding the animation to our element
*/
.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
}

/* Theme Styles
 * Add your own theme in the same method as the "light" theme
 * .theme-name.cookie-notification-wrapper {}
 * .theme-name .cookie-notification-message {}
 * .theme-name .cookie-notification-link {}
 * .theme-name .cookie-notification-button {}
 */
/* Default Light Theme */
.light.cookie-notification-wrapper {font-size: 14px; }
.light.cookie-notification-message {color: #F1F1F1; }
.light.cookie-notification-button { -moz-box-sizing: border-box; border-radius: 7px;}

/* Default Dark Theme */
.dark.cookie-notification-wrapper {font-size: 14px;}
.dark .cookie-notification-message {color: #F1F1F1; }
.dark .cookie-notification-button { -moz-box-sizing: border-box; border-radius: 7px;}

/* Custom Theme*/
