/* BASICS ---------------- */
/*
  I know what you're thinking, but there is actually very little performance overhead with this.
  Go optimize something else. It's awesome for easier box model. Works in IE8 and above. -LB
*/
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  background: #fff url('../img/back.png') top left repeat;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #333;
  background-position: fixed;
  background: -moz-linear-gradient(top,  rgba(127,127,127,0.28) 0%, rgba(255,255,255,0.28) 34%, rgba(255,255,255,0.28) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(127,127,127,0.28)), color-stop(34%,rgba(255,255,255,0.28)), color-stop(100%,rgba(255,255,255,0.28)));
  background: -webkit-linear-gradient(top,  rgba(127,127,127,0.28) 0%,rgba(255,255,255,0.28) 34%,rgba(255,255,255,0.28) 100%);
  background: -o-linear-gradient(top,  rgba(127,127,127,0.28) 0%,rgba(255,255,255,0.28) 34%,rgba(255,255,255,0.28) 100%);
  background: -ms-linear-gradient(top,  rgba(127,127,127,0.28) 0%,rgba(255,255,255,0.28) 34%,rgba(255,255,255,0.28) 100%);
  background: linear-gradient(to bottom,  rgba(127,127,127,0.28) 0%,rgba(255,255,255,0.28) 34%,rgba(255,255,255,0.28) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#477f7f7f', endColorstr='#47ffffff',GradientType=0 );
}

a {
  color: #75B9E6;
  text-decoration: none;
}

a:focus,
a:hover {
  color: #67A6CE;
}

::selection {
  background: #333333;
  color: #FFFFFF;
}

::-moz-selection {
  background: #333333;
  color: #FFFFFF;
}

label {
  font-weight: bold;
}

input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
textarea {
  font-family: inherit;
  font-size: 11px;
  border: 1px solid #000;
  border-color: rgba(00, 00, 00, 0.11);
  background: #fff;
  padding: 6px 4px;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
textarea:focus {
  background: #DCDCDC;
  outline: 0;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #666;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #666;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #666;
}

input[type="submit"],
button {
  padding: 7px 5px;
  font-size: 10px;
  text-transform: uppercase;
  font-family: inherit;
  border: 0 transparent;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: rgb(241,241,241);
  background: -moz-linear-gradient(top,  rgba(241,241,241,1) 0%, rgba(164,164,164,1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(241,241,241,1)), color-stop(100%,rgba(164,164,164,1)));
  background: -webkit-linear-gradient(top,  rgba(241,241,241,1) 0%,rgba(164,164,164,1) 100%);
  background: -o-linear-gradient(top,  rgba(241,241,241,1) 0%,rgba(164,164,164,1) 100%);
  background: -ms-linear-gradient(top,  rgba(241,241,241,1) 0%,rgba(164,164,164,1) 100%);
  background: linear-gradient(to bottom,  rgba(241,241,241,1) 0%,rgba(164,164,164,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1f1f1', endColorstr='#a4a4a4',GradientType=0 );
}

[disabled] {
  opacity: 0.7;
}

.wrapper {
  background: #fff;
  -webkit-box-shadow: 0px 0px 40px 0px rgba(00, 00, 00, 0.2);
  box-shadow: 0px 0px 40px 0px rgba(00, 00, 00, 0.2);
}


/* HEADER ---------------- */
.header {
  background: rgb(253,253,253);
  background: -moz-linear-gradient(top,  rgba(253,253,253,1) 0%, rgba(241,241,241,1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(253,253,253,1)), color-stop(100%,rgba(241,241,241,1)));
  background: -webkit-linear-gradient(top,  rgba(253,253,253,1) 0%,rgba(241,241,241,1) 100%);
  background: -o-linear-gradient(top,  rgba(253,253,253,1) 0%,rgba(241,241,241,1) 100%);
  background: -ms-linear-gradient(top,  rgba(253,253,253,1) 0%,rgba(241,241,241,1) 100%);
  background: linear-gradient(to bottom,  rgba(253,253,253,1) 0%,rgba(241,241,241,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fdfdfd', endColorstr='#f1f1f1',GradientType=0 );
}

.header > * {
  display: inline-block;
  vertical-align: top;
}

.site-name a {
  display: block;
  text-indent: -9999em;
  height: 104px;
  width: 397px;
  background: transparent url('../img/logo-dokument.png') center center no-repeat;
}

.header .nav {
  font-size: 13px;
  border-left: 1px solid #868686;
  margin-left: 40px;
  padding-left: 10px;
}

.header .nav .menu-item {
  padding: 3px 0;
}

.header .nav .menu-item:first-child {
  margin-top: 0;
}

.header .nav .current-menu-item a {
  font-weight: bold;
}

.header .language-switcher {
  float: right;
}

.language-switcher a {
  display: inline-block;
  margin-left: 7px;
  width: 30px;
  height: 20px;
  background: transparent url('../img/flag-sv.png') no-repeat center center;
  text-indent: -9999em;
}

.language-switcher .lang-en {
  background-image: url('../img/flag-en.png');
}

.language-switcher a:first-child {
  margin-left: 0;
}


/* SEARCH BAR ---------------- */
.search-bar {
  color: #fff;
}

.search-bar .searchform {
  text-align: right;
}

.search-bar input[type="text"] {
  width: 200px;
}


/* FIRST CONTENT COLUMN AND COLUMN TOP ---------------- */
.column-top .hentry,
.column-first .hentry {
  margin-top: 30px;
  overflow: hidden;
}

.column-top .hentry:first-child,
.column-first .hentry:first-child {
  margin-top: 0;
}

.push-tag {
  font-weight: bold;
  text-transform: uppercase;
  color: #2fc66f;
}

.read-more {
  font-weight: bold;
  display: block;
  margin-top: 0.3em;
}

.article-meta {
  color: #5a5a5d;
  font-style: italic;
}

.caption {
  margin-top: 0 !important;
  font-style: italic;
}

.column-top .featured-image,
.featured-image.small {
  float: left;
}

.push-img-link + .sub-title,
.push-img-link + .sub-title + .wysiwyg {
  margin-left: 200px;
}

.column-top .push-img-link {
  float: left;
  display: block;
  margin-right: 20px;
}

.prev-next {
  overflow: hidden;
  font-weight: bold;
  margin-top: 30px;
}

.prev-next a {
  color: inherit;
}

.prev-next .newer {
  float: right;
}

.prev-next .older {
  float: left;
}

/* SECOND CONTENT ---------------- */
.column-second .hentry {
  padding: 10px;
  margin-top: 1px;
  background: rgb(243,243,243);
  background: -moz-linear-gradient(top,  rgba(243,243,243,1) 0%, rgba(235,235,235,1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(243,243,243,1)), color-stop(100%,rgba(235,235,235,1)));
  background: -webkit-linear-gradient(top,  rgba(243,243,243,1) 0%,rgba(235,235,235,1) 100%);
  background: -o-linear-gradient(top,  rgba(243,243,243,1) 0%,rgba(235,235,235,1) 100%);
  background: -ms-linear-gradient(top,  rgba(243,243,243,1) 0%,rgba(235,235,235,1) 100%);
  background: linear-gradient(to bottom,  rgba(243,243,243,1) 0%,rgba(235,235,235,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#ebebeb',GradientType=0 );
}

.column-second .hentry:first-child {
  margin-top: 0;
}

.column-second .hentry .featured-image {
  margin-bottom: 10px;
}


/* PRODUCT ---------------- */
.product-img,
.product-info {
  display: inline-block;
  vertical-align: top;
}

.product-img img {
  margin-right: 20px;
}

.product-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-info a {
  color: inherit;
  font-weight: bold;
}

.product-info a:before {
  content: '›';
  padding-right: 5px;
}

.image-gallery {
  font-size: 0;
}

.image-gallery a {
  display: inline-block;
  margin: 0 0 20px 25px;
}

.image-gallery a:nth-child(4n+1) {
  margin-left: 0;
}


/* WIDGET ---------------- */
.widget {
  margin-bottom: 30px;
}

.widget ul {
  list-style: none;
  margin: 0;
}

#wp-calendar {
  width: 100%;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: #7f7d74;
}

#wp-calendar caption {
  text-align: center;
}

#wp-calendar thead {
  font-weight: bold;
  color: #000;
}

#wp-calendar th,
#wp-calendar td {
  vertical-align: middle;
  text-align: center;
  padding: 5px;
}

#wp-calendar #prev {
  text-align: left;
}

#wp-calendar #next {
  text-align: right;
}

.footer .widget {
  margin-bottom: 0;
}

.footer .widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}

