.input-group {
    .btn-group-number {
        height: 1.50003rem;
        flex-direction: column;
        background-color: #fff;
        .btn-number-flag {
            height: 50%;
            display: flex;
            box-shadow: none;
            padding: 0 5px;
            margin-left: 1px;
            border-left: 1px solid rgb(217, 217, 217);
            overflow: hidden;
            transition: all .1s linear;
            .number-arrow-chevron {
                flex: 1;
                line-height: 1;
            }
            &:hover {
                height: 60%!important;
            }
            &:nth-child(2) {
                border-top: 1px solid rgb(217, 217, 217);
            }
        }
        
    }
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0;
}
.number-range {
    position: relative;
    .input-container {
        display: flex;
        padding: 0;
        .sub-input-group {
            flex: 1;
            position: relative;
            display: flex;
            transition: all .3s ease-out;
            .sub-input {
                width: 100%;
                border: none;
                outline: none;
                background-color: rgba(0, 0, 0, 0);
                min-width: 2px;
                padding: 0.125rem 4px 0.125rem 0.5rem;
            }
        }
        .spliter {
            width: 15px;
            text-align: center;
        }
    }
}
