:root {
	--omb-white: #fff;
	--omb-primary-color: #6f73d2;
	--omb-light-gray: #b8b8b8;
	--omb-dark-gray: #666666;
	--omb-light-gray-1: #f6f6f6;
	--omb-light-gray-2: #dddddd;
	--omb-notification-success-bg: #d4edda;
	--omb-notification-success-text: #155724;
	--omb-notification-success-border: #c3e6cb;
	--omb-notification-error-bg: #f8d7da;
	--omb-notification-error-text: #721c24;
	--omb-notification-error-border: #f5c6cb;
	--omb-black: #000;
}

.omb_main-wrapper {
	background: var(--omb-white);
	padding: 10px 20px 0 20px;
	margin-right: 20px;
	margin-top: 20px;
}

.omb_main-wrapper .submit input[type="submit"] {
	background-color: var(--omb-primary-color) !important;
	border-color: var(--omb-primary-color) !important;
	transition: all 0.2s;
}

.omb_main-wrapper .submit input[type="submit"]:hover {
	background-color: #5c60cc !important;
	border-color: #5c60cc !important;
}

.omb_main-wrapper .omb-title {
	font-size: 18px;
	font-weight: 600;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--omb-light-gray-2);
}

.omb_main-wrapper .notice {
	margin: 0 !important;
	border-left: 0;
	border-radius: 5px;
}

.omb_main-wrapper .notice.notice-success {
	color: var(--omb-notification-success-text);
	background-color: var(--omb-notification-success-bg) !important;
	border: 1px solid var(--omb-notification-success-border) !important;
}

.omb_main-wrapper .notice.notice-success .notice-dismiss::before {
	color: var(--omb-notification-success-text);
}

.omb_main-wrapper .notice.notice-error {
	color: var(--omb-notification-error-text);
	background-color: var(--omb-notification-error-bg) !important;
	border: 1px solid var(--omb-notification-error-border) !important;
}

.omb_main-wrapper .notice.notice-error .notice-dismiss::before {
	color: var(--omb-notification-error-text);
}

.switch__wrapper {
	position: relative;
}

.switch__wrapper-label {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 34px;
	height: 18.6px;
	border-radius: 20px;
	background: var(--omb-light-gray-2);
	transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
	vertical-align: middle;
	cursor: pointer;
	-moz-border-radius: 10px;
}

.switch__wrapper-label::before {
	content: "";
	position: absolute;
	top: 3.5px;
	left: 4px;
	width: 11px;
	height: 11px;
	background: #fafafa;
	border-radius: 50%;
	transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.switch__wrapper input {
	opacity: 0;
}

.switch__wrapper input:checked + .switch__wrapper-label {
	background: var(--omb-primary-color);
	transition: all 0.2s;
}

.switch__wrapper input:checked + .switch__wrapper-label::before {
	top: 3.5px;
	left: 19px;
	background: #fff;
}

.switch__wrapper input:checked + .switch__wrapper-label:hover {
	background: #5c60cc !important;
}

.switch__wrapper.display-on {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	padding-left: 40px;
}

.bar__placement {
	display: inline-flex;
	height: 30px;
	width: auto;
	align-items: center;
	justify-content: space-evenly;
	border-radius: 5px;
}

.bar__placement-label {
	background: var(--omb-white);
	height: 100%;
	width: 30px;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	cursor: pointer;
	border-radius: 0;
	border: 1px solid var(--omb-light-gray);
	transition: all 0.5s ease;
	margin: 0 10px 0 0;
	position: relative;
	overflow: hidden;
}

.bar__placement-label:last-child {
	margin: 0;
}

.bar__placement-label span {
	position: absolute;
	background-color: rgba(0, 0, 0, 0.2);
}

.bar__placement-label.top-align span {
	top: 2px;
	left: 2px;
	width: calc(100% - 4px);
	height: 5px;
}

.bar__placement-label.bottom-align span {
	bottom: 2px;
	left: 2px;
	width: calc(100% - 4px);
	height: 5px;
}

.bar__placement-label:hover {
	border-color: #ababab;
}

.bar__placement-label:hover span {
	background-color: #ababab;
}

.bar__placement-option[type="radio"] {
	display: none;
}

.bar__placement-option[type="radio"]#bottom:checked ~ .bottom-align {
	transition: all 0.2s;
	background: var(--omb-primary-color);
	border-color: var(--omb-primary-color);
}

