.cta {
  display: inline-block;
  text-decoration: none !important;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
}

.cta-green-btn {
    font-family: "Century Gothic","Century Gothic Bold","Century Gothic Bold Italic","Century Gothic Italic";
    background: none repeat scroll 0% 0% #82A100;
    color: #FFF;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    margin: 6px 22px 0px 7px;
    padding: 8px 19px;
    border: medium none;
    float: right;
}

.cta {
  padding: 3px 10px;
}
.cta.large {
  color: #6f7374;
  letter-spacing: 0;
  font-size: 14px;
  padding: 3px 20px;
}
.cta.small {
  color: white;
  letter-spacing: 1px;
  font-size: 12px;
}
.cta.yellow {
  background: #f6d247;
  background: linear-gradient(to bottom, #f6d247 0%, #ffc340 100%);
  border: 1px solid #ffb30d;
  border-width: 1px 1px 2px 1px;
  border-radius: 5px;
  text-shadow: 1px 1px 0 #f8de78;
}
.cta.yellow:hover, .cta.yellow:focus {
  background: #f5cc2f;
  background: linear-gradient(to bottom, #f5cc2f 0%, #ffbb26 100%);
}
.cta.yellow:active {
  top: 1px;
}
.cta.blue {
  color: white;
  letter-spacing: 1px;
  font-size: 13px;
  background: #00457C;
  background: linear-gradient(to bottom, #00457C 0%, #094475 100%);
  border: 1px solid #00457C;
  border-width: 1px 1px 2px 1px;
  border-radius: 5px;
  text-shadow: none;
  border: 2px solid #00457C;
  letter-spacing: 0;
}
.cta.blue:hover, .cta.blue:focus {
  background: #03497f;
  background: linear-gradient(to bottom, #03497f 0%, #07365d 100%);
}
.cta.blue:active {
  top: 1px;
}
.cta.checkout {
  float: right;
}
.cta.checkout:before, .cta.checkout:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.cta.checkout:after {
  clear: both;
}
@media screen and (max-width: 640px) {
  .cta.checkout {
    float: left;
  }
}
.actions .cta {
  border-radius: 0;
  text-transform: none;
  padding: 1px 6px;
  font-size: 12px;
}
.actions .cta.update-cart {
  float: right;
}

.cart {
  margin-top: 15px;
  display: inline-block;
  width:100%;
}
.cart table.cart-items {
  float: left;
  width: 100%;
  margin: 12px 0 15px;
}
.cart table.cart-items thead {
  font-weight: normal;
  text-transform: uppercase;
  text-align: left;
  font-size: 10px;
  background: #fdfdfd;
  background: linear-gradient(to bottom, #fdfdfd 0%, #f5f5f5 100%);
}
.cart table.cart-items thead th {
  padding: 15px 0;
}
.cart table.cart-items tr {
  border: 1px solid #d0d0d0;
}
.cart table.cart-items th:first-child,
.cart table.cart-items td:first-child {
  padding-left: 15px;
}
.cart table.cart-items th:nth-of-type(n+3),
.cart table.cart-items td:nth-of-type(n+3) {
  text-align: center;
}
.cart table.cart-items tbody tr:nth-child(odd) {
  background: #fff;
}
.cart table.cart-items tbody tr:nth-child(even) {
  background: #f5f5f5;
}
.cart table.cart-items tbody td {
  padding: 10px 0;
  color: #273578;
  font-weight: bold;
  font-size: 13px;
}
.cart table.cart-items tbody td img {
  border: 1px solid #d0d0d0;
}
.cart table.cart-items tbody td h4 {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 0;
  color: #000;
}
.cart table.cart-items tbody td h4 span {
  display: block;
  text-transform: none;
  font-size: 11px;
}
.cart table.cart-items tbody td p {
  margin-top: 0;
  font-size: 11px;
  padding-left: 15px;
  color: #000;
  font-weight: normal;
}
.cart table.cart-items tbody td input[type="text"] {
  /*width: 28px;*/
  width: 60px;
  height: 18px;
  font-size: 12px;
  border: 1px solid #d0d0d0;
  text-align: center;
}
.cart table.cart-items tbody td a.remove {
  color: #fff;
  background: #b1b1b1;
  width: 14px;
  height: 14px;
  border-radius: 28px;
  text-align: center;
  text-decoration: none;
  line-height: 13px;
  display: inline-block;
}
.cart table.cart-items tbody td a.remove:hover, .cart table.cart-items tbody td a.remove:focus {
  background: #989898;
}
@media screen and (max-width: 640px) {
  .cart {
    /* Force table to not be like tables anymore */
  }
  .cart table.cart-items {
    display: block;
  }
  .cart table.cart-items thead, .cart table.cart-items tbody, .cart table.cart-items th, .cart table.cart-items td, .cart table.cart-items tr {
    display: block;
  }
  .cart table.cart-items thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .cart table.cart-items tr {
    border: 1px solid #d0d0d0;
  }
  .cart table.cart-items td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #d0d0d0;
    position: relative;
    padding-left: 50%;
  }
  .cart table.cart-items td:first-of-type {
    display: none;
  }
  .cart table.cart-items td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
  }
  .cart table.cart-items td:nth-of-type(3):before {
    content: "Unit Price";
  }
  .cart table.cart-items td:nth-of-type(4):before {
    content: "Qty";
  }
  .cart table.cart-items td:nth-of-type(5):before {
    content: "Subtotal";
  }
  .cart table.cart-items td:nth-of-type(6):before {
    content: "Remove";
  }
  .cart table.cart-items td h4, .cart table.cart-items td h4 span, .cart table.cart-items td p {
    text-align: center;
  }
}
.cart .actions {
  float: left;
  width: 100%;
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.cart .shipping-estimate {
  float: left;
  border: 1px solid #d0d0d0;
  width: 330px;
  min-height: 290px;
  margin: 0 15px 0 200px;
  padding: 15px;
  background: linear-gradient(to bottom, #f5f5f5 0%, #ffffff 100%);
}
@media screen and (max-width: 1024px) {
  .cart .shipping-estimate {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .cart .shipping-estimate {
    float: left;
    width: 100%;
  }
}
.cart .shipping-estimate h5 {
  margin: 0;
  color: #273578;
  text-transform: uppercase;
  font-size: 13px;
}
.cart .shipping-estimate p {
  color: #273578;
  font-size: 12px;
}
.cart .shipping-estimate .row {
  float: left;
  width: 100%;
  margin: 0 0 5px 0;
}
.cart .shipping-estimate label {
  display: block;
  font-weight: bold;
  color: #0c2236;
  margin-bottom: 5px;
  font-size: 13px;
}
.cart .shipping-estimate select,
.cart .shipping-estimate input[type="text"] {
  width: 100%;
  height: 28px;
  border: 1px solid #d0d0d0;
  padding-left: 5px;
  color: #0c2236;
  font-size: 13px;
}
.cart .shipping-estimate input[type="submit"] {
  border: 1px solid #2a4431;
  font-weight: bold;
  color: #fff;
  background: #848484;
  margin-top: 5px;
  padding: 5px 15px;
  font-size: 13px;
}
.cart .shipping-estimate input[type="submit"]:hover, .cart .shipping-estimate input[type="submit"]:focus {
  background: #6b6b6b;
}
.cart .total {
  float: left;
  border: 1px solid #d0d0d0;
  background: #9c9c9c;
  padding-right: 35px;
  width: 385px;
  min-height: 290px;
}
@media screen and (max-width: 1024px) {
  .cart .total {
    float: right;
  }
}
@media screen and (max-width: 768px) {
  .cart .total {
    float: left;
    width: 100%;
    margin-top: 20px;
  }
}
.cart .total p {
  text-align: right;
  color: #fff;
}
.cart .total p.subtotal {
  font-size: 15px;
  font-weight: bold;
  padding-top: 10px;
}
.cart .total p.subtotal span {
  padding-left: 40px;
}
.cart .total p.grand-total {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: bold;
}
.cart .total p.grand-total span {
  padding-left: 5px;
}
.cart .total a.cta {
  margin: 25px 0;
}
.cart .total a.multiple-addresses {
  clear: both;
  float: right;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  text-decoration: underline;
}

#main-content {
  width: 100%;
}

.cart a.step-heading {
  display: block;
  padding: 3px 0 3px 10px;
  border-bottom: 1px solid #dbdbdb;
  border-top: 1px solid #fafafa;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 #fff;
  color: #333;
  background: #e9e9e9;
  cursor: default;
}
.cart a.step-heading.active {
  border: 1px solid #08447C;
  border-width: 1px 1px 0 1px;
  font-size: 18px;
  text-shadow: 1px 1px 0 #333;
  color: #fff;
  background: rgb(42,110,173);
/*background: linear-gradient(180deg, rgba(42,110,173,1) 5%, rgba(8,68,124,1) 50%, rgba(42,110,173,1) 90%);*/
}
.cart a.step-heading:hover {
  cursor: pointer;
}
.cart div.step {
  border: 1px solid #d9d9d9;
  border-width: 0 1px;
  background-color: #fcfcfc;
  display: none;
  padding: 15px;
}
.cart div.step.nobg {
  border: none;
  border-width: 0px;
  /*background-color: none;*/
  display: inline-block;
}
.cart div.step:before, .cart div.step:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.cart div.step:after {
  clear: both;
}
.cart div.step.step-0 {
  display: block;
}
.cart div.step h2 {
  font-weight: bold;
  font-size: 16px;
}
.cart div.step .row {
  float: left;
  width: 100%;
  margin: 0 0 10px 0;
  padding: 0 0 0 25px;
}
@media screen and (max-width: 480px) {
  .cart div.step .row {
    margin: 0;
    padding: 5px 0;
  }
}
.cart div.step .row label,
.cart div.step .row span.field-label {
  padding-right: 10px;
  text-align: right;
  font-size: 14px;
  font-weight: bold;
  width: 250px;
  display: inline-block;
}
@media screen and (max-width: 640px) {
  .cart div.step .row label,
  .cart div.step .row span.field-label {
    width: 100%;
    clear: both;
    text-align: left;
  }
}
.cart div.step .row input[type="text"],
.cart div.step .row input[type="password"],
.cart div.step .row select,
.cart div.step .row textarea {
  width: 250px;
  height: 28px;
  border: 1px solid #dbdbdb;
  padding-left: 5px;
  font-size: 14px;
}
@media screen and (max-width: 640px) {
  .cart div.step .row input[type="text"],
  .cart div.step .row input[type="password"],
  .cart div.step .row select,
  .cart div.step .row textarea {
    width: 100%;
  }
}
.cart div.step .row textarea {
  height: 75px;
  font-size: 12px;
  font-family: monospace !important;
}
.cart div.step .cta {
  color: #152962;
  letter-spacing: 0;
  font-size: 13px;
  background: white;
  background: linear-gradient(to bottom, #ffffff 0%, #ececec 100%);
  border: 1px solid gainsboro;
  border-width: 1px 1px 2px 1px;
  border-radius: 50px;
  text-shadow: 1px 1px 0 #f8f7f4;
  font-weight: bold;
  outline: 0;
}
.cart div.step .cta:hover, .cart div.step .cta:focus {
  background: #f2f2f2;
  background: linear-gradient(to bottom, #f2f2f2 0%, #dfdfdf 100%);
}
.cart div.step .cta:active {
  top: 1px;
}
.cart div.step .cta.prev {
  float: left;
}
.cart div.step .cta.next {
  float: right;
  margin-right: 25px;
}
.cart div.step-0 .left,
.cart div.step-0 .right {
  float: left;
  width: 50%;
  margin: 0;
  padding: 5px 50px;
}
@media screen and (max-width: 725px) {
  .cart div.step-0 .left,
  .cart div.step-0 .right {
    width: 100%;
    padding: 15px;
  }
}
.cart div.step-0 .left {
  border-right: 1px solid #d0d0d0;
}
@media screen and (max-width: 725px) {
  .cart div.step-0 .left {
    border-right: 0;
    border-bottom: 1px solid #d0d0d0;
  }
}
.cart div.step-0 .left .row label {
  width: 115px;
}
@media screen and (max-width: 1024px) {
  .cart div.step-0 .left .row label {
    text-align: left;
  }
}
.cart div.step-0 .left .row input[type="text"],
.cart div.step-0 .left .row input[type="password"] {
  width: 220px;
  border: 1px solid #d9d9d9;
}
@media screen and (max-width: 480px) {
  .cart div.step-0 .left .row input[type="text"],
  .cart div.step-0 .left .row input[type="password"] {
    width: 100%;
  }
}
.cart div.step-0 .left .row input.cta {
  float: left;
}
.cart div.step-0 .left .row.remember label {
  padding-left: 5px;
  width: auto;
}
.cart div.step-0 a.forgot-password {
  margin: 0 30px 0 120px;
  font-size: 13px;
  color: #333;
  text-decoration: underline;
}
.cart div.step-0 .right label {
  width: auto;
}
.cart div.step-0 .right input.next {
  float: left;
}
.cart div.step-0 .row {
  padding: 0;
}
.cart div.step-2 .left,
.cart div.step-2 .right {
  margin: 0;
}
.cart div.step-2 .left h4,
.cart div.step-2 .right h4 {
  padding-left: 15px;
}
@media screen and (max-width: 725px) {
  .cart div.step-2 .left h4,
  .cart div.step-2 .right h4 {
    padding-left: 0;
  }
}
.cart div.step-2 .left .row,
.cart div.step-2 .right .row {
  padding-left: 0;
}
.cart div.step-2 .left .row ul,
.cart div.step-2 .right .row ul {
  list-style: none;
  margin-left: 5px;
  padding-left: 15px;
  line-height: 1.6;
}
@media screen and (max-width: 725px) {
  .cart div.step-2 .left .row ul,
  .cart div.step-2 .right .row ul {
    padding-left: 0;
  }
}
.cart div.step-2 .left input#ShippingControl_btnAdd,
.cart div.step-2 .right input#ShippingControl_btnAdd {
  float: right;
  margin-right: 30px;
}
@media screen and (max-width: 725px) {
  .cart div.step-2 .left input#ShippingControl_btnAdd,
  .cart div.step-2 .right input#ShippingControl_btnAdd {
    float: left;
  }
}
.cart div.step-2 .left {
  width: 45%;
}
@media screen and (max-width: 725px) {
  .cart div.step-2 .left {
    width: 100%;
    margin-bottom: 25px;
  }
}
.cart div.step-2 .left input.cta.next {
  float: left;
  margin: 0 5px 0 15px;
}
.cart div.step-2 .left input.cta {
  margin-left: 5px;
}
@media screen and (max-width: 725px) {
  .cart div.step-2 .left input.cta {
    margin-left: 15px;
  }
}
.cart div.step-2 .left .row.buttons {
  margin-top: 15px;
}
@media screen and (max-width: 725px) {
  .cart div.step-2 .left .row.buttons {
    margin-top: 0;
  }
}
@media screen and (max-width: 725px) {
  .cart div.step-2 .left .row.buttons span {
    display: block;
    clear: both;
    margin: 0 0 0 75px;
    padding: 5px;
  }
}
.cart div.step-2 .right {
  width: 50%;
  padding-right: 3%;
  border-left: 1px solid #d0d0d0;
}
@media screen and (max-width: 725px) {
  .cart div.step-2 .right {
    width: 100%;
    padding-right: 0;
    border-left: 0;
  }
}
.cart div.step-2 .right input[type="text"],
.cart div.step-2 .right select,
.cart div.step-2 .right textarea {
  width: 250px;
}
@media screen and (max-width: 725px) {
  .cart div.step-2 .right input[type="text"],
  .cart div.step-2 .right select,
  .cart div.step-2 .right textarea {
    width: 100%;
  }
}
.cart div.step-3 table {
  width: 100%;
}
.cart div.step-3 .row label {
  width: auto;
  padding-left: 15px;
}
@media screen and (max-width: 480px) {
  .cart div.step-3 .row label {
    padding-left: 10px;
    padding-right: 0;
    clear: none;
    width: 175px;
    float: left;
  }
}
.cart div.step-3 .row input[type="radio"] {
  float: left;
}
.cart div.step-4 .row ul {
  padding: 0 40px;
}
@media screen and (max-width: 480px) {
  .cart div.step-4 .row ul {
    padding: 0 10px;
  }
}
.cart div.step-4 .row select#BillingControl_ddl_exp_month,
.cart div.step-4 .row select#BillingControl_ddl_exp_year {
  width: 143px;
}
@media screen and (max-width: 725px) {
  .cart div.step-4 .row select#BillingControl_ddl_exp_month,
  .cart div.step-4 .row select#BillingControl_ddl_exp_year {
    width: 43%;
  }
}
.cart div.step-5 .right {
  background: #d0d0d0;
  padding: 10px 25px;
  line-height: 1.6;
  text-align: right;
}
@media screen and (max-width: 480px) {
  .cart div.step-5 .right {
    clear: both;
    width: 100%;
    margin: 0;
    text-align: left;
  }
}
.cart div.step-5 .right strong {
  font-size: 20px;
  color: #152962;
  padding-top: 5px;
}
@media screen and (max-width: 480px) {
  .cart div.step-5 input.cta.next {
    margin-right: 0;
  }
}

span.validation-error {
  position: relative;
  font-size: 12px;
  padding-left: 5px;
  background: #fff;
  border: 1px solid #d0d0d0;
  padding: 5px 5px 4px 5px;
  margin-left: 7px;
  box-shadow: 0 0 5px #c7c7c7;
  z-index: 1;
  color: #a00 !important;
  font-style: italic;
}
  span.validation-error:before {
    position: absolute;
    content: "";
    top: 7px; left: -6px;
    width: 0px; height: 0px;
    border-style: solid;
    border-width: 6px 6px 6px 0;
    border-color: transparent #fff transparent transparent;
    z-index: 3;
  }

  span.validation-error:after {
    position: absolute;
    content: "";
    top: 6px; left: -8px;
    width: 0px; height: 0px;
    border-style: solid;
    border-width: 7px 7px 7px 0;
    border-color: transparent #d0d0d0 transparent transparent;
    z-index: 2;
  }

@media screen and (max-width: 480px) {
  span.validation-error {
    border: 0;
    background: none;
    box-shadow: none;
    margin-left: 0;
  }
  span.validation-error:before,
  span.validation-error:after {
    display: none;
  }
}
.filter-checkbox-list label {
    padding-left:10px;
    padding-right:30px;
}

.price_breaks 
{
    margin-left:-6px;
}

.price_breaks td
{
    font-size:smaller !important;
}

.price_breaks th
{
    font-size:smaller !important;
}

.loading-panel {
    top:0;
    left:0;
    width:100%;
    height:100%;
    position:absolute;;
    text-align:center;
    /* IE filter */
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
    -moz-opacity:0.5;    /* Mozilla extension */
    -khtml-opacity:0.5;  /* Safari/Conqueror extension */
    background: transparent;
    background-color:rgba(255,255,255, 0.85);    
    z-index:1000;
}

.loading-panel div:first-child {
    margin-top:75px;
    background: transparent;
    background-color:rgba(255,255,255, 1); 
    width: 50%;
    height: 200px;
    margin-left:25%;
    box-shadow: 10px 10px 5px #888888;
}

.loading-panel img {
    position: absolute;
    margin-left:-50px;
}

.loading-panel div input {
    margin-left:-25px;
    top: 125px !important;
    float: none !important;    
}

.loadError {    
    width:100%;
    margin-top: 125px;
    color:red;
    text-align:left;
    display:inline-block;
}

.order-row
{
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
}

.cta-gray-btn {
    font-family: "Century Gothic","Century Gothic Bold","Century Gothic Bold Italic","Century Gothic Italic";
    background: none repeat scroll 0% 0% #707070;
    color: #d0d0d0;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    margin: 6px 22px 0px 7px;
    padding: 8px 19px;
    border: medium none;
    float: left;
}

.btn {
    color: #FFF;
    text-decoration: none;
    font-weight: bold;
    border: none;
	border-radius: 6px 6px 6px 6px;
}

.btn-green {
  color: #ffffff;
  background-color: #81A012;
  border-color: #81A012;
    	font-family: "Public Sans", Sans-serif;
    	font-size: 16px;
    	font-weight: 600;
    	line-height: 1.1em;
    	fill: #231F20;
    	color: #231F20;
    	padding: 15px 58px 15px 58px;
    	font-family: "Public Sans", Sans-serif;
    	font-size: 16px;
    	font-weight: 400;
    	text-transform: uppercase;
    	color: #231F20;
    	background-color: #FDCD40;
    	border-radius: 10px 10px 10px 10px;
    	padding: 15px 25px 15px 25px;
	border-color: #231F20;
}
.btn-green:hover,
.btn-green:focus,
.btn-green:active,
.btn-green.active,
.open > .dropdown-toggle.btn-green {
  color: #ffffff;
  /*background-color: #9ABF17;#08447C
  border-color: #9ABF17;*/
	background-color: #08447C;
  	border-color: #08447C;
}
.btn-green:active,
.btn-green.active,
.open > .dropdown-toggle.btn-green {
  background-image: none;
}
.btn-green.disabled,
.btn-green[disabled],
fieldset[disabled] .btn-green,
.btn-green.disabled:hover,
.btn-green[disabled]:hover,
fieldset[disabled] .btn-green:hover,
.btn-green.disabled:focus,
.btn-green[disabled]:focus,
fieldset[disabled] .btn-green:focus,
.btn-green.disabled:active,
.btn-green[disabled]:active,
fieldset[disabled] .btn-green:active,
.btn-green.disabled.active,
.btn-green[disabled].active,
fieldset[disabled] .btn-green.active {
  background-color: #81A012;
  border-color: #81A012;
}
.btn-green .badge {
  color: #81A012;
  background-color: #ffffff;
}

.btn-gray {
  color: #ffffff;
  background-color: #838383;
  border-color: #838383;
}
.btn-gray:hover,
.btn-gray:focus,
.btn-gray:active,
.btn-gray.active,
.open > .dropdown-toggle.btn-gray {
  color: #ffffff;
  background-color: #9F9F9F;
  border-color: #9F9F9F;
}
.btn-gray:active,
.btn-gray.active,
.open > .dropdown-toggle.btn-gray {
  background-image: none;
}
.btn-gray.disabled,
.btn-gray[disabled],
fieldset[disabled] .btn-gray,
.btn-gray.disabled:hover,
.btn-gray[disabled]:hover,
fieldset[disabled] .btn-gray:hover,
.btn-gray.disabled:focus,
.btn-gray[disabled]:focus,
fieldset[disabled] .btn-gray:focus,
.btn-gray.disabled:active,
.btn-gray[disabled]:active,
fieldset[disabled] .btn-gray:active,
.btn-gray.disabled.active,
.btn-gray[disabled].active,
fieldset[disabled] .btn-gray.active {
  background-color: #838383;
  border-color: #838383;
}
.btn-gray .badge {
  color: #838383;
  background-color: #ffffff;
}


.btn-red {
  color: #ffffff;
  background-color: #9E5403;
  border-color: #9E5403;
}
.btn-red:hover,
.btn-red:focus,
.btn-red:active,
.btn-red.active,
.open > .dropdown-toggle.btn-red {
  color: #ffffff;
  background-color: #BF6300;
  border-color: #BF6300;
}
.btn-red:active,
.btn-red.active,
.open > .dropdown-toggle.btn-red {
  background-image: none;
}
.btn-red.disabled,
.btn-red[disabled],
fieldset[disabled] .btn-red,
.btn-red.disabled:hover,
.btn-red[disabled]:hover,
fieldset[disabled] .btn-red:hover,
.btn-red.disabled:focus,
.btn-red[disabled]:focus,
fieldset[disabled] .btn-red:focus,
.btn-red.disabled:active,
.btn-red[disabled]:active,
fieldset[disabled] .btn-red:active,
.btn-red.disabled.active,
.btn-red[disabled].active,
fieldset[disabled] .btn-red.active {
  background-color: #9E5403;
  border-color: #9E5403;
}
.btn-red .badge {
  color: #9E5403;
  background-color: #ffffff;
}

.btn-blue {
  color: #ffffff;
  background-color: #003767;
  border-color: #003767;
}
.btn-blue:hover,
.btn-blue:focus,
.btn-blue:active,
.btn-blue.active,
.open > .dropdown-toggle.btn-blue {
  color: #ffffff;
  background-color: #00467F;
  border-color: #00467F;
}
.btn-blue:active,
.btn-blue.active,
.open > .dropdown-toggle.btn-blue {
  background-image: none;
}
.btn-blue.disabled,
.btn-blue[disabled],
fieldset[disabled] .btn-blue,
.btn-blue.disabled:hover,
.btn-blue[disabled]:hover,
fieldset[disabled] .btn-blue:hover,
.btn-blue.disabled:focus,
.btn-blue[disabled]:focus,
fieldset[disabled] .btn-blue:focus,
.btn-blue.disabled:active,
.btn-blue[disabled]:active,
fieldset[disabled] .btn-blue:active,
.btn-blue.disabled.active,
.btn-blue[disabled].active,
fieldset[disabled] .btn-blue.active {
  background-color: #003767;
  border-color: #003767;
}
.btn-blue .badge {
  color: #003767;
  background-color: #ffffff;
}

.btn {
  border-radius: 0 !important;
}

.list-group {
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  border-radius: 0 !important;
}

h4.cart {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.1;
  color: rgb(51, 51, 51);
  padding: 0 0 0 15px;

}
p.required {
  position: absolute;
  right: 15px;
  font-size: 12px;
}
.main-content {
	font-size: 14px;
}
.main-content h1 {
	font-size: 18px;
}
.main-content h2 {
	font-size: 14px;
	margin: 0 !important;
	font-weight: normal;
	white-space: nowrap;
}
.main-content h4 {
	font-size: 15px;
	margin-bottom: 16px;
	font-weight: normal;
}
.left, .right {
	/* filter: none !important; */
}
.img-thumbnail {
	width: 64px;
}

a.btn-green {
color: white;
}



