
/**************************************************
* Shopping cart tpl
*/
#customer-information {
    padding: 1rem;
}

#customer-information .custom-radio {
    margin-right: 0;
}

/*Account : list table*/
@media screen and (max-width:640px) {

    #quotation-list .hide-mobile {
        display: none;
    }
}

.cart-button-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: wrap;
}

.overlay {
    position: fixed;
    left: 0px;
    top:0px;
    background-color: rgba(0,0 ,0 , 0.5);
    width: 100%;
    height: 100%;
    z-index:999;
    display:none;
}

#print-quotation {
    width: 100%;
    margin-top: 2rem;
}

#customer-information footer {
    text-align:center;
}

.overlay h2{
    margin-bottom: 20px;
}

.popup{
    margin: auto;
    width: 90%;
    background-color: #ffffff;
    padding: 2em;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    max-width: 900px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.btnPopup {
    background-color: #c8102e;
    margin-top: 30px;
    padding: 1em 2em;
    cursor: pointer;
}

.btnPopup:hover{
    background-color: rgb(192, 192, 192);}

.btnClose {
    float: right;
    font-size:25pt;
    cursor: pointer;
    color: rgb(26, 26, 26);
    position: absolute;
    top: 10px;
    right: 10px;
}