﻿/** Validation for the .css for any height/width to be 100% under the parent 
 * Reference from blog-post: http://www.mattboldt.com/css-100-percent-height/ 
 */

/** Importing font from Google **/
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,700,600);
/** Font-Awesome + Bootstrap Override **/
@import url('font-awesome.css');
@import url('animate.css');

html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    height: 100%;
    margin: 0;
    padding: 0;
    padding-top: 50px;
    padding-bottom: 20px;
    font-family: 'Open Sans', Arial, sans-serif;
}

/* These add additional responsiveness to the index page */
@media (min-width: 880px) {
    .container {
        width: 860px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1100px) {
    .container {
        width: 1080px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

@media (min-width: 1360px) {
    .container {
        width: 1300px;
    }
}

@media (min-width: 1440px) {
    .container {
        width: 1420px;
    }
}

@media (min-width: 1600px) {
    .container {
        width: 1570px;
    }
}
 
@media (min-width: 1780px) {
    .container {
        width: 1760px;
    }
}

@media (min-width: 1920px) {
    .container {
        width: 1900px;
    }
}

@media (min-width: 2240px) {
    .container {
        width: 2200px;
    }
}

@media (min-width: 2560px) {
    .container {
        width: 2500px;
    }
}

/* Buttons */

.btn-gamp a {
    float: right;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #003E7B;
    background: #fff;
    border: 2px solid #003E7B;
    width: 180px;
    height: 60px;
    text-align: center;
    line-height: 56px;
}

.btn-gamp a:hover {
    opacity: 0.8;
    color: #fff;
    background: #003E7B;
    transition: all 0.5s;
}

.btn-register a {
    float: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #003E7B;
    background: #fff;
    border: 2px solid #003E7B;
    width: 120px;
    height: 40px;
    text-align: center;
    line-height: 36px;
    border-radius: 6px;
}

.btn-register a:hover {
    opacity: 0.8;
    color: #fff;
    background: #003E7B;
    transition: all 0.5s;
}

.btn-login input {
    float: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #003E7B;
    background: #fff;
    border: 2px solid #003E7B;
    width: 120px;
    height: 40px;
    text-align: center;
    line-height: 30px;
    border-radius: 6px;
}

.btn-login input:hover {
    opacity: 0.8;
    color: #fff;
    background: #003E7B;
    transition: all 0.5s;
    text-decoration: underline;
}

.gamp-btn a {
    float: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: #003E7B;
    color: #ffffff;
    width: 180px;
    height: 60px;
    text-align: center;
    line-height: 60px;
}

.gamp-btn a:hover {
    opacity: 0.8;
    transition: all 0.5s;
}

.center span {
	color: #E8CE0E;
}

.footer {
    position: relative;
    margin-top: -150px; /* negative value of footer height */
    height: 150px;
    clear: both;
    padding-top: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

/* Used for jqxTextArea width sizing -- The above is used for Login/PW inputs */
.text-area-notes input,
select,
textarea {
    max-width: 800px;
}

.text-area-sendcart-notes textarea {
    max-width: 800px;
}

/* override the standard jqWidget fonts */
.jqx-widget,
.jqx-widget-content {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-style: normal;
}

/* style button element as a link (actually like a menu button) */
button.link {
    overflow: visible; /* Shrinkwrap the text in IE7- */
    margin: 0;
    padding: 0px 4px;
    border: 1px solid transparent;
    border-radius: 3px;
    color: #428bca;
    background: transparent;
    font: inherit; /* Inherit font settings (doesn’t work in IE7-) */
    line-height: 16px;
    text-decoration: none;
    cursor: pointer; /* Buttons don’t make the cursor change in all browsers */
    user-select: text;
    -moz-user-select: text; /* Make button text selectable in Gecko */
    -webkit-user-select: text;
    -ms-user-select: text;
}

button.link:hover, button.link:focus {
    color: #2A6496;
    border: 1px solid;
    border-color: #a4bed4;
    background-color: #cfdde9;
}

button.link:focus {
    outline-offset: -1px;
    outline-style: dotted;
    outline-width: 1px;
}

/* Remove mystery padding in Gecko browsers. See https://bugzilla.mozilla.org/show_bug.cgi?id=140562  */
button.link::-moz-focus-inner {
    padding: 0;
    border: 0;
}

/* CSS styles for the menu bar that gets embedded in the jqxGrid toolbar */
.grid-menu-bar {
    border: none; 
    width: 100%; 
    height: 24px; 
    line-height: 20px;
}

.grid-menu-bar .glyphicon {
    line-height: inherit;
    vertical-align: middle;
    font-size: 14px;
    cursor: pointer;
}

.grid-menu-bar .glyphicon-refresh {
    color: green;
    float: right; 
    margin: 0px 5px; 
}

.grid-menu-bar .fa-cog {
    color: black;
    float: left; 
    margin: 0px 5px; 
}

.grid-menu-bar button {
    margin: 2px 10px 0px;
}

.grid-menu-bar .jqx-checkbox {
    margin: 2px 10px 0px 0px;
    color: #428bca;
    line-height: 14px; 
    float: left; 
    padding: 0px 4px;
    border: 1px transparent;
    border-radius: 3px;
}

.grid-menu-bar .jqx-checkbox:hover, .grid-menu-bar .jqx-checkbox:focus {
    color: #2A6496;
    background-color: #cfdde9;
}

/* Used for div on start-up for the jqxWindows */
.hidden {
    display: none;
}

/* Used for div on start-up for a jqxChart */
.hideChart {
    display: none;
}

/* Hover coloring for links in the navbar */
/* Navbar */

.navbar-custom {
    background-color: #fff;
    border-color: #000000;
    border-radius: 0;
}

.navbar-custom .navbar-brand,
.navbar-custom .navbar-brand:hover,
.navbar-custom .navbar-brand:focus {
    color: #003E7B;
}

.navbar-custom .navbar-nav > li > a {
    color: #003E7B;
}

.navbar-custom .navbar-nav > li > a:hover,
.navbar-custom .navbar-nav > li > a:focus {
    background-color: #003E7B;
    color: #fff;
    opacity: 0.8;
    transition: all 0.4s;
}

.navbar-custom .navbar-nav > .active > a,
.navbar-custom .navbar-nav > .active > a:hover,
.navbar-custom .navbar-nav > .active > a:focus {
    color: #FFF;
    background-color: #003E7B;
}

/* #003E7B used for metbench-navy-blue color */
.navbar-custom .navbar-toggle {
    border-color: #003E7B;
    background-color: #003E7B;
}

.navbar-custom .navbar-toggle:hover,
.navbar-custom .navbar-toggle:focus {
    background-color: #003E7B;
    color: #FFF;
}

.navbar-custom .navbar-toggle .icon-bar {
    background-color: #FFF;
    color: #003E7B;
}

.navbar-custom .navbar-text {
    color: #003E7B;
    background-color: #FFF;
    padding-left: 15px;
} 

.form-inline {
	margin-top: 50px;	
}

#RememberMe {
    margin-left: 0px;
}

.radio label, .checkbox label {
    margin-right: -20px;
    padding-right: 30px;
}

.jumbotron {
    border-radius: 3px 4px;
    padding-top: 12px;
    color: #eee;
    padding-bottom: 12px;
}

.mb-jumbotron-bg {
    background-color: #335777;
}

.jqx-popover-content {
    padding: 0px 0px 0px 0px;
}

.date-filter-picker {
    background: #e0e9f5;
    cursor: pointer;
    padding: 5px 10px;
    border: 1px solid #a4bed4;
    width: 400px;
    height: 27px;
    margin-left: 8px;
    margin-top: 8px;
    float: right;
    border-radius: 3px 4px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-style: normal;
}

.customer-viewed-text {
    font-family: Arial;
    font-size: 20px;
    font-weight: bold;
    margin-top: 4px;
}

/* styles for jqxButton with image on the left */
.mb-button-bar {
    border: 1px solid #A4BED4; 
    background-color: #E0E9F5;
    border-radius: 3px;
    width: 100%; 
    overflow: auto;
}

.mb-button-bar .jqx-input {
    margin: 2px 6px;
    height: 22px;
}

.mb-button-bar label {
    line-height: 28px;
    display: table-cell;
    vertical-align: middle;
    text-align: left;
}

.mb-button-spacer {
    width: 50px;
    height: 20px;
    overflow: hidden; 
}

.mb-button-left .jqx-button,
.mb-button-left .mb-button-spacer {
    float: left; 
}

.mb-button-left span {
    height: 16px;
    vertical-align: middle;
}

.mb-img-button div.jqx-button {
    display: table; 
    height: 16px;
    padding-left: 6px; 
    padding-right: 6px; 
    margin: 2px;
}

.mb-button-bar.mb-img-button div.jqx-button {
    border-color: transparent;
}

.mb-button-bar.mb-img-button div.jqx-button:hover {
    border-color: #A4BED4;
}

.mb-button-bar.mb-img-button .jqx-button.jqx-fill-state-disabled:hover {
    border-color: transparent;
}

.mb-hidden {
    visibility: hidden;
}

.mb-tbl {
    display: table;
    table-layout: fixed;
}

.mb-row {
    display: table-row;
}

.mb-cell {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
}

.mb-row > span {
    padding-right: 10px;
}

.editor-form-table {
    margin-top: 10px;
    margin-bottom: 10px;
    table-layout: fixed;
}

.editor-form-table td,
.editor-form-table tr {
    margin: 0px;
    padding: 2px;
    border-spacing: 0px;
    border-collapse: collapse;
    vertical-align: middle;
}

.editor-form-table .mb-row {
    height: 20px;
    line-height: 20px;
    border-spacing: 0px;
    border-collapse: collapse;
    vertical-align: middle;
}

.editor-form-table .mb-cell {
    padding: 2px;
}

.checkbox label:after, 
.radio label:after {
    content: '';
    display: table;
    clear: both;
}

.checkbox .cr,
.radio .cr {
    position: relative;
    border: 1px solid #a9a9a9;
    border-radius: .25em;
    width: 1.3em;
    height: 1.3em;
    float: left;
    margin-right: .5em;
}

.radio .cr {
    border-radius: 50%;
}

.checkbox .cr .cr-icon,
.radio .cr .cr-icon {
    position: absolute;
    font-size: .8em;
    line-height: 0;
    top: 50%;
    left: 20%;
}

.radio .cr .cr-icon {
    margin-left: 0.04em;
}

.checkbox label input[type="checkbox"],
.radio label input[type="radio"] {
    display: none;
}

.checkbox label input[type="checkbox"] + .cr > .cr-icon,
.radio label input[type="radio"] + .cr > .cr-icon {
    transform: scale(3) rotateZ(-20deg);
    opacity: 0;
    transition: all .3s ease-in;
}

.checkbox label input[type="checkbox"]:checked + .cr > .cr-icon,
.radio label input[type="radio"]:checked + .cr > .cr-icon {
    transform: scale(1) rotateZ(0deg);
    opacity: 1;
}

.checkbox label input[type="checkbox"]:disabled + .cr,
.radio label input[type="radio"]:disabled + .cr {
    opacity: .5;
}