#heading-breadcrumbs {
  background: linear-gradient( 360deg, rgb(255, 255, 255) 4%, rgb(255, 255, 255) 5%, rgba(255, 255, 255, 0) 60%), url('../img/misty-mountains.png') center center no-repeat;
  background-size: cover;
  padding: 0;
  margin-bottom: 0;
  height: 180px;
}

#heading-breadcrumbs::after {
  background-image: -moz-linear-gradient( 90deg, rgb(255, 255, 255) 4%, rgb(255, 255, 255) 5%, rgba(255, 255, 255, 0) 100%);
  background-image: -webkit-linear-gradient( 90deg, rgb(255, 255, 255) 4%, rgb(255, 255, 255) 5%, rgba(255, 255, 255, 0) 100%);
  background-image: -ms-linear-gradient( 90deg, rgb(255, 255, 255) 4%, rgb(255, 255, 255) 5%, rgba(255, 255, 255, 0) 100%);
  background-image: linear-gradient( 90deg, rgb(255, 255, 255) 4%, rgb(255, 255, 255) 5%, rgba(255, 255, 255, 0) 100%);
}

.navbar-default {
  background-color: rgb(37, 76, 19);
  border-color: #cccccc;
  border-bottom: none;
}

.navbar-default .navbar-brand {
  color: #555555;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #3b3b3b;
  background-color: transparent;
}

.navbar-default .navbar-text {
  color: #ffffff;
}

.navbar-default .navbar-nav>li>a {
  color: #ffffff;
}

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

.navbar ul.nav>li>a {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.08em;
  border-top: solid 5px transparent;
}

.products {
  padding: 0;
  margin-bottom: 40px;
}

.products .item {
  list-style-type: none;
  text-align: center;
  margin: 0 20px;
}

.products .item img {
  display: inline-block;
  filter: none;
}

.products .item img:hover {
  max-width: auto;
  filter: none;
  -webkit-filter: none;
}

.form-control[disabled] {
  cursor: default;
}
/*
.wrapper {
  width: 300px;
  height: 500px;
  background: #E3E3D8;
  margin: auto;
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0;
  transform: scale(0.95);
  transition: box-shadow 0.5s, transform 0.5s;
}

.wrapper:hover {
  transform: scale(1);
  box-shadow: 5px 20px 30px rgba(0, 0, 0, 0.2);
}

.wrapper .card-container {
  width: 100%;
  height: 100%;
}

.wrapper .card-container .top {
  height: 80%;
  width: 100%;
  background: url(http://www.fillmurray.com/g/200/300) no-repeat center center;
  -webkit-background-size: 100%;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%;
}

.wrapper .card-container .bottom {
  width: 200%;
  height: 20%;
  transition: transform 0.5s;
}

.wrapper .card-container .bottom.clicked {
  transform: translateX(-50%);
}

.wrapper .card-container .bottom h1 {
  margin: 0;
  padding: 0;
}

.wrapper .card-container .bottom p {
  margin: 0;
  padding: 0;
}

.wrapper .card-container .bottom .left {
  height: 100%;
  width: 50%;
  background: #f4f4f4;
  position: relative;
  float: left;
}

.wrapper .card-container .bottom .left .details {
  padding: 20px;
  float: left;
  width: calc(70% - 40px);
}

.wrapper .card-container .bottom .left .buy {
  float: right;
  width: calc(30% - 2px);
  height: 100%;
  background: #f1f1f1;
  transition: background 0.5s;
  border-left: solid thin rgba(0, 0, 0, 0.1);
}

.wrapper .card-container .bottom .left .buy i {
  font-size: 30px;
  padding: 30px;
  color: #254053;
  transition: transform 0.5s;
}

.wrapper .card-container .bottom .left .buy:hover {
  background: #A6CDDE;
}

.wrapper .card-container .bottom .left .buy:hover i {
  transform: translateY(5px);
  color: #00394B;
}

.wrapper .card-container .bottom .right {
  width: 50%;
  background: #A6CDDE;
  color: white;
  float: right;
  height: 200%;
  overflow: hidden;
}

.wrapper .card-container .bottom .right .details {
  padding: 20px;
  float: right;
  width: calc(70% - 40px);
}

.wrapper .card-container .bottom .right .done {
  width: calc(30% - 2px);
  float: left;
  transition: transform 0.5s;
  border-right: solid thin rgba(255, 255, 255, 0.3);
  height: 50%;
}

.wrapper .card-container .bottom .right .done i {
  font-size: 30px;
  padding: 30px;
  color: white;
}

.wrapper .card-container .bottom .right .remove {
  width: calc(30% - 1px);
  clear: both;
  border-right: solid thin rgba(255, 255, 255, 0.3);
  height: 50%;
  background: #BC3B59;
  transition: transform 0.5s, background 0.5s;
}

.wrapper .card-container .bottom .right .remove:hover {
  background: #9B2847;
}

.wrapper .card-container .bottom .right .remove:hover i {
  transform: translateY(5px);
}

.wrapper .card-container .bottom .right .remove i {
  transition: transform 0.5s;
  font-size: 30px;
  padding: 30px;
  color: white;
}

.wrapper .card-container .bottom .right:hover .remove,
.wrapper .card-container .bottom .right:hover .done {
  transform: translateY(-100%);
}

.wrapper .inside {
  z-index: 9;
  background: #92879B;
  width: 140px;
  height: 140px;
  position: absolute;
  top: -70px;
  right: -70px;
  border-radius: 0px 0px 200px 200px;
  transition: all 0.5s, border-radius 2s, top 1s;
  overflow: hidden;
}

.wrapper .inside .icon {
  position: absolute;
  right: 85px;
  top: 85px;
  color: white;
  opacity: 1;
}

.wrapper .inside:hover {
  width: 100%;
  right: 0;
  top: 0;
  border-radius: 0;
  height: 80%;
}

.wrapper .inside:hover .icon {
  opacity: 0;
  right: 15px;
  top: 15px;
}

.wrapper .inside:hover .contents {
  opacity: 1;
  transform: scale(1);
  transform: translateY(0);
}

.wrapper .inside .contents {
  padding: 5%;
  opacity: 0;
  transform: scale(0.5);
  transform: translateY(-200%);
  transition: opacity 0.2s, transform 0.8s;
}

.wrapper .inside .contents table {
  text-align: left;
  width: 100%;
}

.wrapper .inside .contents h1,
.wrapper .inside .contents p,
.wrapper .inside .contents table {
  color: white;
}

.wrapper .inside .contents p {
  font-size: 13px;
} */