body {
	--main: #42A2CE;
	--secondary: orange;
}

.products, .single-prod-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 10px;
  justify-content: center;
}

.products > article {
  width: 100%;
  margin-left: 12px;
  margin-right: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product_image {
  height: 200px;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  transition: all .3s ease;
}
.prod_category {
  font-size: 14px;
  color: #222;
}
.prod_category a,.prod_brand a{
  color: #333;
}
.prod_brand {
  color: #222 !important;
  padding: 4px 0px;
  font-size: 14px;
}
.prod_id {
  color: white;
  padding: 5px 20px;
  font-size: 23px;
  display: inline-block;
  cursor:pointer;
  margin-right: 30px;
  transition: all .3 ease;
}
.prod_id:hover {
  opacity: .8;
}
.prod_id span {
  display: none;
}
.prod_price {
  color: #333;
  padding-top: 10px;
  font-size: 20px;
  display: inline-block;
  margin-bottom: 10px;
}
.prod_price b {
  font-size: 25px;
}
.prod-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.entry-content {
  margin-top: 7px !important;
}
.prod-title {
  font-size: 20px !important;
  line-height: 1.4;
  margin-top: 10px;
  transition: all .3s ease;
  text-decoration: none !important;
}
a>.prod-title:hover {
  color: #326693 !important;
  text-decoration: none !important;
}
.prod-title.single {
  font-size: 20px !important;
  margin-bottom: 20px;
  line-height: 30px;
}
.content-area .byline a {
  color: #333 !important;
  text-decoration: none;
}
.content-area .byline a:hover {
  text-decoration: underline;
}
.product_image.single {
  height: auto;
  margin-right: 20px;
}
.product-desc {
  margin-top: 40px;
}

.byline {
	margin-top: 20px;
}
.oz_main {
	padding: 20px;
}

.oz_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 15px;
}
#sidebar.oz_sidebar {
  max-width: 350px;
  margin-right: 0;
}
.oz_main {
  max-width: calc(100% - 390px);
}
a.prod_slider {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 0;
	margin: 0;
  text-decoration: none;
  padding: 0 55px;
}
.prod_slider:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0;
	transition: opacity .3s ease;
}
.prod_slider:hover:before {
	opacity: 0.7;
}
.prod_slider span{
  display: none;
  position: relative;
  color: #fff;
  font-size: 14px;
  text-align: center;
}
.prod_slider:hover span{
  display: block;
  text-decoration: none;
}
#sidebar .widget-title {
	border: 0;
}
.bx-wrapper {
	border: none !important;
	box-shadow: none !important;
}
.oz-single_buttons {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.btn_main {
	background-color: var(--main);
}
.btn_secondary {
	background-color: var(--secondary);
}

/* media */

@media only screen and (max-width: 767px) and (min-width: 480px) {
.container {
    width: 95%;
}
  #more-content {
 width: 100%;
  }
}
@media only screen and (min-width: 600px) {
.products {
  grid-template-columns: repeat(2, 1fr);
}
.single-prod-wrapper{
  grid-template-columns: 40% 1fr;
}