.container-norm {
    max-width: 1140px;
    margin: auto;
    padding-left: 12px;
    padding-right: 12px;
}

.text-green,
p a {
    color: var(--green);
}

p a:hover {
    color: #000;
    text-decoration: underline;
}

.quantity {
    border: 1px solid #dddddd;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    overflow: hidden;
    display: flex;
    width: 150px;
}

.quantity .input-group-btn {
    display: flex;
    flex: 0 0 40px;
}

.quantity .input-group-btn .quantity-btn {
    width: 50px;
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    font-size: 0.875rem;
    color: #a3a3a3;
}

.quantity .input-group-btn .quantity-btn.quantity-plus {
    border-width: 0 0 0 1px;
}

.quantity .input-group-btn .quantity-btn.quantity-minus {
    border-width: 1px 0 0 1px;
}

.quantity .qty {
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 48px;
    text-align: center;
    padding: 1px;
    background-color: #fff;
    font-size: 16px;
    line-height: 1;
    color: #000;
    width: 50px;
    outline: 0;
    margin: 0;
    border: none;
    border-right: 1px solid #dddddd;
    border-left: 1px solid #dddddd;
}

.quantity input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@media screen and (max-width: 767px) {
    .quantity .qty {
        height: 35px;
        width: 55px;
    }

    .quantity .input-group-btn .quantity-btn {
        width: 40px;
    }
}

.coupon-applied {
    padding: 10px 20px;
    border-radius: 15px;
    background: #93c572;
    color: white;
    font-weight: 600;
    position: relative;
}

.remove-coupon {
    position: absolute;
    top: -5px;
    right: -5px;
    height: 20px;
    width: 20px;
    background: red;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    border-radius: 50%;
}

.quantity.disabled {
    position: relative;
}

.quantity.disabled:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0.3;
    background: white;
    cursor: not-allowed;
}
