﻿/* GLOBALS (Bootstrap Global Overrides)
----------------------------------------------------------*/

html {
    font-family: "Gotham A","Gotham B","Gotham","Lato",Helvetica,Arial,sans-serif;
    background-color: rgb(255, 255, 255);
    margin: 0px;
    padding: 0px;
    height: 100%;  /* Need so that footer stays at bottom of screen */
}

body {
    color: rgb(51, 51, 51);
    height: 100%;  /* Need so that footer stays at bottom of screen */
}

select.form-control, .form-control{
    border-radius: 0px;
}

#container {
    /* Need this container so that footer stays at bottom of screen */
    min-height: 100%;
    padding-bottom: 80px;
}

#body {
	padding: 0px;
	padding-bottom: 80px;  /* Height of the footer */
}

    @media screen and (max-width: 767px) {
        /* xs screen size*/
        #body {
            padding-bottom: 80px;   /*Height of the footer on xs screen*/
        }
    }

a {
    color: rgb(7, 75, 136);
}

a:link, a:visited, a:active {
    color: rgb(7, 75, 136);
}

a:hover {
    color: rgb(0, 51, 102);
}

#logoContainer #siteLogo {
    min-width:150px;
}

article[type="tile"] {
    padding-right: 5px !important; /*added to make large and mini tiles the same width*/
}

[draggable="true"] {
    /* Make draggable items work correctly - can't select items w/in the draggable item */
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    /* Support old version of WebKit */
    -khtml-user-drag: element;
    -webkit-user-drag: element;

    /* Change mouse cursor for dragged items*/
    cursor: move;
}

.custPageText:empty {
    display: none;
    height: 0px !important;
}
.custPageText:not(:empty) {
    color: rgb(51, 51, 51);
}

.custPageTextAdmin {
    color: rgb(255, 255, 255) !important;
}

/*  -- h1 to hx / typography --   */
h1, h2, .h1, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 0.75em;
  letter-spacing: .075rem;
  color: rgb(7, 75, 136);
}

h1, .h1 {
  font-size: 24px;
}

h2, .h2 {
  font-size: 18px;
  text-transform: uppercase;
}

h3, .h3 {
  font-size: 18px;
  letter-spacing: .05rem;
}

h4, .h4 {
  font-size: 16px;
  text-transform: uppercase;
}

h5, .h5 {
  font-size: 16px;
}

h6, .h6 {
  font-size: 14px;
  text-transform: uppercase;
}

.customBlockPreview h1, .customBlockPreview h2, .customBlockPreview h3 {
  color: rgb(7, 75, 136) !important;
}

.text-muted {
    color: rgb(153, 153, 153) !important;
}

.text-defaultColor {
    color: rgb(51, 51, 51) !important;
}

.text-warning {
    color: rgb(138, 109, 59) !important;
}
.text-strikethrough {
    text-decoration: line-through;
}

.modal-footer {
    border-top: 0px;
}

/*  -- buttons --   */

.btn {
    text-align: center;
    text-transform: uppercase;
    border-radius: 0px;
}

.btn-wraptext {
    white-space: pre-line;
    line-height: 15px;
    padding-bottom: 14px;
    padding-top: 0px;
}

.btn-primary,
.btn-primary:active,
.btn-primary.active,
 a.btn-primary {
    background-color: rgb(7, 75, 136);
    color: rgb(255, 255, 255);
}

.btn-primary:hover,
.btn-primary:focus {
   background-color: rgb(0, 51, 102);
}

.btn-no-border {
    border: none;
}

.btn-lg, .btn-group-lg > .btn {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform:none !important;
    line-height: 1.33333;
    padding-left: 15px !important;
}

.btn-list-group-item {
    border-color: rgb(221, 221, 221);
    border-style: solid;
    border-width: 1px;
    margin-bottom: -1px;
    margin-top: 0px !important;
    text-align: left;
    text-transform: none;
}
.btn-list-group-item:hover {
    border-color: rgb(221, 221, 221);
    border-style: solid;
    border-width: 1px;
    color: rgb(85, 85, 85);
    background-color: rgb(245, 245, 245);
}
.btn-list-group-item:last-child {
    margin-bottom: 15px;
}

.btn .badge {
    top: -1px;
}

.btn-default {
  color: rgb(0, 51, 102);
  background-color: rgb(255, 255, 255);
  border-color: rgb(204, 204, 204);
}

.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    color: rgb(0, 51, 102);
    background-color: rgb(186, 216, 233);
    border-color: rgb(186, 216, 233);
}

.btn-default >.btn-block {
  color: rgb(7, 75, 136) !important;
  background-color: rgb(255, 255, 255);
  border-color: rgb(204, 204, 204);
}

/*  -- WELLS -- */

.well {
    border-radius: 0px;
    box-shadow: none;
}

.well-light {
    background-color: rgb(255, 255, 255);
    border: none;
    box-shadow: none;
    margin-left: 15px; /*added to align content with admin wells*/
}

.well-medium {
    background-color: rgb(245, 245, 245);
    border-color: rgb(204, 204, 204);
}

.well-medium-inner {
    background-color: rgba(204, 204, 204, 0.5);
    border: none;
    border-radius: 0px;
    color: rgb(51, 51, 51);
}

.well-admin {
    background-color: rgb(7, 75, 136);
    border: none;
    color: rgb(255, 255, 255);
}

.well-admin h1, .well-admin h2, .well-admin h3, .well-admin h4, .well-admin h5, .well-admin h6 {
        color: rgb(255, 255, 255);
    }

