/* !Fonts (Author: hi@leximo.cz) */

/*
  Titles
  ***
*/

h1, 
h2,
h3, 
h4, 
h5, 
h6 {
  margin: 42px 0 16px 0;
  transform: rotate(0.03deg);
  font-weight: 600; 
  color: #3A4147;
}
h1, .--like-h1 {
  line-height: 1.35;
  font-size: 36px;
}
h2, .--like-h2 {
  line-height: 1.4;
  font-size: 32px;
}
h3, .--like-h3 {
  line-height: 1.45;
  font-size: 28px;
}
h4, .--like-h4 {
  line-height: 1.5;
  font-size: 24px;
}
h5, .--like-h5 {
  line-height: 1.55;
  font-size: 20px;
}
h6, .--like-h6 {
  line-height: 1.6;
  font-size: 18px;
}

/*
  - underline
  ---
*/

h2.--underline {
  margin-bottom: 24px;
}
h2.--underline:after {
  content: '';
  width: 42px;
  height: 3px;
  display: block;
  margin-top: 24px;
  background-color: #537fab;
}

/*
  First
  ---
*/

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

/*
  SMALL
  ---
*/

h1 small,
h2 small, 
h3 small, 
h4 small, 
h5 small,
h6 small {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 65%;
  color: #537fab;
}

/*
  Paragraphs
  ***
*/

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

/*
  Empty
  ---
*/

p:empty, address:empty {
  display: none;
}

/*
  Lists
  ***
*/

li {
  margin-bottom: 10px;
  line-height: 1.7;
}
li:last-child {
  margin-bottom: 0;
}

/*
  Wrappers
  ---
*/

ul {
  list-style: square;
}
ol {
  list-style: decimal;
}
ul,
ol {
  margin: 0 0 16px 20px;
}
ul ul,
ul ol,
ol ul,
ol ol {
  margin-top: 12px;
}

/*
  table
  ***
*/

table {
  width: 100%;
  width: calc(100% + 40px);
  margin: 32px 0;
} 

/*
  cells
  ---
*/

 table th, table td {
  vertical-align: middle;
  padding: 12px 14px;
  border-bottom: 1px solid #C9D4DF;
  line-height: 1.7;
}
table th {
  color: #537FAB;
  font-weight: 600;
}

/*
  thead
  ...
*/

table thead th, table thead td {
  padding-top: 0;
  border-bottom: 2px solid #537FAB;
}

/*
  table
  ---
*/

.table {
  overflow-x: auto;
  margin: 32px 0;
}
.table table {
  width: 100%;
  min-width: 700px;
  margin: 0;
}

/*
  Images, caption
  ***
*/

img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/*
  - align
  ---
*/

img.align-left, 
img.align-right {
  max-width: 40%;
}
img.align-left {
  float: left;
  margin: 6px 32px 20px 0;
}
img.align-right {
  float: right;
  margin: 6px 0 20px 32px;
}
img.align-none, 
img.align-center {
  margin-top: 32px;
  margin-bottom: 32px;
}
img.align-center {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

/*
  Rules
  ***
*/

hr {
  height: 0;
  margin: 42px 0;
  background-color: transparent;
  border: none;
  border-top: 1px dashed #E3EAF1;
}