.ui-slider {
	position: relative;
	text-align: left;
}

.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
}

.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}

/* For IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle, .ui-slider.ui-state-disabled .ui-slider-range
	{
	filter: inherit;
}

.ui-slider-horizontal {
	height: .8em;
}

.ui-slider-horizontal .ui-slider-handle {
	top: -.5em; /* 01prakash */
	margin-left: -.6em;
}

.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.ui-slider-vertical {
	width: .8em;
	height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}

.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}

/* week slider style */
.ui-slider {
	background: #ccc;
	height: 2px;
	left: 1px;
}

.ui-slider-range {
	/*
	background-color: #090A62;
	background: -webkit-linear-gradient(top, #242762, #505288);
	background: -moz-linear-gradient(top, #0D6908, #72A307);
	background: linear-gradient(top, #0D6908, #72A307);
	*/
	background: transparent;
}

.ui-slider-horizontal .ui-slider-handle {
	background: #ffffff;
	border-radius: 15px;
	border: 4px solid #AAAAAA;
	width: 5px;
	height: 12px;
	margin-top: -3px;
	cursor: pointer;
}

.ui-slider-horizontal .ui-slider-handle  span {
	display:block;width:100%;
	background: #888888;
	/*background: linear-gradient(top, #0D6908, #72A307);*/
	border: 4px solid #888888;
	margin: -3px 0px 0px -4px;
	opacity: 0.3;
	border-radius: 15px;
}

.noclassweek {
	border: 2px solid red;
	position: absolute;
	left: 0%;
	/* top: 3px; */
	opacity: 0.3;
	min-height: 7px;
	width: 5px;
	background: red;
}

  
/* code for sort and filter */

#xfortips {
	float:left;
	margin-left: 6px;
	background-image: url(../images/lightbulb_bk.svg);
	background-size: 18px 18px;
}

.filter-popup-buttons{
	display: flex;
	justify-content: center;
	padding-top: 20px;
}

.filter-popup-buttons .big_button {
	width: 80%;
}
.hide {
	display: none;
}

.popup-wrapper {
	background-color: #fff;
	border: 1px solid #ddd;
	box-shadow: 0 2px 8px #aaa;
	overflow: hidden;
}
.popup-content {
	display: flex;
    flex-flow: column nowrap;
    height: 100%;
}
#popuptips .popup-content {
	flex-flow:initial;
}
#popupsort .popup-body input[type=radio] {
	float:left;
	margin:8px;
	cursor: pointer;
}
#popupsort .popup-body label.under {
	cursor: pointer;
	display: block;
	padding: 7px 0px 7px 0px;
}

.popup-title {
	padding: 9px 10px 10px 10px;
	/* padding-bottom: 20.72px; */
	/* background-color: #f4f4f4; */
	/* border-bottom: 1px solid #f0f0f0; */
	display: flex;
	align-content: center;
	text-align: center;
	justify-content: center;
	font-size: 1.69em;
	font-weight: 500;
}
.popup-subtitle {
	flex: 1 auto;
	font-size: 1.05em;
	text-align: center;
	color: #777;
	padding: 8px 0 8px 0;
}

.popup-title h3 {
	margin: 0;
	line-height: 1.5em;
	color: #333;
}

.popup-body {
	margin: 0 16px 16px 16px;
	color: #555;
	overflow: auto;
	height: 100%;
}

.popup-close {
	background: #242762;
    font-size: 14px;
    padding: 4px 6px;
    color: white;
    font-weight: bold;
    margin-top: -2px;
    float: right;
    border: 0;
    margin-right: -12px;
    cursor: pointer;
}
.popupNoticeButtons {
	padding: 0 16px 16px 16px;
	text-align: right;
}
.popupNoticeButtonMessage {
	float:left;
	padding: 10px 6px;
	color: #5c798f;
}


.popup-close:hover {
	color: white;
}

#suggestPopup input[type=radio], #suggestPopup input[type=checkbox] {
	display:inline-block;
}

#suggestPopup .popup-body label {
	box-shadow:none;
}

#messageDescription {
	font-family: arial;
    font-size: 13.3333px;
}

.popup-body label.under:not(:last-child) {
	box-shadow: 0px 1px 2px -2px grey;
}