.well-admin-inner {
    /*background-color: rgba(200, 200, 200, 0.4);*/
    background-color: rgb(255, 255, 255);
    border: none;
    border-radius: 0px;
    color: rgb(51, 51, 51);
}
    .well-admin-inner h1, .well-admin-inner h2, .well-admin-inner h3, .well-admin-inner h4, .well-admin-inner h5, .well-admin-inner h6 {
        color: rgb(7, 75, 136);
    }

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
     /* IE10+ specific CSS style.  Because only IE supports -ms-high-contrast this will only apply to IE browsers
         http://stackoverflow.com/questions/28417056/how-to-target-only-ie-any-version-within-a-stylesheet
     */
     .well-admin .contactUsPreview,
     .well-admin .customBlockPreview {
        color: rgb(51, 51, 51);    /* IE doesn't have support for color: initial so we have to specify the exact color*/
    }

}

.well-admin .contactUsPreview,
.well-admin .customBlockPreview {
    color: initial;
}


/* TILES
----------------------------------------------------------*/

/*  -- Main/Large Tiles -- */

.button-main {
    display: block;
    padding: 10px 15px;
    margin: 10px 5px;
    background-color: rgba(204, 204, 204, 0.5);
    border-radius: 0px;
    box-shadow: inset 0px 0px 1px rgba(6, 48, 87, 0);
    transition: all .5s ease-in-out;
    height: 150px;
    overflow: hidden;
}

.button-main:hover, .button-main:focus {
    background-color: rgba(204, 204, 204, 0.9);
    border-radius: 0px;
    box-shadow: 0px 0px 10px 4px rgba(6, 48, 87, 0.3);
    text-decoration: none;
}

.well-admin .button-main {
    display: block;
    padding: 10px 15px;
    margin: 10px 5px;
    background-color: rgba(204, 204, 204, 0.7);
    border-radius: 0px;
    box-shadow: inset 0px 0px 1px rgba(255, 255, 255, 0.2);
    transition: all .5s ease-in-out;
    height: 150px;
    overflow: hidden;
}

.well-admin .button-main:hover, .well-admin .button-main:focus {
    background-color: rgba(204, 204, 204, 0.9);
    border-radius: 0px;
    box-shadow: 0px 0px 10px 4px rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

.button-main .button-title {
    color: rgba(51, 51, 15, 1.0);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.button-main:hover .button-title {
  /*  text-shadow: 1px 1px 1px rgba(0, 51, 102, 0.2);*/
}

.button-main img {
    vertical-align: text-top;
    float: left;
    margin-right: 7px;
    height: 48px;
    width: 48px;
}

.button-main .desc {
    color: rgb(51, 51, 51);
}

/* Pages with Tiles
----------------------------------------------------------*/

[tiletype = 'mini'] {
    border: none;
    /*background-color: transparent;*/
    text-align: left;
    padding: 15px 30px;
    margin: 5px;
    overflow: hidden;
    text-overflow: ellipsis; /*added to prevent text overflowing container*/
    background-color: rgba(204, 204, 204, 0.5);
    color: rgb(51, 51, 51) !important; /*added to change text colour from blue to grey*/
    border-radius: 0px;
    /*box-shadow: inset 0px 0px 1px rgba(6, 48, 87, 0);*/
    transition: all .5s ease-in-out;
}

[tiletype = 'mini']:hover, [tiletype = 'mini']:focus {
    background-color: rgba(204, 204, 204, 0.9);
    border-radius: 0px;
    /*box-shadow: 0px 0px 10px 4px rgba(6, 48, 87, 0.3);*/
    text-decoration: none;
}

/* change default colors for product count tooltip on mini and full tiles */
[tiletype = 'mini'] .badge, [tiletype = 'full'] .badge {
    color: rgb(7, 75, 136);
    background-color: rgba(255, 255, 255, 8.0);
}

[tiletype = 'mini'] .tooltip.top .tooltip-arrow,
[tiletype = 'full'] .tooltip.top .tooltip-arrow {
    border-top-color: rgb(7, 75, 136);
}
[tiletype = 'mini'] .tooltip-inner,
[tiletype = 'full'] .tooltip-inner {
    background-color: rgb(7, 75, 136);
}

.tileTitle {
    display:inline-block;   /* Needed for bug in bootstrap that causes Firefox to misalign if there is a pull-right element after the title (like a badge) */
}

/* Styling for the full tile path on tiles that include the path info */
.pathHint {
    color: rgb(102, 102, 102);
    font-size: 11px;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* NAVBARS AND PANELS
----------------------------------------------------------*/

/* -- navbar -- */

.navbar-default .navbar-nav > li > a {
    color: rgb(51, 51, 51);
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    color: rgb(51, 51, 51);
    background-color: rgba(204, 204, 204, 0.8);
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
    color: rgb(51, 51, 51);
    background-color: rgba(204, 204, 204, 0.8);
}

.navbar-default .navbar-text {
    color: rgb(51, 51, 51);
}

/* -- dropdowns --*/

.dropdown-menu {
    border-radius: 0px;
    margin-top: 0px;
}

.dropdown-menu > li > a {
    color: rgb(0, 51, 102);
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    color: rgb(0, 51, 102);
    background-color: rgba(186, 216, 233, 0.5);
}

/*  -- navbar-inverse and panels --   */

.navbar-inverse,
.panel-primary > .panel-heading {
    background-color: rgba(0, 51, 102, 1.0);
    color: rgb(255, 255, 255);
}

    .navbar-inverse,
    .panel-primary > .panel-heading a{
        color: rgb(255, 255, 255);
    }

    .navbar-inverse,
    .panel-primary > .panel-heading .text-success{
        color: rgb(25, 163, 28);
    }

    .navbar-inverse,
    .panel-primary > .panel-heading .text-danger{
        color: rgb(209, 38, 35);
    }

.navbar-inverse,
.panel-primary  {
    border-color: rgba(0, 51, 102, 0.7);
}
.navbar-inverse .navbar-brand,
.navbar-inverse .navbar-nav > li > a,
.navbar-inverse button,
.panel-primary > .panel-heading {
    color: rgba(255, 255, 255, 0.8);
}

.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus,
.navbar-inverse .navbar-nav > li > a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus,
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.2);
}

.navbar-inverse .navbar-toggle {
    border-color: rgba(255, 255, 255, 0.7);
}

.navbar-inverse .dropdown-menu > li > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a{
    color: rgba(0, 51, 102, 1.0);
}

.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: rgba(75, 136, 190, 1);
}
.navbar-inverse .navbar-nav .open .dropdown-menu {
    background-color: rgba(255, 255, 255, 0.9);
}

