﻿/* === Tabulka === */




.x-spec-grid {
  display: block !important;
  width: 100% !important;
  margin: 24px 0 !important;
  border: 1px solid #d9deea !important;
  border-radius: 4px !important;
  background: #ffffff !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}


.x-spec-grid__row {
  display: grid !important;
  grid-template-columns: 260px 1fr !important;
  margin: 0 !important;
  border-bottom: 1px solid #d9deea !important;
}


.x-spec-grid__row:last-child {
  border-bottom: none !important;
}


.x-spec-grid__cell {
  display: block !important;
  padding: 18px 20px !important;
  color: #323546 !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  text-align: left !important;
  background: #ffffff !important;
  box-sizing: border-box !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}


.x-spec-grid__row--head .x-spec-grid__cell {
  background: #edeff7 !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
}


.x-spec-grid__cell strong {
  font-weight: 700 !important;
}


@media (max-width: 767px) {
  .x-spec-grid__row {
    grid-template-columns: 1fr !important;
  }


  .x-spec-grid__cell {
    padding: 12px 14px !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
  }


  .x-spec-grid__row:not(.x-spec-grid__row--head) .x-spec-grid__cell:first-child {
    background: #edeff7 !important;
    font-weight: 700 !important;
    border-bottom: 1px solid #d9deea !important;
  }
}