.header {
    background: linear-gradient(135deg, #1f8efa 0%, #04c884 100%);
    position: relative;
    left: 0px;
    right: 0px;
    z-index: 100;
}

.wrapper {
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    overflow: clip;
}

.navbar-custom {
    min-height: 80px;

}

.footer {
    position: relative;
    bottom: 0;
    display: flex;
    background-color: #19242f;
    color: white;
    padding: 9px 0;
}
/*.form-check-input:checked {
    background-color: #ffaa4d;
    border-color: #ffaa4d;
}*/


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

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

.number-input {
    border: 2px solid #ddd;
    display: inline-flex;
}

.number-input,
.number-input * {
    box-sizing: border-box;
}

.number-input button {
    outline:none;
    -webkit-appearance: none;
    /*background-color: #ffdb98;*/
    border: none;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2.4rem;
    cursor: pointer;
    margin: 0;
    position: relative;
}

.number-input button:before,
.number-input button:after {
    display: inline-block;
    position: absolute;
    content: '';
    width: 0.7rem;
    height: 2px;
    background-color: #212121;
    transform: translate(-50%, -50%);
}
.number-input button.plus:after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.number-input input[type=number] {
    font-family: sans-serif;
    /*max-width: 5rem;*/
    padding: .5rem;
    border: solid #ddd;
    border-width: 0 2px;
    font-size: 1rem;
    height: 2.4rem;
    font-weight: bold;
    text-align: center;
}