.popup-body input[type=radio]+label:before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	vertical-align: middle;
	margin-right: 8px;
	float: right;

	/* background-color: #aaa; */
	/* box-shadow: inset 0px 2px 2px rgba(0, 0, 0, .3); */
	/* border-radius: 8px; */
}

.popup-body input[type=radio]:checked+label:before {
	content: "\2713";
	color: rgba(4, 4, 58, 0.99);
	/* background-color: #666; */
	font-size: 1.2em;
	font-weight: bold;
	text-align: center;
	line-height: 18px;
	text-shadow: 0px 0px 3px #eee;
	float: right;
}

.popupl-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.7);
	opacity: 0;
	display: none;
	-webkit-transition: .4s opacity linear;
	transition: .4s opacity linear;
}

.popupl-overlay.is-shown {
	opacity: 1;
	display: block;
	position:fixed;
	z-index:600;
}
 
.filteconfrim {
	background: #242762;
	font-size: 14px;
	padding: 4px 6px;
	color: white;
	font-weight: bold;
	margin-top: -2px;
	float: right;
	border: 0;
	margin-right: -12px;
	cursor: pointer;
}

.rowfilter {
	display: flex;
    justify-content: space-between;
    padding: 6px 10px 8px 12px;
	overflow: visible;
}
.popup-body .rowfilter {
	padding-right: 23px;
}

.rowfilter .filteroption {
	padding: 4px 6px 0 0;
}

.filter_label {
	font-weight: 500;
    padding: 10px 10px 0 10px;
}

.cmn-toggle {
	position: absolute;
	margin-left: -9999px;
	visibility: hidden;
}

.cmn-toggle+label {
	display: block;
	position: relative;
	cursor: pointer;
	outline: none;
	user-select: none;
}

input.cmn-toggle-round+label {
	padding: 2px;
	float: right;
	width: 40px;
	height: 12px;
	background-color: #dddddd;
	/* border-radius: 60px; */;
}

input.cmn-toggle-round+label:before, input.cmn-toggle-round+label:after
	{
	display: block;
	position: absolute;
	top: 1px;
	left: 1px;
	bottom: 1px;
	content: "";
}

input.cmn-toggle-round+label:before {
	right: 1px;
	background-color: #f1f1f1;
	/* border-radius: 60px; */
	transition: background 0.4s;
}

input.cmn-toggle-round+label:after {
	width: 20px;
	background-color: #fff;
	/* border-radius: 100%; */
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	transition: margin 0.4s;
}

input.cmn-toggle-round:checked+label:before {
	background-color: #242762;
}

input.cmn-toggle-round:checked+label:after {
	margin-left: 20px;
}

.sliderleft,.sliderright {
	position:absolute;
	bottom: 2px;
  	border-radius: 4px;
  	transition: background 0.2s ease;
  	outline: none;
  	border: none;
  	background: none;
}

.sliderleft{
	padding: 4px 6px 0 4px;
}
.sliderright {
	padding: 4px 4px 0 6px;
}

.results-week-nav {
    height: 25px;
    width: 25px;
    display: inline-block;
    background-size: 24px auto;
}

.sliderright:not(.no-hover):hover,
.sliderleft:not(.no-hover):hover {
	cursor:pointer;
	background: rgb(158,158,158,0.2);
	transition: background 0.2s ease;
}

#sharePopup, #noticePopup, #aarPopup {
	position: fixed;
    z-index: 999;
    margin: 0 auto;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* IE 10+ only! */
    resize: both;
    overflow: auto;
    min-height: 110px;
}

#suggestPopup {
	position: fixed;
    z-index: 999;
    width: 510px;
    height: auto;
    left: 0;
    right: 0;
    top: 50%;
 	transform: translateY(-50%);
    margin: 0 auto;
}


#notificationCal {
	font-size:12px;
	font-weight:bold;
	padding:0 5px;
	color:green;
}


#suggestPopup input[type='file'] {
    width:400px;
    height:25px;
    opacity:0
}
#uploadCSVBtn {
	position:absolute;
	top:0;
	left:0;
	display:block;
	width:100px;
}
#fileMessage {
	position:absolute;
	top:3px;
	left:110px;
	display:block;
}
#fileError {
	position:absolute;
	top:3px;
	left:110px;
}

@media only screen and (max-width: 510px) {
	#suggestPopup {
	width: auto !important;
	}
}