@charset "UTF-8";
/********************************
Theme: InPublix
Author: Henrik Rosengren
Author URL: http://www.bysted.se/

Stylesheet: Main Stylesheet
Version: 1.1
********************************/
/******************************************************************
Version: 1.1.4
******************************************************************/
/*Usage
	@include MQ(M) {
		Content
	}
*/
/******************************************************************
Version: 1.2.20
******************************************************************/
/*********************
HYPHENS

p {
  // Använda standardvärden
  @include hyphenate-settings;

  // Använda anpassade värden
  @include hyphenate-settings(
    $hyphens: auto,
    $limit_chars: 6 3 3,
    $limit_lines: 2,
    $limit_last: always,
    $limit_zone: 8%
  );
}

****/
/*********************
Font awesome icon

.user-icon {
  @include fa-icon("\f007"); // Standard: solid i classic
}

.mail-icon {
  @include fa-icon("\f0e0", #ff5733, "light"); // Light-stil med röd färg
}

.sharp-user-icon {
  @include fa-icon("\f007", rgb(0, 150, 136), "solid", "sharp"); // Sharp solid med turkos färg
}

.brand-icon {
  @include fa-icon("\f099", #1da1f2, "brands"); // Twitter-logga i blå färg
}

*********************/
/*********************
IMAGE FILTERS

img { 
  @include filter(grayscale, 100%);
}

*********************/
/*********************
Alpha Background

@include alpha-attribute('background-color', rgba(black, 0.5), white);
@include alpha-attribute('background', opacify($color, 0.1), $background);
@include alpha-attribute('background', transparentize($color, 0.2), $background);

*********************/
/*********************
Text Background

@include text-background(2em, 1em, white);

*********************/
/*********************
Object Fit
*********************/
/*
This mixin can be used to set the object-fit:
@include object-fit(contain);
or object-fit and object-position:
@include object-fit(cover, top);
 */
/*********************
  Disable hyphens
*********************/
/*********************
Smooth Scroll for IOS
*********************/
/*

*/
/*********************
Hide Scroll bars
*********************/
/*********************
OPACITY

@include opacity(0.8);

*********************/
/*********************
Gradient
*********************/
/*********************
CSS3 GRADIENTS
*********************/
/*********************
Box shadow
*********************/
/*********************
PREFIXES
*********************/
/*********************
Colors
*********************/
/*********************
TRANSITIONS
*********************/
/*********************
SHOW/HIDE
*********************/
/*********************
OTHER
*********************/
/*
 https://joshbroton.com/quick-fix-sass-mixins-for-css-keyframe-animations/

 Using the mixins looks like this:

 @include keyframes(move-the-object) {
0%   { left: 100px; }
100% { left: 200px; }
 }

 .object-to-animate {
@include animation('move-the-object .5s 1', 'move-the-object-again .5s 1 .5s');
 } 

 */
/*********************
BACKGROUND POSITION
*********************/
/* 
 .container-with-floated-children {
@extend %clearfix;
 }
 */
