
/* Version 0.4.9 */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

input, select {
	padding: 0 0.4rem 0 0.4rem;
}

select {
	background-color: #ffffff;
	border-radius: 2px;
	border: 1px solid #8f8f9d;
}

.notransition {
	-webkit-transition: none !important;
	-moz-transition: none !important;
	-o-transition: none !important;
	transition: none !important;
	/*transition: visibility 0s, opacity 500ms linear !important;*/
}

.trans-opacity {
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}

.trans-opacity-form-move {
	-webkit-transition: opacity 0.5s ease-in-out, top 0.2s ease, left 0.2s ease;
	-moz-transition: opacity 0.5s ease-in-out, top 0.2s ease, left 0.2s ease;
	-o-transition: opacity 0.5s ease-in-out, top 0.2s ease, left 0.2s ease;
	transition: opacity 0.5s ease-in-out, top 0.2s ease, left 0.2s ease;
}

.animated {
	--angle: 0deg;
	/* background-image: linear-gradient(var(--angle), #ff00f0, #0050ff) !important; */
	background: linear-gradient(var(--angle), #ff0922, #0e0e0e) !important;
	animation: 10s rotate linear infinite;
}

@keyframes rotate {
    to {
        --angle: 360deg;
    }
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.alLeft {
	left: 0px;
	top: 0px;
	bottom: 0px;
}

.alRight {
	right: 0px;
	top: 0px;
	bottom: 0px;
}

.alTop {
	right: 0px;
	top: 0px;
	left: 0px;
	width: 100%; /* for inline-block elements */
}

.alBottom {
	right: 0px;
	bottom: 0px;
	left: 0px;
	width: 100%; /* for inline-block elements */
}

.alClient {
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	width: 100%; /* for inline-block elements */
}

.bsNone > .FormContent {
	top: 0px;
	left: 0px;
	bottom: 0px;
	width: 100%;
}

.Splitter.alLeft, .Splitter.alRight {
	cursor: ew-resize;
}

.Splitter.alTop, .Splitter.alBottom {
	cursor: ns-resize;
}

/* Just for select, option */
select:required:invalid {
	/* color: gray; */
}
option[value=""][disabled] {
	display: none;
}

option {
	color: black;
}
