.ng-sss{
    background-color: #ddddd9!important;
}
.ng-select {
	position: relative;
	display: block;
	box-sizing: border-box
}

.ng-select div,.ng-select input,.ng-select span {
	box-sizing: border-box
}

.ng-select [hidden] {
	display: none
}

.ng-select.ng-select-searchable .ng-select-container .ng-value-container .ng-input {
	opacity: 1
}

.ng-select.ng-select-opened .ng-select-container {
	z-index: 1001
}

.ng-select.ng-select-disabled .ng-select-container .ng-value-container .ng-placeholder,.ng-select.ng-select-disabled .ng-select-container .ng-value-container .ng-value {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: default
}

.ng-select.ng-select-disabled .ng-arrow-wrapper {
	cursor: default
}

.ng-select.ng-select-filtered .ng-placeholder {
	display: none
}

.ng-select .ng-select-container {
	cursor: default;
	display: flex;
	outline: 0;
	overflow: hidden;
	position: relative;
	width: 100%
}

.ng-select .ng-select-container .ng-value-container {
	display: flex;
	flex: 1
}

.ng-select .ng-select-container .ng-value-container .ng-input {
	opacity: 0
}

.ng-select .ng-select-container .ng-value-container .ng-input>input {
	box-sizing: content-box;
	background: none;
	border: 0;
	box-shadow: none;
	cursor: default;
	width: 100%
}

.ng-select .ng-select-container .ng-value-container .ng-input>input::-ms-clear {
	display: none
}

.ng-select .ng-select-container .ng-value-container .ng-input>input[readonly] {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	width: 0;
	padding: 0
}

.ng-select.ng-select-single.ng-select-filtered .ng-select-container .ng-value-container .ng-value {
	visibility: hidden
}