@import url(https://fonts.googleapis.com/css?family=Ubuntu:400,300,300italic,500,400italic,500italic,700,700italic);
/******************************************************************
Version: 1.6
******************************************************************/
/*********************
TRANSITIONS

a {
  color: gray;
  @include transition(color .3s ease);
  &:hover {
    color: black;
  }
}
*********************/
/******************************************************************
Version: 1.0.15
******************************************************************/
/* Basic mixins */
/* Justify */
/* Align */
/* Other */
/*
For modern browsers
.grid-container {
  @include responsive-grid(4, 15px, 3, 2); // 4 kolumner på desktop, 3 på tablet, 2 på mobil, 15px gap
}
*/
/*
For modern browsers
.grid-container {
  @include square-grid(3, 20px); // 3 kolumner, 20px gap
}
*/
/*
  For older browsers
  .grid-container {
  @include square-grid(3, 20px); // 3 kolumner, 20px gap
}
  */
/********************************
Theme: InPublix
Author: Henrik Rosengren
Author URL: http://www.bysted.se/

Stylesheet: Colors
********************************/
/******** BASE ********/
/******** CUSTOM ********/
/* links */
/******** TABLES ********/
/******** Hicharts ********/
/********************************
Theme: InPublix
Author: Henrik Rosengren
Author URL: http://www.bysted.se/

Stylesheet: Typography
********************************/
/*********************
FONT FAMILY
*********************/
/*********************
BODY
*********************/
body {
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  line-height: 1.375em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*********************
LINK STYLES
*********************/
a {
  color: #5c93ae;
  text-decoration: none;
}
a:hover, a:focus {
  color: #497b93;
  outline: none;
}
a:link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

/*********************
HEADINGS
*********************/
/*h1, h2, h3, h4, h5, h6{
	display: inline-block;
	-webkit-column-break-before: avoid;
	break-before: avoid-column;

	-webkit-column-break-after: avoid;
	break-after: avoid-column;

	-webkit-column-break-inside: avoid;
	break-inside: avoid-column;

	margin-top: 0;
}*/
h1 {
  font-size: 1.5em;
  line-height: 1.3em;
  margin-top: 0.8em;
  margin-bottom: 0.3em;
  font-weight: 500;
  color: #5c93ae;
}

h2 {
  font-size: 1.1em;
  text-transform: uppercase;
  line-height: 1.3em;
  margin-top: 1em;
  margin-bottom: 0.2em;
  font-weight: 500;
}
h2 + p {
  margin-top: 0.1em;
}
h2 + h2 {
  margin-top: 1em;
}
h2 + h3, h2 + h4 {
  margin-top: 0em;
}
h2 + table {
  margin-top: 1em;
}

h3 {
  font-size: 1.2em;
  margin-top: 1em;
  line-height: 1.3em;
  margin-bottom: 0.2em;
  font-weight: 500;
}
h3 + p {
  margin-top: 0.1em;
}

h4 {
  margin-top: 1em;
  font-size: 1em;
  line-height: 1.375em;
  margin-bottom: 0.2em;
  font-weight: 500;
}
h4 + p {
  margin-top: 0.1em;
}

h5 {
  margin-top: 1.3em;
  font-size: 1em;
  line-height: 1.375em;
  margin-bottom: 0.2em;
  font-weight: normal;
}
h5 + p {
  margin-top: 0.1em;
}

p {
  margin-bottom: 1em;
  margin-top: 0;
}

@media only screen and (min-width: 768px) {
  h1 {
    font-size: 2.1em;
    line-height: 1.2em;
  }
}
/******************************************************************
Version: 1.2
******************************************************************/
/*********************
IMAGE FILTERS

img { 
  @include filter(grayscale, 100%);
}

*********************/
/*********************
OPACITY

@include opacity(0.8);

*********************/
/*********************
Gradient
*********************/
/*********************
Box shadow
*********************/
/*********************
PREFIXES
*********************/
/*********************
SHOW/HIDE
*********************/
/*********************
OTHER
*********************/
/* 
.container-with-floated-children {
  @extend %clearfix;
}
*/
/******************************************************************
Version: 1.1
******************************************************************/
/*********************
TRANSITIONS

a {
  color: gray;
  @include transition(color .3s ease);
  &:hover {
    color: black;
  }
}
*********************/
/********************************
Theme: InPublix
Author: Henrik Rosengren
Author URL: http://www.bysted.se/

Stylesheet: TinyMCE Editor
********************************/
.readmore:after {
  font-family: "FontAwesome";
  content: "\f054";
  padding-left: 5px;
  position: relative;
  font-size: 90%;
}

h1 span.text-xl {
  font-size: 3.2em;
  letter-spacing: -0.03em;
}
h1 span.text-xxl {
  margin: 0.4em 0 !important;
  font-size: 300%;
  letter-spacing: -0.05em;
  display: block;
  font-weight: 400;
}

h2 span.text-xl {
  font-size: 1.4em;
  line-height: 1.3;
}
h2 span.text-xxl {
  letter-spacing: -0.03em;
  font-size: 150%;
  line-height: 1.2;
}
h2 span.text-xxxl {
  letter-spacing: -0.05em;
  font-size: 500%;
  line-height: 1.2;
}

.preamble {
  font-size: 1.1em;
  line-height: 1.4em;
}

.extralarge-text {
  font-size: 130%;
}
.extralarge-text h2 span.text-xxl {
  letter-spacing: 0;
}
@media only screen and (min-width: 768px) {
  .extralarge-text h2, .extralarge-text p {
    text-align: right;
  }
}

/********************************
Theme: InPublix
Author: Henrik Rosengren
Author URL: http://www.bysted.se/

Stylesheet: Layout
Version: 1.0
********************************/
.show-print {
  display: none;
}

.overlay-2024 .wpb_text_column {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  padding-left: 5%;
  margin-bottom: 0;
  background-color: rgba(169, 208, 145, 0.8);
  display: flex;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  /*@include MQ(XXL){
  	padding-left: 20%;
  }
  @include MQ(XXXL){
  	padding-left: 25%;
  }*/
}
@media only screen and (min-width: 1030px) {
  .overlay-2024 .wpb_text_column {
    padding-left: 3%;
  }
}
.overlay-2024 .wpb_text_column h1 {
  font-size: clamp(30px, 30vw, 280px);
  color: #fff;
  padding-bottom: 35px;
}
.overlay-2024 .wpb_text_column.orange {
  background-color: rgba(234, 163, 56, 0.8);
}
.overlay-2024 .wpb_text_column.blue-1 {
  background-color: rgba(159, 203, 237, 0.8);
}
.overlay-2024 .wpb_text_column.blue-2 {
  background-color: rgba(105, 154, 194, 0.8);
}
@media print {
  .overlay-2024 .wpb_text_column {
    padding-left: 50px;
  }
  .overlay-2024 .wpb_text_column h1 {
    font-size: clamp(30px, 30vw, 180px);
  }
}

@media print {
  .overlay-2025 {
    max-height: 60vh;
    min-height: 60vh !important;
  }
}
.overlay-2025 .wpb_text_column {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  padding-left: 5%;
  margin-bottom: 0;
  display: flex;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  /*@include MQ(XXL){
  	padding-left: 20%;
  }
  @include MQ(XXXL){
  	padding-left: 25%;
  }*/
}
@media only screen and (min-width: 1030px) {
  .overlay-2025 .wpb_text_column {
    padding-left: 3%;
  }
}
.overlay-2025 .wpb_text_column h1 {
  font-size: clamp(30px, 30vw, 280px);
  color: #fff;
  padding-bottom: 35px;
}
.overlay-2025 .wpb_text_column.orange {
  background-color: rgba(234, 163, 56, 0.8);
}
.overlay-2025 .wpb_text_column.blue-1 {
  background-color: rgba(159, 203, 237, 0.8);
}
.overlay-2025 .wpb_text_column.blue-2 {
  background-color: rgba(105, 154, 194, 0.8);
}
.overlay-2025 .wpb_text_column.image-caption {
  color: #000;
  display: none;
  position: absolute;
  bottom: 50px;
  right: 50px;
  left: auto;
  max-width: 600px;
  font-size: 85%;
  line-height: 1.35;
}
@media only screen and (min-width: 768px) {
  .overlay-2025 .wpb_text_column.image-caption {
    display: block;
  }
}
@media print {
  .overlay-2025 .wpb_text_column.image-caption {
    display: block;
  }
}
@media print {
  .overlay-2025 .wpb_text_column {
    padding-left: 50px;
    /*&.image-caption{
    	display: none;
    }*/
  }
  .overlay-2025 .wpb_text_column h1 {
    font-size: clamp(30px, 30vw, 180px);
  }
}
.overlay-2025 .emblem {
  position: absolute;
  top: 50px;
  left: auto;
  right: 50px;
  max-width: 200px;
  margin-bottom: 0;
  /*@include MQ(P){
  	top: auto;
  	right: 50px;
  	bottom: 10px;
  }*/
}

.bigtext {
  font-size: 10em;
  margin-top: -25px;
  margin-bottom: 0;
}

.bigno {
  font-size: 2.7em;
  letter-spacing: -0.05em;
}

.ip-panel.menu .overview {
  display: none;
}
.ip-panel.overview {
  background-color: rgba(255, 255, 255, 0.8);
}
.ip-panel.overview {
  background: #fff !important;
}
.ip-panel.overview .flexgrid .swiper-slide {
  height: 80px !important;
  background-color: #5c93ae;
  background-image: none !important;
  transition: background-color 150ms ease;
}
.ip-panel.overview .flexgrid .swiper-slide a {
  align-items: center;
}
.ip-panel.overview .flexgrid .swiper-slide a .overview-menu-title {
  background: none;
  position: static;
  padding: 1em;
}
.ip-panel.overview .flexgrid .swiper-slide:hover {
  background-color: #477890;
}
.ip-panel.overview .flexgrid .swiper-slide:hover a .overview-menu-title::after {
  border-bottom-color: #112369;
}

.ip-panel.menu a, .ip-panel.menu a:hover, .ip-panel.menu a:focus, .ip-panel.menu a:visited,
.ip-panel.overview a, .ip-panel.overview a:hover, .ip-panel.overview a:focus, .ip-panel.overview a:visited {
  color: #fff;
}

.ip-bar.top {
  background-color: #5c93ae;
}

.ip-panel.menu {
  background-color: #ff9d1c;
}
.ip-panel.menu .nav li {
  margin-bottom: 0.2em;
}
.ip-panel.menu .nav > li.disable > a {
  text-transform: uppercase;
  font-weight: bold;
}

.ip-panel-button.extras a:hover {
  color: inherit;
}

.ip-panel-button .text:after {
  font-size: 14px !important;
}

.ip-panel.overview .menu-item-type-custom {
  display: none;
}

.nav li a {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

.vc_row-has-fill .vc_column_container .wpb_wrapper .wpb_text_column h1:first-child {
  margin-top: 0;
}

.wpb_text_column {
  margin-bottom: 1em;
}

@media only screen and (min-width: 768px), print {
  .wpb_text_column.narrow {
    max-width: 720px;
  }
  .ip-panel-button.default-button .text {
    font-size: 0 !important;
  }
  .ip-panel-button.default-button .text:after {
    content: "Innehåll";
    font-size: 14px !important;
    line-height: 50px;
  }
}
@media only screen and (min-width: 1030px), print {
  .bigtext {
    font-size: 11em;
  }
  .flow .menu > div {
    -moz-column-rule: 1px solid rgba(0, 0, 0, 0.1);
         column-rule: 1px solid rgba(0, 0, 0, 0.1);
  }
  .front-box p {
    margin-top: 0;
  }
  .front-box .first {
    border-right: 1px solid #fff;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .front-box .vc_col-sm-6 {
    margin: 0 0 0 15px;
    width: calc(50% - 15px);
    margin-bottom: 50px;
  }
  .front-box h2 {
    margin-top: 10px;
  }
  .first-page-text h1 {
    font-size: 3em;
  }
}
/********************************
Theme: InPublix
Author: Henrik Rosengren
Author URL: http://www.bysted.se/

Stylesheet: Tables
********************************/
table {
  margin-bottom: 2em !important;
  /*border-bottom: 1px solid $table-line-color;
  border-top: 2px solid $table-line-color;*/
}
table.reset td {
  font-size: 1em;
  padding: 6px 0;
}
table.col3-eq td {
  width: 33% !important;
}
table.col4-eq td {
  width: 25% !important;
}
table td {
  padding: 6px 6px;
  vertical-align: bottom;
}
table td:empty {
  padding: 0.75em;
}
table td.noline {
  border-top: none !important;
  border-bottom: none !important;
}
table:not(.reset) td {
  width: 10% !important;
  border-bottom: 1px solid #e1e1e1;
}
table:not(.reset) td:first-child {
  width: auto !important;
  text-align: left;
}
table:not(.reset) td.sum {
  border-top: 2px solid #ccc !important;
}
table:not(.reset) td.addline {
  border-bottom: 2px solid #ccc;
}
table:not(.reset) td.border-left {
  border-left-color: #ccc;
}
table:not(.reset) td.border-right {
  border-right-color: #ccc;
}
table:not(.reset) td.col-line:not(.no-col-line) {
  border-left-color: #ccc;
}
table:not(.reset) tr.sum td {
  border-top: 2px solid #ccc !important;
}
table:not(.reset) tr.addline td {
  border-bottom: 2px solid #ccc;
}
table.auto tr {
  border-bottom-color: #e1e1e1 !important;
}

/********************************
Theme: InPublix
Author: Christer Lindgren
Author URL: http://www.bysted.se/

Stylesheet: Hichcharts
********************************/
#content .chart-title {
  font-weight: bold;
  color: #000;
  border-bottom: 1px solid #000;
  margin-bottom: 0.3em;
  padding-bottom: 0.2em;
}
#content .chart-sub-title {
  font-size: 0.8em;
}
#content .chart-description {
  font-size: 0.75em;
  margin-top: -2em;
  margin-bottom: 1em;
  color: #000;
}
#content .hichart {
  margin-bottom: 0.5em !important;
}
#content .hichart .highcharts-data-labels text {
  color: #000 !important;
  fill: #000 !important;
}
#content .hichart .highcharts-tooltip text tspan {
  font-size: 12px !important;
}
#content .hichart .highcharts-axis path, #content .hichart .highcharts-grid path {
  stroke: #ccc;
}
#content .hichart.hilight-nth-col .highcharts-series-group .highcharts-series rect:nth-child(1), #content .hichart.hilight-nth-col .highcharts-series-group .highcharts-series rect:nth-child(5), #content .hichart.hilight-nth-col .highcharts-series-group .highcharts-series rect:nth-child(9) {
  fill: rgb(255, 157, 28);
}
#content .hichart.hilight-nth-col div.highcharts-legend .highcharts-legend-item:first-child:before {
  content: "";
  width: 16px;
  height: 13px;
  background-color: rgb(255, 157, 28);
  position: absolute;
  top: 4px;
  left: -17px;
}
#content .hichart.hilight-nth-col-stacked .highcharts-series-group .highcharts-series-1 rect:nth-child(1), #content .hichart.hilight-nth-col-stacked .highcharts-series-group .highcharts-series-1 rect:nth-child(5), #content .hichart.hilight-nth-col-stacked .highcharts-series-group .highcharts-series-1 rect:nth-child(9) {
  fill: rgb(255, 157, 28);
}
#content .hichart.hilight-last-col .highcharts-series-group .highcharts-series rect:last-child {
  fill: rgb(255, 157, 28);
}
#content .hichart.hilight-last-col div.highcharts-legend .highcharts-legend-item:first-child:before {
  content: "";
  width: 16px;
  height: 13px;
  background-color: rgb(255, 157, 28);
  position: absolute;
  top: 4px;
  left: -17px;
}
#content .hichart.hilight-last-col-stacked .highcharts-series-group .highcharts-series-1 rect:last-child {
  fill: rgb(255, 157, 28);
}
#content .hichart.hide-first-col .highcharts-legend .highcharts-legend-item:first-child {
  display: none;
}
#content .hichart.line-2-col .highcharts-series-group .highcharts-markers.highcharts-series-1 {
  display: none;
}
#content .hichart.line-2-col .highcharts-legend .highcharts-legend-item path:nth-child(2) {
  display: none;
}
#content .hichart.line-3-col .highcharts-series-group .highcharts-markers.highcharts-series-2 {
  display: none;
}
#content .hichart.line-3-col .highcharts-legend .highcharts-legend-item path:nth-child(2) {
  display: none;
}
#content .hichart.line-4-col .highcharts-series-group .highcharts-markers.highcharts-series-3 {
  display: none;
}
#content .hichart.line-4-col .highcharts-legend .highcharts-legend-item path:nth-child(2) {
  display: none;
}

