 .quantity {
    width: 100%;
    height: 50px;
}
 .quantity .input-text {
    display: none;
}
 .quantity .st-quantity-container {
    display: flex;
    width: 100%;
    height: 100%;
    background: #fff;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 0 10px -5px #999;
    padding: 5px;
} 
 .st-quantity-container > div {
    flex-basis: 32%;
    display: flex;
    justify-content: center;
    align-items: center;
} 
 .st-quantity-box {
    flex-direction: column;
    font-family: "Peyda", sans-serif;
    flex-grow: 1;
    justify-content: space-between !important;
}
 .st-quantity-span {
    width: 100%;
    font-size: 1.1rem;
    line-height: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}
 .st-text-span {
    font-size: .6rem;
    opacity: .9;
}
 .st-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
 .st-btn svg {
    transition: .2s ease;
}
 .st-btn:hover svg {
    fill: #d80000;
}
 .st-btn .minus_svg {
    display: none;
}
 .st-quantity-span .quantity-loader {
    --loader-width: 7px;
    width: var(--loader-width);
    --loader-color1: #000000b6;
    --loader-color2: rgba(105, 105, 105, 0.624);
    aspect-ratio: 1;
    border-radius: 50%;
    animation: loading 1s infinite linear alternate;
}
@keyframes loading {
      0%  {box-shadow: calc(3px + var(--loader-width)) 0 var(--loader-color1), calc(-1 * var(--loader-width) - 3px) 0 var(--loader-color2);background: var(--loader-color1)}
      33% {box-shadow: calc(3px + var(--loader-width)) 0 var(--loader-color1), calc(-1 * var(--loader-width) - 3px) 0 var(--loader-color2);background: var(--loader-color2)}
      66% {box-shadow: calc(3px + var(--loader-width)) 0 var(--loader-color2), calc(-1 * var(--loader-width) - 3px) 0 var(--loader-color1); background: var(--loader-color2)}
      100%{box-shadow: calc(3px + var(--loader-width)) 0 var(--loader-color2), calc(-1 * var(--loader-width) - 3px) 0 var(--loader-color1); background: var(--loader-color1)}
}
