[v-cloak] {
  display: none;
}

.tabs-bordered li a, .tabs-bordered li a:hover, .tabs-bordered li a {
    font-size: smaller !important;
}

#topnav .navigation-menu>li>a {
    font-size: small !important;
}

.account-box {
    /* text-align: center; */
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.lg-bx {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #e6e1e1;
    border-top: 4px solid #444;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.16), 0 2px 6px 0 rgba(0, 0, 0, 0.12);
}

.round {
    position: relative;
}

.round label {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    height: 20px;
    left: 0;
    position: absolute;
    top: 0;
    width: 20px;
}

.round label:after {
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 5px;
    left: 7px;
    opacity: 0;
    position: absolute;
    top: 8px;
    transform: rotate(-deg);
    width: 12px;
}

input[type="checkbox"] {
    /*visibility: hidden;*/
    color: red !important;
    font-size: 20px !important;
}

.round input[type="checkbox"]:checked+label {
    background-color: #66bb6a;
    border-color: #66bb6a;
}

.round input[type="checkbox"]:checked+label:after {
    opacity: 1;
}

.prd-card {
    border: 1px solid #eee;
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.10);
}

.prd-card-focused {
    background: #E3FCEC;
    border: 2px solid #A2F5BF;
}

.prd_qty {
    width: 40px !important;
    border-radius: 2px;
    box-shadow: none;
    border: 1px solid;
    padding: 2px 2px;
}

.mt-3 {
    font-size: 15px !important;
    font-weight: 600 !important;
}


/**
    http://1bestcsharp.blogspot.com/2017/08/javascript-table-column-values-sum.html
    var table = document.getElementById("table"), sumVal = 0;   
    for(var i = 1; i < table.rows.length; i++)
    {
        sumVal = sumVal + parseInt(table.rows[i].cells[2].innerHTML);
    }
    
    document.getElementById("val").innerHTML = "Sum Value = " + sumVal;
    console.log(sumVal);
*/