/*!
 * Stylesheet for the Date Range Picker, for use with Bootstrap 3.x
 *
 * Copyright 2013 Dan Grossman ( http://www.dangrossman.info )
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Built for http://www.improvely.com
 */


/*.btn{
    display: inline-block;
    margin-bottom: 0;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
}
.btn-small{
    padding: 2px 10px;
    font-size: 11.9px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.btn-primary{
     color: #fff;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
    background-color:  #ee7258;
    outline: none;
    border:rgb(230, 118, 86);

}
.blue{
	background: rgb(230, 118, 86);
}*/
.orange:hover {
	color: #fff;
	background: #ee7258;
}

.daterangepicker {
	display: flex;
}

.daterangepicker.dropdown-menu {
	/*max-width: 420px;*/
	display: flex;
	z-index: 3000;
	margin-top: 15px;
	flex-flow: row wrap;
	align-items: flex-start;
}
.daterangepicker.opensleft .ranges,
.daterangepicker.opensleft .calendar {
	/*float: left;*/
	margin: 4px;
}

.daterangepicker.opensright .ranges,
.daterangepicker.opensright .calendar {
	/*float: left;*/
	margin: 4px;
}

.daterangepicker .ranges {
	/*width: 160px;*/
	display: flex;
	text-align: left;
}

.daterangepicker .range_inputs {
	position: absolute;
	left: 95px;
	display: flex;
	justify-content: space-around;
    width: 450px;
    height: 50px;
}
.daterangepicker .range_inputs>div {
	display: flex;
	align-items: center;
}
.daterangepicker .range_inputs input{
	background: #f5f5f5;
    color: #ee7258;
    width: 100px;
    text-align: center;
}
.daterangepicker .range_inputs>div:nth-child(2) {
	padding-left: 0px;
}

.daterangepicker .calendar {
	display: none;
	max-width: 350px;
}

.daterangepicker.show-calendar .calendar {
	display: flex;
	height: 180px;
	margin-top: 55px;
}

.daterangepicker .calendar.single .calendar-date {
	border: none;
}

.daterangepicker .calendar th,
.daterangepicker .calendar td {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	white-space: nowrap;
	text-align: center;
	min-width: 32px;
	margin: 0;
    padding: 0;
}

.daterangepicker .daterangepicker_start_input label,
.daterangepicker .daterangepicker_end_input label {
	color: #333;
	display: block;
	font-size: 11px;
	font-weight: normal;
	height: 20px;
	line-height: 20px;
	margin-bottom: 2px;
	text-shadow: #fff 1px 1px 0px;
	text-transform: uppercase;
	width: 60px;
}

.daterangepicker .ranges input {
	font-size: 11px;
}

.daterangepicker .ranges .input-mini {
	background-color: #eee;
	border: 1px solid #ccc;
	border-radius: 4px;
	color: #555;
	display: block;
	font-size: 11px;
	height: 30px;
	line-height: 30px;
	vertical-align: middle;
	margin: 0 0 10px 0;
	padding: 0 6px;
	width: 150px;
}

.daterangepicker .ranges ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.daterangepicker .ranges li {
	font-size: 13px;
	background: #f5f5f5;
	border: 1px solid #f5f5f5;
	color: #ee7258;
	padding: 3px 12px;
	margin-bottom: 8px;
	-webkit-border-radius: 5px !important;
	-moz-border-radius: 5px !important;
	border-radius: 5px !important;
	cursor: pointer;
}

.daterangepicker .ranges li.active,
.daterangepicker .ranges li:hover {
	background: #ee7258;
	border: 1px solid #ee7258;
	color: #fff;
}

.daterangepicker .calendar-date {
	border: 1px solid #ddd;
	padding: 4px;
	border-radius: 4px !important;
	background: #fff;
	height: 180px;
	/*margin-top: 40px;*/
}

.daterangepicker .calendar-time {
	text-align: center;
	margin: 8px auto 0 auto;
	line-height: 30px;
}

.daterangepicker {
	position: absolute;
	background: #fff;
	top: 100px;
	left: 20px;
	padding: 4px;
	margin-top: 1px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.daterangepicker.opensleft:before {
	position: absolute;
	top: -7px;
	right: 9px;
	display: inline-block;
	border-right: 7px solid transparent;
	border-bottom: 7px solid #ccc;
	border-left: 7px solid transparent;
	border-bottom-color: rgba(0, 0, 0, 0.2);
	content: '';
}

.daterangepicker.opensleft:after {
	position: absolute;
	top: -6px;
	right: 10px;
	display: inline-block;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #fff;
	border-left: 6px solid transparent;
	content: '';
}

.daterangepicker.opensright:before {
	position: absolute;
	top: -7px;
	left: 9px;
	display: inline-block;
	border-right: 7px solid transparent;
	border-bottom: 7px solid #ccc;
	border-left: 7px solid transparent;
	border-bottom-color: rgba(0, 0, 0, 0.2);
	content: '';
}

.daterangepicker.opensright:after {
	position: absolute;
	top: -6px;
	left: 10px;
	display: inline-block;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #fff;
	border-left: 6px solid transparent;
	content: '';
}

.daterangepicker table {
	width: 100%;
	margin: 0;
}

.daterangepicker td,
.daterangepicker th {
	text-align: center;
	width: 20px;
	height: 20px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	cursor: pointer;
	white-space: nowrap;
}

.daterangepicker td.off {
	color: #999;
}

.daterangepicker td.disabled {
	color: #999;
}

.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
	background: #eee;
}

.daterangepicker td.in-range {
	background: #ebf4f8;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
	background-color: #ee7258;
	border-color: #ee7258;
	color: #fff;
}

.daterangepicker td.week,
.daterangepicker th.week {
	font-size: 80%;
	color: #ccc;
}

.daterangepicker select.monthselect,
.daterangepicker select.yearselect {
	font-size: 12px;
	padding: 1px;
	height: auto;
	margin: 0;
	cursor: default;
}

.daterangepicker select.monthselect {
	margin-right: 2%;
	width: 40%;
}

.daterangepicker select.yearselect {
	width: 40%;
}

.daterangepicker select.hourselect,
.daterangepicker select.minuteselect,
.daterangepicker select.ampmselect {
	width: 50px;
	margin-bottom: 0;
}

.daterangepicker_start_input {
	/*float: left;*/
}

.daterangepicker_end_input {
	/*float: left;*/
	padding-left: 11px
}

.daterangepicker th.month {
	width: auto;
}

#searchDateRange {
	min-width: 200px;
	text-align: center;
}

.daterangepicker_start_input {
	/*float: right;*/
}

.daterangepicker_end_input {
	/*float: right;*/
}

.xy-btn-group {
    position: absolute;
    right: 0;
    bottom: 12px;
    width: 478px;
}

.applyBtn {
	width: 66%;
	border-radius: 10px;
}

.cancelBtn {
	width: 30%;
	border-radius: 10px;
}