html, body {
	font-family: "Roboto", sans-serif !important;
  height:100%;
}

@font-face {
  font-family: 'Conv_Outgunned';
  src: url('fonts/Outgunned.eot');
  src: local('☺'), url('fonts/Outgunned.woff') format('woff'), url('fonts/Outgunned.ttf') format('truetype'), url('fonts/Outgunned.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

.navbar-nodrop
{
	margin-bottom:0px !important;
}

.action-button {
	margin: 3em 0;
}

.btn-ghost {

}

.btn-default {
  background: none !important;
}

.btn-ghost-primary{
	border: 1px rgba(0,125,220,.8) solid;
	background-color: transparent;
	font-size: 1.1em;
}

.btn-ghost-primary:hover{
	border: 1px rgba(0,125,220,1) solid;
	color: rgba(0,125,220,1);
}

/*--------------------
Shared Variables
--------------------*/
/*--------------------
General
--------------------*/

header {
  z-index: 2;
  transform: translate(0, 5.5em);
  transition: all .5s ease;
  font-weight: bold;
}
header.header-slide {
  transform: translate(0, 0);
}

h1 {
  font-weight: 100;
  font-size: 1.4em;
  display: block;
}

.form-container {
  display: flex;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
  border: 1em solid #fff;
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 476px) {
  .form-container {
    border: none;
  }
}

.cardinfo-wrapper {
  display: flex;
  justify-content: space-around;
}

.bg-illustration {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.bg-illustration svg {
  width: 100%;
}

.card-shape, #credit-card.visa, #credit-card.master-card, #credit-card.maestro, #credit-card.american-express, #credit-card.discover, #credit-card.unionpay, #credit-card.jcb, #credit-card.diners-club {
  border-radius: 12.5px;
  padding: 1em 3em 1em;
}
@media (max-width: 476px) {
  .card-shape, #credit-card.visa, #credit-card.master-card, #credit-card.maestro, #credit-card.american-express, #credit-card.discover, #credit-card.unionpay, #credit-card.jcb, #credit-card.diners-club {
    padding: 1em 1.5em 1em;
  }
}

#credit-card {
  background-color: #3c3c3c;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  /*padding: 8em 3em 2em;*/
  padding: 1em 3em 1em;
  width: 30em;
  margin-bottom: 2em;
  transition: all 600ms cubic-bezier(0.2, 1.3, 0.7, 1);
  animation: cardIntro 500ms cubic-bezier(0.2, 1.3, 0.7, 1);
  z-index: 1;
  border-radius: 12.5px;
  color:white;
}
#credit-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
}
@media (max-width: 476px) {
  #credit-card {
    box-sizing: border-box;
    padding: 1em 1.5em 1em;
    width: 100%;
  }
}
#credit-card.visa {
  color: #fff;
  background-color: #0D4AA2;
}
#credit-card.master-card {
  color: #fff;
  background-color: #363636;
  background: linear-gradient(115deg, #d82332, #d82332 50%, #f1ad3d 50%, #f1ad3d);
}
#credit-card.maestro {
  color: #fff;
  background-color: #363636;
  background: linear-gradient(115deg, #009ddd, #009ddd 50%, #ed1c2e 50%, #ed1c2e);
}
#credit-card.american-express {
  color: #fff;
  background-color: #007CC3;
}
#credit-card.discover {
  color: #fff;
  background-color: #ff6000;
  background: linear-gradient(#d14310, #f7961e);
}
#credit-card.unionpay, #credit-card.jcb, #credit-card.diners-club {
  color: #fff;
  background-color: #363636;
}

.cardinfo-label {
  display: block;
  font-size: 11px;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

.cardinfo-exp-date {
  margin-right: 1em;
  width: 100%;
}

.cardinfo-cvv {
  width: 100%;
}

#button-pay {
  cursor: pointer;
  width: 16em;
  font-size: 15px;
  border: 0;
  padding: 1.2em 1em;
  color: #fff;
  /*background: #282c37;*/
  border-radius: 4px;
  z-index: 0;
  transform: translateY(-100px);
  transition: all 500ms cubic-bezier(0.2, 1.3, 0.7, 1);
  opacity: 0;
  -webkit-appearance: none;
}
#button-pay:hover {
/*  background: #535b72;*/
}
#button-pay:active {
  animation: cardIntro 200ms cubic-bezier(0.2, 1.3, 0.7, 1);
}
#button-pay.show-button {
  transform: translateY(0);
  opacity: 1;
}

.cardinfo-card-number {
  position: relative;
}

#card-image {
  position: absolute;
  top: 2em;
  right: 1em;
  width: 44px;
  height: 28px;
  background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/346994/card_sprite.png);
  background-size: 86px 458px;
  border-radius: 12.5px;
  background-position: -100px 0;
  background-repeat: no-repeat;
  margin-bottom: 1em;
}
#card-image.visa {
  background-position: 0 -398px;
}
#card-image.master-card {
  background-position: 0 -281px;
}
#card-image.american-express {
  background-position: 0 -370px;
}
#card-image.discover {
  background-position: 0 -163px;
}
#card-image.maestro {
  background-position: 0 -251px;
}
#card-image.jcb {
  background-position: 0 -221px;
}
#card-image.diners-club {
  background-position: 0 -133px;
}

/*--------------------
Inputs
--------------------*/
.input-wrapper {
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.86);
  height: 2.75em;
  border: 1px solid #eee;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
  padding: 5px 10px;
  margin-bottom: 1em;
}

.cardinfo-card-number,
.cardinfo-exp-date,
.cardinfo-cvv {
  transition: transform 0.3s;
}

.braintree-hosted-fields-focused {
  border-color: #5db6e8;
}

