/*================================================================================
	Item Name: Materialize - Material Design Admin Template
	Version: 5.0
	Author: PIXINVENT
	Author URL: https://themeforest.net/user/pixinvent/portfolio
================================================================================

NOTE:
------
PLACE HERE YOUR OWN CSS CODES AND IF NEEDED, OVERRIDE THE STYLES FROM THE OTHER STYLESHEETS.
WE WILL RELEASE FUTURE UPDATES SO IN ORDER TO NOT OVERWRITE YOUR STYLES IT'S BETTER LIKE THIS.  */
:root {
	--primary-clr: #ff9955;
	--primary-clr-opaque: #ff995517;
	--accent-clr: #0E122B;
}

/*==============================Card STYLES*/

.card{
	border-radius: 5px !important;
}


/*==============================Fieldset STYLES*/
fieldset {
	padding: 14px;
	border-radius: 6px;
	border-color: #d9d9d9;
	border-style: solid;
}

fieldset:not(:first-of-type) {
	margin-top: 8px;
}

legend{
	font-size:.9rem;
	opacity: .7;
	padding: 0 3px;
	font-style: italic;
}

fieldset:focus-within {
	border-color: var(--primary-clr);
	box-shadow: none;
	background-color: var(--primary-clr-opaque);
}


fieldset:focus-within legend{
	color: var(--primary-clr);
}

fieldset button[type="submit"].right{
	margin-right: 15px;
}

/*==============================INPUT STYLES*/

/* label focus color */
.input-field input[type=text]:focus + label {
	color: var(--primary-clr) !important;
}
/* label underline focus color */
.input-field input[type=text]:focus {
	border-bottom: 1px solid var(--primary-clr) !important; 
	box-shadow: 0 1px 0 0 var(--primary-clr) !important;
}
/* icon prefix focus color */
.input-field .prefix.active {
	color: var(--primary-clr) !important;
}

/*==============================TIME PICKER STYLES*/

timepicker-canvas line {
	stroke: var(--accent-clr);
}

.timepicker-canvas-bg,
.timepicker-canvas-bearing {
	fill: var(--primary-clr)
}

.timepicker-digital-display{
	background-color: var(--accent-clr);
}

.timepicker-canvas line{
	stroke: var(--primary-clr)
}
.timepicker-tick.active, .timepicker-tick:hover{
	background-color: var(--primary-clr-opaque)
}

.timepicker-close{
	color: var(--accent-clr)
}
        

/*================ button STYLES*/

.btn-flat-large {
	cursor: pointer;
	-webkit-transition: background-color .2s;
	transition: background-color .2s;
	color: #343434;
	background-color: transparent;
	box-shadow: none;
	text-transform: capitalize;
	font-size: 1rem;
	line-height: 54px;
	height: 54px;
	padding: 0 28px;
	outline: 0;
	border:none;
}

.btn-flat-large:focus{
	background: transparent !important;
}

.input-field .prefix ~ .select2.select2-container {
	width: calc(100% - 3rem) !important;
	margin-left: 3rem;
}

select2-results, .select2-results__options{
	max-height: 40vh !important;
}