
.datepicker-element {
    /*width: 80%;*/
}

.ranges-element {
    /*width: 20%;*/
    vertical-align: top !important;
    text-align: center;
}

.datepicker-element,
.ranges-element{
    display: inline-block;
    vertical-align: middle;
}

.range-item .range-label{
    color: #535353;
    font-size: 13px;
    font-weight: 500;
}

.range-item {
    cursor: pointer;
    text-align: left;
    padding: 8px 16px;
}

.range-item:hover {
	background-color: #ecf1fe;
}

.selected-range .range-label{
    font-weight: 700;
    font-size: 14px;
}

.range-item.selected-range {
	background: #ecf1fe;
}

.apply-button {
    cursor: pointer;
    text-align: center;
    background-color: #706B98;
    border-radius: 3px;
    font-size: 16px;
    color: #FFFFFF;
    display: inline-block;
    padding: 4px 20px;
    box-sizing: border-box;
    font-weight: 400;
}

.calendar-element{
	width: 190px;
	display: inline-block;
	vertical-align: middle;
	background: #ffffff;
	height: 34px;
	line-height: 34px;
	position: relative;
	border: 1px solid rgba(83, 84, 115, .48);
    border-radius: var(--default-calendar-widget-radius);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .05);
    border: 1px solid var(--default-border-color);
}

.calendar-element:hover {
	border: 1px solid rgba(83, 84, 115, .8);
}

.calendar-input-element, .placeholder-container{
    padding-left: 16px;
    padding-right: 30px;
    /*color: #758292;*/
    /*font-weight: 300;*/
    /*font-size: 12px;*/
    text-align: left;
    color: #535353;
    font-size: 13px;
    font-weight: 500;
}

.calendar-element .header-element{
    cursor: pointer;
	width: 100%;
	height: 100%;
}

.calendar-input-arrow {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -10px;
}

.calendar-input-arrow svg {
	display: block;
}

.calendar-container {
	position: absolute;
	top: 0px;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    line-height: initial;
    white-space: nowrap;
    z-index: 100;
    margin-top: -2px;
    overflow: hidden;
    margin-right: -1px;
	border: 1px solid #7c5fe4;
	box-shadow: 0 4px 16px 0px rgba(203, 196, 228, .48);
}

.calendar-container-wrapper {
	display: flex;
	flex-direction: row;
}

.calendar-controls {
	border-top: 1px solid #E2E2E2;
	height: 48px;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	background: #ecf1fe;
	border-top: none;
    font-family: var(--default-font-family);
}

.calendar-controls .simple-text-button{
    box-shadow: none;
    border: none;
    background: none;
}

.calendar-controls .simple-button {
	height: 27px;
	line-height: 27px;
	margin-right: 62px;
}

.placeholder-container {
    display: inline-block;
    vertical-align: middle;
    background: #ffffff;
    height: 30px;
    line-height: 30px;
    width: 100%;
    position: relative;
    text-align: left;
}

.placeholder-container-arrow{
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -10px;
}

.calendar-container .placeholder-container {
    display: none;
}

.calendar-container.left {
	right: 0px;
}

.calendar-container.right {
	left: -1px;
}

.calendar-container.right .calendar-container-wrapper {
	flex-direction: row-reverse;
}

.calendar-container.right .calendar-controls {
	flex-direction: row
}

.calendar-container.right .calendar-controls .simple-button {
	margin-right: 0px;
	margin-left: 16px;
}

.calendar-container.right .date-range-picker .ui-datepicker-group.ui-datepicker-group-first:before {
	content: "";
	width: 1px;
	position: absolute;
	left: 0px;
	top: 20px;
	bottom: 20px;
	background: #E6E6ED;
}

.calendar-container.right .date-range-picker .ui-datepicker-group.ui-datepicker-group-last:after {
	display: none;
}