.navbar-toggle:hover,
.navbar-toggle:focus {
    color: rgba(0, 0, 0, 0.8);
    background-color: rgba(0, 0, 0, 0.2);
}

.navbar-toggle {
    border-color: rgba(0, 0, 0, 0.7);
}

.dropdown-menu > li > a,
.navbar-nav .open .dropdown-menu > li > a{
    color: rgba(0, 0, 0, 1.0);
}

.navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-nav .open .dropdown-menu > li > a:focus {
    color: rgba(75, 136, 190, 1);
}
.open .dropdown-menu {
    background-color: rgba(255, 255, 255, 0.9);
}

/* -- panels -- */

.panel-info {
  border-color: rgb(186, 216, 233);
}
.panel-info > .panel-heading {
    color: rgb(0, 51, 102);
    background-color: rgb(75, 136, 190);
    border-color: rgb(186, 216, 233);
}

.panel-default > .panel-heading {
    color: rgb(0, 51, 102);
    background-color: rgb(222, 235, 244);
    border-color: rgb(186, 216, 233);
}

.panel-info > .panel-heading a {
    color: rgb(255, 255, 255) !important;
}

.panel {
    border-radius:0px !important;
}

.panel-heading, .panel-heading:hover, .panel-heading:focus{
        border-radius:0px !important;
}

/* ADMIN
----------------------------------------------------------*/

/* -- Create / Edit  Tile Page -- */

#relatedTilePreview {
    opacity: 0.4;
}

#createTileForm section {
    margin-top: 10px;
    margin-bottom: 10px;
}
.createTile #createTileIcon,
.cloneTile #cloneTileIcon {
    font-size: 50px;
}

.createTile .panel:hover,
.cloneTile .panel:hover{
    color: rgb(7, 75, 136);
    border-color: rgba(0, 51, 102 ,0.7);
}

.createTile .panel:hover .panel-heading,
.cloneTile .panel:hover .panel-heading {
    background-color: rgba(0, 51, 102, 1);
    color: rgba(255, 255, 255, 0.9);
}

.createTile .panel:hover .button-main,
.cloneTile .panel:hover .button-main {
    color: rgba(0, 51, 102, 1);
    /*box-shadow: 0px 0px 12px rgba(0, 51, 102, 0.2);*/
    cursor: pointer;
}

.createTile .button-main:hover,
.cloneTile .button-main:hover {
    background-color: rgba(7, 75, 136, 0.05);
}

#displayOrderVal {
    width: 45px;
}

#manageIconBar .glyphicon {
    padding: 7px 7px 0px 0px;
}

#descriptionContainer .form-group {
    margin-left: 0px;
    margin-right: 0px;
}

#newParentTileAutocompleteContainer ul.ui-autocomplete {
    list-style: none;
    padding: 5px 15px;
}

#newParentTileAutocompleteContainer ul.ui-autocomplete li {
    list-style: none;
}

#newParentTileAutocompleteContainer ul.ui-autocomplete li a{
    margin-left: 10px;
}

#newParentTileAutocompleteContainer ul.ui-autocomplete li.tileCategory {
    list-style: none;
    font-size: 12px;
    color: rgb(102, 102, 102);
    text-transform: uppercase;
    font-weight: bold;
    padding-top: 3px;
}

/* -- Upload/Select Tile Icon Page -- */
.selectedIcon {
   border: 2px solid rgb(7, 75, 136);
    box-shadow: 0px 0px 12px rgba(0, 51, 102, 0.5);
}

.iconSelectList {
    height: 90px;
}

.iconSelectList:hover {
    cursor: pointer;
    box-shadow: 0px 0px 12px rgba(0, 51, 102, 0.5);
}

img.tileIcon  {
    margin-top: 15px;
    height: 48px;
    width: 48px;
}

/* login
----------------------------------------------------------*/

#login {
    display: block;
    font-size: .85em;
    margin: 0 0 10px;
    text-align: right;
}

#login a {
    background-color: rgb(211, 220, 224);
    margin-left: 10px;
    margin-right: 3px;
    padding: 2px 3px;
    text-decoration: none;
}

#login a.username {
    background: none;
    margin: 0;
    padding: 0;
    text-decoration: underline;
}

#login ul {
    margin: 0;
}

#login li {
    display: inline;
    list-style: none;
}



/* -- Product Listing, Offering Listing, User Listing, and Shopping Cart Pages -- */

.user-list-item {
    border-width: 6px 6px 6px 6px;
    border-color: rgb(238, 238, 238);
    border-style: solid;
    padding: 10px;
    margin-bottom: 5px;
}

.user-list-item .h6 {
    margin-bottom: 5px;
}

.userSearchBox {
    height: 40px;
}
.userSearchImg {
    height: 24px;
    width: 24px;
}

.product-list-item,
.offering-list-item,
.shoppingCartLineItem {
    border-width: 0px 2px 2px 2px;
    border-color: rgb(238, 238, 238);
    border-style: solid;
    padding: 15px;
}

.product-list-item:first-child,
.offering-list-item:first-child,
.shoppingCartLineItem:first-child {
    border-width: 2px 2px 2px 2px;
}
.product-list-item:last-child,
.offering-list-item:last-child,
.shoppingCartLineItem:last-child {
    margin-bottom: 20px;
}

.product-list-item:hover,
.offering-list-item:hover,
.shoppingCartLineItem:hover,
.user-list-item:hover {
    background-color: rgb(245, 245, 245);
}

.shoppingCartLineItem > h2 {
    font-weight: bold;
    text-transform: none;
}

