* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
}

body {
    display: flex;
    width: 100%;
    /*min-width: 1250px;*/
    position: relative;
}

input[type='text']:read-only {
    background-color: #ddd;
}

input[type='date'] {
    position: relative;
    width: 219px;
}

input[type='date']::before {
    position: absolute;
    content: attr(data-placeholder);
    width: 100%;
    height: 100%;
}

input[type='date']:focus::before,
input[type='date']:valid::before {
    display: none;
}

input[type='date']::-webkit-calendar-picker-indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    color: transparent;
}
