

/* Start:/search/styles.css?1745586769994*/
.searchTopInput {
        /* Ширина на 100% родительского элемента */
        width: 100%;
        
        /* Внутренние отступы по 10 пикселей */
        padding: 10px;
        
        /* Скругление углов */
        border-radius: 8px;
        transition: 0.3s;
        
        /* Цвет placeholder'а */
        ::placeholder {
            color: gray;
        }
        
        /* Базовый стиль поля */
        border: 1px solid #ccc;
        box-sizing: border-box;
        font-size: 16px; 
        
        /* Убираем стили по умолчанию */
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none; 
        
}

.searchTopInput:focus {
    outline: none;
    -webkit-filter: drop-shadow(12px 12px 30px rgba(255,119,46,0.72));
	filter: drop-shadow(12px 12px 30px rgba(255,119,46,0.72));
	transition: 0.2s linear all;
    transition: 0.3s;
}
/* End */
/* /search/styles.css?1745586769994 */
