﻿/*** 2023 DNN Incentives Styles 25 ***/

/*#region Basic Wrapper */

:placeholder-shown {
    color: orange;
}

/* module wrapper */
.wmcssbase {
    margin-top: 1rem;
    padding: 0 .5rem;
}

    .wmcssbase h1, .wmcssbase h2, .wmcssbase h3, .wmcssbase h4, .wmcssbase h5, .wmcssbase h6 {
        font-weight: 500;
    }

    .wmcssbase h2 {
        font-size: 1.5rem;
        font-weight: 550;
    }

    .wmcssbase p, .wmcssbase li, .wmcssbase .normal, .wmcssbase .Normal, .wmcssbase table {
    }

.wmcssbase {
}

/* Block wrapper, also driven by block.ascx control */
.wmblock {
    /*   font-size: .9rem;
    background-color: #f5f6f9;
    border: 1px solid #d2d7e7;
    border-radius: 5px;
    padding: 1rem;
    margin-bottom:1rem;*/
}

.wmblock2 {
    /*position:fixed;
top:7vh;
right:7vh;*/
    font-size: .85rem;
    /*background-color: #f5f6f9;
    border: 1px solid #d2d7e7;
    border-radius: 4px;
    padding: .7rem;
    margin-bottom: 1rem;*/
    /*width: 225px;
    max-width: 250px;*/
}

/* Header icon common, expects a 75x75 image, class applies to img */
.wmheadericon {
    float: left;
    margin-right: 1rem;
}
    /* Header Icon, assumes h2 follows icons, check */
    .wmheadericon + h2 {
        margin-bottom: 0;
    }

.wmrow {
    display: flex;
}

/* correct banner efect not wanted. */
.dnnSortable {
    min-height: 0px !important;
}

