#fuzion_ai {

	& > .inside {
		margin-top: 15px;
	}

	.input-group-wrapper {
		margin-bottom: 10px;

		label {
			font-size: 11px;
			font-weight: 500;
			line-height: 1.4;
			text-transform: uppercase;
			display: inline-block;
			margin-bottom: 8px;
			padding: 0;
		}

		.input-group {
			display: flex;
			max-width: 100%;
			justify-content: space-between;
			align-items: center;

			&.attributes-group {
				flex-direction: column;
				align-items: flex-start;
			}

			input {

				&[type="range"] {
					-webkit-appearance: none;
					appearance: none;
					background-color: rgb(221, 221, 221);
					cursor: pointer;
					height: 4px;
					width: 100%;
					background-image: linear-gradient(#007cba, #007cba);
					background-size: 0 100%;
					background-repeat: no-repeat;
					border-radius: 5px;

					&::-webkit-slider-runnable-track {
						background: transparent;
						height: 4px;
					}

					&::-webkit-slider-thumb {
						height: 12px;
						width: 12px;
						border-radius: 50%;
						background: #2271b1;
						cursor: pointer;
						-webkit-appearance: none;
						margin-top: -4px;
					}
				}

				& + input {
					max-width: 64px;
					margin-left: 16px;
				}
			}
		}
	}

	.submit-wrapper {
		display: flex;
		justify-content: right;
		background: #f6f7f7;
		padding: 12px;
		margin: 20px -12px -12px;
		border-top: 1px solid #dcdcde;
	}
}
