.ce-filter-box select {
    border: 2px solid #3a7d44;
    background-color: transparent;
    padding: 8px 7px;
    border-radius: 5px;
    width: 100%;
    font-size: 9pt;
}

.ce-filter-box {
    margin-bottom: 20px;
    /*max-width: 480px;*/
}

.ce-filter-box h2,
.ce-filter-box h3 {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: bold;
}

.ce-filter-img-checkbox {
    display: inline-block;
    margin-top: 5px;
    margin-right: 5px;
}

.ce-filter-img-checkbox input {
    display: none;
}

.ce-filter-img-checkbox label {
    display: flex;
    border: 2px solid #787878;
    padding: 7px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.ce-filter-img-checkbox label:hover {
    border-color: #69b578;
}

.ce-filter-img-checkbox input:checked~label {
    border-color: #69b578;
    border-width: 3px;
    box-shadow: 0 0 3px 0px #69b578;
}

.ce-filter-img-checkbox img {
    height: 25px;
	width: auto;
}

.ce-filter-checkbox {
    margin-bottom: 10px;
}

.ce-filter-checkbox label {
    display: inline-flex;
    position: relative;
    align-items: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.ce-filter-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.ce-filter-checkbox .checkmark {
    position: relative;
    display: block;
    margin-right: 10px;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.ce-filter-checkbox label:hover input~.checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.ce-filter-checkbox input:checked~.checkmark {
    background-color: #3A7D44;
}

/* Create the checkmark/indicator (hidden when not checked) */
.ce-filter-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.ce-filter-checkbox input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.ce-filter-checkbox .checkmark:after {
    left: 8px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