/* Quick hide on mobile, can be used anywhere */
@media screen and (max-width: 992px) {
    .wmhideontablet {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .wmhideonmobile {
        display: none;
    }
}

@media screen and (max-width: 420px) {
    .wmhideonmini {
        display: none;
    }
}

/*#endregion*/

/*#region Typography */
/* Typography */
.wmlead {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 125%;
}

.wmsmall {
    font-size: .8rem;
}
.wmsmaller {
    font-size: 11px;
}

/* Horz Rule Style */
hr.wmhr {
    border: 0;
    border-top: 2px solid #d5d5d5;
    margin: 2rem 0;
}

.wmcssbase em {
    font-size: .8rem;
}

/*#endregion*/

/*#region Error/Info Messages */
/* error, system, success, warning, info messages, use on error control or divs */

.msg_error, .msg_warning, .msg_system, .msg_success, .msg_info {
    margin: 20px 0px;
    border-width: 1px;
    border-style: solid;
    font-size: 12px;
    color: #444444;
    border-radius: 4px;
    padding: 11px 10px 10px 44px;
    display: block;
    position: relative;
}

    .msg_error::before, .msg_warning::before, .msg_system::before, .msg_success::before, .msg_info::before {
        font-family: 'Font Awesome 6 Free';
        font-size: 20px;
        margin: 0 .8rem 0 0;
        font-weight: 900;
        position: absolute;
        top: 4px;
        left: 12px;
    }

.msg_error {
    background-color: #fbecec; /*pink/red */
    border-color: #C10000;
}

    .msg_error::before {
        content: '\f28d';
        color: #C10000;
    }

.msg_warning {
    background-color: #f9f2e4; /* orange/amber */
    border-color: #ffb01c;
}

    .msg_warning::before {
        content: '\f071';
        color: #ffb01c;
    }

.msg_info {
    background-color: #fbfbec; /* yellow/light */
    border-color: #ebde7a;
}

    .msg_info::before {
        content: '\f05a';
        color: #ebde7a;
    }

.msg_system {
    background-color: #e8f3ff;
    border-color: #549ceb;
}
    .msg_system::before {
        content: '\f06a';
        color: #549ceb;
    }

.msg_success {
    background-color: #edffef; /* lt green, green */
    border-color: #57B161;
}

    .msg_success::before {
        content: '\f058';
        color: #57B161;
    }

/*[id$=GenericError], [id$=OptionError] {
    position: fixed;
    z-index: 1100;
    top: 120px;
    max-width: 800px;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    animation: fadeOut ease 3s;
    -webkit-animation: fadeOut ease 3s;
    -moz-animation: fadeOut ease 3s;
    -o-animation: fadeOut ease 3s;
    -ms-animation: fadeOut ease 3s;
    animation-delay: 5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;

    @keyframes fadeOut {
        0% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    @-moz-keyframes fadeOut {
        0% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    @-webkit-keyframes fadeOut {
        0% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    @-o-keyframes fadeOut {
        0% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    @-ms-keyframes fadeOut {
        0% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }
}

@media screen and (max-width:768px) {
    [id$=GenericError], [id$=OptionError] {
        top: 160px;
    }
}*/

/*#endregion*/

/*#region Form Elements */

/* Simple Form */

.wmform {
}

    .wmform > div { /* acts as container around div label and div field, allows for css flexibility in forms, creating columns, can include multiple pairs (groups them for columns). 
        e.g.    <div>
                    <div class="wmlabel">Name:</div>
                    <div class="wmfield">Input</div>
                <div>*/
        break-inside: avoid;
    }

    .wmform .wmlabel {
        font-size: .9rem;
        font-weight: 550;
        margin-bottom: 0;
    }

    .wmform .wmfield {
        margin-bottom: .9rem;
    }

    .wmform input[type=checkbox], .wmform input[type=radio] {
        box-sizing: border-box;
        padding: 0;
        margin-right: .5rem;
    }

        .wmform input[type=checkbox] + label, .wmform input[type=radio] + label {
            margin-right: 1rem;
        }

    .wmform input[type=text], input[type=password], .wmform select, wmform textarea {
        border: 1px solid #d1d1d1;
        padding: 2px 5px;
        margin: 0;
        /*color:blue;*/
    }

        .wmform input[type=text].wminputwide, .wmform input[type=password].wminputwide, .wmform select.wminputwide, wmform textarea.wminputwide {
            width: 98%;
            max-width: 98%;
        }

        /*mmj.240207*/
        .wmform input[type=text].wmreq, .wmform input[type=password].wmreq, .wmform select.wmreq {
            height: 28px;
            margin: 1px 0;
            border-width: 1px 1px 1px 5px;
            border-color: #767676 #767676 #767676 red;
        }
     .wmform textarea.wmreq {        
        margin: 1px 0;
        border-width: 1px 1px 1px 5px;
        border-color: #767676 #767676 #767676 red;
    }


    /* Form as row */
    .wmform.wmformrow {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

        .wmform.wmformrow > div {
            margin-right: 1rem;
        }


.wmformtable {
    /* centers table if used */
    display: table;
    margin: auto;
}

.wmrequired {
    color: red;
}

/* Class for some text areas, adapt to mobile */
.wmtextarea {
    width: 100%;
    min-height: 100px;
}






/*#endregion*/

/*#region Fancy Toggle */
/* The switch - the box around the slider */
.wmtogglebox {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

    /* Hide default HTML checkbox */
    .wmtogglebox input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The toggle */
.wmtoggle {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .wmtoggle:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 4px;
        bottom: 3px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .wmtoggle {
    background-color: #2196F3;
}

input:focus + .wmtoggle {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .wmtoggle:before {
    -webkit-transform: translateX(22px);
    -ms-transform: translateX(22px);
    transform: translateX(22px);
}

/* Rounded toggle */
.wmtoggle.round {
    border-radius: 20px;
}

    .wmtoggle.round:before {
        border-radius: 50%;
    }


/*#endregion */

/*#region Quick Columns */
.wm2column {
    column-count: 2;
}

.wm3column {
    column-count: 3;
}

.wm4column {
    column-count: 4;
}

    .wm2column > div, .wm3column > div, .wm4column > div { /* acts as container around non-breakable content blocks, allows for css flexibility in creating columns*/
        break-inside: avoid;
    }


@media screen and (max-width:992px) {

    .wm3column {
        column-count: 2;
    }

    .wm4column {
        column-count: 2;
    }
}

@media screen and (max-width:768px) {

    .wm2column, .wm3column, .wm4column {
        margin: auto;
        display: table;
    }

    .wm2column {
        column-count: 1;
    }

    .wm3column {
        column-count: 1;
    }

    .wm4column {
        column-count: 1;
    }
}
/*#endregion*/

/*#region Buttons */
/* Buttons */
.wmbtnstyle1 {
    border-width: 2px;
    border-radius: 2px;
    border-color: #1f5789;
    border-style: solid;
    padding: 0.6rem 1.4rem;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    text-shadow: none;
    transition: all .5s ease;
    background: #1f5789;
}

/* Smaller buttons, common. use with dnnPrimaryAction */
.wmbtnstyle2,
input[type="submit"].wmbtnstyle2, input[type="button"].wmbtnstyle2, a.wmbtnstyle2, a:link.wmbtnstyle2, a:visited.wmbtnstyle2 {    
    padding: 0.3rem 0.6rem 0.2rem !important;
    font-size: 1.1rem !important;
  
}

   /* .wmbtnstyle2:hover,
    input[type="submit"].wmbtnstyle2:hover, input[type="button"].wmbtnstyle2:hover, a.wmbtnstyle2:hover {
        background: #559cdb;
    }*/
/* rounded simple btn2 variation, uncomment to use */
/*.wmbtnstyle2, input[type="submit"].wmbtnstyle2, input[type="button"].wmbtnstyle2, a.wmbtnstyle2, a:link.wmbtnstyle2, a:visited.wmbtnstyle2 {
    border-width: 0px;
    border-radius: 25px;
    border-color: #1f5789;
    border-style: solid;
    padding: 0.3rem 0.8rem 0.4rem;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0 0.1rem;
}*/


/* Used on categoryTree page */
.wmbtnstyle3, input[type="submit"].wmbtnstyle3, a.wmbtnstyle3, a:link.wmbtnstyle3, a:visited.wmbtnstyle3 {
    border-width: 0;
    border-radius: 0;
    padding: 0.1rem 0.6rem;
    font-size: 11px;
    font-weight: 400;
    color: blue;
    text-transform: none;
    text-decoration: none;
    text-shadow: none;
    transition: all .5s ease;
    background: transparent;
    margin: .3rem 0.1rem .3rem 0;
}

/* Like dnn secondary action, subdued, gray  */
.wmbtnstyle4,
input[type="submit"].wmbtnstyle4, a.wmbtnstyle4, a:link.wmbtnstyle4, a:visited.wmbtnstyle4 {
    border-radius: 1px;
    border: 1px solid #d1d1d1;
    padding: 3px 5px;
    font-size: 0.9rem;
    font-weight: 400;
    color: #444;
    text-transform: none;
    text-decoration: none;
    text-shadow: none;
    transition: all .5s ease;
    background: #f5f6f9;
    margin: 0 0.1rem;
}

    .wmbtnstyle4:hover,
    input[type="submit"].wmbtnstyle4:hover, a.wmbtnstyle4:hover {
        border-radius: 1px;
        background: #f5f6f9;
    }

.wmbtnright {
    float: right;
}

/* Delete Button, used with .wmbtnstyleX */
.wmbtndelete, a.wmbtndelete, input[type=submit].wmbtndelete {
    border-color: #777;
    padding: 0.1rem 0.6rem 0.2rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: #777;
    background: #f2f2f2;
}

    .wmbtndelete:hover, a.wmbtndelete:hover, input[type=submit].wmbtndelete:hover {
        border-color: #e1810a;
        color: #fff;
        background: #df8b24;
    }

/*mmj.230410*/
.btn-disable {
    cursor: not-allowed;
    pointer-events: none;
    /*Button disabled - CSS color class*/
    color: #c0c0c0;
    background-color: #ffffff !important;
}

/*#endregion*/

/*#region Tabs */
.wmtabs {
    display: flex;
    justify-content: flex-start;
    padding: 0px;
    margin: 0 0 1rem 0;
    border-bottom: 1px solid #d5d5d5;
    clear: both;
}

    .wmtabs div {
        font-size: .9rem;
        border: 1px solid #d2d7e7;
        padding: 0.3rem 1rem;
        border-radius: 5px 5px 0 0;
        margin-bottom: -1px;
        background-color: #f5f6f9;
    }

        .wmtabs div:first-child {
            margin-left: 0.5rem;
        }

        .wmtabs div, .wmtabs div a:link, .wmtabs div a:visited, .wmtabs div a:hover {
            font-weight: 550;
        }

            .wmtabs div a:hover {
                color: blue;
                text-decoration: none;
            }

    .wmtabs .active {
        background: #ffffff;
        border-bottom: 1px solid #ffffff;
    }

@media screen and (max-width:992px) {
    .wmtabs {
        flex-wrap: wrap;
        border-bottom: 0px solid #d2d7e7;
    }

        .wmtabs div:first-child {
            margin-left: 5px;
        }

        .wmtabs .wmtab, .wmtabs .wmtab.active {
            flex-basis: calc(50% - 10px);
            margin: 5px;
            border-radius: 5px;
            text-align: center;
            border: 1px solid #d2d7e7;
        }
}








/*#endregion*/

/*#region Admin dashboard links */

.wmdashboardlinks {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .wmdashboardlinks > div:nth-child(1) {
        flex-basis: 60%;
    }

    .wmdashboardlinks > div:nth-child(2) {
        flex-basis: 40%;
    }

    .wmdashboardlinks ul.wmissueaward .wmissuebtn a {
        background: url(images/wbigarrow1.png) no-repeat left top/contain;
        padding-left: 3rem;
    }

        .wmdashboardlinks ul.wmissueaward .wmissuebtn a:hover {
            background: #f5f6f9 url(images/wbigarrow1.png) no-repeat left top/contain;
        }

@media screen and (max-width:768px) {
    .wmdashboardlinks {
        flex-wrap: wrap;
    }

        .wmdashboardlinks > div {
            margin-bottom: 1rem;
        }

            .wmdashboardlinks > div:nth-child(1), .wmdashboardlinks > div:nth-child(2) {
                flex-basis: 100%;
            }
}

.wmadmindashboardlinks {
    padding-left: 2rem;
    padding-top: 1rem;
}

.wmadmindashboardtitle {
    font-size: 1.1rem;
    font-weight: 550;
}

.wmadmindashboardlinks .wmslideheader a {
    font-size: 1.1rem;
    font-weight: 550;
}

.wmadmindashboardlinks ul.wmfabullets3 {
    padding-left: 2rem;
    margin-top: .8rem;
}
/*#endregion*/

/*#region Bullets */
/* Font Awesome Bullets 1 */
ul .wmfabullets1 {
    padding-left: 0rem;
    list-style: none;
    margin-left: 0;
}

    ul.wmfabullets1 > li {
        margin-bottom: .7rem;
    }

        ul.wmfabullets1 > li::before {
            font-family: 'Font Awesome 6 Free';
            content: '\f152';
            margin: 0 .8rem 0 0;
            color: #d5d5d5;
            font-weight: 900;
        }

/* Font Awesome Bullets 2 */
ul.wmfabullets2 {
    padding-left: 0rem;
    list-style: none;
    margin-left: 0;
}

    ul.wmfabullets2 > li {
        margin-bottom: .7rem;
    }

        ul.wmfabullets2 > li::before {
            font-family: 'Font Awesome 6 Free';
            content: '\f152';
            margin: 0 .8rem 0 0;
            color: #f2f2f2;
            font-weight: 900;
        }

/* Font Awesome Bullets 3 */
ul.wmfabullets3 {
    padding-left: 0rem;
    list-style: none;
    margin-left: 0;
}

    ul.wmfabullets3 > li {
        margin-bottom: .7rem;
    }

        ul.wmfabullets3 > li::before {
            font-family: 'Font Awesome 6 Free';
            content: '\f0da';
            margin: 0 .8rem 0 0;
            /*color: #dfc383;*/
            font-weight: 900;
            margin-left: -1.2rem;
        }

/* Font Awesome Bullets 4 */
ul.wmfabullets4 {
    padding-left: .4rem;
    list-style: none;
    margin-left: 0;
}

    ul.wmfabullets4 > li {
        margin-bottom: .4rem;
    }

        ul.wmfabullets4 > li::before {
            font-family: 'Font Awesome 6 Free';
            content: '\f152';
            margin: 0 .8rem 0 0;
            color: #d5d5d5;
            font-weight: 900;
        }


/* Small bullets, can use for all fabullets */
ul.wmfabulletssmall > li {
    font-size: .8rem !important;
}

/*#endregion*/

/*#region Gridview */
.wmgrid {
    width: 100%;
    border-color: #d5d5d5;
    margin-bottom: 1rem;
}

    .wmgrid td {
        padding: .2rem .3rem;
        font-size: 0.8rem;
    }

.wmgridlg td {
    font-size: 1rem;
    padding: .5rem .5rem;
}

.wmgridheader {
    background-color: #ededed;
}

    .wmgridheader th, .wmgridheader th a, .wmgridheader th a:link, .wmgridheader th a:visited {
        padding: .2rem .3rem;
        font-size: 0.8rem;
        font-weight: 600;
        color: #777;
        vertical-align: middle;
    }

        .wmgridheader th a::after {
            content: "\f0dc";
            font-size: 12px;
            font-weight: 900;
            font-family: 'Font Awesome 6 Free';
            color: #c1c1c1;
            padding: 0 0 0 5px;
            top: 1px;
            position: relative;
            display: inline-block;
        }

.wmgridrow {
    background-color: #ffffff;
}

.wmgridrowalt {
    background-color: #f5f6f9;
}

.wmgridtopleft {
    text-align: left;
    vertical-align: top;
}

.wmgridtopcenter {
    text-align: center;
    vertical-align: top;
}

.wmgridtopright {
    text-align: right;
    vertical-align: top;
}

.wmgridempty {
    text-align: center;
    padding: 20px;
    color: #508BCD;
    font-size: 1.1rem;
}

.wmgrid .fas {
    font-size: 1.1rem;
    color: #65718d;
}

.wmgridborder {
    border-color: #ffffff;
}

    .wmgridborder > tbody > tr {
        border-bottom: 1px solid #d5d5d5;
    }

.wmgridpoints, .wmgrid td.wmgridpoints {
    vertical-align: middle;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}
    /* for approavl que points column */
    .wmgrid td.wmgridpoints.wmgridtopcenter.wmgridforcetop {
        vertical-align: top !important;
    }

/* For smaller text on busy grids */
.wmgrid.wmgridsmalltext td {
    padding: 2px 3px;
    font-size: 12px;
}

/* Colored link on small grid */
    .wmgrid.wmgridsmalltext td a {
        color: #2577bf;
    }

/* Grid Header 2 - style change */
.wmgridheader2 {
    background-color: transparent;
}

    .wmgridheader2 th, .wmgridheader2 th a, .wmgridheader2 th a:link, .wmgridheader2 th a:visited {
        padding: .2rem .3rem;
        font-size: 1rem;
        font-weight: 550;
        color: #1f5789;
        vertical-align: middle;
    }

        .wmgridheader2 th a::after {
            content: "\f0dc";
            font-size: 12px;
            font-weight: 900;
            font-family: 'Font Awesome 6 Free';
            color: #1f5789;
            padding: 0 0 0 5px;
            top: 1px;
            position: relative;
            display: inline-block;
        }

/* Grid Header 3 - style change */
.wmgridheader3 {
    background-color: #e0e3eb;
}

    .wmgridheader3 th, .wmgridheader3 th a, .wmgridheader3 th a:link, .wmgridheader3 th a:visited {
        padding: .2rem .3rem;
        font-size: .9rem;
        font-weight: 550;
        color: #1f5789;
        vertical-align: middle;
    }

        .wmgridheader3 th a::after {
            content: "\f0dc";
            font-size: 12px;
            font-weight: 900;
            font-family: 'Font Awesome 6 Free';
            color: #1f5789;
            padding: 0 0 0 5px;
            top: 1px;
            position: relative;
            display: inline-block;
        }






/* Used on gridview, supplemental class */
.wmgridawardiconsmall img {
    max-width: 36px;
}

.wmgridawardiconsmall td {
    padding: 0.5rem 0.5rem;
    vertical-align: middle;
}

.wmgridgroupheader, .helper_group_header {
    font-weight: bold;
    background-color: #c6cfe5;
}

.wmgridstyle2 {
}

    .wmgridstyle2 .wmgridheader {
        background-color: #d2d7e1;
    }

        .wmgridstyle2 .wmgridheader th, .wmgridstyle2 .wmgridheader th a, .wmgridstyle2 .wmgridheader th a:link, .wmgridstyle2 .wmgridheader th a:visited {
            padding: .2rem .3rem;
            font-size: 0.8rem;
            font-weight: 600;
            color: #444444;
        }

            .wmgridstyle2 .wmgridheader th a::after {
                content: "\f0dc";
                font-size: 12px;
                font-weight: 900;
                font-family: 'Font Awesome 6 Free';
                color: #444444;
                padding: 0 0 0 5px;
                top: 1px;
                position: relative;
                display: inline-block;
            }
/* heavier bolder grid */
.wmgridbold > tbody > tr > td {
    font-size: 1rem;
    font-weight: 550;
    vertical-align: middle;
}

@media screen and (max-width:768px) {
    .wmgridbold > tbody > tr > td {
        font-size: .9rem;
        font-weight: 550;
    }
}
/*#endregion*/

/*#region Grid Colors, for division and employee grids */
.wmgridcolor1 {
}

/*division*/
.wmgridcolor2 {
    border-color: #d5d5d5;
}

    .wmgridcolor2 .wmgridheader3 {
        background-color: #e9e2d9;
    }

    .wmgridcolor2 .wmgridrowalt {
        background-color: #f2efeb;
    }

/*emloyee*/

.wmgridcolor3 {
    border-color: #d5d5d5;
}

    .wmgridcolor3 .wmgridheader3 {
        background-color: #deeddf;
    }

    .wmgridcolor3 .wmgridrowalt {
        background-color: #f2f8f2;
    }


/*#endregion */

/*#region Grid for Issue Award Page */

/* gridview*/
.wmgridcustom1 {
    width: 100%;
}

    .wmgridcustom1, .wmgridcustom1 th, .wmgridcustom1 td {
        border: none;
    }

        .wmgridcustom1 tbody tr:nth-child(1) {
            display: none;
            border: none;
        }

/* link wrapper on row */
.wmissuebtn {
}

    .wmissuebtn:hover {
        text-decoration: none;
    }

/*#region custom grid row 1 */
/* box for row */
.wmgridcustom1box.wmsoftbox {
    padding: 0 !important;
    border: 5px solid #cbd7df;
    margin: .5rem 0;
}

/* inner wrapper on row for flex */
.wmgridcustom1boxrow {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}
    /* icon box */
    .wmgridcustom1boxrow > div:nth-child(1) {
        padding: 1rem 0 1rem 1rem;
    }
    /* decription box */
    .wmgridcustom1boxrow > div:nth-child(2) {
        flex-basis: 65%;
        padding: 1rem;
        flex-grow: 1;
    }
    /* points btn box */
    .wmgridcustom1boxrow > div:nth-child(3) {
        flex-basis: 25%;
        padding: .8rem .5rem .5rem;
        background: #f5f6f9;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 8% 50%);
    }


.wmgridcustom2 {
    width: 100%;
    border: 1px solid #ffffff;
    border-bottom: 1px solid #d5d5d5;
}

    .wmgridcustom2 tbody tr:first-child {
        display: none;
    }


    .wmgridcustom2 td {
        padding: 0.5rem 0px;
    }

/* End date styling*/
.wmawardend {
    background: #ffffde;
}


/*#endregion */

/*#region custom grid row 2 (edit awards) */
/* box for row */
.wmgridcustom2box.wmsoftbox {
    padding: 0 !important;
    border: 5px solid #cbd7df;
    margin: .5rem 5px;
}

/* inner wrapper on row for flex */
.wmgridcustom2boxrow {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}
    /* icon box */
    .wmgridcustom2boxrow > div:nth-child(1) {
        padding: 1rem 0 1rem 1rem;
    }
    /* decription box */
    .wmgridcustom2boxrow > div:nth-child(2) {
        flex-basis: 55%;
        padding: 1rem;
        flex-grow: 1;
    }
    /* points btn box */
    .wmgridcustom2boxrow > div:nth-child(3) {
        flex-basis: 20%;
        padding: .8rem .5rem .5rem;
        background: #f5f6f9;
        clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%, 8% 50%);
    }

    /* controls box */
    .wmgridcustom2boxrow > div:nth-child(4) {
        flex-basis: 20%;
        padding: 0 .5rem 0 1.2rem;
        align-self: center;
    }


@media screen and (max-width:992px) {
    .wmgridcustom2box.wmsoftbox {
    }

    .wmgridcustom2boxrow {
        flex-wrap: wrap;
    }
        /* icon box */
        .wmgridcustom2boxrow > div:nth-child(1) {
            padding: .8rem 0 .8rem 5px;
            flex-basis: calc(20% - 5px);
        }
        /* decription box */
        .wmgridcustom2boxrow > div:nth-child(2) {
            flex-basis: calc(80% - 10px);
            padding: .8rem 5px;
            flex-grow: 1;
        }
        /* points btn box */
        .wmgridcustom2boxrow > div:nth-child(3) {
            flex-basis: calc(40% - 10px);
            padding: .8rem 5px;
            background: #f5f6f9;
            clip-path: none;
        }
        /* controls box */
        .wmgridcustom2boxrow > div:nth-child(4) {
            flex-basis: calc(60% - 10px);
            padding: 0 5px;
        }
}

/* for scrollable gridview */
.wmgridscroll {
    overflow-y: auto;
    overflow-x: auto;
}
/* for short scroll on gridview */
.wmgridscrollsmall {
    overflow-y: auto;
    overflow-x: auto;
    max-height: 300px;
}



/*#endregion */




/* points number box */
.wmissuepointsbox {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    padding-top: .8rem;
}
    /* points text */
    .wmissuepointsbox span:nth-child(2) {
        font-size: 12px;
        font-weight: 400;
        display: block;
        margin-top: -8px;
    }
    /* select recipients line */
    .wmissuepointsbox span:nth-child(3) {
        font-size: 1rem;
        font-weight: 600;
        display: block;
        margin-top: 8px;
    }

.wmissuebtn:hover .wmissuepointsbox, .wmselectedaward .wmissuepointsbox {
    text-decoration: none;
    color: #ffffff !important;
    background: #495a68 !important;
}

.wmissuebtn:hover .wmgridcustom1box.wmsoftbox, .wmgridcustom1box.wmsoftbox.wmselectedaward {
    background: #f5f6f9;
}

.wmselectedaward .wmissuepointsbox {
    padding-top: 1.8rem !important;
}





/* Setup for mobile */
@media screen and (max-width:768px) {
    .wmgridcustom1boxrow > div:nth-child(3) {
        clip-path: none;
    }

    .wmgridcustom1boxrow > div:nth-child(1) {
        padding: 1rem 0 1rem .5rem;
    }

    .wmgridcustom1boxrow > div:nth-child(2) {
        padding: 1rem .5rem;
    }
}

/* Points Colors, old but used */
.points_up {
    color: #26bb0b;
}

.points_down {
    color: #e93b3b;
}

.points_neutral {
    color: Blue;
}


/* Issue award - Selected Award */

/* simulate style on issue award */
/*.wmselectedaward {
    padding: 0 !important;
    border: 5px solid #cbd7df !important;
    margin: .5rem .4%;
}*/







/*#endregion */

/*#region Gridview pager */
.wmgridpager {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.3rem;
}

    .wmgridpager > div {
        font-size: .8rem;
    }


/*#endregion*/

/*#region GridView Popup Help */
.wmgridpopuphelp a {
    position: relative;
    text-decoration: none;
}

    .wmgridpopuphelp a span {
        display: none;
        text-decoration: none !important;
    }

    .wmgridpopuphelp a:hover span {
        display: block;
        position: absolute;
        top: 13px;
        left: 20px;
        width: 400px;
        height: auto;
        padding: 10px;
        margin: 0px;
        color: #444444;
        background: #fffcf5;
        border: 1px solid #d1d1d1;
        border-radius: 4px;
        text-align: left;
        z-index: 1000 !important;
        text-decoration: none !important;
    }

    .wmgridpopuphelp a span hr {
        border: 0px;
        border-bottom: 1px solid #d1d1d1;
    }

/*#endregion*/

/*#region Helpbox, Feature box, Softbox */
/* Help box, is a fieldset */
.wmhelpbox {
    font-size: .8rem;
    background-color: #fffcf5;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    padding: 1rem;
    width: 100%;
    margin-bottom: 1rem;
}

    .wmhelpbox legend {
        display: inline-block;
        padding: 0 0.3rem;
        font-size: 1.1rem;
        width: auto;
        font-weight: 500;
    }

    /* auto styled bullets for helpbox */
    .wmhelpbox ul {
        padding-left: 0rem;
        list-style: none;
        margin-left: 1.2rem;
        ;
    }

        .wmhelpbox ul > li {
            margin-bottom: .7rem;
        }

            .wmhelpbox ul > li::before {
                font-family: 'Font Awesome 6 Free';
                content: '\f0da';
                margin: 0 0.8rem 0 -1.2rem;
                color: #dfc383;
                font-weight: 900;
            }

/* Feature box, is a fieldset */
.wmfeaturebox {
    font-size: .8rem;
    background-color: #fcfdff;
    border: 1px solid #d2d7e7;
    border-radius: 4px;
    padding: 0.5rem 1rem 0.7rem;
    margin-bottom: 1rem;
}

@media screen and (max-width:768px) {
    .wmfeaturebox {
        padding: 0.5rem 0.3rem 0.7rem;
    }
}

.wmfeaturebox legend {
    display: inline-block;
    padding: 0 0.3rem;
    font-size: 1.1rem;
    width: auto;
    font-weight: 500;
    margin-bottom: 0;
}

    /* Special style for Category tree */
    .wmfeaturebox.wmcategorytree {
        font-size: 1rem;
        font-weight: 500;
        padding: 1rem 1rem 1.5rem;
    }

    /* Special style for larger font */
    .wmfeaturebox.wmfeatureboxlg {
        font-size: 1rem;
    }

/* Feature box2, is a fieldset, mimics softbox */
.wmfeaturebox2 {
    font-size: .8rem;
    background-color: transparent;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    padding: .9rem 1.3rem !important;
    /*margin-bottom: 1rem;*/
    margin: 5px 5px .9rem 5px;
}

    .wmfeaturebox2 legend {
        display: inline-block;
        padding: 0 0.3rem;
        font-size: 1.1rem;
        width: auto;
        font-weight: 500;
        margin-bottom: 0;
    }

    /* Special style for Category tree */
    .wmfeaturebox2.wmcategorytree {
        font-size: 1rem;
        font-weight: 500;
        padding: 1rem 1rem 1.5rem;
    }

    /* Special style for larger font */
    .wmfeaturebox2.wmfeatureboxlg {
        font-size: 1rem;
    }

.wmfeatureboxcolumns {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

    .wmfeatureboxcolumns > div {
        margin-bottom: .3rem;
    }

        .wmfeatureboxcolumns > div:nth-child(odd) {
            margin-bottom: .3rem;
            text-align: right;
            padding-right: 0.5rem;
            min-width: 90px;
        }

        .wmfeatureboxcolumns > div:nth-child(even) {
            flex-grow: 1;
            margin-bottom: .3rem;
        }

/* Softbox, used for a subtle border wrapper, good for ul's */
.wmsoftbox {
    border: 1px solid #e9e9e9;
    /*display: inline-block;*/
    padding: 1.5rem !important;
    border-radius: 5px;
    margin: 5px;
    /*flex-grow:1*/
}

/*#endregion*/

/*#region Product Group Edit, add to group left right exchange */
.wmproductgroupedit {
    display: flex;
    justify-content: space-between;
}

    .wmproductgroupedit > div {
        display: flex;
        justify-content: flex-start;
    }

        .wmproductgroupedit > div:nth-child(1) > div:nth-child(1) {
            min-width: 150px;
            text-align: right;
            padding-right: .5rem;
        }

        .wmproductgroupedit > div:nth-child(1) > div:nth-child(2) input[type=text] {
            width: 200px;
        }
        /* next column */
        .wmproductgroupedit > div:nth-child(2) {
            flex-grow: 1;
        }

            .wmproductgroupedit > div:nth-child(2) > div:nth-child(1) {
                min-width: 100px;
                text-align: right;
                padding-right: .5rem;
            }

            .wmproductgroupedit > div:nth-child(2) > div:nth-child(2) {
                padding-right: 1rem;
                flex-grow: 1;
            }

                .wmproductgroupedit > div:nth-child(2) > div:nth-child(2) input[type=text] {
                    width: 100%;
                }

/* Product Group Exchange */
.wmproductgroupexchange {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

    .wmproductgroupexchange > fieldset:nth-child(1) {
        flex-basis: 45%;
        padding: .8rem;
        overflow-y: scroll;
        max-height: 500px;
    }

    .wmproductgroupexchange > div:nth-child(2) {
        flex-basis: 10%;
        padding: .8rem .8rem 3rem .8rem;
        text-align: center;
        align-self: center;
    }

    .wmproductgroupexchange > fieldset:nth-child(3) {
        flex-basis: 45%;
        padding: .8rem;
        overflow-y: scroll;
        max-height: 500px;
    }

/*#endregion*/

/*#region Custom for OWTF Module */
/*clear border when grid inside grid*/
[id$=UserEvents].wmgrid > tbody > .wmgridrow > td:nth-child(2), [id$=UserEvents].wmgrid > tbody > .wmgridrowalt > td:nth-child(2),
[id$=Shop_gvOrders].wmgrid > tbody > .wmgridrow > td:nth-child(2), [id$=Shop_gvOrders].wmgrid > tbody > .wmgridrowalt > td:nth-child(2),
[id$=gvRptOrderItems].wmgrid > tbody > .wmgridrow > td:nth-child(7), [id$=gvRptOrderItems].wmgrid > tbody > .wmgridrowalt > td:nth-child(7),
[id$=gvRegBooth].wmgrid > tbody > .wmgridrow > td:nth-child(3), [id$=gvRegBooth].wmgrid > tbody > .wmgridrowalt > td:nth-child(3) {
    padding: 0;
}

/* Used on mileage textbox on checkin */
.wmform input[type=text].wmhighlightborder {
    border: 2px solid #0095ff;
    font-size: 1.4rem;
    height: unset;
}


/*Removes selective borders for nice style on inner table*/
.wmgridinner {
    border-width: 0;
}
    .wmgridinner tr th, .wmgridinner tr td {
        border-top-width: 0;
    }
        .wmgridinner tr th:first-child, .wmgridinner tr td:first-child {
            border-left-width: 0;
        }
        .wmgridinner tr th:last-child, .wmgridinner tr td:last-child {
            border-right-width: 0;
        }

/* small search libk on booth reg page */
[id$=btnSearch]:hover span {
    color: #c31414 !important;
} 

/* Check in serahc box */
.wmcheckinsearch {
    width: 300px;
    height: 45px;
    font-size: 24px;
    padding: 0 .5rem;
}

[id$=rblCheckInFltr] {margin-top:1rem;}
[id$=rblCheckInFltr] label {
    margin-right: 2rem;
}
    [id$=rblCheckInFltr] input {
        height: 16px;
        width: 16px;
    }


    /* Revise legends */
    .wmfeaturebox legend {
        font-size: 1.2rem;
        font-weight: 800;
    }

/* adjust register page addons checkbox, match row height of select element */
[id$=pnlVendorAddOns] input[type=checkbox] {
    margin: 5px;
}


/* item included star */
.wmincludeditem {
    color: #09cb11;
    font-size: 1.5rem;
    vertical-align: middle;
}

/* hide admin module container */
.waccent-style-1 .wcontainerhead {
    display: none;
}

/* Vendor Pricing panels */
.wpricingpanels {
    /*font-family: 'Raleway', Arial, sans-serif;*/
    color: #000000;
    text-align: center;
    font-size: 16px;
    width: 100%;
    max-width: 1000px;
    margin: 5px 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 2rem;
}

    .wpricingpanels .plan {
        margin: 0;
        flex-basis:33%;
        /*width: 33.3%;*/
        position: relative;
        /*float: left;*/
        background-color: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.1);
        flex-grow:1;
    }

@media screen and (max-width:992px) {
    .wpricingpanels {
        padding-top: 0rem;
    }

        .wpricingpanels .plan {
            flex-basis: 99%;
            padding: 2rem 0;
            margin: 1rem 0;
        }

}

    .wpricingpanels * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .wpricingpanels header {
        position: relative;
    }

    .wpricingpanels .plan-title {
        position: relative;
        top: 0;
        font-weight: 800;
        padding: 5px 15px;
        margin: 0 auto;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        margin: 0;
        display: inline-block;
        background-color: #bf9602;
        color: #ffffff;
        text-transform: uppercase;
    }

    .wpricingpanels .plan-cost {
        padding: 0px 10px 20px;
    }

    .wpricingpanels .plan-price {
        /*font-family: 'Montserrat', Arial, sans-serif;*/
        font-weight: 800;
        font-size: 2.4em;
        color: #34495e;
    }

    .wpricingpanels .plan-type {
        opacity: 0.6;
        display: block;
        font-size: 0.8rem;
    }

    .wpricingpanels .plan-features {
        padding: 0;
        margin: 0;
        text-align: left;
        list-style: outside none none;
        font-size: 0.8em;
    }

        .wpricingpanels .plan-features li {
            border-top: 1px solid #d2d7e2;
            padding: 10px 1rem 10px 2rem;
            margin-bottom:0;
        }

            .wpricingpanels .plan-features li:nth-child(even) {
                background: rgba(0, 0, 0, 0.08);
            }

        .wpricingpanels .plan-features i {
            margin-right: 8px;
            opacity: 0.4;
        }

    .wpricingpanels .plan-select {
        border-top: 1px solid #d2d7e2;
        padding: 10px 10px 0;
    }

        .wpricingpanels .plan-select a {
            background-color: #3e95bf;
            color: #ffffff;
            text-decoration: none;
            padding: 0.5em 1em;
            -webkit-transform: translateY(50%);
            transform: translateY(50%);
            font-weight: 800;
            text-transform: uppercase;
            display: inline-block;
        }

            .wpricingpanels .plan-select a:hover {
                background-color: #58c2f5;
            }

    .wpricingpanels .plan-select input[type=checkbox] {
        width:20px;height:20px;
        display:none;
    }

    .wpricingpanels .featured, .wpricingpanels .plan:nth-child(2) {
    
        /*margin-top: -10px;*/
        background-color: #34495e;
        color: #ffffff;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

        .wpricingpanels .featured .plan-title, .wpricingpanels .plan:nth-child(2) .plan-title,
        .wpricingpanels .featured .plan-price, .wpricingpanels .plan:nth-child(2) .plan-price {
            color: #ffffff;
        }

        /*.wpricingpanels .featured .plan-cost, .wpricingpanels .plan:nth-child(2) .plan-cost {
            padding: 10px 10px 20px;
        }*/

        .wpricingpanels .featured .plan-features li, .wpricingpanels .plan:nth-child(2) .plan-features li {
            border-top: 1px solid rgba(255, 255, 255, 0.4);
            color: rgb(255 255 255 / 80%);
        }

        .wpricingpanels .featured .plan-select, .wpricingpanels .plan:nth-child(2) .plan-select {
            /*padding: 20px 10px 0;*/
            border-top: 1px solid rgba(255, 255, 255, 0.4);
        }

    .wpricingpanels ul.wfabullets > li::before {
        font-family: "Font Awesome 6 Free";
        content: "";
        margin: -3px .5rem 0 -1.2rem;
        color: #11b77a;
        position: absolute;
        left: unset;
        font-size: 1rem;
    }



@media only screen and (max-width: 767px) {
    .wpricingpanels .plan {
        width: 100%;
        padding: 2rem 0;
        margin: 1rem 0;
    }

    .wpricingpanels .plan-title,
    .wpricingpanels .plan-select a {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        /*border-radius: 20px;*/
    }

    .wpricingpanels .plan-cost,
    .wpricingpanels .featured .plan-cost, .wpricingpanels .plan:nth-child(2) .plan-cost {
        /*padding: 20px 10px 20px;*/
    }

    .wpricingpanels .plan-select,
    .wpricingpanels .featured .plan-select, .wpricingpanels .plan:nth-child(2) .plan-select {
        /*padding: 10px 10px 10px;*/
    }

    .wpricingpanels .featured, .wpricingpanels .plan:nth-child(2) {
       /* margin-top: 2rem;*/
    }
}

@media only screen and (max-width: 440px) {
    .wpricingpanels .plan {
        width: 99%;
    }
}
    

/*#endregion */

/*#region Range Slider */
.range-slider {
    margin: 0px 0 0px 0;
}

.range-slider {
    width: 100%;
}

.range-slider__range {
    -webkit-appearance: none;
    width: calc(100% - (73px));
    height: 10px;
    border-radius: 5px;
    background: #d7dcdf;
    outline: none;
    padding: 0;
    margin: 0;
}

    .range-slider__range::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #2c3e50;
        cursor: pointer;
        -webkit-transition: background 0.15s ease-in-out;
        transition: background 0.15s ease-in-out;
    }

        .range-slider__range::-webkit-slider-thumb:hover {
            background: #1abc9c;
        }

    .range-slider__range:active::-webkit-slider-thumb {
        background: #1abc9c;
    }

    .range-slider__range::-moz-range-thumb {
        width: 20px;
        height: 20px;
        border: 0;
        border-radius: 50%;
        background: #2c3e50;
        cursor: pointer;
        -moz-transition: background 0.15s ease-in-out;
        transition: background 0.15s ease-in-out;
    }

        .range-slider__range::-moz-range-thumb:hover {
            background: #1abc9c;
        }

    .range-slider__range:active::-moz-range-thumb {
        background: #1abc9c;
    }

    .range-slider__range:focus::-webkit-slider-thumb {
        box-shadow: 0 0 0 3px #fff, 0 0 0 6px #1abc9c;
    }

.range-slider__value {
    display: inline-block;
    position: relative;
    width: 60px;
    color: #fff;
    line-height: 20px;
    text-align: center;
    border-radius: 3px;
    background: #2c3e50;
    padding: 5px 10px;
    margin-left: 8px;
}

    .range-slider__value:after {
        position: absolute;
        top: 8px;
        left: -7px;
        width: 0;
        height: 0;
        border-top: 7px solid transparent;
        border-right: 7px solid #2c3e50;
        border-bottom: 7px solid transparent;
        content: "";
    }

::-moz-range-track {
    background: #d7dcdf;
    border: 0;
}

input::-moz-focus-inner,
input::-moz-focus-outer {
    border: 0;
}

/*#endregion */

/*#region Judging thumbnail */
.wjudgethumb {
}
.wjudgethumb span {display:inline-block;width:40px;height:40px;position:relative;overflow:hidden;border:1px solid #d5d5d5;vertical-align:middle;
}
.wjudgethumb img {min-height:40px;position:absolute;}
/*#endregion*/

/* Product Edit Page, grid scrollable */
.wmproductgrid {
    overflow-y: scroll;
    max-height: 80vh;
}

/*#region Ajax Modal Popup Dialog */
.wmmodalpopup {
    text-align: center;
    /*font-size: 13px;*/
    background-color: #f5f6f9;
    border: 1px solid #d2d7e7;
    padding: 20px 30px 20px 30px;
    max-width: 900px;
    margin: auto;
    border-radius: 7px;
    z-index: 10000;
    position: relative;
font-family:Arial, Helvetica, sans-serif;
}

    .wmmodalpopup a {
    }

        .wmmodalpopup a:hover {
        }

.wmmodalbackground {
    background-color: Black;
    filter: alpha(opacity=60);
    -moz-opacity: 0.6;
    -khtml-opacity: 0.6;
    opacity: 0.6;
}

.wmmodalpopupTC {
    overflow: auto;
    height: 500px;
    font-size: 11px;
}

    .wmmodalpopupTC p, .wmmodalpopupTC li {
        font-size: 11px;
    }

/* reset z-index on dialogs */
.ui-dialog {
    max-width: 90%;
}

.ui-widget-content {
    z-index: 1000;
overflow-y:scroll;
}

body .ui-widget-overlay {
    opacity: 0.8;
    background-color: #000000;
}

.ui-dialog-buttonpane {
    text-align: center !important;
    float: none !important;
}

.ui-dialog-buttonset {
    float: none !important;
}

.ui-dialog .ui-dialog-buttonpane {
    padding: .3rem 1rem 0.5rem 1rem !important;
}
/*#endregion modal */

/*#region Report Options*/
.wmreportoptions {
    display: flex;
    flex-direction: column;
}

/*.wmreportoptions div:nth-child(1) {
        flex-basis: 40%;
        width: 40%;
    }*/

.wmreportoptionrow {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .wmreportoptionrow > div {
        align-self: center;
    }

        .wmreportoptionrow > div > div {
            display: inline-block;
            white-space: nowrap;
        }

@media screen and (max-width:992px) {
    .wmreportoptionrow > div {
        flex-basis: 100%;
    }
}

/*.wmreportoptions div:nth-child(3) {
align-self:flex-end; margin-top:-31px;
}*/

/*#endregion*/

/*#region  Points Summary table on admin points report page */
.wmpointssummarytable {
    width: 100%;
}

    .wmpointssummarytable td {
        margin: 0px !important;
        padding: 0px !important;
        font-weight: bold;
        /*font-family: Arial, Helvetica, Sans-Serif;*/
        font-size: .8rem;
    }

        .wmpointssummarytable td:first-child {
            color: #888888;
        }
/*#endregion*/

/*#region Register Group and navbar, possibly move to skin.*/
.registerGroup {
    text-align: center;
    display: block;
    flex-grow: 1;
    margin-bottom: 0.5rem;
}

@media screen and (max-width:992px) {

    .registerGroup ul.buttonGroup .userDisplayName {
        display: none;
    }
}

/*@media screen and (max-width: 768px) {
    .navbar-brand img {
        max-height: unset !important;
    }
}*/

/*#endregion */

/*#region Points Balance Box on user pages history and orders */

.wmbalancebox {
    text-align: right;
}

    .wmbalancebox .wmblock {
        display: inline-block;
        margin-bottom: -1rem;
        font-size: .9rem;
        padding: 0.5rem;
        margin-right: 3px;
    }

    .wmbalancebox div {
        white-space: nowrap;
    }

    .wmbalancebox .col-7 {
        font-size: .80rem;
        align-self: center;
    }

@media screen and (max-width:768px) {
    .wmbalancebox .wmblock {
        display: block;
        margin-bottom: .5rem;
    }
}

/*#endregion */

/*#region My Account points summary and colors */
/* User Mini-cart */
.wmcartheader {
    background-image: url('/icons/ico_award_00_sm.png');
    background-repeat: no-repeat;
    font-size: 1.2rem;
    display: none;
}

.wmpointssummary {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: -2.4rem;
}

    .wmpointssummary > div {
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        margin-right: 1.5rem;
        font-weight: 600;
    }

        .wmpointssummary > div > div:first-child {
            padding-right: .3rem;
        }

.wmpointsbalance, .wmpointsawarded, .wmpointsredeemed {
    font-weight: 600;
    /*font-size: .9rem;*/
}

.wmpointsbalance {
    color: #26bb0b;
}

.wmpointsawarded {
    color: #000000;
}

.wmpointsredeemed {
    color: #e93b3b;
}


.wmgreen {
    color: green;
}

.wmblue {
    color: blue;
}

.wmpoints {
    color: orangered;
}
/*#endregion*/

/*#region Shop Menu */
.wmcatmenu {
    /* background-color: transparent;*/ /* #E3E3E3; background of root container */
    position: relative;
    display: flex;
    /*flex-direction: column;*/
    justify-items: flex-start;
    margin: 0;
    flex-wrap: wrap;
    z-index: 1
}

    .wmcatmenu li {
        list-style: none;
        padding: 0px;
        margin: 0px;
        position: relative;
    }

    .wmcatmenu .wmcatmenusub {
        display: none;
        z-index: 2
    }

    /* root level */
    .wmcatmenu > li {
        display: flex;
        flex-direction: column;
    }





        /* root level */
        .wmcatmenu > li > a {
            padding: .3rem 1rem;
            margin: 0rem;
            display: block;
            font-size: 0.85rem;
            white-space: nowrap;
            border: 1px solid #d2d7e7;
            border-radius: 5px;
            background-color: #f5f6f9;
        }






        /* 2nd tier */
        .wmcatmenu > li > .wmcatmenusub > li > a {
            margin: 0rem;
            padding: .3rem 1rem .3rem 1rem;
            border-bottom: 1px solid #d2d7e7;
            font-size: 0.8rem;
            white-space: nowrap;
            display: block;
        }

        .wmcatmenu > li > .wmcatmenusub {
            position: relative;
            flex-direction: column;
            justify-items: flex-start;
            margin: 0;
            border: 1px solid #d2d7e7;
            background: #f5f6f9;
        }

        .wmcatmenu > li:hover > .wmcatmenusub {
            display: flex;
            position: absolute;
            top: 1.9rem;
        }




        /* 3rd tier only */
        .wmcatmenu > li:hover .wmcatmenusub .wmcatmenusub {
            display: flex;
            position: relative;
            margin: 0rem;
            top: 0rem;
            left: 0;
            border: 0px solid #d2d7e7;
            background: #f5f6f9;
        }

        .wmcatmenu > li .wmcatmenusub .wmcatmenusub li > a {
            margin: 0rem;
            padding: .3rem 1rem .3rem 2rem;
            border-bottom: 1px solid #d2d7e7;
            font-size: 0.75rem;
            display: block;
        }



/*#endregion*/

/*#region Shop Menu2 */
.wmcatmenu2 {
    /* background-color: transparent;*/ /* #E3E3E3; background of root container */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-items: flex-start;
    margin: 0;
}

    .wmcatmenu2 li {
        list-style: none;
        padding: 0px;
        margin: 0px;
        position: relative;
    }

    .wmcatmenu2 .wmcatmenu2sub {
        /*display: none;*/
    }


.wmcatmenu2root::before {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 11px;
    margin-right: 0.3rem;
}

.wmcatmenu2root.wmexpand::before {
    content: "\f077";
}


.wmcatmenu2root + .wmcatmenu2sub {
    display: none;
}

.wmcatmenu2root.wmexpand + .wmcatmenu2sub {
    display: block;
}



/* root level */
.wmcatmenu2 > li {
    display: flex;
    flex-direction: column;
}

    /* root level */
    .wmcatmenu2 > li > a {
        padding: .3rem 1rem;
        margin: 0rem;
        display: block;
        font-size: 0.85rem;
        white-space: nowrap;
        /*border: 1px solid #d2d7e7;
            border-radius: 5px;
            background-color: #f5f6f9;*/
        font-weight: 600;
        text-decoration: none;
    }

.wcatmenu2container {
    border: 1px solid #d2d7e7;
    border-radius: 5px;
    background-color: #f5f6f9;
    padding: 1rem 0;
}


/* 2nd tier */
.wmcatmenu2 > li > .wmcatmenu2sub > li > a {
    margin: 0rem;
    padding: .3rem 1rem .3rem 2rem;
    /*border-bottom: 1px solid #d2d7e7;*/
    font-size: 0.8rem;
    white-space: nowrap;
    display: block;
}

.wmcatmenu2 > li > .wmcatmenu2sub {
    position: relative;
    flex-direction: column;
    justify-items: flex-start;
    margin: 0;
    /*border: 1px solid #d2d7e7;
            background: #f5f6f9;*/
}

.wmcatmenu2 > li > .wmcatmenu2sub {
    /* display: flex;*/
    /*position: absolute;
            top: 1.9rem;*/
}
/*.wmcatmenu2 > li:hover > .wmcatmenu2sub {
            display: flex;
            position: absolute;
            top: 1.9rem;
        }*/




/* 3rd tier only */
.wmcatmenu2 > li .wmcatmenu2sub .wmcatmenu2sub {
    display: flex;
    position: relative;
    margin: 0rem;
    top: 0rem;
    left: 0;
    border: 0px solid #d2d7e7;
    /*background: #f5f6f9;*/
}

    /* .wmcatmenu2 > li:hover .wmcatmenu2sub .wmcatmenu2sub {
            display: flex;
            position: relative;
            margin: 0rem;
            top: 0rem;
            left: 0;
            border: 0px solid #d2d7e7;
            background: #f5f6f9;
        }*/

    .wmcatmenu2 > li .wmcatmenu2sub .wmcatmenu2sub li > a {
        margin: 0rem;
        padding: .3rem 1rem .3rem 2rem;
        /*border-bottom: 1px solid #d2d7e7;*/
        font-size: 0.75rem;
        display: block;
    }





/*.dc-huge-li {
    
    padding: 0px;*/ /* adjust root item padding */
/*margin: 0px;*/ /* adjust root item margin */
/*}*/

/*.wmcatmenu li a {    
    background-color: transparent;*/ /* #f2f2f2 passive state of root items */
/*border-color: #C0C0C0;*/ /*-moz-use-text-color #dcdcdc #dcdcdc border color of root items */
/*border-style: solid none none none;
    border-width: 1px;
    color: #888888;*/ /*  #3a3a3a Font color of all items, passive state */
/*display: block;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 14px;*/ /* size of root items */
/*font-weight: bold;
    padding: 10px 0 10px 25px;*/ /* affects dynamic jquery code creation values */
/*text-decoration: none !important;
}

    .wmcatmenu li a:hover, .wmcatmenu li.huge-hover a {*/
/**/ /*background: #959595;*/ /* hover state color of root item background */
/**/ /*color: #fff !important;*/ /* #3a3a3a; no apparent effect unless !important is used, overridden by above */
/*border-left: 1px solid #dcdcdc;*/ /* #dcdcdc left border of hovered root items */
/*border-top: 1px solid #dcdcdc;*/ /* #dcdcdc top border of hovered root items */
/*border-right: 1px solid #dcdcdc;*/ /* #dcdcdc right border of hovered root items */
/*}

    .wmcatmenu li a.dc-huge {
        position: relative;
    }*/

/* Add arrow icon to parent links */
/*.wmcatmenu li a .dc-huge-icon {
        display: block;
        position: absolute;
        top: 14px;
        left: 10px;
        width: 6px;
        height: 9px;*/
/**/ /*background: url(images/nav_arrow_left04.png) no-repeat 0 0;
        background-position: left;
    }

    .wmcatmenu li a:hover .dc-huge-icon {
        background-position: right;
    }*/

/* huge menu container */
/*.wmcatmenu li .sub-container {
    position: absolute;*/
/**/ /*background: #959595;*/ /* #FFFFFF background color of flyout container */
/*padding: 0px 0px 0px 0px !important;*/
/**/ /*border: 1px solid grey;*/ /* border color of flyout container */
/*}

    .wmcatmenu li .sub-container .sub {
    }

.wmcatmenu li .sub .row {
    width: 100%;
    overflow: hidden;
}

.wmcatmenu li .sub li {
    float: none;
    width: 160px;
    font-size: 1em;
    font-weight: normal;
}

    .wmcatmenu li .sub li.huge-hdr {
        float: left;
        margin: 0 5px 10px 5px;
    }

.wmcatmenu li .sub a, .wmcatmenu.left li .sub a {
    background: none;
    border: none;
    text-shadow: none;
    float: none;
    color: #ebebeb;*/ /* color of text on flyout cat headings and sub links, no apparent effect unless !important */
/*padding: 7px 10px;
    display: block;
    text-decoration: none;
    font-size: 1em;*/ /* Font size of sub items */
/*}

.wmcatmenu li .sub li.huge-hdr a.huge-hdr-a {
    padding: 5px 5px 5px 10px;*/ /* padding on subs header item */
/*margin-bottom: 5px;*/ /* margin on header subs header item */
/**/ /*background: #404040;*/ /* #ebebeb background color of flyout headings */
/*text-transform: uppercase;
    font-weight: normal;
    color: #fff;*/ /* color of text on flyout cat headings, no apparent effect unless !important */
/*}

    .wmcatmenu li .sub li.huge-hdr a.huge-hdr-a:hover {*/
/**/ /*color: blue;*/ /* color of hover text on flyout cat headings, no apparent effect unless !important */
/*}

.wmcatmenu .sub li.huge-hdr li a {
    padding: 4px 5px 4px 22px;
    background-image: url(images/nav_arrow_right04.png);
    background-repeat: no-repeat;
    background-position: 7px 8px;*/ /* passive arrow on subcats */
/*border-bottom: 0px solid #ffffff;
    font-weight: normal;*/
/**/ /*color: #FFFFFF;*/ /* #35b0b5 color of text links on sub cats, no apparent effect unless !important */
/*}

    .wmcatmenu .sub li.huge-hdr li a:hover {*/
/**/ /*color: blue;*/ /* color of hover text on sub cats, no apparent effect unless !important */
/*background: #efefef url(images/nav_arrow_right03.png) no-repeat 7px 8px;*/ /* hover state arrow on subcats */
/*}

.wmcatmenu .sub ul li {
    padding: 0px 0px 0px 0px;
}

.wmcatmenu ul {
    padding: 0px 0px 0px 0px;
}*/

/*#endregion*/

/*#region Shop Bread and Pager */

.wmshoppager {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

    .wmshoppager > div {
        align-self: center;
        font-size: .85rem;
        padding: 0 .5rem;
    }

.wmshopbread {
    display: none;
    font-size: .85rem;
    margin: 0px 0px 5px 0px;
}

/*#endregion*/

/*#region Shop List */

.wmshopitems {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}


.wmshopitem {
    display: flex;
    flex-basis: 24%;
    margin: 0.5%;
    padding: 1rem;
    flex-direction: column;
    border: 1px solid #d2d7e7;
    border-radius: 5px;
    align-items: flex-start;
    overflow: hidden;
}

/* box handles out of stock overlay */
.wmshopimgbox {
    position: relative;
    text-align: center;
    width: 100%;
    margin-bottom: auto;
}

.wmshopimgboxoos {
    position: absolute;
    top: 1px;
    right: 3px;
    width: 62px;
    height: 62px;
    background-image: url(/desktopmodules/webmo_incentives_host/icons/out_of_stock.png);
}

.wmshoptitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: blue;
    line-height: 120%;
    margin-bottom: .4rem;
}

.wmshopdesc {
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 130%;
    height: 2rem;
    overflow-y: clip; /* temp, prefer code solution trucate with ... */
    margin-bottom: .4rem;
}

.wmshopprice {
    font-size: 1rem;
    font-weight: 400;
    color: green;
}

    .wmshopprice::before {
        content: "\f005";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        margin-right: 0.3rem;
        color: #07aacf;
    }

@media screen and (max-width:992px) {
    .wmshopitem {
        display: flex;
        flex-basis: 32%;
    }
}

@media screen and (max-width:768px) {
    .wmshopitem {
        display: flex;
        flex-basis: 49%;
    }
}

@media screen and (max-width:420px) {
    .wmshopitem {
        display: flex;
        flex-basis: 99%;
    }
}


.shop_display_options {
    font-size: 12px;
}



/*#endregion*/

/*#region Product Images - temp display solution*/
.wmprodimgselect {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

    .wmprodimgselect .wmbtnstyle2, .wmprodimgselect input[type="submit"].wmbtnstyle2 {
        margin: 0.2rem 0.2rem;
    }

.wmprodimgs {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.wmprodimg {
    margin: 0.5%;
    border: 1px solid #f2f2f2;
    padding: 0.5rem;
}

    .wmprodimg img {
        max-width: 120px;
    }

.wmprodimgs .wmprodimg:first-child img, .slideshow .wmprodimg:first-child img {
    max-width: 100%;
}

/*#endregion */

/* featurebox option label spacing - stray */

.wmoptionlabel {
    display: inline-block;
    width: 120px;
    text-align: right;
    padding: 0 1rem;
}

/*#region Product Gallery */
.wmprodgallery {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.wmproditemouter {
    flex-basis: 162px;
    padding: 5px;
    border: 1px solid #f2f2f2;
    margin: 3px;
    overflow: hidden;
}

    .wmproditemouter p {
        font-size: .8rem;
        text-align: center;
        margin-bottom: 0;
    }

/*#endregion*/

/*#region Image Hover Grow */
.wmgrow {
    overflow: hidden;
    padding: 1px 2px 0 0;
    display: inline-block;
    position: relative;
}

    .wmgrow img {
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    .wmgrow:hover img {
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        -moz-transform: scale(1.2);
        -webkit-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }

/*#endregion */

/*#region Employee page profile */

.wemployeehead {
    display: flex;
    flex-wrap: nowrap;
}

    .wemployeehead img {
        max-width: 80px;
        max-height: 80px;
    }

    .wemployeehead > div:nth-child(1) {
        padding-right: 1rem;
    }

    .wemployeehead > div:nth-child(2) {
        flex-grow: 1;
        padding-top: 0.3rem;
    }

        .wemployeehead > div:nth-child(2) p {
            margin: 0;
        }

/*#endregion*/

/*#region Aniversaries, birthdays on adminDashboard */
/* Admin Upcoming Birthdays */
.LI_bDateTable {
    border: 0px;
    width: 100%;
}

    .LI_bDateTable td {
        padding: 0px 0px 2px 0px;
    }

.LI_bDateHead {
    height: 27px;
    padding: 5px 0px 0px 33px;
    margin: 10px 0px 3px 0px;
    background-image: url('/icons/ico_award_82_sm.png');
    background-repeat: no-repeat;
}

.LI_bDateName {
    float: left;
    font-size: 11px;
    font-weight: bold;
}

.LI_bDate {
    float: right;
    font-size: 11px;
    font-weight: bold;
}

.LI_bDate_sector {
    clear: both;
    font-size: 11px;
}
/* Admin Upcoming Service Anniversaries */

.wmlistbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border: 0px;
    width: 100%;
}

    .wmlistbox > div {
        padding: .5rem 0px;
        border-bottom: 1px solid #d5d5d5;
    }

        .wmlistbox > div:nth-child(odd) {
            flex-basis: 60%;
        }

        .wmlistbox > div:nth-child(even) {
            flex-basis: 40%;
        }

    .wmlistbox .wmlistname {
        font-size: .85rem;
        font-weight: 550;
    }

    .wmlistbox .wmlistsmall {
        font-size: 12px;
        font-weight: 400;
    }

    .wmlistbox .wmlistdate {
        text-align: right;
        font-size: .85rem;
        font-weight: 550;
    }




.LI_sAnniTable {
    border: 0px;
    width: 100%;
}

    .LI_sAnniTable td {
        padding: 0px 0px 2px 0px;
    }


.LI_sAnniHead {
    height: 27px;
    padding: 5px 0px 0px 33px;
    margin: 10px 0px 3px 0px;
    background-image: url('/icons/ico_award_81_sm.png');
    background-repeat: no-repeat;
}

.LI_sAnniName {
    float: left;
    font-size: 11px;
    font-weight: bold;
}

.LI_sAnniDate {
    float: right;
    font-size: 11px;
    font-weight: bold;
    text-align: right;
}

.LI_sAnni_sector {
    clear: both;
    font-size: 11px;
    font-weight: normal;
}
/*#endregion */

/*#region Slider Panel */
/* ------------------------------------------- */
.wmslidepanel {
    position: relative;
    margin: 0;
    padding: 0;
}

.wmslideheader {
}

    .wmslideheader a {
        display: block;
        padding: 0px;
        margin: 0px;
    }

        .wmslideheader a:hover {
        }

.wmslidebody {
    padding: 0;
    margin: 0px;
    display: none;
}

/* Slider Panel Help style */
.wmslidepanel.wmslidehelp {
    margin-top: -1rem;
}

.wmslidehelp .wmslideheader {
    text-align: right;
}

    /*Slider Panel - Help Ico  */
    .wmslidehelp .wmslideheader a {
        padding: 0px 0.5rem 0px 0px;
        display: block;
        color: gold;
    }

        .wmslidehelp .wmslideheader a i {
            color: #5192c9;
        }

.wmslidevar2 .wmslideheader a:hover {
}

.wmslidevar2 .wmslidebody {
    padding: 5px 0 15px 0;
    display: none;
}

/* slide var 3, attach with slidepanel */
.wmslidevar3 .wmslideheader a {
    background: url(icons/warrow-down-dark-25.png) no-repeat right center;
}
/*#region  Slide Var 5 -  no margins, gray panel */
.wmslidevar5 .wmslidepanel {
    position: relative;
    margin: 0;
    padding: 0;
    clear: both;
}

.wmslidevar5 .wmslideheader {
    background: aliceblue; /*$GlobalColor4;*/
    border-top: 1px solid unquote($GlobalColor2 + '52'); /* adds about 50% transparency */
    text-align: left;
}

    .wmslidevar5 .wmslideheader:hover {
        background: $GlobalColor2;
    }

    .wmslidevar5 .wmslideheader a {
        font-size: 1.1rem;
        padding: 1rem;
        margin: auto;
        display: block;
    }

        .wmslidevar5 .wmslideheader a:hover {
            color: #ffffff;
        }

        .wmslidevar5 .wmslideheader a::before {
            font-family: 'Font Awesome 6 Free';
            content: "\f13a";
            font-weight: 900;
            font-size: 1.2rem;
            margin: 0 .5rem;
            color: unquote($FontColorDefault + '52');
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .wmslidevar5 .wmslideheader a:hover::before {
            color: #ffffff75;
        }

    .wmslidevar5 .wmslideheader.wmslideheaderactive {
        background: $GlobalColor2;
        color: #ffffff;
    }

        .wmslidevar5 .wmslideheader.wmslideheaderactive a::before {
            transform: rotate(-180deg);
            color: #ffffff75;
        }

.wmslidevar5 .wmslidebody {
    padding: 0 0 0 2.5rem;
    margin: 1rem auto;
    display: none;
}
/*#endregion */

/*#region  Slide Var 6 -  Simple title with arrow */
.wmslidevar6 .wmslidepanel {
    position: relative;
    margin: 0;
    padding: 0;
    clear: both;
}

.wmslidevar6 .wmslideheader {
    background: transparent;
    border: 0px solid #ededed;
    text-align: left;
}

    .wmslidevar6 .wmslideheader:hover {
        background: transparent;
    }

    .wmslidevar6 .wmslideheader a {
        font-size: 1.1rem;
        padding: 0rem;
        margin: auto;
        display: block;
    }

        .wmslidevar6 .wmslideheader a:hover {
            color: blue;
        }

        .wmslidevar6 .wmslideheader a::before {
            font-family: 'Font Awesome 6 Free';
            content: "\f13a";
            font-weight: 900;
            font-size: 1.2rem;
            margin: 0 .5rem;
            color: unquote($FontColorDefault + '52');
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .wmslidevar6 .wmslideheader a:hover::before {
            color: #44444475;
        }

    .wmslidevar6 .wmslideheader.wmslideheaderactive {
        background: transparent;
        color: #777777;
    }

        .wmslidevar6 .wmslideheader.wmslideheaderactive a::before {
            transform: rotate(-180deg);
            color: #44444475;
        }

.wmslidevar6 .wmslidebody {
    padding: 0;
    margin: 0rem auto;
    display: none;
}


/*#region  Slide Var 6 -  Simple title with arrow */
.wmslidevar6 .wmslidepanel {
    position: relative;
    margin: 0;
    padding: 0;
    clear: both;
}

.wmslidevar7 .wmslideheader {
    background: transparent;
    border: 0px solid #ededed;
    text-align: left;
}

    .wmslidevar7 .wmslideheader:hover {
        background: transparent;
    }

    .wmslidevar7 .wmslideheader a {
        /*font-size: 1.1rem;*/
        padding: 0rem;
        margin: auto;
        display: block;
    }

        .wmslidevar7 .wmslideheader a:hover {
            /*color: blue;*/
        }

        .wmslidevar7 .wmslideheader a::before {
            font-family: 'Font Awesome 6 Free';
            content: "\f13a";
            font-weight: 900;
           font-size: 13px;
            margin: 0 .5rem 0 0;
            color: unquote($FontColorDefault + '52');
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .wmslidevar7 .wmslideheader a:hover::before {
           /* color: #44444475;*/
        }

    .wmslidevar7 .wmslideheader.wmslideheaderactive {
        background: transparent;
        /*color: #777777;*/
    }

        .wmslidevar7 .wmslideheader.wmslideheaderactive a::before {
            transform: rotate(-180deg);
            /*color: #44444475;*/
        }

.wmslidevar7 .wmslidebody {
    padding: 0;
    margin: 0rem auto;
    display: none;
}
/*#endregion */

/*.wmslidebody {
    background-color: #f1f1f1;
    padding: 5px 20px;
    border-radius: 5px;
}

.wmslideheader {
    background-color: #2196f3;
    color: #fff;
    padding: 16px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    font-size: 20px;
    outline: none;
    margin: 20px 0px;
}

.wmslidepanel .wmslideheader::-webkit-details-marker {
    display: none;
}

.wmslidepanel[open] .wmslideheader ~ * {
    animation: smooth 0.4s ease-in-out;
}

@keyframes smooth {
    0% {
        opacity: 0;
        margin-top: -10px;
    }

    100% {
        opacity: 1;
        margin-top: 0px;
    }
}

.wmslidepanel .wmslideheader::after {
    position: absolute;
    content: "+";
    right: 25px;
}

.wmslidepanel[open] .wmslideheader::after {
    position: absolute;
    content: "-";
    right: 25px;
}*/

/*#endregion */

/*#region Supplier Pages */

.wmsupplierstatus ul li {
    font-size: 0.85rem;
}

/*#region Supplier dashboard top row */
.wmsupplierstatus > fieldset {
    flex-basis: calc(50% - 10px);
    margin: 5px;
}

/* inner boxes with pie */
.wmsupplierinfo {
}

    .wmsupplierinfo > div:nth-child(1) {
        flex-basis: 70%;
        flex-grow: 1;
    }

    .wmsupplierinfo > div:nth-child(2) {
        flex-basis: 30%;
    }


@media screen and (max-width:992px) {
    .wmsupplierstatus {
        flex-wrap: wrap;
    }

        .wmsupplierstatus > fieldset {
            flex-basis: calc(100% - 10px);
            margin: 5px;
        }

            .wmsupplierstatus > fieldset:nth-child(2) {
                margin-bottom: 1rem;
            }
}

@media screen and (max-width:768px) {
    /* inner boxes with pie */
    .wmsupplierinfo {
        flex-wrap: wrap;
    }

        .wmsupplierinfo > div:nth-child(1) {
            flex-basis: 100%;
            flex-grow: 1;
        }

        .wmsupplierinfo > div:nth-child(2) {
            flex-basis: 100%;
            padding-top: 1rem;
        }
}




/*#endregion*/
ul.wmsoftmenu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

    ul.wmsoftmenu li {
        border: 1px solid #e9e9e9;
        /*display: inline-block;*/
        padding: 1rem;
        border-radius: 5px;
        margin: .3%;
        font-weight: 550;
        font-size: 1rem;
    }

        ul.wmsoftmenu li:hover {
            background: #f5f6f9;
        }



/*#endregion*/

/*#region adminEmployee Password strength */

#password-strength-status {
    font-size: .8rem;
}

.weak-password {
    color: red;
}

.medium-password {
    color: #00a1ff;
}

.strong-password {
    color: green;
}

/*#endregion */

.wmcarttotal {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 0.4rem;
}

.wmproductpricebox {
    display: block;
    text-align: right;
    margin-bottom: .5rem;
    font-weight: 600;
}

.wmproductprice {
    font-size: 1.5rem;
}



/* Block for admin program summary box - temp solution. Want to lose block.ascx control in code */

.wmblockoutertemp .wmblock {
    float: right;
    min-width: 250px;
}

@media screen and (max-width:768px) {
    .wmblockoutertemp .wmblock {
        float: none;
        margin-bottom: 1rem;
    }

    .wmadminpointssummary {
        font-size: .9rem;
    }
}

.wmadminpointssummary {
    font-size: .8rem;
    font-weight: 550;
}

    .wmadminpointssummary > div > span {
        float: right;
    }

    .wmadminpointssummary > div:nth-child(1) > span {
        color: #26bb0b;
    }

/* for admin orange color (liability) */
.wmunredeemedcolor .wmadminpointssummary > div:nth-child(1) > span {
    color: #f59607;
}

.wmadminpointssummary > div:nth-child(2) > span {
    color: #36a2eb;
}

.wmadminpointssummary > div:nth-child(3) > span {
    color: green;
}

/*admin points box with chart*/
.wmadmindashboardpointsbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap
}

    .wmadmindashboardpointsbox > div:nth-child(2) {
        flex-grow: 1;
    }

#adminDashboardPie, #accountDashboardPie {
    height: 110px;
}

@media screen and (max-width:992px) {
    .wmadmindashboardpointsbox {
        flex-wrap: wrap;
        justify-content: center;
    }

    .wmadmindashboardrow .wmfeaturebox2.wmchartbox {
        flex-basis: calc(100% - 10px);
    }
}

.wmadmindashboardrow {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

    .wmadmindashboardrow > div, .wmadmindashboardrow > fieldset {
        flex-basis: calc(33.333% - 10px);
        margin: 5px;
    }

    .wmadmindashboardrow > .wmsoftbox, .wmadmindashboardrow > .wmfeaturebox2 {
        padding: .8rem !important;
    }

@media screen and (max-width:992px) {
    .wmadmindashboardrow {
        flex-wrap: wrap;
    }
}



/* Describe */
.wmadmindashboarddateevents {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .wmadmindashboarddateevents > div, .wmadmindashboarddateevents > fieldset {
        flex-basis: calc(50% - 10px);
        margin: 5px;
        flex-grow: 1;
    }

/* for stats boxes n admin dashboard */
.wmfeaturebox2 .wmfabullets3 {
    padding-left: 2rem;
}

    .wmfeaturebox2 .wmfabullets3 li {
        margin-bottom: .3rem;
        font-size: .9rem;
    }

.wmadmindashboardstats {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

    .wmadmindashboardstats > fieldset {
        flex-basis: calc(33.333% - 10px);
        margin: 5px;
        flex-grow: 1;
    }

@media screen and (max-width:992px) {
    .wmadmindashboardstats {
        flex-wrap: wrap;
    }

        .wmadmindashboardstats > fieldset {
            flex-basis: calc(50% - 10px);
        }
}

@media screen and (max-width:768px) {

    .wmadmindashboarddateevents > div, .wmadmindashboarddateevents > fieldset, .wmadmindashboardstats > fieldset {
        flex-basis: calc(100% - 10px);
    }
}

/* admin apply rule, steps nav */
.wm3navbtns {
    display: flex;
    justify-content: space-between;
}



/* points/$ summary on AdminPointsReport (table) */
.wmprogramsummary td {
    font-size: 11px;
    padding: 0 .5rem;
}


/*#region Issue Award on dashboard */
.wmissueaward {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

    .wmissueaward li a {
        padding: 1rem;
        background: transparent;
        font-size: 1.3rem;
        font-weight: 550;
        border-radius: 5px;
        border: 1px solid #d5d5d5;
        display: block;
        margin-bottom: .8rem;
    }

        .wmissueaward li a:hover {
            background: #f5f6f9;
            text-decoration: none;
        }

        .wmissueaward li a span {
            font-size: .85rem;
            font-weight: 400;
            display: block;
        }

    .wmissueaward li.wmissuebtn a > span:nth-child(1) {
        float: right;
        font-size: 1.3rem;
        font-weight: 550;
        color: #36a2eb;
    }

    .wmissueaward li.wmissuebtn a > span:nth-child(2) {
        font-size: .85rem;
    }

    .wmissueaward li.wmissuebtn:nth-child(2) a > span:nth-child(1) {
        color: #ff6384;
    }

/*#endregion*/

/* On Product Gallery, delete image overlay */
.wmdeleteimage {
    width: 20px;
    height: 20px;
    text-align: center;
    font-weight: 550;
    font-size: 1rem;
    line-height: 1rem;
    background: #cf0707;
    color: #ffffff;
    position: absolute;
    bottom: 2px;
    right: 4px;
}

/*#region Special Overides */

/* aligns activate and de-activate to right hand side on admain panels .. could affect others.*/
[id$=rdoActiveSearch], [id$=rdoDeletedSearch] {
    margin-left: auto;
}

/*testing this for mobile, should align left with other options.*/
@media screen and (max-width:768px) {
    [id$=rdoActiveSearch], [id$=rdoDeletedSearch] {
        margin: .2rem auto .2rem 0;
    }
}


/*mmj.230130*/
a.disabled {
    pointer-events: none;
    cursor: default;
}

/*#endregion */

/*#region Detailed Mobile edits */
/* ----------------------- */

/*Account Page, view all link */
.wmadmindashboardrow .wmfeaturebox2 .wmlead .wmsmall.wmmobile {
    display: block;
    padding-left: 2rem;
}



/*#region Folded  corner effect on mobile view styled points box */
@media screen and (max-width:992px) {
    /* Folded  corner effect on mobile view styled points box */
    .wmfoldcornertl.wmmobile {
        position: relative;
    }

        .wmfoldcornertl.wmmobile::before {
            content: "";
            position: absolute;
            top: 0%;
            left: 0%;
            width: 0px;
            height: 0px;
            border-bottom: 25px solid #eee;
            border-left: 25px solid transparent;
            /*-webkit-box-shadow: 7px 7px 7px rgba(0,0,0,0.3);
    -moz-box-shadow: 7px 7px 7px rgba(0,0,0,0.3);
    box-shadow: 7px 7px 7px rgba(0,0,0,0.3);*/
        }

        .wmfoldcornertl.wmmobile::after {
            content: "";
            position: absolute;
            top: 0%;
            left: 0%;
            width: 0px;
            height: 0px;
            border-top: 24px solid #272822;
            border-right: 24px solid transparent;
        }

    .wmfoldcornertr.wmmobile {
        position: relative;
    }


        .wmfoldcornertr.wmmobile::before {
            content: "";
            position: absolute;
            top: 0%;
            right: 0%;
            width: 0px;
            height: 0px;
            border-bottom: 25px solid #cfcfcf;
            border-right: 25px solid transparent;
            /*-webkit-box-shadow: 7px 7px 7px rgba(0,0,0,0.3);
    -moz-box-shadow: 7px 7px 7px rgba(0,0,0,0.3);
    box-shadow: 7px 7px 7px rgba(0,0,0,0.3);*/
        }

        .wmfoldcornertr.wmmobile::after {
            content: "";
            position: absolute;
            top: 0%;
            right: 0%;
            width: 0px;
            height: 0px;
            border-top: 24px solid #ffffff;
            border-left: 24px solid transparent;
        }
    /*#endregion*/

    /* reverse grid columns on mobile, e.g user dashboard */
    .wmadmindashboardrow.wmreverse.wmmobile {
        flex-direction: column-reverse;
    }

    /* on admin issue award, select users table */
    .wmgrid.wmselectusers.wmmobile {
    }
        /* hide 3 columns */
        .wmgrid.wmselectusers.wmmobile tr td:nth-child(5), .wmgrid.wmselectusers.wmmobile tr th:nth-child(5),
        .wmgrid.wmselectusers.wmmobile tr td:nth-child(6), .wmgrid.wmselectusers.wmmobile tr th:nth-child(6),
        .wmgrid.wmselectusers.wmmobile tr td:nth-child(7), .wmgrid.wmselectusers.wmmobile tr th:nth-child(7) {
            display: none;
        }
    /* on Supplier Products, hide columns */

}

/* on adminApprovalQueue grid */
.wmgridapprove tbody tr td:nth-child(1) {
    width: 5%;
}

.wmgridapprove tbody tr td:nth-child(2) {
    width: 35%;
}

.wmgridapprove tbody tr td:nth-child(3) {
    width: 30%;
}

.wmgridapprove tbody tr td:nth-child(4) {
    width: 10%;
}

.wmgridapprove tbody tr td:nth-child(5) {
    width: 10%;
}

@media screen and (max-width:768px) {
    /* approve grid drop icon column */
    .wmgridapprove.wmmobile > tbody > tr > td:nth-child(1), .wmgridapprove.wmmobile tbody > tr > th:nth-child(1) {
        display: none;
    }

    /* Signup page help text width on mobile */
    .wmhelp200 {
        max-width: 200px;
    }
}
/*#endregion*/



/*#region old styles from Global.css, some perhaps still used, remove/clean as possible */

[id$='lblDateCalc'] {
    display: block;
    font-size: .85rem;
}
/*** -------------------------- ***/

/* Ajax Textbox Extender */
.watermarkText {
    color: #BBB;
}

.watermarkDisabled {
    color: #000;
}
/* Used on product pages for watermark in texboxes */
.watermarkSmall {
    color: #BBB;
    font-size: 11px !important;
    width: 150px;
}
/* Ajax calendar extender style */
.calStyle {
    background-color: #FFF;
    border: solid 1px #333;
}

    .calStyle div table {
        width: auto;
    }

    .calStyle table tr td:first-child {
        font-size: 1em !important;
        margin: 0 !important;
        padding: 0;
        width: auto !important;
    }










/* Paging */
#searchResults .pagination {
    width: 100%;
    justify-content: center;
    border-top: 2px solid #f2f2f2;
    padding-top: 1rem;
    margin-top: 1rem;
}

    #searchResults .pagination .page-items {
        padding: 0.3rem 1rem;
        align-self: center;
    }

        #searchResults .pagination .page-items > span a {
            padding: 0.3rem;
            border: 1px solid #ededed;
            border-radius: 3px;
        }

            #searchResults .pagination .page-items > span a:hover {
                background: #ededed;
            }

            #searchResults .pagination .page-items > span a:active {
                background: #ededed;
            }

/* ------------------------- */
/* Pop up window */
.wmodmap {
    position: relative;
}

.wmodpop {
    display: none;
    z-index: 2;
    width: auto;
    max-width: 500px;
    position: fixed;
    top: 20vh;
    left: 10vw;
    right: 10vw;
    margin: auto;
    box-shadow: 0px 5px 8px 0px rgba(0,0,0,0.2);
    border: 1px solid #777777;
    border-radius: 5px;
    background: #ededed;
    padding: 10px;
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 18%, #e8e8da 100%);
    background: -webkit-linear-gradient(top, #ffffff 18%,#e8e8da 100%);
    background: linear-gradient(to bottom, #ffffff 18%,#e8e8da 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e8e8da',GradientType=0 );
}


.wmodpopclose {
    color: red;
    font-size: 1.5em;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}





body .ui-datepicker select.ui-datepicker-month, body .ui-datepicker select.ui-datepicker-year {
    width: auto;
    height: auto;
    display: inline-block;
}


.required:after {
    content: " *";
    color: red;
}



#sortSearch .noListingsCategory a {
    color: #bbbbbb;
}

#sortSearch .inActiveCategory a, #sortSearch .inActiveBusiness {
    color: #ff0000;
}

#dialogConfirm fieldset {
    padding: .35em .625em .75em;
    margin: 0 2px;
    border: 1px solid silver;
}

@media print {
    /*personaBarContainer {
        display: none;
    }
    body.personabar-visible {
        margin-left: 0;
    }*/
}

/*** ------------------------------ ***/
/*** Values from old css/Global.css ***/
/*** ------------------------------ ***/

/*appears to not be used*/ .popupHeader {
    background-color: #000;
    color: #FFF;
    text-align: center;
    width: 100%;
}
/*appears to not be used*/ .hoverHelp {
    margin-left: 5px;
    background-color: #FFF;
    border: solid 1px #333;
    padding: 5px;
    width: 200px;
    z-index: 2147483647;
    position: relative;
}
/*appears to be used only once on Maintian supplier*/
.WindowsStyle .ajax__combobox_inputcontainer .ajax__combobox_textboxcontainer input {
    margin: 0;
    border: solid 1px #7F9DB9;
    border-right: 0px none;
    padding: 1px 0px 0px 3px;
    font-size: 13px;
    height: 18px;
    width: 155px;
}

.WindowsStyle .ajax__combobox_inputcontainer .ajax__combobox_buttoncontainer button {
    margin: 0;
    padding: 0;
    background-image: url(../../images/windows-arrow.gif);
    background-position: top left;
    border: 0px none;
    height: 21px;
    width: 21px;
}

.WindowsStyle .ajax__combobox_itemlist {
    border-color: #7F9DB9;
    width: 200px !important;
    left: 0px !important;
    top: 20px !important;
    margin: 0px !important;
}

    .WindowsStyle .ajax__combobox_itemlist li {
        background-image: none;
        padding-left: 3px;
    }

.hideGridColumn {
    display: none;
}
/* -------------------------------------------------------- */
/* -------------------------------------------------------- */
/* Menu Blanks */
a.cursorDefault {
    cursor: default;
}


/* Tooltips */
.tooltipAnchor {
    text-decoration: none !important;
    color: #AAA !important;
    font-style: italic;
}
/* validation, alerts, notes, tips */
.alertText {
    color: Red;
    text-transform: none;
}

.field_required {
    color: Red;
}

.field_example {
    font-style: italic;
    font-size: 85%;
}

.inline_note {
    font-size: 85%;
}
/* for small text as notes on page, used as class on <p> tag */

.debug_panel {
    padding: 5px;
    background-color: #FEFFB0;
    font-size: 11px;
    font-family: verdana;
}

    .debug_panel table {
        font-size: 11px;
        font-family: verdana;
    }

.dev_database {
    padding: 3px;
    background-color: Red;
    color: White;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 11px;
    font-family: verdana;
}




.emp_panel_extras {
    border: 1px solid #DFDFDF;
    background-color: #EFEFEF;
    padding: 20px;
    font-size: 11px;
    margin: 20px 40px 0 0;
}

    .emp_panel_extras .label {
        width: 50%;
        text-align: right;
        font-size: 11px;
    }

    .emp_panel_extras .field {
        width: 50%;
        text-align: left;
        font-size: 11px;
    }

    .emp_panel_extras td.field input[type="radio"] {
        font-size: 9px;
        vertical-align: top;
    }
/* timeout control, overrides css from ThemeRoller */
.timeout_countdown {
    text-align: center;
    font-size: 48px;
    padding: 20px;
}



/*input, select { width:310px;}
input[type="submit"] {width:auto;}
input[type="file"] {background-color:#FFF;}
input[type="checkbox"] {width: auto;}
input[type="radio"] {width: auto;}*/
/*textarea {
        height: 100px;
        width: 310px;
    }*/
/* number count icons */
.numIcon1 {
    margin: 0px;
    border: 0px solid #ffffff;
    border-top-color: #27C53B;
    border-right-color: #03460B;
    border-bottom-color: #03460B;
    border-left-color: #27C53B;
}



.LI_points {
}

.LI_points_blue {
    color: #356ECE;
}

.LI_points_green {
    color: #008800;
}

.LI_points_red {
    color: #A00303;
}
/* Tables New Format */
/*.LI_genericGrid {
    width: 100%;
}

    .LI_genericGrid td {
        padding: 5px;
    }

.LI_gridHeader {*/ /*text-transform:uppercase;*/
/*font-weight: normal;
    font-size: 14px;
    font-family: Arial, Helvetica, Sans-Serif;
    background-color: #DBDEE3;
}*/

.LI_gridHeaderBorder input[type="checkbox"] {
    margin: 0px 2px 2px 2px;
    padding: 0px;
}
/*.LI_gridHeaderBorder {
    border: 1px solid red;
    padding: 0px;
    margin: 0px;
}

.LI_gridHeader th {
    padding: 10px 5px;
    color: #888888;
    border: 1px solid #C3C2C2;
}*/
/*.LI_gridHeaderTight {*/ /*text-transform:uppercase;*/
/*font-weight: normal;
    font-size: 12px;
    font-family: Arial, Helvetica, Sans-Serif;
    background-color: #DBDEE3;
}

    .LI_gridHeaderTight th {
        padding: 8px 3px;
        color: #888888;
        border: 1px solid #C3C2C2;
    }

.LI_subHead {
    font-weight: bold;
}*/
/*used?*/
/*.LI_grid_template_table {
    padding: 0px;
    margin: 0px;
    border: 0px;
}

    .LI_grid_template_table td {
        padding: 0px;
        margin: 0px;
        border-bottom: 1px solid #;
    }*/
/* Record detail and navigation on Order History page */
.LI_detailsContainer {
    padding: 5px 10px;
}

/* Inputs */

input, select, textarea {
    /*letter-spacing: 1px;*/
    color: #444444;
    vertical-align: middle;
}


.search_table {
    width: 100%;
    border: 0px solid red;
    font-size: 11px;
    font-family: Verdana, Sans-Serif, Trebuchet MS;
}

    .search_table td {
        width: auto;
    }

.search_label {
}

.search_field {
}

.search_right {
    text-align: right
}
    /* doesn't work if rdo */
    .search_field label, .search_label label, .search_right label {
        font-size: 11px;
    }
    /* rdo lables */
    .search_field input, .search_field select, .search_label input, .search_label select, .search_right input, .search_right select {
        font-size: 11px;
    }







.LI_grid_points_column {
    text-align: right !important;
    vertical-align: top !important;
    font-size: 12px;
    font-weight: bold;
    padding: 0px 20px 0px 0px;
}
/*.LI_gridTitle {
    font-weight: bold;
}*/
/* ------------------------------------------------ */
/* Page specific */
/* ------------------------------------------------ */
/* Certificate Edit */
.LI_certTable {
    border: 0px solid blue;
    width: 100%;
    border-spacing: 0px;
    border-collapse: collapse;
}

    .LI_certTable td {
        border: 0px solid blue;
        padding: 5px;
        vertical-align: top;
    }

        .LI_certTable td.label {
            width: 20%;
            padding-top: 8px;
            text-align: right;
            font-size: 14px;
        }

        .LI_certTable td.field {
            width: 45%;
        }

        .LI_certTable td.preview {
            width: 35%;
            text-align: center;
        }
/* Certificate Generate Preview Area */
.LI_requestBoxCertificate {
    padding: 20px 30px 20px 30px;
    margin: 0px 20px 20px 10px;
    border: 1px solid #888888;
    background-color: #F6F6F6;
    border-radius: 5px;
}

.LI_certificatePreview {
    background-color: #FFFF66;
    padding: 10px;
    margin: 20px 0px;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
    border: 1px solid #888888;
}

    .LI_certificatePreview div {
        text-align: center;
        font-weight: normal;
    }
/* Terms, Privacy Legal Pages*/
/*.terms_legal {
    font-size: 12px;
}

    .terms_legal li {
        margin: 2px 0px 5px 20px;
    }

    .terms_legal ol {
        list-style-position: outside;
    }*/
/* Registration Page */
/*.login_table {
        border: 0px solid blue;
        width: 100%;
    }

    .login_table td {
        padding: 5px 0px;
    }

    .login_table td.label {
        font-size: 14px;
        width: 35%;
        text-align: right;
    }

    .login_table td.field {
        width: 65%;
        padding-left: 10px;
    }

    .login_table td.field input, .login_table td.field select {
        width: 200px;
    }

    .login_table td.field input[type=checkbox] {
        width: auto;
    }

    .login_table td.login_btn {
        padding: 20px 10px;
    }*/
/* Admin Program Summary */
/* .LI_pSummaryTable {
        border: 0px;
        width: 100%;
    }

    .LI_pSummaryTable td {
        padding: 0px 0px 2px 0px;
    }

    .LI_pSummaryHead {
        height: 27px;
        padding: 5px 0px 0px 33px;
        margin: 10px 0px 3px 0px;
        background-image: url('/icons/ico_sales01_sm.png');
        background-repeat: no-repeat;
    }

    .LI_pSummaryLeft {
        float: left;
        font-weight: bold;
        font-family: Arial,Helvetica,sans-serif;
        font-size: 14px;
        color: #888888;
        padding: 3px 0px 0px 0px;
    }

    .LI_pSummaryRight {
        float: right;
        font-weight: bold;
        font-family: Arial,Helvetica,sans-serif;
        font-size: 14px;
        padding: 3px 0px 0px 0px;
    }

    .LI_pSummaryTotal {
        float: right;
        color: Green;
        font-family: Arial,Helvetica,sans-serif;
        font-size: 16px;
        font-weight: bold;
        padding: 3px 0px 0px 0px;
    }*/

/* User Shop Menu */
.LI_sMenuHead {
    height: 27px;
    padding: 5px 0px 0px 33px;
    margin: 10px 0px 3px 0px;
    background-image: url('/icons/ico_folders_sm.png');
    background-repeat: no-repeat;
}
/* Password Strength */
.barIndicator_weak {
    color: Red;
    background-color: Red;
}

.barIndicator_good {
    color: Green;
    background-color: Green;
}

.barIndicator_Border {
    border-style: solid;
    border-color: #AAA;
    border-width: 1px;
    width: 100px;
    vertical-align: middle;
}
/* User Request Reward Area */
.LI_requestBox {
    padding: 0px 30px 20px 30px;
    margin: 30px;
    border: 1px solid #888888;
    background-color: #F6F6F6;
    border-radius: 5px;
}
/* grid highlight h4 for popup help*/
/*.LI_gridAwardTitle, a.link .LI_gridAwardTitle, a.visited .LI_gridAwardTitle, a.hover .LI_gridAwardTitle {
        color: inherit;
        margin: 3px 0px;
    }*/
/* mini summary on admin points page */
/*.LI_programSummaryMini {
        font-size: 11px;
    }*/
/* add rule form steps */
/*.LI_addRuleTable {
        width: 100%;
    }

    .LI_addRuleTable td {
        padding: 3px;
        vertical-align: top;
    }

    .LI_labelstyle1 {
        font-weight: bold;*/ /*font-size:14px;*/
/*text-align: right;
        width: 30%;
    }

    td.LI_labelstyle1 {
        padding-top: 8px;
    }

    .LI_fieldstyle1 {
        width: 70%;
    }*/
/* ------------------------------------------------ */
/* ------------------------------------------------ */
/* ------------------------------------------------ */
/* ------------------------------------------------ */
/* STORE */
/* ------------------------------------------------ */
/* Breadcrumb for store pages */
.shop_bread {
    font-size: 11px;
    margin: 0px 0px 5px 0px;
}
/* product image group */
.product_image_container {
    position: relative;
    border: 0px solid red;
}

    .product_image_container h1 {
        margin: 8px 0;
        padding: 0;
    }

    .product_image_container h4 {
        margin: 0 0 8px 0;
        padding: 0;
    }

.image_group {
    float: left;
    position: relative;
    border: 0px solid blue;
}

.product_info {
    float: left;
    width: 250px;
    padding: 0px 0px 0px 30px;
}

.product_price_txt {
}

.product_price, .product_price_txt {
    font-family: Arial, Sans-Serif;
    font-size: 14px;
    font-weight: bold;
}

.LI_itemTitle {
    float: left;
}
/* Used on product page .... reconsider.. Text and Dropdown sizes */
.txtSmallText {
    width: 150px;
}
/* Product Image Flipper Styles */
.slideshow {
    /*height: 480px;
        width: 365px;*/
    margin: auto;
}

    .slideshow img {
        padding: 5px;
        border: 1px solid #AAAAAA;
        border-bottom: 3px solid #AAAAAA;
        background-color: #fff;
    }

ul#nav {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 365px;
    left: 5px;
    width: 360px;
    border: 0px solid red;
}

#nav li {
    width: 50px;
    float: left;
    margin: 0 10px 5px 0px;
    list-style: none;
    list-style-type: none;
    background-image: none;
    padding: 0;
}
/* Shopping Cart */
.cart_body {
    width: 100%;
    margin: 0px;
    padding: 0px;
}

.cart_table {
    width: 100%;
}

    .cart_table td {
        padding: 5px;
        border: 1px solid #A8A8A8;
    }

        .cart_table td.cart_image {
            padding: 0px;
        }

.cart_header {
    background: #323232;
    color: #FFFFFF;
    line-height: 20px;
    font-size: 12px;
}

.cart_row {
    background: #FFFFFF;
}

.cart_row_alt {
    background: #E5E5E5;
}

.cart_empty {
    margin: 0px;
    padding: 20px 0px;
    text-align: center;
}

.cart_image {
    padding: 0px;
    width: 12%;
}

    .cart_image img {
        width: 80px;
    }

.cart_title {
    font-size: 14px;
    width: 51%;
}

    .cart_title a:link, .cart_title a:visited, .cart_title a:active {
    }

    .cart_title a:hover {
    }

.cart_option {
    font-size: 11px;
}

.cart_price {
    width: 13%;
    text-align: right !important
}

.cart_qty {
    width: 7%;
    text-align: center !important
}

    .cart_qty input {
        width: 24px;
    }

.cart_total {
    width: 13%;
    text-align: right !important;
}

.cart_delete {
    vertical-align: middle;
    width: 4%;
}

.cart_footer {
    margin: 0px;
    padding: 10px 0px;
    text-align: right;
}

    .cart_footer h3 {
        margin-bottom: 12px;
    }
/* ------------------------------------------------ */
/* ------------------------------------------------ */
/* ------------------------------------------------ */
/* ------------------------------------------------ */
/* CERTIFICATES */
/* ------------------------------------------------ */

.cert_iframe {
    position: relative;
    height: 1200px;
}

    .cert_iframe iframe {
        position: absolute;
        width: 900px;
        height: 1200px;
    }

.cert_gallery_outer {
    float: left;
    width: 200px !important;
    border: 1px solid #a8a8a8;
    margin: 7px;
    position: relative;
    min-height: 170px;
}

    .cert_gallery_outer p {
        margin: 0;
        padding: 0;
        font-size: 11px;
        text-align: center;
    }

.cert_gallery {
    text-align: center;
}

    .cert_gallery img {
        width: 200px;
        text-align: center;
    }

    .cert_gallery a:hover img {
        width: 300px;
        z-index: 10000;
        position: absolute;
        left: -50px;
        top: -35px;
        text-align: center;
        border: 1px solid #a8a8a8;
    }
/* ------------------------------------------------ */
/* ------------------------------------------------ */
/* ------------------------------------------------ */
/* --------------------------------------------------- */
/* Store Menu */
/* --------------------------------------------------- */
/* jQuery Vertical Huge Menu Styles */

.huge-menu {
    background-color: transparent; /* #E3E3E3; background of root container */
    border-bottom: 1px solid #C0C0C0; /* #E3E3E3; border at botton of last root item */
    float: left;
    position: relative;
    width: 100%;
    margin: 10px 0px 10px 0px;
    padding: 0px 0px 0px 0px;
}

    .huge-menu ul li {
        line-height: normal;
        padding: 0px; /* adjust flyout padding */
        margin: 0px; /* adjust flyout margin */
        background-image: none !important;
    }

.dc-huge-li {
    background-image: none !important;
    padding: 0px; /* adjust root item padding */
    margin: 0px; /* adjust root item margin */
}

.huge-menu li a {
    -moz-border-bottom-colors: none;
    -moz-border-image: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background-color: transparent; /* #f2f2f2 passive state of root items */
    border-color: #C0C0C0; /*-moz-use-text-color #dcdcdc #dcdcdc border color of root items */
    border-style: solid none none none;
    border-width: 1px;
    color: #888888; /*  #3a3a3a Font color of all items, passive state */
    display: block;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 14px; /* size of root items */
    font-weight: bold;
    padding: 10px 0 10px 25px; /* affects dynamic jquery code creation values */
    text-decoration: none !important;
}

    .huge-menu li a:hover, .huge-menu li.huge-hover a {
        /**/ background: #959595; /* hover state color of root item background */
        /**/ color: #fff !important; /* #3a3a3a; no apparent effect unless !important is used, overridden by above */
        border-left: 1px solid #dcdcdc; /* #dcdcdc left border of hovered root items */
        border-top: 1px solid #dcdcdc; /* #dcdcdc top border of hovered root items */
        border-right: 1px solid #dcdcdc; /* #dcdcdc right border of hovered root items */
    }

    .huge-menu li a.dc-huge {
        position: relative;
    }
    /* Add arrow icon to parent links */
    .huge-menu li a .dc-huge-icon {
        display: block;
        position: absolute;
        top: 14px;
        left: 10px;
        width: 6px;
        height: 9px;
        /**/ background: url(images/nav_arrow_left04.png) no-repeat 0 0;
        background-position: left;
    }

    .huge-menu li a:hover .dc-huge-icon {
        background-position: right;
    }
/* huge menu container */
.huge-menu li .sub-container {
    position: absolute;
    /**/ background: #959595; /* #FFFFFF background color of flyout container */
    padding: 0px 0px 0px 0px !important;
    /**/ border: 1px solid grey; /* border color of flyout container */
}

    .huge-menu li .sub-container .sub {
    }

.huge-menu li .sub .row {
    width: 100%;
    overflow: hidden;
}

.huge-menu li .sub li {
    float: none;
    width: 160px;
    font-size: 1em;
    font-weight: normal;
}

    .huge-menu li .sub li.huge-hdr {
        float: left;
        margin: 0 5px 10px 5px;
    }

.huge-menu li .sub a, .huge-menu.left li .sub a {
    background: none;
    border: none;
    text-shadow: none;
    float: none;
    color: #ebebeb; /* color of text on flyout cat headings and sub links, no apparent effect unless !important */
    padding: 7px 10px;
    display: block;
    text-decoration: none;
    font-size: 1em; /* Font size of sub items */
}

.huge-menu li .sub li.huge-hdr a.huge-hdr-a {
    padding: 5px 5px 5px 10px; /* padding on subs header item */
    margin-bottom: 5px; /* margin on header subs header item */
    /**/ background: #404040; /* #ebebeb background color of flyout headings */
    text-transform: uppercase;
    font-weight: normal;
    color: #fff; /* color of text on flyout cat headings, no apparent effect unless !important */
}

    .huge-menu li .sub li.huge-hdr a.huge-hdr-a:hover {
        /**/ color: blue; /* color of hover text on flyout cat headings, no apparent effect unless !important */
    }

.huge-menu .sub li.huge-hdr li a {
    padding: 4px 5px 4px 22px;
    background-image: url(images/nav_arrow_right04.png);
    background-repeat: no-repeat;
    background-position: 7px 8px; /* passive arrow on subcats */
    border-bottom: 0px solid #ffffff;
    font-weight: normal;
    /**/ color: #FFFFFF; /* #35b0b5 color of text links on sub cats, no apparent effect unless !important */
}

    .huge-menu .sub li.huge-hdr li a:hover {
        /**/ color: blue; /* color of hover text on sub cats, no apparent effect unless !important */
        background: #efefef url(images/nav_arrow_right03.png) no-repeat 7px 8px; /* hover state arrow on subcats */
    }

.huge-menu .sub ul li {
    padding: 0px 0px 0px 0px;
}

.huge-menu ul {
    padding: 0px 0px 0px 0px;
}
/* --------------------------------------------------- */
/* Buttons */
/* --------------------------------------------------- */
/* begin Button */
span.art-button-wrapper > a.art-button, span.art-button-wrapper > a.art-button:link, span.art-button-wrapper > input.art-button, span.art-button-wrapper > button.art-button {
    text-decoration: none;
    font-family: Arial, Helvetica, Sans-Serif;
    font-style: normal;
    font-weight: bold;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    top: 0;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    color: #F9FAFB !important;
    width: auto;
    outline: none;
    border: none;
    background: none;
    line-height: 24px;
    height: 24px;
    margin: 0 !important;
    padding: 0 10px !important;
    overflow: visible;
    cursor: pointer;
    text-indent: 0;
}

.art-button img, span.art-button-wrapper img {
    margin: 0;
    vertical-align: middle;
}

span.art-button-wrapper {
    vertical-align: middle;
    display: inline-block;
    position: relative;
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 0;
    width: auto;
    max-width: 792px;
    margin: 0;
    padding: 0;
    z-index: 0;
}

.firefox2 span.art-button-wrapper {
    display: block;
    float: left;
}



div.art-block select {
    width: 96%;
}

span.art-button-wrapper.hover > .art-button, span.art-button-wrapper.hover > a.art-button:link {
    color: #F9FAFB !important;
    text-decoration: none !important;
}

span.art-button-wrapper.active > .art-button, span.art-button-wrapper.active > a.art-button:link {
    color: #444444 !important;
}

span.art-button-wrapper > span.art-button-l, span.art-button-wrapper > span.art-button-r {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    background-image: url('images/button.png');
    background-repeat: no-repeat;
}

span.art-button-wrapper > span.art-button-l {
    left: 0;
    right: 4px;
    background-position: top left;
}

span.art-button-wrapper > span.art-button-r {
    width: 4px;
    right: 0;
    background-position: top right;
}

span.art-button-wrapper.hover > span.art-button-l {
    background-position: center left;
}

span.art-button-wrapper.hover > span.art-button-r {
    background-position: center right;
}

span.art-button-wrapper.active > span.art-button-l {
    background-position: bottom left;
}

span.art-button-wrapper.active > span.art-button-r {
    background-position: bottom right;
}

span.art-button-wrapper input {
    float: none !important;
}
/* end Button */
/* --------------------------------------------------- */
/* --------------------------------------------------- */
/* --------------------------------------------------- */




/*#region Ajax Modal Popup Dialog */
/*.modalPopup {*/ /*text-align: center;*/
/*font-size: 13px;
        background-color: #EEEEEE;
        padding: 20px 30px 20px 30px;
        width: 600px;
    }

    .modalPopup a {
    }

    .modalPopup a:hover {
    }

    .modalBackground {
        background-color: Black;
        filter: alpha(opacity=60);
        -moz-opacity: 0.6;
        -khtml-opacity: 0.6;
        opacity: 0.6;
    }

    .modalPopupTC {
        overflow: auto;
        height: 500px;
        font-size: 11px;
    }

    .modalPopupTC p, .modalPopupTC li {
        font-size: 11px;
    }*/
/* Ajax Textbox Extender */
.watermarkText {
    color: #BBB;
}

.watermarkDisabled {
    color: #000;
}
/* Used on product pages for watermark in texboxes */
.watermarkSmall {
    color: #BBB;
    font-size: 11px !important;
    width: 150px;
}
/* Ajax calendar extender style */
.calStyle {
    background-color: #FFF;
    border: solid 1px #333;
}

    .calStyle div table {
        width: auto;
    }

    .calStyle table tr td:first-child {
        font-size: 1em !important;
        margin: 0 !important;
        padding: 0;
        width: auto !important;
    }
/*#endregion Ajax Tabs 
.ajax__tab_header{}
.ajax_tabs_outer {}
.ajax_tabs_inner {}
.ajax__tab_body{}
.ajax__tab_tab { font-size:12px; padding:10px !important;width:auto !important; height:40px !important;}
.ajax__tab_hover{ background-color:Blue !important;}
.ajax__tab_active{ background-color:Red !important;}*/
/* 
.ajax__tab_header: A container element that wraps all of the tabs at the top of the TabContainer. Child CSS classes:.ajax__tab_outer. 
.ajax__tab_outer: An outer element of a tab, often used to set the left-side background image of the tab.Child CSS classes: .ajax__tab_inner. 
.ajax__tab_inner: An inner element of a tab, often used to set the right-side image of the tab. Child CSS classes:.ajax__tab_tab. 
.ajax__tab_tab: An element of the tab that contains the text content. Child CSS classes:none.
.ajax__tab_body: A container element that wraps the area where a TabPanel is displayed. Child CSS classes: none.
.ajax__tab_hover . This is applied to a tab when the mouse is hovering over. Child CSS classes:.ajax__tab_outer. 
.ajax__tab_active: This is applied to a tab when it is the currently selected tab. Child CSS classes:.ajax__tab_outer. 
*/


/*#endregion */


/* ----------- QUIZ ENGINE -------------- */
/* Basics */

.wModQuiz {
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    margin: 0px;
    padding: 10px;
    border: 0px;
    border-radius: 4px;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.3);
    text-align: left;
    text-decoration: none;
    text-shadow: none;
    letter-spacing: normal;
}

    .wModQuiz h1,
    .wModQuiz .h1,
    .wModQuiz h2,
    .wModQuiz .h2,
    .wModQuiz h3,
    .wModQuiz .h3,
    .wModQuiz h4,
    .wModQuiz .h4,
    .wModQuiz h5,
    .wModQuiz .h5,
    .wModQuiz h6,
    .wModQuiz .h6 {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 14px;
        font-weight: bold;
        line-height: 1.5;
        color: #333;
        letter-spacing: normal;
        text-transform: none;
    }

    .wModQuiz p, .wModQuiz li, .wModQuiz .normal, .wModQuiz .normal, .wModQuiz a {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 14px;
    }

    .wModQuiz h1, .wModQuiz .h1 {
        font-size: 130%;
    }

    .wModQuiz h2, .wModQuiz .h2 {
        font-size: 125%;
    }

    .wModQuiz h3, .wModQuiz .h3 {
        font-size: 120%;
    }

    .wModQuiz h4, .wModQuiz .h4 {
        font-size: 115%;
    }

    .wModQuiz h5, .wModQuiz .h5 {
        font-size: 110%;
    }

    .wModQuiz h6, .wModQuiz .h6 {
        font-size: 105%;
    }

    /* Buttons */
    /*#region Define Buttons */
    /* ------------------------------------------- */
    .wModQuiz .btn-primary,
    .wModQuiz .btn-primary,
    .wModQuiz a.btn-primary,
    .wModQuiz a.btn-primary:link,
    .wModQuiz a.btn-primary:visited,
    .wModQuiz .dnnPrimaryAction,
    .wModQuiz a.dnnPrimaryAction,
    .wModQuiz a.dnnPrimaryAction:link,
    .wModQuiz a.dnnPrimaryAction:visited,
    .wModQuiz input[type="submit"],
    .wModQuiz .dnnFormItem input[type="submit"] {
        border-width: 1px;
        border-radius: 2px;
        border-color: #d3d3d3;
        border-style: solid;
        /*box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.1);*/
        padding: 4px 8px;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 14px;
        font-weight: bold;
        color: #a7a7a7;
        text-transform: none;
        text-decoration: none;
        text-shadow: none;
        box-shadow: none;
        transition: all $TransitionSpeedDefault ease;
        background: #f3f3f3;
        letter-spacing: normal;
    }

        .wModQuiz .btn-primary:hover,
        .wModQuiz a.btn-primary:hover,
        .wModQuiz .dnnPrimaryAction:hover,
        .wModQuiz a.dnnPrimaryAction:hover,
        .wModQuiz input[type="submit"]:hover,
        .wModQuiz .dnnFormItem input[type="submit"]:hover {
            border-color: #d3d3d3;
            color: #0071bd;
            background: #fff;
            border-width: 1px;
        }

        .wModQuiz .btn-primary:active,
        .wModQuiz a.btn-primary:active,
        .wModQuiz .dnnPrimaryAction:active,
        .wModQuiz a.dnnPrimaryAction:active,
        .wModQuiz input[type="submit"]:active,
        .wModQuiz .dnnFormItem input[type="submit"]:active
        /*input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
.dnnFormItem input[type="button"]:focus,
.dnnFormItem input[type="reset"]:focus,
.dnnFormItem input[type="submit"]:focus */ {
            border-color: #d3d3d3;
            /*box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.1);*/
            color: #0071bd;
            text-decoration: none;
            text-shadow: none;
            background: #fff;
        }
    /* ------------------------------------------- */
    /* Secondary Action */
    .wModQuiz input[type="button"],
    .wModQuiz input[type="reset"],
    .wModQuiz .dnnFormItem button,
    .wModQuiz .dnnFormItem input[type="button"],
    .wModQuiz .dnnFormItem input[type="reset"],
    .wModQuiz .dnnSecondaryAction,
    .wModQuiz a.dnnSecondaryAction,
    .wModQuiz ul.dnnAdminTabNav li a,
    .wModQuiz .dnnLogin .LoginTabGroup span {
        border-width: 1px;
        border-radius: 2px;
        border-color: #999;
        border-style: solid;
        box-shadow: none; /*0px 2px 4px 0px rgba(0,0,0,0.1);*/
        padding: 4px 8px;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 14px;
        font-weight: bold;
        color: #a7a7a7;
        text-decoration: none;
        text-shadow: none;
        transition: all $TransitionSpeedDefault ease;
        background: #ededed;
        text-transform: none;
        letter-spacing: normal;
    }

        .wModQuiz input[type="button"]:hover,
        .wModQuiz input[type="reset"]:hover,
        .wModQuiz .dnnFormItem button:hover,
        .wModQuiz .dnnFormItem input[type="button"]:hover,
        .wModQuiz .dnnFormItem input[type="reset"]:hover,
        .wModQuiz .dnnSecondaryAction:hover,
        .wModQuiz a.dnnSecondaryAction:hover,
        .wModQuiz ul.dnnAdminTabNav li a:hover,
        .wModQuiz .dnnLogin .LoginTabGroup span:hover {
            border-color: #d3d3d3;
            text-decoration: none;
            background: #ededed;
            color: #555;
        }

        .wModQuiz input[type="button"]:active,
        .wModQuiz input[type="reset"]:active,
        .wModQuiz .dnnFormItem button:active,
        .wModQuiz .dnnFormItem input[type="button"]:active,
        .wModQuiz .dnnFormItem input[type="reset"]:active,
        .wModQuiz .dnnFormItem input[type="reset"]:active,
        .wModQuiz .dnnSecondaryAction:active,
        .wModQuiz a.dnnSecondaryAction:active,
        .wModQuiz ul.dnnAdminTabNav li a:active {
            text-decoration: none;
        }

/*#endregion */

.wModClear {
    clear: both;
    line-height: 0;
    font-size: 0;
    height: 0;
    padding: 0;
    margin: 0;
}

.wModSubHead {
    font-size: 18px;
    font-weight: normal;
    padding: 3px 0px;
    text-align: left;
}

hr {
    margin: 12px 0px 8px 0px;
    height: 2px;
    border: none;
    color: #ccc;
    background-color: #ccc;
}
/* ------------------------- */
/* Internal Columns */

.wModRow {
    width: 101%;
    clear: both;
}

.wModCols1 {
    width: 7.3333%;
}

.wModCols2 {
    width: 15.6666%;
}

.wModCols3 {
    width: 24%;
}

.wModCols4 {
    width: 32.3333%;
}

.wModCols5 {
    width: 40.6666%;
}

.wModCols6 {
    width: 49%;
}

.wModCols7 {
    width: 57.3333%;
}

.wModCols8 {
    width: 65.6666%;
}

.wModCols9 {
    width: 74%;
}

.wModCols10 {
    width: 82.3333%;
}

.wModCols11 {
    width: 90.6666%;
}

.wModCols12 {
    width: 99%;
}

.wModCols1, .wModCols2, .wModCols3, .wModCols4, .wModCols5, .wModCols6, .wModCols7, .wModCols8, .wModCols9, .wModCols10, .wModCols11, .wModCols12 {
    float: left;
    box-sizing: border-box;
    margin-left: 1%;
}

.wModRow > div:first-child {
    margin-left: 0;
}

/* ------------------------- */
/* Internal Columns - mobile */

@media screen and (max-width: 799px) {

    .wModRow {
        width: 100%;
    }

    .wModCols1, .wModCols2, .wModCols3, .wModCols4, .wModCols5, .wModCols6, .wModCols7, .wModCols8, .wModCols9, .wModCols10, .wModCols11, .wModCols12 {
        width: 100%;
        float: none;
        box-sizing: border-box;
        margin-left: 0;
    }
}



/* ------------------------- */
/* Generic error, system, success messages, use on error control or divs */

.wMsgError:empty {
    display: none;
}

.wMsgError {
    margin: 20px 0px;
    background-color: #FFDFDF;
    background-image: url(img/red-error_16px.gif);
    background-position: 10px center;
    background-repeat: no-repeat;
    color: #C10000;
    border: 2px solid #C10000;
    padding: 10px 10px 10px 30px;
    display: block;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}
/* Red */
.wMsgSystem {
    margin: 20px 0px;
    background-color: #D5E6FA;
    background-image: url(img/about_16px.gif);
    background-position: 10px center;
    background-repeat: no-repeat;
    color: #3D6A9C;
    border: 2px solid #508BCD;
    padding: 10px 10px 10px 30px;
    display: block;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}
/* Blue */
.wMsgSuccess {
    margin: 20px 0px;
    background-color: #D6FBDA;
    background-image: url(img/green-ok_16px.gif);
    background-position: 10px center;
    background-repeat: no-repeat;
    color: #2E7736;
    border: 2px solid #57B161;
    padding: 10px 10px 10px 30px;
    display: block;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}
/* Green */

/* ------------------------- */
/* Module Menu */

ul.wModuleMenu {
}

    ul.wModuleMenu li {
        display: inline-block;
    }

        ul.wModuleMenu li a, ul.wModuleMenu li a:link, ul.wModuleMenu li a:visited {
            display: inline-block;
            font-size: 13px;
            margin: 0px 1px 5px 1px;
            background: #4285f4;
            color: #fff;
            text-transform: uppercase;
            padding: 5px 10px;
            border-radius: 3px;
            box-shadow: 0px 12px 6px -12px rgba(0,0,0,0.4);
            cursor: pointer;
            transition: all ease-in-out 300ms;
            border: none;
        }

            ul.wModuleMenu li a:hover {
                box-shadow: 0px 27px 16px -16px rgba(0,0,0,0.2);
                transform: translate(0px, -3px) scale(1.05);
                text-decoration: none;
                color: #fff;
            }

/* ------------------------- */
/* Module Button */

.wModulePrimaryAction, .wModulePrimaryAction:link, .wModulePrimaryAction:visited, .wModulePrimaryAction:active {
    display: inline-block;
    margin: 0px 2px 5px 2px;
    background: #4285f4;
    color: #fff;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: 3px;
    box-shadow: 0px 12px 6px -12px rgba(0,0,0,0.4);
    cursor: pointer;
    transition: all ease-in-out 300ms;
    border: none;
}

    .wModulePrimaryAction:hover, .wModulePrimaryAction:focus {
        box-shadow: 0px 27px 16px -16px rgba(0,0,0,0.2);
        transform: translate(0px, -3px) scale(1.05);
        text-decoration: none;
        color: #fff;
    }

/* Button variations */

.wModCheckoutBtn {
    margin: 8px 8px 5px 0px;
    background: #ff6a00;
}

.wBtnColor1 {
    background: #ff6a00;
}

.wModTemplateBtn {
    background: #57B161;
    margin-top: 8px;
}

/* Upper Action panel */
.wTopActions {
    text-align: right;
    position: relative;
    right: unset;
    top: unset;
}


.wInfoText {
    font-size: 11px;
}


/* font awesome true false items */

.wGrid-True {
    background-color: #38dd2e;
    border-radius: 2px;
    width: 14px;
    height: 14px;
    display: inline-block;
}

.wGrid-False {
    background-color: #d65d5d;
    border-radius: 2px;
    width: 14px;
    height: 14px;
    display: inline-block;
}


.wGridForm input[type=text], .wGridForm select, .wGridForm textarea {
    font-family: sans-serif;
    color: #222;
    font-size: 1rem;
    padding: 7px 10px;
    width: 100%;
}

.wGridForm textarea {
    height: 100px;
}

table.wGridForm {
    width: 100%;
    max-width: 700px;
}

    table.wGridForm tr td:first-child {
        text-align: right;
        font-weight: bold;
    }

.ModWebmontonQuizEngineC h1 {
    font-weight: bold;
    /*font-size: 2.7rem;*/
}




/* ------------------------- */
/* Grid Styles */
.wGrid {
    width: 100%;
    border: none;
    margin-top: .8rem;
}

    .wGrid td, .wGrid th {
        padding: 10px 5px 5px 5px;
        border: 0px solid #C0B5A6;
        font-weight: normal;
        font-size: 14px;
    }

    .wGrid th {
        font-weight: bold;
    }

.wGridHeader {
    background: #e9e9e9;
    color: #444;
}

    .wGridHeader a:link, .wGridHeader a:visited, .wGridHeader a:active {
        color: #444;
        padding-right: 13px;
        text-decoration: none;
    }

    .wGridHeader a:hover {
        color: Blue;
        background: url(img/wGridSort01.png) no-repeat right center;
        padding-right: 13px;
    }

.wGridRow {
    background-color: #fff;
    font-size: 1rem;
    /*border-bottom: 1px dashed #73B249;*/
}

.wGridRowAlt {
    background-color: #e9e9e9;
    font-size: 1rem;
    /*border-bottom: 1px dashed #73B249;*/
}

.wGridTopLeft {
    text-align: left;
    vertical-align: top;
}

.wGridTopCenter {
    text-align: center;
    vertical-align: top;
}

.wGridTopRight {
    text-align: right;
    vertical-align: top;
}

.wGridMidLeft {
    text-align: left;
    vertical-align: middle;
}

.wGridMidCenter {
    text-align: center;
    vertical-align: middle;
}

.wGridMidRight {
    text-align: right;
    vertical-align: middle;
}

.wGridEmpty {
    padding: 20px;
}

.wGridImg {
    max-height: 100px;
}
/* ------------------------- */
/* Fieldsets */

.wHeaderFieldset {
    position: relative;
    border: 2px solid #c0c0c0;
    padding: 8px 12px 8px 20px;
    margin: 15px 0px 15px 0px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

    .wHeaderFieldset legend {
        font-size: 24px;
        padding: 0px 5px;
        width: auto;
        margin-bottom: 5px;
    }

    .wHeaderFieldset h2 {
        font-size: 18px;
        font-weight: normal;
        padding: 10px 0px 10px 0px;
    }

    .wHeaderFieldset p {
        margin: 0 0 10px 0;
    }

    .wHeaderFieldset hr {
        margin: 12px 0px 8px 0px;
        height: 2px;
        border: none;
        color: #ccc;
        background-color: #ccc;
    }

    .wHeaderFieldset input[type="submit"] { /*margin-bottom: 0px;*/
    }

    .wHeaderFieldset input[type="radio"] {
        margin: 0 2px 0 10px;
    }

    .wHeaderFieldset input[type="text"], .wHeaderFieldset select {
        padding: 3px;
        font-size: 12px;
        height: 24px;
        line-height: 130%;
    }

    .wHeaderFieldset p, .wHeaderFieldset li, .wHeaderFieldset label, .wHeaderFieldset span {
        font-size: 12px;
    }

/*
.wHeaderFieldset .wOptionButtons { float: right; margin-left: 30px; }
.wHeaderFieldset .wOptionButtons img { margin-left: 5px; }

.wHeaderFieldset .wAdminUserSelect { float: right;}
.wHeaderFieldset .wAdminUserSelect span { line-height: 30px; vertical-align: top;padding-left:20px; }
.wHeaderFieldset .wAdminUserSelect select, .wHeaderFieldset .wAdminUserSelect input[type="text"] { margin-bottom: 0px; margin-top: -3px; }*/

/* Question radio layout via Ul */

.questionWrapper b {
    font-size: 1.2rem;
}

.questionWrapper ul {
    list-style-type: none;
    padding-left: 0;
    border-bottom: 5px dashed #ededed;
    padding-bottom: 1rem;
}

.questionWrapper ul {
    margin-left: 0px;
    margin: 2rem 0;
    padding-bottom: 2rem;
}

    .questionWrapper ul li {
        margin-left: 15px;
    }

.wQuestionHr {
    border-top: 5px dashed #ededed;
    color: unset;
    background-color: unset;
    margin: 2rem 0;
}


#questionRepeater {
    border: 10px solid #ededed;
    padding: 1rem 1rem 2rem 1rem;
}

/* Dialogs */
.wh1 {
}

.wh2 {
}

.wh1, .wh2, .wh3, .wh4 {
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 1.3rem;
    margin: .5rem 0;
}

.wDialog {
    text-align: center;
}

.wDialog2 {
    display: block;
    text-align: center;
    margin: .5rem 0;
}

.ui-dialog {
    z-index: 200;
}



.wGrid.wModuleList {
    border-collapse: separate !important;
    border-spacing: 0 12px;
}


@keyframes click-wave {
    0% {
        height: 40px;
        width: 40px;
        opacity: 0.35;
        position: relative;
    }

    100% {
        height: 200px;
        width: 200px;
        margin-left: -80px;
        margin-top: -80px;
        opacity: 0;
    }
}

.questionWrapper input[type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    top: 13.33333px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 32px;
    width: 32px;
    transition: all 0.15s ease-out 0s;
    background: #cbd1d8;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    outline: none;
    position: relative;
    z-index: 1000;
}

    .questionWrapper input[type=radio]:hover {
        background: #9faab7;
    }

    .questionWrapper input[type=radio]:checked {
        background: #72b3da;
    }

        .questionWrapper input[type=radio]:checked::before {
            height: 32px;
            width: 32px;
            position: absolute;
            content: '✔';
            display: inline-block;
            font-size: 22px;
            text-align: center;
            line-height: 32px;
        }

        .questionWrapper input[type=radio]:checked::after {
            -webkit-animation: click-wave 0.65s;
            -moz-animation: click-wave 0.65s;
            animation: click-wave 0.65s;
            background: #72b3da;
            content: '';
            display: block;
            position: relative;
            z-index: 100;
        }

.questionWrapper input[type=radio] {
    border-radius: 50%;
}

    .questionWrapper input[type=radio]::after {
        border-radius: 50%;
    }

.wQuestionPre {
    display: flex;
    border: 10px solid #ededed;
    justify-content: space-between;
    margin-top: 1rem;
}

    .wQuestionPre .wqtop {
        padding: 1rem;
    }

        .wQuestionPre .wqtop:nth-child(1) {
            flex-basis: 48%;
        }

        .wQuestionPre .wqtop:nth-child(2) {
            background: #ededed;
            flex-basis: 50%;
            padding: 0rem 0rem 0rem 10px;
        }

.wrow {
    box-sizing: border-box;
}

@media screen and (max-width:768px) {
    .wQuestionPre .wqtop:nth-child(1) {
        flex-basis: 100%;
    }

    .wQuestionPre .wqtop:nth-child(2) {
        flex-basis: 100%;
        padding: 10px 0rem 0rem 0rem;
    }

    .wQuestionPre {
        flex-wrap: wrap;
    }
}

















/* ------------------------- */
/* Cats Edit */

.wCatEdit {
}

.wCatTitle {
    font-size: 18px;
    font-weight: normal;
    padding: 20px 0px 10px 0px;
}

.wCatEdit input[type=text], .wCatEdit select, .wCatEdit textarea {
    width: 100%;
    height: 34px;
}

.wCatEditActions div {
    text-align: right;
    padding-top: 12px;
}

.wCatEditActions .wModCols9 ul, .wCatEditActions .wModCols9 li {
    display: inline-block;
    margin: 0px;
}

    .wCatEditActions .wModCols9 ul li input[type="radio"] {
        margin: 0;
    }

    .wCatEditActions .wModCols9 ul li label {
        font-size: 13px;
        font-weight: normal;
        padding: 0px 10px 0px 5px;
    }



/* ------------------------- */
/* Admin Items List */

.wItemList {
    padding: 10px 0px;
}

    .wItemList input[type=text], .wItemList select {
        width: 80%;
        height: 34px;
    }

    .wItemList div:nth-child(1) select {
        width: 60px;
    }

    .wItemList div:nth-child(2) select {
        width: 50%;
    }

    .wItemList div:nth-child(3) input[type=text] {
        width: 50%;
    }



/* ------------------------- */
/* Admin Item Edit */

.wItemEdit input[type=text], .wItemEdit select, .wItemEdit textarea {
    width: 100%;
    height: 24px;
}

.wItemEdit textarea {
    height: 70px;
}

.wItemEdit div {
    padding: 2px;
}

.wItemEdit ul, .wItemEdit li {
    display: inline-block;
    margin: 0px;
}

.wItemEdit input[type=radio] {
    margin: 0;
}

.wItemEdit label {
    font-size: 13px;
    font-weight: normal;
    padding: 0px 10px 0px 5px;
}

.wItemEdit .wModCols4 {
    text-align: right;
}

.wItemEdit .wModCols8, .wItemEdit .wModCols12 {
    text-align: left;
}

    .wItemEdit .wModCols8 .wModCols8 {
        text-align: right;
        padding: 0px;
    }



.wItemNotes {
    margin-top: -20px;
}

/* Item Image Group */
.wImageGroup {
    position: relative;
}

    .wImageGroup .slide {
    }

    .wImageGroup img, .wImageApply img {
        background: #ececec;
        border: 1px solid #ccc;
        border-radius: 3px;
        box-shadow: 0px 12px 6px -12px rgba(0,0,0,0.4);
    }

    .wImageGroup ul#nav {
        margin: 0;
        padding: 10px 0px; /*position: absolute; top: 322px; left: 5px; width: 310px;*/
    }

    .wImageGroup #nav li {
        width: 50px;
        display: inline-block;
        margin: 0 10px 5px 0px;
        list-style: none;
        list-style-type: none;
        background-image: none;
        padding: 0;
    }

/* Item Image section */
.wImageCurrent fieldset {
    min-height: 430px;
}

.wImageApply fieldset {
    min-height: 430px;
}

.wImageApply input[type=text], .wImageApply select, .wImageApply textarea {
    width: 100%;
    height: 34px;
}

.wImageApply input[type=submit] {
    width: 95%;
    margin-left: 5%;
}

.wImageUpload fieldset {
    min-height: 430px;
}

/* Item Options section */

.wItemOptions {
}

    .wItemOptions .wGrid tr td:first-child img {
        width: 100%;
        max-width: 100% !important;
    }

.wItemOptionEdit input[type=text], .wItemOptionEdit select {
    width: 100%;
    height: 34px;
}

/* Projects */

.wProjectEdit .wModRow {
    padding: 2px;
}

.wProjectEdit .wModCols4 {
    text-align: right;
}

    .wProjectEdit .wModCols4 .wModCols8 {
        text-align: left;
    }

.wProjectEdit .wModCols12 {
    text-align: left;
}

.wProjectEdit input[type="text"], .wProjectEdit select, .wProjectEdit textarea {
    width: 100%;
    height: 24px;
}

.wProjectEdit textarea {
    height: 70px;
}


.wCartGroupHeader {
    width: 100%;
    padding: 5px 1%;
    background: #4285f4;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.wProjectRepeater {
    border: 1px solid #888;
    border-width: 1px 1px 0px 1px;
    margin-top: 5px;
}

    .wProjectRepeater .wModRow {
        background: #fff;
        border-bottom: 1px solid #888;
        padding: 3px 0px;
    }

        .wProjectRepeater .wModRow:nth-child(even) {
            background: #ececec;
        }

    .wProjectRepeater input[type=text] {
        width: 40px;
    }

    .wProjectRepeater .wRepeaterImg {
        border: 0px solid #888;
        border-width: 0px;
        max-height: 100px;
        margin: 5px;
    }


.wSelectionDisplay {
    text-align: right;
}

    .wSelectionDisplay ul, .wSelectionDisplay li {
        display: inline-block;
        margin: 0px;
    }

        .wSelectionDisplay ul li input[type="radio"] {
            margin: 0;
        }

        .wSelectionDisplay ul li label {
            font-size: 13px;
            font-weight: normal;
            padding: 0px 10px 0px 5px;
        }

/* Radios H */

ul.wRadioH, ul.wRadioH li {
    display: inline-block;
    margin: 0;
}

    ul.wRadioH, ul.wRadioH li input {
    }

        ul.wRadioH, ul.wRadioH li label {
            font-size: 13px;
            font-weight: normal;
            padding: 0px 10px 0px 5px;
        }

ul.wRadioV, ul.wRadioV li {
    display: block;
    margin: 0;
}

    ul.wRadioV, ul.wRadioV li input {
    }

        ul.wRadioV, ul.wRadioV li label {
            font-size: 13px;
            font-weight: normal;
            padding: 0px 10px 0px 5px;
        }

/* Home */

.wHomePanel {
}

    .wHomePanel > .wModCols4 {
        border-left: 1px solid #4285f4;
        height: 100%;
        text-align: right;
        padding: 1%;
        min-height: 150px;
    }

        .wHomePanel > .wModCols4:first-child {
            border-left: 0px solid #4285f4;
        }

    .wHomePanel .wModCols4:first-child .wModCols6 {
        text-align: right;
    }

    .wHomePanel .wModCols4:nth-child(2) .wModCols12 {
        text-align: center;
    }

    .wHomePanel .wModCols4:nth-child(2) .wModCols4 {
        text-align: left;
    }

    .wHomePanel .wModCols4:nth-child(2) .wModCols8 {
        text-align: right;
    }

    .wHomePanel .wModCols4:nth-child(3) {
        text-align: center;
    }

        .wHomePanel .wModCols4:nth-child(3) .wModCols12 {
            text-align: center;
        }

        .wHomePanel .wModCols4:nth-child(3) .wModulePrimaryAction {
            width: 75%;
        }

.wProjectSelection {
}

    .wProjectSelection select {
        width: auto;
        height: 34px;
    }

/* Portal Options section */

.wPortalOptions {
}

    .wPortalOptions .wModCols4 input[type=text], .wPortalOptions .wModCols4 select {
        width: 100%;
        height: 34px;
    }

    .wPortalOptions .wModCols8 textarea {
        width: 100%;
        height: 200px;
    }

        .wPortalOptions .wModCols8 textarea:first-child {
            width: 100%;
            height: 500px;
        }

/* Shopper Item List */

.wModCols3.wItemBlock {
    margin-left: 0%;
    margin-right: 1%;
}

.wItemBlock {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 375px;
    overflow: hidden;
    padding: 5px;
    margin-bottom: 10px;
    -webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.20);
    -moz-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.20);
    box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.20);
}

    .wItemBlock .wBlockImage img {
        max-width: 100%;
        width: 100%;
        height: auto;
        display: block;
    }

    .wItemBlock .wBlockTitle {
        padding: 5px;
        font-size: 13px;
        font-weight: bold;
    }

        .wItemBlock .wBlockTitle span {
            font-size: 90%;
            font-weight: normal;
        }

    .wItemBlock .wBlockPrice {
        padding: 5px;
        font-size: 14px;
        text-align: right;
    }

    .wItemBlock .wBlockAction {
        padding: 5px 0px;
        text-align: center;
        position: absolute;
        bottom: 5px;
        width: 96%;
    }

