/*cookies bar*/
#cbar{
		position: fixed;
		width: calc(100%);
		background-color: rgb(44, 43, 48);
		color:white;
		bottom: 0;
		left: 0;
		z-index: 999;
		padding: 1.5em 4em 2.5em 4em;
		margin: 0;
	}.cbtn{
		float: right;
		padding: 1em 2em;
		width:200px;
		font-size: 1.1em;
		margin: 1em;
		text-align: center;
		cursor: pointer;
	}#cacceptall{
		background-color: #fff;
		color: rgb(44, 43, 48);
		font-weight: bold;
	}#cmanage{
		border:solid 1px #fff;
		color: #fff;
		text-decoration: none;
	}#cbar #desc{
		float: left;
	}#cbtns{
		margin: 0.5em 0 0 0;
	}.cbtn:hover{
		text-decoration: underline;
	}#cbar br{
		display: none;
	}
@media screen and (max-width: 1239px){
	#cbar #desc{
		width:40%;
	}#cbar #ctbns{
		width:60%;
	}#cbar br{
		display: block;
	}.cbtn{
		padding: 0.75em 2em;
	}#cbar h1{
		font-size: 1.6em;
	}
}

@media screen and (max-width: 768px){
	.cbtn + .cbtn{
		margin-top: 0;
	}#cbar br{
		display: block;
	}

}

@media screen and (max-width: 500px){
	#cbar #desc, #cbar #ctbns{
		width:100%;
	}#cbar{
		padding: 1.5em 2em 2.5em 2em;
	}.cbtn{
		max-width:calc(50% - 1em);
		font-size: 0.9em;
		padding: 0.75em 1em;
	}.cbtn{
		margin:0 0.5em;
	}#cbtns{
		margin: 1em -0.5em 0 -0.5em;
	}
}

@media screen and (max-width: 360px){
	.cbtn{
		margin:0;
		max-width: 100%;
		width:100%;
	}.cbtn + .cbtn{
		margin-top: 1em;
	}
}
/*manage page*/
	#cmanagep section + section{
							border-top:solid 1px rgba(0,0,0,0.1);
						}*, *:before, *:after {
  box-sizing: border-box;
}
.toggle {
  cursor: pointer;
  display: inline-block;
}
.toggle-switch {
  display: inline-block;
  background: #ccc;
  border-radius: 16px;
  width: 58px;
  height: 32px;
  position: relative;
  vertical-align: middle;
  transition: background 0.25s;
}
.toggle-switch:before, .toggle-switch:after {
  content: "";
}
.toggle-switch:before {
  display: block;
  background: linear-gradient(to bottom, #fff 0%, #eee 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 4px;
  left: 4px;
  transition: left 0.25s;
}
.toggle:hover .toggle-switch:before {
  background: linear-gradient(to bottom, #fff 0%, #fff 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}
.toggle-checkbox:checked + .toggle-switch {
  background: #56c080;
}
.toggle-checkbox:checked + .toggle-switch:before {
  left: 30px;
}
.toggle-checkbox {
  position: absolute;
  visibility: hidden;
}.toggle-label {
  margin-left: 5px;
  position: relative;
  top: 2px;
}label.toggle{
	display: block;
	float: right;
	width: 80px;
	clear: none;
	margin-top: 2em;
}section .desc{
	float: left;
	width:calc(100% - 100px);
}#cmanagep section{
	width: 100%;
	clear: both;
}#csave{
	float: right;
	background-color: rgb(44, 43, 48);
	color: #fff;
	padding: 0.75em 2em;
	font-size: 1.1em;
	cursor: pointer;
}#cmanagep a{
	color: #fff;
	text-decoration: none;
}#cmanagep a:hover{
	text-decoration: underline;
}