.title{
  padding-left: 10px; 
  padding: 20px 0;
  color: var(--silver);
  font-size: 18px;
}
.main-content{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
  max-width: auto;
  margin: 0 auto;
}
.main-content .col img{
  width: 100%;
  height: 130px;
}
.main-content .col{
  margin-bottom: 10px;
}
.desc{
  margin-top: 5px;
  font-size: 16px;
  color: var(--black2);
  letter-spacing: 1px;
}
.more_color_available,.description{
  color: var(--black2);
}
.main-content-detail1{
    display: grid;
    grid-template-columns:1.2fr 1.4fr;
    grid-gap: 20px;
    max-width: auto;
    margin: 0 auto;
    padding-bottom: 40px;
}
.main-content-detail1 .col img{
    width: 100%;
}
.main-content-detail1 .col .newin{
  font-size: 25px;
  font-weight: bold;
  margin-top: 0px;
  margin-bottom: 20px;
}
.col-img-detail{
  padding-left: 70px;
}
.col-newin-detail{
  padding-right: 70px;
  padding-left: 30px;
}

/* Size Select */
.size{
  height: 95px;
}
.size,.qty{
  letter-spacing: 2px;
  font-weight: 600;
}
.size p, .qty p{
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--black2);
}
.select-box {
  position: relative;
  display: flex;
  flex-direction: column;
}
.select-box .options-container {
  background: #2f3640;
  color: var(--white);
  max-height: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.4s;
  order: 1;
}
.selected {
  background: var(--white);
  color: var(--blue);
  position: relative;
  order: 0;
  border: 1px solid var(--blue);
}
.select-box .options-container{
  visibility: hidden;
}
.select-box .options-container.active {
  max-height: 240px;
  opacity: 1;
  visibility: visible;
  background: white;
  color: black;
  box-shadow: 10px ;
  -moz-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 15px rgb(0 0 0 / 20%);
  box-shadow: 0 10px 15px rgb(0 0 0 / 20%);
}
.select-box .option,.selected {
  padding: 12px 24px;
  cursor: pointer;
  color: rgb(0 0 0 / 60%);
  font-size: 15px;
}
.select-box .option:hover {
  background: rgb(0 0 0 / 10%);
}
.select-box label {
  cursor: pointer;
}
.select-box .option .radio {
  display: none;
}
.selected{
  display: flex;
  justify-content: space-between;
}
/* ========Quantity========== */
.counter{
  display: flex;
}
.counter .btn, .counter input, .counter .up{
  width: 60px;
  height: 40px;
  font-size: 18px;
  border-width: 1px;
  margin-right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(244, 244, 244);
  cursor: pointer;
  text-align: center;
}
.counter .num{
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.Add-to-bag{
  border: 1px solid var(--blue);
  color: var(--white);
  background: var(--blue);
  outline: none;
  font-weight: 500;
  width: 100%;
  padding: 10px 50px;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 30px;
}
.Add-to-bag:hover{
  color: var(--blue);
  background: var(--white);
}
/* Line */
.lines p{
  color: var(--gray1);
  margin: auto;
  align-items: center;
  justify-content: center;
  display: flex;
  font-size: 18px;
  letter-spacing: 1px;
  padding: 5px 13px;
  font-family: 'Roboto', sans-serif;
}
.lines{
  width: 100%;
  height: 45px;
  position: relative;
}
.lines::after, .lines::before{
  content: '';
  position: absolute;
  margin: auto;
  height: 1px;
  background: hsl(0, 100%, 70%);
  top: 30%;
}
.lines::after, .lines::before{
  width: 30%;
}
.lines::after{
  left: 0;
}
.lines::before{
  right: 0;
}

/* Main -Content 2 */
.main-content2-detail{
  display: grid;
  grid-template-columns:1fr 1fr 1fr 1fr;
  grid-gap: 20px;
  max-width: auto;
  margin: 0 auto;
  padding: 30px 0;
}
.main-content2-detail .col img{
  width: 100%;
}
.desc-price{
  padding-top: 20px;
}
.main-content2-detail .col img:hover ,.main-content .col img:hover{
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 15px rgb(0 0 0 / 20%);
  box-shadow: 0 10px 15px rgb(0 0 0 / 20%);
  transition: .5s ease;
}
.hero{
  width: 100%;
}
.hero .row{
  width: 100%;
  justify-content: space-between;
  display: flex;
  margin: auto;
  padding-bottom: 60px;
  padding-top: 30px;
}
.hero .row .right-sec{
  width: 45%;
}

.hero .left-sec{
  width: 48%;
  right: 0;
}
.product-name{
  font-size: 25px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--black2);
}
.color_item p{
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 18px;
}
.hero .left-sec img{
  width: 100%;
  margin: auto;
  float: left;
}
.slick-prev, .slick-next {
  top: 50%;
  z-index: 999;
}
.slick-prev {
  position: absolute;
  left: 0%;
}
.slick-next {
  position: absolute;
  right: 25px;
}
.slick-slide img{
  display: block;
}
.slick-prev:before, .slick-next:before {
    font-size: 45px;
}
.slick-dots li{
  margin-right: 15px;
}
.slick-dots{
  bottom: -55px;
}
.slick-dots li.slick-active:after{
  position: absolute;
  content: '.';
  top: 0;
  bottom: -15px;
  left: 6px;
  opacity: 1;
  color: red;
  font-size: 36px;
}
.slick-slide {
    outline: none;
}
.desc-de{
  font-size: 22px;
  font-weight: 700;
}
.pro-id{
	font-size: 15px;
  margin-top: 10px;
  color: var(--gray1);
}
.description{
	font-size: 15px;
}

/* Size */
.new-size{
  width: 100%;
  padding: 10px;
  font-size: 18px;
  outline: none;
}
.select-box .error-text, .themes-container .error-text{
  font-size: 12px;
  color: red;
  letter-spacing: 1px;
  font-weight: 700;
}
.empty_image_of_product img{
  width: 300px;
  height: 300px;
  display: block;
  margin: 0px auto;
}
.empty_image_of_product p{
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  color: red;
  margin-bottom: 40px;
}
@media (max-width: 1020px){
  .main-content{
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 756px){
  .col-img-detail{
    padding: 0;
  }
  .col-newin-detail{
    padding-left: 0;
    padding-right: 0;
  }
  .main-content-detail1 .col .newin {
    font-size: 22px;
  }
}
@media(max-width: 600px){
  .main-content{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 550px){
  .main-content-detail1{
      grid-template-columns: 1fr;
  }
  .main-content2-detail{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 570px){
  .hero .left-sec{
    width: 100%;
  }
  .hero .row .right-sec{
    width: 100%;
  }
  .hero .row {
    padding-bottom: 30px;
  }
}
@media(max-width: 350px){
  .main-content{
    grid-template-columns: 1fr;
  }
  .main-content .col{
    margin-bottom: 0px;
  }
}