.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #222;
    color: white;
    padding: 15px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cookie-banner {
    background-color: var(--cb-bg);
    color: var(--cb-text-color);
    font-size: var(--cb-font-size);
}
#cookie-setting {
	color: var(--cb-text-color);
}
.format-compact {
    margin-top: var(--cb-mt);
    margin-bottom: var(--cb-mb);
    margin-left: var(--cb-ml);
    margin-right: var(--cb-mr);
	border-radius: 10px;
    width: calc(100% - var(--cb-mr)*);
	max-width: var(--cb-max-width);
	left:var(--cb-left);
	right:var(--cb-right);
}
.format-compact .cookie-banner__actions {
	justify-content: flex-end!important;
}
.cookie-banner__actions button {
	/*margin-left: 10px;*/
    color: white;
    border: none;
    padding: 5px 20px;
    border-radius: 5px;
	font-size: 100%;
}
.cookie-banner__actions {
	display: flex;
    gap: 10px;
    flex: 0 0 50%;
    flex-wrap: wrap;
	justify-content: flex-end;
}
.cookie-banner__content {
	flex: 0 0 50%;
}
.cb-btn.accept {
    background-color: var(--cb-btn-color);
    color: var(--cb-btn-text);
	cursor: pointer;
}
.cb-btn.decline {
    background-color: var(--cb-btn-color);
    color: var(--cb-btn-text);
	cursor: pointer;
}
/*settings*/
.category-toggle {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.t-text {
	font-weight: 300;
}
.toggle-txt {
    font-size: 11px;
    line-height: 1.4;
    color: #a2a2a2;
}
.toggle-label {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.toggle-input {
    display: none;
}
.toggle-background {
    background-color: #c6c5c5;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: all ease 0.3s;
}
.toggle-mark {
    width: 20px;
    height: 20px;
    background-color: #f1f1f1;
    box-shadow: 0 0 2px rgba(0, 0, 0, .12), 0 2px 2px rgba(0, 0, 0, .24);
    border-radius: 50%;
    margin: 2px;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: all ease 0.3s;
}
.toggle-input:checked+.toggle-container .toggle-background {
    opacity: .3;
}
.toggle-input:checked+.toggle-container .toggle-mark {
    -webkit-transform: translateX(24px);
    transform: translateX(24px);
}
.toggle-container {
    width: 48px;
    height: 24px;
    border-radius: 100px;
    margin-left: 14px;
    margin-bottom: 0;
    cursor: pointer;
    transition: all ease 0.3s;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}
.cookie-settings-title {
    color: rgb(255 255 255);
    display: flex;
    align-items: center;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
}
.settings-arrow {
	margin-right: 14px;
}
.cookie-settings-title-2 {
	font-weight: 500;
    padding: 0;
    margin: 15px 0 15px;
	font-size: 22px;
}
.cookie-settings-item:first-child { 
border-top: 1px solid rgba(157, 153, 153, .4);
}
.cookie-settings-item {
	border-bottom: 1px solid rgba(157, 153, 153, .4);
	display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	padding: 15px 0 15px;
	/*width: 80%;*/
}
.cookie-settings {
	margin-bottom: 15px;
}
.all_check {
	color: #ffffff;
	font-size: 11px;
}
.settings-item-title {
	cursor: pointer;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.settings-item-text {
	font-weight: 400;
    margin-top: 16px;
    color: rgba(0, 0, 0, .6);
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
	color:#fff;
}
#cookie-accept-2 {
	border: none;
	padding: 5px 20px;
	border-radius: 5px;
	font-size: 100%;
}
.cookie-banner__content {
	margin-bottom: 10px;
}
@media screen and (max-width: 576px) {  
	.cookie-banner__actions {
		justify-content: center;
	}
	.cookie-banner__actions button {
		margin-left: 10px;
	}
}
@media screen and (max-width: 1024px) {  
	.format-compact {
		max-width: 100%;
	}
}