.date-component {
    border-bottom: 1px solid #d0d0d2;
    color: #b8b9bc;
    padding-bottom: 8px;
    position: relative;
}

.date-component.focused {
    border-color: #2188d9;
}

.date-component.date-disabled {
    pointer-events: none;
}

.date-component.date-disabled .present-date {
    color: #b8b9bc !important;
}

.date-component .date-content {
    position: relative;
    cursor: pointer;
    text-align: center;
    color: #060c1b;
    display: flex;
    align-items: center;
    gap: 9px;
}

.date-component .date-content button {
    z-index: 1;
}

.date-component .date-content .material-icons {
    cursor: pointer;
    user-select: none;
    color: #b8b9bc;
}

.date-component .date-content .active-icon {
    color: #2188d9;
}

.date-component .date-content .hidden-element {
    opacity: 0;
    position: absolute;
    left: 0;
    cursor: pointer;
    width: 0px;
    height: 42px;
}

.date-component .date-content .present-view {
    font-size: 16px;
    text-align: left;
    flex: 1;
    height: 18px;
}

.date-component .date-content .present-view .present-date {
    color: #333333;
}

.date-component .date-content>button {
    background: none;
    outline: none;
    border: none;
    padding: 0px;
}

.date-component .date-content .present-separator {
    font-size: 20px;
}

.date-component .date-content [uib-datepicker-popup-wrap]>ul {
    width: 280px;
}

.date-component .times-content {
    position: absolute;
    background: #FFFFFF;
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.03), 0px 4px 5px rgba(0, 0, 0, 0.24), 0px 1px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 10;
    overflow: hidden;
    left: 0;
    width: 100%;
    overflow-y: auto;
    white-space: initial;
    padding: 8px 0;
}

.date-component .times-content.bottom {
    top: 41px;
}

.date-component .times-content.top {
    bottom: 41px;
}