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

#product-block .product {
    display: flex;
    background-color: #F4F6FA;
}

#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 {
    height: 470px;
    width: 470px;
    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 .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 {
    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: 1221px) {
    #product-block .product {
        flex-direction: column;
    }

    #product-block .product .img {
        width: 100%;
        height: 150px;

    }
}

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

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