@charset "UTF-8";
/*
Project: ks-main-template.
Description: Set up your project color palette here
Author: Karl Karlsson
Date: 2017-03-23
Licence: http://kringelstan.se/
*/
/**
 * Basic Settings
 */
/*
http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
This is use to reduce browser inconsistencies in things like default line heights, margins and font sizes of headings etc
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

/*
Project: Kringelstan
Description: Basic mixins
Author: Karl Karlsson
Date: 2019-03-20
Licence: https://kringelstan.se/
*/
/*===============================================================================
	Transitions
===============================================================================*/
/*===============================================================================
	Box-shadow
===============================================================================*/
/*===============================================================================
	Background color & Opacity
===============================================================================*/
/*===============================================================================
	Alignment
===============================================================================*/
/*===============================================================================
	Other
===============================================================================*/
/*===============================================================================
	Puffs Masonry effects
===============================================================================*/
@-webkit-keyframes masonry_fade_in_scale_animation {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0; }
  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0; }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; } }
@keyframes masonry_fade_in_scale_animation {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0; }
  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0; }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; } }

/*===============================================================================
	Placeholder
===============================================================================*/
/*
Project: Kringelstan
Description: Grid Column Classes
Author: Karl Karlsson
Date: 2019-03-10
Licence: https://kringelstan.se/
*/
/*
Project: Kringelstan
Description: Grid system 12 columns (1-12)
Author: Karl Karlsson
Date: 2019-03-20
Licence: http://kringelstan.se/

TABLE OF CONTENTS
 
===================================== 
* Imports, Global varibles & Mixins
=====================================

1. 	Mixins
2. 	Imports - Grid classes mixins
3. 	Glutter	
4. 	Classes - Align / Display
5. 	Page Wrapper Sizes
6.	Breakpoints
7. 	Column Sizes

====================================
* Grid
====================================

1.	Containers
2.	Row
3.	Columns =>
	3.1	 Column Grid Classes
	3.2. Column breakpoints
	3.3  Hidden / Visible

*/
/*=====================================================================================================
 *																									 	
 * Mixins, Imports & Global varibles 												
 *			                                                                                         
 ====================================================================================================*/
/*===============================================================================
1.  Mixins 
===============================================================================*/
/*===============================================================================
2.   Imports - Grid classes mixins
===============================================================================*/
/*
Project: Kringelstan
Description: Grid Column Classes
Author: Karl Karlsson
Date: 2019-03-10
Licence: https://kringelstan.se/
*/
/*===============================================================================
3.   Glutter 
===============================================================================*/
/*===============================================================================
4.   Classes - Align / Display
===============================================================================*/
.text-center {
  text-align: center; }

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

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

.hidden-all {
  display: none; }

.margin-top {
  margin-top: 180px; }

.verticle-align {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }

.center {
  margin: 0 auto; }

.block {
  display: block; }

.rel {
  position: relative; }

/*===============================================================================
5.  Page Wrapper Sizes
===============================================================================*/
/*===============================================================================
6.  Breakpoints
===============================================================================*/
/*===============================================================================
7.  Column Sizes
===============================================================================*/
/*====================================================================================================
 *
 * Grid
 *
 ====================================================================================================*/
/*===============================================================================
1.   Containers
===============================================================================*/
.container {
  margin-left: 15px;
  margin-right: 15px;
  margin: 0 auto;
  width: 100%; }
  .container:before, .container:after {
    content: "";
    display: table; }
  .container:after {
    clear: both; }
  @media (min-width: 768px) {
    .container {
      max-width: 768px;
      /* 768px */ } }
  @media (min-width: 900px) {
    .container {
      max-width: 900px;
      /* 900px */ } }
  @media (min-width: 1024px) {
    .container {
      max-width: 900px;
      /* 900px */ } }
  @media (min-width: 1140px) {
    .container {
      max-width: 1024px;
      /* 1024px */ } }
  @media (min-width: 1240px) {
    .container {
      max-width: 1140px;
      /* 1140px */ } }
  @media (min-width: 1440px) {
    .container {
      max-width: 1240px;
      /* 1200px */ } }

.container-collapse {
  margin: 0 auto;
  width: 100%; }
  .container-collapse:before, .container-collapse:after {
    content: "";
    display: table; }
  .container-collapse:after {
    clear: both; }
  @media (min-width: 768px) {
    .container-collapse {
      max-width: 768px;
      /* 768px */ } }
  @media (min-width: 900px) {
    .container-collapse {
      max-width: 900px;
      /* 900px */ } }
  @media (min-width: 1024px) {
    .container-collapse {
      max-width: 900px;
      /* 900px */ } }
  @media (min-width: 1140px) {
    .container-collapse {
      max-width: 1024px;
      /* 1024px */ } }
  @media (min-width: 1240px) {
    .container-collapse {
      max-width: 1140px;
      /* 1140px */ } }
  @media (min-width: 1440px) {
    .container-collapse {
      max-width: 1240px;
      /* 1200px */ } }

.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  width: 100%; }
  .container-fluid:before, .container-fluid:after {
    content: "";
    display: table; }
  .container-fluid:after {
    clear: both; }

.container-fluid-collapse {
  margin: 0 auto;
  width: 100%; }
  .container-fluid-collapse:before, .container-fluid-collapse:after {
    content: "";
    display: table; }
  .container-fluid-collapse:after {
    clear: both; }

.container-collapse-wide {
  margin: 0 auto;
  width: 100%; }
  .container-collapse-wide:before, .container-collapse-wide:after {
    content: "";
    display: table; }
  .container-collapse-wide:after {
    clear: both; }
  @media (min-width: 768px) {
    .container-collapse-wide {
      max-width: 96%;
      /* 768px */ } }
  @media (min-width: 900px) {
    .container-collapse-wide {
      max-width: 95%;
      /* 900px */ } }
  @media (min-width: 1024px) {
    .container-collapse-wide {
      max-width: 95%;
      /* 900px */ } }
  @media (min-width: 1140px) {
    .container-collapse-wide {
      max-width: 95%;
      /* 1024px */ } }
  @media (min-width: 1240px) {
    .container-collapse-wide {
      max-width: 95%;
      /* 1140px */ } }
  @media (min-width: 1440px) {
    .container-collapse-wide {
      max-width: 85%;
      /* 1300px */ } }

.container-collapse-wide-col {
  margin: 0 auto;
  width: 100%; }
  .container-collapse-wide-col:before, .container-collapse-wide-col:after {
    content: "";
    display: table; }
  .container-collapse-wide-col:after {
    clear: both; }
  @media (min-width: 768px) {
    .container-collapse-wide-col {
      max-width: 96%;
      /* 768px */ } }
  @media (min-width: 900px) {
    .container-collapse-wide-col {
      max-width: 97.5%;
      /* 900px */ } }
  @media (min-width: 1024px) {
    .container-collapse-wide-col {
      max-width: 97.5%;
      /* 1024px */ } }
  @media (max-width: 1440px) and (min-width: 1140px) {
    .container-collapse-wide-col {
      max-width: 90%;
      /* 1440px - 1140px */ } }
  @media (min-width: 1440px) {
    .container-collapse-wide-col {
      max-width: 87%;
      /* 1440px */ } }

/*===============================================================================
2.   Rows
===============================================================================*/
[class*='row'] {
  margin: 0 auto; }
  [class*='row']:before, [class*='row']:after {
    content: "";
    display: table; }
  [class*='row']:after {
    clear: both; }
  [class*='row'][class*='-small'] {
    width: 768px; }
  [class*='row'][class*='-medium'] {
    width: 900px; }
  [class*='row'][class*='-large'] {
    width: 1140px; }
  [class*='row'][class*='-full'] {
    width: 100%; }

/*===============================================================================
3.   Columns
===============================================================================*/
[class*="col-"] {
  float: left;
  display: block;
  padding: 15px; }

[class*="float-none"] {
  float: none; }

.collapse {
  padding: 0; }

.clear-top {
  padding-top: 0; }

.clear-right {
  padding-right: 0; }

.clear-bottom {
  padding-bottom: 0; }

.clear-left {
  padding-left: 0; }

.clear-top-bottom {
  padding-top: 0;
  padding-bottom: 0; }

.clear-right-left {
  padding-right: 0;
  padding-left: 0; }

.padd {
  padding: 15px; }

.padd-top {
  padding-top: 15px; }

.padd-right {
  padding-right: 15px; }

.padd-bottom {
  padding-bottom: 15px; }

.padd-left {
  padding-left: 15px; }

.padd-right-left {
  padding-left: 15px;
  padding-right: 15px; }

.padd-top-bottom {
  padding-top: 15px;
  padding-bottom: 15px; }

.padd-m {
  padding: 10px; }

.padd-top-m {
  padding-top: 10px; }

.padd-right-m {
  padding-right: 10px; }

.padd-bottom-m {
  padding-bottom: 10px; }

.padd-left-m {
  padding-left: 10px; }

.padd-small {
  padding: 5px; }

.padd-top-small {
  padding-top: 5px; }

.padd-right-small {
  padding-right: 5px; }

.padd-bottom-small {
  padding-bottom: 5px; }

.padd-left-small {
  padding-left: 5px; }

.marg-top {
  margin-top: 15px; }

.marg-right {
  margin-right: 15px; }

.marg-bottom {
  margin-bottom: 15px; }

.marg-left {
  margin-left: 15px; }

.marg-top-3x {
  margin-top: 45px; }

/*====================================== 
3.1   Column Grid Classes
======================================*/
.col-12 {
  width: 100%; }

.col-11 {
  width: 91.66%; }

.col-10 {
  width: 83.33%; }

.col-9 {
  width: 75%; }

.col-8 {
  width: 66.66%; }

.col-7 {
  width: 58.33%; }

.col-6 {
  width: 50%; }

.col-5 {
  width: 41.66%; }

.col-4 {
  width: 33.33%; }

.col-3 {
  width: 25%; }

.col-2 {
  width: 16.33%; }

.col-1 {
  width: 8.33%; }

.offset-12 {
  margin-left: 100%; }

.offset-11 {
  margin-left: 91.66%; }

.offset-10 {
  margin-left: 83.33%; }

.offset-9 {
  margin-left: 75%; }

.offset-8 {
  margin-left: 66.66%; }

.offset-7 {
  margin-left: 58.33%; }

.offset-6 {
  margin-left: 50%; }

.offset-5 {
  margin-left: 41.66%; }

.offset-4 {
  margin-left: 33.33%; }

.offset-3 {
  margin-left: 25%; }

.offset-2 {
  margin-left: 16.33%; }

.offset-1 {
  margin-left: 8.33%; }

.push-12 {
  margin-right: 100%; }

.push-11 {
  margin-right: 91.66%; }

.push-10 {
  margin-right: 83.33%; }

.push-9 {
  margin-right: 75%; }

.push-8 {
  margin-right: 66.66%; }

.push-7 {
  margin-right: 58.33%; }

.push-6 {
  margin-right: 50%; }

.push-5 {
  margin-right: 41.66%; }

.push-4 {
  margin-right: 33.33%; }

.push-3 {
  margin-right: 25%; }

.push-2 {
  margin-right: 16.33%; }

.push-1 {
  margin-right: 8.33%; }

