/*---------------------------------------------------------
  Mixins
---------------------------------------------------------*/
/* Retina! */
.icon {
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  width: 56px;
  height: 56px;
  background-size: 56px;
}
.icon.search {
  background-size: 50px;
  background-image: url(/profiles/dekracert/themes/ditheme/css/img/search_white.svg);
}
.icon.search:hover {
  background-image: url(/profiles/dekracert/themes/ditheme/css/img/search_green.svg);
}
.icon.read-more {
  background-image: url(/profiles/dekracert/themes/ditheme/css/img/readmore_white.svg);
}
.icon.read-more:hover {
  background-image: url(/profiles/dekracert/themes/ditheme/css/img/readmore_green.svg);
}
.icon.read-less {
  background-image: url(/profiles/dekracert/themes/ditheme/css/img/readless_green.svg);
}
.icon.close {
  background-image: url(/profiles/dekracert/themes/ditheme/css/img/close_white.svg);
}
.icon.close:hover {
  background-image: url(/profiles/dekracert/themes/ditheme/css/img/close_green.svg);
}
.icon.left {
  background-image: url(/profiles/dekracert/themes/ditheme/css/img/arrow_left_white.svg);
}
.icon.right {
  background-image: url(/profiles/dekracert/themes/ditheme/css/img/arrow_right_white.svg);
}
.icon.facebook {
  background-image: url(/profiles/dekracert/themes/ditheme/css/img/fb.svg);
}
.icon.facebook:hover {
  background-image: url(/profiles/dekracert/themes/ditheme/css/img/fb_hover.svg);
}
.icon.twitter {
  background-image: url(/profiles/dekracert/themes/ditheme/css/img/tw.svg);
}
.icon.twitter:hover {
  background-image: url(/profiles/dekracert/themes/ditheme/css/img/tw_hover_2.svg);
}
.icon.linkedin {
  background-image: url(/profiles/dekracert/themes/ditheme/css/img/in.svg);
}
.icon.linkedin:hover {
  background-image: url(/profiles/dekracert/themes/ditheme/css/img/in_hover.svg);
}
.icon.sc {
  background-image: url(/profiles/dekracert/themes/ditheme/css/img/sc.svg);
}
.icon.sc:hover {
  background-image: url(/profiles/dekracert/themes/ditheme/css/img/sc_hover.svg);
}
.icon.m {
  background-image: url(/profiles/dekracert/themes/ditheme/css/img/m.svg);
}
.icon.m:hover {
  background-image: url(/profiles/dekracert/themes/ditheme/css/img/m_hover.svg);
}
.icon.yt {
  background-image: url(/profiles/dekracert/themes/ditheme/css/img/yt.svg);
}
.icon.yt:hover {
  background-image: url(/profiles/dekracert/themes/ditheme/css/img/yt_hover.svg);
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
/*---------------------------------------------------------
  Own custom mixins.
---------------------------------------------------------*/
/*---------------------------------------------------------
  Grid definitions.
---------------------------------------------------------*/
/*---------------------------------------------------------
  Media queries
---------------------------------------------------------*/
/*---------------------------------------------------------
  FLEXBOX (https://gist.github.com/jayj/4012969)
---------------------------------------------------------*/
/*---------------------------------------------------------
  Base
---------------------------------------------------------*/
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  overflow-y: scroll;
}
img {
  width: auto;
  max-width: 100%;
  height: auto;
}
/*---------------------------------------------------------
  Typography
---------------------------------------------------------*/
p {
  margin: 0 0 20px 0;
  font-size: 20px;
}
p + h2,
p + h3,
p + h4,
p + h5,
p + h6 {
  margin: 30px 0px 5px;
}
a {
  color: #007c41;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin: 0px 0px 10px;
  text-rendering: optimizeLegibility;
}
h1 {
  font-size: 60px;
  margin-bottom: 30px;
  line-height: 1.1em;
}
h2 {
  font-size: 50px;
  line-height: 1.1em;
}
h3 {
  font-size: 25px;
  line-height: 1.1em;
}
h4 {
  font-size: 18px;
  line-height: 1.1em;
}
h5,
h6 {
  font-size: 16px;
  line-height: 1.1em;
}
@media (max-width: 600px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 30px;
  }
}
/*---------------------------------------------------------
  scripts[] = js/includes/
---------------------------------------------------------*/
.video-container {
  position: relative;
  height: 500px;
  width: 100%;
}
.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*---------------------------------------------------------
  Lists
---------------------------------------------------------*/
ul {
  margin: 0 0 20px 0;
  padding: 0 0 0 20px;
}
ul li {
  list-style: disc outside none;
}
/*---------------------------------------------------------
  Tables
---------------------------------------------------------*/
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: none;
  margin-bottom: 20px;
}
table th,
table td {
  padding: 8px 0px 8px;
  text-align: left;
  vertical-align: top;
  border: none;
  border-top: 1px solid #d0d0d0;
}
table th.views-align-left,
table td.views-align-left {
  text-align: left;
}
table th.views-align-center,
table td.views-align-center {
  text-align: center;
}
table th.views-align-right,
table td.views-align-right {
  text-align: right;
}
table th p:last-child,
table td p:last-child {
  margin-bottom: 0px;
}
table th {
  font-weight: bold;
}
table thead th {
  vertical-align: bottom;
}
table thead:first-child tr:first-child th,
table thead:first-child tr:first-child td {
  border-top: 0;
}
table tbody + tbody {
  border-top: 2px solid #d0d0d0;
}
/*---------------------------------------------------------
  Forms
---------------------------------------------------------*/
label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: bold;
}
label.option {
  display: inline;
}
.form-item {
  margin-bottom: 20px;
}
input[type=email],
input[type=password],
input[type=search],
input[type=text],
textarea {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: 1px solid #d0d0d0;
  padding: 7px;
  max-width: 100%;
}
button,
input[type=submit] {
  background-color: #007c41;
  border: 0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  font-size: 13px;
  text-transform: uppercase;
  color: #004926;
  text-transform: none;
  padding: 10px 18px 9px;
}
button:hover,
input[type=submit]:hover {
  background-color: #00af5c;
}
/*---------------------------------------------------------
  Pager
---------------------------------------------------------*/
.pager {
  margin: 0;
  padding: 0;
  text-align: center;
}
.pager li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  margin: 0 10px;
}
/*---------------------------------------------------------
  Messages
---------------------------------------------------------*/
div.messages {
  margin-bottom: 20px;
  *zoom: 1;
}
div.messages:before,
div.messages:after {
  content: "";
  display: table;
}
div.messages:after {
  clear: both;
}
/*---------------------------------------------------------
  Field items
---------------------------------------------------------*/
ul.field-items {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.field-items li.field-item {
  list-style: none;
  margin: 0;
  padding: 0;
}
