﻿
#order-modal {
}

    #order-modal .content {
        display: flex;
    }

        #order-modal .content .quantity-title {
            min-width: 160px;
            position: relative;
            min-height: 360px;
            background: #e4f4ed;
            padding-right: 10px;
            padding-top: 20px;
            border-top-right-radius: 10px;
            border-bottom-right-radius: 10px;
        }

            #order-modal .content .quantity-title .movable-wrapper {
            }

            #order-modal .content .quantity-title .movable-background,
            #order-modal .content .quantity-title .price-item {
                height: 40px;
                padding-top: 10px;
                padding-right: 20px;
                padding-left: 10px;
            }

            #order-modal .content .quantity-title .price-item {
                cursor: pointer;
            }

            #order-modal .content .quantity-title .movable-background {
                border-top-right-radius: 20px;
                border-bottom-right-radius: 20px;
                background: #bac6ff;
                box-shadow: 5px 0px 5px 0px #95e3c154;
                position: relative;
                transition: all .2s;
            }

            #order-modal .content .quantity-title .quantity-list {
                position: absolute;
                top: 0;
                right: 0;
                width: 100%;
                padding-top: 20px;
            }

        #order-modal .content .picker {
            flex: 1;
            background: #bac6ff;
            border-top-left-radius: 10px;
            border-bottom-left-radius: 10px;
            /*            border-bottom-right-radius: 10px;*/
            margin-right: -1px;
            display: flex;
            flex-direction: column;
        }

            #order-modal .content .picker .spacer {
                flex: 1;
            }

    #order-modal input#Quantity {
        width: 120px;
        direction: ltr;
        text-align: center;
        font-size: 14pt;
        font-weight: bold;
        font-family: sans-serif, Tahoma, Arial;
    }

    #order-modal table .price {
        font-size: 1.5rem;
    }
