﻿.productDetailsRow {
  margin: 30px 0;
}
.left_RadiusCorners {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.right_RadiusCorners {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.productDetails_banner {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 400px;
}
.productDetails_Desc {
  padding: 100px 100px !important;
}
.productDetails_fullWidth_banner {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 500px;
  position: relative;
}
.productDetails_fullWidth_banner .Desc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.productDetails_specs_container {
  margin-top: 70px;
}
.productDetails_specs_container img {
  margin: 0 auto 20px auto;
  width: 100%;
  max-width: 70px;
}
.productDetails_specs {
  margin-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 991px) {
  .left_RadiusCorners {
    border-bottom-left-radius: 0;
    border-top-right-radius: 8px;
  }
  .right_RadiusCorners {
    border-top-right-radius: 0;
    border-bottom-left-radius: 8px;
  }
}
@media (max-width: 768px) {
  .productDetails_Desc {
    padding: 50px 15px !important;
  }
  .productDetails_fullWidth_banner .Desc {
    width: 90%;
  }
}
@media (max-width: 576px) {
  .productDetails_banner {
    min-height: 300px;
  }
}
@media (max-width: 400px) {
  .productDetails_banner {
    min-height: 250px;
  }
  .productDetails_fullWidth_banner {
    padding: 100px 15px;
    min-height: unset;
  }
  .productDetails_fullWidth_banner .Desc {
    position: relative;
    top: unset;
    left: unset;
    transform: none;
    -moz-transform: none;
    -webkit-transform: none;
  }
}