/*====================================== 
3.2   Column breakpoints
======================================*/
@media (min-width: 1440px) {
  .col-12-xl-up {
    width: 100%; }
  .col-11-xl-up {
    width: 91.66%; }
  .col-10-xl-up {
    width: 83.33%; }
  .col-9-xl-up {
    width: 75%; }
  .col-8-xl-up {
    width: 66.66%; }
  .col-7-xl-up {
    width: 58.33%; }
  .col-6-xl-up {
    width: 50%; }
  .col-5-xl-up {
    width: 41.66%; }
  .col-4-xl-up {
    width: 33.33%; }
  .col-3-xl-up {
    width: 25%; }
  .col-2-half-xl-up {
    width: 20%; }
  .col-2-xl-up {
    width: 16.33%; }
  .col-1-xl-up {
    width: 8.33%; }
  .offset-12-xl-up {
    margin-left: 100%; }
  .offset-11-xl-up {
    margin-left: 91.66%; }
  .offset-10-xl-up {
    margin-left: 83.33%; }
  .offset-9-xl-up {
    margin-left: 75%; }
  .offset-8-xl-up {
    margin-left: 66.66%; }
  .offset-7-xl-up {
    margin-left: 58.33%; }
  .offset-6-xl-up {
    margin-left: 50%; }
  .offset-5-xl-up {
    margin-left: 41.66%; }
  .offset-4-xl-up {
    margin-left: 33.33%; }
  .offset-3-xl-up {
    margin-left: 25%; }
  .offset-2-xl-up {
    margin-left: 16.33%; }
  .offset-1-xl-up {
    margin-left: 8.33%; }
  .offset-0-xl-up {
    margin-left: 0; }
  .push-12-xl-up {
    margin-right: 100%; }
  .push-11-xl-up {
    margin-right: 91.66%; }
  .push-10-xl-up {
    margin-right: 83.33%; }
  .push-9-xl-up {
    margin-right: 75%; }
  .push-8-xl-up {
    margin-right: 66.66%; }
  .push-7-xl-up {
    margin-right: 58.33%; }
  .push-6-xl-up {
    margin-right: 50%; }
  .push-5-xl-up {
    margin-right: 41.66%; }
  .push-4-xl-up {
    margin-right: 33.33%; }
  .push-3-xl-up {
    margin-right: 25%; }
  .push-2-xl-up {
    margin-right: 16.33%; }
  .push-1-xl-up {
    margin-right: 8.33%; }
  .visible-xl-up {
    display: block; }
  .hidden-xl-up {
    display: none; }
  .collapse-xl-up {
    padding: 0; }
  .clear-top-xl-up {
    padding-top: 0; }
  .clear-right-xl-up {
    padding-right: 0; }
  .clear-bottom-xl-up {
    padding-bottom: 0; }
  .clear-left-xl-up {
    padding-left: 0; }
  .clear-top-bottom-xl-up {
    padding-top: 0;
    padding-bottom: 0; }
  .clear-right-left-xl-up {
    padding-right: 0;
    padding-left: 0; }
  .padd-top-xl-up {
    padding-top: 15px; }
  .padd-right-xl-up {
    padding-right: 15px; }
  .padd-bottom-xl-up {
    padding-bottom: 15px; }
  .padd-left-xl-up {
    padding-left: 15px; }
  .padd-top-bottom-xl-up {
    padding-top: 15px;
    padding-bottom: 15px; }
  .padd-right-left-xl-up {
    padding-right: 15px;
    padding-left: 15px; }
  .padd-xl-up {
    padding: 15px; }
  .marg-top-xl-up {
    margin-top: 15px; }
  .marg-right-xl-up {
    margin-right: 15px; }
  .marg-bottom-xl-up {
    margin-bottom: 15px; }
  .marg-left-xl-up {
    margin-left: 15px; }
  .marg-top-bottom-xl-up {
    margin-top: 15px;
    margin-bottom: 15px; }
  .marg-right-left-xl-up {
    margin-right: 15px;
    margin-left: 15px; }
  .text-align-left-xl-up {
    text-align: left; }
  .text-align-center-xl-up {
    text-align: center; }
  .text-align-right-xl-up {
    text-align: right; }
  .center-xl-up {
    margin: 0 auto; }
  .verticle-align-middle-xl-up {
    float: none !important;
    display: inline-block !important;
    vertical-align: middle !important; }
  .verticle-align-top-xl-up {
    float: none !important;
    display: inline-block !important;
    vertical-align: top !important; } }

@media (min-width: 1336px) and (max-width: 1440px) {
  .col-12-xxl {
    width: 100%; }
  .col-11-xxl {
    width: 91.66%; }
  .col-10-xxl {
    width: 83.33%; }
  .col-9-xxl {
    width: 75%; }
  .col-8-xxl {
    width: 66.66%; }
  .col-7-xxl {
    width: 58.33%; }
  .col-6-xxl {
    width: 50%; }
  .col-5-xxl {
    width: 41.66%; }
  .col-4-xxl {
    width: 33.33%; }
  .col-3-xxl {
    width: 25%; }
  .col-2-half-xxl {
    width: 20%; }
  .col-2-xxl {
    width: 16.33%; }
  .col-1-xxl {
    width: 8.33%; }
  .offset-12-xxl {
    margin-left: 100%; }
  .offset-11-xxl {
    margin-left: 91.66%; }
  .offset-10-xxl {
    margin-left: 83.33%; }
  .offset-9-xxl {
    margin-left: 75%; }
  .offset-8-xxl {
    margin-left: 66.66%; }
  .offset-7-xxl {
    margin-left: 58.33%; }
  .offset-6-xxl {
    margin-left: 50%; }
  .offset-5-xxl {
    margin-left: 41.66%; }
  .offset-4-xxl {
    margin-left: 33.33%; }
  .offset-3-xxl {
    margin-left: 25%; }
  .offset-2-xxl {
    margin-left: 16.33%; }
  .offset-1-xxl {
    margin-left: 8.33%; }
  .offset-0-xxl {
    margin-left: 0; }
  .push-12-xxl {
    margin-right: 100%; }
  .push-11-xxl {
    margin-right: 91.66%; }
  .push-10-xxl {
    margin-right: 83.33%; }
  .push-9-xxl {
    margin-right: 75%; }
  .push-8-xxl {
    margin-right: 66.66%; }
  .push-7-xxl {
    margin-right: 58.33%; }
  .push-6-xxl {
    margin-right: 50%; }
  .push-5-xxl {
    margin-right: 41.66%; }
  .push-4-xxl {
    margin-right: 33.33%; }
  .push-3-xxl {
    margin-right: 25%; }
  .push-2-xxl {
    margin-right: 16.33%; }
  .push-1-xxl {
    margin-right: 8.33%; }
  .visible-xxl {
    display: block; }
  .hidden-xxl {
    display: none; }
  .collapse-xl-up {
    padding: 0; }
  .clear-top-xxl {
    padding-top: 0; }
  .clear-right-xxl {
    padding-right: 0; }
  .clear-bottom-xxl {
    padding-bottom: 0; }
  .clear-left-xxl {
    padding-left: 0; }
  .clear-top-bottom-xxl {
    padding-top: 0;
    padding-bottom: 0; }
  .clear-right-left-xxl {
    padding-right: 0;
    padding-left: 0; }
  .padd-top-xxl {
    padding-top: 15px; }
  .padd-right-xxl {
    padding-right: 15px; }
  .padd-bottom-xxl {
    padding-bottom: 15px; }
  .padd-left-xxl {
    padding-left: 15px; }
  .padd-top-bottom-xxl {
    padding-top: 15px;
    padding-bottom: 15px; }
  .padd-right-left-xxl {
    padding-right: 15px;
    padding-left: 15px; }
  .padd-xxl {
    padding: 15px; }
  .marg-top-xxl {
    margin-top: 15px; }
  .marg-right-xxl {
    margin-right: 15px; }
  .marg-bottom-xxl {
    margin-bottom: 15px; }
  .marg-left-xxl {
    margin-left: 15px; }
  .marg-top-bottom-xxl {
    margin-top: 15px;
    margin-bottom: 15px; }
  .marg-right-left-xxl {
    margin-right: 15px;
    margin-left: 15px; }
  .text-align-left-xxl {
    text-align: left; }
  .text-align-center-xxl {
    text-align: center; }
  .text-align-right-xxl {
    text-align: right; }
  .center-xxl {
    margin: 0 auto; }
  .verticle-align-middle-xxl {
    float: none !important;
    display: inline-block !important;
    vertical-align: middle !important; }
  .verticle-align-top-xxl {
    float: none !important;
    display: inline-block !important;
    vertical-align: top !important; } }

@media (min-width: 1240px) and (max-width: 1336px) {
  .col-12-xl {
    width: 100%; }
  .col-11-xl {
    width: 91.66%; }
  .col-10-xl {
    width: 83.33%; }
  .col-9-xl {
    width: 75%; }
  .col-8-xl {
    width: 66.66%; }
  .col-7-xl {
    width: 58.33%; }
  .col-6-xl {
    width: 50%; }
  .col-5-xl {
    width: 41.66%; }
  .col-4-xl {
    width: 33.33%; }
  .col-3-xl {
    width: 25%; }
  .col-2-half-xl {
    width: 20%; }
  .col-2-xl {
    width: 16.33%; }
  .col-1-xl {
    width: 8.33%; }
  .offset-12-xl {
    margin-left: 100%; }
  .offset-11-xl {
    margin-left: 91.66%; }
  .offset-10-xl {
    margin-left: 83.33%; }
  .offset-9-xl {
    margin-left: 75%; }
  .offset-8-xl {
    margin-left: 66.66%; }
  .offset-7-xl {
    margin-left: 58.33%; }
  .offset-6-xl {
    margin-left: 50%; }
  .offset-5-xl {
    margin-left: 41.66%; }
  .offset-4-xl {
    margin-left: 33.33%; }
  .offset-3-xl {
    margin-left: 25%; }
  .offset-2-xl {
    margin-left: 16.33%; }
  .offset-1-xl {
    margin-left: 8.33%; }
  .offset-0-xl {
    margin-left: 0; }
  .push-12-xl {
    margin-right: 100%; }
  .push-11-xl {
    margin-right: 91.66%; }
  .push-10-xl {
    margin-right: 83.33%; }
  .push-9-xl {
    margin-right: 75%; }
  .push-8-xl {
    margin-right: 66.66%; }
  .push-7-xl {
    margin-right: 58.33%; }
  .push-6-xl {
    margin-right: 50%; }
  .push-5-xl {
    margin-right: 41.66%; }
  .push-4-xl {
    margin-right: 33.33%; }
  .push-3-xl {
    margin-right: 25%; }
  .push-2-xl {
    margin-right: 16.33%; }
  .push-1-xl {
    margin-right: 8.33%; }
  .visible-xl {
    display: block; }
  .hidden-xl {
    display: none; }
  .collapse-xl {
    padding: 0; }
  .clear-top-xl {
    padding-top: 0; }
  .clear-right-xl {
    padding-right: 0; }
  .clear-bottom-xl {
    padding-bottom: 0; }
  .clear-left-xl {
    padding-left: 0; }
  .clear-top-bottom-xl {
    padding-top: 0;
    padding-bottom: 0; }
  .clear-right-left-xl {
    padding-right: 0;
    padding-left: 0; }
  .padd-top-xl {
    padding-top: 15px; }
  .padd-right-xl {
    padding-right: 15px; }
  .padd-bottom-xl {
    padding-bottom: 15px; }
  .padd-left-xl {
    padding-left: 15px; }
  .padd-top-bottom-xl {
    padding-top: 15px;
    padding-bottom: 15px; }
  .padd-right-left-xl {
    padding-right: 15px;
    padding-left: 15px; }
  .padd-xl {
    padding: 15px; }
  .marg-top-xl {
    margin-top: 15px; }
  .marg-right-xl {
    margin-right: 15px; }
  .marg-bottom-xl {
    margin-bottom: 15px; }
  .marg-left-xl {
    margin-left: 15px; }
  .marg-top-bottom-xl {
    margin-top: 15px;
    margin-bottom: 15px; }
  .marg-right-left-xl {
    margin-right: 15px;
    margin-left: 15px; }
  .text-align-left-xl {
    text-align: left; }
  .text-align-center-xl {
    text-align: center; }
  .text-align-right-xl {
    text-align: right; }
  .center-xl {
    margin: 0 auto; }
  .verticle-align-middle-xl {
    float: none !important;
    display: inline-block !important;
    vertical-align: middle !important; }
  .verticle-align-top-xl {
    float: none !important;
    display: inline-block !important;
    vertical-align: top !important; } }

