@charset "utf-8";
.form-control {
	padding: 5px;
	display: inline-block;
	margin-bottom: 5px;
	margin-top: 5px;
	height: 32px;
}
input[type="checkbox"].form-control {
	-webkit-appearance: auto !important;
	appearance: auto;
}
.form-control-tiny {
	width: 80px;
}
.form-control-small {
	width: 100px;
}
.form-control-medium {
	width: 150px;
}
.form-control-normal {
	width: 200px;
}
.form-control-long {
	width: 250px;
}
.form-control-verylong {
	width: 320px;
}
.form-control-extralong {
	width: 400px;
}
.form-control-50-percent {
	width: 50%;
}
.form-control-25 {
	width: 25%;
}
.form-control-50 {
	width: 50%;
}
.form-control-75 {
	width: 75%;
}
.form-control-100 {
	width: 100%;
}
.form-control-max {
	width: 100%;
}
.form-control-date {
	width: 120px;
}
.form-control-money {
	width: 150px;
}
.form-control-phone-number {
	width: 140px;
}
input[type="checkbox"].form-control {
	margin-left: 4px;
	width: auto;
}
input[type='date'],input[type='time'],input[type='text'],select{
	height: 32px;
	width: 100%;
	padding-left: 5px;
	padding-right: 5px;
}
.fa, .fas, .far {
	cursor: pointer;
}
.alert.alert-dismissable .close {
	padding: 5px 5px;
	background-color: red;
	color: white !important;
	font-weight: 400;
	font-size: 0.7rem;
	text-decoration: none;
	border-radius: 3px;
}
.alert.alert-dismissable .close:after {
	content: ' CLOSE';
}

/* BUTTON: BEGIN ---*/
button[type=button]:hover, [type="submit"] {
	border: 1px solid grey;
}
.btn {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 5px;
	margin-left: 3px;
	margin-right: 3px;
	padding: 0 10px;
	line-height: 2;
	border-radius: 4px;
	white-space: nowrap;
}
a.btn {
	display: inline-flex;
	text-decoration: none;
	color: white;
}
.btn i {
	color: white;
}
.btn-tiny, .btn-group-tiny > .btn {
	font-size: 0.8rem;
	line-height: 1.1;
	border-radius: 3px;
	height: 20px;
}
.btn-full-width {
	width: 100%;
}
.btn-delete:hover {
	background-image: inherit;
	background-color: red;
	color: white;
	opacity: 1.0;
}
.btn.btn-sm .material-symbols-outlined {
	font-size: 1.4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	width: auto;
	height: 24px;
	padding: 0;
}
.css-expand {
	display: block;
}
.css-restore {
	display: none;
}
.btn-save {
	color: white;
	background-color: green;
	border-color: breen;
}
.btn-save::before {
	content: 'Save \01F4BE';
}
.btn-save:hover {
	color: green;
	background-color: #00E83A;
	border-color: #00E83A;
}