﻿/* Main styling of the cookie warning bar */
#cookie-bar {
	padding: 15px 45px 15px 45px;
	display: block;
	top: 0;
	bottom: auto;
	width: 100%;
	z-index: 100;
	background-color: rgba(0, 0, 0, .8);
	color: white;
}

#cookie-bar a {
    color: #ffffff;
    display: inline-block;
    border-radius: 3px;
    text-decoration: none;
    padding: 4px 6px;
    margin-left: 40px;
}

#cookie-bar p {
    margin: 0;
    padding-bottom: 4px;
    max-width: 100%;
    text-align: center;
    color: white;
}

#cookie-bar .cb-buttons {
    margin: 0;
    text-align: center;
    max-width: 100%;
    font-family:  'Amaranth', sans-serif;
    color:white;
}
#cookie-bar a.lite {
	color: #39AC37
;
}
#cookie-bar a.lite:visited {
	color: #39AC37
;
}
#cookie-bar a.lite:active {
	color: white
}
#cookie-bar a.lite:hover {
	color: white
}


@media (min-width: 1024px) {
    #cookie-bar p {
        margin: 0;
        padding: 4px 10px 0;
        max-width: 100%;
        white-space:nowrap;
        overflow:hidden;
        
        text-overflow:ellipsis;
        -ms-text-overflow:ellipsis;
        float: left;
    }
    
    #cookie-bar .cb-buttons {
        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis;
        -ms-text-overflow:ellipsis;
        text-align: right;
    }
}

/* Additional positions for the cookie bar*/
#cookie-bar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
#cookie-bar.fixed.bottom {
    bottom: 0;
    top: auto;
}

/* Buttons */
#cookie-bar .cb-enable {
    background: #007700;
}
#cookie-bar .cb-enable:hover {
    background: #009900;
}

#cookie-bar .cb-disable {
    background: #990000;
}
#cookie-bar .cb-disable:hover {
    background: #bb0000;
}

#cookie-bar .cb-policy {
    background: #0033bb;
}
#cookie-bar .cb-policy:hover {
    background: #0055dd;
}