/* !Format (Author: mail@jandousek.cz) */

/*
  Titles
  ***
*/

h1, .--like-h1, 
h2, .--like-h2,
h3, .--like-h3, 
h4, .--like-h4, 
h5, .--like-h5, 
h6, .--like-h6 {
  transform: rotate(0.03deg);
  margin: 42px 0 16px 0;
  font-weight: 700;
  color: #231F20;
}
h1, .--like-h1 {
  line-height: 1.25;
  font-size: 58px;
}
h2, .--like-h2 {
  line-height: 1.3;
  font-size: 44px;
}
h3, .--like-h3 {
  line-height: 1.35;
  font-size: 32px;
}
h4, .--like-h4 {
  line-height: 1.4;
  font-size: 24px;
}
h5, .--like-h5 {
  line-height: 1.45;
  font-size: 20px;
}
h6, .--like-h6 {
  line-height: 1.5;
  font-size: 16px;
}

/*
  - first
  ---
*/

h1:first-child, .--like-h1:first-child, 
h2:first-child, .--like-h2:first-child,
h3:first-child, .--like-h3:first-child, 
h5:first-child, .--like-h5:first-child, 
h6:first-child, .--like-h6:first-child {
  margin-top: 0;
}

/*
  + subtitle
  ---
*/

.subtitle + h1, .subtitle + .--like-h1, 
.subtitle + h2, .subtitle + .--like-h2,
.subtitle + h3, .subtitle + .--like-h3, 
.subtitle + h4, .subtitle + .--like-h4, 
.subtitle + h5, .subtitle + .--like-h5, 
.subtitle + h6, .subtitle + .--like-h6 {
  margin-top: 12px;
}

/*
  Paragraphs
  ***
*/

p, 
address {
  margin-bottom: 16px;
  line-height: 1.7;
}
address {
  font-style: normal;  
}

/*
  Empty
  ---
*/

p:empty {
  display: none;
}

/*
  Lists
  ***
*/

li {
  margin-bottom: 4px;
  line-height: 1.75;
}

/*
  Wrappers
  ---
*/

ul {
  margin: 0 0 16px 42px;
}
ol {
  margin: 0 0 16px 38px;
}
ul ul,
ul ol,
ol ul,
ol ol {
  margin: 6px 0 2px 20px;
}
ul {
  list-style: circle;
}
ol {
  list-style: decimal;
}

/*
  - inline
  ...
*/

ul.--inline, 
ol.--inline {
  margin-left: 0;
  list-style: none;
}
ul.--inline > li, 
ol.--inline > li {
  display: inline-block;
  margin-right: 16px;
}

/*
  table
  ***
*/

table {
  width: 100%;
  margin: 36px 0;
}

/*
  - small
  ---
*/

table.--small {
  font-size: 14px;
}

/*
  Cells
  ---
*/

table th, 
table td {
  vertical-align: middle;
  padding: 16px 24px;
  border: 1px solid #e7e6e6;
  line-height: 1.6;
}

/*
  thead
  ---
*/

table thead th, 
table thead td {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #F0EEF0;
  font-weight: 700;
  font-size: 15px;
  color: #C800A1;
}
table thead th:empty, 
table thead td:empty {
  background-color: #fff;
}

/*
  - small
  ---
*/

table.--small thead th, 
table.--small thead td {
  font-size: 14px;
}

/*
  Caps
  ---
*/

table th:first-child, 
table td:first-child {
  border-left: none;
}
table th:last-child, 
table td:last-child {
  border-right: none;
}
table thead tr:first-child th, 
table thead tr:first-child td {
  border-top: none;
}
table tbody tr:last-child th, 
table tbody tr:last-child td {
  border-bottom: none;
}

/*
  table
  ---
*/

.table {
  overflow-y: hidden;
  overflow-x: auto;
  margin: 36px 0;
  box-shadow: 0 0 32px rgba(93, 84, 91, 0.12);
  border-radius: 18px;
}

/*
  Adjust TABLE
  ...
*/

.table table {
  min-width: 600px;
  margin: 0;
}

/*
  Images
  ***
*/

img {
  max-width: 100%;
  height: auto;
}

/*
  - align
  ---
*/

img.--align-center {
  display: table;
  margin: 34px auto 33px auto;
}
img.--align-right {
  float: right;
  margin: 6px 0 36px 36px;
}
img.--align-center {
  display: table;
  margin: 64px auto;
}
img.--align-none {
  margin: 64px 0;
}

/*
  Rules
  ***
*/

hr {
  height: 26px;
  position: relative;
  display: block;
  clear: both;
  margin: 36px 0 32px -64px;
  border: none;
}

/*
  Shape
  ---
*/

hr:before {
  content: '';
  width: 26px;
  height: 26px;
  position: absolute;
  left: 0;
  top: 0;
  background: url('../img/pictogram.svg') no-repeat;
  background-size: contain;
}

/*
  Line
  ---
*/

hr:after {
  content: '';
  height: 1px;
  position: absolute;
  left: 26px;
  top: 50%;
  right: 0;
  margin-top: -1px;
  background: linear-gradient(to right, #f6f5f6 0%,#ffffff 100%);
}

/*
  Gaps
  ---
*/

hr:first-child {
  margin-top: 0;
}
hr:last-child {
  margin-bottom: 0;
}

/*
  STRONG
  ***
*/

strong {
  font-weight: 500;
  color: #353535;
}