.block-cookie {
	position: fixed;
	display: block;
	opacity: 1;
	z-index: 1000;
	left: 50%;
	margin-left: -163px;
	bottom: 0;
	background: #f2f2f2;
	border-radius: 6px;
	padding: 18px 20px;
	max-width: 326px;
	font-size: 14px;
	line-height: 1.2;
	box-shadow: rgba(14, 16, 20, 0.2) 0px 1px 2px 0px;
	-webkit-transition: width 0.3s ease-in-out, opacity 1.3s ease-in-out;
	-moz--transition: width 0.3s ease-in-out, opacity 1.3s ease-in-out;
	transition: width 0.3s ease-in-out, opacity 1.3s ease-in-out;
}

.block-cookie.applied {
	display: none;
	opacity: 1;
}

.cblock-title-inner, .cblock-anons-inner, .cblock-items, .block-cookie .cblock-title .back {
	display: none;
}

.cblock-buttons {
	position: relative;
	margin-top: 14px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.cblock-buttons .button {
	padding: 8px 10px 9px;
	min-height: unset;
	min-width: unset;
}

.cblock-buttons .button, .cblock-buttons .link-settings {
	font-size: 16px;
}

.cblock-title {
	font-weight: bold;
	color: #2b353d;	
}

.block-cookie.inner .cblock-title {
	border-bottom: solid 1px #c8c8c8;
	padding-bottom: 10px;
	margin-bottom: 8px;
	cursor: pointer;
	
}

.block-cookie.inner .cblock-title .back {
	margin-right: 5px;
}

.cblock-title, .cblock-title-inner, .cblock-item-title {
	font-size: 18px;
	margin-bottom: 10px;
}

.cblock-title-inner {
	font-size: 22px;
}

.block-cookie.inner .cblock-anons, .block-cookie.inner .cblock-buttons {
	display: none;
}

.block-cookie.inner .cblock-title-inner, .block-cookie.inner .cblock-anons-inner, .block-cookie.inner .cblock-items, .block-cookie.inner .cblock-items .cblock-buttons {
	display: block;
}

.block-cookie.inner .cblock-title .back {
	display: inline-block;
}

.block-cookie.inner {
	max-width: 600px;
	margin-left: -300px;
}

.cblock-anons-inner {
	padding-bottom: 10px;
}

.cblock-items {
	margin: 0;
}

.cblock-items-cont {
	position: relative;
	max-height: calc(100vh - 220px);
}

.cblock-item {
	margin-top: 10px;
	padding-top: 10px;
	border-top: solid 1px #c8c8c8;
	-webkit-transition: height 0.3s ease-in-out;
	-moz--transition: height 0.3s ease-in-out;
	transition: height 0.3s ease-in-out;
}

.cblock-item-title {
	position: relative;
	margin-bottom: 8px;
}

.cblock-item-desc {
	height: 0;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: opacity 0.3s ease-in-out, height 0.3s ease-in-out;
	-moz--transition: opacity 0.3s ease-in-out, height 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out, height 0.3s ease-in-out;
}

.cblock-item.opened .cblock-item-desc {
	height: auto;
	opacity: 1;
}

.cblock-item-title .icon {
	display: inline-block;
	margin-right: 10px;
}

.cblock-item-title .icon .minus {
	display: none;
}

.cblock-item-title .icon .plus {
	display: inline-block;
}

.cblock-item.opened .cblock-item-title .icon .minus {
	display: inline-block;
}

.cblock-item.opened .cblock-item-title .icon .plus {
	display: none;
}

.cblock-item-toggle-link {
	width: calc(100% - 40px);
	cursor: pointer;
}

.cblock-items .cblock-buttons {
	margin-top: 14px;
	padding-top: 15px;
	border-top: solid 1px #c8c8c8;
}

.checkbox-ios {
	display: inline-block;    
	height: 22px;    
	line-height: 22px;  
	margin-right: 10px;      
	position: relative;
	vertical-align: middle;
	font-size: 14px;
	user-select: none;	
}

.cblock-item-title .checkbox-ios {
	position: absolute;
	right: 0;
	top: 0;
}

.checkbox-ios .checkbox-ios-switch {
	position: relative;	
	display: inline-block;
	box-sizing: border-box;			
	width: 44px;	
	height: 22px;
	border: 1px solid rgba(0, 0, 0, .1);
	border-radius: 25%/50%;	
	vertical-align: top;
	background: #d6d5d5;
	transition: .2s;
}
.checkbox-ios .checkbox-ios-switch:before {
	content: '';
	position: absolute;
	top: 1px;
	left: 1px;	
	display: inline-block;
	width: 18px;	
	height: 18px;
	border-radius: 50%;
	background: white;
	box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
	transition: .15s;
}
.checkbox-ios input[type=checkbox] {
	display: block;	
	width: 0;
	height: 0;	
	position: absolute !important;
	z-index: -1 !important;
	opacity: 0 !important;
}
.checkbox-ios input[type=checkbox]:not(:disabled):active + .checkbox-ios-switch:before {
	box-shadow: inset 0 0 2px rgba(0, 0, 0, .3);
}
.checkbox-ios input[type=checkbox]:checked + .checkbox-ios-switch {
	background: limegreen;
}
.checkbox-ios input[type=checkbox]:checked + .checkbox-ios-switch:before {
	transform:translateX(22px);
}
.checkbox-ios-switch-text {
	position: absolute;
	top: 0;
	right: 50px;
	color: #959595;
	font-size: 13px;
}
.checkbox-ios .checkbox-ios-switch-text .text-checked {
	display: none;
}
.checkbox-ios input[type=checkbox]:checked + .checkbox-ios-switch + .checkbox-ios-switch-text, 
.checkbox-ios.checked-forced .checkbox-ios-switch-text {
	color: #238f23;
}
.checkbox-ios input[type=checkbox]:checked + .checkbox-ios-switch + .checkbox-ios-switch-text .text-not-checked {
	display: none;
}
.checkbox-ios input[type=checkbox]:checked + .checkbox-ios-switch + .checkbox-ios-switch-text .text-checked, 
.checkbox-ios.checked-forced .checkbox-ios-switch-text .text-checked {
	display: block;
}
.checkbox-ios.checked-forced .checkbox-ios-switch-text {
	position: relative;
	right: 0;
}
 
/* Hover */
.checkbox-ios input[type="checkbox"]:not(:disabled) + .checkbox-ios-switch {
	cursor: pointer;
	border-color: rgba(0, 0, 0, .3);
}
 
/* Disabled */
.checkbox-ios input[type=checkbox]:disabled + .checkbox-ios-switch {
	filter: grayscale(70%);
	border-color: rgba(0, 0, 0, .1);
}
.checkbox-ios input[type=checkbox]:disabled + .checkbox-ios-switch:before {
	background: #eee;
}
 
/* Focus */
.checkbox-ios.focused .checkbox-ios-switch:before {
	box-shadow: inset 0px 0px 4px #ff5623;
}

.sublink.show-cblock {
	margin-top: 20px;
}

.text .show-cblock {
	display: none;
}

@media screen and (max-height: 700px) {
	.cblock-items-cont {
		overflow-y: scroll;
	}
}

@media screen and (max-width: 767px) {
	.block-cookie {
		max-width: 100%;
	}
	.text .show-cblock {
		display: block;
		position: absolute;
		right: 0;
		bottom: 10px;
		font-size: 12px;
		opacity: 0.8;
	}
}

@media screen and (max-width: 420px) {
	.checkbox-ios-switch-text {
		font-size: 12px;
	}
}