.bar__placement-option[type="radio"]#bottom:checked ~ .bottom-align span {
	background-color: var(--omb-white);
}

.bar__placement-option[type="radio"]#bottom:checked ~ .bottom-align:hover {
	background-color: #5c60cc;
	border-color: #5c60cc;
}

.bar__placement-option[type="radio"]#top:checked ~ .top-align {
	transition: all 0.2s;
	background: var(--omb-primary-color);
	border-color: var(--omb-primary-color);
}

.bar__placement-option[type="radio"]#top:checked ~ .top-align span {
	background-color: var(--omb-white);
}

.bar__placement-option[type="radio"]#top:checked ~ .top-align:hover {
	background-color: #5c60cc;
	border-color: #5c60cc;
}

.range__slider {
	display: flex;
	align-items: center;
	max-width: 300px;
	gap: 15px;
	flex-direction: row-reverse;
}

.range__slider output {
	position: relative;
	font-size: 16px;
	font-weight: 600;
	background-color: var(--omb-primary-color);
	padding: 0 10px;
	border-radius: 5px;
	color: var(--omb-white);
	transform: translateX(24px);
	width: 20px;
	text-align: center;
}

.range__slider output::before {
	content: "";
	width: 6px;
	height: 6px;
	background-color: var(--omb-primary-color);
	position: absolute;
	top: 50%;
	left: -3px;
	transform: translateY(calc(-50% - 1px)) rotate(45deg);
}

.rangeslider--horizontal {
	height: 4px;
	flex: 1;
	box-shadow: none;
}

.rangeslider--horizontal .rangeslider__handle {
	top: -5px;
}

.rangeslider__handle {
	position: relative;
	width: 14px;
	height: 14px;
	background-color: var(--omb-primary-color);
	box-shadow: none;
	background-image: none;
	border: none !important;
}

.rangeslider__handle::after {
	width: 10px;
	height: 10px;
	background-color: transparent;
	line-height: 14px;
	background-image: none !important;
}

.rangeslider__handle:active {
	background-color: var(--omb-primary-color);
	background-image: none !important;
	border: none !important;
}

.rangeslider__fill {
	background-color: var(--omb-primary-color);
	box-shadow: none;
}

.display__value-wrapper {
	border-radius: 4px;
	border: 1px solid var(--omb-light-gray-2);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	padding: 0 10px;
	background-color: var(--omb-light-gray-1);
	height: 30px;
}

.display__value-wrapper .output-value {
	text-align: right;
	border: none;
	color: var(--omb-dark-gray);
}

.display__value-wrapper span {
	display: block;
	text-align: left;
	color: var(--omb-dark-gray);
	font-size: 12px;
	line-height: 16px;
}

.color_field-wrapper {
	display: flex;
	position: relative;
	gap: 15px;
	flex-direction: row-reverse;
	max-width: 300px;
	justify-content: start;
}

.color_field-wrapper .color-box {
	position: absolute;
	top: 0;
	left: 0;
	width: 14px;
	height: 14px;
	padding: 0.5em;
	pointer-events: none;
	border-radius: 0.1em;
	border-radius: 50%;
}

.color_field-wrapper input {
	border: 1px solid var(--omb-light-gray);
	width: 150px;
}

.color_field-wrapper .color_switch-wrapper {
	position: relative;
	width: 28px;
	height: 28px;
}

.pickr .pcr-button {
	opacity: 0;
}

.pcr-app .pcr-interaction .pcr-save {
	padding: 8.6px;
}