/********************************
Theme: InPublix
Author: Henrik Rosengren
Author URL: http://www.bysted.se/

Stylesheet: Overrides
********************************/
body.qr2023.home h1, body.qr2023 .post-2 h1 {
  margin-top: 0;
}
body.qr2023.home h1 span.text-xxl, body.qr2023 .post-2 h1 span.text-xxl {
  font-size: 1.8em;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
body.qr2023.home h1 span.text-xl, body.qr2023 .post-2 h1 span.text-xl {
  font-size: 1.3em;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
body.qr2023.home h2, body.qr2023 .post-2 h2 {
  color: #5c93ae;
  font-weight: 600;
}
body.qr2023.home h2 span.text-xxl, body.qr2023 .post-2 h2 span.text-xxl {
  font-size: 2.2em;
}
body.qr2023.home h4 + h2, body.qr2023 .post-2 h4 + h2 {
  margin-top: 0.3em;
}

@media print {
  /********************************
  Theme: InPublix
  Author: Henrik Rosengren
  Author URL: http://www.bysted.se/

  Stylesheet: Print
  ********************************/
  table td {
    padding: 4px 6px;
  }
  a {
    color: #000;
  }
  .wpb_text_column.narrow.printcolumns-2 {
    max-width: 100%;
  }
  .front-box {
    min-height: 730px;
  }
  .show-print {
    display: block !important;
  }
  .add-print-padding-5p {
    padding-left: 5%;
    padding-right: 5%;
  }
}/*# sourceMappingURL=style.css.map */