img.product-list-icon {
    margin: 5px;
}
img.product-list-selfpaced {
    width: 28px;
    height: 32px;
}
img.product-list-virtualClassroomLive {
    width: 28px;
    height: 26px;
}
img.product-list-classroomLive {
    width: 28px;
    height: 25px;
}
img.product-list-virtualClassroomFit {
    width: 35px;
    height: 28px;
}
img.product-list-gkDigitalLearning {
    width: 35px;
    height: 28px;
}
img.product-list-privateGroupTraining {
    width: 35px;
    height: 28px;
}
img.product-list-outline {
    width: 32px;
    height: 32px;
}

#closeProductOutline {
    font-size: 36px;
    background-color: rgba(255, 255, 255, 0.8);
}

.offering-info-icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.facility-info-icon {
    color: rgb(51, 51, 51);
}

.listPrice {
    font-weight: bold;
    font-size: 18px;
    color: rgb(0, 75, 133);
}

.discountPrice {
    font-size: 14px;
    color: rgb(153, 153, 153);
    text-decoration: line-through;
}

.gtcPrice {
    font-weight: bold;
    font-size: 16px;
}

.totalPrice {
    font-weight: bold;
    font-size: 20px;
    color: rgb(51, 51, 51);
}

.currencyCode{
    color: rgb(153, 153, 153);
    vertical-align: top !important;
}

.scLineItemDetailContainer {
    background-color: rgb(230, 240, 245);
}

.scLineItemOfferingInfoContainer {
    /*font-size: 16px;*/
    color: rgb(7, 75, 136);
}

#shoppingCartSummaryContainer {
    border: 2px solid rgb(238, 238, 238);
}

.scSummaryLineItemContainer {
    padding: 15px;
    border-bottom: solid 1px rgb(204, 204, 204);
}

.scSummaryLineItem {
    font-weight: bold;
    text-transform: none;
}

.scSummaryTotalRow {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: rgba(221, 221, 221,0.8);
}

.scSummaryCheckoutRow {
    padding-top: 30px;
    padding-bottom: 15px;
    background-color: rgba(221, 221, 221,0.8);
    border-top: solid 1px rgb(255, 255, 255);
}

.enterPaymentContainer,
.orderThankYouContainer {
    background-color: rgb(230, 240, 245);
    padding: 0px;
    margin-bottom: 15px;
}


.scLineItemStudentContainer {
    border-top: 2px solid rgb(255, 255, 255);
    padding: 0px;
}

@media screen and (min-width: 960px) {
    .scLineItemStudentContainer {
        /*border-right: 3px solid rgb(255, 255, 255);*/
        padding: 0px;
    }
}

.scStudentDetails{
    padding:0px;
}

.scStudentIcon {
    padding:0px;
}

@media screen and (min-width: 960px) {
    .scStudentIcon::before {
        content: url(themes/base/images/user-ok.png);
        float: left;
        width: 90%;
        background: #4caf50;
        text-align: center;
    }
}


.shoppingCartTotalContainer {
    border-top: solid 1px rgb(204, 204, 204);
    padding-top: 10px;
    margin-top: 45px;
    margin-bottom: 15px;
}

.appliedPaymentDetails {
    border: 2px solid rgb(238, 238, 238);
}

.TBDmargin {
    margin-right: 35px;
}

/* -- User List Page -- */
#EmailSearchAutocompleteContainer ul.ui-autocomplete {
    list-style: none;
    padding: 5px 15px;
}

#NameAutocompleteContainer ul.ui-autocomplete {
    list-style: none;
    padding: 5px 15px;
}

/* -- Manage Tile Products Page -- */

/* Firefox only styling */
@-moz-document url-prefix() {
    .tileProductCountBadge {
        top: -18px !important;
    }
}

/* Manage Site Configuration Page (Admin)
----------------------------------------------------------*/

#gkMenuHelp, #showFirstHelp, #defaultCatCultHelp {
    padding-top: 15px !important; /*adds space between radio buttons and description box*/
}

/* Manage Tiles Page (Admin)
----------------------------------------------------------*/

[tiletype = 'custom'] {
    cursor: move;
}

.sortTile .panel-heading a:hover,
.sortTile .panel-heading span.glyphicon:hover {
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
}

.sortTile .panel-default .panel-heading  a:hover,
.sortTile .panel-default .panel-heading span.glyphicon:hover {
    color: rgb(51, 51, 51);
}

.sortTile .panel-body .button-main .button-title {
    font-size: 18px;
}

.sortTile .panel-body .button-main img {
    width: 38px;
    height: 38px;
}
[customVersionExists] {
    opacity: 0.4;
}

.relatedTileHighlight {
    border: 1px solid rgba(0, 0, 0, 0.7);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.7);
}
.relatedTileHighlight .panel-heading {
    font-weight: bold;
}

/* HEADER
----------------------------------------------------------*/

/* -- utilityBar -- */

header #utilityBar {
    background-color: rgb(204, 204, 204);
}

header #utilityBar .btn-group.open .dropdown-toggle {
    box-shadow: none;
}
header #utilityBar .btn-default {
    background-color: transparent;
    border: none;
    color: rgb(51, 51, 51);
}

header #utilityBar .btn-default a {
        color: rgb(51, 51, 51);
    }


/* -- mainHeaderBar -- */

header #mainHeaderBar {
    padding-top: 15px;
    background-color: rgb(255, 255, 255);
}

header #mainHeaderBar #navbarContainer {
    padding: 0px;
}

header #mainHeaderBar #navbarContainer .navbar-default {
    background-color: transparent;
    border-radius: 0px;
    border-color: transparent;
    margin-bottom: 0px;
    position: relative;
    bottom: 0px;
    border-radius: 0px;
}

/*Special styles for catalogCultLabel since we added it to a navbar*/
nav #catalogCultLabel {
    margin-left: -10px;
    margin-right: 0px;
}

