@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

  /* Force table to not be like tables anymore */
  table, thead, tbody, th, td, tr { 
    display: block; 
  }
  
  /* Hide table headers (but not display: none;, for accessibility) */
  thead tr { 
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  
  tr { 
    border: none;
  }
  
  td { 
    /* Behave  like a "row" */
    border: none;
    border: 1px solid #eee; 
    border-collapse: collapse;
    position: relative;
    padding-left: 60%; 
    height: 45px
  }
  
  td:before { 
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 55%; 
    padding-right: 10px; 
    white-space: wrap;
    height: 50px;
  }
  .hotad-table td:nth-of-type(1):before { content: "1 неделя"; }
  .hotad-table td:nth-of-type(2):before { content: "2 недели"; }
  .hotad-table td:nth-of-type(3):before { content: "3 недели"; }
  .hotad-table td:nth-of-type(4):before { content: "4 недели"; }

  .banners-table td:nth-of-type(1):before { content: "Размер баннера"; }
  .banners-table td:nth-of-type(2):before { content: "CPM, грн"; }
  .banners-table td:nth-of-type(3):before { content: "Кол-во показов"; }
  .banners-table td:nth-of-type(4):before { content: "Min кол-во показов для покупки"; }
}