input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

select:hover {
    border-color: #FF5733;
    transition: .5s;
}

select:focus {
    border-color: #FF5733;
    transition: .5s;
}

div.button:hover {
    transition: .5s;
    background-color: #BDBDBD !important;
    color: #FF5733 !important;

}

input {
    outline: 0;
    border-width: 0 0 1px;
    border-color: #D8D8D8;
    background-color: transparent;
}

input:focus {
    border-color: #D8D8D8 !important;;
}

select {
    outline: 0 !important;;
    border-width: 0 0 1px !important;;
    border-color: #D8D8D8 !important;
    background-color: transparent !important;
}

select:focus {
    border-color: #D8D8D8;
}

.active {
    background-color: #BDBDBD !important;
    color: #FF5733 !important;
}

.custom-select {
    color: #D8D8D8 !important;
}

.modal-dialog input {
    color: white;
}

::-webkit-input-placeholder {
    color: #D8D8D8;
}

:-moz-placeholder { /* Firefox 18- */
    color: #D8D8D8;
}

::-moz-placeholder { /* Firefox 19+ */
    color: #D8D8D8;
}

:-ms-input-placeholder {
    color: #D8D8D8;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 1200px;
        margin: 1.75rem auto;
    }
}