/* -- special styling for when the navbar is collapsed (hamburger menu) -- */
@media screen and (max-width: 768px) {
     nav #catalogCultLabel {
        margin-left: 15px;
        margin-bottom: -5px;
    }
}

/* -- breadcrumbBar -- */

header #breadcrumbBar {
    background-color: rgb(0, 51, 102);
    color: rgb(255, 255, 255);
}

header #breadcrumbBar div.breadcrumb {
    background-color: transparent;
    margin-bottom: 0px;
}

header #breadcrumbBar div.breadcrumb a {
    color: rgb(255, 255, 255);
}

/*  -- personal menu (hamburger button / menu) --  */
#personalMenuContainer .navbar{
    margin-bottom: 0px;
}

/*@media screen and (min-width: 768px)*/
@media screen and (min-width: 768px) {
    header #profileLinksToggle {
        float: right;
        margin-top: 15px;
        margin-right: -15px;
        padding-right: 0px;
    }

    header #profileLinksToggle ul.navbar-left {
        float: right !important;   /* we only want the navbar-left to apply when on small screen.  Otherwise override it and float right.*/
    }

    header #profileLinksToggle .nav > li > a {
        padding: 2px 0px 2px 20px;
    }
}

/*@media screen and (max-width: 768px)*/
@media screen and (max-width: 768px) {
    header #profileLinksBtnContainer {
        float: left;
        padding-left: 0px;
    }
    header #profileLinksToggle {
        float: left;
    }
    header #profileLinksToggle .navbar-nav {
        margin-top: -5px;
    }
    header #profileLinksToggle .nav > li > a:first-of-type {
        padding: 6px 20px 2px 20px;
    }
    header #profileLinksToggle .nav > li > a {
        padding: 2px 20px;
    }
    header #profileLinksToggle .nav > li > a:hover {
        background-color: rgb(221, 221, 221);
    }
   .navbar-nav .open .dropdown-menu:hover, .navbar-nav .open .dropdown-menu:focus{
    background-color: rgba(204, 204, 204, 0.5);
   }
}

/*  -- search --  */
header #searchBarContainer {
    padding-right: 0px;
}

header #searchBarContainer div.input-group {
    border-radius: 0px;
    box-shadow: 0px 0px 0px 2px transparent;
    display: compact;
}

.input-group :first-child.form-control, :first-child.input-group-addon, :first-child.input-group-btn > .btn, :first-child.input-group-btn > .btn-group > .btn, :first-child.input-group-btn > .dropdown-toggle, :last-child.input-group-btn > :not(:last-child):not(.dropdown-toggle).btn, :last-child.input-group-btn > :not(:last-child).btn-group > .btn {
        border-radius: 0px !important;
}

header #searchBarContainer div.input-group:hover {
    box-shadow: 0px 0px 0px 2px rgba(0, 75, 133, 0.5);
}

header #searchBarContainer .form-control:focus,
header #searchBarContainer .form-control:hover {
    box-shadow: none;
    border-color: rgb(204, 204, 204);
}

/*added to adjust size/margin of search btn*/
.btn-search {
    height: 46px !important;
    margin-bottom: 0px !important;
}

/*  -- navbar --  */
header #nabvarRow {
    margin-top: 5px;
}
header #navbar {
    border-radius: 0px;
    min-height: 0px;
}
header #navbar .navbar-brand{
    height: auto;
    padding: 7px 15px;
}

header #navbar .navbar-nav > li > a {
    padding: 7px 15px;
}

header #navbar .dropdown-menu {
    padding-top: 2px;
    padding-bottom: 2px;
}

header #navbar #navbarCollapsedButton {
    float: left;
    padding: 2px 10px;
    margin: 4px 10px;
}

header #navbarLinksToggle {
    padding: 0px;
    overflow: hidden; /*added to remove horizontal scroll bar*/
    padding-left: 10px;
}

header #navbar #navbarLinksToggle .navbar-nav {
    margin-top: 0px;
    margin-bottom: 0px;
}

/* FOOTER
----------------------------------------------------------*/

footer {
	width: 99%;
	height: 70px;
	position: relative;
	bottom: 0px;
	margin-top: -70px; /* negative value of footer height */
	padding: 10px;
	background-color: rgb(0, 51, 102);
	color: rgb(204, 204, 204);
	top: 10px;
}

@media screen and (max-width: 767px) {
    /* s screen size*/
    footer {
        height: 120px;   /*footer has to be larger height when on small screen in order to show all the elements it contains*/
        margin-top: -120px; /* negative value of footer height  */
        padding-bottom: 0px;
    }
}

@media screen and (max-width: 400px) {
    /* xs screen size - added to remove white space at bottom of very small screens*/
    footer {
        height: 290px;   /*footer has to be larger height when on small screen in order to show all the elements it contains*/
        margin-top: -200px; /* a little less than negative value of footer height so there is some white space between footer and content  */
        padding-bottom: 0px;
    }
}

footer .navbar-inverse {
    background-color: transparent;
    font-size: 16px;
    border: none;
    }

footer .navbar-inverse li:hover {
    background-color: rgba(240, 240, 240, 0.2);
    }

.footer-logo {
    padding: 10px 15px;
    margin-top: 0px;
    background-color: rgba(255, 255, 255, 1.0);
    border: 1px solid rgb(51, 51, 51);
    border-radius: 0px;
    box-shadow: inset 0px 0px 1px rgba(255, 255, 255, 0.2);
    transition: all .5s ease-in-out;
    top:-40px;
    max-width:175px; /*min/max width for logical size/positioning accross all devices*/
    min-width: 100px;
}

.footer-logo:hover, .footer-logo:focus {
    background-color: rgba(255, 255, 255, 1.0);
    border-radius: 0px;
    box-shadow: 0px 0px 10px 4px rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

#copyrightInfo {
	position: relative;
	bottom: 15px;
	top: 5px;
}

/* sidebar
----------------------------------------------------------*/
#sidebar {
    padding:0px 10px 0px 7px;
}

