.btn_orange{
    border: none;
}
.popup-window-content p{
    margin-top: 30px;
}
.product_action a.active{
    pointer-events: none;
    cursor: default;
}
.btn_orange {
    cursor: pointer;
}
.btn_orange.mt20{
    margin-top: 0;
}

.product-item-buttons{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.product-item-buttons__button{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 120px;
    flex: 0 0 120px;
}
.product-item-buttons__amount{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 120px;
    flex: 0 0 120px;
    margin-right: 8px;
}
.product-item-amount-field-container{
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
input.product-item-amount-field{
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    height: 100%;
    padding: 12px 2px;
    border: 0;
    text-align: center;
}
.product-item-amount-field::-webkit-outer-spin-button,
.product-item-amount-field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.product-item-amount-field[type=number] {
    -moz-appearance: textfield;
}
.product-item-amount-field-btn-minus,
.product-item-amount-field-btn-plus{
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 3px;
    font-size: 20px;
    font-family: Monospace, sans-serif;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: 0.1s;
    transition: 0.1s;
}
.product-item-amount-field-btn-minus:hover,
.product-item-amount-field-btn-plus:hover{
    background: #f1f1f1;
    -webkit-transition: 0.1s;
    transition: 0.1s;
}

.product-item-amount-description-container{
    position: absolute;
    bottom: -23px;
}
.product-item-amount-description-container strong{
    font-weight: normal;
}

@media (max-width: 540px) {
    .product-item-buttons{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .product-item-buttons__amount,
    .product-item-buttons__button{
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-right: 0;
    }
    .product-item-buttons__amount{
        margin-bottom: 4px;
    }
}