/**
 * Brand Colors
 * Neon Green: #CCDB2A | rgb(204,219,42)
 * Blue: #006DB0 | rgb(0,109,176)
 * Grey: #A9A9A9 | rgb(169,169,169)
 * Black: #000 | rgb(0,0,0)
 */

html,
body {
    height: 100%;
}

body .wrapper {
    font-family: 'Roboto', 'Helvetica Neue', 'Myriad Pro', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 25px;
    background: #f6f6f6;
}

body > .wrapper {
    height: auto;
    min-height: 100%;
    padding-bottom: 14em;
    position: relative;
    overflow: hidden
}

img {
    max-height: 100%;
    max-width: 100%
}

a {
    color: #3A89C9
}

a:hover {
    text-decoration: none
}
h1,h2,h3,h4,h5,h6 {
    font-family: 'Roboto Condensed', 'Roboto', 'Arial', 'Verdana', sans-serif;
    font-weight: lighter
}

h1 { font-size: 2em }
h2 { font-size: 1.35em }
h3 { font-size: 1.5em }
h4 { font-size: 1.15em }
h5,
h6 {
  font-size: 1em;
  font-weight: 100
}

h2 small a {
    font-size: 0.75em
}

.muted {
    color: #999
}

.unstyled {
    list-style: none;
    margin-left: 0;
    padding-left: 0
}

.hidden-soft {
    display: none
}


