﻿
body {
    background: white;
    font-size: 10pt;
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
    margin: 0px;
    padding: 0px;
    color: #333333;
}

textarea, input, select {
    font-size: 10pt;
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}


    /* Normal button */
    input[type=submit] {
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #7892c2), color-stop(1, #005cb8));
        background: -moz-linear-gradient(top, #7892c2 5%, #005cb8 100%);
        background: -webkit-linear-gradient(top, #7892c2 5%, #005cb8 100%);
        background: -o-linear-gradient(top, #7892c2 5%, #005cb8 100%);
        background: -ms-linear-gradient(top, #7892c2 5%, #005cb8 100%);
        background: linear-gradient(to bottom, #7892c2 5%, #005cb8 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7892c2', endColorstr='#005cb8',GradientType=0);
        background-color: #7892c2;
        -moz-border-radius: 22px;
        -webkit-border-radius: 22px;
        border-radius: 22px;
        border: 2px solid #4e6096;
        display: inline-block;
        cursor: pointer;
        color: #ffffff;
        font-family: Arial;
        font-size: 12px;
        padding: 4px 12px;
        text-decoration: none;
        text-shadow: 0px 0px 5px #283966;
    }

        /* Hover only applies to enabled buttons */
        input[type=submit]:hover:not(:disabled):not(.aspNetDisabled) {
            background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #005cb8), color-stop(1, #7892c2));
            background: -moz-linear-gradient(top, #005cb8 5%, #7892c2 100%);
            background: -webkit-linear-gradient(top, #005cb8 5%, #7892c2 100%);
            background: -o-linear-gradient(top, #005cb8 5%, #7892c2 100%);
            background: -ms-linear-gradient(top, #005cb8 5%, #7892c2 100%);
            background: linear-gradient(to bottom, #005cb8 5%, #7892c2 100%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#005cb8', endColorstr='#7892c2',GradientType=0);
            background-color: #005cb8;
        }

        /* Active only applies to enabled buttons */
        input[type=submit]:active:not(:disabled):not(.aspNetDisabled) {
            position: relative;
            top: 1px;
        }

.SmallButton input[type=submit] {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #4e6096;
    font-size: 10px;
    padding: 2px 6px;
}

.MasterHeader {
    position: relative;
    margin: 0px;
    padding: 0px;
    background: white;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Captions {
    text-decoration: none;
    color: #005cb8;
    font-weight: bold;
    font-size: 16px;
}

.Categories {
    font-size: 14px;
    font-weight: bold;
}

    .Categories a:link, a:visited {
        color: #005cb8;
        text-decoration: none;
        width: 125px;
        display: inline-block;
        padding-bottom: 5px;
        padding-left: 3px;
    }

    .Categories a:hover {
        background-color: #005cb8;
        color: white;
        text-decoration: none;
        width: 125px;
        display: inline-block;
        padding-bottom: 5px;
        padding-left: 3px;
    }

.pageCenter {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
    float: none;
}

.ProductThumbnail {
    border: 1px solid #aaa8aa;
    width: 150px;
    height: 150px;
    margin: 0px 8px 0px 0px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

    .ProductThumbnail input {
        align-self: center;
    }

.ProductTitle {
    width: 150px;
    margin: 0px 8px 8px 0px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    color: #005cb8;
    font-size: 11px;
}

.ItemThumbnail {
    border: 1px solid #aaa8aa;
    width: 150px;
    height: 150px;
    margin: 2px 0px 2px 0px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

    .ItemThumbnail input {
        align-self: center;
    }


.error {
    color: #c40000;
    font-size: 12px;
    font-weight: bold;
    min-height: 16px;
}

/* Modal popup
    -----------------------------------------------------*/
.modalBackground {
    background-color: Black;
    filter: alpha(opacity=60);
    opacity: 0.6;
    position: fixed;
    top: 0px;
    left: 0px;
}

.modalPopup {
    background-color: #FFFFFF;
    border: 3px solid #005cb8;
    border-radius: 12px;
    padding: 0px;
    margin: 20px;
}

    .modalPopup .header {
        background-color: #005cb8;
        height: 30px;
        color: White;
        line-height: 30px;
        text-align: center;
        font-weight: bold;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .modalPopup .PopupBody {
        min-height: 50px;
        font-weight: normal;
        max-height: calc(100vh - 150px);
        max-width: 100vw;
        overflow: auto;
        color: black;
    }

/* end Modal Popup -----------------------*/

div.Menu {
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
}

    div.Menu ul li ul {
        display: none;
    }

    div.Menu ul li {
        position: relative;
        float: left;
        list-style: none;
    }

    div.Menu ul {
        list-style: none;
        z-index: 10;
        margin: 0px;
        padding: 0px;
        width: auto;
    }

        /*inactive*/
        div.Menu ul li a, div.menu ul li a:visited {
            color: #005cb8;
            text-decoration: none;
            padding: 0px 8px 0px 8px;
        }

            /*hover*/
            div.Menu ul li a:hover {
                background-color: #005cb8;
                color: white;
                text-decoration: none;
            }

.cartCount {
    background-color: #005cb8;
    color: white;
    font-size: 10px;
    vertical-align: top;
    padding: 0px 3px 0px 3px;
    margin-left: 2px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

/* Encryption Strength*/
.VeryPoorStrength, .WeakStrength, .AverageStrength, .GoodStrength, .ExcellentStrength {
    padding: 0px 5px 1px 5px;
    margin-top: 1px;
    margin-left: 15px;
    font-size: 11px;
}

.VeryPoorStrength {
    background: Red;
    color: White;
}

.WeakStrength {
    background: Red;
    color: White;
}

.AverageStrength {
    background: orange;
    color: black;
}

.GoodStrength {
    background: blue;
    color: White;
}

.ExcellentStrength {
    background: Green;
    color: White;
}

/* OrderWatch page*/
.OrderwatchTable {
    display: table;
    width: 160px;
}

.OrderwatchTableRow {
    display: table-row;
    height: 50px;
}

.OrderwatchTableCell {
    display: table-cell;
    vertical-align: middle;
    padding: 3px;
}

.OrderwatchLink {
    text-decoration: none;
    color: #333333;
}

.Loading {
    position: fixed;
    left: 50%;
    top: 25%;
    background-color: black;
    z-index: 100;
    height: 50px;
    width: 150px;
    margin-left: -75px;
    line-height: 50px;
    text-align: center;
    font-weight: bold;
    border-radius: 10px;
    color: white;
    display: flex;
    justify-content: space-around;
    padding-left: 25px;
    padding-right: 25px;
}

.Greenbar {
    background-color: #f8f8ff;
}