#sidebar .panel {
   margin-bottom: 5px;
}

#sidebar .panel .panel-heading {
    padding: 7px 10px;
}

#sidebar .panel .list-group-item {
    padding: 4px 10px;
}
#catalogToggleContainer
{
    margin-bottom: 10px;
}

/* forms
----------------------------------------------------------*/
.form-control {
    border-radius: 0px;
}

.formContainer {
    padding-top: 24px;
    padding-bottom: 24px;
}

label.checkbox {
    display: inline;
    font-weight: normal;
}

/* Styling of <input type="range"> */
input[type=range] {
    -webkit-appearance: none;    /*removes default webkit styles*/
    border: 1px transparent;    /*fix for FF unable to apply focus style bug */
    width: 300px;   /*required for proper track sizing in FF*/
    background-color: transparent;
    margin: 10px 15px 0px 15px;
}

#createUser {
color: rgb(51, 51, 51);
}

#createUser h4 {
color: rgb(7, 75, 136);
}


@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
/* IE10+ specific CSS styles */
    input[type=range] {
        margin-top: -12px;
        margin-left: 30px;
    }
}

    input[type=range]::-webkit-slider-runnable-track {
        width: 300px;
        height: 10px;
        background: rgb(75, 136, 190);
        border: none;
        border-radius: 0px;
    }

    input[type=range]::-webkit-slider-thumb {
        -webkit-appearance: none;
        border: 1px solid rgba(0, 51, 102, 1.0);
        height: 18px;
        width: 18px;
        border-radius: 50%;
        background: rgb(255, 255, 255);
        margin-top: -4px;
    }

    input[type=range]:focus {
        outline: none;
    }

    input[type=range]:focus::-webkit-slider-runnable-track {
        background: rgb(75, 136, 190);
    }

    input[type=range]::-moz-range-track {
        width: 300px;
        height: 10px;
        background: rgb(75, 136, 190);
        border: none;
        border-radius: 10px;
    }

    input[type=range]::-moz-range-thumb {
        border: 1px solid rgba(0, 51, 102, 1.0);
        height: 18px;
        width: 18px;
        border-radius: 50%;
        background: rgb(255, 255, 255);
    }

    input[type=range]::-ms-track {
        width: 300px;
        height: 10px;
        background: transparent;    /*remove bg colour from the track, use ms-fill-lower and ms-fill-upper instead */
        border-color: transparent;  /*leave room for the larger thumb to overflow with a transparent border */
        border-width: 6px 0;        /*leave room for the larger thumb to overflow with a transparent border */
        color: transparent;         /*remove default tick marks*/
    }

    input[type=range]::-ms-fill-lower {
        background: rgb(75, 136, 190);
        border-radius: 10px;
    }

    input[type=range]::-ms-fill-upper {
        background: rgb(75, 136, 190);
        border-radius: 0px;
    }

    input[type=range]::-ms-thumb {
        border: 1px solid rgba(0, 51, 102, 1.0);
        height: 18px;
        width: 18px;
        border-radius: 50%;
        background: rgb(255, 255, 255);
    }

    input[type=range]:focus::-ms-fill-lower {
        background: rgb(75, 136, 190);
    }

    input[type=range]:focus::-ms-fill-upper {
        background: rgb(75, 136, 190);
    }

@media screen and (max-width: 767px) {
    /* xs screen size*/
    input[type=range] {
        width: 200px;   /*required for proper track sizing in FF*/
    }
    input[type=range]::-webkit-slider-runnable-track {
        width: 200px;
    }
    input[type=range]::-moz-range-track {
        width: 200px;
    }
}


/* -- inputs -- */
input.single-line, select {
    margin-bottom: 5px;
}


input, textarea {

    font-family: "Gotham A","Gotham B","Gotham","Lato",Helvetica,Arial,sans-serif;
    font-size: 16px;
    border-radius: 0px !important;
}


textarea {
    margin-bottom: 5px;
}


address {
    margin-bottom: 0px;
}

/*  -- tables --   */
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    border-bottom: 1px solid rgb(204, 204, 204);
}

.lightTable {
    background-color: rgba(255, 255, 255, 0.7);
    border: solid 1px rgb(204, 204, 204);
}
.lightTable th {
    background-color: rgb(230, 230, 230);
    font-weight:600;
    border-bottom: solid 2px rgb(204, 204, 204);
}
.lightTable tbody > tr > td {
    border-top: 1px solid rgb(204, 204, 204);
    border-bottom: 1px solid rgb(204, 204, 204);
}
.lightTable .subTotalRow {
    border-top: double 2px rgb(204, 204, 204);
    background-color: rgb(242, 242, 242);
    font-weight:600;
}
.lightTable .totalRow {
    border-top: solid 2px rgb(204, 204, 204);
    background-color: rgb(230, 230, 230);
    font-weight:600;
}
/* -- popovers -- */
.popover {
    font-size: 14px;
    font-weight: 300;
    background-color: rgb(230, 240, 245);
}

.popover.top > .arrow:after {
  border-top-color: rgb(230, 240, 245);
}

.popover.right > .arrow:after {
  border-right-color: rgb(230, 240, 245);
}

.popover.bottom > .arrow:after {
  border-bottom-color: rgb(230, 240, 245);
}

.popover.left > .arrow:after {
  border-left-color: rgb(230, 240, 245);
}

.popover-title {
    color: rgb(7, 75, 136);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1.2px;
    background-color: transparent;
    padding: 8px 8px 0px 8px;
}
.popover-content {
    padding: 8px;
}

/*  other bootstrap components
----------------------------------------------------------*/

.text-primary {
  color: rgb(75, 136, 190);
}

.text-info {
    color: rgb(0, 75, 133)
}

.form-horizontal .control-label {
    text-align: left;
}

.alert{
    border-radius: 0px;
}

.alert-info {
    background-color: rgba(7, 75, 136, 0.1);
    border-color: rgb(204, 204, 204);
    color: rgb(51, 51, 51);
    border-radius: 0px;
}