.brand-blue { color: #006DB0 }
.brand-green { color: #CCDB2A }
.brand-grey { color: #A9A9A9 }

.brand-blue-background { background-color: #006DB0 }
.brand-green-background { background-color: #CCDB2A }
.brand-grey-background { background-color: #A9A9A9 }

.margin { margin: 1em }
.margin-2x { margin: 2em }
.margin-top { margin-top: 1em }
.margin-top-2x { margin-top: 2em }
.margin-bottom { margin-bottom: 15px }
.margin-bottom-2x { margin-bottom: 2em }
.margin-right { margin-right: 1em }
.margin-right-2x { margin-right: 2em }
.margin-left { margin-left: 1em }
.margin-left-2x { margin-left: 2em }

.padded { padding: 1em }

.well h1,
.well h2,
.well h3 { margin-top: 0 }

.department-title h1 {
    margin-top: 10px
}
.department-title h2 {
    margin: 5px 0
}

.department-header {
    height: 200px;
    background: #eee;
    background-size: cover;
    background-position: center center;
    vertical-align: bottom;
    margin-bottom: 20px;
    position: relative;
}

.department-header h1 {
    background: #111;
    display: inline-block;
    color: #FFF;
    position: relative;
    padding: 5px 15px;
    margin-left: 1%
}
.navbar-search {
    margin-top: 15px;
    width: 150px;
}
.navbar-search input {
    height: 32px
}
.navbar-search .btn {
    margin-top: -1px
}

.help {
  border-bottom: 1px dotted #3A89C9;
}

.mini-figure-selector .none {
  height: 50px;
  width: 40px;
  text-align: center;
  display: inline;
  font-size: 10px;
  padding: 15px 10px;
}

.mini-figure-selector .active {
  border: 2px solid #CCDB2A;
}

.mini-figure-selector img,
.mini-figure-selector div {
  border: 2px solid #fff;
}

.mini-figure-selector img:hover,
.mini-figure-selector div:hover {
  border: 2px solid #3A89C9
}

#undertaker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 999
}

#undertaker #content {
    position: absolute;
    top: 45%;
    left: 45%;
    margin-left: -100px;
    background: #fff;
    padding: 10px 20px;
    z-index: 1000
}

.gradient-background {
    background: #006db0; /* Old browsers */
    background: -moz-linear-gradient(left, #006db0 0%, #34415f 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #006db0), color-stop(100%, #34415f)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, #006db0 0%, #34415f 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, #006db0 0%, #34415f 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left, #006db0 0%, #34415f 100%); /* IE10+ */
    background: linear-gradient(to right, #006db0 0%, #34415f 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#006db0', endColorstr='#34415f', GradientType=1); /* IE6-9 */
}

.gradient-background-vertical {
    background: #006db0; /* Old browsers */
    background: -moz-linear-gradient(top, #006db0 0%, #34415f 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #006db0), color-stop(100%, #34415f)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #006db0 0%, #34415f 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #006db0 0%, #34415f 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #006db0 0%, #34415f 100%); /* IE10+ */
    background: linear-gradient(to bottom, #006db0 0%, #34415f 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#006db0', endColorstr='#34415f', GradientType=1); /* IE6-9 */

}



.content-box {
    background: #fff;
    padding: 1em
}

.content-box h1:first-child,
.content-box h2:first-child,
.content-box h3:first-child {
    margin-top: 0
}

.bordered-box {
    border: 1px solid #e5e5e5;
    border-radius: 2px
}
.shadowed-box {
    border-top: 1px solid #eee;
    box-shadow: 0 2px 3px #aaa;
}
.shadowed-box-small {
    border-top: 1px solid #eee;
    box-shadow: 0 1px 2px #999;
 }

.content-box h1.box-title {
    margin: -15px -15px 15px -15px;
    padding: .5em 1em;
}

.easyzoom img {
    max-width: 100%
}

#home-hero {
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    margin-top: -1px
}

#home-hero,
.hero-container {
    height: 500px;
    position: relative;
}

#home-hero .hero-quote {
    margin-top: 10%;
    left: 0;
    max-width: 550px;
    text-align: right;
    background: rgba(204, 219, 42, 0.8);
    padding: 10px;
    color: #111;
}

#home-hero .hero-quote h1 {
    color: #111;
    line-height: 1.35em;
    margin: 0;
}

#home-hero .hero-link {
    margin-top: 1em;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    box-shadow: 0 2px 2px rgba(0,0,0,.4);
    border-radius: 2px;
    display: inline-block;
    font-size: 1.25em;
}

#home-hero .hero-link a {
    color: rgb(0, 109, 176)
}

.product {
    margin-bottom: 20px
}

#foot {
    color: #f7f7f7;
    clear: both;
    position: relative;
    z-index: 10;
    height: 14em;
    margin-top: -14em;
}

.foot.foot-top {
    margin-top: 40px;
    padding: 20px 0;

    background: #006db0; /* Old browsers */
    background: -moz-linear-gradient(left, #006db0 0%, #34415f 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #006db0), color-stop(100%, #34415f)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, #006db0 0%, #34415f 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, #006db0 0%, #34415f 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left, #006db0 0%, #34415f 100%); /* IE10+ */
    background: linear-gradient(to right, #006db0 0%, #34415f 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#006db0', endColorstr='#34415f', GradientType=1); /* IE6-9 */

}

.foot.foot-bottom {
    background-color: #ccc;
    color: #110f0d;
    padding: .75em
}

.foot .col-sm-3 {
    color: #f7f7f7;
    height: 150px
}

.foot .col-sm-3:first-child {
    border-left: 0
}

.foot .col-sm-3 h3 {
    margin-top: 0
}

.badge-danger {
    background-color: #d9534f
}

.checkout-wrap,
.payment-wrap {
}

.admin-nav-head {
    background: rgb(0, 109, 176);
    padding: 50px 0;
    color: #fff;
    text-align: center;
    font-size: 28px;
    margin: 0 -15px
}

.text-middle {
    vertical-align: middle;
}

.left-nav {
    background-color: rgb(22,31,56);
}

.left-nav .list-group {
    margin: 0 -15px 20px
}

.left-nav .list-group .list-group-item {
    background: transparent;
    border: 0;
    border-radius: 0
}

.left-nav .list-group .list-group-item:hover {
    background: rgba(0, 0, 0, .1)
}

.left-nav .list-group .list-group-item a {
    color: #efefef;
    display: block
}
.left-nav strong {
    color: #5C5C5C;
    font-weight: normal
}

.list-group-item.active {
    background-color: #CCDB2A
}

#slide-box {
    position: fixed;
    border: 1px solid #aaa;
    box-shadow: -2px 0 3px rgba(0, 0, 0, .33);
    background-color: #fff;
    right: -100%;
    top: 60px;
    min-width: 400px;
    min-height: 800px;
    z-index: 5;
}
.navbar-search .btn.btn-search {
    background: rgba(255,255,255,.1);
    border-color: #1c2c44;
    color: #fff;
    margin-top: 0;
    height: 39px;
}
.navbar-search input[name="q"] {
  border: 1px solid #1c2c44;
}
.corner-ribbon {
    padding: 2px 0;
    background: darkred;
    color: #fff;
    position: absolute;
    width: 125px;
    top: 15px;
    right: -30px;
    z-index: 9999;
    transform: rotate(0.125turn);
    text-align: center;
    box-shadow: 0 2px 3px rgba(0,0,0,.2);
}
/* Bootstrap 3 Overrides */
.btn-success.disabled,
.btn-success[disabled] {
    color: grey;
    border-color: #fff;
    background: rgb(173,173,173);
}
.btn-success:focus {
  color: #111;
  outline: none;
}

fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
    background-color: #a9a9a9;
    border-color: #a9a9a9;
    color: #fff
}
.alert {
    border-radius: 2px;
    border: 0;
}
.alert-info {
    background: rgba(204,219,42,.5);
    color: #4F5513
}

.thumbnail {
    border-radius: 2px;
}
.container-fluid {
    padding: 0
}

.navbar-form.navbar-right {
    margin: 5px 0
}

th {
    color: #999;
    font-weight: normal
}

label {
    font-weight: 400
}

.label-green {
  background-color: #CCDB2A;
}

.label {
    border-radius: 2px;
    font-weight: normal;
    padding: 4px 6px;
}

.form-control {
    font-size: 16px;
    height: auto;
    padding: 8px 12px;
    border-radius: 2px
}
.btn {
    border-radius: 2px;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus {
  outline: none;
}

.btn-elevated {
  box-shadow: 0 3px 3px rgba(0,0,0,.66);
}

.btn-elevated:active {
  display: inline-block;
  margin-top: 3px;
  margin-bottom: 12px;
}

.btn-success {
    background-color: #cddc29;
    border-color: #cddc29;
    color: rgb(69, 74, 17);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2), 0 1px 2px rgba(0,0,0,0.92);
    font-size: 20px;
}
.btn-success:active,
.btn-success:hover {
  background-color: #d5e052;
  border-color: #d5e052;
  color: rgba(0,0,0,0.8);
}

.btn-default {
    color: #006DB0;
    border-color: #cccccc;
}

.btn-default:hover {
    background-color: #CCDB2A;
    border-color: #CCDB2A;
    color: #006DB0;
}

.btn-primary {
    background-color: #006db0;
    border-color: #006db0;
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active {
  color: #006db0;
  background-color: #CCDB2A;
  border-color: #889216;
  outline: none;
}

.breadcrumb {
    background-color: transparent;
    border-bottom: 1px dashed #eee
}
.list-group-item:first-child {
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
}
.list-group-item:last-child {
     border-bottom-right-radius: 2px;
     border-bottom-left-radius: 2px;
 }

.navbar {
    margin-bottom: 0
}

.navbar.navbar-default {
    border-width: 0;
    border-radius: 0;
    box-shadow: 0 2px 2px rgba(0,0,0,.75);
    z-index: 999;

    background: #006db0; /* Old browsers */
    background: -moz-linear-gradient(left, #006db0 0%, #34415f 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #006db0), color-stop(100%, #34415f)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, #006db0 0%, #34415f 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, #006db0 0%, #34415f 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left, #006db0 0%, #34415f 100%); /* IE10+ */
    background: linear-gradient(to right, #006db0 0%, #34415f 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#006db0', endColorstr='#34415f', GradientType=1); /* IE6-9 */

}

.navbar-default .navbar-nav > li > a {
    color: rgb(169, 169, 169);
    line-height: 44px;
    padding-top: 25px;
    padding-bottom: 20px;  
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    color: #CCDB2A
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
    background-color: rgba(0, 0, 0, .2);
    color: #fff;
}

.navbar-default .navbar-brand {
    color: rgb(169, 169, 169);
    height: 90px;
    padding: 5px 15px;
}

.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
    color: #CCDB2A;
    background-color: rgba(0, 0, 0, .05);
}

.navbar-default .navbar-toggle .icon-bar {
    color: rgb(169, 169, 169)
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  color: #CCDB2A;
  background-color: rgba(0, 0, 0, .05);
}

.navbar-collapse {
    max-height: 900px
}

.nav-pills>li.active>a,
.nav-pills>li.active>a:hover,
.nav-pills>li.active>a:focus {
    background-color: #CCDB2A;
    color: #006DB0
}
a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
  border-color: #CCDB2A;
  box-shadow: 0 0 0 3px #CCDB2A;
}
hr {
    clear: both;
    width: 100%
}

hr.dark {
    border-top-color: #ccc
}

.well {
    border-radius: 2px;
    box-shadow: none
}

.success {
    color: #5cb85c;
}
.info {
    color: #5BC0DE;
}
.danger {
    color: #d9534f;
}

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    vertical-align: middle;
}
.navbar-form .form-control { font-size: 14px }
input[type="text"], input[type="email"], input[type="password"] {
    height: auto;
    padding: 6px 10px;
    line-height: inherit; /* for i.e. */
}
@media (max-width: 767px) {

    .breadcrumb {
      margin-bottom:0;
    }

    .margin-bottom-xs { margin-bottom: 1em }
    .margin-top-xs { margin-top: 1em }

    #main-nav a {
      color: #fff;
      font-size: 18px;
      padding: 10px;
    }
    #main-nav a:hover {
        color: #CCDB2A
    }

    #main-nav {
        background-color: #525252;
        border-top: 1px solid rgba(0,0,0,.2);
    }
    #main-nav > ul > li {
        border-bottom: 1px solid rgba(255,255,255,0.2)
    }
    #main-nav .navbar-form {
        border: 0;
        box-shadow: none;
    }
    #main-nav .navbar-form .navbar-search {
        margin-top:0;
        width: auto
    }

    #home-hero {
        margin-top: 0;
        height: 200px
    }

    .department-header {
        height: 100px
    }

    .product {
        height: auto
    }

    .foot .col-sm-3 {
        border-left: 0;
        border-bottom: 1px solid rgba(0,0,0,.25);
        height: auto;
        padding-top: 15px;
    }

    .foot .col-sm-3:last-child {
        border-bottom: 0
    }

    .foot .col-sm-3 ul > li {
      width: 50%;
      float: left;

      padding: 5px 0;
    }

    .foot .col-sm-3 ul > li > a {
      color: #B2BE2A;
      font-size: 16px;
    }

    .foot.foot-bottom {
        text-align: center
    }

    .department-title {
        padding: 0 20px
    }
}
.btn-fb {
  background: #3b5998;
  color:#fff
}
.btn-fb:hover {
    background: #1f3052;
    color:#fff
}

.fa.disabled { color: #ccc }

.btn-close {
  position: absolute;
  top: 0;
  right: 3px;
  color: #ccc
}
.btn-close:hover {
  color: #d9534f
}

.thumbnail {
  position: relative;
  overflow: hidden
}
.secondary-image {
  position: absolute;
  top: 0;
  left: 0;
  max-height: none;
  z-index: -1
}

/************
 ** Plugins **
 *************/
body .trumbowyg-box,
body .trumbowyg-editor {
    margin: 1em 0;
    width: 100%
}

/* imagelightbox box */
#imagelightbox {
  cursor: pointer;
  position: fixed;
  z-index: 9999;
  -webkit-box-shadow: 0 0 3.125em rgba( 0, 0, 0, .75 );
  box-shadow: 0 0 3.125em rgba( 0, 0, 0, .75 );
  -ms-touch-action: none;
  touch-action: none;
}
#imagelightbox-overlay {
  background-color: rgba(169,169,169,.8);
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation: fade-in .25s linear;
  animation: fade-in .25s linear;
}

.easyzoom img { max-width: inherit; max-height: inherit }
