input.ui-autocomplete-loading,select.ui-autocomplete-loading {
  	background: white url('/assets/plugins/jquery-ui/images/ui-anim_basic_16x16.gif') right center no-repeat !important;
}
.ui-autocomplete {
  	max-height: 400px;
  	overflow-y: auto;
  	/* prevent horizontal scrollbar */
  	overflow-x: hidden;
  	z-index:2000;
}
/* IE 6 doesn't support max-height
* we use height instead, but this forces the menu to always be this tall
*/
* html .ui-autocomplete {
  	height: 400px;
}		

.with-errors {
  display:none; 
}

.has-error .with-errors {
  display: block;
}

/* Обводка для всего блока чекбокс + текст */
.form-check {
    border: 2px solid #e2001a; /* красная рамка */
    border-radius: 8px;         /* закругленные углы */
    padding: 10px 15px;         /* внутренние отступы */
    margin-bottom: 10px;        /* отступ между блоками */
    transition: all 0.3s ease;  /* плавное наведение */
    background-color: #fff;     /* фон */
}

/* Эффект при наведении */
.form-check:hover {
    box-shadow: 0 0 10px rgba(226, 0, 26, 0.5); /* легкая тень */
    border-color: #b50015;                        /* темнее рамка */
}

/* Чекбокс и текст остаются прежними */
.form-check-input {
    width: 25px;
    height: 25px;
    border: 2px solid #e2001a;
    cursor: pointer;
    accent-color: #e2001a;
}

.form-check-label {
    font-weight: bold;
    font-size: 1.1em;
    color: #333;
    margin-left: 10px;
    cursor: pointer;
}


