.datePicker {position: relative;font-size: 14px;margin: 15px 0px;box-sizing: border-box;}

.datePicker .inputPlaceholder {
    position: absolute;
    top: 0;
    left: 8px;
    height: 100%;
    align-items: center;
    pointer-events: none;
    display: flex;
    z-index: 1;
    transition: all .3s;
    color: #999;
}

.datePicker input {
    width: 100%;
    height: 100%;
    padding: 9px;
    outline: none;
    border: 1px solid #43454b;
    border-radius: 4px;
    font-family: 'Nunito', sans-serif;
    box-sizing: border-box;
    -webkit-appearance: none;
    background: #ffffff0f;
    color: #999;
    min-height: 40px;
}

.datePicker .inputPlaceholder:before {content: '';width: 100%;position: absolute;left: 0;height: 18px;top: 0;bottom: 0;margin: auto;/* background: white; */z-index: 0;}

.datePicker .inputPlaceholder {
    top: -6px;
    font-size: 10px;
    height: 14px;
    background: white;
    padding: 0px 2px;
    background: linear-gradient(180deg, rgb(32 36 44 / 0%) 41%, rgb(32 36 44) 43%, rgb(32 36 44) 50%, rgb(32 36 44) 50%, rgb(32 36 44 / 0%) 57%);
}

.datePicker input:focus {
    box-shadow: 0px 1px 7px -4px #6f6f6f;
    border: 1px solid #52c2ff;
}