#singleProduct {
  display: flex;
}

#singleProduct .singlePro {
  width: 35%;
  padding: 30px 0px 60px 80px;
  margin: 10px 20px;
}

.secImage {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.small-img {
  flex-basis: 23%;
  cursor: pointer;
  border: 1px solid black;
}

.single-pro-details {
  width: 50%;
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  padding-top: 30px;
  padding-left: 50px;
  margin-bottom: 18px;
}

.single-pro-details h6 {
  color: gray;
  margin-bottom: 30px;
}

.single-pro-details h4 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.single-pro-details h3 {
margin-bottom: 20px;
font-size: 30px;
}

.single-pro-details .quantity {
  width: 80px;
   padding: 10px 10px;
  font-size: 0.8rem;
  border-radius: 5px;
  border: 1px solid;
  margin-right: 20px;
}

.single-pro-details .quantity:focus {
  outline: none;
}

.pro-cart {
  margin-bottom: 30px;
}

.single-pro-details .atc {
  background-color: seagreen;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  border: none;
  padding: 10.5px 10px;
  font-size: 1rem;
  cursor: pointer;
  margin-left: 5px;
}

.single-pro-details span{
  line-height: 30px;
  word-spacing: 5px;
}



@media (max-width:477px) {
 #singleProduct {
  display: flex;
  flex-direction: column;
 }

 #singleProduct .singlePro {
    width: 90%;
    padding: 10px 5px;
}
.single-pro-details h6 {
    color: gray;
    margin-bottom: 2px;
}

.single-pro-details {
    width: 100%;
    flex-direction: column;
    display: flex;
    align-items: flex-start;
    padding-top: 30px;
    padding: 10px;
}

}