* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.small-container {
  max-width: 1000px;
  margin: auto;
  padding-left: 25px;
  padding-right: 20px;
}
.row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
}
.single-product {
  margin-top: 80px;
}
.small-img-row {
  display: flex;
  justify-content: space-around;
}
.col-2 img {
  max-width: 100%;
  padding: 50px 0;
  box-shadow: 5px 5px rgb(0, 0, 0);
}
.small-img-col {
  flex-basis: 24%;
  cursor: pointer;
}
.single-product .col-2 img {
  padding: 0;
}
.single-product .col-2 {
  padding: 20px;
}
.col-2 {
  flex-basis: 50%;
  min-width: 300px;
}
.col-2 h1 {
  font-size: 50px;
  line-height: 60px;
  margin: 25px 0;
}
.single-product select {
  display: block;
  padding: 10px;
  margin-top: 20px;
}
.single-product h4 {
  margin: 20px 0;
  font-size: 22px;
  font-weight: bold;
  color: red;
}
.single-product input {
  width: 50px;
  height: 40px;
  padding-left: 10px;
  font-size: 20px;
  margin-right: 10px;
  border: 1px solid #ff523b;
}
input:focus {
  outline: none;
}
a {
  text-decoration: none;
  color: #555;
}
.single-product .fa {
  color: #ff523b;
  margin-left: 10px;
}
p {
  color: rgb(2, 1, 1);
}
.btn {
  display: inline-block;
  background-color: #ff523b;
  color: #fff;
  padding: 8px 30px;
  margin: 30px 0;
  border-radius: 20px;
  transition: background 0.5s;
}
.btn:hover {
  background: #563434;
}
.col-2 a {
  background-color: white;
  color: black;
  padding: 8px 30px;
  border-radius: 30px;
}
.col-2 a:hover {
  color: rgb(8, 6, 6);
  background-color: rgb(33, 107, 235);
  transition: 0.3s all;
}
.b a {
  margin-right: 30px;
  cursor: pointer;
  background-color: rgb(33, 107, 235);
  color: white;
  padding: 8px 30px;
  border-radius: 3px;
}
.b a:hover {
  color: rgb(6, 240, 6);
  background-color: rgb(33, 107, 235);
  transition: 0.3s all;
}