.footer .widget li {
  font-size: 13px;
  display: inline-block;
  vertical-align: top;
  margin-top: 0;
  margin-right: 10px;
}

.footer .widget li:before {
  content: '|';
  padding-right: 10px;
}

.footer .widget  li:first-child:before {
  content: '';
  padding-right: 0;
}

/* Simply instagram style */
.front-photo {
  padding: 0;
  margin: 15px 10px 0 0;
  border: 0;
  border-radius: 0;
}

.widget_sp_image img {
  vertical-align: top;
}


/* FOOTER ---------------- */
.publications {
  font-size: 0;
}

.publications .sub-title {
  color: #FFFFFF;
  padding: 2px 10px;
}

.preview-img {
  vertical-align: top;
  display: inline-block;
  margin: 15px 10px 20px 0;
}

.preview-img:first-child {
  margin-left: 10px;
}

.footer {
  background: #000;
  color: #999;
}

/* Start custom CSS, Jonas & Torkel  */

body {
    background: none repeat scroll 0 0 #FFFFFF !important;
}

.search-bar {
    padding: 4px 10px;
}

input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], textarea {
    padding: 4px;
}

input[type="submit"], button {
    padding: 5px;
}

.header {
    background: none repeat scroll 0 0 #FFFFFF;
	padding: 30px 10px 30px 0;
}

.wrapper {
    box-shadow: none;
}

.background-stripe {
    background: linear-gradient(to bottom, #494949 0%, #494949 50%, #333333 44%, #333333 100%) repeat scroll 0 0 transparent;
}

.site-name a {
    background: url("../img/logo-dokument.png") no-repeat scroll center center transparent;
    height: 81px;
    width: 378px;
}

.column-top .hentry, .column-first .hentry {
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 23px;
}


.featured-image.small.wp-post-image {
width: 190px;
height: auto;
}

.widget.widget_instagram_recent_media.wysiwyg {
    margin-left: 22px;
}

.push-img {
	float: left;
}

/* End custom CSS, Jonas & Torkel  */