main {
	margin-top: 80px;
}

.section-header {
  margin-left: 15px;
}

input[type="text"]::placeholder {
	font-weight: 100;
	color: #B0B0B0;
}

#products {
  min-height: 500px !important;
}

#products #products-container {
	margin: 30px 0 50px 0;
}

#products .products-item {
  background-color: white;
  margin-bottom: 30px;
  padding-bottom: 5px;
  cursor: pointer;
}

#products .pr_cont {
  position: relative;
}

#products .product-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  margin: 15px;
  transition: .5s ease;
  background-color: #EB553B;
}

#products .product-item-overlay a {
  position: absolute;
  top: calc(50% - 30px);
  left: calc(50% - 100px);
  color: white;
  padding: 10px 80px;
  border: 2px solid white;
}

#products .product-item-overlay a:hover {
  background-color: white;
  color: #EB553B;
}

#products .pr_cont:hover .product-item-overlay {
  opacity: .7;
}

#products .products-item .products-img {
  width: 100%;
  padding-top: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-bottom: 1px solid #EB553B;
}

#products .products-item .products-img.bolde {
  padding-top: 140%;
}

#products .products-item h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 10px 0;
  line-height: 1.7rem;
}

#products .products-item h4 {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.4rem;
  color: #999;
  font-style: italic;
  font-weight: 400;
  margin: 0 0 15px 0;
  text-transform: none;
}

@media (max-width: 767px) {
  .section-header {
    margin-left: 0px;
  }
}

/*
  Pagination
*/
ul.pagination {
  margin: -10px 0 30px 15px;
}

li.page-item {
  padding: 0 10px;
}

li.page-item:first-child {
  padding-left: 0;
}

li.page-item:last-child {
  padding-right: 0;
}

li.page-item a.page-link {
  color: #383838;
  border: 0;
}

li.page-item a.page-link:hover {
  background-color: #EB553B;
  color: white;
}

li.page-item.disabled span.page-link {
  border: 0 !important;
}

li.page-item.active .page-link {
  background-color: white;
  color: #EB553B;
  border: 0;
}

/*
  Product Detail
*/
section.product-detail div#product-info {
  border-top: 1px solid #EB553B;
  padding: 30px 0 120px 0;
}

section.product-detail .product-thumb {
  width: 100%;
  padding-top: 100%; 
  position: relative;
  overflow: hidden;
  background-color: #d8d8d8;
}

.separator {
  width: 100%;
  height: 1px;
  background-color: #EB553B;
  margin: 30px 0;
}

section.product-detail .product-thumb:hover {
  cursor: pointer;
}

section.product-detail .product-thumb img {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  width: auto;
}

section.product-detail .product-thumb.active {
  border-bottom: 7px solid rgba(235, 85, 59, 1);
}

section.product-detail .product-img-lg {
  width: 100%; 
}

section.product-detail .product-img-lg img {
  height: auto;
  width: 100%;
}

section.product-detail h6 {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-style: italic;
  color: #EB553B;
}

section.product-detail p.product-desc {
  font-size: 1rem;
  line-height: 2.1rem;
  text-align: justify;
  padding: 1rem 0;
  margin-bottom: 0;
  margin-right: 5vw;
}

section.product-detail table#product-additional-info {
  width: 90%;
  margin-bottom: 2rem;
}

section.product-detail table#product-additional-info tr td {
  border: 1px solid #EB553B;
  padding:1rem;
}

#product-spec-cont,
#sidebar-cont {
  background-color: white;
  width: 100%;
  height: auto;
  padding: 1.3rem;
  margin-bottom: 3rem;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

#product-spec-cont header h5,
#sidebar-cont header span {
  font-weight: 900;
}

#product-spec-cont .product-specs {
  margin-left: -1.2rem;
}

#product-spec-cont .product-specs li.product-spec-item {
  list-style-image: url('../img/list-bullet.png');
  margin: .8rem 0;
  font-weight: 700;
}

#product-spec-cont .product-specs li.product-spec-item p {
  margin: .3rem 0 0 -1.2rem;
  font-weight: 400;
}

.product-detail #products-seemore {
  margin-top: -50px;
  margin-bottom: 30px;
}

.product-detail #products-seemore a {
  background-color: #E30717;
  padding: 10px 30px;
  color: white;
  border-radius: 5px;
}

#products .products-item .products-img.other {
  padding-top: 109%;
}

@media (max-width: 767px) {
  .product-detail header.section-header span {
    left: 60px !important;
  }
  section.product-detail table#product-additional-info {
    width: 100%;
  }
}

/* Product List Container
--------------------------------*/
#product-cont {
  margin-top: 30px;
  padding: 0 20px;
}

.sidebar-category {
  list-style: none;
  margin-left: -1.5rem;
  text-transform: uppercase;
}

.sidebar-category li {
  margin: 15px 0;
  font-size: .8rem;
}

.sidebar-category li a.category-link.active,
.sidebar-category li.active a {
  color: #EB553B;
  font-weight: 800;
}

.sidebar-category li ul {
  list-style: none;
}

.sidebar-category li ul li {
  position: relative;
}


.sidebar-category li ul li::before {
  content: '';
  width: 10px;
  height: 2px;
  position: absolute;
  top: 8px;
  left: -22px;
  background-color: #EB553B;
}

#searchbar-cont {
  border-bottom: 1px solid #979797;
  padding: .5rem 1rem;
  margin-bottom: 1rem;
}

#searchbar-cont i {
  color: #EB553B;
}

#searchbar-cont input[type="text"] {
  width: 100%;
  border: 0;
}

#searchbar-cont input[type="submit"] {
  background-color: #EB553B;
  color: #fff;
  border: 0;
  padding: 5px 10px;
}

@media (max-width: 767px) {
  #searchbar-cont i {
    display: none;
  }

  #searchbar-cont input[type="text"] {
    border: 1px solid #EB553B;
    padding: 10px 20px;
  }

  #searchbar-cont input[type="submit"] {
    margin: 10px 0;
    width: 100%;
    padding: 10px 20px;
  }
}

/* Brand Selector
--------------------------------*/
#brand-cont {
  border-top: 1px solid #EB553B;
  border-bottom: 1px solid #EB553B;
  padding: 10px 20px;
}

#brand-cont h6,
#brand-cont ul#brands {
  display: inline;
}

ul#brands {
  padding-left: 0;
}

#brand-cont ul#brands li {
  display: inline-block;
  margin: 0 20px;
  font-size: .8rem;
  text-transform: uppercase;
}

ul#brands li input[type="checkbox"] {
  display: none;
}

ul#brands li input[type="checkbox"] + label:before {
  content: '\2713';
  border: 0.5px solid #cfcfcf;
  display: inline-block;
  margin-right: 15px;
  padding-bottom: 1.5em;
  padding-left: .4em;
  vertical-align: bottom;
  width: 1.5em;
  height: 1em;
  color: transparent;
}

ul#brands li input[type="checkbox"]:checked + label:before {
  background-color: #EB553B;
  color: white;
  border-color: #EB553B;
}

@media (max-width: 767px) {
  #brand-cont h6,
  #brand-cont ul#brands {
    display: block;
  }
}