/* --- OLD CUSTOM --- */

.fuzzyResults {
    display: block !important;
}
.form-card__inner {
    overflow: visible !important;
}
.search-names {
    padding: 1em 2em;
    width: 250px;
    background: #eee;
    display: inline-block;
    margin: auto;
    line-height: 1.6;
}
.search-names h3 {
    margin-bottom: 0;
}
.search-names a {
    color: #1da1f2;
}
.form-element {
    max-width: 900px;
    margin: auto;
}
.query-filter {
    position: relative;
}
.auto-complete {
    position: absolute;
    z-index: 1000;
    top: 100%;
    width: 100%;
    background: #fff;
    overflow-y: auto;
    max-height: 500px;
}
.auto-complete__options {
    border: 1px solid rgba(0, 0, 0, .1);
    display: none;
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.auto-complete__options li {
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
}
.auto-complete__options li:hover {
    background: rgba(0, 0, 0, .05);
}
.auto-complete__options li:last-of-type {
    margin-bottom: 0;
}

.form-element.active .auto-complete__options {
    display: block;
}

/* --- OLD CUSTOM --- */



/* --- CHECKBOXES --- */

input {
	transition: all 0.5s;
}

.btn--submit {
	transition: all 0.75s;
}

#form_address button[type="submit"] {
	transition: all 0.75s;
}

input[type="checkbox"], 
input[type="radio"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	flex-shrink: 0;
	flex-grow: 0;
	width: 16px;
	height: 16px;
	padding: 0;
	margin: 0 8px 0 0 !important;
	border: 0;
	background-image: url("../img/icons/icon-catalog-filters-check_false.svg");
	background-position: center;
	background-repeat: no-repeat;
	vertical-align: bottom;
	cursor: pointer;
}

input[type="checkbox"]:checked, 
input[type="radio"]:checked {
	background-image: url("../img/icons/icon-catalog-filters-check_true.svg");
	border: none;
}

input[type="checkbox"]:focus-visible, 
input[type="checkbox"]:hover:not(:disabled), 
input[type="radio"]:focus-visible, 
input[type="radio"]:hover:not(:disabled) {
	box-shadow: 0px 2px 10px rgba(166, 173, 255, 0.8);
}

/*
input[type="checkbox"]:disabled, 
input[type="radio"]:disabled {
	background-image: url("../images/main/checkbox--disabled.svg");
	cursor: not-allowed;
}
*/

input[type="checkbox"]:focus, 
input[type="radio"]:focus {
	outline: none !important;
}

.filter__form-label {
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom: 8px;
}

.filter__form-text {
	font-size: 12px;
	line-height: 14px;
	color: #263238;
}

.btn--submit:disabled {
	background-color: lightgray !important;
	opacity: 0.8;
}

#form_address button[type="submit"]:disabled {
	color: gray;
	background-color: lightgray !important;
	border-color: lightgray;
	opacity: 0.8;
}

/* --- / CHECKBOXES --- */