.braintree-hosted-fields-invalid {
  border-color: #E53A40;
  animation: shake 500ms cubic-bezier(0.2, 1.3, 0.7, 1) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/*--------------------
Animations
--------------------*/
@keyframes cardIntro {
  0% {
    transform: scale(0.8) translate(0, 0);
    opacity: 0;
  }
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 1;
  }
}
@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(1px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-3px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(3px, 0, 0);
  }
}
.input-wrapper {
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.86);
  height: 2.75em;
  border: 1px solid #eee;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
  padding: 5px 10px;
  margin-bottom: 1em;
}

.spacer {
  margin-bottom: 5px;
}

tr.inactive {
  background-color: rgba(247,209,209,1);
}

.body-wrap {
  min-height: 100%;
  position: relative;
  padding-bottom:350px;
}

footer {
  display: block;
  width: 100%;
  position: absolute;
  bottom:0px;
  left:0px;
  height:300px;
  padding-top:0px;
  color: #fff;
}

.footer-top {
  width: 100%;
  height:250px;
  background: #1E1E23;
  padding-top:25px;
}

.footer-bottom {
  width: 100%;
  height:50px;
  background: #151519;
  padding:15px;
}

.footer-bottom .fa a, .footer-bottom .fa {
  margin: 0 15px;
  color: #fff;
}

.footer-bottom .fa:hover, .footer-bottom .fa a:hover {
  color: rgba(0,125,220,1);
}



.blueline {
    display: block;
    margin: 0 auto;
    width: 97%;
    height: 2px;
    border-radius: 25px;
    background: #0a6dbc;
    margin-top:5px;
}

.panel-heading
{
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.credit-card-box  {
margin:0; padding:0; background: transparent; height: 100%; width: 100%; box-sizing: border-box; border: none; color: rgb(40, 44, 55); font-size: 16px; line-height: 3; transition: color 0.1s; box-shadow: none;
}

.credit-card-box:focus {
  margin:0; padding:0; background: transparent; height: 100%; width: 100%; box-sizing: border-box; border: none; color: rgb(40, 44, 55); font-size: 16px; line-height: 3; transition: color 0.1s; box-shadow: none;
}

.jvectormap-legend-title {
  font-size: 12px;
}

.jvectormap-legend .jvectormap-legend-tick-sample {
  height: 26px;
}

.jvectormap-legend-icons {
  background: white;
  border: black 1px solid;
}

.jvectormap-legend-icons {
  color: black;
}

.mapLegend {
  background: transparent !important;
  color: #000 !important;
  text-align: left;
}

.orderTotal {
  margin: 1em;
  color: #820603;
  font-size: 1.3em;
}

.glyphicon-refresh-animate {
    -animation: spin 2s infinite linear;
    -webkit-animation: spin2 2s infinite linear;
}

@-webkit-keyframes spin2 {
    from { -webkit-transform: rotate(0deg);}
    to { -webkit-transform: rotate(360deg);}
}

#credit-card input {
  line-height: 2;
  vertical-align: top;
}

::-webkit-input-placeholder {
    color: rgba(0,0,0,0.6);
}

:-moz-placeholder {
  color: rgba(0,0,0,0.6);
}

::-moz-placeholder {
  color: rgba(0,0,0,0.6);
}

:-ms-input-placeholder {
  color: rgba(0,0,0,0.6);
}

.jvectormap-zoomin, .jvectormap-zoomout {
  display: none;
}

.jvectormap-legend-cnt-v .jvectormap-legend {
  margin: 0px 25px 0 0 !important;
  padding: 0px !important;
}

.bumperBox {
  padding: 2em 0px;
}

ul.noDecoration li {
  text-decoration: none;
  list-style: none;

}

.icon {
  /*margin-top:1.75em;*/
}

.knockDown {
  margin-bottom: 1.75em;
}

.modal-launcher:hover {
  cursor: pointer;
}

.scheduleTable tr td {
  vertical-align: middle !important;
}

.scheduleTable th {
  background: #eee;
}

.clickable {
  color: #337ab7;
  cursor: pointer;
}

.clickable:hover {
  color: #23527c;
  text-decoration: underline;
}

#quick-warning {
  text-align: center;
  font-weight: bold;
  margin-bottom: 5px;
  color:red;
}

.strikeThrough {
  text-decoration: line-through;
}

.upsbrown {
   color: #6a4318;
}

.upsbrown:hover {
   color: #6a4318;
}

.infoBox a {
  color: white;
  text-decoration: none;
}

.infoBox a:hover {
  color: white;
  text-decoration: underline;
}

.message.unread .subject {
	color: #0078D7;
	font-weight:bold;
}

.message.unreplied {
  border-left: 2px solid #f0ad4e;
}

.message.unread {
  border-left: 2px solid #0078D7;
}

.test {
  
}

.message .sender {
	font-size:1.2em;
}

.message {
  padding: .25em;
  margin: .25em 0;
  border-left: 2px solid #fff;
}

.message:hover {
  background: #c6c9cc;
  cursor: pointer;
}

.message.active {
  background: #DCECF9;
}

.messageHeader .messagelabel {
  width: 75px;
  display: inline-block;
  font-weight: bold;
}

.actions .btn {
  font-size: .85em;
}

.bugger {
	position:fixed;
	right:20px;
	bottom:20px;
	z-index:1000;
	padding:10px;
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

ul.check-list {
  list-style: none;
  padding: 0;
}

ul.check-list li {
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 0.2em;
}

ul.check-list li::before {
    content: "\f046";
    position:absolute;
    font-family: FontAwesome;
    left:0;
    top:0px;
    width:20px;
    height:20px; 
    text-align:center; 
    line-height:20px; 
}

@media (min-width: 992px) {
  .d-md-flex {
    display:flex;
  }
}