/* GDPR Cookie dialog - https://github.com/acoustep/gdpr-cookie/ */
:root {
--font-size-cookie-notice: 16px;
}
.gdprcookie {
	position: fixed;
	font-size: var(--font-size-cookie-notice);
	left: 0px;
	bottom: 0px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: var(--e2);
	background: var(--d_c);
	color: var(--l_c);
}

.gdprcookie h1,
.gdprcookie h2 {
	font-size: 2em;
	margin-bottom: var(--e);
	margin-top: 0px;
}

.gdprcookie h2 {
	font-size: 2em;
	margin-bottom: var(--e);
}
.gdprcookie p {
	margin-bottom: var(--e);
	font-size: var(--font-size-cookie-notice);
}

.gdprcookie a {
	color: var(--s_c);
}

/*postavitev podrobnih*/
.gdprcookie-types{
	display: block;
}

.gdprcookie-save-selected{
	margin-top: var(--e);
	text-align:center;
}

/*close button*/

.gdpr_close{
	position:absolute;
	right:  var(--e2);
	top: var(--e2);
	width:  var(--e2);
	height: var(--e2);
	cursor: pointer;
}

.gdpr_close:after{
	display: block;
	content: ' ';
	height: 2px;
	width: 100%;
	height:2px;
	background: var(--l_c);
	margin-top: 11px;
}

.gdpr_close:hover:after{
	background: var(--s_c);
}

/* GDPR Cookie buttons */

.gdprcookie-buttons{
	text-align: center;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 0px var(--e3); 
	margin-top:var(--e2);
}

.gdprcookie-types button,
.gdprcookie-buttons button {
	font-size: var(--font-size-cookie-notice);
	color: var(--p_c);
	padding: var(--e2);
	border: none;
	border-radius:0;
	margin: 0 ;
	background: var(--d_c);
	cursor: pointer;
	transition: background-color .2s linear, opacity .2s linear;
	text-transform: uppercase;
}

.gdprcookie-buttons button:hover {
	background: var(--d_c);
	color: var(--l_c);
}

.gdprcookie-buttons button:disabled {
	opacity: .2;
}

.gdprcookie-types button.savebutton{
	
}
/* GDPR Cookie types */

.gdprcookie-types ul {
	overflow: hidden;
	padding: 0;
	padding-left: 0;
	margin: var(--e2) 0  var(--e2) 0 ;
	color: var(--l_c);
}

.gdprcookie-types li {
	display: block;
	list-style: none;
	padding: 0;
	margin: 0;
	position:relative;
	margin-bottom: var(--e);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.gdprcookie-types li:last-child {
		margin-bottom: 0px;
}


.gdprcookie-types li span.opis{
	margin-left: var(--e);
	font-size: var(--font-size-cookie-notice);
}

.gdprcookie-types li label:After{
	content: ' -';
}

.gdprcookie-types li label{
	cursor: pointer;
	 padding-left: var(--e3);
	 text-transform: uppercase;
	font-size: var(--font-size-cookie-notice);
}

.gdprcookie-types input[type=checkbox] {

}

/*custom checkbox*/

.gdprcookie-types input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 22px;
  width: 22px;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: var(--e2);
  width: var(--e2);
  background-color: var(--s_c);
  cursor:pointer;
  opacity: 1;
  pointer-events: none;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.gdprcookie-types li:hover input ~ .checkmark {
  background-color: var(--p_c);
}

/* When the checkbox is checked, add a blue background */
.gdprcookie-types li input:checked ~ .checkmark {
  /*background-color: #E03027;*/
   background-color: var(--s_c);
}

.gdprcookie-types li:first-child input:checked ~ .checkmark {
	
	 background-color: var(--d_c);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
   display: block;
   
}

/* Show the checkmark when checked */
.gdprcookie-types li input:checked ~ .checkmark:after {
 
}

/* Style the checkmark/indicator */
.gdprcookie-types li .checkmark:after {
	left: 0px;
	top: 9px;
	width: 0px;
	height: 0px;
	border: solid var(--l_c);
	border-width: 0 0px 3px 0;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(deg);
}


/* Style the checkmark/indicator CHECKED */
.gdprcookie-types li input:checked ~ .checkmark:after {
	left: 8px;
	top: -7px;
	width: 10px;
	height: 25px;
	border: solid var(--l_c);
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}


@media screen and (max-width: 650px) {
	:root {
		--font-size-cookie-notice: 16px;
	}
	.gdprcookie {
	padding: var(--e2);
}
.gdprcookie p {
	margin-bottom: 15px;
}

	.gdprcookie-buttons {
	display: block;
text-align: center;
	margin-top: var(--e);
}

.gdprcookie-types button,
 .gdprcookie-buttons button.gumb,
 .gdprcookie-buttons button {
	display: block;
	margin: 0 var(--e) var(--e) 0
}

.gdprcookie-types ul {
	margin-bottom:10px;
}
}

@media screen and (max-width: 450px) {
		:root {
--font-size-cookie-notice: 16px;
}
}