/* Shopper Item Detail */

.wItemDetail {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: auto;
    padding: 5px;
    margin-bottom: 10px;
    -webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.20);
    -moz-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.20);
    box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.20);
}

    .wItemDetail .wDetailImage img {
        max-width: 100%;
        width: 100%;
        height: auto;
        display: block;
    }

    .wItemDetail .wDetailTitle {
        font-size: 18px;
        font-weight: normal;
        padding: 0px 0px 10px 10px;
    }

        .wItemDetail .wDetailTitle span {
            font-size: 90%;
            font-weight: normal;
        }

    .wItemDetail .wDetailOptions {
        padding: 5px;
        font-size: 14px;
        font-weight: normal;
    }

        .wItemDetail .wDetailOptions select {
            width: 100%;
            height: 34px;
        }

        .wItemDetail .wDetailOptions input[type="text"] {
            height: 34px;
        }

        .wItemDetail .wDetailOptions table td {
            padding: 5px;
        }

        .wItemDetail .wDetailOptions table tr td:first-child {
            text-align: right;
        }

        .wItemDetail .wDetailOptions .zoomPad {
            margin-left: 10px;
            border: 1px solid #ccc;
        }

    .wItemDetail .wDetailInstructions {
        padding: 5px 10px;
        font-size: 14px;
        font-weight: normal;
    }

        .wItemDetail .wDetailInstructions h4 {
            font-size: 18px;
            font-weight: normal;
            padding: 0px 0px 10px 0px;
            margin: 0px;
        }

        .wItemDetail .wDetailInstructions span {
            font-size: 11px;
            font-weight: normal;
            padding: 0px 0px 10px 0px;
            margin: 0px;
        }

        .wItemDetail .wDetailInstructions textarea {
            width: 100%;
            height: 60px;
        }



    .wItemDetail .wDetailInfo {
        padding: 5px 10px;
        font-size: 14px;
        font-weight: normal;
    }

        .wItemDetail .wDetailInfo span {
            font-size: 90%;
            font-weight: normal;
        }

        .wItemDetail .wDetailInfo h4 {
            font-size: 18px;
            font-weight: normal;
            padding: 0px 0px 10px 0px;
            margin: 0px;
        }

    .wItemDetail .wDetailPrice {
        padding: 5px;
        font-size: 14px;
        text-align: right;
    }

        .wItemDetail .wDetailPrice span {
            font-size: 90%;
            font-weight: normal;
        }

    .wItemDetail .wDetailAction {
        padding: 5px;
        text-align: right;
    }



