html {
	/*background-color: #000;*/
}

body {
	/*color: #fff;*/
}

.w-xxl {
  /*width: 460px;*/
	width: 420px;
}

@media screen and (max-width: 420px) {
	.w-xxl {
	  width: 100%;
	}
}

.navbar-brand {
	height: inherit;
}

.input-group-addon {
	min-width: 110px;
}

.item-table {
	min-width: 1200px;
}

.item-shop-box {
	min-width: 200px;
}

.item-amazon-box {
	min-width: 400px;
}

.item-amazon-box .title {
	white-space: normal !important;
}

/* CSS for Credit Card Payment form */
.credit-card-box {
	color: #000;
	margin-top: 5px;
}

.credit-card-box .panel-title {
    display: inline;
    font-weight: bold;
	font-size: 13px;
}

.credit-card-box .price {
	font-size: 15px;
	text-align: right;
}

.credit-card-box .form-control.error {
    border-color: red;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(255,0,0,0.6);
}

.credit-card-box label.error {
  font-weight: bold;
  color: red;
  padding: 2px 8px;
  margin-top: 2px;
}

.credit-card-box .payment-errors {
  color: red;
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 5px;
    padding: 10px 0;
    text-align: center;
}

.credit-card-box label {
    display: block;
}

/* The old "center div vertically" hack */
.credit-card-box .display-table {
    display: table;
	width: 100%;
	padding: 20px;
}

.credit-card-box .display-tr {
    display: table-row;
}

.credit-card-box .display-td {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
}

/* Just looks nicer */
.credit-card-box .panel-heading img {
    min-width: 180px;
}

.credit-card-box .panel-body {
	padding: 20px;
}

.credit-card-box .form-group {
	margin-bottom: 20px;
}

.cardlist {
	margin: 10px 0;
}

.cardlist ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.cardlist ul li {
	display: inline-block;
    margin-right: 18px;
    width: 40px;
	margin-bottom: 20px;
}

@media screen and (max-width: 460px) {
	.cardlist ul li {
		margin-right: 25px;
	}
}


.cardlist ul li:last-child {
	margin-right: 0;
}

.cardlist ul li img {
	display: inline-block;
    height: auto;
    max-width: 100%;
}

.payspan {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
	margin: 20px 0;
}

.payspan li {
	float: left;
	margin: 0 3% 0 0;
	padding: 0;
	width: 31%;
}

.payspan li:last-child {
	margin: 0;
}

.payspan li a {
	display: block;
	text-decoration: none;
	text-align: center;
	border-radius: 4px;
	border: 1px solid #eeeeee;
	padding: 10px 0 20px;
}

.payspan li a span {
	display:  block;
	text-align: center;
}

.payspan li a span.mon {
	font-size: 20px;
	margin: 10px 0;
}

.payspan li a span.sale {
	height: 25px;
	font-weight: bold;
}

.payspan li.select a {
	color: #fff;
  	background-color: #23b7e5;
	border: 1px solid #23b7e5;
}

.bs-docs-footer-links {
    margin-bottom: 15px;
    padding-left: 0;
	display: inline;
}

.bs-docs-footer-links li {
    display: inline-block;
	margin-right: 10px;
}

.bs-docs-footer-links li a {
	font-size: 11px;
}

.pad-xl {
	margin-bottom: 100px;
}


/*Home*/
.navbar-inverse {
	background-color: transparent;
	padding: 15px 0;
	-webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
        -ms-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
}

.navbar-shrink {
	background-color: #000;
}

.navbar-brand img {
	height: auto;
	max-height: inherit;
}

.app-aside, .navbar-header {
	width: auto;
}

.logo img {
    height: 44px;
    width: auto;
}

@media (max-width: 960px) {
	.logo img {
        height: 34px;
    }
}

.navbar-inverse .navbar-nav > li > a {
	color: #fff;
}

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #ccc;
}
.spinner {
    opacity: 0.9;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.spinner:after,
.spinner:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 30px;
    height: 30px;
    border: 5px solid transparent;
    border-bottom: 5px solid #fff;
    border-radius: 100%;
    -webkit-animation: rotate 1s linear infinite;
    animation: rotate 1s linear infinite;
}
.spinner:before {
    width: 40px;
    height: 40px;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}
