.btn-opp-primary {
  color: white;
  background-color: green;
  border-color: green; }
  .btn-opp-primary:hover {
    color: white;
    background-color: darkgreen; }
  .btn-opp-primary:focus, .btn-opp-primary:active.focus, .btn-opp-primary:active:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0px;
    outline: none;
    background-color: gray; }

.btn-opp-secondary {
  color: white;
  background-color: #DCA408;
  border-color: #DCA408;
  opacity: .8; }
  .btn-opp-secondary:hover {
    color: white;
    opacity: 1; }
  .btn-opp-secondary:focus, .btn-opp-secondary:active.focus, .btn-opp-secondary:active:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0px;
    outline: none;
    background-color: gray; }

.btn-opp-light {
  color: #635D5D;
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0)) repeat scroll 0 0;
  background: -moz-linear-gradient(center top, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0)) repeat scroll 0 0;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0)) repeat scroll 0 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to rgba(255, 255, 255, 0)) repeat scroll 0 0;
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0)) repeat scroll 0 0;
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0)) repeat scroll 0 0;
  background-color: #E0E0E0; }
  .btn-opp-light:hover {
    color: black; }
  .btn-opp-light:focus, .btn-opp-light:active.focus, .btn-opp-light:active:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0px;
    outline: none;
    background-color: gray; }

.btn.btn-lg {
  font-size: large;
  font-weight: bold; }

.btn-trans {
  background-color: transparent;
  border-color: transparent; }
  .btn-trans:focus, .btn-trans:active.focus, .btn-trans:active:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0px;
    outline: none;
    background-color: gray; }

.text-x-large {
  font-size: x-large; }

.text-xx-large {
  font-size: xx-large; }

.margin-bottom-10 {
  margin-bottom: 10px; }

.margin-bottom-20 {
  margin-bottom: 20px; }

.badge {
  background-color: #DCA408; }

.navbar {
  border-radius: 0px;
  margin-bottom: 0px; }

.btn-rect {
  border-radius: 0px;
  border: 0px; }

.modal .modal-content {
  border-radius: 0px; }

::-webkit-scrollbar {
  display: none; }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */ }

.navbar-header {
  height: 80px;
  line-height: 80px; }

.navbar-nav > li > a {
  line-height: 50px;
  font-size: large;
  transition: all .5s ease-in-out;
  border-bottom: 2px solid transparent;
  padding-bottom: 0px;
  margin-top: 15px; }
  .navbar-nav > li > a:hover {
    cursor: pointer;
    border-bottom: 2px solid red; }

.navbar-nav > .active > a {
  border-bottom: 2px solid red; }

.modal-backdrop.am-fade {
  opacity: .5;
  transition: all .35s ease-in-out; }

.modal-backdrop.am-fade.ng-enter, .modal-backdrop.am-fade.ng-leave-active {
  opacity: 0; }

.modal-backdrop.am-fade.ng-enter-active, .modal-backdrop.am-fade.ng-leave {
  opacity: 0.5; }

.modal.am-fade {
  transform: scale(1, 1);
  transition: all .35s ease-in-out; }

.modal.am-fade.ng-enter, .modal.am-fade.ng-leave-active {
  transform: scale(0, 0); }

.modal.am-fade.ng-enter-active, .modal.am-fade.ng-leave {
  transform: scale(1, 1); }

