HEX
Server: Apache/2.4.41
System: Linux mainweb 5.4.0-182-generic #202-Ubuntu SMP Fri Apr 26 12:29:36 UTC 2024 x86_64
User: nationalmedicaregrp (1119)
PHP: 8.3.7
Disabled: exec,passthru,shell_exec,system,popen,proc_open,pcntl_exec
Upload Files
File: /home/intake/public_html/wwwroot/css/sass/gui/_search-input.scss
/* Search Input */
.search-style-1 {
	width: 190px;
	.input-group {
		> input {
			border-radius: 35px 0px 0px 35px;
		    padding: 8px 10px 8px 20px;
		    border-width: 0;
	        background: #f4f4f4;
		}
		button {
			display: flex;
			align-items: center;
			font-size: 1.1rem;
			border-radius: 0px 35px 35px 0px;
			padding: 8px 15px 8px 10px;
			border-width: 0;
			background: #f4f4f4;
			i[class*="fa-"] {
				font-size: 0.8rem;
			}
		}
	}

	&.search-style-1-lg {
		width: 240px;
		.input-group {
			> input {
				line-height: 2.3;
			}
		}
	}

	&.search-style-1-light {
		.input-group {
			> input {
		        background: #FFF;
		        &:focus {
		        	box-shadow: none;
		        }
			}
			button {
				color: #777;
				background: #FFF;
				&::placeholder { 
					color: #777;
				}
				&:-ms-input-placeholder {
					color: #777;
				}
				&::-ms-input-placeholder {
					color: #777;
				}
			}
		}
	}
}