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

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

.number-input {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #EFB71E;
}

.number-input button {
    -webkit-appearance: none;
    background-color: transparent;
    border: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0;
    position: relative;
    
}

.number-input button:before,
.number-input button:after {
    display: inline-block;
    position: absolute;
    content: '';
    height: 2px;
    transform: translate(-50%, -50%);
}

.number-input button.plus:after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.number-input input[type=number] {
    text-align: center;
}

.number-input.number-input {
    border: 1px solid #ced4da;
    width: 9rem;
    border-radius: .25rem;
}

.number-input.number-input button {
    width: 2.6rem;
    height: .7rem;
}

.number-input.number-input button.minus {
    padding-left: 10px;
}

.number-input.number-input button:before,
.number-input.number-input button:after {
    width: .7rem;
    background-color: #495057;
}

.number-input.number-input input[type=number] {
    max-width: 4rem;
    padding: 0.2rem;
    border: 1px solid #ced4da;
    border-width: 0 1px;
    font-size: 1rem;
    height: 2rem;
    color: #495057;
}

@media not all and (min-resolution:.001dpcm) {
    @supports (-webkit-appearance: none) and (stroke-color:transparent) {
        
        .number-input.def-number-input.safari_only button:before,
        .number-input.def-number-input.safari_only button:after {
            margin-top: -.3rem;
            }
    }
}

[data-toggle]{
    cursor: pointer;
}

html, body{
    height: 100%;
    min-height: 100%;
}
main{
    overflow-y: auto;
}

#app{
    height: 100%; /* Fallback for browsers that do not support Custom Properties */
    /* height: calc(var(--vh, 1vh) * 100); */
}

*{
    color: #67523C !important;
}

.hippos-secondary{
    background-color: #67523C !important;
    color: #EFB71E !important;
}

.hippos-primary{
    background-color: #EFB71E !important;
    color: #67523C !important;
}

.hippos-text-primary{
    color: #EFB71E !important;
}

.hippos-text-secondary{
    color: #67523C !important;
}

.hippos-bg{
    background-color: #c0c0c0 !important;
}

.btn-outline-primary-hippos{
    border: 2px solid #EFB71E;
    background-color: transparent;
    color: #EFB71E;
}

.btn-outline-secondary-hippos{
    border: 2px solid #67523C;
    background-color: transparent;
    color: #67523C;
}

.custom-control-input:checked~.custom-control-label::before{
    background-color: #EFB71E !important;
    border-color: #EFB71E !important;
}