.login-modal {
  border-radius: 0px; }
  .login-modal .modal-header {
    padding: 5px;
    border: 0px;
    border-top: 5px solid #DCA408; }
    .login-modal .modal-header .modal-title {
      text-transform: capitalize; }
  .login-modal .link {
    font-weight: bolder;
    color: black;
    font-size: small; }
    .login-modal .link:hover {
      cursor: pointer;
      text-decoration: none; }
  .login-modal .modal-footer {
    padding: 0px; }

.order-confirm-modal {
  border-radius: 0px; }
  .order-confirm-modal .modal-header {
    padding: 5px;
    border: 0px;
    border-top: 5px solid #DCA408;
    font-size: x-large;
    border-bottom: 1px solid darkgray; }
  .order-confirm-modal .modal-footer {
    border: 0px;
    border-radius: 0px; }

.btn-facebook {
  background-color: #3b5998;
  color: white;
  border-color: #3b5998; }

.product-details-modal {
  color: black;
  border-radius: 0px; }
  .product-details-modal .modal-header {
    padding: 5px;
    border: 0px;
    border-top: 5px solid #DCA408; }
    .product-details-modal .modal-header .modal-title {
      text-transform: capitalize;
      color: black; }
  .product-details-modal .link {
    font-weight: bolder;
    color: black;
    font-size: small; }
    .product-details-modal .link:hover {
      cursor: pointer;
      text-decoration: none; }
  .product-details-modal .product-image img {
    width: 180px;
    height: 200px;
    overflow: hidden; }
  .product-details-modal .reg-price {
    color: black; }
  .product-details-modal .sale-price {
    color: red;
    font-size: larger;
    margin-bottom: 15px; }
  .product-details-modal .modal-footer {
    padding: 0px; }
  .product-details-modal .product-detail-box {
    border-left: 1px double gray; }

.tab-pane.am-fade {
  animation-duration: .3s;
  animation-timing-function: ease;
  animation-fill-mode: backwards;
  opacity: 1; }

.tab-pane.am-fade.active-remove {
  display: none !important; }

.tab-pane.am-fade.active-add {
  animation-name: fadeIn; }

body {
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 300;
  color: black;
  padding-top: 80px; }

.padding-top-0 {
  padding-top: 0px; }

.navbar-opp {
  background-color: black;
  border-color: black;
  height: 80px; }

.cart {
  color: #DCA408;
  margin-left: 10px; }
  .cart:hover {
    cursor: pointer;
    color: #DCA408; }
  .cart .link {
    color: #DCA408; }

.margin-top-10 {
  margin-top: 10px; }

.margin-top-20 {
  margin-top: 20px; }

.user-menu .link {
  color: #DCA408; }

.process-container {
  margin: 15px;
  margin-top: 20px;
  border: 1px solid #D8CDCD;
  padding: 5px;
  text-align: center;
  -ms-box-shadow: 2px 2px 2px #CCC8C8;
  -moz-box-shadow: 2px 2px 2px #CCC8C8;
  -webkit-box-shadow: 2px 2px 2px #CCC8C8;
  box-shadow: 2px 2px 2px #CCC8C8; }
  .process-container .heading-box {
    text-align: center;
    margin-top: -20px;
    margin-bottom: 20px; }
    .process-container .heading-box .heading {
      background-color: #E9E9E9;
      font-size: x-large;
      font-weight: bold;
      padding-left: 5px;
      padding-right: 5px;
      color: #555; }
  .process-container .process {
    margin-bottom: 20px;
    transition: all 0.5s ease-in-out; }
    .process-container .process .widget-step h3 {
      font-weight: bold; }
    .process-container .process .widget-text p {
      font-size: large; }
    .process-container .process .widget-image {
      border-radius: 50%;
      width: 100%; }
      .process-container .process .widget-image:hover {
        cursor: pointer; }
      .process-container .process .widget-image img {
        width: 50%; }
  .process-container .process.dashed {
    border: 2px dashed black;
    background-color: #f2dede; }
  .process-container .size-card {
    background-color: #f5f5f5;
    border: 10px ridge #444040;
    color: black;
    /* padding: 20px; */
    height: 160px;
    width: 150px;
    margin: 10px;
    -ms-box-shadow: 5px 10px 2px #CCC8C8;
    -moz-box-shadow: 5px 10px 2px #CCC8C8;
    -webkit-box-shadow: 5px 10px 2px #CCC8C8;
    box-shadow: 5px 10px 2px #CCC8C8; }
    .process-container .size-card h1 {
      font-weight: bold;
      margin-top: -20px; }
    .process-container .size-card h2 {
      margin-top: 0px; }
    .process-container .size-card .tag {
      left: -80px;
      top: -20px;
      position: relative;
      width: 20px;
      color: green; }
    .process-container .size-card .price {
      font-size: 30px;
      font-weight: bold;
      padding: 0px;
      text-align: left; }
    .process-container .size-card .poster {
      height: 60px;
      width: 100%; }
      .process-container .size-card .poster img {
        height: 100%; }
  .process-container .dis-box .card {
    background-color: #DCA408;
    color: white;
    padding: 20px;
    height: 175px;
    width: 150px;
    margin: 10px;
    border: 1px dashed;
    -ms-box-shadow: 5px 10px 2px #CCC8C8;
    -moz-box-shadow: 5px 10px 2px #CCC8C8;
    -webkit-box-shadow: 5px 10px 2px #CCC8C8;
    box-shadow: 5px 10px 2px #CCC8C8; }
    .process-container .dis-box .card h1 {
      font-weight: bold; }
  .process-container .dis-box .card.one {
    background-color: #822C62; }
  .process-container .dis-box .card.two {
    background-color: #37A5A5; }
  .process-container .dis-box .card.three {
    background-color: #BDBD09; }
  .process-container .dis-box .card.four {
    background-color: #676518; }
  .process-container .dis-box .card.five {
    background-color: #D00404; }

.discount-heading {
  font-size: xx-large;
  font-weight: bold;
  color: #555;
  margin-top: 20px;
  margin-bottom: 20px;
  text-transform: uppercase; }

.icon-opp {
  background: url("../images/poor.png") no-repeat;
  background-size: cover;
  height: 30px;
  width: 30px; }

.icon-opp.excellent {
  background: url("../images/excellent.png") no-repeat;
  background-size: cover; }

.icon-opp.poor {
  background: url("../images/poor.png") no-repeat;
  background-size: cover; }

.icon-opp.good {
  background: url("../images/good.png") no-repeat;
  background-size: cover; }

.icon-opp.coin {
  background: url("../images/coins.png") no-repeat;
  background-size: cover; }

.page-pricing table {
  margin-top: 20px;
  border: 1px solid; }
  .page-pricing table thead {
    border-bottom: 5px solid black;
    background: #F5D427;
    color: black; }

.circle-container {
  text-align: center;
  padding: 10px; }
  .circle-container .circle {
    background-color: #000000;
    border-radius: 50%;
    border: 10px dashed #DCA408;
    color: white;
    height: 150px;
    width: 150px;
    line-height: 200px; }
    .circle-container .circle .fa {
      font-size: 80px;
      line-height: 150px; }
  .circle-container .title {
    font-size: xx-large;
    /* font-weight: bold; */
    color: black;
    text-transform: uppercase; }

@keyframes rotate360 {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
@-webkit-keyframes rotate360 {
  from {
    -webkit-transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg); } }
.spinner {
  display: inline-block;
  border-radius: 50%;
  border-style: solid;
  border-bottom-color: #3b5641;
  border-top-color: #67b3a9;
  border-left-color: #df7950;
  border-right-color: #decb3f;
  text-align: center;
  vertical-align: middle;
  position: relative;
  animation: rotate360 1s linear infinite;
  -webkit-animation: rotate360 1s linear infinite;
  border-width: 10px;
  width: 100px;
  height: 100px;
  line-height: 100%;
  margin-top: 20px; }

/*.ng-hide-add {
  opacity: 1;
  transition: .35s linear all;
}
.ng-hide-add.ng-hide-add-active {
  opacity: 0;
}
.ng-hide-remove {
  opacity: 0;
  transition: .35s linear all;
}
.ng-hide-remove.ng-hide-remove-active {
  opacity: 1;
}*/
.page-view {
  padding-left: 5px;
  padding-right: 5px; }

.ng-show {
  -webkit-animation: fadeIn .35s linear;
  -o-animation: fadeIn .35s linear;
  animation: fadeIn .35s linear; }

.ng-hide {
  -webkit-animation: fadeOut .35s linear;
  -o-animation: fadeOut .35s linear;
  animation: fadeOut .35s linear; }

.page-view.ng-enter {
  animation: fadeInRight .35s linear; }

.page-view.ng-leave {
  animation: fadeOutLeft .35s linear; }

.fade-in {
  opacity: 0;
  /* make things invisible upon start */
  -webkit-animation: fadeIn ease-in 1;
  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-fill-mode: forwards;
  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 4s;
  -moz-animation-duration: 4s;
  animation-duration: 4s; }

.bounce-in-up {
  opacity: 1;
  /* make things invisible upon start */
  -webkit-animation: bounceInUp ease-in 1;
  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation: bounceInUp ease-in 1;
  animation: bounceInUp ease-in 1;
  -webkit-animation-fill-mode: forwards;
  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s; }

.search-container input[type="text"] {
  background-color: #EEE;
  border-color: #EEE;
  color: black;
  font-size: large; }
  .search-container input[type="text"]:focus, .search-container input[type="text"]:active.focus, .search-container input[type="text"]:active:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0px;
    outline: none; }
.search-container button {
  background-color: green;
  color: white;
  border-color: green; }

.band-logo {
  width: 100px;
  height: 100px; }
  @media (max-width: 767px) {
    .band-logo {
      width: 40px;
      height: 40px; } }
  .band-logo img {
    width: 100%; }

.left-ads {
  padding: 0px;
  margin-top: 5px;
  margin-left: 5px;
  border: 1px solid #E4DEDE;
  background-color: white;
  height: 300px; }
  .left-ads .title {
    background-color: #BF3835;
    text-decoration: blink;
    text-align: center;
    color: white;
    margin-top: 0px; }
  .left-ads p {
    color: black;
    font-size: large;
    padding: 10px; }

.headroom {
  transition: transform 200ms linear; }

.headroom--pinned {
  transform: translateY(0%); }

.headroom--unpinned {
  transform: translateY(-100%); }

.footer {
  background-color: #0d3349;
  color: #999999;
  min-height: 300px;
  min-height: 300px;
  padding-top: 50px;
  padding-left: 30px;
  padding-right: 30px; }

.aboutus {
  background-color: #DC9617;
  min-height: 200px; }
  .aboutus p {
    font-size: x-large;
    color: white;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px; }
    @media (max-width: 767px) {
      .aboutus p {
        font-size: large; } }
    @media (max-width: 400px) {
      .aboutus p {
        font-size: medium; } }

.technology {
  min-height: 300px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px; }
  .technology .stack {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 25px;
    height: 250px; }
    .technology .stack img {
      max-height: 200px; }
    .technology .stack p {
      font-size: medium; }

.navbar-brand .text_1 {
  font-size: x-large;
  color: black; }
  .navbar-brand .text_1 .color_1 {
    font-weight: bold;
    color: red; }
  .navbar-brand .text_1 .color_2 {
    font-weight: bold;
    color: #DC9617; }
.navbar-brand .text_2 {
  font-size: larger; }

.projects {
  min-height: 300px;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 15px;
  padding-bottom: 20px;
  background-color: rgba(0, 0, 0, 0.9); }

#ul-tasks li {
  margin: 0 0 20px 0; }

.price-card {
  background-color: #f5f5f5; }
  .price-card .header {
    background-color: green;
    text-align: center;
    color: white;
    height: 50px;
    line-height: 50px;
    font-size: x-large;
    text-transform: uppercase; }
  .price-card .body {
    text-align: center; }

.project-card {
  background-color: #f5f5f5;
  margin-bottom: 25px;
  min-height: 350px;
  border-radius: 30px;
  box-shadow: 5px 5px 5px #999;
  margin-left: 15px;
  margin-right: 15px; }
  .project-card .carousel img {
    padding: 10px;
    padding-top: 20px;
    max-height: 350px;
    width: auto; }
  .project-card .card-panel h1 {
    color: #444; }
  .project-card .card-panel .tech-stack {
    font-size: large;
    font-weight: bold;
    color: green; }
    .project-card .card-panel .tech-stack i {
      color: green; }
  .project-card .card-panel .tech-feature {
    font-size: large;
    font-weight: bold; }
    .project-card .card-panel .tech-feature i {
      color: #ffc830; }
  .project-card .card-panel p {
    font-size: medium; }

.contact {
  background: url("../images/contactbg.jpg") no-repeat;
  background-size: cover; }
  .contact input, .contact textarea {
    background-color: transparent; }
  .contact label {
    color: #ccc; }

.slider {
  height: 300px;
  overflow: hidden;
  position: relative;
  background: #e6e6e6;
  background-size: cover; }
  .slider img {
    width: 250px;
    height: 80%;
    margin-left: 100px;
    margin-top: 20px; }
  .slider .nav {
    text-align: center;
    display: block;
    position: absolute;
    z-index: 1002;
    left: 0;
    bottom: -4px;
    right: 0;
    height: 48px; }
    .slider .nav .wrapper {
      margin: 0 auto;
      width: 100%;
      padding: 1em 0 .8em; }
    .slider .nav ul {
      margin: 0;
      width: 100%; }
    .slider .nav .dot, .slider .nav .dot a {
      display: inline-block;
      zoom: 1; }

.slide {
  position: absolute;
  top: 0;
  left: 0; }

.arrow {
  position: absolute;
  z-index: 1002;
  display: block;
  top: 50%;
  margin-top: -35px;
  width: 36px;
  height: 71px;
  outline: none;
  cursor: pointer;
  background: url(../images/blank.gif) no-repeat; }

.arrow.prev {
  opacity: 0.2;
  left: 20px;
  background-image: url(../images/paddle_prev_999.png);
  transition: 0.2s linear all; }

.arrow.next {
  opacity: 0.2;
  right: 20px;
  background-image: url(../images/paddle_next_999.png);
  transition: 0.2s linear all; }

.arrow.prev:hover {
  opacity: 1;
  background-image: url(../images/paddle_prev_fff.png); }

.arrow.next:hover {
  opacity: 1;
  background-image: url(../images/paddle_next_fff.png); }

/*---------------------------------------------------------
NAV
---------------------------------------------------------*/
.nonDraggableImage {
  -webkit-user-drag: none; }

.dots .dot {
  position: relative;
  margin: 0 8px;
  width: 12px;
  height: 12px; }

.dots .dot a {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: #FFF;
  border: 2px solid transparent;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: background-color 0.25s, border-color 0.25s;
  -moz-transition: background-color 0.25s, border-color 0.25s;
  transition: background-color 0.25s, border-color 0.25s; }

.dots .dot a.active {
  border-color: #FFF;
  background-color: transparent; }

.carousel-box {
  background-size: cover; }
  .carousel-box .text-box h3 {
    color: black;
    font-size: xx-large;
    text-transform: capitalize; }
    @media (max-width: 767px) {
      .carousel-box .text-box h3 {
        font-size: large; } }
    @media (max-width: 400px) {
      .carousel-box .text-box h3 {
        font-size: medium; } }
  .carousel-box .text-box h5 {
    font-size: x-large;
    text-transform: capitalize; }
    @media (max-width: 767px) {
      .carousel-box .text-box h5 {
        font-size: medium; } }
  .carousel-box .carousel-indicators li {
    border-color: #DCA408; }
  .carousel-box .carousel-indicators .active {
    background-color: #DCA408; }

.carousel-inner img {
  margin: auto;
  width: 100%; }

.carousel-control {
  width: 8%; }

.carousel-control.left, .carousel-control.right {
  background-image: none; }

.carousel-box.bags {
  background-color: transparent;
  height: auto; }
  .carousel-box.bags .carousel-inner {
    padding-right: 50px;
    padding-left: 50px;
    padding-top: 50px; }
    .carousel-box.bags .carousel-inner img {
      margin: auto;
      height: auto;
      width: 50%;
      max-width: 500px; }
    .carousel-box.bags .carousel-inner .carousel-caption {
      color: rgba(0, 0, 0, 0.5);
      right: auto;
      top: 0;
      left: 20px;
      text-shadow: none;
      width: 40%; }
      .carousel-box.bags .carousel-inner .carousel-caption p {
        font-size: 40px;
        padding-right: 15px;
        color: green;
        font-weight: bold;
        text-transform: uppercase; }
        @media (max-width: 767px) {
          .carousel-box.bags .carousel-inner .carousel-caption p {
            font-size: large; } }
        @media (max-width: 400px) {
          .carousel-box.bags .carousel-inner .carousel-caption p {
            font-size: medium; } }
  .carousel-box.bags .carousel-indicators li, .carousel-box.bags .carousel-indicators .active {
    border-color: transparent;
    background-color: transparent; }

.features p {
  font-size: 16px; }
.features .p-feature {
  font-size: 20px;
  color: green;
  font-weight: bold; }
.features .img-holder {
  text-align: center; }
  .features .img-holder img {
    width: 30%; }
.features .img-holder2 {
  text-align: center; }
  .features .img-holder2 img {
    width: 80%; }

.gallery-container {
  margin-top: 10px;
  background-color: white;
  padding: 10px;
  min-height: 300px;
  -ms-box-shadow: 2px 2px 2px #CCC8C8;
  -moz-box-shadow: 2px 2px 2px #CCC8C8;
  -webkit-box-shadow: 2px 2px 2px #CCC8C8;
  box-shadow: 2px 2px 2px #CCC8C8; }

.checkout-container {
  margin-top: 10px;
  margin-left: 5px;
  background-color: white;
  padding: 10px;
  min-height: 300px;
  -ms-box-shadow: 2px 2px 2px #CCC8C8;
  -moz-box-shadow: 2px 2px 2px #CCC8C8;
  -webkit-box-shadow: 2px 2px 2px #CCC8C8;
  box-shadow: 2px 2px 2px #CCC8C8; }

.checout-box {
  background-color: #E9E9E9;
  border-radius: 7px;
  border: 1px solid #E8DDDD;
  padding: 2px;
  padding-bottom: 10px;
  padding-top: 10px;
  margin-top: 20px; }
  .checout-box .price {
    font-size: x-large;
    font-weight: bold;
    color: green;
    text-align: center; }

.gallery-box {
  padding: 5px;
  margin-top: 15px; }

.img-panel {
  height: 270px;
  width: 180px;
  margin: 10px;
  border-top-right-radius: 15px;
  background-color: #CECECE;
  -ms-box-shadow: 5px 5px 5px #999;
  -moz-box-shadow: 5px 5px 5px #999;
  -webkit-box-shadow: 5px 5px 5px #999;
  box-shadow: 5px 5px 5px #999; }
  .img-panel .img-holder {
    width: 180px;
    height: auto;
    max-height: 200px;
    padding: 5px;
    padding-top: 15px; }
    .img-panel .img-holder img {
      width: 100%;
      height: 150px; }
    .img-panel .img-holder .prog {
      width: 50%;
      height: 150px;
      background-color: green;
      text-align: center;
      vertical-align: middle;
      color: white;
      font-weight: bold;
      font-size: x-large;
      line-height: 150px; }
    .img-panel .img-holder .prog-percentage {
      line-height: 150px;
      position: relative;
      top: 0px;
      float: left;
      z-index: 1;
      text-align: center;
      width: 100%;
      font-size: x-large;
      font-weight: bold;
      color: white; }
  .img-panel .img-status {
    padding-left: 10px;
    padding-right: 10px; }
    .img-panel .img-status input[type=checkbox] {
      visibility: hidden; }
    .img-panel .img-status .high {
      color: green; }
  .img-panel .img-format .format-size {
    width: 150px; }
  .img-panel .img-format .format-caret {
    width: 30px; }
  .img-panel .img-quantity input {
    height: 34px;
    width: 100px;
    background-color: #CECECE;
    margin: 0px;
    border: 0px;
    padding: 0px;
    color: white;
    text-align: center;
    /* margin-top: 1px; */
    font-size: larger;
    font-weight: bold; }
    .img-panel .img-quantity input:focus, .img-panel .img-quantity input:active.focus, .img-panel .img-quantity input:active:focus {
      -webkit-box-shadow: none;
      box-shadow: none;
      border: 0px;
      outline: none; }
  .img-panel .img-quantity button {
    height: 35px;
    width: 35px; }
    .img-panel .img-quantity button:focus, .img-panel .img-quantity button:active.focus, .img-panel .img-quantity button:active:focus {
      -webkit-box-shadow: none;
      box-shadow: none;
      border: 0px;
      outline: none; }

.close-circle {
  margin-top: -10px;
  position: relative;
  float: right;
  font-size: x-large;
  color: #350101;
  right: -10px;
  opacity: 1; }
  .close-circle:hover {
    cursor: pointer; }

.squaredTwo {
  width: 28px;
  height: 28px;
  background: #fcfff4;
  background: -webkit-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: -moz-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: -o-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: -ms-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfff4', endColorstr='#b3bead',GradientType=0 );
  /*margin: 20px auto;*/
  -webkit-box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
  position: relative; }

.squaredTwo label {
  cursor: pointer;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 4px;
  top: 4px;
  -webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px white;
  -moz-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px white;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px white;
  background: -webkit-linear-gradient(top, #222 0%, #45484d 100%);
  background: -moz-linear-gradient(top, #222 0%, #45484d 100%);
  background: -o-linear-gradient(top, #222 0%, #45484d 100%);
  background: -ms-linear-gradient(top, #222 0%, #45484d 100%);
  background: linear-gradient(top, #222 0%, #45484d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#222', endColorstr='#45484d',GradientType=0 ); }

.squaredTwo label:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  content: '';
  position: absolute;
  width: 9px;
  height: 5px;
  background: transparent;
  top: 4px;
  left: 4px;
  border: 3px solid #fcfff4;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.squaredTwo label:hover::after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  filter: alpha(opacity=30);
  opacity: 0.3; }

.squaredTwo input[type=checkbox]:checked + label:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1; }

.shipping-info, .shipping-items, .shipping-summary {
  padding-bottom: 5px; }
  .shipping-info h1, .shipping-items h1, .shipping-summary h1 {
    font-size: large;
    font-weight: bold; }
  .shipping-info h3, .shipping-items h3, .shipping-summary h3 {
    font-size: large; }
  .shipping-info h5, .shipping-items h5, .shipping-summary h5 {
    font-size: medium; }
  .shipping-info .link, .shipping-items .link, .shipping-summary .link {
    font-weight: bold; }
    .shipping-info .link:hover, .shipping-items .link:hover, .shipping-summary .link:hover {
      cursor: pointer;
      text-decoration: none; }

.shipping-items {
  border: 0px; }
  .shipping-items img {
    max-width: 100%; }

.address-item {
  padding: 5px; }
  .address-item .addr-text {
    font-size: medium; }

.price-summary {
  border: 1px solid darkgray;
  border-radius: 5px; }

.address-box {
  border: 1px dashed darkgray;
  border-radius: 5px;
  padding-left: 5px;
  padding-right: 5px;
  background-color: #ECE9E9; }

.panel-payment, .panel-address {
  border-color: black;
  min-height: 215px;
  box-shadow: 5px 1px 1px #ccc8c8; }
  .panel-payment .panel-heading, .panel-address .panel-heading {
    color: white;
    background-color: black;
    border-color: black;
    font-size: medium;
    font-weight: bold;
    text-transform: capitalize; }
  .panel-payment .panel-body .heading, .panel-address .panel-body .heading {
    text-transform: uppercase;
    color: darkgrey;
    font-weight: bold;
    font-size: smaller; }
  .panel-payment .panel-body input, .panel-address .panel-body input {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0px;
    outline: none;
    background-color: #eee; }
    .panel-payment .panel-body input:focus, .panel-address .panel-body input:focus, .panel-payment .panel-body input:active.focus, .panel-address .panel-body input:active.focus, .panel-payment .panel-body input:active:focus, .panel-address .panel-body input:active:focus {
      -webkit-box-shadow: none;
      box-shadow: none;
      border: 0px;
      outline: none;
      background-color: #FCF8E3; }

.panel-address {
  border-style: none;
  border-radius: 0px;
  box-shadow: none; }
  .panel-address .panel-heading {
    background-color: #DADADA;
    border: 0px;
    border-radius: 0px; }
    .panel-address .panel-heading button {
      padding: 0px;
      padding-left: 5px;
      padding-right: 5px; }

.search-page {
  padding: 20px; }
  .search-page .filter-box {
    border-top: 5px solid #DCA408; }
  .search-page .result-box .product-card {
    text-align: center;
    width: 200px;
    height: 300px;
    margin-right: 20px;
    margin-bottom: 10px;
    padding: 0px;
    -ms-box-shadow: 2px 2px 2px #CCC8C8;
    -moz-box-shadow: 2px 2px 2px #CCC8C8;
    -webkit-box-shadow: 2px 2px 2px #CCC8C8;
    box-shadow: 2px 2px 2px #CCC8C8;
    transition: all .5s linear; }
    .search-page .result-box .product-card img {
      width: 180px;
      height: 200px;
      overflow: hidden; }
    .search-page .result-box .product-card .name {
      font-size: larger;
      color: black; }
      .search-page .result-box .product-card .name:hover {
        cursor: pointer; }
    .search-page .result-box .product-card .reg-price {
      color: black; }
    .search-page .result-box .product-card .sale-price {
      color: red; }
    .search-page .result-box .product-card .overlap {
      width: 200px;
      height: 200px;
      margin-top: -200px;
      padding-top: 50px;
      opacity: 0; }
    .search-page .result-box .product-card:hover .overlap {
      opacity: 1; }

.product-details {
  color: black;
  border-radius: 0px;
  margin-top: 20px; }
  .product-details .link {
    font-weight: bolder;
    color: black;
    font-size: small; }
    .product-details .link:hover {
      cursor: pointer;
      text-decoration: none; }
  .product-details .product-image img {
    width: 180px;
    height: 200px;
    overflow: hidden; }
  .product-details .reg-price {
    color: black; }
  .product-details .sale-price {
    color: red;
    font-size: larger;
    margin-bottom: 15px; }
  .product-details .modal-footer {
    padding: 0px; }
  .product-details .product-detail-box {
    border-left: 1px double gray; }

/*# sourceMappingURL=style.css.map */
