#product-block .title {
  margin-bottom: 20px;
}

#product-block .product {
  display: flex;
  background-color: #f4f6fa;
  scroll-margin-top: 120px;
}
#product-block .product-content-holder {
  display: flex;
  width: 100%;
}

#product-block .tabs {
  display: flex;
  align-items: center;
  column-gap: 15px;
  row-gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
#product-block .tabs .btn {
  flex-shrink: 1;
  white-space: unset;
}
#product-block .img {
  display: flex;
  position: sticky;
  top: 140px;
  height: 35vw;
  max-height: 470px;
  width: 40%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  flex-shrink: 0;
  box-shadow: 0px 10px 60px -20px rgba(21, 71, 132, 0.2);
}
#product-block .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

#product-block .info {
  padding: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#product-block .info__top h2 {
  margin-bottom: 30px;
}

#product-block .info__bottom .hint__top {
  font-weight: 600;
  color: #15263c;
  margin-bottom: 10px;
}

#product-block .info__bottom .price {
  display: flex;
  flex-wrap: wrap;
  row-gap: 15px;
  align-items: end;
  margin-bottom: 20px;
}

#product-block .info__bottom .price__btn {
  height: 50px;
  margin-left: 30px;
}

#product-block .info__bottom .price__text h2 {
  white-space: nowrap;
}

/*============ MEDIA ==================*/
@media (max-width: 992px) {
    #product-block .info {
        padding: 20px;
    }
}
@media (max-width: 768px) {
  #product-block .product-content-holder {
    flex-direction: column;
  }
  #product-block .product {
    flex-direction: column;
  }

  #product-block .product .img {
    position: relative;
    top: auto;
    width: 100%;
    height: 45vw;
    background-attachment: inherit;
  }
}

@media (max-width: 592px) {
	#product-block .info__bottom .price__btn{
		margin-right: 30px;
		width: 100%;
	}
	#product-block .info__bottom .price__btn button{
	
		width: 100%;
	}
}


@media (max-width: 520px) {
  #product-block .product .info {
    padding: 20px;
  }
}
@media (max-width: 425px) {
  .btn {
    width: 100%;
  }

  #product-block .info__bottom .price__btn {
    margin: 0;
    width: 100%;
  }
}

/*# sourceMappingURL=block.css.map */