@media (min-width: 1140px) and (max-width: 1240px) {
  .col-12-lg {
    width: 100%; }
  .col-11-lg {
    width: 91.66%; }
  .col-10-lg {
    width: 83.33%; }
  .col-9-lg {
    width: 75%; }
  .col-8-lg {
    width: 66.66%; }
  .col-7-lg {
    width: 58.33%; }
  .col-6-lg {
    width: 50%; }
  .col-5-lg {
    width: 41.66%; }
  .col-4-lg {
    width: 33.33%; }
  .col-3-lg {
    width: 25%; }
  .col-2-half-lg {
    width: 20%; }
  .col-2-lg {
    width: 16.33%; }
  .col-1-lg {
    width: 8.33%; }
  .offset-12-lg {
    margin-left: 100%; }
  .offset-11-lg {
    margin-left: 91.66%; }
  .offset-10-lg {
    margin-left: 83.33%; }
  .offset-9-lg {
    margin-left: 75%; }
  .offset-8-lg {
    margin-left: 66.66%; }
  .offset-7-lg {
    margin-left: 58.33%; }
  .offset-6-lg {
    margin-left: 50%; }
  .offset-5-lg {
    margin-left: 41.66%; }
  .offset-4-lg {
    margin-left: 33.33%; }
  .offset-3-lg {
    margin-left: 25%; }
  .offset-2-lg {
    margin-left: 16.33%; }
  .offset-1-lg {
    margin-left: 8.33%; }
  .offset-0-lg {
    margin-left: 0; }
  .push-12-lg {
    margin-right: 100%; }
  .push-11-lg {
    margin-right: 91.66%; }
  .push-10-lg {
    margin-right: 83.33%; }
  .push-9-lg {
    margin-right: 75%; }
  .push-8-lg {
    margin-right: 66.66%; }
  .push-7-lg {
    margin-right: 58.33%; }
  .push-6-lg {
    margin-right: 50%; }
  .push-5-lg {
    margin-right: 41.66%; }
  .push-4-lg {
    margin-right: 33.33%; }
  .push-3-lg {
    margin-right: 25%; }
  .push-2-lg {
    margin-right: 16.33%; }
  .push-1-lg {
    margin-right: 8.33%; }
  .visible-lg {
    display: block; }
  .hidden-lg {
    display: none; }
  .collapse-lg {
    padding: 0; }
  .clear-top-lg {
    padding-top: 0; }
  .clear-right-lg {
    padding-right: 0; }
  .clear-bottom-lg {
    padding-bottom: 0; }
  .clear-left-lg {
    padding-left: 0; }
  .clear-top-bottom-lg {
    padding-top: 0;
    padding-bottom: 0; }
  .clear-right-left-lg {
    padding-right: 0;
    padding-left: 0; }
  .padd-top-lg {
    padding-top: 15px; }
  .padd-right-lg {
    padding-right: 15px; }
  .padd-bottom-lg {
    padding-bottom: 15px; }
  .padd-left-lg {
    padding-left: 15px; }
  .padd-top-bottom-lg {
    padding-top: 15px;
    padding-bottom: 15px; }
  .padd-right-left-lg {
    padding-right: 15px;
    padding-left: 15px; }
  .padd-lg {
    padding: 15px; }
  .marg-top-lg {
    margin-top: 15px; }
  .marg-right-lg {
    margin-right: 15px; }
  .marg-bottom-lg {
    margin-bottom: 15px; }
  .marg-left-lg {
    margin-left: 15px; }
  .marg-top-bottom-lg {
    margin-top: 15px;
    margin-bottom: 15px; }
  .marg-right-left-lg {
    margin-right: 15px;
    margin-left: 15px; }
  .text-align-left-lg {
    text-align: left; }
  .text-align-center-lg {
    text-align: center; }
  .text-align-right-lg {
    text-align: right; }
  .center-lg {
    margin: 0 auto; }
  .verticle-align-middle-lg {
    float: none !important;
    display: inline-block !important;
    vertical-align: middle !important; }
  .verticle-align-top-lg {
    float: none !important;
    display: inline-block !important;
    vertical-align: top !important; } }

@media (min-width: 1024px) and (max-width: 1140px) {
  .col-11-mdl {
    width: 91.66%; }
  .col-10-mdl {
    width: 83.33%; }
  .col-9-mdl {
    width: 75%; }
  .col-8-mdl {
    width: 66.66%; }
  .col-7-mdl {
    width: 58.33%; }
  .col-6-mdl {
    width: 50%; }
  .col-5-mdl {
    width: 41.66%; }
  .col-4-mdl {
    width: 33.33%; }
  .col-3-mdl {
    width: 25%; }
  .col-2-half-mdl {
    width: 20%; }
  .col-2-mdl {
    width: 16.33%; }
  .col-1-mdl {
    width: 8.33%; }
  .offset-12-mdl {
    margin-left: 100%; }
  .offset-11-mdl {
    margin-left: 91.66%; }
  .offset-10-mdl {
    margin-left: 83.33%; }
  .offset-9-mdl {
    margin-left: 75%; }
  .offset-8-mdl {
    margin-left: 66.66%; }
  .offset-7-mdl {
    margin-left: 58.33%; }
  .offset-6-mdl {
    margin-left: 50%; }
  .offset-5-mdl {
    margin-left: 41.66%; }
  .offset-4-mdl {
    margin-left: 33.33%; }
  .offset-3-mdl {
    margin-left: 25%; }
  .offset-2-mdl {
    margin-left: 16.33%; }
  .offset-1-mdl {
    margin-left: 8.33%; }
  .offset-0-mdl {
    margin-left: 0; }
  .push-12-mdl {
    margin-right: 100%; }
  .push-11-mdl {
    margin-right: 91.66%; }
  .push-10-mdl {
    margin-right: 83.33%; }
  .push-9-mdl {
    margin-right: 75%; }
  .push-8-mdl {
    margin-right: 66.66%; }
  .push-7-mdl {
    margin-right: 58.33%; }
  .push-6-mdl {
    margin-right: 50%; }
  .push-5-mdl {
    margin-right: 41.66%; }
  .push-4-mdl {
    margin-right: 33.33%; }
  .push-3-mdl {
    margin-right: 25%; }
  .push-2-mdl {
    margin-right: 16.33%; }
  .push-1-mdl {
    margin-right: 8.33%; }
  .visible-mdl {
    display: block; }
  .hidden-mdl {
    display: none; }
  .collapse-mdl {
    padding: 0; }
  .clear-top-mdl {
    padding-top: 0; }
  .clear-right-mdl {
    padding-right: 0; }
  .clear-bottom-mdl {
    padding-bottom: 0; }
  .clear-left-mdl {
    padding-left: 0; }
  .clear-top-bottom-mdl {
    padding-top: 0;
    padding-bottom: 0; }
  .clear-right-left-mdl {
    padding-right: 0;
    padding-left: 0; }
  .padd-top-mdl {
    padding-top: 15px; }
  .padd-right-mdl {
    padding-right: 15px; }
  .padd-bottom-mdl {
    padding-bottom: 15px; }
  .padd-left-mdl {
    padding-left: 15px; }
  .padd-top-bottom-mdl {
    padding-top: 15px;
    padding-bottom: 15px; }
  .padd-right-left-mdl {
    padding-right: 15px;
    padding-left: 15px; }
  .padd-mdl {
    padding: 15px; }
  .marg-top-mdl {
    margin-top: 15px; }
  .marg-right-mdl {
    margin-right: 15px; }
  .marg-bottom-mdl {
    margin-bottom: 15px; }
  .marg-left-mdl {
    margin-left: 15px; }
  .marg-top-bottom-mdl {
    margin-top: 15px;
    margin-bottom: 15px; }
  .marg-right-left-mdl {
    margin-right: 15px;
    margin-left: 15px; }
  .text-align-left-mdl {
    text-align: left; }
  .text-align-center-mdl {
    text-align: center; }
  .text-align-right-mdl {
    text-align: right; }
  .center-mdl {
    margin: 0 auto; }
  .verticle-align-middle-mdl {
    float: none !important;
    display: inline-block !important;
    vertical-align: middle !important; }
  .verticle-align-top-mdl {
    float: none !important;
    display: inline-block !important;
    vertical-align: top !important; } }

@media (min-width: 900px) and (max-width: 1024px) {
  .col-12-md {
    width: 100%; }
  .col-11-md {
    width: 91.66%; }
  .col-10-md {
    width: 83.33%; }
  .col-9-md {
    width: 75%; }
  .col-8-md {
    width: 66.66%; }
  .col-7-md {
    width: 58.33%; }
  .col-6-md {
    width: 50%; }
  .col-5-md {
    width: 41.66%; }
  .col-4-md {
    width: 33.33%; }
  .col-3-md {
    width: 25%; }
  .col-2-half-md {
    width: 20%; }
  .col-2-md {
    width: 16.33%; }
  .col-1-md {
    width: 8.33%; }
  .offset-12-md {
    margin-left: 100%; }
  .offset-11-md {
    margin-left: 91.66%; }
  .offset-10-md {
    margin-left: 83.33%; }
  .offset-9-md {
    margin-left: 75%; }
  .offset-8-md {
    margin-left: 66.66%; }
  .offset-7-md {
    margin-left: 58.33%; }
  .offset-6-md {
    margin-left: 50%; }
  .offset-5-md {
    margin-left: 41.66%; }
  .offset-4-md {
    margin-left: 33.33%; }
  .offset-3-md {
    margin-left: 25%; }
  .offset-2-md {
    margin-left: 16.33%; }
  .offset-1-md {
    margin-left: 8.33%; }
  .offset-0-md {
    margin-left: 0; }
  .push-12-md {
    margin-right: 100%; }
  .push-11-md {
    margin-right: 91.66%; }
  .push-10-md {
    margin-right: 83.33%; }
  .push-9-md {
    margin-right: 75%; }
  .push-8-md {
    margin-right: 66.66%; }
  .push-7-md {
    margin-right: 58.33%; }
  .push-6-md {
    margin-right: 50%; }
  .push-5-md {
    margin-right: 41.66%; }
  .push-4-md {
    margin-right: 33.33%; }
  .push-3-md {
    margin-right: 25%; }
  .push-2-md {
    margin-right: 16.33%; }
  .push-1-md {
    margin-right: 8.33%; }
  .visible-md {
    display: block; }
  .hidden-md {
    display: none; }
  .collapse-md {
    padding: 0; }
  .clear-top-md {
    padding-top: 0; }
  .clear-right-md {
    padding-right: 0; }
  .clear-bottom-md {
    padding-bottom: 0; }
  .clear-left-md {
    padding-left: 0; }
  .clear-top-bottom-md {
    padding-top: 0;
    padding-bottom: 0; }
  .clear-right-left-md {
    padding-right: 0;
    padding-left: 0; }
  .padd-top-md {
    padding-top: 15px; }
  .padd-right-md {
    padding-right: 15px; }
  .padd-bottom-md {
    padding-bottom: 15px; }
  .padd-left-md {
    padding-left: 15px; }
  .padd-top-bottom-md {
    padding-top: 15px;
    padding-bottom: 15px; }
  .padd-right-left-md {
    padding-right: 15px;
    padding-left: 15px; }
  .padd-md {
    padding: 15px; }
  .marg-top-md {
    margin-top: 15px; }
  .marg-right-md {
    margin-right: 15px; }
  .marg-bottom-md {
    margin-bottom: 15px; }
  .marg-left-md {
    margin-left: 15px; }
  .marg-top-bottom-md {
    margin-top: 15px;
    margin-bottom: 15px; }
  .marg-right-left-md {
    margin-right: 15px;
    margin-left: 15px; }
  .text-align-left-md {
    text-align: left; }
  .text-align-center-md {
    text-align: center; }
  .text-align-right-md {
    text-align: right; }
  .center-md {
    margin: 0 auto; }
  .verticle-align-middle-md {
    float: none !important;
    display: inline-block !important;
    vertical-align: middle !important; }
  .verticle-align-top-md {
    float: none !important;
    display: inline-block !important;
    vertical-align: top !important; } }

@media (min-width: 769px) and (max-width: 900px) {
  .col-12-sm {
    width: 100%; }
  .col-11-sm {
    width: 91.66%; }
  .col-10-sm {
    width: 83.33%; }
  .col-9-sm {
    width: 75%; }
  .col-8-sm {
    width: 66.66%; }
  .col-7-sm {
    width: 58.33%; }
  .col-6-sm {
    width: 50%; }
  .col-5-sm {
    width: 41.66%; }
  .col-4-sm {
    width: 33.33%; }
  .col-3-sm {
    width: 25%; }
  .col-2-half-sm {
    width: 20%; }
  .col-2-sm {
    width: 16.33%; }
  .col-1-sm {
    width: 8.33%; }
  .offset-12-sm {
    margin-left: 100%; }
  .offset-11-sm {
    margin-left: 91.66%; }
  .offset-10-sm {
    margin-left: 83.33%; }
  .offset-9-sm {
    margin-left: 75%; }
  .offset-8-sm {
    margin-left: 66.66%; }
  .offset-7-sm {
    margin-left: 58.33%; }
  .offset-6-sm {
    margin-left: 50%; }
  .offset-5-sm {
    margin-left: 41.66%; }
  .offset-4-sm {
    margin-left: 33.33%; }
  .offset-3-sm {
    margin-left: 25%; }
  .offset-2-sm {
    margin-left: 16.33%; }
  .offset-1-sm {
    margin-left: 8.33%; }
  .offset-0-sm {
    margin-left: 0; }
  .push-12-sm {
    margin-right: 100%; }
  .push-11-sm {
    margin-right: 91.66%; }
  .push-10-sm {
    margin-right: 83.33%; }
  .push-9-sm {
    margin-right: 75%; }
  .push-8-sm {
    margin-right: 66.66%; }
  .push-7-sm {
    margin-right: 58.33%; }
  .push-6-sm {
    margin-right: 50%; }
  .push-5-sm {
    margin-right: 41.66%; }
  .push-4-sm {
    margin-right: 33.33%; }
  .push-3-sm {
    margin-right: 25%; }
  .push-2-sm {
    margin-right: 16.33%; }
  .push-1-sm {
    margin-right: 8.33%; }
  .visible-sm {
    display: block; }
  .hidden-sm {
    display: none; }
  .collapse-sm {
    padding: 0; }
  .clear-top-sm {
    padding-top: 0; }
  .clear-right-sm {
    padding-right: 0; }
  .clear-bottom-sm {
    padding-bottom: 0; }
  .clear-left-sm {
    padding-left: 0; }
  .clear-top-bottom-sm {
    padding-top: 0;
    padding-bottom: 0; }
  .clear-right-left-sm {
    padding-right: 0;
    padding-left: 0; }
  .padd-top-sm {
    padding-top: 15px; }
  .padd-right-sm {
    padding-right: 15px; }
  .padd-bottom-sm {
    padding-bottom: 15px; }
  .padd-left-sm {
    padding-left: 15px; }
  .padd-top-bottom-sm {
    padding-top: 15px;
    padding-bottom: 15px; }
  .padd-right-left-sm {
    padding-right: 15px;
    padding-left: 15px; }
  .padd-sm {
    padding: 15px; }
  .marg-top-sm {
    margin-top: 15px; }
  .marg-right-sm {
    margin-right: 15px; }
  .marg-bottom-sm {
    margin-bottom: 15px; }
  .marg-left-sm {
    margin-left: 15px; }
  .marg-top-bottom-sm {
    margin-top: 15px;
    margin-bottom: 15px; }
  .marg-right-left-sm {
    margin-right: 15px;
    margin-left: 15px; }
  .text-align-left-sm {
    text-align: left; }
  .text-align-center-sm {
    text-align: center; }
  .text-align-right-sm {
    text-align: right; }
  .center-sm {
    margin: 0 auto; }
  .verticle-align-middle-sm {
    float: none !important;
    display: inline-block !important;
    vertical-align: middle !important; }
  .verticle-align-top-sm {
    float: none !important;
    display: inline-block !important;
    vertical-align: top !important; } }

