
/* CSS */
button, input[type=button], input[type=submit], .button {
    background-color: orange;
    border: 1px solid #d5d9d9;
    border-radius: 8px;
    box-shadow: rgb(213 217 217 / 50%) 3px 2px 3px 0px;
    box-sizing: border-box;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-family: sans-serif!important;
    font-size: 13px!important;
    /*line-height: 30px!important;*/
    padding: 8px!important;
    position: relative;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    width: 100%;
    margin-bottom: 1em!important;
}

.redButton{
    background-color: #f44336;
    color: yellow;
}

button:hover,input[type=button]:hover, input[type=submit]:hover, .button:hover, .redButton:hover {
    color:greenyellow;
}

button:focus,input[type=button]:focus, input[type=submit]:focus, .button:focus {
    /*border-color: #008296;
    box-shadow: rgba(213, 217, 217, .5) 0 2px 5px 0;
    outline: 0;
    */
}

button:disabled,input[type=button]:disabled, input[type=submit]:disabled, .button:disabled {
    color: orange;
}

button:active,input[type=button]:active, input[type=submit]:active, .button:active {
    color: limegreen;
}

.ptPanel{
    width: 150px;
    margin-right: 1em;
    margin-bottom: 1em;
    border-radius: 0.7em;
    border-top-right-radius: 0.3em;
    border-bottom-left-radius: 0.3em;
    min-height: 195px;
    background-color: white;
    box-shadow: 2px 2px #d5d9d9;
    text-align: center;
    display: inline-block;
}
.ptLabel{
    color: white;
    background-color: darkorange;
    border-top-left-radius: 0.7em;
    border-top-right-radius: 0.3em;
    /*height: 45px;*/
    min-height: 45px;
    padding: 5px;
    /*vertical-align: middle;*/
    display: flex;
    align-items: center;
    justify-content: center;
    min-width:150px;
}
.pdPanel{
    width: 215px;
    width: 180px;
    margin-right: 1em;
    margin-bottom: 1em;
    border-radius: 0.7em;
    height: auto;
    background-color: white;
    box-shadow: 2px 2px #d5d9d9;
    text-align: center;
    display: inline-block;
    flex-shrink: 0;
    flex-grow: 0;
    font-family: sans-serif;
}
.popup{
    display: none;
    position: fixed;
    border: 3px solid #f1f1f1;
    z-index: 9;
    /*top: 50%*/
    top: 52px;
    left: 50%;
    /*transform: translate(-50%, -50%);*/
    transform: translate(-50%);
    width: 90%;
    max-width: 600px
}
select{
    width: 100%;
    padding: 10px;
    border-radius: 0.5em;
    background-color: white;
    margin-bottom: 1em!important;
    border: 1px solid orange;
    color: gray;
}
textarea{
    border-radius: 0.3em;
    border: 1px gray solid;
    margin-bottom: 1em!important;
    background-color: #eee;

}
input[type=text], input[type=number]{
    width: 100%;
    padding: 10px;
    border-radius: 0.7em;
    color: limegreen;
    margin-bottom: 1em!important;
    border: 1px solid orange;
}
.cartIcon{
    position: fixed;
    top: 2px;
    right: 59px;
    width: 35px;
    height: 36px;
    background-color: white;
    border-radius: 20px;
    padding: 8px;
    z-index: 5;
    font-size: 16px;
    color: orange;
    border: 1px solid orange;
}
.shoppingcartQty{
    position: fixed;
    top: 5px;
    right: 7px;
    width: 80px;
    height: 30px;
    z-index: 4;
    text-align: right;
    font-size: 20px;
    background-color: white;
    font-weight: normal;
    border-radius: 10px;
    padding-top: 3px;
    font-family: fantasy;
    color: limegreen;
    padding-right: 15px;
    padding-bottom: 0px;
}
.destPanel{
    padding: 1em;
    border-radius: 0.7em;
    border: 1px solid lightgray;
}
.closeButton{
    position: fixed;
    right: 3px;
    top: 3px;
    text-align: center;
    border-radius: 2em;
    height: 35px;
    width: 35px;
    padding: 9px;
    background-color: red;
    color: greenyellow;
    font-weight: bold;
}
.productImage{
    border: 1px solid #ddd;
    box-shadow: 1px 1px 5px 0px #ddd;
    border-radius: 5px;
}
.divProductImage{
    height: 150px;
    padding-top: 0;
    margin-top: 5px;
    margin-bottom: 5px;
}

.sunkenDiv{
    background-color: #eee;
    padding: 1em;
    box-shadow: 0px 0px 5px 1px #999 inset;
    border-radius: 5px;
}

.raisedDiv{
    overflow-y: auto;
    border: 1px dotted darkgray;
    border-radius: 5px;
    box-shadow: 2px 2px 5px 1px lightgray;
    margin-bottom: 20px;
}

.panelSectionTitle{
    color: darkorange;
    display: block;
    font-size: 10px;
    border-bottom: 1px solid darkorange;
    margin-bottom: 1em;
    margin-top: 1em;
}