input.custom-calendar, input.custom-number, input.custom-text {
    width: 180px;
    height: 33px;
    padding: 4px 8px;
    /* background-color: #267193; */
    background-color: #052851d4;
    /* border: 3px solid white; */
    border: none;
    border-top: 3px solid white;
    border-radius: 0;
    /* box-shadow: 0px 1px 0px grey; */

    outline: 0;

    font-size: 15px;
    font-weight: 500;
    color: white;

    /* cursor: pointer; */

    margin-right: 10px;

    transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

input.custom-number, input.custom-text {
    width: 80px;
    position: relative;
}


input.custom-number::-webkit-inner-spin-button {
    /* appearance: none; */
}

input.custom-text {
    width: 150px;
}

input.custom-number::placeholder, input.custom-calendar::placeholder, input.custom-text::placeholder {
    color: white;
}
input.custom-number:-ms-input-placeholder, input.custom-calendar:-ms-input-placeholder, input.custom-text:-ms-input-placeholder {
    color: white;
}
input.custom-number::-ms-input-placeholder, input.custom-calendar::-ms-input-placeholder, input.custom-text::-ms-input-placeholder {
    color: white;
}

/* input.custom-number::after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
} */

input.custom-calendar:hover, input.custom-calendar:active, input.custom-calendar:link, input.custom-calendar:focus
, input.custom-text:focus {
    background-color:#1e646cbf;
    color: white;
}

.custom-calendar::-webkit-calendar-picker-indicator {
    filter: invert(1);
    /* background-color: white; */
    color: white;
    padding: 2px;
    border-radius: 3px;
    cursor: pointer;
}

.custom-calendar::-webkit-inner-spin-button {
    color: red;
}