@media (min-width: 480px) and (max-width: 768px) {
  .col-12-s {
    width: 100%; }
  .col-11-s {
    width: 91.66%; }
  .col-10-s {
    width: 83.33%; }
  .col-9-s {
    width: 75%; }
  .col-8-s {
    width: 66.66%; }
  .col-7-s {
    width: 58.33%; }
  .col-6-s {
    width: 50%; }
  .col-5-s {
    width: 41.66%; }
  .col-4-s {
    width: 33.33%; }
  .col-3-s {
    width: 25%; }
  .col-2-half-s {
    width: 20%; }
  .col-2-s {
    width: 16.33%; }
  .col-1-s {
    width: 8.33%; }
  .offset-12-s {
    margin-left: 100%; }
  .offset-11-s {
    margin-left: 91.66%; }
  .offset-10-s {
    margin-left: 83.33%; }
  .offset-9-s {
    margin-left: 75%; }
  .offset-8-s {
    margin-left: 66.66%; }
  .offset-7-s {
    margin-left: 58.33%; }
  .offset-6-s {
    margin-left: 50%; }
  .offset-5-s {
    margin-left: 41.66%; }
  .offset-4-s {
    margin-left: 33.33%; }
  .offset-3-s {
    margin-left: 25%; }
  .offset-2-s {
    margin-left: 16.33%; }
  .offset-1-s {
    margin-left: 8.33%; }
  .offset-0-s {
    margin-left: 0; }
  .push-12-s {
    margin-right: 100%; }
  .push-11-s {
    margin-right: 91.66%; }
  .push-10-s {
    margin-right: 83.33%; }
  .push-9-s {
    margin-right: 75%; }
  .push-8-s {
    margin-right: 66.66%; }
  .push-7-s {
    margin-right: 58.33%; }
  .push-6-s {
    margin-right: 50%; }
  .push-5-s {
    margin-right: 41.66%; }
  .push-4-s {
    margin-right: 33.33%; }
  .push-3-s {
    margin-right: 25%; }
  .push-2-s {
    margin-right: 16.33%; }
  .push-1-s {
    margin-right: 8.33%; }
  .visible-s {
    display: block; }
  .hidden-s {
    display: none; }
  .collapse-s {
    padding: 0; }
  .clear-top-s {
    padding-top: 0; }
  .clear-right-s {
    padding-right: 0; }
  .clear-bottom-s {
    padding-bottom: 0; }
  .clear-left-s {
    padding-left: 0; }
  .clear-top-bottom-s {
    padding-top: 0;
    padding-bottom: 0; }
  .clear-right-left-s {
    padding-right: 0;
    padding-left: 0; }
  .padd-top-s {
    padding-top: 15px; }
  .padd-right-s {
    padding-right: 15px; }
  .padd-bottom-s {
    padding-bottom: 15px; }
  .padd-left-s {
    padding-left: 15px; }
  .padd-top-bottom-s {
    padding-top: 15px;
    padding-bottom: 15px; }
  .padd-right-left-s {
    padding-right: 15px;
    padding-left: 15px; }
  .padd-s {
    padding: 15px; }
  .marg-top-s {
    margin-top: 15px; }
  .marg-right-s {
    margin-right: 15px; }
  .marg-bottom-s {
    margin-bottom: 15px; }
  .marg-left-s {
    margin-left: 15px; }
  .marg-top-bottom-s {
    margin-top: 15px;
    margin-bottom: 15px; }
  .marg-right-left-s {
    margin-right: 15px;
    margin-left: 15px; }
  .text-align-left-s {
    text-align: left; }
  .text-align-center-s {
    text-align: center; }
  .text-align-right-s {
    text-align: right; }
  .center-s {
    margin: 0 auto; }
  .verticle-align-middle-s {
    float: none !important;
    display: inline-block !important;
    vertical-align: middle !important; }
  .verticle-align-top-s {
    float: none !important;
    display: inline-block !important;
    vertical-align: top !important; } }

@media (max-width: 480px) {
  .col-12-xs {
    width: 100%; }
  .col-11-xs {
    width: 91.66%; }
  .col-10-xs {
    width: 83.33%; }
  .col-9-xs {
    width: 75%; }
  .col-8-xs {
    width: 66.66%; }
  .col-7-xs {
    width: 58.33%; }
  .col-6-xs {
    width: 50%; }
  .col-5-xs {
    width: 41.66%; }
  .col-4-xs {
    width: 33.33%; }
  .col-3-xs {
    width: 25%; }
  .col-2-half-xs {
    width: 20%; }
  .col-2-xs {
    width: 16.33%; }
  .col-1-xs {
    width: 8.33%; }
  .offset-12-xs {
    margin-left: 100%; }
  .offset-11-xs {
    margin-left: 91.66%; }
  .offset-10-xs {
    margin-left: 83.33%; }
  .offset-9-xs {
    margin-left: 75%; }
  .offset-8-xs {
    margin-left: 66.66%; }
  .offset-7-xs {
    margin-left: 58.33%; }
  .offset-6-xs {
    margin-left: 50%; }
  .offset-5-xs {
    margin-left: 41.66%; }
  .offset-4-xs {
    margin-left: 33.33%; }
  .offset-3-xs {
    margin-left: 25%; }
  .offset-2-xs {
    margin-left: 16.33%; }
  .offset-1-xs {
    margin-left: 8.33%; }
  .offset-0-xs {
    margin-left: 0; }
  .offset-0-xs {
    margin-left: 0; }
  .push-12-xs {
    margin-right: 100%; }
  .push-11-xs {
    margin-right: 91.66%; }
  .push-10-xs {
    margin-right: 83.33%; }
  .push-9-xs {
    margin-right: 75%; }
  .push-8-xs {
    margin-right: 66.66%; }
  .push-7-xs {
    margin-right: 58.33%; }
  .push-6-xs {
    margin-right: 50%; }
  .push-5-xs {
    margin-right: 41.66%; }
  .push-4-xs {
    margin-right: 33.33%; }
  .push-3-xs {
    margin-right: 25%; }
  .push-2-xs {
    margin-right: 16.33%; }
  .push-1-xs {
    margin-right: 8.33%; }
  .visible-xs {
    display: block; }
  .hidden-xs {
    display: none; }
  .collapse-xs {
    padding: 0; }
  .clear-top-xs {
    padding-top: 0; }
  .clear-right-xs {
    padding-right: 0; }
  .clear-bottom-xs {
    padding-bottom: 0; }
  .clear-left-xs {
    padding-left: 0; }
  .clear-right-left-xs {
    padding-right: 0;
    padding-left: 0; }
  .clear-top-bottom-xs {
    padding-top: 0;
    padding-bottom: 0; }
  .padd-top-xs {
    padding-top: 15px; }
  .padd-right-xs {
    padding-right: 15px; }
  .padd-bottom-xs {
    padding-bottom: 15px; }
  .padd-left-xs {
    padding-left: 15px; }
  .padd-top-bottom-xs {
    padding-top: 15px;
    padding-bottom: 15px; }
  .padd-right-left-xs {
    padding-right: 15px;
    padding-left: 15px; }
  .padd-xs {
    padding: 15px; }
  .marg-top-xs {
    margin-top: 15px; }
  .marg-right-xs {
    margin-right: 15px; }
  .marg-bottom-xs {
    margin-bottom: 15px; }
  .marg-left-xs {
    margin-left: 15px; }
  .marg-top-bottom-xs {
    margin-top: 15px;
    margin-bottom: 15px; }
  .marg-right-left-xs {
    margin-right: 15px;
    margin-left: 15px; }
  .text-align-left-xs {
    text-align: left; }
  .text-align-center-xs {
    text-align: center; }
  .text-align-right-xs {
    text-align: right; }
  .center-xs {
    margin: 0 auto; }
  .verticle-align-middle-xs {
    float: none !important;
    display: inline-block !important;
    vertical-align: middle !important; }
  .verticle-align-top-xs {
    float: none !important;
    display: inline-block !important;
    vertical-align: top !important; } }

/*====================================== 
3.3   Hidden / Visible
======================================*/
@media (min-width: 1140px) {
  .hidden-larger-screen-up {
    display: none !important; } }

@media (max-width: 1140px) {
  .hidden-tablet-mobile-screen {
    display: none !important; } }