.ng-select.ng-select-single .ng-select-container .ng-value-container,.ng-select.ng-select-single .ng-select-container .ng-value-container .ng-value {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.ng-select.ng-select-single .ng-select-container .ng-value-container .ng-value .ng-value-icon {
	display: none
}

.ng-select.ng-select-single .ng-select-container .ng-value-container .ng-input {
	position: absolute;
	left: 0;
	width: 100%
}

.ng-select.ng-select-multiple.ng-select-disabled>.ng-select-container .ng-value-container .ng-value .ng-value-icon {
	display: none
}

.ng-select.ng-select-multiple .ng-select-container .ng-value-container {
	flex-wrap: wrap
}

.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value {
	white-space: nowrap
}

.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled .ng-value-icon {
	display: none
}

.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon {
	cursor: pointer
}

.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-input {
	flex: 1;
	z-index: 2
}

.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-placeholder {
	position: absolute;
	z-index: 1
}

.ng-select .ng-clear-wrapper {
	cursor: pointer;
	position: relative;
	width: 17px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.ng-select .ng-clear-wrapper .ng-clear {
	display: inline-block;
	font-size: 18px;
	line-height: 1;
	pointer-events: none
}

.ng-select .ng-spinner-loader {
	border-radius: 50%;
	width: 17px;
	height: 17px;
	margin-right: 5px;
	font-size: 10px;
	position: relative;
	text-indent: -9999em;
	border-top: 2px solid rgba(66,66,66,.2);
	border-right: 2px solid rgba(66,66,66,.2);
	border-bottom: 2px solid rgba(66,66,66,.2);
	border-left: 2px solid #424242;
	transform: translateZ(0);
	-webkit-animation: .8s linear infinite load8;
	animation: .8s linear infinite load8
}

.ng-select .ng-spinner-loader:after {
	border-radius: 50%;
	width: 17px;
	height: 17px
}

@-webkit-keyframes load8 {
	0% {
		transform: rotate(0)
	}

	100% {
		transform: rotate(360deg)
	}
}

@keyframes load8 {
	0% {
		transform: rotate(0)
	}

	100% {
		transform: rotate(360deg)
	}
}

.ng-select .ng-arrow-wrapper {
	cursor: pointer;
	position: relative;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.ng-select .ng-arrow-wrapper .ng-arrow {
	pointer-events: none;
	display: inline-block;
	height: 0;
	width: 0;
	position: relative
}

.ng-dropdown-panel {
	box-sizing: border-box;
	position: absolute;
	opacity: 0;
	width: 100%;
	z-index: 1050;
	-webkit-overflow-scrolling: touch
}

.ng-dropdown-panel .ng-dropdown-panel-items {
	display: block;
	height: auto;
	box-sizing: border-box;
	max-height: 240px;
	overflow-y: auto
}

.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.ng-dropdown-panel .ng-dropdown-panel-items .ng-option {
	box-sizing: border-box;
	cursor: pointer;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.ng-dropdown-panel .ng-dropdown-panel-items .ng-option .highlighted {
	font-weight: 700;
	text-decoration: underline
}

.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.disabled {
	cursor: default
}

.ng-dropdown-panel .scroll-host {
	overflow: hidden;
	overflow-y: auto;
	position: relative;
	display: block;
	-webkit-overflow-scrolling: touch
}

.ng-dropdown-panel .scrollable-content {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute
}

.ng-dropdown-panel .total-padding {
	width: 1px;
	opacity: 0
}

ngb-datepicker {
	border: 1px solid #dfdfdf;
	border-radius: .25rem;
	display: inline-block
}

ngb-datepicker-month {
	pointer-events: auto
}

ngb-datepicker.dropdown-menu {
	padding: 0
}

.ngb-dp-body {
	z-index: 1050
}

.ngb-dp-header {
	border-bottom: 0;
	border-radius: .25rem .25rem 0 0;
	padding-top: .25rem;
	background-color: #f8f9fa;
	background-color: var(--light)
}

.ngb-dp-months {
	display: -ms-flexbox;
	display: flex
}

.ngb-dp-month {
	pointer-events: none
}

.ngb-dp-month-name {
	font-size: larger;
	height: 2rem;
	line-height: 2rem;
	text-align: center;
	background-color: #f8f9fa;
	background-color: var(--light)
}

.ngb-dp-month+.ngb-dp-month .ngb-dp-month-name,.ngb-dp-month+.ngb-dp-month .ngb-dp-week {
	padding-left: 1rem
}

.ngb-dp-month:last-child .ngb-dp-week {
	padding-right: .25rem
}

.ngb-dp-month:first-child .ngb-dp-week {
	padding-left: .25rem
}

.ngb-dp-month .ngb-dp-week:last-child {
	padding-bottom: .25rem
}

ngb-datepicker-navigation {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center
}

.ngb-dp-navigation-chevron {
	border-style: solid;
	border-width: .2em .2em 0 0;
	display: inline-block;
	width: .75em;
	height: .75em;
	margin-left: .25em;
	margin-right: .15em;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg)
}

.right .ngb-dp-navigation-chevron {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	margin-left: .15em;
	margin-right: .25em
}

.ngb-dp-arrow {
	display: -ms-flexbox;
	display: flex;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding-right: 0;
	padding-left: 0;
	margin: 0;
	width: 2rem;
	height: 2rem
}

.ngb-dp-arrow.right {
	-ms-flex-pack: end;
	justify-content: flex-end
}

.ngb-dp-arrow-btn {
	padding: 0 .25rem!important;
    margin: 0 .5rem!important;
    border: none!important;
    background-color: transparent!important;
    z-index: 1;
}

.ngb-dp-arrow-btn:focus {
	outline-width: 1px;
	outline-style: auto
}

@media all and (-ms-high-contrast:none),(-ms-high-contrast:active) {
	.ngb-dp-arrow-btn:focus {
		outline-style: solid
	}
}

.ngb-dp-month-name {
	font-size: larger;
	height: 2rem;
	line-height: 2rem;
	text-align: center
}

.ngb-dp-navigation-select {
	display: -ms-flexbox;
	display: flex;
	-ms-flex: 1 1 9rem;
	flex: 1 1 9rem
}

ngb-datepicker-navigation-select>.custom-select {
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 0 .5rem;
	font-size: .875rem;
	height: 1.85rem
}

ngb-datepicker-navigation-select>.custom-select:focus {
	z-index: 1
}

ngb-datepicker-navigation-select>.custom-select::-ms-value {
	background-color: transparent!important
}

ngb-datepicker-month {
	display: block
}

.ngb-dp-week-number,.ngb-dp-weekday {
	line-height: 2rem;
	text-align: center;
	font-style: italic
}

.ngb-dp-weekday {
	color: #5bc0de;
	color: var(--info)
}

.ngb-dp-week {
	border-radius: .25rem;
	display: -ms-flexbox;
	display: flex
}

.ngb-dp-weekdays {
	border-bottom: 1px solid rgba(0,0,0,.125);
	border-radius: 0;
	background-color: #f8f9fa;
	background-color: var(--light)
}

.ngb-dp-day,.ngb-dp-week-number,.ngb-dp-weekday {
	width: 2rem;
	height: 2rem
}

.ngb-dp-day {
	cursor: pointer
}

.ngb-dp-day.disabled,.ngb-dp-day.hidden {
	cursor: default;
	pointer-events: none
}

.ngb-dp-day[tabindex="0"] {
	z-index: 1
}
[ngbDatepickerDayView] {
	text-align: center;
	width: 2rem;
	height: 2rem;
	line-height: 2rem;
	border-radius: .25rem;
	background: 0 0
}[ngbDatepickerDayView].outside {
	opacity: .5
}
