::-webkit-inner-spin-button {
    display: none;
}

::-webkit-search-cancel-button {
    display: none;
}

::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    cursor: pointer;
}

::-webkit-datetime-edit-day-field {
    color: inherit;
    background: inherit;
    outline: inherit;
}

::-webkit-datetime-edit-month-field {
    color: inherit;
    background: inherit;
    outline: inherit;
}

::-webkit-datetime-edit-year-field {
    color: inherit;
    background: inherit;
    outline: inherit;
}

::-webkit-datetime-edit-hour-field {
    color: inherit;
    background: inherit;
    outline: inherit;
}

::-webkit-datetime-edit-minute-field {
    color: inherit;
    background: inherit;
    outline: inherit;
}

input,
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

input[type="checkbox"],
input[type="file"],
input[type="radio"],
input[type="time"] {
    display: none;
}

input:placeholder,
select option:disabled {
    color: #888;
}

.mask {
    position: relative;
    padding: 0 5px;
    vertical-align: bottom;
}

.mask>span {
    font-size: 14px;
    font-style: italic;
}

.mask>label {
    position: relative;
    display: block;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: white;
}

.mask>label>input,
.mask>label>select,
.mask>label>textarea {
    width: 100%;
    padding: 0 10px;
    height: 48px;
    background: transparent;
    border: none;
}

.mask>label>select {
    padding-right: 40px;
    cursor: pointer;
}

.mask>label>textarea {
    padding: 10px;
    height: 96px;
    resize: none;
}

.mask>label>input ~ a,
.mask>label>input ~ i,
.mask>label>select ~ i {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
    font-size: 16px;
    color: gray;
    text-decoration: none;
}

.mask>label>input ~ a {
    color: #4169E1;
}

.mask>label>input[type="date"] ~ i,
.mask>label>select ~ i {
    pointer-events: none;
}

.mask>label>input[type="password"],
.mask>label>input[type="search"] {
    padding-right: 40px;
}

