/*
 * IMPORTANT **************************************************************************************************>
 * // IF YOU NEED TO ADD MORE MENU LEVELS --> 100 / X = 25% which means X = 4
.breadcrumbs li {
  float: left;
  width: 25%;
}
*/

/* BREADCRUMB */
.cf:before, .cf:after {
  content: ' ';
  display: table;
}
.cf:after {
  clear: both;
}

.title {
  padding: 50px 0;
  font-size: 28px;
  text-align: center;
  font-weight:bold;
}

.inner {
  max-width: 620px;
  margin: 0 auto;
}

.breadcrumbs {
  border-top: 0px solid #ddd;
  border-bottom: 0px solid #ddd;
  background-color: #FFF;
}

.breadcrumbs ul {
  list-style: none;
  border-left: 0px solid #ddd;
  border-right: 0px solid #ddd;
}

.breadcrumbs li {
  float: left;
  width: 25%;
}

.breadcrumbs a {
  position: relative;
  display: block;
  padding: 20px;
  padding-right: 0 !important;
  /* important overrides media queries */
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  color: #aaa;
  /* cursor: default; */
}

.breadcrumbs a.active {
  color: #777;
  background-color: #FFF;
}

.breadcrumbs a span:first-child {
  display: inline-block;
  width: 35px;
  height: 35px;
  padding: 6px;
  margin-right: 5px;
  border: 2px solid #aaa;
  border-radius: 50%;
  background-color: #000;
}

.breadcrumbs a.active span:first-child {
  color: #fff;
  border-color: #777;
  background-color: #000;
}

.breadcrumbs a:before,
.breadcrumbs a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  display: block;
  width: 0;
  height: 0;
  border-top: 32px solid transparent;
  border-bottom: 32px solid transparent;
  border-left: 16px solid transparent;
}

.breadcrumbs a:before {
  margin-left: 1px;
  border-left-color: #d5d5d5;
}

.breadcrumbs a:after {
  border-left-color: #f5f5f5;
}



.breadcrumbs a.active:after {
  border-left-color: #fafafa;
}

.breadcrumbs li:last-child a:before,
.breadcrumbs li:last-child a:after {
  display: none;
}

@media (max-width: 720px) {
  .breadcrumbs a {
    padding: 15px;
  }

  .breadcrumbs a:before,
  .breadcrumbs a:after {
    border-top-width: 26px;
    border-bottom-width: 26px;
    border-left-width: 13px;
  }
}
@media (max-width: 520px) {
  .breadcrumbs a {
    padding: 5px;
  }

  .breadcrumbs a:before,
  .breadcrumbs a:after {
    border-top-width: 16px;
    border-bottom-width: 16px;
    border-left-width: 8px;
  }

  .breadcrumbs li a span:first-child {
    display: block;
    margin: 0 auto;
  }

  .breadcrumbs li a span:last-child {
    display: none;
  }
}



/* CART */
.subtotals .property{
  width:70%;
  display:inline-block;
  box-sizing:border-box;
  text-align:right;
  }

.subtotals .value{
  text-align:right;
  padding-right:2px;
  width:30%;
  display:inline-block;
  box-sizing:border-box;
  }

.table_price { text-align:left; }
.table_qty { text-align:center; }
.qtyx { text-align:center; max-width: 30px;}

/* PLUS AND MINUS INPUT NUMBER */
.plus-minus-input {
  align-items: center;

  .input-group-field {
    text-align: center;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    padding: 1rem;

    &::-webkit-inner-spin-button,
    ::-webkit-outer-spin-button {
      appearance: none;
    }
  }

  .input-group-button {
    .circle {
      border-radius: 50%;
      padding: 0.25em 0.8em;
    }
  }
}

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 */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}
.table_actions { text-align:right; }
.table>tbody>tr>td, .table>tfoot>tr>td{ vertical-align: middle; font-size:12px; }
.cartcontainer { min-height: 100px; }
@media screen and (max-width: 600px) {
	.icon-barx { display: none; }
	/* .img-responsive { display: none; } */
    table#cart tbody td .form-control{
		width:20%;
		display: inline !important;
		text-align:left;
	}

	table#cart thead { display: none; }
	table#cart tbody td { display: block; padding: .6rem; min-width:320px; text-align:center;}
	table#cart tbody tr td:first-child { background: transparent; color: #000;  border:0px solid #FFF; }
	table#cart tbody td:before { content: attr(data-th); font-weight: bold; display: inline-block; }
	table#cart tfoot td{display:block; }
	table#cart tfoot td .btn{display:block;}
	
	.table_img { margin: 0 auto; text-align:center; }
	.price { font-size:16px; font-weight:bold; }
	.table_actions { border-bottom: 3px solid #000; width:100%; }
	.subtotal { text-align:left; }
	
}