/* Cart Totals */
.wCartHeader .wModCols6 {
    text-align: right;
}

.wCartTotals .wModCols6 {
    text-align: right;
}

.wCartCheckbox {
    display: block;
    margin: 0;
}

    .wCartCheckbox input[type=checkbox] {
        margin: 0px 0px 0px 5px;
        vertical-align: middle;
    }

    .wCartCheckbox label {
        font-size: 12px;
        font-weight: normal;
        padding: 0px 2px 0px 5px;
    }

/* Cat Select */
ul.wCatSelect {
    border: 1px solid #ccc;
    padding: 10px;
    margin-right: 8px;
    margin-bottom: 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.wTemplateSelect {
    height: 24px;
    width: auto;
}

.wDetailMsg {
    margin-left: 20px;
    padding: 30px 20px 30px 78px;
    background: url(img/wbroken.png) no-repeat left center;
}

    .wDetailMsg h3 {
        color: #808080;
        font-size: 24px;
        font-weight: bold;
    }

    .wDetailMsg ul {
        font-size: 16px;
        color: #444;
    }

    .wDetailMsg li {
    }

/* ------------------------------------------- */
/* Tree Menu*/

ul.treeview {
    padding-left: 0px;
    margin-left: 0px;
}

.treeview ul {
    margin: 0;
    padding: 0;
}
/*Style for LI elements in general (excludes an LI that contains sub lists)*/
.treeview li {
    font-size: 14px;
    background: transparent url(img/action_right.gif) no-repeat left center;
    list-style-type: none;
    padding-left: 18px;
    margin-bottom: 3px;
}
    /* Style for LI that contains sub lists (other ULs). */
    .treeview li.submenu {
        background: transparent url(img/folderplus.gif) no-repeat left 0px;
        cursor: hand !important;
        cursor: pointer !important;
    }
        /*Style for ULs that are children of LIs (submenu) */
        .treeview li.submenu ul {
            display: none; /*Hide them by default. Don't delete. */
        }
/*Style for LIs of ULs that are children of LIs (submenu) */
.treeview .submenu ul li {
    cursor: default;
}


/* Zoompad overrides */
.zoompad {
}

.zoomWindow {
    top: 50px !important;
    margin-left: -10px;
}

.zoomWrapperTitle {
    background: #4285f4 !important;
    color: #fff !important;
    font-size: 11px !important;
    opacity: 1 !important;
}

/* show/Hide Panel */

/* ------------------------------------------- */
/* Slider Panel */
.wModPanel {
    position: relative;
    margin: 0;
    padding: 0;
    clear: both;
}

.wModPanelHeader {
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 0%, #dddddd 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#dddddd));
    background: -webkit-linear-gradient(top, #ffffff 0%,#dddddd 100%);
    background: -o-linear-gradient(top, #ffffff 0%,#dddddd 100%);
    background: -ms-linear-gradient(top, #ffffff 0%,#dddddd 100%);
    background: linear-gradient(to bottom, #ffffff 0%,#dddddd 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#dddddd',GradientType=0 );
}

    .wModPanelHeader a {
        display: block;
        font-size: 16px;
        padding: 7px 7px 7px 38px;
        margin: 0px;
        width: auto;
        text-decoration: none;
        border: 1px solid #ccc;
        background: url(img/warrow_down02.png) no-repeat 12px 18px;
    }

        .wModPanelHeader a:hover {
        }

.wModPanelBody {
    padding: 5px 0 15px 0;
    margin: 0px;
    display: none;
}

/* Slider Panel Var2 */
.wModPanelVar2 .wModPanel {
    position: relative;
    margin: 0;
    padding: 0;
    clear: both;
}

.wModPanelVar2 .wModPanelHeader {
    background: none;
    text-align: right;
    margin: 6px 0px;
}

    /* Help Ico */
    .wModPanelVar2 .wModPanelHeader a {
        font-size: 14px;
        border: 0px solid red;
        padding: 0px 30px 0px 0px;
        margin: 0px;
        width: auto;
        height: 20px;
        background: url(img/whelp01.png) no-repeat right top;
        display: block;
    }

        .wModPanelVar2 .wModPanelHeader a:hover {
            background-position: top -20px;
        }

.wModPanelVar2 .wModPanelBody {
    padding: 5px 0 15px 0;
    margin: 0px;
    display: none;
}

/* Slider Panel Var3 */
.wModPanelVar3 .wModPanel {
    position: relative;
    margin: 0;
    padding: 0;
    clear: both;
    margin-top: 15px;
}

.wModPanelVar3 .wModPanelHeader {
    background: none;
    text-align: left;
    margin: 5px 0px;
}

    .wModPanelVar3 .wModPanelHeader a {
        padding: 10px 7px 7px 23px;
        margin: 0px;
        border-top: 2px solid #999;
        border-width: 2px 0px 0px 0px;
        width: auto;
        text-decoration: none;
        background: url(img/warrow_down02.png) no-repeat 0px 16px;
        display: block;
        font-weight: normal;
    }

        .wModPanelVar3 .wModPanelHeader a:hover {
            background: url(img/warrow_down02.png) no-repeat 0px 16px
        }

.wModPanelVar3 .wModPanelBody {
    padding: 5px 0 15px 0;
    margin: 0px;
    display: none;
}

/* Slider Panel Var4 */
.wModPanelVar4 .wModPanel {
    position: relative;
    margin: 0;
    padding: 0;
    clear: both;
}

.wModPanelVar4 .wModPanelHeader {
    background: none;
    text-align: right;
    margin: 0px 0px 5px 0px;
}

    .wModPanelVar4 .wModPanelHeader a {
        font-size: 11px;
        border: 0px solid red;
        padding: 0px 30px 0px 0px;
        margin: 0px;
        width: auto;
        height: 15px;
        background: url(img/warrow_down02.png) no-repeat right top 5px;
        display: block;
    }

        .wModPanelVar4 .wModPanelHeader a:hover {
        }

.wModPanelVar4 .wModPanelBody {
    padding: 5px 0 15px 0;
    margin: 0px;
    display: none;
}


/* ------------------------------------------- */
/* Lightbox */

#wLightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(img/woverlay.png) repeat;
    text-align: center;
    z-index: 1000;
}

    #wLightbox p {
        text-align: center;
        color: #fff;
        margin-right: 20px;
        font-size: 12px;
    }

    #wLightbox img { /*margin-top:20%; box-shadow:0 0 25px #111; -webkit-box-shadow:0 0 25px #111; -moz-box-shadow:0 0 25px #111; max-width:50%;*/
    }

    #wLightbox .wLBFrame {
        margin-top: 10%;
        box-shadow: 0 0 25px #111;
        -webkit-box-shadow: 0 0 25px #111;
        -moz-box-shadow: 0 0 25px #111;
        max-width: 80%;
        display: inline-block;
    }


/* other */

.qtyText {
    width: 30px;
}

.rptgv {
    border-collapse: collapse;
    width: 65%;
    border: none;
}

    .rptgv td {
        padding: 1px 5px 1px 5px;
        border: none;
    }

.wmlabel-w-border {
    border: solid 1pt #ededed;
    padding: 2px 2px 2px 2px;
    margin: 2px 2px 2px 2px;
    height: 24px;
}

.wmlabel-w-border-ml {
    border: solid 1px #ededed;
    padding: 2px 2px 2px 2px;
    margin: 2px 2px 2px 2px;
    height: 72px;
}