.alert-danger{
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
    border-radius: 0px;
}

.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: rgb(255, 255, 255);
  background-color: rgb(75, 136, 190);
  border-color: rgb(75, 136, 190);
}

.list-group-item-danger{
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
  border-radius: 0px;
  }

.jumbotron{
  border-radius: 0px !important;
}

.pagination {
    margin-top: 0px;
    margin-bottom: 0px;
}

.pagination > li:first-child > a, .pagination > li:first-child > span,
.pagination > li:last-child > a, .pagination > li:last-child > span {
    border-radius: 0px;
}

@media (max-width: 768px) {
    .pull-left-xs {
        float: left !important;
    }
}

/* Fix issue with modals removing scroll bar */
.modal-open {
    overflow: scroll;
}

.modal-content {
    border-radius: 0px;
}

.model-wide {
    width:75%;
}

.list-group-item:first-child {
    border-radius: 0px !important;
}

.list-group-item:last-child {
    border-radius: 0px !important;
}

#productOutlinePDF {
    max-width: 100% !important;
}

.miniLabel {
    color: rgb(102, 102, 102);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

a.miniLabel {
    color: rgb(102, 102, 102);
}

.medLabel {
    color: rgb(7, 75, 136);
    font-weight: 700;
    text-transform: uppercase;
}
.paddedTop {
    margin-top: 12px;
}
.paddedBottom {
    margin-bottom: 12px;
}
.paddedTopBottom {
    margin-top: 12px;
    margin-bottom: 12px;
}
.paddedLeft {
    margin-left: 15px;
}
.paddedRight {
    margin-right: 15px;
}
.paddedLeftRight {
    margin-left: 15px;
    margin-right: 15px;
}
.paddedInsideTopBottom {
    padding-top: 15px;
    padding-bottom: 15px;
}

.paddedInsideTop {
    padding-top: 15px;
}

.paddedInsideBottom {
    padding-bottom: 15px;
}

.badge-light {
    color: rgb(102, 102, 102) !important;
    background-color: rgba(245, 245, 245, 1.0) !important;
}
.badge-light:hover {
    background-color: rgb(255, 255, 255) !important;
}

.groupHeading {
    font-size: 18px;
    font-weight: 500;
    color: rgb(68, 68, 68);
    letter-spacing: 1.2px;
    line-height: 32px;
    text-align: left;
    margin-bottom: 0px;
}
.groupHeading:focus {
    outline: none
}

.lightContainer {
    background-color: rgb(255, 255, 255);
}

.lightBorder {
    border: 1px solid rgb(204,204,204);
}

/* Login Page
----------------------------------------------------------*/
#loginBlock {
    /*padding-top: 40px; disabled to remove extra space on login page*/
}
.rememberMeLabel {
    font-weight: normal;
    font-size: 14px;
    padding-left: 2px;
}

/* Edit Profile Modal
----------------------------------------------------------*/

.editProfileAddress {
    margin: 0px 0px;
    padding: 0px 0px;
}

/* Misc
----------------------------------------------------------*/

/* styles for validation helpers */

.field-validation-error {
    color: rgb(209, 38, 35);
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    color: rgb(209, 38, 35);
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: rgb(209, 38, 35);
    font-weight: bold;
    font-size: 1.1em;
}

.validation-summary-valid {
    display: none;
}

.hidden {
   display: none;
}

/* remove IE clear text fields X 4/12/16*/
.noclearbox::-ms-clear {
    display: none !important;
}

/*Sorting images for user reports*/
th.descend:after{
	content: "\25B2";
	}
th.ascend:after{
	content: "\25BC";
	}
th.clear:after {
    display: none;
}

/*Firefox fix for Responsive Tables in Bootstrap*/
@-moz-document url-prefix() {
  fieldset { display: table-cell; }
}

/*make the modal popup scroll on small screens */
.modal-dialog{
    overflow-y: initial !important
}
.modal-body{
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

/* Create Account / Register
----------------------------------------------------------*/
#createUser {
    color: rgb(51, 51, 51);
}
#createUser h4 {
    color: rgb(7, 75, 136);
}

/*Loading Image on Search/Browse/ProductList views for product filter
---------------------------------------------------------------------*/
.loading-img {
    max-height:2.5em;
}

/*  Checkout Tabs
    SEE: http://www.bootply.com/74926
---------------------------------------------------------------------*/
.tabs > .nav-tabs {
  border-bottom: none;
  background-color: #fff !important;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
  padding: 15px;
}

@media screen and (min-width: 1200px) {
.tab-content > .active {
    height: 240px;
}
}

.tabs > .nav-tabs > li > a > h5 {
    margin-bottom: 0px !important;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: rgb(51, 51, 51);
}


.tabs > .nav-tabs > li > a {
  min-width: 74px;
  margin-right: 0px;
  margin-bottom: 0px;
  border: none;
  -webkit-border-radius: 0px;
     -moz-border-radius: 0px;
          border-radius: 0px;
  background-color: rgb(204, 204, 204);
  border-right: 2px solid rgb(255, 255, 255);
}

.tabs > .nav-tabs > li > a:hover,
.tabs > .nav-tabs > li > a:focus {
  background-color: rgb(204, 204, 204);
  border-right: 2px solid rgb(255, 255, 255);
}

