/**
 * Divas Cookies jquery plugin for Cookie Policy banner stylesheet
 * @author: CodingDivas
 * @date: 2014/10/27
 * @version: 0.2 production
 */
.divascookies {
	position: fixed;
	bottom: 0;
	width: 100%;
	background: #f9fafc;
	color: #636363;
	display: none;
	z-index: 999999;
}

.divascookies > .divascookies-banner-container {
	position: relative;
	overflow: hidden;
	text-align: left;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 auto;
	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.divascookies p.divascookies-banner-text {
	position: relative;
	line-height: 16px;
	font-size: 12px;
	padding: 15px;
}


span.divascookies-policy-link a {
	white-space: nowrap;
}

span.divascookies-policy-link a:hover {
	text-decoration: underline;
    -webkit-transition: color 0.3s ease 0s;
    transition: color 0.3s ease 0s;
}

.divascookies-banner-container > .divascookies-accept-button-container {
	display: inline-block;
	margin-left: 15px;
}


.divascookies-accept-button-container > .divascookies-accept-button-text {
	white-space: nowrap;
	font-size: 18px;
	cursor: pointer;
	background: #0056b4;
	color: #fff;
	padding: 7px 10px;
	position: relative;
    -webkit-transition: background-color 0.3s ease 0s;
    transition: background-color 0.3s ease 0s;
    height: 90px;
    width: 25vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    line-height: 22px;
    text-transform: uppercase;
}

.divascookies-accept-button-container > .divascookies-accept-button-text:hover {
	background: #0072db;
}