@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes rotate {
    from {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.featurette-divider {
    margin: 80px 0;
	background: none;
	height: 0;
}

.featurette {
    overflow: hidden;
}

.featurette-image.pull-left {
    margin-right: 40px;
}

.featurette-image.pull-right {
    margin-left: 40px;
}

.featurette-heading {
    font-size: 50px;
	margin: 30px 0;
}

.featurette-image {
	max-width: 500px;
}

.featurette-heading .text-muted{
	display: block;
	font-size: 0.5em;
	margin: 10px 0 0;
}

footer {
    margin: 50px 0;
}

@media(max-width:1200px) {
    

    .featurette-divider {
        margin: 50px 0;
    }

    .featurette-image.pull-left {
        margin-right: 20px;
    }

    .featurette-image.pull-right {
        margin-left: 20px;
    }

    .featurette-heading {
        font-size: 35px;
    }
}

@media(max-width:991px) {
   

    .featurette-divider {
        margin: 40px 0;
    }

    .featurette-image {
        max-width: 50%;
    }

    .featurette-image.pull-left {
        margin-right: 10px;
    }

    .featurette-image.pull-right {
        margin-left: 10px;
    }

    .featurette-heading {
        font-size: 30px;
    }
}

@media(max-width:768px) {
    .container {
        /*margin: 0 15px;*/
    }

    .featurette-divider {
        margin: 40px 0;
    }

    .featurette-heading {
        font-size: 25px;
    }
}

@media(max-width:668px) {
    

    .featurette-divider {
        margin: 30px 0;
    }
}


@media(max-width:375px) {
    .featurette-divider {
        margin: 50px 0;
    }

    .featurette-image {
        max-width: 100%;
    }

    .featurette-image.pull-left {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .featurette-image.pull-right {
        margin-bottom: 10px;
        margin-left: 0;
    }
}

header.masthead {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(9rem + 30px);
  padding-bottom: 12rem;
  background: linear-gradient(0deg, #1d3947 0%, #050f14 100%);
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
}

header.masthead h1 {
	font-size: 2.5em;
}

header.masthead h2 {
	font-size: 1em;
}

@media (min-width: 992px) {
	header.masthead h1 {
		font-size: 6em;
	}
	header.masthead h2 {
		font-size: 1.5em;
	}
}

header.masthead h1 span {
	display: inline-block;
	background-color: #039be5;
	border-radius: 4px;
	margin-left: 5px;
	padding: 0 8px;
}

@media (min-width: 992px) {
	header.masthead h1 span {
		font-size: 0.8em;
		border-radius: 10px;
	}
}

header.masthead .masthead-content {
  z-index: 1;
  position: relative;
	margin-bottom: 40px;
}

@media (min-width: 992px) {
	header.masthead .masthead-content {
		margin-bottom: 90px;
	}
}

header.masthead .bg-circle {
  z-index: 0;
  position: absolute;
  border-radius: 100%;
  background: linear-gradient(0deg, #050f14 0%, #1d3947 100%);
}

header.masthead .bg-circle-1 {
  height: 90rem;
  width: 90rem;
  bottom: -55rem;
  left: -55rem;
}

header.masthead .bg-circle-2 {
  height: 50rem;
  width: 50rem;
  top: -25rem;
  right: -25rem;
}

header.masthead .bg-circle-3 {
  height: 20rem;
  width: 20rem;
  bottom: -10rem;
  right: 5%;
}

header.masthead .bg-circle-4 {
  height: 30rem;
  width: 30rem;
  top: -5rem;
  right: 35%;
}

header.masthead .img-wrapper {
	position: absolute;
	width: 100%;
	left: 0;
	right: 0;
	z-index: 1;
}

header.masthead .img-wrapper img {
	width: 80%;
	display: block;
	margin: 0 auto;
}

@media (min-width: 992px) {
  header.masthead {
    padding-top: calc(10rem + 55px);
    padding-bottom: 36rem;
  }
  header.masthead .masthead-content .masthead-heading {
    font-size: 6rem;
  }
  header.masthead .masthead-content .masthead-subheading {
    font-size: 4rem;
  }
}

#bs-example-navbar-collapse-1 {
	padding-top: 15px;
}

@media (min-width: 768px) {
	#bs-example-navbar-collapse-1 {
		padding-top: 0;
	}
}



/*Header*/
.probootstrap-header {
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
    z-index: 12;
    background: #273140;
    top: 0;
}

.probootstrap-logo img {
    height: 44px;
    width: auto;
}
