.bm-cookie-wall {
    display: none;
}

.bm-cookie-wall.active {
	display: block;
}

.bm-cookie-wall .bm-cookie-wall-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 999;
    /*backdrop-filter: blur(3px);*/
}

.bm-cookie-wall .bm-cookie-wall-inner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	padding: 30px;
    width: 800px;
	max-height: 80vh;
    border-radius: 10px;
    background-color: #fff;
    z-index: 999;
    overlay: auto;
}

.bm-cookie-wall .bm-cookie-wall-title {
	font-size: 36px;
	margin-bottom: 30px;
}

.bm-cookie-wall .bm-cookie-wall-categories {
	display: none;
    margin-bottom: 30px;
}

.bm-cookie-wall .bm-cookie-wall-category {
    border-radius: 4px;
    background: #f5f5f5;
}

.bm-cookie-wall .bm-cookie-wall-category:not(:last-child) {
    margin-bottom: 15px;
}

.bm-cookie-wall .bm-cookie-wall-category .bm-cookie-wall-category-title {
    position: relative;
    display: block;
    line-height: 50px;
    cursor: pointer;
    margin: 0;
}

.bm-cookie-wall .bm-cookie-wall-category .bm-cookie-wall-category-title:after {
    content: '';
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="15px" width="15px" viewBox="0 0 512 512"><path fill="%231f2732" d="M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z"/></svg>');
    height: 15px;
    width: 15px;
    background-size: 15px;
    display: block;
    position: absolute;
    top: 17px;
    right: 20px;
}

.bm-cookie-wall .bm-cookie-wall-category input {
    display: none;
}

.bm-cookie-wall .bm-cookie-wall-category .bm-cookie-wall-checkbox-toggle-container {
    height: 50px;
    width: 50px;
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.bm-cookie-wall .bm-cookie-wall-category .bm-cookie-wall-checkbox-toggle-inner {
    height: 20px;
    width: 40px;
    border-radius: 15px;
    position: relative;
    background-color: #1f2732;
    transition: background-color .2s ease;
}

.bm-cookie-wall .bm-cookie-wall-category input:checked + label .bm-cookie-wall-checkbox-toggle-inner {background-color: green;}

.bm-cookie-wall .bm-cookie-wall-category .bm-cookie-wall-checkbox-toggle-inner:before {
    content: '';
    height: 14px;
    width: 14px;
    border-radius: 10px;
    background-color: #fff;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: left .2s ease;
}

.bm-cookie-wall .bm-cookie-wall-category input:checked + label .bm-cookie-wall-checkbox-toggle-inner:before {left: calc(100% - 17px);}
.bm-cookie-wall .bm-cookie-wall-category input:disabled + label {cursor: not-allowed;}

.bm-cookie-wall .bm-cookie-wall-category .bm-cookie-wall-category-title {
    font-weight: bold;
    padding-left: 60px;
	user-select: none;
}

.bm-cookie-wall .bm-cookie-wall-category p {
    display: none;
    padding: 0 15px 15px 15px;
}

.bm-cookie-wall .bm-cookie-wall-buttons {
	font-size: 0;
	display: flex;
}

.bm-cookie-wall .bm-cookie-wall-buttons .bm-cookie-wall-deny {
	margin-right: 15px;
}

.bm-cookie-wall .bm-cookie-wall-buttons .bm-cookie-wall-accept-all {
	margin-left: auto;
}

.bm-cookie-wall .bm-cookie-wall-buttons .bm-cookie-wall-save {
	display: none;
}

@media screen and (max-width: 991px) {
    .bm-cookie-wall .bm-cookie-wall-inner {
        width: unset;
        left: 15px;
        right: 15px;
        overflow: auto;
        transform: translateY(-50%);
    }

    .bm-cookie-wall .bm-cookie-wall-buttons {
        flex-direction: column;
    }

    .bm-cookie-wall .bm-cookie-wall-buttons .bm-cookie-wall-deny {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .bm-cookie-wall .bm-cookie-wall-buttons .bm-cookie-wall-accept-all {
        margin-left: unset;
        margin-top: 15px;
    }
}