.main-left-block-container {
background: #faf9f0;
border: 1px solid #c0c0c0;
-webkit-border-radius: 10px 0 0 0;
-moz-border-radius: 10px 0 0 0;
border-radius: 10px 0 0 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
display: table-cell;
width: 63%;
text-align: center;
}
.main-right-block-container {
display: table-cell;
background: #faf9f0;
border: 1px solid #c0c0c0;
border-left: none;
-webkit-border-radius: 0 10px 0 0;
-moz-border-radius: 0 10px 0 0;
border-radius: 0 10px 0 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
text-align: center;
width: 37%;
vertical-align: top;
}
Ниже - то, что не должно выпирать ниже левого контейнера...
.main-right-block-reviews-container {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 0 5px 5px 5px;
}
.main-right-block-reviews {
border: 1px solid #c0c0c0;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
margin: 0 auto;
max-height: 505px;
max-width: 375px;
}
.main-right-block-reviews-hidden {
margin: 5px;
overflow: auto;
max-height: 495px;
max-width: 365px;
}
<table>
<tr class="main-table-row">
<td class="main-left-block-container cf" itemscope itemtype="https://schema.org/Product">
</td>
<td class="main-right-block-container cf">
<div class="main-right-block-reviews-container cf">
<div class="main-right-block-reviews">
</div>
</div>
</td>
</tr>
</table>
AddDefaultCharset UTF-8
RewriteEngine on
# Убираем www
RewriteCond %{HTTP_HOST} ^www\.(.*)$
RewriteRule ^(.*)$ http://%1/$1 [L,R=301]
# Убираем .php на конце файла
RewriteCond %{THE_REQUEST} /([^.]+)\.php [NC]
RewriteRule ^ /%1 [NC,L,R]
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^ %{REQUEST_URI}.php [NC,L]
# Делаем 404 страницу на разных языках
RewriteCond %{REQUEST_FILENAME} !-f [OR]
RewriteCond %{THE_REQUEST} \.php
RewriteRule ^(en/|ua/|) $1404.php [L]