.counterBox {
    height: 40px;
    display: flex;
    width: 110px;
    position: relative;
    background-color: #fff;
    border: 1px solid #d8dadf;
    border-radius: 360px;
    box-sizing: border-box;
}

.counterBox .counterBtn {
    color: #333;
    margin: 0;
    padding: 0 8px;
    box-sizing: border-box;
    background-color: transparent;
    border-radius: 4px;
    transition: background-color .3s ease-in;
    border: 0px;
    width: 40px;
    cursor: pointer;
}

.counterBox .counterBtn span {
    font-size: 18px;
    font-weight: bold;
}

.counterBox .counterInput {
    padding: 0;
    height: 100%;
}

.counterBox .counterInput input,
.rtl .counterBox .counterInput input {
    padding: 8px 6px;
    width: 49px;
    height: inherit;
    font-weight: 700;
    margin: 0;
    text-align: center;
    z-index: 5;
    box-sizing: border-box;
    border: 0;
    background-color: #fff;
    color: #333;
    text-indent: 0;
    min-width: unset;
}
