.lightpick {
    position: absolute;
    z-index: 99999;
    background-color: #FFF;
    color: #000000;
    line-height: 1.125em;
	border-radius: 8px;
    box-shadow: 0px 4px 6px 0px #00000040;
}

.lightpick--inlined {
    position: relative;
    display: inline-block;
}

.lightpick,
.lightpick *,
.lightpick::after,
.lightpick::before {
    box-sizing: border-box;
}

.lightpick.is-hidden {
    display: none;
}

.lightpick__months {
    display: grid;
}

.lightpick--2-columns .lightpick__months {
    grid-template-columns: auto auto;
}

.lightpick--3-columns .lightpick__months {
    grid-template-columns: auto auto auto;
}

.lightpick--4-columns .lightpick__months {
    grid-template-columns: auto auto auto auto;
}

.lightpick--5-columns .lightpick__months {
    grid-template-columns: auto auto auto auto auto;
}

.lightpick__month {
    width: 300px;
    background-color: transparent;
}

.lightpick__month:first-child {
   border-radius: 0px 8px;    
}

.lightpick__month:first-child .lightpick__month-title-bar {
  border-top-left-radius: 8px
}

.lightpick__month:last-child {
   border-radius: 8px 0px;    
}

.lightpick__month:last-child .lightpick__month-title-bar {
  border-top-right-radius: 8px;
}

.lightpick__month-title-bar {
    justify-content: space-between;
    align-items: center;
	//padding: 24px 0 20px 0px;
	//text-align: center;
	background-color: #ffffff;
	padding: 18px 0 17px 75px;
    text-align: left;
}

.lightpick__month-title {
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    cursor: default;
    border-radius: 4px;
}

.lightpick__month-title > .lightpick__select {
    border: none;
    background-color: transparent;
    outline: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
	font-family: var(--font-regular);
    font-size: 16px;
    color: #000000;
}
.lightpick__month-title > .lightpick__select:disabled {
    color: #333;
}

.lightpick__month-title > .lightpick__select-months {
    //font-weight: bold;
    margin-right: .5em;
}

.lightpick__month-title > .lightpick__select-months option{
 color:#000000;
}

.lightpick__month-title > .lightpick__select-years {
  font-family: var(--font-regular);
}

.lightpick__month-title > .lightpick__select-years option{
  color:#000000;
}

.lightpick__toolbar {
    display: flex;
    text-align: right;
    justify-content: flex-end;
}

.lightpick__previous-action,
.lightpick__next-action,
.lightpick__close-action {
    display: flex;
    outline: none;
    border: none;
    border-radius: 50%;
    background-color: #FFF;
    justify-content: center;
    align-items: center;
}

.lightpick__previous-action,
.lightpick__next-action {
    font-size: 18px;
	color: var(--primary-color);
    height: 13px;
    width: 8px;
    font-weight: bold;
}

.lightpick__previous-action {
    position: absolute;
    top: 22px;
	right: 48px;
}

.lightpick__next-action {
    position: absolute;
    top: 22px;
    right: 20px;
}

.lightpick__close-action {
    font-size: 18px;
}

//.lightpick__previous-action:active,
//.lightpick__next-action:active,
//.lightpick__close-action:active {
//    color: inherit;
//}

.lightpick__days-of-the-week {
    display: grid;
	background-color: #e8eaec;
	padding: 8px 20px;
    grid-template-columns: repeat(7, 1fr);
}

.lightpick__day-of-the-week {
    display: flex;
    font-weight: bold;
    justify-content: center;
    align-items: center;
	font-family: var(--font-bold);
    font-size: 14px;
    color: #384858;
}

.lightpick__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
	padding: 10px 20px 10px 20px;
}

.lightpick__day {
    display: flex;
    height: 30px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 12px;
    justify-content: center;
    align-items: center;
    cursor: default;
	margin: 3px 0px 0px 1px;
	color: #1e2e3e;
	font-family: var(--font-regular);
}

.lightpick__day.is-today {
    font-family: var(--font-bold);
    color: #fb5f5d;
}

.lightpick__day:not(.is-disabled):hover {
    background-size: contain;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle fill='%23E0E0E0' cx='16' cy='16' r='16'/%3E%3C/svg%3E");
}

.lightpick__day.is-disabled {
    opacity: 0.4;
    pointer-events: none;
	font-family: var(--font-regular);
}

.lightpick__day.disabled-tooltip {
    pointer-events: auto;
}

.lightpick__day.is-disabled.is-forward-selected {
    opacity: 1;
}
.lightpick__day.is-disabled.is-forward-selected:not(.is-start-date) {
    background-color: rgba(38, 139, 210, 0.1);
    background-image: none;
}

.lightpick__day.is-previous-month,
.lightpick__day.is-next-month {
    opacity: 0.38;
}

.lightpick__day.lightpick__day.is-in-range:not(.is-disabled) {
    opacity: 1;
}

.lightpick__day.is-in-range {
    font-family: var(--font-bold);
    color: var(--primary-color);
    border-radius: 0;
    background-color: rgba(38, 139, 210, 0.1);
    background-image: none;
}

.lightpick__day.is-in-range:hover {
    background-image: none;
}

.lightpick__day.is-start-date.is-in-range,
.lightpick__day.is-end-date.is-in-range.is-flipped {
    background-color: var(--primary-color);
    background-image: none;
	border-radius: 4px;
}

.lightpick__day.is-end-date.is-in-range,
.lightpick__day.is-start-date.is-in-range.is-flipped {
    background-color: var(--primary-color);
    background-image: none;
	border-radius: 4px;
}

.lightpick__day.is-start-date,
.lightpick__day.is-end-date {
    color: #FFF;
    font-weight: bold;
	background-color: var(--primary-color);
    background-image: none !important;
	border-radius: 4px;
}

.lightpick__tooltip {
    position: absolute;
    margin-top: -4px;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: #FFF;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
    font-size: 11px;
    pointer-events: none;
}

.lightpick__tooltip::before {
    position: absolute;
    bottom: -5px;
    left: calc(50% - 5px);
    border-top: 5px solid rgba(0, 0, 0, 0.12);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    content: "";
}

.lightpick__tooltip::after {
    position: absolute;
    bottom: -4px;
    left: calc(50% - 4px);
    border-top: 4px solid #FFF;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    content: "";
}
.lightpick__footer {
    display: flex;
    justify-content: space-between;
}
.lightpick__reset-action,
.lightpick__apply-action {
    border-radius: 5px;
    font-size: 12px;
    border: none;
}
.lightpick__reset-action {
    color: #fff;
    background-color: #aeacad;
}
.lightpick__apply-action {
    color: #fff;
    background-color: #2495f3;
}