/**
 * =======================================================
 * Cookies Policy Notification Bar - Joomla! Plugin v3.4.2 - 28-May-2018
 * =======================================================
 * For Joomla! 3.x
 * Author: Yiannis Christodoulou (yiannis@web357.eu)
 * Copyright (C) 2009-2018 Web357. All rights reserved.
 * Website: https://www.web357.eu/
 * Extension's page: https://www.web357.eu/joomla-extensions/cookies-policy-notification-bar
 * Demo: https://demo.web357.eu/joomla/cookies-policy-notification-bar
 * Support: support@web357.eu
 * Last modified: Monday, May 28th, 2018, 2:54:38 PM
 */

/****************************
 Notification Bar and Buttons 
****************************/
.cpnb, 
.cpnb * {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
.cpnb {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 9999999;
	width: 100%;
	margin-top: 0;
	clear: both;
}
.cpnb-outer {
	border-color: #202226;
	border-style: solid;
	background: rgba(32,34,38,0.8);
	color: #F1F1F3;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 12px;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 1000;
}
.cpnb-outer.cpnb-top {
	border-bottom-width: 1px;
}
.cpnb-outer.cpnb-bottom {
	border-top-width: 1px;
}
.cpnb-inner {
	padding: 10px 20px;
	overflow: hidden;
}
.cpnb-message {
	float: left;
	text-align: justify;
}
.cpnb-message a {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px dotted #fff;
}
.cpnb-message a:hover {
	text-decoration: none;
	border-bottom: 1px dotted #F3C13A;
}
.cpnb-buttons {
	float: right;
}
.cpnb-button {
	padding: 4px 8px;
	margin-left: 10px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background-color: #3B89C7;
	color: #fff;
	text-decoration: none;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
	-webkit-transition: 0.25s;
	-moz-transition: 0.25s;
	transition: 0.25s;
	cursor: pointer;
}
.cpnb-button:hover,
.cpnb-button:focus {
	background-color: #3176AF;
	color: #fff;
	-webkit-transition: 0.25s;
	-moz-transition: 0.25s;
	transition: 0.25s;
	text-decoration: none;
}
.cpnb-button-decline {
	margin-left: 10px;
	background: #771F1F;
}
.cpnb-button-decline:hover,
.cpnb-button-decline:focus {
	background: #AF2614;
}
.cpnb-button-cancel {
	margin-left: 10px;
	background: rgb(90, 90, 90);
}
.cpnb-button-cancel:hover,
.cpnb-button-cancel:focus {
	background: rgb(54, 54, 54);
}
.cpnb-button-more-default,
.cpnb-button-more-modal {
	margin-left: 10px;
	background: #7B8A8B;
}
.cpnb-button-more-default:hover,
.cpnb-button-more-modal:hover,
.cpnb-button-more-default:focus,
.cpnb-button-more-modal:focus {
	background: #697677;
}
.cpnb-clear-both {
	clear: both;
}
/****************************
 Ajax 
****************************/
.cpnb-margin {
	margin-bottom: 15px;
}
.cpnb-margin-right {
	margin-right: 15px !important;
}
.cpnb-text-center {
	text-align: center;
}
.cpnb-loading-gif {
	margin: 0 auto;
	width: 80px;
	height: 80px;
	display: block;
	background: transparent url("../icons/loading.gif") no-repeat left center;
}

/****************************
 Ajax Table with served cookies 
****************************/
.cpnb-cookies-table-container table {
	line-height: 1.25;
	border: 1px solid #ccc;
	border-collapse: collapse;
	margin: 0;
	padding: 0;
	width: 100%;
	table-layout: fixed;
}
.cpnb-cookies-table-container table caption {
	font-size: 1.5em;
	margin: .5em 0 .75em;
}
.cpnb-cookies-table-container table tr {
	background-color: #f8f8f8;
	border: 1px solid #ddd;
	padding: .35em;
}
.cpnb-cookies-table-container table th,
.cpnb-cookies-table-container table td {
	padding: .625em;
	text-align: center;
}
.cpnb-cookies-table-container table th.cpnb-cookie-value-heading-col,
.cpnb-cookies-table-container table td.cpnb-cookie-value-col {
	white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.cpnb-cookies-table-container table th {
	font-size: .85em;
	letter-spacing: .1em;
	text-transform: uppercase;
}
@media screen and (max-width: 600px) {
	.cpnb-cookies-table-container table {
		border: 0;
	}
	.cpnb-cookies-table-container table caption {
		font-size: 1.3em;
	}
	.cpnb-cookies-table-container table thead {
		border: none;
		clip: rect(0 0 0 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}
	.cpnb-cookies-table-container table tr {
		border-bottom: 3px solid #ddd;
		display: block;
		margin-bottom: .625em;
	}
	.cpnb-cookies-table-container table td {
		border-bottom: 1px solid #ddd;
		display: block;
		font-size: .9em;
		text-align: right;
	}
	.cpnb-cookies-table-container table td::before {
		content: attr(data-label);
		float: left;
		font-weight: 700;
		text-transform: uppercase;
	}
	.cpnb-cookies-table-container table td:last-child {
		border-bottom: 0;
	}
}

/*.cpnb-enabled-info-txt {}
.cpnb-disabled-info-txt {}
.cpnb-no-cookies-here {}
.cpnb-cookies-table-container {}
.cpnb-cookies-table {}
.cpnb-cookies-are-enabled {}
.cpnb-btn {}
.cpnb-allow-btn {}
.cpnb-delete-btn {}
.cpnb-reload-btn {}
.cpnb-cookies-allowed-by-default {}
.cpnb-disabled-info-txt {}
.cpnb-cookies-are-disabled {}*/

/****************************
 Modal Styling 
****************************/
.cpnb-modal-wrap {
	z-index: 99999999;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow-y: scroll;
	-webkit-transition: all 4s ease-out 0s;
	-moz-transition: all 4s ease-out 0s;
	-ms-transition: all 4s ease-out 0s;
	-o-transition: all 4s ease-out 0s;
	transition: all 4s ease-out 0s;
	overflow: hidden;
}
.cpnb-modal-bg {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: flex-start;
	-ms-flex-align: center;
	align-items: flex-start;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
	padding: 2em
}
.cpnb-modal-inner {
	position: relative;
	width: 100%;
	padding: 2em;
	background-color: #fff;
	z-index: 50000;
	box-shadow: 0 .25em .5em rgba(0, 0, 0, .25);
	min-height: 150px;
	max-height: 650px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
.cpnb-modal--small {
	max-width: 32em
}
.cpnb-modal--medium {
	max-width: 48em
}
.cpnb-modal--large {
	max-width: 64em
}
.cpnb-modal--full {
	max-width: none
}
.cpnb-modal-close {
	position: absolute;
	right: 20px;
	top: 20px;
	cursor: pointer;
	opacity: .5;
	background: url("../icons/close-icon-20x20.png");
	width: 20px;
	height: 20px;
}
.cpnb-modal-close:hover {
	opacity: 1
}
.cpnb-modal-footer {
	height: 60px;
	padding: 10px;
	border-radius: 0 0 4px 4px
}
.cpnb-modal-actions {
	float: right
}

/****************************
 Responsive rules 
****************************/
@media (max-width: 1025px) {
	.cpnb {
		margin-top: 60px;
	}
	.cpnb-message {
		width: 60%;
	}
	.cpnb-buttons {
		margin-top: 8px;
	}
}
@media (min-width: 603px) and (max-width: 1024px) {
	.cpnb {
		margin-top: 65px;
	}
	.cpnb-message {
		width: 60%;
	}
	.cpnb-buttons {
		margin-top: 10px;
	}
	.cpnb-button-more-default,
	.cpnb-button-more-modal {
		margin-top: 10px;
	}
}
@media (max-width: 602px) {
	.cpnb {
		margin-top: 100px;
	}
	.cpnb-message {
		float: none;
		width: 100%;
		display: block;
		clear: both;
		margin-bottom: 15px;
	}
	.cpnb-buttons {
		float: none;
		width: 100%;
		clear: both;
		text-align: center;
		margin-top: 0;
		margin-bottom: 10px;
	}
}