.tabs > .nav-tabs .active > a,
.tabs > .nav-tabs .active > a:hover,
.tabs > .nav-tabs .active > a:focus {
  border: none;
  background-color: rgb(230, 240, 245);
  border-right: 2px solid rgb(255, 255, 255);
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus{
    background-color: rgb(204, 204, 204);
}

.tabbable > .tab-content > .nav-pane {
    background-color: #fff !important;
}

/*--CHECKOUT STEPS--*/

.wrapper {
	max-width: 1320px;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	padding: 0 20px;
	padding: 0 1.25rem;
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}
/* @media screen and (min-width:480px) */
.wrapper {
	padding: 0 40px;
	padding: 0 2.5rem;
}
/* @media screen and (min-width:768px) */
.wrapper {
	padding: 0 60px;
	padding: 0 3.75rem;
}
/* @media screen and (min-width:1024px) */
.wrapper {
	max-width: 93.75%;
	padding: 0;
	margin: 0 auto;
}
/* @media screen and (min-width:1320px) */
.wrapper {
	padding: 0;
	max-width: 1300px;
	max-width: 81.25rem;
}

.wrapper::after {
	content: "";
	display: table;
	clear: both;
}

.row .checkout-steps, .row .checkout-steps ul, .row .checkout-steps ol {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.checkout-steps ol {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-line-pack: start;
	align-content: flex-start;
	color: #bababa;
	text-align: center;
	font-size: 10px;
	font-size: 0.62rem;
}
/* @media screen and (min-width:768px) */
.checkout-steps ol {
	font-size: 16px;
	font-size: 1rem;
}
.checkout-steps ol > li {
	position: relative;
	padding: 10px;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	z-index: 0;
}
/* @media screen and (min-width:768px) */
.checkout-steps ol > li {
	-webkit-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	padding: 10px 30px 10px;
}
.checkout-steps ol > li::before, .checkout-steps ol > li::after {
	content: "";
	position: absolute;
	top: 30px;
	left: 0px;
	width: 50%;
	height: 2px;
	background: #bababa;
	z-index: 1;
}
.checkout-steps ol > li::after {
	left: auto;
	right: 0px;
}
/* @media screen and (min-width:768px) */
.checkout-steps ol > li::before, .checkout-steps ol > li::after {
	top: 34px;
}
.checkout-steps ol > li:first-child::before {
	display: none;
}
.checkout-steps ol > li.complete::before, .checkout-steps ol > li.complete::after {
	background-color: #4caf50;
}
.checkout-steps ol > li.current::before {
	background-color: #4caf50;
}
.checkout-steps ol > li:last-child::after {
	display: none;
}

.icon-clipboard::before {
	content:  url(themes/base/images/Clipboard-Check.png);
}
.icon-card::before {
	content: url(themes/base/images/Credit-Card.png);
}

.current > .icon-card::before {
	content: url(themes/base/images/Credit-Card-ok.png);
}

.icon-pencil::before, .profile-account .current-email > a::before {
	content:  url(themes/base/images/Registration.png);
}

.current > .icon-pencil::before, .profile-account .current-email > a::before {
	content:  url(themes/base/images/Registration-ok.png);
}

.checkout-steps ol > li .icon {
	position: relative;
	display: inline-block;
	margin: 0 0 20px;
    padding: 6px;
	text-align: center;
	background: #fff;
	border: 2px solid #bababa;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	line-height: 36px;
	font-size: 20px;
	font-size: 1.25rem;
	z-index: 10;
}
/* @media screen and (min-width:768px) */
.checkout-steps ol > li .icon {
	width: 50px;
	height: 50px;
	line-height: 46px;
	font-size: 28px;
	font-size: 1.75rem;
}
b, strong {
	font-weight: bold;
}
.checkout-steps ol > li strong {
	display: block;
	font-weight: 400;
	text-transform: uppercase;
}
.checkout-steps ol > li.current .icon {
	border-color: #4caf50;
	color: #4caf50;
}
.checkout-steps ol > li.current strong {
	color: #4caf50;
}
.checkout-steps ol > li.complete .icon {
	border-color: #4caf50;
	color: #fff;
	background: #4caf50;
}
.icon-check::before, .checkout-steps ol > li.complete .icon::before {
	content: url(themes/base/images/Check-Mark.png);
}
.checkout-steps ol > li.complete strong {
	color: #4caf50;
}

iframe{
    min-width: 100%;
}

.text-center{
    text-align: center;
}


.dropdown-menu a.dropdown-item {
	width: 100%;
	padding : 5px;
	color: aqua;
	border:  thick solid #000000;
}


.form-control-sm {
  width: auto;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
       -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
          transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control-sm:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
.form-control-sm::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control-sm:-ms-input-placeholder {
  color: #999;
}
.form-control-sm::-webkit-input-placeholder {
  color: #999;
}
.form-control-sm[disabled],
.form-control-sm[readonly],
fieldset[disabled] .form-control-sm {
  background-color: #eee;
  opacity: 1;
}
.form-control-sm[disabled],
fieldset[disabled] .form-control-sm {
  cursor: not-allowed;
}
textarea.form-control-sm {
  height: auto;
}

.scroll-area {
    width: 100%;
    overflow-y: scroll;
}

.absolute-overlay {
    z-index: 10000;
    background: rgba(0,0,0,0.5);
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.overlay-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.overlay-textblock {
    display: block;
    width: 30vw;
    height: 30vh;
}

.bg-white {
    background-color: #ffffff;
}

tbody#outputtable, tbody#tbody {
    font-size: 12px;
}

thead#outputtablehead {
    font-size: 12px;
}

.badge-error {
    background-color: #b94a48;
}

    .badge-error:hover {
        background-color: #953b39;
    }

.badge-warning {
    background-color: #f89406;
}

    .badge-warning:hover {
        background-color: #c67605;
    }

.badge-success {
    background-color: #468847;
}

    .badge-success:hover {
        background-color: #356635;
    }

.badge-info {
    background-color: #3a87ad;
}

    .badge-info:hover {
        background-color: #2d6987;
    }

.badge-inverse {
    background-color: #333333;
}

    .badge-inverse:hover {
        background-color: #1a1a1a;
    }

.greyRow {
    background-color: #f9f9f9;
}

.scrollable-menu {
    height: auto;
    max-height: 200px;
    overflow-x: hidden;
}

small a:link, small a:visited, small a:active {
    color: rgb(204, 204, 204);
}

small a:hover
{
    color: rgba(255, 255, 255, 0.9);
}