@media (min-width: 769px) {
  .hidden-tablet-larger-screen {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 1140px) {
  .hidden-tablet-screen {
    display: none !important; } }

@media (max-width: 768px) {
  .hidden-mobile-screen {
    display: none !important; } }

@media (max-width: 480px) {
  .hidden-xs-mobile-screen {
    display: none !important; } }

/*
Project: Kringelstan.
Description: Main Colors
Author: Karl Karlsson
Date: 2019-03-20
Licence: https://kringelstan.se/

TABLE OF CONTENTS

1.	Main font colors
2.	Main Background Colors
3.	Silent/Load Colors
4.	Border color.
5.	Link colors.
6.	Other

*/
/*===============================================================================
1.  Main Font color (fc)
===============================================================================*/
/*===============================================================================
2.  Main Background Color (bg)
===============================================================================*/
/*===============================================================================
3. Silent/Loud Color
===============================================================================*/
/*===============================================================================
4. Border color
===============================================================================*/
/*===============================================================================
5. Link color
===============================================================================*/
/*===============================================================================
6. Button color
===============================================================================*/
/*===============================================================================
7. Mixins
===============================================================================*/
/*
Project: Kringelstan.
Description: Button settings
Author: Karl Karlsson
Date: 2019-03-20
Licence: https://kringelstan.se/
*/
/*
 *	Custom Fonts
*/
@font-face {
  font-family: 'Geomanist-Regular';
  src: url("fonts/Geomanist-Regular/Geomanist-Regular.eot");
  src: local("☺"), url("fonts/Geomanist-Regular/Geomanist-Regular.woff") format("woff"), url("fonts/Geomanist-Regular/Geomanist-Regular.ttf") format("truetype"), url("fonts/Geomanist-Regular/Geomanist-Regular.svg") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Kalinka-regular';
  src: url("fonts/Kalinka-regular/kalinka.eot");
  src: local("☺"), url("fonts/Kalinka-regular/kalinka.woff") format("woff"), url("fonts/Kalinka-regular/kalinka.ttf") format("truetype"), url("fonts/Kalinka-regular/kalinka.svg") format("svg");
  font-weight: normal;
  font-style: normal; }

/*
 *	Google Fonts
*/
/*
 *	Heading
*/
h1, h2, h3, h4, h4, h5, h6 {
  position: relative;
  color: #F58C02;
  line-height: 1.2;
  font-family: "Kalinka-regular", sans-serif; }

h2, h3, h4, h5, h6 {
  padding-bottom: 15px;
  font-weight: 500; }

h1 {
  font-size: 2.25em;
  padding-bottom: 30px; }

h2 {
  font-size: 1.6em;
  font-family: "Kalinka-regular", sans-serif; }

h3 {
  font-size: 1.4em;
  font-family: "Kalinka-regular", sans-serif; }

h4 {
  font-size: 1.3em; }

h5 {
  font-size: 1.2em; }

h6 {
  font-size: 1.15em; }

/*
 *	Paragraph
*/
p {
  font-size: 0.9em;
  font-family: "Geomanist-Regular", sans-serif;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  padding-bottom: 20px; }

/*
 *	Other
*/
blockquote {
  position: relative;
  display: block;
  padding: 15px 50px 20px 50px;
  background: #f8f8f8;
  margin-bottom: 20px; }
  blockquote:before {
    font-size: 1.1em;
    position: absolute;
    top: 10px;
    left: 15px;
    color: #ecd922;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f10d"; }
  blockquote p {
    padding-bottom: 0;
    font-size: 1.2em;
    color: #333333; }

em {
  font-style: italic; }

strong {
  font-weight: 700; }

/*
 *	Media Queries
*/
@media (max-width: 768px) {
  h1 {
    font-size: 2em; }
  h3 {
    font-size: 1.3em; }
  h4 {
    font-size: 1.2em; }
  h5 {
    font-size: 1.15em; }
  h6 {
    font-size: 1.1em; } }

@media (max-width: 480px) {
  h1 {
    font-size: 1.8em;
    padding-bottom: 20px; }
  h2 {
    font-size: 1.5em; }
  h3 {
    font-size: 1.2em; }
  h4 {
    font-size: 1.15em; }
  h5 {
    font-size: 1.1em; }
  h6 {
    font-size: 1em; } }

/*
Project: Kringelstan.
Description: Most basic page components
Author: Karl Karlsson
Date: 2019-04-06
Licence: https://kringelstan.se/
*/
.path-main-bgc {
  fill: #fff; }

.path-secondary-bgc {
  fill: #F58C02; }

.path-secondary-bgc-secondary {
  fill: #F2A900; }

.path-main-inverted-bgc {
  fill: #000; }

.font-size-zero {
  font-size: 0; }

.font-size-standard {
  font-size: 16px; }

.verticle-align-middle {
  float: none;
  display: inline-block;
  vertical-align: middle; }

.verticle-align-top {
  float: none;
  display: inline-block;
  vertical-align: top; }

.bg-fixed {
  background-attachment: fixed; }
  @media (max-width: 768px) {
    .bg-fixed {
      background-attachment: initial; } }

.table {
  display: table;
  width: 100%; }

.table-order-header {
  display: table-header-group; }

.table-order-footer {
  display: table-footer-group; }

/*================================================================
	Basic settings 
================================================================*/
* {
  box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  /* Prevent font scaling in landscape while allowing user zoom */ }

body {
  background-color: #1B0700;
  color: #fff;
  font-family: "Geomanist-Regular", sans-serif;
  font-size: 16px;
  height: 100%;
  overflow-x: hidden;
  position: relative;
  right: 0;
  line-height: 1.5;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease; }
  body.push-content-left {
    right: 350px; }
  body > * {
    /* Font rendering fix */
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased; }
  @media (min-width: 1336px) {
    body.push-content-left {
      right: 0; } }

a {
  text-decoration: none;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  a:hover {
    text-decoration: underline;
    cursor: pointer; }

img {
  max-width: 100%;
  height: auto;
  display: block;
  /* fixes the bottom gap between collapsed column*/ }

.article,
.section {
  width: 100%;
  padding: 2em 0; }
  .article:before, .article:after,
  .section:before,
  .section:after {
    content: "";
    display: table; }
  .article:after,
  .section:after {
    clear: both; }

.article-collapse,
.section-collapse {
  width: 100%;
  padding: 0; }

.wrapper-wpEditor p:first-of-type {
  padding-top: 0; }

.push-content-down {
  margin-top: 163px; }
  @media (max-width: 1336px) {
    .push-content-down {
      margin-top: 70px; } }
  @media (max-width: 768px) {
    .push-content-down {
      margin-top: 60px; } }
  @media (max-width: 480px) {
    .push-content-down {
      margin-top: 55px; } }

/*================================================================
	Main settings
================================================================*/
/*
 * Main pages styles
 */
.main.main-front-page {
  padding-bottom: 4em; }

.main.main-pages {
  padding: 5em 0;
  position: relative; }
  .main.main-pages .img-date-wrapper {
    position: absolute;
    right: 0;
    top: 80px; }
    .main.main-pages .img-date-wrapper img {
      width: 50px; }
  .main.main-pages .wrapper-container .row .content-wrapper .text-col .sidor-mindre-text {
    font-size: 1em; }
  .main.main-pages .wrapper-container .row .content-wrapper .text-col .files-wrapper .files {
    list-style: none; }
    .main.main-pages .wrapper-container .row .content-wrapper .text-col .files-wrapper .files .title-wrapper {
      background: #F2A900;
      padding: 10px; }
      .main.main-pages .wrapper-container .row .content-wrapper .text-col .files-wrapper .files .title-wrapper .svg {
        width: 27px;
        vertical-align: middle; }
      .main.main-pages .wrapper-container .row .content-wrapper .text-col .files-wrapper .files .title-wrapper .title {
        color: #000;
        font-weight: 600;
        padding-left: 12px;
        vertical-align: middle; }
    .main.main-pages .wrapper-container .row .content-wrapper .text-col .files-wrapper .files .file {
      background: #ffdc8c;
      border-bottom: solid 1px #e9cf93; }
      .main.main-pages .wrapper-container .row .content-wrapper .text-col .files-wrapper .files .file .link-wrapper .link {
        padding-left: 30px;
        color: #000; }
      .main.main-pages .wrapper-container .row .content-wrapper .text-col .files-wrapper .files .file:last-of-type {
        border-bottom: none; }
  .main.main-pages .wrapper-container .row .content-wrapper .img-col .img-bg {
    padding-top: 70%;
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative; }

@media (max-width: 1440px) and (min-width: 1140px) {
  .main .wrapper-container {
    max-width: 90%; } }

@media (min-width: 1440px) {
  .main.thumbnail .wrapper-container .row .content-wrapper .inner-content-wrapper .text-col, .main.hero-img-and-thumbnail .wrapper-container .row .content-wrapper .inner-content-wrapper .text-col {
    padding-right: 5em; } }

@media (max-width: 1440px) {
  .main.thumbnail .wrapper-container .row .content-wrapper .inner-content-wrapper .text-col, .main.hero-img-and-thumbnail .wrapper-container .row .content-wrapper .inner-content-wrapper .text-col {
    padding-right: 2em; } }

@media (max-width: 1140px) {
  .main.main-pages .img-date-wrapper {
    display: none; } }

@media (max-width: 768px) {
  .main.main-pages {
    padding: 3em 0; }
    .main.main-pages .wrapper-container {
      padding: 0 15px; } }

@media (max-width: 480px) {
  .main.main-pages {
    padding: 2em 0; }
  .main.main-front-page {
    padding-bottom: 2em; } }

/*================================================================
	Main Pages - Components
================================================================*/
/*
 * Main pages children styles
 */
.page-children-wrapper-container {
  padding: 4em 0;
  /**** Media Queries ****/ }
  .page-children-wrapper-container .row .main-wrapper .post .text-col .sidor-mindre-text {
    font-size: 1em; }
  .page-children-wrapper-container .row .main-wrapper .post .text-col .files-wrapper .files {
    list-style: none; }
    .page-children-wrapper-container .row .main-wrapper .post .text-col .files-wrapper .files .title-wrapper {
      background: #F2A900;
      padding: 10px; }
      .page-children-wrapper-container .row .main-wrapper .post .text-col .files-wrapper .files .title-wrapper .svg {
        width: 27px;
        vertical-align: middle; }
      .page-children-wrapper-container .row .main-wrapper .post .text-col .files-wrapper .files .title-wrapper .title {
        color: #000;
        font-weight: 600;
        padding-left: 12px;
        vertical-align: middle; }
    .page-children-wrapper-container .row .main-wrapper .post .text-col .files-wrapper .files .file {
      background: #ffdc8c;
      border-bottom: solid 1px #e9cf93; }
      .page-children-wrapper-container .row .main-wrapper .post .text-col .files-wrapper .files .file .link-wrapper .link {
        padding-left: 30px;
        color: #000; }
      .page-children-wrapper-container .row .main-wrapper .post .text-col .files-wrapper .files .file:last-of-type {
        border-bottom: none; }
  @media (max-width: 1140px) and (min-width: 768px) {
    .page-children-wrapper-container .row .main-wrapper .post .section-puffs-pages .puffs .puff {
      padding-left: 0; } }
  @media (max-width: 768px) {
    .page-children-wrapper-container {
      padding: 3em 15px; } }
  @media (max-width: 480px) {
    .page-children-wrapper-container {
      padding: 2em 15px; } }

/*
 * Main pages module - Puffs
 */
.section-puffs-pages {
  padding: 5em 0 0 0;
  /**** Media Queries ****/ }
  .section-puffs-pages .container .puffs .puff .link {
    text-decoration: none; }
    .section-puffs-pages .container .puffs .puff .link .inner-wrapper {
      padding-bottom: 3em; }
      .section-puffs-pages .container .puffs .puff .link .inner-wrapper .img-col {
        overflow: hidden;
        padding-bottom: 30px; }
        .section-puffs-pages .container .puffs .puff .link .inner-wrapper .img-col .img-bg {
          padding-top: 66%;
          display: block;
          width: 100%;
          position: relative;
          background-position: center center;
          background-repeat: no-repeat;
          background-size: cover;
          -webkit-transition: all 0.45s ease;
          transition: all 0.45s ease; }
          .section-puffs-pages .container .puffs .puff .link .inner-wrapper .img-col .img-bg:before {
            position: absolute;
            content: "";
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            z-index: 3;
            background: rgba(0, 0, 0, 0.1); }
      .section-puffs-pages .container .puffs .puff .link .inner-wrapper .puff-text-col .title {
        font-size: 1.2em;
        -webkit-transition: all 0.7s ease;
        transition: all 0.7s ease; }
      .section-puffs-pages .container .puffs .puff .link .inner-wrapper .puff-text-col .text p {
        font-size: 1em;
        font-weight: 400; }
      .section-puffs-pages .container .puffs .puff .link .inner-wrapper .button-wrapper {
        padding: 10px 0 0 0; }
  @media (max-width: 768px) {
    .section-puffs-pages {
      padding: 3em 0 0 0; }
      .section-puffs-pages .container {
        padding: 0 15px; } }
  @media (max-width: 480px) {
    .section-puffs-pages {
      padding: 0.5em 0 0 0; } }

/*
 * Main pages module - Puffs2
 */
.section-puffs2-pages {
  background: #eeeeee;
  margin: 4em 0 2em 0;
  /**** Media Queries ****/ }
  .section-puffs2-pages .container {
    padding: 3em 0 2em 0; }
    .section-puffs2-pages .container .puffs .puff .link {
      text-decoration: none; }
      .section-puffs2-pages .container .puffs .puff .link .inner-wrapper {
        padding-bottom: 3em; }
        .section-puffs2-pages .container .puffs .puff .link .inner-wrapper .puff-heading-col .img {
          width: 32px; }
        .section-puffs2-pages .container .puffs .puff .link .inner-wrapper .puff-heading-col .title {
          font-size: 1.12em;
          padding: 0 0 0 5px; }
        .section-puffs2-pages .container .puffs .puff .link .inner-wrapper .puff-text-col p {
          font-size: 1em;
          padding-bottom: 15px;
          font-weight: 400; }
        .section-puffs2-pages .container .puffs .puff .link .inner-wrapper .link-wrapper .link {
          text-decoration: underline;
          font-size: 0.85em;
          font-weight: 400; }
    .section-puffs2-pages .container .puffs .puff.img-not-set .link .inner-wrapper .puff-heading-col .title, .section-puffs2-pages .container .puffs .puff.linked-img-not-set .link .inner-wrapper .puff-heading-col .title {
      padding: 0; }
  @media (max-width: 768px) {
    .section-puffs2-pages .container {
      padding: 2em 15px 1em 15px; }
      .section-puffs2-pages .container .puffs .puff .link .inner-wrapper {
        padding-bottom: 1em; } }
  @media (max-width: 480px) {
    .section-puffs2-pages {
      margin: 2em 0 1em 0; }
      .section-puffs2-pages .container {
        padding: 0 15px 1em 15px; } }

/*
 * Main pages module - Text & Image Columns
 */
.section-text-and-img-cols-pages {
  padding: 3em 0 0 0;
  /**** Media Queries ****/ }
  .section-text-and-img-cols-pages .container .columns .column .row .text-column .text blockquote {
    padding: 3em 0;
    margin: 4em 0 3em 0;
    position: relative;
    background: none; }
    .section-text-and-img-cols-pages .container .columns .column .row .text-column .text blockquote:before, .section-text-and-img-cols-pages .container .columns .column .row .text-column .text blockquote:after {
      position: absolute;
      content: "";
      width: 100%;
      left: 0;
      right: 0;
      margin: 0 auto;
      opacity: 1; }
    .section-text-and-img-cols-pages .container .columns .column .row .text-column .text blockquote:before {
      bottom: 0;
      border-bottom: #979797 1px solid; }
    .section-text-and-img-cols-pages .container .columns .column .row .text-column .text blockquote:after {
      top: 0;
      border-top: #979797 1px solid; }
    .section-text-and-img-cols-pages .container .columns .column .row .text-column .text blockquote p {
      padding-bottom: 15px;
      font-size: 1.4em; }
      .section-text-and-img-cols-pages .container .columns .column .row .text-column .text blockquote p:last-of-type {
        font-size: 1em; }
  .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper {
    padding: 1.5em 0 1.5em 0; }
    .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists .list {
      padding-bottom: 15px;
      padding-left: 15px; }
      .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists .list ul li {
        color: #000;
        font-size: 1.2em;
        font-family: "Roboto", sans-serif;
        font-weight: 300;
        line-height: 1.6;
        padding-bottom: 2px; }
      .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists .list:first-of-type {
        padding-left: 0; }
    .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists.lists-1-layout .list {
      width: 100%; }
    .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists.lists-4-layout .list:nth-child(3) {
      padding-left: 0; }
    .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper ul {
      list-style: none; }
  .section-text-and-img-cols-pages .container .columns .column .row .img-column {
    overflow: hidden;
    padding-bottom: 30px; }
    .section-text-and-img-cols-pages .container .columns .column .row .img-column .img-bg {
      padding-top: 66%;
      display: block;
      width: 100%;
      position: relative;
      background-position: center center;
      background-repeat: no-repeat;
      background-size: cover;
      -webkit-transition: all 0.45s ease;
      transition: all 0.45s ease; }
  .section-text-and-img-cols-pages .container .columns .column .row .button-wrapper {
    padding: 10px 0 0 0; }
  .section-text-and-img-cols-pages .container .columns .default-column .list-column .lists-wrapper .lists .list {
    padding-bottom: 15px;
    padding-left: 15px; }
    .section-text-and-img-cols-pages .container .columns .default-column .list-column .lists-wrapper .lists .list ul li {
      color: #000;
      font-size: 1.12em;
      font-family: "Geomanist-Regular", sans-serif;
      font-weight: 300;
      line-height: 1.6;
      padding-bottom: 5px; }
    .section-text-and-img-cols-pages .container .columns .default-column .list-column .lists-wrapper .lists .list:first-of-type {
      padding-left: 0; }
  .section-text-and-img-cols-pages .container .columns .default-column .list-column .lists-wrapper .lists.lists-1-layout .list {
    width: 100%; }
  .section-text-and-img-cols-pages .container .columns .default-column .list-column .lists-wrapper .lists.lists-2-layout .list {
    width: 50%; }
  .section-text-and-img-cols-pages .container .columns .default-column .list-column .lists-wrapper .lists.lists-4-layout .list:nth-child(3) {
    padding-left: 0; }
  .section-text-and-img-cols-pages .container .columns .default-column .list-column .lists-wrapper ul {
    list-style: none; }
  @media (min-width: 1600px) {
    .section-text-and-img-cols-pages .container .columns .list-column .lists-wrapper .lists.lists-4-layout .list {
      width: 25%; } }
  @media (max-width: 1600px) and (min-width: 1024px) {
    .section-text-and-img-cols-pages .container .columns .list-column .lists-wrapper .lists.lists-4-layout .list {
      width: 33.33%; }
      .section-text-and-img-cols-pages .container .columns .list-column .lists-wrapper .lists.lists-4-layout .list:nth-child(4) {
        padding-left: 0; } }
  @media (min-width: 1440px) {
    .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists.lists-3-layout .list, .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists.lists-5-layout .list, .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists.lists-6-layout .list {
      width: 33.33%; }
    .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists.lists-5-layout .list:nth-child(4), .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists.lists-6-layout .list:nth-child(4) {
      padding-left: 0; } }
  @media (max-width: 1440px) and (min-width: 900px) {
    .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists.lists-3-layout .list, .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists.lists-5-layout .list, .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists.lists-6-layout .list {
      width: 50%; }
    .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists.lists-5-layout .list:nth-child(3), .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists.lists-5-layout .list:nth-child(5), .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists.lists-6-layout .list:nth-child(3), .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists.lists-6-layout .list:nth-child(5) {
      padding-left: 0; } }
  @media (max-width: 1024px) and (min-width: 768px) {
    .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists.lists-3-layout .list, .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists.lists-5-layout .list, .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists.lists-6-layout .list {
      width: 33.33%; }
    .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists.lists-5-layout .list:nth-child(4), .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists.lists-6-layout .list:nth-child(4) {
      padding-left: 0; }
    .section-text-and-img-cols-pages .container .columns .list-column .lists-wrapper .lists.lists-4-layout .list {
      width: 50%; } }
  @media (min-width: 1024px) {
    .section-text-and-img-cols-pages .container .columns .list-column .lists-wrapper .lists.lists-3-layout .list, .section-text-and-img-cols-pages .container .columns .list-column .lists-wrapper .lists.lists-5-layout .list, .section-text-and-img-cols-pages .container .columns .list-column .lists-wrapper .lists.lists-6-layout .list {
      width: 33.33%; }
    .section-text-and-img-cols-pages .container .columns .list-column .lists-wrapper .lists.lists-5-layout .list:nth-child(4), .section-text-and-img-cols-pages .container .columns .list-column .lists-wrapper .lists.lists-6-layout .list:nth-child(4) {
      padding-left: 0; } }
  @media (max-width: 1024px) and (min-width: 768px) {
    .section-text-and-img-cols-pages .container .columns .list-column .lists-wrapper .lists.lists-3-layout .list, .section-text-and-img-cols-pages .container .columns .list-column .lists-wrapper .lists.lists-5-layout .list, .section-text-and-img-cols-pages .container .columns .list-column .lists-wrapper .lists.lists-6-layout .list {
      width: 50%; }
      .section-text-and-img-cols-pages .container .columns .list-column .lists-wrapper .lists.lists-3-layout .list:nth-child(3), .section-text-and-img-cols-pages .container .columns .list-column .lists-wrapper .lists.lists-3-layout .list:nth-child(5), .section-text-and-img-cols-pages .container .columns .list-column .lists-wrapper .lists.lists-5-layout .list:nth-child(3), .section-text-and-img-cols-pages .container .columns .list-column .lists-wrapper .lists.lists-5-layout .list:nth-child(5), .section-text-and-img-cols-pages .container .columns .list-column .lists-wrapper .lists.lists-6-layout .list:nth-child(3), .section-text-and-img-cols-pages .container .columns .list-column .lists-wrapper .lists.lists-6-layout .list:nth-child(5) {
        padding-left: 0; } }
  @media (max-width: 768px) {
    .section-text-and-img-cols-pages {
      padding: 3em 0 0 0; }
      .section-text-and-img-cols-pages .container {
        padding: 0 15px; }
        .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists.lists-3-layout .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists.lists-5-layout .list:nth-child(3) {
          padding-left: 0; }
        .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists.lists-5-layout .list:nth-child(3), .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists.lists-5-layout .list:nth-child(5) {
          padding-left: 0; }
        .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists.lists-6-layout .list:nth-child(odd) {
          padding-left: 0; }
        .section-text-and-img-cols-pages .container .columns .list-column .lists-wrapper .lists.lists-2-layout .list, .section-text-and-img-cols-pages .container .columns .list-column .lists-wrapper .lists.lists-3-layout .list, .section-text-and-img-cols-pages .container .columns .list-column .lists-wrapper .lists.lists-4-layout .list, .section-text-and-img-cols-pages .container .columns .list-column .lists-wrapper .lists.lists-5-layout .list, .section-text-and-img-cols-pages .container .columns .list-column .lists-wrapper .lists.lists-6-layout .list {
          width: 100%;
          padding-left: 0; } }
  @media (min-width: 480px) {
    .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists.lists-2-layout .list, .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists.lists-4-layout .list {
      width: 50%; } }
  @media (max-width: 480px) {
    .section-text-and-img-cols-pages {
      padding: 1em 0 0 0; }
      .section-text-and-img-cols-pages .container .columns .column .row .text-column .text blockquote {
        padding: 1.5em 0;
        margin: 0 0 1em 0; }
        .section-text-and-img-cols-pages .container .columns .column .row .text-column .text blockquote p {
          font-size: 1.25em; }
      .section-text-and-img-cols-pages .container .columns .column .row .text-column .lists-wrapper .lists .list {
        padding-left: 0; }
      .section-text-and-img-cols-pages .container .columns .list-column .lists-wrapper .lists .list ul li {
        font-size: 1em; } }

/*================================================================
	Front page - sections
================================================================*/
/*
 * Header content
 */
.section-header-content {
  position: relative;
  /*** Media Queries ***/ }
  .section-header-content:after {
    box-shadow: 0px -32px 56px 84px #000000;
    content: '';
    display: block;
    height: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 0; }
  .section-header-content.hero-img {
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 100%;
    background-image: url("../img/hero/PARTY-GRUND-72.gif"); }
  .section-header-content .row .text-col {
    position: absolute;
    top: 2em;
    right: 0;
    left: 0;
    margin: 0 auto; }
  .section-header-content .row .img-col {
    position: absolute;
    bottom: 0;
    right: 10%;
    z-index: 1;
    width: 19%; }
    .section-header-content .row .img-col img {
      display: inline-block;
      width: 100%; }
  @media (min-width: 768px) {
    .section-header-content .row .text-col {
      top: 21%; }
      .section-header-content .row .text-col img {
        width: 100%; } }
  @media (max-width: 768px) {
    .section-header-content .row .text-col {
      top: 28%;
      width: 65%; } }
  @media (max-width: 620px) {
    .section-header-content .row .text-col {
      top: 26%;
      width: 85%; }
    .section-header-content .row .img-col {
      bottom: 30px;
      right: 20px;
      width: 23%; } }

/*
 * Start content
 */
.section-start-content {
  position: relative;
  padding: 4em 15px 34% 15px; }
  .section-start-content.hero-img {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; }
  .section-start-content .row .img-col {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%; }
  .section-start-content .row .text-col .date-img {
    padding: 2em 0 3em 0; }
  @media (max-width: 480px) {
    .section-start-content {
      padding: 2em 15px 34% 15px; }
      .section-start-content .row .text-col .date-img {
        padding: 1em 0 2em 0; } }

/*
 * Gallery content
 */
.section-gallery-content {
  position: relative;
  padding: 0 15px 15px 15px; }
  .section-gallery-content.hero-img {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; }
  .section-gallery-content .container .row .text-col .title {
    padding-bottom: 5px; }
  .section-gallery-content .container .row .text-col .slogan-text {
    color: #fff; }

/*
 * Map content
 */
.section-map-content {
  position: relative;
  padding: 0 15px 15px 15px; }
  .section-map-content.hero-img {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; }

/*
 * Contactform content
 */
.section-contactform-content {
  padding: 0 15px 6em 15px;
  position: relative; }
  .section-contactform-content .img-col,
  .section-contactform-content .img-hero-col {
    position: absolute;
    z-index: 1; }
    .section-contactform-content .img-col img,
    .section-contactform-content .img-hero-col img {
      width: 100%; }
  .section-contactform-content .img-col {
    width: 23%;
    bottom: -24%;
    right: 6em;
    -webkit-transform: rotate(11deg);
            transform: rotate(11deg); }
  .section-contactform-content .img-hero-col {
    width: 26%;
    bottom: -48%;
    left: 5em;
    -webkit-transform: rotate(-11deg);
            transform: rotate(-11deg); }
  .section-contactform-content .text-col .wpforms-form .wpforms-field-container .wpforms-field input[type=text],
  .section-contactform-content .text-col .wpforms-form .wpforms-field-container .wpforms-field input[type=email],
  .section-contactform-content .text-col .wpforms-form .wpforms-field-container .wpforms-field input[type=number] {
    padding: 7px 15px;
    background: none;
    width: 100%;
    font-family: "Geomanist-Regular", sans-serif;
    font-size: 10px;
    border-radius: 3px;
    color: #fff;
    font-size: 15px;
    border-radius: 9px;
    border: solid 1px #fff;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .section-contactform-content .text-col .wpforms-form .wpforms-field-container .wpforms-field input[type=text]:focus,
    .section-contactform-content .text-col .wpforms-form .wpforms-field-container .wpforms-field input[type=email]:focus,
    .section-contactform-content .text-col .wpforms-form .wpforms-field-container .wpforms-field input[type=number]:focus {
      outline: none; }
  .section-contactform-content .text-col .wpforms-form .wpforms-field-container .wpforms-field ::-webkit-input-placeholder {
    color: #fff; }
  .section-contactform-content .text-col .wpforms-form .wpforms-field-container .wpforms-field :-moz-placeholder {
    color: #fff; }
  .section-contactform-content .text-col .wpforms-form .wpforms-field-container .wpforms-field ::-moz-placeholder {
    color: #fff; }
  .section-contactform-content .text-col .wpforms-form .wpforms-field-container .wpforms-field :-ms-input-placeholder {
    color: #fff; }
  .section-contactform-content .text-col .wpforms-form .wpforms-field-container .wpforms-field-textarea textarea {
    background: transparent;
    border-radius: 9px;
    text-align: center;
    color: #fff; }
  .section-contactform-content .text-col .wpforms-form .wpforms-field-radio .wpforms-field-label .wpforms-required-label {
    color: #000; }
  .section-contactform-content .text-col .wpforms-form .wpforms-submit-container .submit-button {
    padding: 7px 90px;
    background: #fff;
    font-family: "Geomanist-Regular", sans-serif;
    font-size: 10px;
    border-radius: 3px;
    color: #000;
    font-size: 15px;
    border-radius: 9px;
    border: solid 1px #fff;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  @media (max-width: 768px) {
    .section-contactform-content {
      padding: 0 15px 5em 15px; } }
  @media (max-width: 620px) {
    .section-contactform-content {
      padding: 0 15px 5em 15px; }
      .section-contactform-content .img-col {
        bottom: -10%;
        right: 30px; }
      .section-contactform-content .img-hero-col {
        bottom: -25%;
        left: 30px; } }
  @media (max-width: 480px) {
    .section-contactform-content .img-col {
      bottom: 0%; }
    .section-contactform-content .img-hero-col {
      bottom: -6%; } }

/*
 * Hero Image content
 */
.section-heroimg-content {
  position: relative;
  /*** Media Queries ***/ }
  .section-heroimg-content:after {
    box-shadow: 0px 3px 87px 98px #000000;
    content: '';
    display: block;
    height: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0; }
  .section-heroimg-content.hero-img {
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 123%; }
  .section-heroimg-content .row .img-col {
    position: absolute;
    bottom: 35%;
    right: 2%;
    z-index: 1;
    width: 20%; }
    .section-heroimg-content .row .img-col img {
      display: inline-block;
      width: 100%; }
  @media (max-width: 768px) {
    .section-heroimg-content:after {
      box-shadow: 0px -15px 50px 59px #030303; } }

/*
 * Footer content
 */
.section-footer-content .container .row .text-col .contact {
  width: 320px;
  margin: 0 auto; }

@media (max-width: 480px) {
  .section-footer-content .container .row .text-col .contact {
    width: 100%; } }

/*================================================================
	Google Maps Section
================================================================*/
.section-google-maps {
  /**** Media Queries ****/ }
  .section-google-maps #map {
    height: 554px;
    width: 100%; }
    .section-google-maps #map .gm-style-iw {
      border-radius: 0;
      box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.3); }
      .section-google-maps #map .gm-style-iw .popupbox-container {
        width: 378px;
        padding: 25px 0px 10px 25px; }
        .section-google-maps #map .gm-style-iw .popupbox-container .title {
          font-size: 2.5em;
          text-align: center;
          padding: 0; }
        .section-google-maps #map .gm-style-iw .popupbox-container .link-wrapper {
          padding: 10px 0 0 0;
          text-align: center; }
    .section-google-maps #map .gm-style-iw {
      padding: 0; }
    .section-google-maps #map .gm-style-iw-t:before, .section-google-maps #map .gm-style-iw-t:after {
      display: none; }
  @media (max-width: 1140px) {
    .section-google-maps #map {
      height: 450px; } }
  @media (max-width: 768px) {
    .section-google-maps #map {
      height: 300px; }
      .section-google-maps #map .gm-style-iw .popupbox-container {
        padding: 20px 0px 10px 20px; }
        .section-google-maps #map .gm-style-iw .popupbox-container .title {
          font-size: 2.1em; } }
  @media (max-width: 480px) {
    .section-google-maps #map {
      height: 250px; }
      .section-google-maps #map .gm-style-iw .popupbox-container {
        width: 100%; }
        .section-google-maps #map .gm-style-iw .popupbox-container .title {
          font-size: 1.8em; } }

p#googleMaps-arrow-popup-text {
  padding-bottom: 10px; }

/* Removes the google logo, footer & copyright section */
a[href^="http://maps.google.com/maps"] {
  display: none !important; }

a[href^="https://maps.google.com/maps"] {
  display: none !important; }

.gmnoprint a, .gmnoprint span, .gm-style-cc {
  display: none; }

.gmnoprint div {
  background: none !important; }

p#googleMaps-arrow-popup-text {
  padding-bottom: 10px; }

/*================================================================
	Sticky Link - Scroll to top
================================================================*/
a.scroll-to-top {
  position: fixed;
  right: 50px;
  bottom: 65px;
  display: inline-block;
  visibility: hidden;
  opacity: 0;
  padding: 15px;
  min-height: auto;
  background: rgba(245, 140, 2, 0.9);
  min-width: auto;
  vertical-align: middle;
  z-index: 9999;
  width: 40px;
  height: 40px;
  border-radius: 35px;
  font-size: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  @media (max-width: 1140px) {
    a.scroll-to-top {
      right: 70px;
      bottom: 40px; } }
  @media (max-width: 768px) {
    a.scroll-to-top {
      right: 25px;
      bottom: 26px; } }
  a.scroll-to-top:hover {
    background: #F58C02; }
    a.scroll-to-top:hover:before {
      color: #1a1919; }
  a.scroll-to-top:before {
    position: absolute;
    top: 50%;
    right: 50%;
    color: #000;
    content: "\F090";
    font: normal normal normal 24px/1 "Black Tie";
    font-weight: 400;
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
    font-size: 15px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  a.scroll-to-top.scroll-is-visible {
    visibility: visible;
    opacity: 1; }

/*================================================================
	Other settings
================================================================*/
/* Hide next and previous paginate links*/
.next.page-numbers,
.prev.page-numbers {
  display: none; }

/*================================================================
	Wordpress Gutenburg Components - Default button
================================================================*/
.wp-block-button a {
  border: 1px solid #000;
  color: #000;
  border-radius: 35px;
  background-color: transparent;
  font-family: "Geomanist-Regular", sans-serif;
  cursor: pointer;
  text-align: center;
  font-weight: 500;
  outline: none;
  position: relative;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-transform: uppercase;
  color: #000;
  font-size: 13px;
  padding: 8px 13px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .wp-block-button a:hover {
    background: #F58C02;
    border: solid 1px #F58C02;
    color: #000; }

/*
Project: Kringelstan.
Description: Button settings
Author: Karl Karlsson
Date: 2019-03-20
Licence: https://kringelstan.se/
*/
/*================================================================================
	Main Button
================================================================================*/
[class*='btn'] {
  background: #F58C02;
  font-family: "Roboto", sans-serif;
  cursor: pointer;
  text-align: center;
  font-weight: 500;
  outline: none;
  position: relative;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-transform: uppercase;
  color: #000;
  border-radius: 7px;
  border: 1px solid #F58C02;
  font-size: 13px;
  padding: 8px 13px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /*================================ 
	*   Hover-effects and Animations 
	================================*/ }
  [class*='btn']:hover {
    background: #fda32d;
    border: 1px solid #fda32d;
    color: #000; }
  @media (max-width: 768px) {
    [class*='btn'] {
      padding: 10px 15px; } }
  [class*='btn'][class*='-main'] {
    background: #fff;
    color: #000;
    border: 1px solid #fff; }
    [class*='btn'][class*='-main']:hover {
      background: #fda32d;
      border: 1px solid #fda32d;
      color: #000; }
  [class*='btn'][class*='-main-inverted'] {
    background: #000;
    color: #fff;
    border: 1px solid #000; }
    [class*='btn'][class*='-main-inverted']:hover {
      background: #0d0d0d;
      border: 1px solid #0d0d0d;
      color: #fff; }
  [class*='btn'][class*='-primary'] {
    background: #2e81c8; }
    [class*='btn'][class*='-primary']:hover {
      background: #2871af; }
  [class*='btn'][class*='-success'] {
    background: #5cb85c;
    box-shadow: 0 6px #398439; }
    [class*='btn'][class*='-success']:hover {
      background: #4aab4a; }
  [class*='btn'][class*='-warning'] {
    background: #77b1ec; }
    [class*='btn'][class*='-warning']:hover {
      background: #5ca2e8; }
  [class*='btn'][class*='-info'] {
    background: #e67e22; }
    [class*='btn'][class*='-info']:hover {
      background: #d26f18; }
  [class*='btn'][class*='-danger'] {
    background: #e14d43; }
    [class*='btn'][class*='-danger']:hover {
      background: #dd3429; }
  [class*='btn'][class*='-secondary'] {
    padding: 15px 23px;
    border: solid 2px #F58C02;
    background: transparent;
    color: #F58C02; }
    [class*='btn'][class*='-secondary']:hover {
      background: #F58C02;
      color: #fff; }
  [class*='btn'][class*='-radius'] {
    border-radius: 35px;
    background: #F58C02;
    border: solid 1px #F58C02;
    color: #000; }
    [class*='btn'][class*='-radius']:hover {
      background: #fda32d;
      border: solid 1px #fda32d;
      color: #000; }
    [class*='btn'][class*='-radius'][class*='-main'] {
      background: #fff;
      color: #000;
      border: 1px solid #fff; }
      [class*='btn'][class*='-radius'][class*='-main']:hover {
        background: #fda32d;
        border: 1px solid #fda32d;
        color: #000; }
    [class*='btn'][class*='-radius'][class*='-main-inverted'] {
      background: #000;
      color: #fff;
      border: 1px solid #000; }
      [class*='btn'][class*='-radius'][class*='-main-inverted']:hover {
        background: #0d0d0d;
        border: 1px solid #0d0d0d;
        color: #fff; }
    [class*='btn'][class*='-radius'][class*='-primary'] {
      background: #2e81c8; }
      [class*='btn'][class*='-radius'][class*='-primary']:hover {
        background: #2871af; }
    [class*='btn'][class*='-radius'][class*='-success'] {
      background: #5cb85c;
      box-shadow: 0 6px #398439; }
      [class*='btn'][class*='-radius'][class*='-success']:hover {
        background: #4aab4a; }
    [class*='btn'][class*='-radius'][class*='-warning'] {
      background: #77b1ec; }
      [class*='btn'][class*='-radius'][class*='-warning']:hover {
        background: #5ca2e8; }
    [class*='btn'][class*='-radius'][class*='-info'] {
      background: #e67e22; }
      [class*='btn'][class*='-radius'][class*='-info']:hover {
        background: #d26f18; }
    [class*='btn'][class*='-radius'][class*='-danger'] {
      background: #e14d43; }
      [class*='btn'][class*='-radius'][class*='-danger']:hover {
        background: #dd3429; }
    [class*='btn'][class*='-radius'][class*='-secondary'] {
      padding: 15px 23px;
      border: solid 2px #F58C02;
      background: transparent;
      color: #F58C02; }
      [class*='btn'][class*='-radius'][class*='-secondary']:hover {
        background: #F58C02;
        color: #fff; }
  [class*='btn'][class*='-bordered'] {
    border: 1px solid #F58C02;
    color: #000;
    background-color: transparent; }
    [class*='btn'][class*='-bordered']:hover {
      background-color: #F58C02 !important;
      border: 1px solid #F58C02; }
    [class*='btn'][class*='-bordered'][class*='-radius'] {
      border-radius: 35px;
      background-color: transparent; }
    [class*='btn'][class*='-bordered'][class*='-main'] {
      border: 1px solid #fff;
      color: #fff !important; }
      [class*='btn'][class*='-bordered'][class*='-main']:hover {
        background-color: #F58C02 !important;
        border: 1px solid #F58C02;
        color: #000 !important; }
    [class*='btn'][class*='-bordered'][class*='-main-inverted'] {
      border: 1px solid #000;
      color: #000; }
      [class*='btn'][class*='-bordered'][class*='-main-inverted']:hover {
        background-color: #F58C02 !important;
        border: 1px solid #F58C02;
        color: #fff; }
    [class*='btn'][class*='-bordered'][class*='-primary'] {
      border: 1px solid #2e81c8;
      color: #2e81c8; }
      [class*='btn'][class*='-bordered'][class*='-primary']:hover {
        background: #2e81c8;
        color: #000; }
    [class*='btn'][class*='-bordered'][class*='-success'] {
      border: 1px solid #5cb85c;
      color: #5cb85c; }
      [class*='btn'][class*='-bordered'][class*='-success']:hover {
        background: #5cb85c;
        color: #000; }
    [class*='btn'][class*='-bordered'][class*='-info'] {
      border: 1px solid #77b1ec;
      color: #77b1ec; }
      [class*='btn'][class*='-bordered'][class*='-info']:hover {
        background: #77b1ec;
        color: #000; }
    [class*='btn'][class*='-bordered'][class*='-warning'] {
      border: 1px solid #e67e22;
      color: #e67e22; }
      [class*='btn'][class*='-bordered'][class*='-warning']:hover {
        background: #e67e22;
        color: #000; }
    [class*='btn'][class*='-bordered'][class*='-danger'] {
      border: 1px solid #e14d43;
      color: #e14d43; }
      [class*='btn'][class*='-bordered'][class*='-danger']:hover {
        background: #e14d43;
        color: #000; }

/*================================================================================
	Main Button Wrapper
================================================================================*/
.button-wrapper {
  margin-top: 10px; }
  .button-wrapper [class*='btn'] {
    background: #F58C02;
    font-family: "Roboto", sans-serif;
    cursor: pointer;
    text-align: center;
    font-weight: 500;
    outline: none;
    position: relative;
    text-decoration: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    text-transform: uppercase;
    color: #000;
    border-radius: 7px;
    border: 1px solid #F58C02;
    font-size: 13px;
    padding: 8px 13px;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    /*================================ 
		*   Hover-effects and Animations 
		================================*/ }
    .button-wrapper [class*='btn']:hover {
      background: #fda32d;
      border: 1px solid #fda32d;
      color: #000; }
    @media (max-width: 768px) {
      .button-wrapper [class*='btn'] {
        padding: 10px 15px; } }
    .button-wrapper [class*='btn'][class*='-main'] {
      background: #fff;
      color: #000;
      border: 1px solid #fff; }
      .button-wrapper [class*='btn'][class*='-main']:hover {
        background: #fda32d;
        border: 1px solid #fda32d;
        color: #000; }
    .button-wrapper [class*='btn'][class*='-main-inverted'] {
      background: #000;
      color: #fff;
      border: 1px solid #000; }
      .button-wrapper [class*='btn'][class*='-main-inverted']:hover {
        background: #0d0d0d;
        border: 1px solid #0d0d0d;
        color: #fff; }
    .button-wrapper [class*='btn'][class*='-primary'] {
      background: #2e81c8; }
      .button-wrapper [class*='btn'][class*='-primary']:hover {
        background: #2871af; }
    .button-wrapper [class*='btn'][class*='-success'] {
      background: #5cb85c;
      box-shadow: 0 6px #398439; }
      .button-wrapper [class*='btn'][class*='-success']:hover {
        background: #4aab4a; }
    .button-wrapper [class*='btn'][class*='-warning'] {
      background: #77b1ec; }
      .button-wrapper [class*='btn'][class*='-warning']:hover {
        background: #5ca2e8; }
    .button-wrapper [class*='btn'][class*='-info'] {
      background: #e67e22; }
      .button-wrapper [class*='btn'][class*='-info']:hover {
        background: #d26f18; }
    .button-wrapper [class*='btn'][class*='-danger'] {
      background: #e14d43; }
      .button-wrapper [class*='btn'][class*='-danger']:hover {
        background: #dd3429; }
    .button-wrapper [class*='btn'][class*='-secondary'] {
      padding: 15px 23px;
      border: solid 2px #F58C02;
      background: transparent;
      color: #F58C02; }
      .button-wrapper [class*='btn'][class*='-secondary']:hover {
        background: #F58C02;
        color: #fff; }
    .button-wrapper [class*='btn'][class*='-radius'] {
      border-radius: 35px;
      background: #F58C02;
      border: solid 1px #F58C02;
      color: #000; }
      .button-wrapper [class*='btn'][class*='-radius']:hover {
        background: #fda32d;
        border: solid 1px #fda32d;
        color: #000; }
      .button-wrapper [class*='btn'][class*='-radius'][class*='-main'] {
        background: #fff;
        color: #000;
        border: 1px solid #fff; }
        .button-wrapper [class*='btn'][class*='-radius'][class*='-main']:hover {
          background: #fda32d;
          border: 1px solid #fda32d;
          color: #000; }
      .button-wrapper [class*='btn'][class*='-radius'][class*='-main-inverted'] {
        background: #000;
        color: #fff;
        border: 1px solid #000; }
        .button-wrapper [class*='btn'][class*='-radius'][class*='-main-inverted']:hover {
          background: #0d0d0d;
          border: 1px solid #0d0d0d;
          color: #fff; }
      .button-wrapper [class*='btn'][class*='-radius'][class*='-primary'] {
        background: #2e81c8; }
        .button-wrapper [class*='btn'][class*='-radius'][class*='-primary']:hover {
          background: #2871af; }
      .button-wrapper [class*='btn'][class*='-radius'][class*='-success'] {
        background: #5cb85c;
        box-shadow: 0 6px #398439; }
        .button-wrapper [class*='btn'][class*='-radius'][class*='-success']:hover {
          background: #4aab4a; }
      .button-wrapper [class*='btn'][class*='-radius'][class*='-warning'] {
        background: #77b1ec; }
        .button-wrapper [class*='btn'][class*='-radius'][class*='-warning']:hover {
          background: #5ca2e8; }
      .button-wrapper [class*='btn'][class*='-radius'][class*='-info'] {
        background: #e67e22; }
        .button-wrapper [class*='btn'][class*='-radius'][class*='-info']:hover {
          background: #d26f18; }
      .button-wrapper [class*='btn'][class*='-radius'][class*='-danger'] {
        background: #e14d43; }
        .button-wrapper [class*='btn'][class*='-radius'][class*='-danger']:hover {
          background: #dd3429; }
      .button-wrapper [class*='btn'][class*='-radius'][class*='-secondary'] {
        padding: 15px 23px;
        border: solid 2px #F58C02;
        background: transparent;
        color: #F58C02; }
        .button-wrapper [class*='btn'][class*='-radius'][class*='-secondary']:hover {
          background: #F58C02;
          color: #fff; }
    .button-wrapper [class*='btn'][class*='-bordered'] {
      border: 1px solid #F58C02;
      color: #000;
      background-color: transparent; }
      .button-wrapper [class*='btn'][class*='-bordered']:hover {
        background-color: #F58C02 !important;
        border: 1px solid #F58C02; }
      .button-wrapper [class*='btn'][class*='-bordered'][class*='-radius'] {
        border-radius: 35px;
        background-color: transparent; }
      .button-wrapper [class*='btn'][class*='-bordered'][class*='-main'] {
        border: 1px solid #fff;
        color: #fff; }
        .button-wrapper [class*='btn'][class*='-bordered'][class*='-main']:hover {
          background-color: #F58C02 !important;
          border: 1px solid #F58C02;
          color: #000 !important; }
      .button-wrapper [class*='btn'][class*='-bordered'][class*='-main-inverted'] {
        border: 1px solid #000;
        color: #000 !important; }
        .button-wrapper [class*='btn'][class*='-bordered'][class*='-main-inverted']:hover {
          background-color: #F58C02 !important;
          border: 1px solid #F58C02;
          color: #fff; }
      .button-wrapper [class*='btn'][class*='-bordered'][class*='-primary'] {
        border: 1px solid #2e81c8;
        color: #2e81c8; }
        .button-wrapper [class*='btn'][class*='-bordered'][class*='-primary']:hover {
          background: #2e81c8;
          color: #000; }
      .button-wrapper [class*='btn'][class*='-bordered'][class*='-success'] {
        border: 1px solid #5cb85c;
        color: #5cb85c; }
        .button-wrapper [class*='btn'][class*='-bordered'][class*='-success']:hover {
          background: #5cb85c;
          color: #000; }
      .button-wrapper [class*='btn'][class*='-bordered'][class*='-info'] {
        border: 1px solid #77b1ec;
        color: #77b1ec; }
        .button-wrapper [class*='btn'][class*='-bordered'][class*='-info']:hover {
          background: #77b1ec;
          color: #000; }
      .button-wrapper [class*='btn'][class*='-bordered'][class*='-warning'] {
        border: 1px solid #e67e22;
        color: #e67e22; }
        .button-wrapper [class*='btn'][class*='-bordered'][class*='-warning']:hover {
          background: #e67e22;
          color: #000; }
      .button-wrapper [class*='btn'][class*='-bordered'][class*='-danger'] {
        border: 1px solid #e14d43;
        color: #e14d43; }
        .button-wrapper [class*='btn'][class*='-bordered'][class*='-danger']:hover {
          background: #e14d43;
          color: #000; }

/*
Project: Kringelstan
Description: Contact Form Page settings based on the Contact Form 7-plugin
Author: Karl Karlsson
Date: 2019-04-05
Licence: https://kringelstan.se/
Version: 2.0
*/
/*===============================================================================
    Popup Maker - Contact Form
===============================================================================*/
/*
 * Contactform content
 */
.wpforms-form {
  width: 500px;
  margin: 0 auto;
  /**** Media Queries ****/ }
  .wpforms-form .wpforms-field-container .wpforms-field {
    width: 45% !important; }
    .wpforms-form .wpforms-field-container .wpforms-field:nth-child(even) {
      margin-left: 10%;
      margin-bottom: 2%; }
    .wpforms-form .wpforms-field-container .wpforms-field input[type=text],
    .wpforms-form .wpforms-field-container .wpforms-field input[type=email],
    .wpforms-form .wpforms-field-container .wpforms-field input[type=number] {
      padding: 7px 15px;
      background: none;
      width: 100%;
      font-family: "Geomanist-Regular", sans-serif;
      font-size: 10px;
      border-radius: 3px;
      color: #fff;
      font-size: 15px;
      font-weight: 400;
      border-radius: 9px;
      border: solid 1px #D8D8D8;
      -webkit-appearance: none;
         -moz-appearance: none;
              appearance: none;
      text-align: center;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      .wpforms-form .wpforms-field-container .wpforms-field input[type=text]:focus,
      .wpforms-form .wpforms-field-container .wpforms-field input[type=email]:focus,
      .wpforms-form .wpforms-field-container .wpforms-field input[type=number]:focus {
        outline: none; }
    .wpforms-form .wpforms-field-container .wpforms-field ::-webkit-input-placeholder {
      color: #fff;
      font-weight: 400; }
    .wpforms-form .wpforms-field-container .wpforms-field :-moz-placeholder {
      color: #fff;
      font-weight: 400; }
    .wpforms-form .wpforms-field-container .wpforms-field ::-moz-placeholder {
      color: #fff;
      font-weight: 400; }
    .wpforms-form .wpforms-field-container .wpforms-field :-ms-input-placeholder {
      color: #fff;
      font-weight: 400; }
  .wpforms-form .wpforms-field-container .wpforms-field-textarea {
    width: 290px !important;
    margin: 0 auto;
    padding-top: 40px !important; }
    .wpforms-form .wpforms-field-container .wpforms-field-textarea textarea {
      padding-top: 10px;
      background: rgba(216, 216, 216, 0.4);
      border-radius: 9px;
      text-align: center;
      color: #fff;
      font-weight: 400px;
      border: none; }
      .wpforms-form .wpforms-field-container .wpforms-field-textarea textarea:focus {
        border: none; }
  .wpforms-form .wpforms-field-radio .wpforms-field-label .wpforms-required-label {
    color: #000; }
  .wpforms-form .wpforms-submit-container {
    padding-top: 3em !important; }
    .wpforms-form .wpforms-submit-container .wpforms-submit {
      background-color: rgba(238, 238, 238, 0.85) !important;
      border: none !important;
      font-size: 1em;
      font-weight: 400px;
      padding: 10px 15px;
      width: 220px;
      font-family: "Geomanist-Regular", sans-serif;
      color: #000;
      border-radius: 9px;
      -webkit-appearance: none;
         -moz-appearance: none;
              appearance: none;
      text-align: center;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease; }
  @media (max-width: 620px) {
    .wpforms-form {
      width: 95%;
      padding: 1em 20px 20px 20px; }
      .wpforms-form .wpforms-field-container .wpforms-field {
        width: 100% !important; }
        .wpforms-form .wpforms-field-container .wpforms-field:nth-child(even) {
          margin-left: 0 !important;
          margin-bottom: 0; }
      .wpforms-form .wpforms-field-container #wpforms-25-field_8-container {
        width: 100% !important;
        margin-left: initial !important; }
      .wpforms-form .wpforms-field-container #wpforms-25-field_2-container {
        width: 100% !important;
        padding-top: 30px; }
        .wpforms-form .wpforms-field-container #wpforms-25-field_2-container textarea {
          background: rgba(216, 216, 216, 0.6); }
      .wpforms-form .wpforms-field-container .wpforms-submit-container {
        padding-top: 2em !important; }
        .wpforms-form .wpforms-field-container .wpforms-submit-container .wpforms-submit {
          background-color: rgba(238, 238, 238, 0.95) !important; } }

#wpforms-confirmation-25 {
  color: #333;
  margin: 0;
  background: transparent;
  border: 1px solid #fff;
  padding: 25px;
  border-radius: 5px;
  width: 65%;
  margin: 0 auto; }
  #wpforms-confirmation-25 p {
    padding-bottom: 0;
    font-size: 1.4em; }
  @media (max-width: 480px) {
    #wpforms-confirmation-25 {
      width: 100%;
      padding: 15px;
      border-radius: 5px;
      width: 90%; }
      #wpforms-confirmation-25 p {
        font-size: 1.2em; } }

/**
 * Modules Settings
 */
/*# sourceMappingURL=master.css.map */