
/* sarn css */

/* general */

* {
  box-sizing: border-box;
  }

html
  {
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.2;
  }

.entry .entry-content > *,
.entry .entry-summary > *
  {
  margin-bottom: 1em;
  margin-top: 1em;
  padding: 0;
  }

.entry .entry-content > *,
.entry .entry-summary > *
  {
  font-family: sans-serif;
  line-height: 1.2;
  max-width: 100%;
  }

.entry .entry-header
  {
  margin: 0 10%;
  }

body.home .entry .entry-title:before
  {
  display: none;
  }

body.home .entry .entry-header
  {
  display: none;
  }

body.home .entry .entry-content > *:first-child
  {
  margin-top: 0;
  }

form.wpcf7-form input[name="whoami"]
  {
  display: none;
  }

h1:not(.site-title):before,
h2:before
  {
  display: none;
  }

.site-footer .site-info
  {
  display: none;
  }

.site-title
  {
  font-size: 1.5em;
  font-weight: bold;
  }

/* align */

.align-bottom
  {
  vertical-align: bottom;
  }

.align-center
  {
  text-align: center;
  }

.align-left
  {
  text-align: left;
  }

.align-middle
  {
  vertical-align: middle;
  }

.align-right
  {
  text-align: right;
  }

.align-top
  {
  vertical-align: top;
  }

/* border */

.border
  {
  border: 1px solid black;
  }

.border-bottom
  {
  border-bottom: 1px solid gray;
  }

/* color */

.color-blue
  {
  color: blue;
  }

.color-gray
  {
  color: gray;
  }

.color-green
  {
  color: green;
  }

.color-red
  {
  color: red;
  }

.color-white
  {
  color: white;
  }

.color-yellow
  {
  color: yellow;
  }

/* block */

.entry .entry-content div.block-center
  {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  }

/* columns */

.entry .entry-content div.col-two > div
  {
  display: inline;
  float: left;
  margin-right: 2%;
  width: 49%;
  }

.entry .entry-content div.col-two > div:last-child
  {
  margin-right: 0;
  }

.entry .entry-content div.col-three > div
  {
  display: inline;
  float: left;
  margin-right: 2%;
  width: 32%;
  }

.entry .entry-content div.col-three > div:last-child
  {
  margin-right: 0;
  }

/* float */

.clear
  {
  clear: both;
  }

.clear-none
  {
  clear: none;
  }

.entry .entry-content > *.float-left,
.entry .entry-summary > *.float-left
  {
  display: inline;
  float: left;
  margin-left: 0;
  margin-right: .5em;
  margin-top: 0;
  }

.entry .entry-content > *.float-right,
.entry .entry-summary > *.float-right
  {
  display: inline;
  float: right;
  margin-left: .75em;
  margin-right: 0;
  margin-top: 0;
  }

/* font */

.bold
  {
  font-weight: bold;
  }

.italic
  {
  font-style: italic;
  }

.smaller
  {
  font-size: smaller;
  }

/* hide/show */

.hide
  {
  display: none;
  }

.show
  {
  display: block; 
  }

/* image */

img.logo
  {
  max-height: 72px;
  max-width: 96px;
  }

img.thumbnail
  {
  max-height: 144px;
  max-width: 192px;
  }

/* overlay text */

div.overlay-text > div:last-child
  {
  display: none;
  }

@media screen and (min-width: 720px) {

div.overlay-text
  {
  position: relative;
  }

div.overlay-text > div:last-child
  {
  display: block;
  font-size: 3em;
  font-weight: bold;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  }
}

/* padding */

.padding-side-10
  {
  padding: 0 10%;
  }

.padding-side-15
  {
  padding: 0 15%;
  }

.padding-side-20
  {
  padding: 0 20%;
  }

/* spacing and indent */

.entry .entry-content .site_double
  {
  margin-top: 2em;
  }

.entry .entry-content .site_indent
  {
  margin-left: 2em;
  }

.entry .entry-content .site_dindent
  {
  margin-left: 4em;
  }

.entry .entry-content .site_single
  {
  margin-top: 0px;
  }

/* table */

table td,
table th
  {
  word-break: normal;
  }

table.border
  {
  border-collapse: collapse;
  }

table.border td,
table.border th
  {
  border: 1px solid gray;
  }
  
table.center
  {
  margin-left: auto;
  margin-right: auto;
  }

table.col-center td,
table.col-center th
  {
  text-align: center;
  }

table.col-left td,
table.col-left th
  {
  text-align: left;
  }

table.col-left-center td,
table.col-left-center th
  {
  text-align: center;
  }

table.col-left-center td:first-child,
table.col-left-center th:first-child
  {
  text-align: left;
  }

table.col-left-right td,
table.col-left-right th
  {
  text-align: right;
  }

table.col-left-right td:first-child,
table.col-left-right th:first-child
  {
  text-align: left;
  }

table.col-right td,
table.col-right th
  {
  text-align: right;
  }

table.layout-fixed
  {
  table-layout: fixed;
  }

table.noborder
  {
  border: none;
  }

table.noborder td,
table.noborder th
  {
  border: none;
  }
  
table.row-bottom tr
  {
  vertical-align: bottom;
  }

table.row-top tr
  {
  vertical-align: top;
  }

/* width */

.width-auto
  {
  width: auto;
  }

.width-half
  {
  width: 50%;
  }

.width-quarter
  {
  width: 25%;
  }

.width-third
  {
  width: 33%;
  }

.width-whole
  {
  width: 100%;
  }

/* contact form 7 */

.entry .entry-content .wpcf7-form-control,
.entry .entry-content form.wpcf7-form label
  {
  font-family: sans-serif;
  }
