.chronos {
    position: relative;
}
.chronos .chronos-range {
    background: #f5f6f7;
    max-height: 15px;
    overflow: hidden;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: max-height 0.4s;
    padding-bottom: 30px;
}

.chronos .chronos-range.active {
    max-height: 70px;
}
.chronos .chronos-range.active .chronos-content-toggle span {
    transform: rotate(-180deg) translateY(1px);
}
.chronos .chronos-range .chronos-content-toggle {
    cursor: pointer;
    font-size: 12px;
    line-height: 30px;
    color: #abaeb1;
}
.chronos .chronos-range .chronos-content-toggle span {
    transform: rotate(0);
    transform-origin: center;
    transition: transform 0.4s;
    display: inline-block;
    margin-right: 10px;
}

.chronos .chronos-range .chronos-close-icon span {
    /* transform: rotate(0); */
    /* transform-origin: center; */
    /* transition: transform 0.4s; */
    display: inline-block;
    margin-right: 10px;
}

.chronos .chronos-content {
    visibility: hidden;
    background: #fff;
    z-index: 10;
    position: absolute;
    top: calc(100% + 45px);
    left: 50%;
    transform: translate(-50%, 0);
    width: 330px;
    border-radius: 5px;
    box-shadow: 0 0 1px 0 rgba(1, 1, 1, 0.3);
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.4s, top 0.4s, visibility 0.4s;
}
.chronos .chronos-content:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -10px;
    left: 50%;
    transform: translate(-50%, 0) rotate(-45deg);
    display: block;
    height: 20px;
    width: 20px;
    background: #fff;
    box-shadow: 0 0 1px 0 rgba(1, 1, 1, 0.3);
}
.chronos .chronos-content.active {
    opacity: 1;
    top: calc(100% + 15px);
    visibility: visible;
    z-index: 100;
}
.chronos .chronos-content-header {
    font-size: 16px;
    background: #fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    line-height: 1;
    padding: 15px 30px;
    border-bottom: 1px solid #f7f7f7;
}
.chronos .year-value {
    vertical-align: middle;
    margin: 0 20px;
    font-weight: 700;
}
.chronos .chronos-value {
    cursor: pointer;
    /* font-size: 16px !important; */
    /* margin: 0 20px; */
    color: #61686a;
    vertical-align: middle;
    display: inline-block;
}
.chronos .chronos-year {
    text-align: center;
}
.chronos .chronos-next,
.chronos .chronos-prev {
    border: 0;
    background: 0 0;
    padding: 0;
    display: inline-block;
    outline: 0;
    vertical-align: middle;
    color: #43bee1;
    font-size: 18px !important;
}
.chronos .chronos-year-next,
.chronos .chronos-year-prev {
    color: #43bee1;
    vertical-align: middle;
    cursor: pointer;
    font-size: 16px !important;
}
.chronos .chronos-range-inputs {
    margin: 0 5px;
    background: #fff;
    border: 1px solid #dfe7ea;
    border-radius: 3px;
    height: 35px;
}
.chronos .chronos-range-inputs:after {
    content: "";
    display: block;
    clear: both;
}
.chronos .chronos-range-inputs .date {
    width: 60px !important;
}
.chronos .chronos-range-inputs input {
    outline: 0;
    line-height: 30px;
    font-size: 11px !important;
    border: none;
    float: left;
    background: 0 0;
    color: #323a46;
    width: 35%;
    text-align: center;
}
.chronos .chronos-range-inputs input:first-of-type {
    margin-left: 10px;
}
.chronos .chronos-range-inputs .ui-datepicker-trigger {
    float: left;
    margin: 0 0 0 5px;
    position: relative;
    top: 16px;
    transform: translateY(-50%);
}
.chronos .chronos-range-btn {
    background-color: #f5f6f7;
    width: 42px;
    line-height: 32px !important;
    outline: 0;
    float: right;
    cursor: pointer;
}
.chronos .chronos-range-btn:hover {
    font-weight: bold;
}
.chronos .chronos-range-divisor {
    float: left;
    font-size: 13px;
    line-height: 30px;
    margin: 0 10px;
    width: 5%;
}chronos-content-toggle
.chronos .chronos-months {
    padding: 10px 15px;
}
.chronos .chronos-month {
    width: 15%;
    margin: 0 5%;
    background: 0 0;
    border: 2px solid #fff;
    color: #43bee1;
    line-height: 33px;
    border-radius: 50%;
    outline: 0;
}
.chronos .chronos-month.active {
    font-weight: 700;
    border: 2px solid #43bee1;
}
.chronos-close-icon span i {
    top: 5px;
    position: relative;
    color: #abaeb1;
}
.chronos-close-icon span i:hover {
    font-weight: 700;
    cursor: pointer;
    color: #f86262;
}
.chronos {
    border: solid 1px #6c757d;
    border-radius: 4px;
    background-color: #fff;
    font-size: 13px;
}
.chronos .chronos-prev, .chronos .chronos-next {
    padding: 0 8px;
}