/* COLORS */
/* Sizes */
/* Margins */
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700");
.vitecContainer tbody tr td a, html a, body a, #footer > div a, body #wrapper #container main article header #childmenu-container .prev-link a, body #wrapper #container main article header #childmenu-container .next-link a, body #wrapper #container main article header #childmenu-container .childmenu ul li a {
  transition: color 0.2s ease-in-out;
}

@media screen and (min-width: 1280px) {
  #booking-module-container #buttons .spacer .contact, html a, body a, body #wrapper #container main article header #childmenu-container .prev-link a, body #wrapper #container main article header #childmenu-container .next-link a, body #wrapper #container main article header #childmenu-container .childmenu ul li a {
    transition: color 0.2s ease-in-out;
  }
}

body #book-button-sticky-side {
  position: fixed;
  z-index: 10000;
  background-color: #FF561C;
  transform: translateY(50%);
  right: -90px;
  border-radius: 25px;
  min-height: 100px;
  top: 250px;
  transform: rotate(-96deg);
}
body #book-button-sticky-side a {
  padding: 12.5px 20px;
  display: block;
  font-size: 1.1rem;
  color: white;
  text-transform: uppercase;
  transform: rotate(6deg);
  font-weight: 700;
}
body #wrapper #header #book-button-header {
  display: none;
}

@media screen and (min-width: 1280px) {
  body #book-button-sticky-side {
    position: fixed;
    z-index: 10000;
    background-color: #FF561C;
    transform: translateY(50%);
    right: -90px;
    border-radius: 25px;
    min-height: 100px;
    top: 300px;
    transform: rotate(-96deg);
  }
  body #book-button-sticky-side a {
    padding: 12.5px 20px;
    display: block;
    font-size: 1.3rem;
    color: white;
    text-transform: uppercase;
    transform: rotate(6deg);
    font-weight: 700;
  }
  body #wrapper #header #book-button-header {
    display: block;
    background-color: #FF561C;
    align-self: flex-end;
    transform: translateY(50%);
  }
  body #wrapper #header #book-button-header a {
    padding: 12.5px 20px;
    display: block;
    font-size: 1rem;
    color: white;
    text-transform: uppercase;
  }
}
@media screen and (max-width: 768px) {
  body #book-button-sticky-side {
    right: -80px;
  }
}
body .top-border-image {
  width: 100%;
  overflow: hidden;
  height: 40px;
  background-repeat: repeat-x;
  background-size: cover;
}
@media screen and (min-width: 600px) {
  body .top-border-image {
    background-size: contain;
  }
}

.tableCircle {
  height: 20px;
  width: 20px;
  display: inline-block;
  border-radius: 50%;
}
.tableCircle.green {
  background-color: #4cbd38;
}
.tableCircle.blue {
  background-color: #00adef;
}
.tableCircle.red {
  background-color: #ed1639;
}

/**
MAIN MENU
 */
body #wrapper #header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 25px;
}
body #wrapper #header #menu {
  background-color: #A29667;
  width: 100%;
  position: fixed;
  z-index: 10000;
  height: 100vh;
  top: 0;
  left: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: 0.25s ease-in-out;
  opacity: 0;
}
body #wrapper #header #menu.expanded {
  left: 0;
  opacity: 1;
}
body #wrapper #header #menu div ul {
  list-style: none;
  padding: 0;
}
body #wrapper #header #menu div ul li {
  text-align: center;
}
body #wrapper #header #menu div ul li a {
  text-transform: uppercase;
  color: #496849;
  text-decoration: none;
  font-size: 2.25rem;
}
body #wrapper #header #menu div ul li.current_page_item a, body #wrapper #header #menu div ul li.current-page-ancestor a {
  text-decoration: underline;
}
body #wrapper #header #menu div ul li ul {
  display: none;
}
body #wrapper #header #hamburger-button {
  z-index: 10010;
  width: 30px;
  height: 35px;
  position: absolute;
  margin: 25px 12.5px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  order: -1;
  top: 0;
  right: 0;
}
body #wrapper #header #hamburger-button span {
  display: block;
  position: absolute;
  width: 100%;
}
body #wrapper #header #hamburger-button span:not(:nth-child(5)):not(:nth-child(6)) {
  height: 2px;
  background: #496849;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
body #wrapper #header #hamburger-button span:nth-child(1) {
  top: 0px;
}
body #wrapper #header #hamburger-button span:nth-child(2), body #wrapper #header #hamburger-button span:nth-child(3) {
  top: 8px;
}
body #wrapper #header #hamburger-button span:nth-child(4) {
  top: 16px;
}
body #wrapper #header #hamburger-button span:nth-child(5), body #wrapper #header #hamburger-button span:nth-child(6) {
  top: 24px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  color: #496849;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
body #wrapper #header #hamburger-button span:nth-child(6) {
  font-size: 0;
}
body #wrapper #header #hamburger-button.open span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
  opacity: 0;
}
body #wrapper #header #hamburger-button.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
body #wrapper #header #hamburger-button.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
body #wrapper #header #hamburger-button.open span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
  opacity: 0;
}
body #wrapper #header #hamburger-button.open span:nth-child(5) {
  font-size: 0;
}
body #wrapper #header #hamburger-button.open span:nth-child(6) {
  font-size: 10px;
}
body #wrapper #header #language-chooser {
  position: absolute;
  bottom: 11px;
  left: 13px;
  height: 25px;
}
body #wrapper #header #language-chooser a img {
  height: 25px;
}
body #wrapper #header #branding {
  display: inline-block;
  width: auto;
  flex-grow: 1;
}
body #wrapper #header #branding #site-title {
  margin: 0 25px;
}
body #wrapper #header #branding #site-title a img {
  max-width: 90%;
  margin-top: 12.5px;
}
body #wrapper #header #extra-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-grow: 1;
  width: 100%;
}
body #wrapper #header #extra-nav nav {
  justify-content: center;
}
body #wrapper #header #extra-nav nav ul {
  list-style: none;
  margin: 0;
  padding: 12.5px 0;
}
body #wrapper #header #extra-nav nav ul li {
  display: inline-block;
  padding: 0 25px;
  border-right: 1px solid black;
}
body #wrapper #header #extra-nav nav ul li:last-of-type {
  border: none;
}
body #wrapper #header #extra-nav nav ul li a {
  color: #000;
  font-size: 14.4px;
  line-height: 14.4px;
}

/**
BREAKPOINT DESKTOP
 */
@media screen and (min-width: 1280px) {
  body #wrapper #header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 25px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
  body #wrapper #header #menu {
    position: relative;
    left: 0;
    height: auto;
    background-color: transparent;
    opacity: 1;
    transform: translateY(50%);
    order: unset;
  }
  body #wrapper #header #menu div {
    background-color: #496849;
    width: 1280px;
    margin: 0 auto;
  }
  body #wrapper #header #menu div ul {
    margin: 0;
    padding: 10px 12.5px;
  }
  body #wrapper #header #menu div ul li {
    display: inline-block;
    padding: 7.5px 12px;
  }
  body #wrapper #header #menu div ul li a {
    color: white;
    font-size: 1rem;
  }
  body #wrapper #header #menu div ul li:last-of-type {
    float: right;
  }
  body #wrapper #header #hamburger-button {
    display: none;
  }
  body #wrapper #header #language-chooser {
    display: block;
    position: relative;
    bottom: 0;
    left: 0;
    align-self: flex-end;
    transform: translateY(50%);
    margin-right: 12.5px;
  }
  body #wrapper #header #language-chooser a img {
    width: 40px;
  }
  body #wrapper #header #branding #site-title {
    margin-left: 0;
  }
  body #wrapper #header #branding #site-title a img {
    max-width: 225px;
    margin-top: 12.5px;
    transform: translateY(25%);
  }
  body #wrapper #header #extra-nav {
    width: auto;
    transform: translateY(50%);
  }
  body #wrapper #header #extra-nav nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    flex-grow: 1;
  }
  body #wrapper #header #extra-nav nav ul {
    list-style: none;
    margin: 0;
    padding: 12.5px 0;
  }
  body #wrapper #header #extra-nav nav ul li {
    display: inline-block;
    padding: 0 12.5px;
    border-right: 1px solid black;
  }
  body #wrapper #header #extra-nav nav ul li:last-of-type {
    border: none;
  }
  body #wrapper #header #extra-nav nav ul li a {
    color: #000;
    font-size: 14.4px;
    line-height: 14.4px;
  }
}
body {
  background-size: cover;
}
body #wrapper {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
body #wrapper #container {
  max-width: 1280px;
  margin: 0 12.5px;
  position: relative;
}
body #wrapper #container main article hr {
  border: none;
  height: 1px;
  color: #496849;
  background-color: #496849;
  margin: 0 0 25px 0;
}
body #wrapper #container main article hr.light {
  background-color: rgba(162, 150, 103, 0.5);
}

@media screen and (max-width: 1330px) {
  body #wrapper #container {
    margin: 0 12.5px;
  }
}
@media screen and (min-width: 1330px) {
  body #wrapper #container {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  body {
    background-size: cover;
  }
  body #wrapper {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }
  body #wrapper #container {
    margin: 0 30px;
  }
  body.page-id-1133 #container {
    margin: 0 12.5px !important;
  }
  body.page-id-1133 #container .wp-block-image img.wp-image-10329 {
    max-width: 100% !important;
    aspect-ratio: auto;
  }
}
body #wrapper #container main article header #childmenu-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 25px;
  background-color: rgba(162, 150, 103, 0.25);
}
body #wrapper #container main article header #childmenu-container.extra-margin {
  margin-top: 50px;
}
body #wrapper #container main article header #childmenu-container .childmenu {
  flex-grow: 1;
}
body #wrapper #container main article header #childmenu-container .childmenu ul {
  list-style: none;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 12.5px 0;
}
body #wrapper #container main article header #childmenu-container .childmenu ul li {
  padding: 6.25px 0;
  border-right: none;
}
body #wrapper #container main article header #childmenu-container .childmenu ul li a {
  color: #496849;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 6.25px 12.5px;
}
body #wrapper #container main article header #childmenu-container .childmenu ul li a:hover {
  color: #FF561C;
}
body #wrapper #container main article header #childmenu-container .childmenu ul li.current_page_item a {
  text-decoration: underline;
  color: #FF561C;
}
body #wrapper #container main article header #childmenu-container .childmenu ul li:last-of-type {
  border: none;
}
body #wrapper #container main article header #childmenu-container .childmenu ul#bokning {
  padding: 12.5px 0;
}
body #wrapper #container main article header #childmenu-container .prev-link, body #wrapper #container main article header #childmenu-container .next-link {
  font-size: 1.65rem;
  flex-grow: 0;
}
body #wrapper #container main article header #childmenu-container .prev-link a, body #wrapper #container main article header #childmenu-container .next-link a {
  display: flex;
  flex-direction: column;
  color: #496849;
  padding: 8.3333333333px 12.5px;
}
body #wrapper #container main article header #childmenu-container .prev-link a:hover, body #wrapper #container main article header #childmenu-container .next-link a:hover {
  color: #FF561C;
}
body #wrapper #container main article header #childmenu-container.booking {
  background-color: #FF561C;
}
body #wrapper #container main article header #childmenu-container.booking .childmenu ul li {
  border-right-color: white;
}
body #wrapper #container main article header #childmenu-container.booking .childmenu ul li a {
  color: white;
}
body #wrapper #container main article header #childmenu-container.booking .childmenu ul li a:hover {
  color: #496849;
}
body #wrapper #container main article header #childmenu-container.booking .childmenu ul li.current_page_item a {
  color: #496849;
}

@media screen and (min-width: 1280px) {
  body #wrapper #container main article header #childmenu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 25px;
    background-color: rgba(162, 150, 103, 0.25);
  }
  body #wrapper #container main article header #childmenu-container.extra-margin {
    margin-top: 50px;
  }
  body #wrapper #container main article header #childmenu-container .childmenu {
    flex-grow: 1;
  }
  body #wrapper #container main article header #childmenu-container .childmenu ul {
    list-style: none;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 12.5px 0;
  }
  body #wrapper #container main article header #childmenu-container .childmenu ul li {
    padding: 0;
  }
  body #wrapper #container main article header #childmenu-container .childmenu ul li a {
    color: #496849;
    text-transform: uppercase;
    font-size: 1rem;
    padding: 12.5px 12.5px;
  }
  body #wrapper #container main article header #childmenu-container .childmenu ul li a:hover {
    color: #FF561C;
  }
  body #wrapper #container main article header #childmenu-container .childmenu ul li.current_page_item a {
    text-decoration: underline;
    color: #FF561C;
  }
  body #wrapper #container main article header #childmenu-container .childmenu ul li:last-of-type {
    border: none;
  }
  body #wrapper #container main article header #childmenu-container .childmenu ul#bokning {
    padding: 12.5px 0;
  }
  body #wrapper #container main article header #childmenu-container .prev-link, body #wrapper #container main article header #childmenu-container .next-link {
    font-size: 1.65rem;
    flex-grow: 0;
  }
  body #wrapper #container main article header #childmenu-container .prev-link a, body #wrapper #container main article header #childmenu-container .next-link a {
    display: flex;
    flex-direction: column;
    color: #496849;
    padding: 8.3333333333px 12.5px;
  }
  body #wrapper #container main article header #childmenu-container .prev-link a:hover, body #wrapper #container main article header #childmenu-container .next-link a:hover {
    color: #FF561C;
  }
  body #wrapper #container main article header #childmenu-container.booking {
    background-color: #FF561C;
  }
  body #wrapper #container main article header #childmenu-container.booking .childmenu ul li {
    border-right-color: white;
  }
  body #wrapper #container main article header #childmenu-container.booking .childmenu ul li a {
    color: white;
  }
  body #wrapper #container main article header #childmenu-container.booking .childmenu ul li a:hover {
    color: #496849;
  }
  body #wrapper #container main article header #childmenu-container.booking .childmenu ul li.current_page_item a {
    color: #496849;
  }
}
#hero {
  margin-top: -25px;
  min-height: 100px;
  position: relative;
}
#hero div#n2-ss-2 {
  box-shadow: 0px 12px 7px -10px rgba(0, 0, 0, 0.5);
}
#hero div#n2-ss-2 .nextend-arrow {
  display: none;
}
#hero #google-map {
  width: 100vw;
  height: 200px;
  margin-left: -12.5px;
}

@media screen and (min-width: 1280px) {
  #hero {
    min-height: 600px;
  }
  #hero div#n2-ss-2 .nextend-arrow {
    display: block;
  }
  #hero #google-map {
    width: 100vw;
    height: 650px;
    margin-left: calc(-50vw + 640px);
  }
}
body #wrapper #container main article .wp-block-columns {
  flex-wrap: wrap;
}
body #wrapper #container main article .wp-block-columns .wp-block-column {
  flex-grow: 1;
  margin-bottom: 1em;
  flex-basis: 100%;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}
body #wrapper #container main article .wp-block-columns .wp-block-column:nth-child(2n) {
  margin-left: 0;
}
body #wrapper #container main article .wp-block-embed {
  margin: 0;
}
body #wrapper #container main article .wp-block-embed iframe {
  width: 100%;
  height: 350px;
}
body #wrapper #container main article .wp-block-audio {
  margin: 0;
}
body #wrapper #container main article .wp-block-nextend-smartslider3 {
  box-sizing: border-box;
  border: 5px solid white;
}
body #wrapper #container main article .wp-block-image img {
  box-sizing: border-box;
  border: 5px solid white;
  width: 100%;
}
body #wrapper #container main article .wp-block-image a img {
  border: 5px solid white;
}
body #wrapper #container main article .wp-block-image.smaller img {
  width: 90%;
  height: auto;
}
body #wrapper #container main article .wp-block-image.no-border img {
  border: none;
}
body #wrapper #container main article .wp-block-image figcaption {
  text-align: left;
  margin: 0 10px 10px 10px;
}

@media screen and (min-width: 1280px) {
  body #wrapper #container main article .wp-block-image {
    margin: 0;
  }
  body #wrapper #container main article .wp-block-columns {
    margin-bottom: 25px;
  }
  body #wrapper #container main article .wp-block-columns .wp-block-column {
    flex-basis: calc(50% - 16px);
    flex-grow: 0;
    margin-bottom: 0;
  }
  body #wrapper #container main article .wp-block-columns .wp-block-column:not(:first-child) {
    margin-left: 25px;
  }
  body #wrapper #container main article .wp-block-columns.has-3-columns .wp-block-column {
    flex-basis: calc(33% - 12.5px);
    flex-grow: 0;
    margin-bottom: 0;
  }
  body #wrapper #container main article .wp-block-columns.has-3-columns .wp-block-column:not(:first-child) {
    margin-left: 25px;
  }
  body #wrapper #container main article .wp-block-columns.has-4-columns .wp-block-column {
    flex-basis: calc(25% - 12.5px);
    flex-grow: 0;
    margin-bottom: 0;
  }
  body #wrapper #container main article .wp-block-columns.has-4-columns .wp-block-column:not(:first-child) {
    margin-left: 0;
  }
}
.table-header {
  border-bottom: 1px solid rgba(162, 150, 103, 0.5);
  padding-bottom: 6.25px;
  margin: 0;
}

.price-table {
  border-spacing: 0;
  width: 100%;
  margin-bottom: 25px;
  margin-left: 0px;
  font-size: 12px;
}
.price-table tbody tr td {
  text-align: center;
  padding: 6.25px 0;
  border-bottom: 1px solid rgba(162, 150, 103, 0.5);
  width: 53px;
}
.price-table tbody tr td:first-of-type {
  text-align: left;
  padding-left: 6.25px;
  width: 110px;
}
.price-table tbody tr:first-of-type td {
  border-bottom: 2px solid rgba(73, 104, 73, 0.75);
  font-weight: bold;
  color: #496849;
}
.price-table tbody tr:first-of-type td:first-of-type {
  padding-left: 0;
}
.price-table.new-v tbody tr td {
  width: auto;
}
.price-table.new-v tbody tr td:first-of-type {
  width: auto;
}
.price-table.no-header tbody tr:first-of-type td {
  border-bottom: 1px solid rgba(162, 150, 103, 0.5);
  font-weight: normal;
  color: black;
}
.price-table.no-header tbody tr:first-of-type td:first-of-type {
  padding-left: 6.25px;
}

.price-table-ski {
  width: 100%;
  border-spacing: 0;
}
.price-table-ski tbody tr td {
  text-align: center;
  padding: 6.25px 0;
  width: 53px;
  border-bottom: 1px solid rgba(162, 150, 103, 0.5);
}
.price-table-ski tbody tr td:first-of-type {
  text-align: left;
  padding-left: 6.25px;
  width: 53px;
}
.price-table-ski tbody tr td strong, .price-table-ski tbody tr td b {
  color: #496849;
}
.price-table-ski tbody tr:first-of-type td {
  font-weight: bold;
  color: #496849;
  border-bottom: 2px solid rgba(73, 104, 73, 0.75);
}
.price-table-ski tbody tr:first-of-type td:first-of-type {
  padding-left: 0;
}

.price-table-single {
  width: 100%;
  border-spacing: 0;
  border-top: 2px solid rgba(73, 104, 73, 0.75);
}
.price-table-single tbody tr td {
  text-align: center;
  padding: 6.25px 0;
  border-bottom: 1px solid rgba(162, 150, 103, 0.5);
  width: 60px;
}
.price-table-single tbody tr td:first-of-type {
  text-align: left;
  width: 180px;
  padding-left: 6.25px;
}
.price-table-single tbody tr td strong, .price-table-single tbody tr td b {
  color: #496849;
}

.table-caption {
  margin-top: 0;
  font-size: 14.4px;
  margin-bottom: 25px;
}

@media screen and (min-width: 1280px) {
  .price-table {
    border-spacing: 0;
    width: 100%;
    margin-bottom: 25px;
    font-size: 1rem;
  }
  .price-table tbody tr td {
    text-align: center;
    padding: 6.25px 0;
    border-bottom: 1px solid rgba(162, 150, 103, 0.5);
    width: 53px;
  }
  .price-table tbody tr td:first-of-type {
    text-align: left;
    padding-left: 6.25px;
    width: 180px;
  }
  .price-table tbody tr:first-of-type td {
    width: auto;
    border-bottom: 2px solid rgba(73, 104, 73, 0.75);
    font-weight: bold;
    color: #496849;
  }
  .price-table tbody tr:first-of-type td:first-of-type {
    padding-left: 0;
  }
  .price-table.first-smaller tbody tr td:first-of-type {
    width: 40%;
  }
  .price-table.new-v tbody tr td {
    width: auto;
  }
  .price-table.new-v tbody tr td:first-of-type {
    width: auto;
  }
  .price-table.no-header tbody tr:first-of-type td {
    border-bottom: 1px solid rgba(162, 150, 103, 0.5);
    font-weight: normal;
    color: black;
  }
  .price-table.no-header tbody tr:first-of-type td:first-of-type {
    padding-left: 6.25px;
  }

  .price-table-ski {
    width: 100%;
    border-spacing: 0;
  }
  .price-table-ski tbody tr td {
    text-align: center;
    padding: 6.25px 0;
    width: 53px;
    border-bottom: 1px solid rgba(162, 150, 103, 0.5);
  }
  .price-table-ski tbody tr td:first-of-type {
    text-align: left;
    padding-left: 6.25px;
    width: 180px;
  }
  .price-table-ski tbody tr td strong, .price-table-ski tbody tr td b {
    color: #496849;
  }
  .price-table-ski tbody tr:first-of-type td {
    font-weight: bold;
    color: #496849;
    border-bottom: 2px solid rgba(73, 104, 73, 0.75);
  }
  .price-table-ski tbody tr:first-of-type td:first-of-type {
    padding-left: 0;
  }

  .price-table-single {
    width: 100%;
    border-spacing: 0;
    border-top: 2px solid rgba(73, 104, 73, 0.75);
  }
  .price-table-single tbody tr td {
    text-align: center;
    padding: 6.25px 0;
    border-bottom: 1px solid rgba(162, 150, 103, 0.5);
    width: 60px;
  }
  .price-table-single tbody tr td:first-of-type {
    text-align: left;
    width: 180px;
    padding-left: 6.25px;
  }
  .price-table-single tbody tr td strong, .price-table-single tbody tr td b {
    color: #496849;
  }

  .table-caption {
    margin-top: 0;
    font-size: 14.4px;
    margin-bottom: 25px;
  }
}
@keyframes flip-card {
  0% {
    transform: rotateY(0deg);
  }
  5% {
    transform: rotateY(180deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  55% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
.puff-container {
  position: absolute;
  top: 120px;
  right: 85px;
}
.puff-container .puff-image {
  position: relative;
  width: 100%;
  height: 100%;
}
.puff-container .puff-image img {
  width: 200px;
}

.tag, .andra_tag {
  position: absolute;
  top: 20px;
  left: 5px;
  width: 90px;
}
.tag .inner, .andra_tag .inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}
.tag .inner.flip, .andra_tag .inner.flip {
  animation-name: flip-card;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-delay: 4s;
}
.tag .inner div, .andra_tag .inner div {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.tag .inner div img, .andra_tag .inner div img {
  width: 100%;
}
.tag .inner div.second, .andra_tag .inner div.second {
  transform: rotateY(180deg);
}

.andra_tag {
  left: 70px;
  /*width: 50px;

  top: 27px;*/
}

/**** ny fliptag **/
.puff-bilder_new {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 0px;
}
.puff-bilder_new .firstcol {
  max-width: 200px;
}
.puff-bilder_new .secondcol {
  max-width: 200px;
}
.puff-bilder_new .secondcol img {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .hide-mobile {
    display: none;
  }

  .puff-bilder_new {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }
  .puff-bilder_new .firstcol {
    max-width: 200px;
  }
  .puff-bilder_new .secondcol {
    max-width: 200px;
  }
  .puff-bilder_new .secondcol img {
    max-width: 100%;
  }
}
.tags .inners, .andra_tags .inners {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}
.tags .inners.flips, .andra_tags .inners.flips {
  animation-name: flip-card;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-delay: 4s;
}
.tags .inners div, .andra_tags .inners div {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.tags .inners div img, .andra_tags .inners div img {
  width: 100%;
}
.tags .inners div.seconds, .andra_tags .inners div.seconds {
  transform: rotateY(180deg);
}

/*** ny fliptag **/
@media screen and (max-width: 768px) {
  .puff-container {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .tag, .andra_tag {
    position: absolute;
    top: 75px;
    left: 50px;
    width: 180px;
  }
  .tag .inner, .andra_tag .inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
  }
  .tag .inner.flip, .andra_tag .inner.flip {
    animation-name: flip-card;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-delay: 4s;
  }
  .tag .inner div, .andra_tag .inner div {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
  }
  .tag .inner div img, .andra_tag .inner div img {
    width: 100%;
  }
  .tag .inner div.second, .andra_tag .inner div.second {
    transform: rotateY(180deg);
  }

  .andra_tag {
    left: 250px;
    /*width: 170px;

    top: 80px;*/
  }
}
#footer {
  margin: 25px 25px 0 25px;
  text-align: center;
  border-top: 1px solid rgba(162, 150, 103, 0.5);
}
#footer > div {
  color: #496849;
  margin: 12.5px 0;
}
#footer > div a {
  color: #496849;
}
#footer > div a:hover {
  color: #FF561C;
}
#footer > div:first-of-type {
  margin: 25px 0 12.5px 0;
}
#footer > div:last-of-type {
  margin: 12.5px 0 25px 0;
}
#footer > div.row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#footer > div.row.copy {
  flex-direction: row;
  position: relative;
}
#footer > div.row.copy #privacy-policy {
  text-align: left;
}
#footer > div.row.copy #copyright {
  margin-top: 25px;
  pointer-events: none;
  position: relative;
  width: 100%;
  text-align: center;
}
#footer > div.row.copy #copyright a {
  pointer-events: all;
}

#footer div.footer-content {
  align-items: flex-start;
  text-align: left;
  padding: 20px 0;
  margin: 0 !important;
}

#footer div.newsletter-wrapper {
  border-bottom: 1px solid rgba(162, 150, 103, 0.5);
  padding-bottom: 40px;
}

#footer .footer-content .column {
  min-width: 100%;
  padding: 10px 0;
}

#footer .footer-content h3 {
  font-size: 1.55rem;
}

#footer .footer-content a[href^="tel:"],
#footer .footer-content a[href^="mailto:"] {
  display: inline-block;
  position: relative;
  text-decoration: underline;
  padding-left: 32px;
  margin-bottom: 14px;
}

#footer .footer-content p a:last-child{
  margin-bottom: 0px;
}

#footer .footer-content a[href^="tel:"]:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("/wp-content/themes/blankslate/assets/images/icons/phone.svg");
  width: 24px;
  height: 24px;
  background-size: contain;
}

#footer .footer-content a[href^="mailto:"]:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("/wp-content/themes/blankslate/assets/images/icons/mail.svg");
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
}

#footer .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-menu li {
  margin-bottom: 14px;
}

#footer .footer-menu li a:after {
  content: "";
  display: inline-block;
  background-image: url("/wp-content/themes/blankslate/assets/images/icons/arrow-right.svg");
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 10px;
  position: relative;
  top: 6px;
}

#footer #custom-area-footer {
  margin: 25px 0;
}
#footer #custom-area-footer .partners-footer {
  padding: 12.5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#footer #custom-area-footer .partners-footer .header {
  font-size: 1.55rem;
  font-weight: 700;
  color: #496849;
  text-align: left;
}
#footer #custom-area-footer .partners-footer .partners {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-grow: 1;
  flex-wrap: wrap;
  margin: 10px 0;
}
#footer #custom-area-footer .partners-footer .partners a {
  padding: 12.5px;
}
#footer #custom-area-footer .partners-footer .partners a img {
  max-width: 200px;
}
#footer #custom-area-footer .partners-footer .link {
  font-size: 14.4px;
  font-weight: 400;
  color: #496849;
  text-align: right;
  align-self: flex-end;
  flex-grow: 1;
  text-decoration: underline;
}
#footer #custom-area-footer .partners-footer .link:hover {
  color: #FF561C;
}
#footer #social-links a {
  padding: 0 6.25px;
}
#footer #social-links a img {
  max-width: 50px;
}
#footer #contact {
  text-transform: uppercase;
  margin-top: 25px;
}
#footer #contact span {
  display: none;
}

@media screen and (max-width: 1330px) {
  #footer {
    margin: 25px 25px 0 25px;
  }
}

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

  #footer .footer-content .column {
    min-width: 50%;
  }

}
@media screen and (min-width: 1330px) {
  #footer {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }

  #footer .footer-content .column {
    min-width: auto;
    padding: 0;
  }

  #footer > div.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #footer > div.row.copy {
    flex-direction: row;
    justify-content: flex-start;
    position: relative;
  }
  #footer > div.row.copy #copyright {
    pointer-events: none;
    width: 100%;
    text-align: center;
    margin-top: 70px;
    margin-bottom: 10px;
  }
  #footer > div.row.copy #copyright a {
    pointer-events: all;
  }
  #footer > div.row #contact {
    font-size: 1.2em;
    margin-top: 0;
  }
  #footer > div.row #contact span {
    display: inline;
  }
  #footer > div #social-links {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
  }
  #footer > div #social-links a {
    padding: 12.5px;
  }
  #footer > div #social-links a img {
    max-width: 70px;
  }
  #footer > div#custom-area-footer {
    margin: 25px 0;
  }
  #footer > div#custom-area-footer .partners-footer {
    padding: 12.5px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  #footer > div#custom-area-footer .partners-footer .header {
    font-size: 1.55rem;
    font-weight: 700;
    color: #496849;
    text-align: left;
  }
  #footer > div#custom-area-footer .partners-footer .partners {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: center;
    flex-grow: 1;
  }
  #footer > div#custom-area-footer .partners-footer .partners a {
    padding: 12.5px;
  }
  #footer > div#custom-area-footer .partners-footer .partners a img {
    max-width: 200px;
  }
  #footer > div#custom-area-footer .partners-footer .link {
    font-size: 18px;
    font-weight: 400;
    color: #496849;
    text-align: right;
    align-self: flex-end;
  }
  #footer > div#custom-area-footer .partners-footer .link:hover {
    color: #FF561C;
  }
  #footer div.footer-content {
    align-items: flex-start;
    padding-top: 70px;
    padding-bottom: 70px;
    margin: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  #footer div:first-of-type {
    margin: 10px 0 12.5px 0;
  }
}
@font-face {
  font-family: "Sveva-Versal";
  src: url("../fonts/396BC5_0_0.eot");
  src: url("../fonts/396BC5_0_0.eot?#iefix") format("embedded-opentype"), url("../fonts/396BC5_0_0.woff2") format("woff2"), url("../fonts/396BC5_0_0.woff") format("woff"), url("../fonts/396BC5_0_0.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "RoyalGothic";
  src: url("../fonts/RoyalGothic.woff") format("woff");
}
html, body {
  font-size: 16px;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.2;
  background-color: #FFFCF8;
}
html a, body a {
  text-decoration: none;
  color: #FF561C;
}
html a:hover, body a:hover {
  text-decoration: none;
  color: #496849;
}

h1 {
  font-size: 1.62rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #FF561C;
  text-align: center;
}
h1.extra-margin {
  margin-top: 25px;
}

h2 {
  font-size: 3.25rem;
  text-align: center;
  color: #496849;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 12.5px 0;
}
h2.small {
  font-size: 1.15rem;
  font-family: "Roboto Condensed";
  letter-spacing: 1px;
  font-weight: 700;
}

h3 {
  font-size: 1.25rem;
  margin: 12.5px 0;
}
h3.orange {
  color: #FF561C;
  margin-bottom: 0;
}
h3.green {
  color: #496849;
  margin-bottom: 0;
}
h3.uppercase {
  text-transform: uppercase;
}

h4 {
  font-size: 1.15rem;
  margin: 12.5px 0;
}
h4.orange {
  color: #FF561C;
  margin-bottom: 0;
}
h4.uppercase {
  text-transform: uppercase;
}

p.less-margin-top {
  margin-top: 6.25px;
}

p {
  margin-top: 0;
}

br.mobile {
  display: block;
}

@media screen and (min-width: 1280px) {
  html, body {
    font-size: 18px;
    font-family: "Roboto Condensed", sans-serif;
    line-height: 1.2;
  }
  html a, body a {
    text-decoration: none;
    color: #FF561C;
  }
  html a:hover, body a:hover {
    text-decoration: none;
    color: #496849;
  }

  h1 {
    font-size: 1.62rem;
    text-transform: uppercase;
    font-weight: bold;
    color: #FF561C;
    text-align: center;
  }
  h1.extra-margin {
    margin-top: 50px;
  }

  h2 {
    font-size: 3.25rem;
    text-align: center;
    color: #496849;
    font-family: "Roboto Condensed", sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 12.5px 0;
  }
  h2.small {
    font-size: 1.15rem;
    font-family: "Roboto Condensed";
    letter-spacing: 1px;
    font-weight: 700;
  }

  h3 {
    font-size: 1.25rem;
    margin: 12.5px 0;
  }
  h3.orange {
    color: #FF561C;
    margin-bottom: 0;
  }
  h3.green {
    color: #496849;
    margin-bottom: 0;
  }
  h3.uppercase {
    text-transform: uppercase;
  }

  h4 {
    font-size: 1.15rem;
    margin: 12.5px 0;
  }
  h4.orange {
    color: #FF561C;
    margin-bottom: 0;
  }
  h4.uppercase {
    text-transform: uppercase;
  }

  p.less-margin-top {
    margin-top: 6.25px;
  }

  p {
    margin-top: 0;
  }

  br.mobile {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }

  h4 {
    font-size: 22px;
    line-height: 24px;
  }
}
html .primary, body .primary {
  color: #496849;
}
html .primary a, body .primary a {
  color: #496849;
}
html .primary a:hover, body .primary a:hover {
  color: #FF561C;
}
html .ternary, body .ternary {
  color: #FF561C;
}
html .ternary a, body .ternary a {
  color: #FF561C;
}
html .ternary a:hover, body .ternary a:hover {
  color: #496849;
}
html .larger0, body .larger0 {
  font-size: 21.6px;
}
html .larger0 a, body .larger0 a {
  font-size: 21.6px;
}
html .margin-top, body .margin-top {
  margin-top: 25px !important;
}
html .no-margin, body .no-margin {
  margin: 0;
}
html .no-margin-top, body .no-margin-top {
  margin-top: 0;
}
html .no-margin-bottom, body .no-margin-bottom {
  margin-bottom: 0;
}
html .larger-margin-top, body .larger-margin-top {
  margin-top: 50px;
}
html .half-margin-bottom, body .half-margin-bottom {
  margin-bottom: 25px;
}
html .small-margin-top, body .small-margin-top {
  margin-top: 12.5px !important;
}
html .small-margin-bottom, body .small-margin-bottom {
  margin-bottom: 12.5px;
}
html .smallest-margin-top, body .smallest-margin-top {
  margin-top: 6.25px;
}
html .main-font, body .main-font {
  font-family: Sveva-Versal;
}
html .smaller0, body .smaller0 {
  font-size: 10.008px;
}
html .green, body .green {
  color: #496849;
}
html .left, body .left {
  text-align: left;
}
html .orange, body .orange {
  color: #FF561C;
}
html .uppercase, body .uppercase {
  text-transform: uppercase;
}
html .inline, body .inline {
  display: inline;
}
html .h2, body .h2 {
  font-size: 3.25rem;
  text-align: center;
  color: #496849;
  font-family: "Sveva-Versal";
  font-weight: 400;
  letter-spacing: 2px;
  margin: 12.5px 0;
}
html .white-bg, body .white-bg {
  background-color: white;
  padding: 12.5px;
}

@media screen and (min-width: 1280px) {
  html .primary, body .primary {
    color: #496849;
  }
  html .primary a, body .primary a {
    color: #496849;
  }
  html .primary a:hover, body .primary a:hover {
    color: #FF561C;
  }
  html .ternary, body .ternary {
    color: #FF561C;
  }
  html .ternary a, body .ternary a {
    color: #FF561C;
  }
  html .ternary a:hover, body .ternary a:hover {
    color: #496849;
  }
  html .larger0, body .larger0 {
    font-size: 21.6px;
  }
  html .larger0 a, body .larger0 a {
    font-size: 21.6px;
  }
  html .margin-top, body .margin-top {
    margin-top: 25px !important;
  }
  html .no-margin, body .no-margin {
    margin: 0;
  }
  html .no-margin-top, body .no-margin-top {
    margin-top: 0;
  }
  html .no-margin-bottom, body .no-margin-bottom {
    margin-bottom: 0;
  }
  html .larger-margin-top, body .larger-margin-top {
    margin-top: 50px;
  }
  html .half-margin-bottom, body .half-margin-bottom {
    margin-bottom: 25px;
  }
  html .small-margin-top, body .small-margin-top {
    margin-top: 12.5px !important;
  }
  html .small-margin-bottom, body .small-margin-bottom {
    margin-bottom: 12.5px;
  }
  html .smallest-margin-top, body .smallest-margin-top {
    margin-top: 6.25px;
  }
  html .main-font, body .main-font {
    font-family: Sveva-Versal;
  }
  html .smaller0, body .smaller0 {
    font-size: 14.4px;
  }
  html .green, body .green {
    color: #496849;
  }
  html .left, body .left {
    text-align: left;
  }
  html .orange, body .orange {
    color: #FF561C;
  }
  html .uppercase, body .uppercase {
    text-transform: uppercase;
  }
  html .inline, body .inline {
    display: inline;
  }
  html .h2, body .h2 {
    font-size: 3.25rem;
    text-align: center;
    color: #496849;
    font-family: "Sveva-Versal";
    font-weight: 400;
    letter-spacing: 2px;
    margin: 12.5px 0;
  }
  html .white-bg, body .white-bg {
    background-color: white;
    padding: 12.5px;
  }
}
.piff-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.piff-container.odd .col-content {
  order: 2;
}
.piff-container.odd .col-image {
  order: 1;
}
.piff-container.leftimage .col-content {
  order: 2;
}
.piff-container.leftimage .col-image {
  order: 1;
}
.piff-container .col-content {
  padding: 30px;
  color: #ffffff;
}
.piff-container .col-content.bggold {
  background: #A29667;
}
/* leen */
.piff-container .col-content .buttons .button a {
display:block;
padding:10px 20px;
}
.piff-container .col-content.bggold .buttons .button a {
  color: #A29667;
}
.piff-container .col-content.bggreen {
  background: #496849;
}
.piff-container .col-content.bggreen .buttons .button a {
  color: #496849;
}
.piff-container .col-content.bgorange {
  background: #FF561C;
}
.piff-container .col-content.bgorange .buttons .button a {
  color: #FF561C;
}
.piff-container .col-content h2 {
  color: #ffffff;
  font-size: 48px !important;
  line-height: 52px !important;
  text-align: left;
  margin-top: 0;
  text-transform: initial;
  letter-spacing: normal;
}
.piff-container .col-content h3.vinjett {
  font-size: 25px !important;
  line-height: 25px !important;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.piff-container .col-content p {
  font-size: 22px;
  line-height: 26px;
}
.piff-container .col-content .buttons {
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.piff-container .col-content .buttons .button {
  background: #ffffff;
  display: inline-block;
/* 	leen */
/*   padding: 10px 20px; */
  margin-right: 10px;
  text-transform: uppercase;
}
.piff-container .col-content.bgblack {
  background: #000;
}
.piff-container .col-content.bgblack h2 {
  font-size: 56px !important;
  line-height: 56px !important;
  text-transform: uppercase;
}
.piff-container .col-content.bgblack h3.vinjett {
  margin: 0;
  font-size: 78px !important;
  line-height: 78px !important;
}
.piff-container .col-content.bgblack em, .piff-container .col-content.bgblack .small {
  font-size: 0.7em;
  line-height: 0.7em;
}
.piff-container .col-content.bgblack .buttons .button a {
  color: #000;
}
.piff-sep {
  margin-top: 20px;
}
.piff-sep hr {
  color: rgba(162, 150, 103, 0.5) !important;
  background-color: rgba(162, 150, 103, 0.5) !important;
}

@media screen and (max-width: 768px) {
  .piff-container {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .piff-container .col-content {
    order: 2;
    padding: 20px;
  }
  .piff-container .col-content h3.vinjett {
    font-size: 20px !important;
    line-height: 25px !important;
    text-transform: uppercase;
    margin-bottom: 5px;
  }
  .piff-container .col-content h2 {
    color: #ffffff;
    font-size: 32px !important;
    line-height: 36px !important;
    text-align: left;
    margin-top: 0;
  }
  .piff-container .col-content p {
    font-size: 18px;
    line-height: 24px;
  }
  .piff-container .col-content .buttons {
    margin-bottom: 10px;
    display: grid;
    grid-template-rows: repeat(1, minmax(0, 1fr));
    gap: 8px;
  }
  .piff-container .col-content .buttons .button {
    background: #ffffff;
    display: block;
/*     padding: 10px 20px; */
    margin-right: 0;
    text-align: center;
    text-transform: uppercase;
  }
  .piff-container .col-image {
    order: 1;
  }
}
/** FLINGAS erbjudande **/
.flingas-container .flingas-erbjudande {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.flingas-container .flingas-erbjudande.part2 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.flingas-container .flingas-erbjudande .flingas-image {
  grid-column: span 1/span 1;
  text-align: center;
}
.flingas-container .flingas-erbjudande .flingas-image img {
  max-width: 230px;
}
.flingas-container .flingas-erbjudande .flingas-content {
  grid-column: span 3/span 3;
  padding-left: 20px;
  margin-bottom: 20px;
}
.flingas-container .flingas-erbjudande .flingas-content h3.ingress {
  text-transform: uppercase;
  color: #FF561C;
  text-align: center;
}
.flingas-container .flingas-erbjudande .flingas-content h2 {
  line-height: 3rem;
}
.flingas-container .flingas-erbjudande .flingas-content h2.orange {
  color: #FF561C;
}
.flingas-container .flingas-erbjudande .flingas-content h2.orange.p50rabatt {
  font-size: 2.75rem;
}
.flingas-container .flingas-erbjudande .flingas-content .villkor {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.flingas-container .flingas-erbjudande .flingas-content .villkor ul {
  text-transform: uppercase;
  font-size: 26px;
  margin: 0;
}
.flingas-container .flingas-erbjudande .flingas-content.p2 h3.ingress {
  text-transform: uppercase;
  text-align: center;
}
.flingas-container .flingas-erbjudande .flingas-content.p2 .smaller {
  font-size: 16px;
  line-height: 20px;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .flingas-container .flingas-erbjudande .flingas-content.p2 .smaller {
    font-size: 12px;
    line-height: 16px;
  }
}
.flingas-container .flingas-erbjudande .flingas-content.p2 h2 {
  line-height: 5rem;
  font-size: 5rem;
}
@media screen and (max-width: 768px) {
  .flingas-container .flingas-erbjudande .flingas-content.p2 h2 {
    font-size: 3.7rem;
    line-height: 3.7rem;
  }
}
.flingas-container .flingas-erbjudande .flingas-content.p2 h2.orange {
  color: #496849;
  margin-bottom: 0;
}
.flingas-container .flingas-erbjudande .flingas-content.p2 h2.orange.p50rabatt {
  font-size: 2.75rem;
  line-height: 3rem;
}
@media screen and (max-width: 768px) {
  .flingas-container .flingas-erbjudande .flingas-content.p2 h2.orange.p50rabatt {
    font-size: 2.75rem;
    line-height: 3rem;
  }
}
.flingas-container .flingas-erbjudande .flingas-content.p2 .secondtitle {
  font-size: 3rem;
  line-height: 3rem;
  color: #496849;
  margin: 0;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .flingas-container .flingas-erbjudande .flingas-content.p2 .secondtitle {
    font-size: 2rem;
    line-height: 2rem;
  }
}
.flingas-container .flingas-erbjudande .flingas-content .flingas-notis {
  margin-top: 10px;
  font-style: italic;
}
.flingas-container .flingas-erbjudande .flingas-content .flingas-notis p {
  font-size: 14px;
  line-height: 18px;
}
.flingas-container .flingas-erbjudande .flingas-content .flingas-info {
  margin-top: 20px;
  font-style: italic;
}
.flingas-container .flingas-erbjudande .flingas-content .flingas-info p {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 0;
}
.flingas-container .flingas-erbjudande .flingas-content .boka-knappar {
  margin: 20px 0 auto;
  text-align: center;
  display: block;
  gap: 15px;
  justify-content: center;
}
.flingas-container .flingas-erbjudande .flingas-content .boka-knappar.hidden {
  display: none;
}
@media screen and (max-width: 768px) {
  .flingas-container .flingas-erbjudande .flingas-content .boka-knappar.display-mobile {
    display: block;
    min-width: 250px;
  }
}
@media screen and (min-width: 768px) {
  .flingas-container .flingas-erbjudande .flingas-content .boka-knappar.display-desktop {
    display: block;
  }
}
.flingas-container .flingas-erbjudande .flingas-content .boka-knappar a {
  display: block;
  background: #496849;
  color: #ffffff;
  padding: 10px 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.flingas-container .flingas-erbjudande .flingas-content .boka-knappar a:last-child {
  margin-bottom: 0px;
}
.flingas-container .flingas-erbjudande .flingas-content .boka-knappar.boka-orange a {
  background: #FF561C;
}
.flingas-container .flingas-erbjudande .flingas-content .boka-knappar.boka-orange2 a {
  background: #FF561C;
}
.flingas-container.spec .flingas-erbjudande {
  display: block;
}
.flingas-container.spec .flingas-erbjudande .flingas-content {
  padding: 0;
}
.flingas-container.spec .flingas-erbjudande .flingas-content .boka-knappar a {
  background: #496849;
}

@media screen and (max-width: 768px) {
  .flingas-container .flingas-erbjudande {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .flingas-container .flingas-erbjudande .flingas-image {
    grid-column: span 1/span 1;
    margin: 0 auto;
    text-align: center;
  }
  .flingas-container .flingas-erbjudande .flingas-image img {
    max-width: 80%;
  }
  .flingas-container .flingas-erbjudande .flingas-content {
    grid-column: span 1/span 1;
    padding-left: 0;
    margin-bottom: 0;
  }
  .flingas-container .flingas-erbjudande .flingas-content h2 {
    line-height: 34px;
  }
  .flingas-container .flingas-erbjudande .flingas-content h2.p50rabatt {
    font-size: 2rem;
    line-height: 2.3rem;
  }
  .flingas-container .flingas-erbjudande .flingas-content ul {
    margin-bottom: 0;
    text-transform: uppercase;
  }
  .flingas-container .flingas-erbjudande .flingas-content p {
    font-size: 18px;
    line-height: 24px;
  }
  .flingas-container .flingas-erbjudande .flingas-content .villkor {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .flingas-container .flingas-erbjudande .flingas-content .villkor ul {
    font-size: 22px;
    margin: 0;
  }
  .flingas-container .flingas-erbjudande .flingas-content .villkor ul li {
    padding-bottom: 5px;
  }
  .flingas-container .flingas-erbjudande .flingas-content .flingas-info {
    margin-bottom: 20px;
  }
  .flingas-container .flingas-erbjudande .flingas-content .boka-knappar {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 8px;
  }
  .flingas-container .flingas-erbjudande .flingas-content .boka-knappar a {
    display: inline-block;
    text-align: center;
    background: #496849;
    color: #ffffff;
    padding: 10px 20px;
    min-width: 250px;
  }
}
#booking-module-container {
  pointer-events: none;
}
#booking-module-container #booking-module-logo {
  overflow: hidden;
  display: flex;
  justify-content: center;
}
#booking-module-container #booking-module-logo img {
  align-self: center;
  width: 600px;
}
#booking-module-container #buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 12.5px 0 12.5px 0;
}
#booking-module-container #buttons .button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFF;
  width: 30%;
  height: 95px;
  margin-bottom: 12.5px;
  text-decoration: none;
  pointer-events: all;
}
#booking-module-container #buttons .button .icon {
  padding: 12.5px 23px 12.5px 23px;
  display: flex;
}
#booking-module-container #buttons .button .icon img {
  max-height: 50px;
  max-width: 80px;
}
#booking-module-container #buttons .button .title {
  font-size: 16px;
  line-height: 1.05rem;
  color: #496849;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
}
#booking-module-container #buttons .spacer {
  display: none;
}
@media screen and (min-width: 1280px) {
  #booking-module-container {
    position: absolute;
    top: 475px;
    width: 1100px;
    left: 50%;
    transform: translateX(-50%);
  }
  #booking-module-container #booking-module-logo img {
    bottom: 50px;
    width: 100%;
    max-width: 1280px;
    position: absolute;
    left: 0;
  }
  #booking-module-container #buttons {
    background-color: transparent;
  }
  #booking-module-container #buttons .button {
    margin-bottom: 0;
    margin-left: 12.5px;
    transition: 0.25s ease-in-out;
    width: 100px;
    height: 100px;
  }
  #booking-module-container #buttons .button:nth-child(n+5) {
    margin-left: 0;
    margin-right: 12.5px;
  }
  #booking-module-container #buttons .button:hover {
    box-shadow: 0 8px 9px -5px rgba(0, 0, 0, 0.5);
  }
  #booking-module-container #buttons .button:focus {
    box-shadow: inset 0 9px 7px -5px rgba(0, 0, 0, 0.3);
    outline: none;
  }
  #booking-module-container #buttons .spacer {
    display: flex;
    flex-grow: 1;
    background: transparent;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
  #booking-module-container #buttons .spacer .contact {
    pointer-events: all;
    display: block;
    text-align: center;
    text-transform: uppercase;
    color: #FF561C;
    font-weight: bold;
    font-size: 150%;
  }
  #booking-module-container #buttons .spacer .contact:hover {
    color: #496849;
  }
  #booking-module-container #buttons .spacer .opening-hours {
    font-weight: normal;
    color: #496849;
    font-size: 14.4px;
  }
  #booking-module-container #buttons .spacer .bg-round {
    position: absolute;
    width: 188px;
    height: 188px;
    top: -143px;
    left: 50%;
    background-color: #fff;
    z-index: -1;
    transform: translateX(-50%);
    border-radius: 50%;
  }
}

@media screen and (min-width: 1200px) {
  .edit-post-visual-editor #booking-module-container {
    position: relative;
    top: 0px;
    width: 1000px;
    left: 50%;
    transform: translateX(-50%);
  }
  .edit-post-visual-editor #booking-module-container #booking-module-logo img {
    bottom: 58px;
    width: 100%;
    max-width: 1280px;
    position: relative;
  }
}

#booking-container {
  padding: 0;
}
#booking-container iframe {
  width: 100% !important;
}

.acf-block-preview #booking-container {
  height: 400px;
  background-color: navajowhite;
}
.acf-block-preview #booking-container:before {
  content: "This module can't be previewed";
  font-size: 30px;
  width: 100%;
  height: 400px;
  text-align: center;
  margin-top: 50%;
  transform: translateX(-50%);
}

.cta-puff {
  position: relative;
  max-width: 100%;
  margin: 0 auto 25px auto;
}
.cta-puff .eye-catcher {
  position: absolute;
  background-color: #FF561C;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  padding: 12.5px;
  color: white;
  font-weight: 700;
  top: -12.5px;
  left: -12.5px;
}
.cta-puff .eye-catcher div {
  font-family: Sveva-Versal, sans-serif;
  font-size: 18px;
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 50%;
  transform: translateY(-10%) rotate(-6deg);
  text-align: center;
}
.cta-puff .img img {
  box-sizing: border-box;
  width: 100%;
  border: 5px solid white;
}
.cta-puff .content {
  display: inline-block;
  width: calc(100% - 50px);
  margin: -30px 25px 0 25px;
}
.cta-puff .content h3 {
  font-family: sans-serif;
  font-family: "Sveva-Versal";
  letter-spacing: 2px;
  text-align: center;
  text-transform: none;
  margin: 12.5px 12.5px 0 12.5px;
}
.cta-puff .content p {
  font-size: 14.4px;
  margin: 0 12.5px 12.5px 12.5px;
}

.post-slider .item {
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box;
  border: 10px solid white;
  height: 290px;
  position: relative;
}
.post-slider .item .content {
  background-color: rgba(73, 104, 73, 0.75);
  position: absolute;
  bottom: 12.5px;
  right: 12.5px;
  left: 12.5px;
}
.post-slider .item .content h3 {
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 400;
  color: white;
  margin: 0;
  text-align: center;
  margin-top: 6.25px;
  text-transform: uppercase;
}
.post-slider .item .content h4 {
  font-size: 1.3rem;
  line-height: 1.2;
  margin: 0;
  text-align: center;
  color: white;
  margin-bottom: 6.25px;
  font-family: Sveva-Versal;
  font-weight: 400;
}
.post-slider.slick-dotted.slick-slider {
  margin-bottom: 55px;
}
.post-slider .slick-prev, .post-slider .slick-next {
  width: 35px;
  height: 35px;
  background: #A29667;
  z-index: 1;
  border-radius: 50%;
}
.post-slider .slick-prev:before, .post-slider .slick-next:before {
  font-family: "Font Awesome 5 Pro";
  font-size: 20px;
  opacity: 1;
  padding: 0px;
}
.post-slider .slick-prev:hover, .post-slider .slick-prev:focus, .post-slider .slick-next:hover, .post-slider .slick-next:focus {
  background: #A29667;
}
.post-slider .slick-prev {
  left: -15px;
}
.post-slider .slick-prev:before {
  content: "\f060";
}
.post-slider .slick-next {
  right: -10px;
}
.post-slider .slick-next:before {
  content: "\f061";
}
.post-slider .slick-dots li {
  width: 12.5px;
  height: 12.5px;
  margin: 0 6.25px;
}
.post-slider .slick-dots li button {
  width: 12.5px;
  height: 12.5px;
}
.post-slider .slick-dots li button:before {
  content: "";
  width: 12.5px;
  height: 12.5px;
  background-color: #496849;
  opacity: 1;
}
.post-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  background-color: #A29667;
}
.post-slider.full-width {
  width: 100vw;
  margin-left: -25px;
}
.post-slider.full-width .item {
  border: none;
  height: 200px;
}
.post-slider.full-width .slick-prev, .post-slider.full-width .slick-next {
  width: 25px;
  height: 25px;
  background: #A29667;
  z-index: 1;
  border-radius: 0;
}
.post-slider.full-width .slick-prev {
  left: 0px;
}
.post-slider.full-width .slick-prev:before {
  content: "\f060";
}
.post-slider.full-width .slick-next {
  right: 0px;
}
.post-slider.full-width .slick-next:before {
  content: "\f061";
}
@media screen and (min-width: 1280px) {
  .post-slider {
    margin-bottom: 25px;
    margin-left: calc(-50vw + 640px);
    margin-right: calc(-50vw + 640px);
  }
  .post-slider .item {
    height: 353px;
    margin: 0 6.25px;
  }
  .post-slider .slick-prev {
    left: 25px;
  }
  .post-slider .slick-prev:before {
    content: "\f060";
  }
  .post-slider .slick-next {
    right: 25px;
  }
  .post-slider .slick-next:before {
    content: "\f061";
  }
  .post-slider .slick-list {
    padding: 0 calc((100vw - 1280px - 50px) / 2) !important;
  }
}

.vitecContainer {
  border-spacing: 0;
  width: 100%;
  margin-bottom: 6.25px;
}
.vitecContainer tbody tr:hover a {
  color: #496849;
}
.vitecContainer tbody tr td {
  text-align: center;
  padding: 6.25px 0;
  border-bottom: 1px solid rgba(162, 150, 103, 0.5);
  width: 33%;
}
.vitecContainer tbody tr td a {
  display: block;
  color: #FF561C;
  padding: 8px;
}
.vitecContainer tbody tr td:first-of-type {
  text-align: left;
  padding-left: 6.25px;
  width: 33%;
}
.vitecContainer tbody tr:first-of-type td {
  border-bottom: 2px solid rgba(73, 104, 73, 0.75);
  font-weight: bold;
  color: #496849;
}
.vitecContainer tbody tr:first-of-type td:first-of-type {
  padding-left: 0;
}
.vitecContainer.hidden {
  max-height: 0;
  overflow: hidden;
  display: block;
}

#area-list a.area h3, #area-list div.area h3 {
  font-size: 1.25rem;
  color: #496849;
  text-transform: uppercase;
  margin-bottom: 0;
}
#area-list a.area h4, #area-list div.area h4 {
  font-size: 1.15rem;
  color: #496849;
  text-transform: uppercase;
  margin: 0;
}
#area-list a.area p, #area-list div.area p {
  margin-top: 0;
  color: #000;
}
#area-list a.area p span, #area-list div.area p span {
  color: #FF561C;
}

#vitecNewProduction {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
#vitecNewProduction .puff {
  flex-basis: 100%;
  margin-bottom: 25px;
  padding-right: 0;
}
#vitecNewProduction .puff .img img {
  box-sizing: border-box;
  width: 100%;
  max-height: unset;
  border: 5px solid white;
}
#vitecNewProduction .puff .content {
  display: inline-block;
  width: calc(100% - 50px);
  margin: -30px 25px 0 25px;
  background-color: #496849;
  color: white;
}
#vitecNewProduction .puff .content p {
  padding-top: 12.5px;
  text-align: center;
  font-size: 14.4px;
  margin: 0 12.5px 12.5px 12.5px;
}
#vitecNewProduction .puff .content p strong {
  text-transform: uppercase;
}
#vitecNewProduction .puff:nth-of-type(n+3) {
  padding-right: 0;
}

.vitecTitle {
  color: #496849;
  text-transform: uppercase;
}

.vitec-tabulator.tabulator {
  border: none;
  background-color: transparent;
  margin-bottom: 25px;
  font-size: 18px;
}
.vitec-tabulator.tabulator .tabulator-header {
  border-bottom: 2px solid #496849;
  color: #496849;
  background-color: transparent;
  text-transform: uppercase;
}
.vitec-tabulator.tabulator .tabulator-header .tabulator-col {
  border-right: none;
  background: transparent;
  text-align: center;
}
.vitec-tabulator.tabulator .tabulator-header .tabulator-col:first-of-type {
  text-align: left;
}
.vitec-tabulator.tabulator .tabulator-header .tabulator-col.tabulator-sortable {
  transition: color 0.2s ease-in-out;
}
.vitec-tabulator.tabulator .tabulator-header .tabulator-col.tabulator-sortable:hover {
  background-color: transparent;
  color: #FF561C;
}
.vitec-tabulator.tabulator .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title {
  padding-right: 0;
}
.vitec-tabulator.tabulator .tabulator-tableHolder .tabulator-table {
  background-color: transparent;
}
.vitec-tabulator.tabulator .tabulator-tableHolder .tabulator-table .tabulator-row {
  color: #FF561C;
  background-color: transparent;
  border-bottom: 1px solid rgba(162, 150, 103, 0.5);
}
.vitec-tabulator.tabulator .tabulator-tableHolder .tabulator-table .tabulator-row .tabulator-cell {
  border-right: none;
  padding: 8.3333333333px;
  text-align: center;
}
.vitec-tabulator.tabulator .tabulator-tableHolder .tabulator-table .tabulator-row .tabulator-cell:first-of-type {
  text-align: left;
}
.vitec-tabulator.tabulator .tabulator-footer {
  background-color: transparent;
  border-top: 1px solid rgba(162, 150, 103, 0.5);
  padding: 12.5px 12.5px;
}
.vitec-tabulator.tabulator .tabulator-footer .tabulator-page {
  padding: 6.25px 12.5px;
  border: none;
  background: #496849;
  color: white;
  border-radius: 0;
  transition: background-color 0.2s ease-in-out;
}
.vitec-tabulator.tabulator .tabulator-footer .tabulator-page:not(.diabled):hover {
  background: #FF561C;
}
.vitec-tabulator.tabulator .tabulator-footer .tabulator-page.active {
  color: white;
  background: #FF561C;
  opacity: 0.7;
}
.vitec-tabulator.tabulator .tabulator-footer .tabulator-pages {
  margin: 0;
}

@media screen and (min-width: 768px) {
  #vitecNewProduction {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
  }
  #vitecNewProduction .puff {
    flex-basis: calc(50% - 13px);
    margin-bottom: 25px;
    padding-right: 0;
  }
  #vitecNewProduction .puff .img img {
    box-sizing: border-box;
    width: 100%;
    max-height: unset;
    border: 5px solid white;
  }
  #vitecNewProduction .puff .content {
    display: inline-block;
    width: calc(100% - 50px);
    margin: -30px 25px 0 25px;
    background-color: #496849;
    color: white;
  }
  #vitecNewProduction .puff .content p {
    padding-top: 12.5px;
    text-align: center;
    font-size: 14.4px;
    margin: 0 12.5px 12.5px 12.5px;
  }
  #vitecNewProduction .puff .content p strong {
    text-transform: uppercase;
  }
  #vitecNewProduction .puff:nth-of-type(n+3) {
    padding-right: 0;
  }
}
@media screen and (min-width: 1280px) {
  #vitecNewProduction {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
  }
  #vitecNewProduction .puff {
    flex-basis: calc(33% - 13px);
    margin-bottom: 25px;
    padding-right: 25px;
  }
  #vitecNewProduction .puff .img img {
    box-sizing: border-box;
    width: 100%;
    max-height: 225px;
    border: 5px solid white;
  }
  #vitecNewProduction .puff .content {
    display: inline-block;
    width: calc(100% - 50px);
    margin: -30px 25px 0 25px;
    background-color: #496849;
    color: white;
  }
  #vitecNewProduction .puff .content p {
    padding-top: 12.5px;
    text-align: center;
    font-size: 14.4px;
    margin: 0 12.5px 12.5px 12.5px;
  }
  #vitecNewProduction .puff .content p strong {
    text-transform: uppercase;
  }
  #vitecNewProduction .puff:nth-of-type(n+3) {
    padding-right: 0;
  }
}
#ski-resort-buttons {
  background-color: #A29667;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 12.5px 0;
  margin-bottom: 12.5px;
  margin-top: 12.5px;
}
#ski-resort-buttons > div, #ski-resort-buttons a {
  padding: 0 6.25px;
  text-align: center;
  color: white;
  border-right: 1px solid white;
  font-size: 10.008px;
  width: 20%;
}
#ski-resort-buttons > div.disabled, #ski-resort-buttons a.disabled {
  color: rgba(255, 255, 255, 0.3);
}
#ski-resort-buttons > div i, #ski-resort-buttons a i {
  font-size: 18px;
  margin-top: 2px;
}
#ski-resort-buttons > div.skiing-tracks, #ski-resort-buttons a.skiing-tracks {
  display: none;
}
#ski-resort-buttons > div.temperature, #ski-resort-buttons a.temperature {
  order: 1;
}
#ski-resort-buttons > div.snow-depth, #ski-resort-buttons a.snow-depth {
  order: 2;
}
#ski-resort-buttons > div.webcam, #ski-resort-buttons a.webcam {
  order: 3;
}
#ski-resort-buttons > div.pists, #ski-resort-buttons a.pists {
  order: 4;
}
#ski-resort-buttons > div.lifts, #ski-resort-buttons a.lifts {
  order: 5;
  border-right: 0;
}
#ski-resort-buttons > div > div:last-of-type, #ski-resort-buttons a > div:last-of-type {
  border: none;
}
#ski-resort-buttons > div div, #ski-resort-buttons > div a, #ski-resort-buttons a div, #ski-resort-buttons a a {
  text-transform: uppercase;
}
#ski-resort-buttons > div div:nth-of-type(2), #ski-resort-buttons > div a:nth-of-type(2), #ski-resort-buttons a div:nth-of-type(2), #ski-resort-buttons a a:nth-of-type(2) {
  font-weight: 700;
}

@media screen and (min-width: 1280px) {
  #ski-resort-buttons {
    background-color: #A29667;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 12.5px 0;
    margin-bottom: 25px;
    margin-top: 25px;
  }
  #ski-resort-buttons > div, #ski-resort-buttons a {
    padding: 0 25px;
    text-align: center;
    color: white;
    border-right: 1px solid white;
    font-size: 14.4px;
  }
  #ski-resort-buttons > div.disabled, #ski-resort-buttons a.disabled {
    color: rgba(255, 255, 255, 0.3);
  }
  #ski-resort-buttons > div i, #ski-resort-buttons a i {
    font-size: 18px;
    margin-top: 2px;
  }
  #ski-resort-buttons > div div, #ski-resort-buttons > div a, #ski-resort-buttons a div, #ski-resort-buttons a a {
    text-transform: uppercase;
  }
  #ski-resort-buttons > div div:nth-of-type(2), #ski-resort-buttons > div a:nth-of-type(2), #ski-resort-buttons a div:nth-of-type(2), #ski-resort-buttons a a:nth-of-type(2) {
    font-weight: 700;
  }
  #ski-resort-buttons > div:last-of-type {
    border: none;
  }
}
.activity-view h2.vignette {
  text-align: left;
  font-size: 1.2rem;
  font-family: "Roboto Condensed";
  color: #FF561C;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0px;
}
.activity-view h3 {
  font-family: Sveva-Versal;
  color: #496849;
  font-size: 1.7rem;
  margin: 0;
  letter-spacing: 2px;
  text-transform: lowercase;
}

#activity-feed {
  background-color: white;
  padding: 12.5px;
  height: 305px;
  overflow-y: scroll;
}
#activity-feed.full-size {
  height: unset;
  overflow-y: auto;
}
#activity-feed .item {
  display: flex;
  flex-direction: row;
  margin-bottom: 12.5px;
  justify-content: space-between;
}
#activity-feed .item[data-id] {
  cursor: pointer;
}
#activity-feed .item .content {
  flex-grow: 1;
  min-height: 69px;
}
#activity-feed .item .content .text {
  font-size: 14.4px;
}
#activity-feed .item .date {
  color: white;
  margin-right: 25px;
  text-align: center;
  min-width: 60px;
  max-height: 69px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#activity-feed .item .date span {
  line-height: 1;
}
#activity-feed .item .date span:first-of-type {
  font-weight: bold;
  font-size: 1.3rem;
}
#activity-feed .item .date span:last-of-type {
  font-size: 14.4px;
  text-transform: uppercase;
}
#activity-feed .item h3 {
  margin: 0;
  color: #496849;
}
#activity-feed .item:last-of-type {
  margin-bottom: 0;
}
#activity-feed .item:nth-of-type(odd) .date {
  background-color: #496849;
}
#activity-feed .item:nth-of-type(even) .date {
  background-color: #A29667;
}

.partners-feed {
  background-color: white;
  padding: 12.5px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.partners-feed .header {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #496849;
  text-align: left;
}
.partners-feed .partners {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-grow: 1;
}
.partners-feed .partners a {
  padding: 12.5px;
}
.partners-feed .partners a img {
  max-width: 200px;
}
.partners-feed .link {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  color: #496849;
  text-align: right;
  align-self: flex-end;
}

.accordion .item {
  border-bottom: 1px solid rgba(162, 150, 103, 0.5);
  padding: 8px;
}
.accordion .item .title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-weight: 700;
  color: #496849;
}
.accordion .item .title i {
  transition: transform 0.25s ease-in-out;
}
.accordion .item .title.expanded i {
  transform: rotate(45deg);
}
.accordion .item .content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-in-out;
}
.accordion .item:first-child {
  border-top: 1px solid rgba(162, 150, 103, 0.5);
}

#newsletter {
  width: 100%;
  margin: 0 auto;
}
#newsletter h4 {
  font-family: "Sveva-Versal";
  font-size: 34px;
  font-weight: 400;
}
#newsletter form input[type=text] {
  border: 0;
  padding: 12.5px;
  background-color: rgba(73, 104, 73, 0.15);
  width: 100%;
  max-width: 450px;
  margin-bottom: 12.5px;
  color: #496849;
  box-sizing: border-box;
}
#newsletter form input[type=text]::placeholder {
  color: #496849;
  font-weight: 700;
  text-transform: uppercase;
}
#newsletter form input[type=submit] {
  background-color: #496849;
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: 700;
  padding: 12.5px;
  border: 0;
  min-width: 100px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}
#newsletter form input[type=submit]:hover {
  background-color: rgba(73, 104, 73, 0.75);
}
#newsletter form .custom_check_container {
  display: block;
  position: relative;
  padding-left: 30px;
  max-width: 400px;
  margin: 0px auto 12.5px auto;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#newsletter form .custom_check_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
#newsletter form .custom_check_container input:checked ~ .custom_checkbox {
  background-color: #496849;
}
#newsletter form .custom_check_container input:checked ~ .custom_checkbox:after {
  display: block;
}
#newsletter form .custom_check_container .text {
  font-weight: 700;
}
#newsletter form .custom_check_container .text a {
  text-decoration: underline;
}
#newsletter form .custom_check_container .custom_checkbox {
  position: absolute;
  top: 6px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: rgba(73, 104, 73, 0.15);
  transition: background-color 0.3s ease-in-out;
}
#newsletter form .custom_check_container .custom_checkbox:after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#newsletter form .custom_check_container:hover input ~ .custom_checkbox {
  background-color: rgba(73, 104, 73, 0.75);
}

@media screen and (min-width: 1330px) {
  #newsletter {
    width: 60%;
    margin: 0 auto;
  }
  #newsletter h4 {
    font-family: "Sveva-Versal";
    font-size: 34px;
    font-weight: 400;
  }
  #newsletter form input[type=text] {
    border: 0;
    padding: 12.5px;
    background-color: rgba(73, 104, 73, 0.15);
    width: 100%;
    max-width: 450px;
    margin-bottom: 12.5px;
    color: #496849;
  }
  #newsletter form input[type=text]::placeholder {
    color: #496849;
    font-weight: 700;
    text-transform: uppercase;
  }
  #newsletter form input[type=submit] {
    background-color: #496849;
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 700;
    padding: 12.5px;
    border: 0;
    min-width: 100px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
  }
  #newsletter form input[type=submit]:hover {
    background-color: rgba(73, 104, 73, 0.75);
  }
  #newsletter form .custom_check_container {
    display: block;
    position: relative;
    padding-left: 25px;
    max-width: 400px;
    margin: 3px auto 6.25px auto;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  #newsletter form .custom_check_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  #newsletter form .custom_check_container input:checked ~ .custom_checkbox {
    background-color: #496849;
  }
  #newsletter form .custom_check_container input:checked ~ .custom_checkbox:after {
    display: block;
  }
  #newsletter form .custom_check_container .text {
    font-weight: 700;
  }
  #newsletter form .custom_check_container .text a {
    text-decoration: underline;
  }
  #newsletter form .custom_check_container .custom_checkbox {
    position: absolute;
    top: -3px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: rgba(73, 104, 73, 0.15);
    transition: background-color 0.3s ease-in-out;
  }
  #newsletter form .custom_check_container .custom_checkbox:after {
    content: "";
    position: absolute;
    display: none;
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #newsletter form .custom_check_container:hover input ~ .custom_checkbox {
    background-color: rgba(73, 104, 73, 0.75);
  }
}
@media screen and (max-width: 768px) {
  #newsletter h4 {
    line-height: 34px;
    margin: 0;
    margin-bottom: 20px;
  }
}
#weather-plug .wp-forecast-curr {
  font-size: 20px;
}
#weather-plug .wp-forecast-curr .wp-forecast-curr-head {
  width: 100%;
  font-size: 25px;
  font-weight: 700;
  color: #496849;
  text-transform: uppercase;
  text-align: left;
}
#weather-plug .wp-forecast-curr .wp-forecast-curr-head div {
  display: inline;
}
#weather-plug .wp-forecast-curr .wp-forecast-curr-block {
  width: 100%;
  border-bottom: 1px solid rgba(162, 150, 103, 0.5);
}
#weather-plug .wp-forecast-curr .wp-forecast-curr-block .wp-forecast-curr-right, #weather-plug .wp-forecast-curr .wp-forecast-curr-block .wp-forecast-wind-right {
  font-size: 16px;
  font-variant: normal;
}
#weather-plug .wp-forecast-curr .wp-forecast-curr-details {
  font-size: 18px;
  width: 100%;
  border-bottom: 1px solid rgba(162, 150, 103, 0.5);
}
#weather-plug .wp-forecast-fc {
  display: flex;
  flex-wrap: wrap;
  font-size: 20px;
}
#weather-plug .wp-forecast-fc .wp-forecast-fc-oneday {
  width: 50%;
  margin-top: 10px;
  border-bottom: 1px solid rgba(162, 150, 103, 0.5);
}
#weather-plug .wp-forecast-fc .wp-forecast-fc-oneday .wp-forecast-fc-head {
  font-size: 20px;
}
#weather-plug .wp-forecast-fc .wp-forecast-fc-oneday .wp-forecast-fc-block {
  font-size: 20px;
}
#weather-plug .wp-forecast-fc .wp-forecast-fc-oneday .wp-forecast-fc-block .wp-forecast-fc-left {
  font-size: 14px;
}
#weather-plug .wp-forecast-fc .wp-forecast-fc-oneday .wp-forecast-fc-block .wp-forecast-fc-left img {
  width: 30px;
  height: auto;
}
#weather-plug .wp-forecast-fc .wp-forecast-fc-oneday .wp-forecast-fc-block .wp-forecast-fc-right {
  font-size: 14px;
}

#snorapport {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 6px;
}
#snorapport .snow-depth-terrain, #snorapport .pists, #snorapport .lifts {
  display: flex;
  width: 100%;
  margin-bottom: 5px;
  text-align: left;
}
#snorapport .snow-depth-terrain div:first-of-type, #snorapport .pists div:first-of-type, #snorapport .lifts div:first-of-type {
  font-weight: 700;
  width: 150px;
}
#snorapport .snow-depth-terrain div:last-of-type, #snorapport .pists div:last-of-type, #snorapport .lifts div:last-of-type {
  margin-left: 20px;
}

#cff a {
  color: #496849;
}

@media screen and (min-width: 768px) {
  .edit-post-visual-editor .editor-post-title,
.edit-post-visual-editor .editor-block-list__block {
    max-width: 1280px;
  }
}
@media (min-width: 782px) {
  .edit-post-layout.is-sidebar-opened .edit-post-layout__content {
    margin-right: 480px;
  }

  .edit-post-layout.is-sidebar-opened .edit-post-plugin-sidebar__sidebar-layout,
.edit-post-layout.is-sidebar-opened .edit-post-sidebar {
    width: 480px;
  }
}
.cabins {
  margin-top: 100px;
}
.cabins h1 {
  margin: 0px;
}
.cabins h2 {
  margin-bottom: 20px;
  margin-top: 10px;
}

.himmelfjall-boende .entry-title {
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  color: #3e6649;
  font-size: 36px;
  line-height: 42px;
  margin-top: 15px;
  margin-bottom: 15px;
  color: #ff561c;
}
.himmelfjall-boende .himmelfjall-single-page h3 {
  text-align: left;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  color: #3e6649;
  font-size: 36px;
  line-height: 42px;
  margin-bottom: 0px;
  margin: 0px;
}
.himmelfjall-boende .himmelfjall-single-page h4 {
  color: #3e6649;
  text-transform: uppercase;
  margin-bottom: 0px;
  padding: 0;
}
.himmelfjall-boende .himmelfjall-single-page span.area {
  text-transform: uppercase;
}
.himmelfjall-boende .himmelfjall-single-page span.description {
  color: #2b2e34;
  font-size: 24px;
  line-height: 28px;
  font-family: "Roboto Condensed", sans-serif;
}
.himmelfjall-boende .himmelfjall-single-page .object-properties {
  margin-top: 5px;
  padding-left: 20px;
}
.himmelfjall-boende .himmelfjall-single-page .cabin-header {
  position: relative;
}
.himmelfjall-boende .himmelfjall-single-page .cabin-header .cabin-header-text {
  max-width: 80%;
}
.himmelfjall-boende .himmelfjall-single-page .cabin-header .cabin-book {
  position: absolute;
  top: 12px;
  right: 0px;
}
.himmelfjall-boende .himmelfjall-single-page .cabin-header .cabin-book .boka-stuga {
  padding: 10px 30px;
  font-size: 18px;
  line-height: 21px;
  background: #ff561c;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}

@media all and (max-width: 768px) {
  .r360-single-item {
    width: 100%;
    max-width: 100%;
  }

  .himmelfjall-boende .himmelfjall-single-page .cabin-header {
    position: relative;
  }
  .himmelfjall-boende .himmelfjall-single-page .cabin-header .cabin-header-text {
    max-width: 100%;
  }
  .himmelfjall-boende .himmelfjall-single-page .cabin-header .cabin-book {
    position: initial;
    top: 0px;
    right: 0px;
    margin-top: 5px;
  }
  .himmelfjall-boende .himmelfjall-single-page .cabin-header .cabin-book .boka-stuga {
    padding: 10px 30px;
    display: block;
    font-size: 18px;
    line-height: 21px;
    background: #ff561c;
    color: #fff;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
  }
}
/**
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2014
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
  margin: 0 auto 60px;
  padding: 0;
  *zoom: 1;
}

.bx-wrapper img {
  max-width: 100%;
  display: block;
}

/** THEME
===================================*/
.bx-wrapper .bx-viewport {
  border: 5px solid #fff;
  left: -5px;
  background: #fff;
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
  -moz-transform: translatez(0);
  -ms-transform: translatez(0);
  -o-transform: translatez(0);
  transform: translatez(0);
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: 20px;
  width: 100%;
}

/* LOADER */
.bx-wrapper .bx-loading {
  min-height: 50px;
  /*background: url(images/bx_loader.gif) center center no-repeat #fff;*/
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}

/* PAGER */
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: 0.85em;
  font-family: Arial;
  font-weight: bold;
  color: #fff;
  padding-top: 20px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  *zoom: 1;
  *display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
  background: #fff;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
  background: #ff561c;
}

/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
  left: 10px;
  opacity: 1;
  padding: 2px 2px 2px 2px;
  box-shadow: none;
  border-width: 0px;
  border-style: solid;
  border-color: #000000;
  border-color: RGBA(0, 0, 0, 1);
  border-radius: 3px;
  width: 25px;
  height: 25px;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTEuNDMzIDE1Ljk5MkwyMi42OSA1LjcxMmMuMzkzLS4zOS4zOTMtMS4wMyAwLTEuNDItLjM5My0uMzktMS4wMy0uMzktMS40MjMgMGwtMTEuOTggMTAuOTRjLS4yMS4yMS0uMy40OS0uMjg1Ljc2LS4wMTUuMjguMDc1LjU2LjI4NC43N2wxMS45OCAxMC45NGMuMzkzLjM5IDEuMDMuMzkgMS40MjQgMCAuMzkzLS40LjM5My0xLjAzIDAtMS40MmwtMTEuMjU3LTEwLjI5IiBmaWxsPSIjZmZmZmZmIiBvcGFjaXR5PSIwLjgiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==) no-repeat, #496849;
  background-size: 25px;
  background-position: center;
}

.bx-wrapper .bx-next {
  opacity: 1;
  padding: 2px 2px 2px 2px;
  box-shadow: none;
  border-width: 0px;
  border-style: solid;
  border-color: #000000;
  border-color: RGBA(0, 0, 0, 1);
  border-radius: 3px;
  right: 10px;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTAuNzIyIDQuMjkzYy0uMzk0LS4zOS0xLjAzMi0uMzktMS40MjcgMC0uMzkzLjM5LS4zOTMgMS4wMyAwIDEuNDJsMTEuMjgzIDEwLjI4LTExLjI4MyAxMC4yOWMtLjM5My4zOS0uMzkzIDEuMDIgMCAxLjQyLjM5NS4zOSAxLjAzMy4zOSAxLjQyNyAwbDEyLjAwNy0xMC45NGMuMjEtLjIxLjMtLjQ5LjI4NC0uNzcuMDE0LS4yNy0uMDc2LS41NS0uMjg2LS43NkwxMC43MiA0LjI5M3oiIGZpbGw9IiNmZmZmZmYiIG9wYWNpdHk9IjAuOCIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+) no-repeat, #496849;
  background-size: 25px;
  background-position: center;
}

.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
  z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}

/* AUTO CONTROLS (START / STOP) */
.bx-wrapper .bx-controls-auto {
  text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  /* background: url(images/controls.png) -86px -11px no-repeat;*/
  margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
  background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  /*background: url(images/controls.png) -86px -44px no-repeat;*/
  margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
  background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px;
}

/* IMAGE CAPTIONS */
.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
}

.bx-wrapper .bx-caption span {
  color: #fff;
  font-family: Arial;
  display: block;
  font-size: 0.85em;
  padding: 10px;
}

.no-white {
  padding-top: 20px;
}
.no-white img {
  border: 0px !important;
}

.page-id-790 #book-button-sticky-side {
  display: none;
}

.partners {
  background: #ffffff;
  padding: 15px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.more-marg {
  margin-top: 40px;
  margin-bottom: 20px;
}

.puff-bilder:first-child img {
  margin-left: 30px;
  margin-right: 10px;
}
.puff-bilder img {
  display: inline-block;
  width: 200px;
}
.puff-bilder .no-margin {
  margin: 0 !important;
}

.start-page-header {
  color: #496849;
  font-size: 74px;
  line-height: 80px;
  margin-bottom: 30px;
}

.start-page-ingress {
  font-size: 28px;
  line-height: 34px;
  color: #000000;
  font-family: "Roboto Regular", sans-serif;
  font-weight: 300;
  /*padding-right: 30px;
  padding-left: 30px;*/
}
.start-page-ingress.right-align {
  text-align: right;
  margin-top: -10px;
}
.start-page-ingress.right-align .news-button {
  display: inline-block;
  background: #496849;
  padding: 10px 30px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 18px;
}

.three-cols {
  display: flex;
  justify-items: stretch;
  margin: 25px 0 0 0 !important;
  padding-top: 0px;
}
@media screen and (max-width: 768px) {
  .three-cols {
    margin-top: 20px !important;
  }
}
.three-cols .three-cols-item {
  flex-grow: 1;
  /*max-width: 401px;*/
}
.three-cols .three-cols-item .content {
  background: #A29667;
  color: #ffffff;
}
.three-cols .three-cols-item .content img {
  width: 410px;
}
.three-cols .three-cols-item .content h3 {
  margin: 0;
  padding: 20px 0 0 0;
  text-align: center;
  text-decoration: underline;
  font-size: 42px;
}
.three-cols .three-cols-item .content .button-container {
  margin: 0 auto;
  padding: 20px;
  display: block;
  text-align: center;
}
.three-cols .three-cols-item .content .button-container .three-cols-button {
  padding: 10px 30px;
  background: #ffffff;
  text-transform: uppercase;
  color: #A29667;
  text-align: center;
  display: inline-block;
}
.three-cols .three-cols-item + .three-cols-item {
  margin-left: 2%;
}

.hr-smaller {
  text-align: center;
  margin: 0 0 25px 0 !important;
  color: rgba(162, 150, 103, 0.5) !important;
  background-color: rgba(162, 150, 103, 0.5) !important;
}

.marg-top-20 {
  margin-top: 20px !important;
}

.margin-bottom-20 {
  margin-bottom: 20px !important;
}

.left-puff-container {
  flex-basis: 50% !important;
}
.left-puff-container h3 {
  text-decoration: underline;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.19);
  font-size: 32px;
  line-height: 40px;
}
.left-puff-container .wp-block-cover__inner-container {
  position: absolute;
  top: 20px;
  left: 40px;
}

.green-bg {
  background-color: #496849;
  color: #ffffff;
  flex-basis: 50% !important;
}
.green-bg a {
  color: #ffffff;
}
.green-bg h3 {
  color: #ffffff !important;
  font-size: 48px !important;
  line-height: 52px !important;
  text-decoration: none;
  padding: 40px 40px 0 40px;
}
.green-bg .green-bg-text {
  padding: 10px 40px 10px 40px;
  font-size: 22px;
  line-height: 26px;
}
.green-bg .green-bg-button {
  padding-left: 40px;
}
.green-bg .green-bg-button a {
  background: #ffffff;
  padding: 10px 30px;
  color: #496849;
  text-transform: uppercase;
}
.green-bg.puff-aktiviteter {
  padding-left: 40px;
  background: #A29667 !important;
  margin: 25px 0 25px 0 !important;
}
.green-bg.puff-aktiviteter h3 {
  text-transform: uppercase;
  padding: 30px 30px 0 30px;
  font-size: 36px;
  line-height: 36px;
}
.green-bg.puff-aktiviteter .content-container {
  display: flex;
}
.green-bg.puff-aktiviteter .content-container .content {
  padding: 0 30px 30px 30px;
  width: 70%;
  font-size: 22px;
  line-height: 26px;
}
.green-bg.puff-aktiviteter .content-container .btn-aktiviteter {
  width: 30%;
  padding-top: 14px;
}
.green-bg.puff-aktiviteter .content-container .btn-aktiviteter a {
  background: #ffffff;
  padding: 10px 30px;
  color: #A29667 !important;
  text-transform: uppercase;
}

.mh430 {
  max-height: 430px;
  margin-bottom: 20px;
}

.beige-bg {
  background-color: #e7e2d2;
  /*background-color: rgba(162, 150, 103, 0.25);*/
  color: #496849;
  flex-basis: 50% !important;
}
.beige-bg a {
  color: #496849;
}
.beige-bg h3 {
  color: #496849;
  font-size: 60px !important;
  line-height: 61px !important;
  text-decoration: none;
  /*margin-top: 60px !important;*/
  padding-left: 40px;
}
.beige-bg h3.lm-1 {
  margin-bottom: 0px;
}
.beige-bg .vinjett-sett {
  padding-left: 40px;
  color: #496849;
  padding-top: 20px;
  font-size: 25px !important;
  line-height: 25px !important;
  text-transform: uppercase;
}
.beige-bg .orange-bg-knapp {
  padding-top: 8px;
  margin-left: 40px;
}
.beige-bg .orange-bg-knapp.v2-h {
  margin-top: 10px;
}
.beige-bg .orange-bg-knapp a {
  background: #496849;
  padding: 15px 0;
  color: #ffffff;
  text-transform: uppercase;
  max-width: 340px !important;
  text-align: center;
  display: block;
}
.beige-bg .orange-bg-disclaimer {
  font-size: 22px;
  line-height: 26px;
  padding: 10px 40px 0 40px;
}
.beige-bg .orange-bg-disclaimer a {
  font-size: 16px;
  line-height: 20px;
  padding-top: 11px;
  display: block;
}
.beige-bg .orange-bg-disclaimer.spezial {
  margin-bottom: 0px;
}
.beige-bg .orange-bg-disclaimer.less {
  padding: 0px 40px 0 40px !important;
}

.orange-bg {
  background: #ff561c;
  color: #ffffff;
  flex-basis: 50% !important;
}
.orange-bg a {
  color: #ffffff;
}
.orange-bg h3 {
  color: #ffffff !important;
  font-size: 84px !important;
  line-height: 46px !important;
  text-decoration: underline;
  margin-top: 60px !important;
  padding-left: 40px;
}
.orange-bg h3.smaller-h3 {
/* 	leen */
	    font-size: 48px !important;
    line-height: 52px !important;
/*   font-size: 60px !important;
  line-height: 68px !important; */
  text-decoration: none;
}
.orange-bg .h4-head{
	padding:20px 0 0 40px;
	margin:0;
	margin-top:12.5px;
}
.orange-bg h3.fixh3 {
  margin-top: 12.5px !important;
}
.orange-bg .orange-puff-text {
  font-size: 32px;
  line-height: 36px;
  padding: 20px 40px 0 40px;
  margin-bottom: 0;
}
.orange-bg .orange-bg-disclaimer {
  font-size: 22px;
  line-height: 26px;
  padding: 10px 40px 0 40px;
}
.orange-bg .orange-bg-disclaimer a {
  font-size: 16px;
  line-height: 20px;
  padding-top: 11px;
  display: block;
}
.orange-bg .orange-bg-disclaimer.less {
  padding: 0px 40px 0 40px !important;
}
.orange-bg .orange-bg-knapp {
  padding-top: 8px;
}
.orange-bg .orange-bg-knapp a {
  background: #ffffff;
  padding: 10px 30px;
  color: #ff561c;
  text-transform: uppercase;
}
.orange-bg.magazine h3 {
  font-size: 55px !important;
  line-height: 55px !important;
  padding-left: 40px;
}
.orange-bg.magazine p.orange-puff-text {
  font-size: 20px;
  line-height: 26px;
  padding: 20px 40px 0 40px;
  margin-bottom: 0;
}
.orange-bg.pask-bg {
  background: #ffab1f;
}
.orange-bg.pask-bg .orange-bg-knapp a {
  background: #ffffff;
  padding: 10px 30px;
  color: #ffab1f;
  text-transform: uppercase;
}

#post-4743 header {
  display: none;
}

@media screen and (min-width: 1280px) {
  .agg-cell .wp-block-column:not(:first-child) {
    margin-left: 0px !important;
  }
  .agg-cell img {
    border: 0 !important;
  }
  .agg-cell .wp-block-nextend-smartslider3 {
    border: 0 !important;
  }
}
@media screen and (max-width: 1024px) {
  .three-cols {
    display: flex;
    padding-top: 20px;
  }
  .three-cols .three-cols-item {
    width: 33%;
    margin-bottom: 20px;
    /*max-width: 401px;*/
  }
  .three-cols .three-cols-item .content {
    background: #A29667;
    color: #ffffff;
  }
  .three-cols .three-cols-item .content img {
    width: 320px;
  }
  .three-cols .three-cols-item .content h3 {
    margin: 0;
    padding: 20px 0 0 0;
    text-align: center;
    text-decoration: underline;
    font-size: 40px;
  }
  .three-cols .three-cols-item .content .button-container {
    margin: 0 auto;
    padding: 20px;
    display: block;
    text-align: center;
  }
  .three-cols .three-cols-item .content .button-container .three-cols-button {
    padding: 10px;
    background: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
    color: #A29667;
    text-align: center;
    display: block;
  }
  .three-cols .three-cols-item + .three-cols-item {
    margin-left: 2%;
  }

  .beige-bg {
    padding-top: 25px;
    padding-bottom: 5px;
  }
  .beige-bg h3 {
    color: #496849 !important;
    font-size: 37px !important;
    line-height: 41px !important;
    text-decoration: none;
    margin-top: 0 !important;
  }
  .beige-bg .orange-puff-text {
    font-size: 22px;
    line-height: 26px;
    padding: 4px 20px 0 20px;
    margin-bottom: 0;
  }
  .beige-bg .orange-bg-disclaimer {
    font-size: 16px;
    line-height: 20px;
    padding: 10px 20px 0 20px;
  }
  .beige-bg .orange-bg-knapp {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .beige-bg .orange-bg-knapp a {
    background: #ffffff;
    padding: 10px;
  }

  .orange-bg .orange-puff-text {
    font-size: 29px;
  }

  .green-bg {
    background-color: #496849;
    color: #ffffff;
    flex-basis: 50% !important;
    padding-bottom: 20px;
    margin-bottom: 0 !important;
  }

  .agg-cell .wp-block-nextend-smartslider3 {
    border: 0 !important;
  }
}
.no-border {
  border: 0 !important;
}

@media screen and (min-width: 768px) {
  .mobile-break {
    display: none;
  }
}
@media screen and (max-width: 768px) {
	.orange-bg h3.smaller-h3 {
/* 	leen */
	   font-size: 35px !important;
    line-height: 39px !important;
	}
  .wp-block-column p {
    font-size: 20px;
  }

  .not-mobile-break {
    display: none;
  }

  h2.mobile-spec {
    font-size: 30px !important;
    text-align: center;
    color: #496849;
    font-family: "Roboto Condensed", sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 30px !important;
  }

  .agg-cell {
    display: block;
  }
  .agg-cell .wp-block-column {
    display: block !important;
    margin-bottom: 0 !important;
  }
  .agg-cell .wp-block-column figure {
    margin: 0 !important;
  }
  .agg-cell .wp-block-nextend-smartslider3 {
    border: 0 !important;
  }

  .puff-bilder {
    text-align: center;
  }
  .puff-bilder:first-child img {
    margin-left: 0 !important;
    margin-right: 10px;
  }
  .puff-bilder img {
    max-width: 150px;
  }

  .start-page-header {
    color: #496849;
    font-size: 2rem;
    line-height: 2.1rem;
    margin-bottom: 0;
  }

  .start-page-ingress {
    font-size: 21px;
    line-height: 29px;
    color: #000000;
    padding-bottom: 0;
    margin-bottom: 0;
    /*padding-left: 20px;*/
    font-family: "Roboto Regular", sans-serif;
    font-weight: 300;
  }
  .start-page-ingress.right-align {
    margin: auto;
    text-align: center;
  }
  .start-page-ingress .news-button {
    text-align: center;
  }

  .three-cols {
    display: block;
    padding-top: 0px;
  }
  .three-cols .three-cols-item {
    width: 100%;
    margin-bottom: 20px;
    /*max-width: 401px;*/
  }
  .three-cols .three-cols-item .content {
    background: #A29667;
    color: #ffffff;
  }
  .three-cols .three-cols-item .content img {
    width: 100%;
  }
  .three-cols .three-cols-item .content h3 {
    margin: 0;
    padding: 20px 0 0 0;
    text-align: center;
    text-decoration: underline;
    font-size: 36px;
  }
  .three-cols .three-cols-item .content .button-container {
    margin: 0 auto;
    padding: 20px;
    display: block;
    text-align: center;
    width: 60%;
  }
  .three-cols .three-cols-item .content .button-container .three-cols-button {
    padding: 10px;
    background: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
    color: #A29667;
    text-align: center;
    display: block;
  }
  .three-cols .three-cols-item + .three-cols-item {
    margin-left: 0;
  }

  .green-bg {
    background-color: #496849;
    color: #ffffff;
    flex-basis: 50% !important;
    padding-bottom: 20px;
  }
  .green-bg a {
    color: #ffffff;
  }
  .green-bg h3 {
    color: #ffffff !important;
    font-size: 35px !important;
    line-height: 39px !important;
    text-decoration: none;
    padding: 20px 40px 0 40px;
  }
  .green-bg h3.special-less-padding {
    font-size: 45px !important;
    line-height: 48px !important;
  }
  .green-bg .green-bg-text {
    padding: 0px 40px 0 40px;
    font-size: 22px;
    line-height: 26px;
  }
  .green-bg .green-bg-button {
    padding-left: 40px;
    padding-top: 0px;
  }
  .green-bg .green-bg-button a {
    background: #ffffff;
    padding: 10px;
    color: #496849;
    text-transform: uppercase;
  }
  .green-bg.puff-aktiviteter {
    padding-left: 0;
  }
  .green-bg.puff-aktiviteter h3 {
    text-transform: uppercase;
    padding: 30px 30px 0 30px;
    font-size: 36px;
    line-height: 36px;
  }
  .green-bg.puff-aktiviteter .content-container {
    display: block;
  }
  .green-bg.puff-aktiviteter .content-container .content {
    padding: 0 30px 30px 30px;
    width: 100%;
    font-size: 22px;
    line-height: 26px;
    display: none;
    flex-basis: 100%;
  }
  .green-bg.puff-aktiviteter .content-container .btn-aktiviteter {
    width: 100%;
    padding-top: 14px;
    display: block;
    margin-left: 0;
    padding-bottom: 10px;
    text-align: center;
  }
  .green-bg.puff-aktiviteter .content-container .btn-aktiviteter a {
    background: #ffffff;
    padding: 10px 60px;
    color: #496849 !important;
    text-transform: uppercase;
  }

  .beige-bg {
    padding-top: 25px;
    padding-bottom: 5px;
  }
  .beige-bg h3 {
    color: #496849 !important;
    font-size: 42px !important;
    line-height: 46px !important;
    text-decoration: none;
    margin-top: 0 !important;
  }
  .beige-bg .orange-puff-text {
    font-size: 22px;
    line-height: 26px;
    padding: 4px 20px 0 20px;
    margin-bottom: 0;
  }
  .beige-bg .orange-bg-disclaimer {
    font-size: 22px;
    line-height: 26px;
    padding: 10px 20px 0 20px;
  }
  .beige-bg .orange-bg-knapp {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .beige-bg .orange-bg-knapp a {
    background: #ffffff;
    padding: 10px;
  }

  .orange-bg {
    background: #ff561c;
    color: #ffffff;
    padding-top: 25px;
    padding-bottom: 5px;
  }
  .orange-bg a {
    color: #ffffff;
  }
  .orange-bg h3 {
    color: #ffffff !important;
    font-size: 46px !important;
    line-height: 46px !important;
    text-decoration: underline;
    margin-top: 0 !important;
  }
  .orange-bg .orange-puff-text {
    font-size: 22px;
    line-height: 26px;
    padding: 4px 20px 0 20px;
    margin-bottom: 0;
  }
  .orange-bg .orange-bg-disclaimer {
    font-size: 22px;
    line-height: 26px;
    padding: 10px 20px 0 20px;
  }
  .orange-bg .orange-bg-knapp {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .orange-bg .orange-bg-knapp a {
    background: #ffffff;
    padding: 10px;
    color: #ff561c;
  }

  .left-puff-container {
    flex-basis: 50% !important;
  }
  .left-puff-container h3 {
    text-decoration: underline;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.19);
    font-size: 29px;
    line-height: 37px;
  }
  .left-puff-container .wp-block-cover__inner-container {
    position: absolute;
    top: 20px;
    left: 20px;
  }
}
.arrow-background {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC0AAAAtCAYAAAA6GuKaAAAAAXNSR0IArs4c6QAAAfVJREFUWAntl7tKA0EUhrPRKEESU/gePoC9voCFnaWdltrYSgohNsGAnSiCjfgAXhoLwd4yCL6A2BgvrN/RhAzDzsbZOMME5sCfnTmZy7cn/2ySUilGrECsQKxArMA4FUjTtIZWxlnD69w+8DlXiQ2vmxfdDNCzH9zfl1cu60XXcj4PuDpSgQX7HbXRlHOAIhsApgOTSttF1nI+B7AquhBCJT5o76FZ5wC2GwA1h06QGgJ8hGZs1/MyHrAsSzTJT3sBsNkEKHkO68By6FooSEtUADtFanzR6aDE5ua9jAVKgPVD90luF4XnYaDEEnqFxRJy6Cpeqma7CWC6h0ml+8j7F8dIDwI1zw120Jp2oy/0D9Gblv+PbjNJkp5poVxogKtMPEarpgUc5RtAS1Eyo5yZHSaXafoGHu5uaOVCc7eXzNtBLixgQBqdzrWHTMciMmYTHUhfiWfaS8j4MSpjrZp51rBaCPgtpMcVibrVQr4HA7iN5NmsxgOdhm+WP+8HXIIEXA35Cr9B8mgMNwAUq/SQGrd0wq24lBPALI93ydfCLbcZ/Brw4K0iHtetckduIdiKA1dGWYfznnzwFRePy/9DNcQqE+FxHfwR8DB/bw/8C6BqlSf6i4P3gr72wbtc5bfJZASwcjjDPoSTUcpIGSsQKxAr8A0KRYRbMZaiRAAAAABJRU5ErkJggg=="), #3E6649;
}

div.flipbook-container .rfbwp-side {
  background: transparent !important;
}
div.flipbook-container .fb-container > div.page-html {
  white-space: normal;
  padding: 3%;
}
div.flipbook-container div.single .first div.page-html {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
div.flipbook-container div.single .first div.page-html h2 {
  font-family: Sveva-Versal;
}
div.flipbook-container div.double div.fb-page-content div.left, div.flipbook-container div.double div.fb-page-content div.right {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
div.flipbook-container div.double div.fb-page-content div.left img.small_steps, div.flipbook-container div.double div.fb-page-content div.right img.small_steps {
  position: absolute;
  max-width: 10%;
  transform: rotate(40deg);
  right: 2%;
  bottom: -30%;
}
div.flipbook-container div.double div.fb-page-content div.left img.steps, div.flipbook-container div.double div.fb-page-content div.right img.steps {
  transform: rotate(70deg);
  position: absolute;
  top: -310%;
  left: 28%;
  max-width: 15%;
}
div.flipbook-container div.double div.fb-page-content div.left blockquote, div.flipbook-container div.double div.fb-page-content div.right blockquote {
  margin: 0;
  flex-grow: 1;
}
div.flipbook-container div.double div.fb-page-content div.left blockquote p, div.flipbook-container div.double div.fb-page-content div.right blockquote p {
  font-family: Sveva-Versal;
  font-size: 1.8em;
  line-height: 1.1em;
  text-align: center;
  color: #496849;
}
div.flipbook-container div.double div.fb-page-content div.left blockquote p:first-letter, div.flipbook-container div.double div.fb-page-content div.right blockquote p:first-letter {
  font-family: inherit;
  font-size: inherit;
  float: none;
  line-height: inherit;
}
div.flipbook-container div.double div.fb-page-content div.left p, div.flipbook-container div.double div.fb-page-content div.right p {
  font-size: 25.6px;
  line-height: 1.01;
  position: relative;
  flex-grow: 1;
}
div.flipbook-container div.double div.fb-page-content div.left p img, div.flipbook-container div.double div.fb-page-content div.right p img {
  max-width: 70%;
  margin: 0 auto !important;
}
div.flipbook-container div.double div.fb-page-content div.left p.the-end, div.flipbook-container div.double div.fb-page-content div.right p.the-end {
  flex-grow: 1 !important;
  font-size: 4em;
  font-family: "Sveva-Versal";
  display: flex;
  justify-content: center;
  align-items: center;
}
div.flipbook-container div.double div.fb-page-content div.left p.the-end:first-letter, div.flipbook-container div.double div.fb-page-content div.right p.the-end:first-letter {
  font-family: inherit;
  font-size: inherit;
  float: none;
  color: inherit;
}
div.flipbook-container div.double div.fb-page-content div.left h2, div.flipbook-container div.double div.fb-page-content div.right h2 {
  flex-basis: 0;
  font-family: Sveva-Versal;
}
div.flipbook-container div.double div.fb-page-content div.left h2:first-line, div.flipbook-container div.double div.fb-page-content div.right h2:first-line {
  font-size: 0.5em;
}
div.flipbook-container div.double div.fb-page-content div.left > p:last-child, div.flipbook-container div.double div.fb-page-content div.left > blockquote:last-child, div.flipbook-container div.double div.fb-page-content div.right > p:last-child, div.flipbook-container div.double div.fb-page-content div.right > blockquote:last-child {
  flex-grow: 0;
}
div.flipbook-container div.double div.fb-page-content div.left {
  padding-right: 3%;
}
div.flipbook-container div.double div.fb-page-content div.right {
  padding-left: 3%;
}

@media screen and (min-width: 1280px) {
  div.flipbook-container .rfbwp-side {
    background: transparent !important;
  }
  div.flipbook-container .fb-container > div.page-html {
    white-space: normal;
    padding: 6%;
  }
  div.flipbook-container div.single .first div.page-html {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  div.flipbook-container div.single .first div.page-html h2 {
    font-family: Sveva-Versal;
  }
  div.flipbook-container div.double div.fb-page-content div.left, div.flipbook-container div.double div.fb-page-content div.right {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  div.flipbook-container div.double div.fb-page-content div.left img.small_steps, div.flipbook-container div.double div.fb-page-content div.right img.small_steps {
    position: absolute;
    max-width: 10%;
    transform: rotate(40deg);
    right: -5%;
    bottom: -14%;
  }
  div.flipbook-container div.double div.fb-page-content div.left img.steps, div.flipbook-container div.double div.fb-page-content div.right img.steps {
    transform: rotate(80deg);
    position: absolute;
    top: -380%;
    left: 28%;
    max-width: 15%;
  }
  div.flipbook-container div.double div.fb-page-content div.left blockquote, div.flipbook-container div.double div.fb-page-content div.right blockquote {
    margin: 0;
    flex-grow: 1;
  }
  div.flipbook-container div.double div.fb-page-content div.left blockquote p, div.flipbook-container div.double div.fb-page-content div.right blockquote p {
    font-family: Sveva-Versal;
    font-size: 1.8em;
    line-height: 1.1em;
    text-align: center;
    color: #496849;
  }
  div.flipbook-container div.double div.fb-page-content div.left blockquote p:first-letter, div.flipbook-container div.double div.fb-page-content div.right blockquote p:first-letter {
    font-family: inherit;
    font-size: inherit;
    float: none;
    line-height: inherit;
  }
  div.flipbook-container div.double div.fb-page-content div.left p, div.flipbook-container div.double div.fb-page-content div.right p {
    font-size: 21.6px;
    position: relative;
    flex-grow: 1;
  }
  div.flipbook-container div.double div.fb-page-content div.left p img, div.flipbook-container div.double div.fb-page-content div.right p img {
    max-width: 100%;
    margin: 0 auto !important;
  }
  div.flipbook-container div.double div.fb-page-content div.left p.the-end, div.flipbook-container div.double div.fb-page-content div.right p.the-end {
    flex-grow: 1 !important;
    font-size: 4em;
    font-family: "Sveva-Versal";
    display: flex;
    justify-content: center;
    align-items: center;
  }
  div.flipbook-container div.double div.fb-page-content div.left p.the-end:first-letter, div.flipbook-container div.double div.fb-page-content div.right p.the-end:first-letter {
    font-family: inherit;
    font-size: inherit;
    float: none;
    color: inherit;
  }
  div.flipbook-container div.double div.fb-page-content div.left h2, div.flipbook-container div.double div.fb-page-content div.right h2 {
    flex-basis: 0;
    font-family: Sveva-Versal;
  }
  div.flipbook-container div.double div.fb-page-content div.left h2:first-line, div.flipbook-container div.double div.fb-page-content div.right h2:first-line {
    font-size: 0.5em;
  }
  div.flipbook-container div.double div.fb-page-content div.left > p:last-child, div.flipbook-container div.double div.fb-page-content div.left > blockquote:last-child, div.flipbook-container div.double div.fb-page-content div.right > p:last-child, div.flipbook-container div.double div.fb-page-content div.right > blockquote:last-child {
    flex-grow: 0;
  }
  div.flipbook-container div.double div.fb-page-content div.left {
    padding-right: 6%;
  }
  div.flipbook-container div.double div.fb-page-content div.right {
    padding-left: 6%;
  }
}
#cookie-notice .cookie-notice-container {
  background-color: #496849 !important;
  color: white;
}

.noscroll {
  overflow-y: hidden;
}

.link-list {
  list-style: none;
  padding: 0;
}
.link-list li {
  border-bottom: 1px solid rgba(162, 150, 103, 0.5);
  padding: 8px;
}
.link-list li strong {
  color: #496849;
}
.link-list li:first-child {
  border-top: 1px solid rgba(162, 150, 103, 0.5);
}

.comp-no-margin {
  margin: 0 !important;
}

.rest-wrapper-favo {
  background: #A29667;
  position: relative;
  padding: 20px 20px 20px 350px;
  color: #fff;
}
.rest-wrapper-favo h3 {
  font-size: 45px;
  line-height: 51px;
  text-transform: uppercase;
}
.rest-wrapper-favo p {
  text-transform: uppercase;
}

.nom {
  margin-bottom: 0 !important;
}

.flinga-barn {
  margin-top: 20px;
  margin-bottom: 35px;
}

.fika-usp {
  color: #FF561C;
  text-transform: uppercase;
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 20px;
}
.fika-usp a:hover {
  color: #FF561C;
}
.fika-usp.small {
  font-size: 22px;
  font-weight: normal;
  line-height: 28px;
  color: #496849;
}
.fika-usp.small a {
  color: #496849;
}
.fika-usp.small a:hover {
  color: #FF561C;
}

.fw-banner {
  width: 100%;
  background: #A29667;
  position: relative;
}

.wrapper-rest-1 .wp-block-column:not(:first-child) {
  margin-left: 0 !important;
}
.wrapper-rest-1 .wp-block-nextend-smartslider3 {
  border: none !important;
}
.wrapper-rest-1 .pr-4 {
  padding-right: 25px;
  font-size: 22px;
  line-height: 26px;
}
.wrapper-rest-1 .rest-puff1 {
  background: #A29667;
}
.wrapper-rest-1 .rest-puff1 h4 {
  padding: 20px 0 0 40px;
  color: #ffffff !important;
  font-size: 25px !important;
  line-height: 25px !important;
  text-decoration: none;
}
.wrapper-rest-1 .rest-puff1 h3 {
  padding: 0 0 0 40px;
  color: #ffffff !important;
  font-size: 48px !important;
  line-height: 52px !important;
}
.wrapper-rest-1 .rest-puff1 p {
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 0px;
  color: #ffffff;
  padding: 0 20px 0 40px;
}
.wrapper-rest-1 .rest-header {
  /*font-size: 60px !important;
  line-height: 60px !important;*/
  font-size: 48px !important;
  line-height: 52px !important;
  text-decoration: none;
  margin-bottom: 15px !important;
  /*text-transform: uppercase;*/
}
.wrapper-rest-1 .rest-subheader {
  text-transform: uppercase;
  font-size: 25px;
  margin-bottom: 0;
}

.smaller-text {
  font-size: 18px !important;
  line-height: 24px !important;
  margin-bottom: 0px;
}

.m-none {
  margin-bottom: 15px;
}

.rest-wrapper-2 {
  display: flex;
  justify-items: stretch;
  justify-content: space-between;
  margin-left: -50px;
  margin-right: -80px;
}
.rest-wrapper-2 .wp-block-image {
  text-align: center;
}
.rest-wrapper-2 .wp-block-image img {
  border: none !important;
  width: 300px !important;
  height: 300px !important;
}
.rest-wrapper-2 .wp-block-nextend-smartslider3 {
  border: none !important;
}
.rest-wrapper-2 .wp-block-column {
  /*flex-basis: calc(25% - 16px) !important;*/
  flex-grow: 0;
  margin-bottom: 0;
}
.rest-wrapper-2 .wp-block-column:not(:first-child) {
  margin-left: 0;
}
.rest-wrapper-2 .rest-round img {
  border-radius: 50%;
  max-width: 300px;
  max-height: 300px;
  border: 5px solid rgba(162, 150, 103, 0.75) !important;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}

.rest-wrapper-3-holder {
  position: relative;
  display: block;
}
.rest-wrapper-3-holder .rest-wrapper-3 .wp-block-nextend-smartslider3 {
  border: none !important;
}

.rest-wrapper-4 .wp-block-column:not(:first-child) {
  margin-left: 0 !important;
}
.rest-wrapper-4 .wp-block-nextend-smartslider3 {
  border: none !important;
}

.rest-wrapper-5 .wp-block-column:not(:first-child) {
  margin-left: 25px !important;
}
.rest-wrapper-5 .wp-block-nextend-smartslider3 {
  border: 0 !important;
}

.rest-bg-gold {
  background: #A29667;
  margin-left: 25px !important;
  color: #ffffff;
  padding-top: 25px;
}
.rest-bg-gold h4 {
  font-size: 35px;
  font-weight: bold;
}
.rest-bg-gold p {
  font-size: 25px;
  line-height: 35px;
}
.rest-bg-gold .white-button {
  background: #fff;
  color: #496849;
  font-size: 16px;
  display: block;
  max-width: 70%;
  text-align: center;
  margin: 0 auto;
  padding: 5px;
}
.rest-bg-gold .white-button a {
  color: #A29667 !important;
}

.rest-follow {
  font-size: 35px;
  color: #FF561C;
  text-transform: uppercase;
  font-weight: bold;
}

.rest-bg-red {
  background: #FF561C;
  margin-left: 25px !important;
  color: #ffffff;
  padding-top: 25px;
}
.rest-bg-red h4 {
  font-size: 35px;
  font-weight: bold;
}
.rest-bg-red p {
  font-size: 25px;
  line-height: 35px;
}
.rest-bg-red .white-button {
  background: #fff;
  color: #FF561C;
  font-size: 16px;
  display: block;
  max-width: 70%;
  text-align: center;
  margin: 0 auto;
  padding: 5px;
}
.rest-bg-red .white-button a {
  color: #FF561C;
}

.rest-bg-green {
  background: #496849;
  margin-right: 25px;
  color: #ffffff;
  padding-top: 25px;
}
.rest-bg-green h4 {
  font-size: 35px;
  font-weight: bold;
}
.rest-bg-green p {
  font-size: 25px;
  line-height: 35px;
}
.rest-bg-green .white-button {
  background: #fff;
  color: #496849;
  font-size: 16px;
  display: block;
  max-width: 70%;
  text-align: center;
  margin: 0 auto;
  padding: 5px;
}
.rest-bg-green .white-button a {
  color: #496849;
}

.gold-bg {
  background-color: #A29667;
  color: #ffffff;
  flex-basis: 50% !important;
}
.gold-bg a {
  color: #ffffff;
}
.gold-bg h4 {
  color: #ffffff !important;
  font-size: 25px !important;
  line-height: 25px !important;
  text-decoration: none;
  padding: 20px 40px 0 40px;
}
.gold-bg h3 {
  color: #ffffff !important;
  font-size: 48px !important;
  line-height: 52px !important;
  text-decoration: none;
  padding: 0px 40px 0 40px;
  /*text-transform: uppercase;*/
}
.gold-bg h3.special-less-padding {
  color: #ffffff !important;
  font-size: 52px !important;
  line-height: 54px !important;
  text-decoration: none;
  padding: 0px 40px 0 40px;
  margin-top: 0;
}
.gold-bg .green-bg-text {
  padding: 10px 40px 0 40px;
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 0px;
}
.gold-bg .green-bg-button {
  padding-left: 40px;
}
.gold-bg .green-bg-button a {
  background: #ffffff;
  padding: 10px 30px;
  color: #496849;
  text-transform: uppercase;
}
.gold-bg.puff-aktiviteter {
  padding-left: 40px;
  margin-bottom: 30px;
  background: #A29667 !important;
}
.gold-bg.puff-aktiviteter h3 {
  text-transform: uppercase;
  padding: 30px 30px 0 30px;
  font-size: 36px;
  line-height: 36px;
}
.gold-bg.puff-aktiviteter .content-container {
  display: flex;
}
.gold-bg.puff-aktiviteter .content-container .content {
  padding: 0 30px 30px 30px;
  width: 70%;
  font-size: 22px;
  line-height: 26px;
}
.gold-bg.puff-aktiviteter .content-container .btn-aktiviteter {
  width: 30%;
  padding-top: 14px;
}
.gold-bg.puff-aktiviteter .content-container .btn-aktiviteter a {
  background: #ffffff;
  padding: 10px 30px;
  color: #A29667 !important;
  text-transform: uppercase;
}

.green-button {
  background: #ffffff;
  color: #A29667;
  font-size: 16px;
  display: inline-block;
  text-align: center;
  padding: 8px 15px 8px 15px;
  margin-bottom: 20px;
  margin-top: 20px;
}
.green-button:hover {
  color: #A29667;
}

.fix {
  font-size: 32px;
  line-height: 32px;
}
.fix.show-mobile {
  font-size: 26px;
  line-height: 30px;
}

@media screen and (max-width: 768px) {
  .green-button {
    background: #ffffff;
    color: #A29667;
    font-size: 16px;
    display: block;
    text-align: center;
    padding: 5px;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .green-button:hover {
    color: #ffffff;
    text-decoration: underline;
  }

  .gold-bg {
    background-color: #A29667;
    color: #ffffff;
    flex-basis: 50% !important;
    margin-top: -13px;
    padding-bottom: 30px;
  }
  .gold-bg a {
    color: #ffffff;
  }
  .gold-bg h4 {
    color: #ffffff !important;
    font-size: 20px !important;
    line-height: 25px !important;
    text-decoration: none;
    padding: 20px 40px -10px 40px;
    margin-bottom: 0;
  }
  .gold-bg h3 {
    color: #ffffff !important;
    font-size: 35px !important;
    line-height: 39px !important;
    text-decoration: none;
    padding: 0px 40px 0 40px;
    margin-top: 0;
  }
  .gold-bg .green-bg-text {
    padding: 10px 40px 0px 40px;
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 0px;
  }
  .gold-bg .green-bg-button {
    padding-left: 40px;
  }
  .gold-bg .green-bg-button a {
    background: #ffffff;
    padding: 10px 30px;
    color: #496849;
    text-transform: uppercase;
  }
  .gold-bg.puff-aktiviteter {
    padding-left: 40px;
    margin-bottom: 30px;
    background: #A29667 !important;
  }
  .gold-bg.puff-aktiviteter h3 {
    text-transform: uppercase;
    padding: 30px 30px 0 30px;
    font-size: 36px;
    line-height: 36px;
  }
  .gold-bg.puff-aktiviteter .content-container {
    display: flex;
  }
  .gold-bg.puff-aktiviteter .content-container .content {
    padding: 0 30px 30px 30px;
    width: 70%;
    font-size: 22px;
    line-height: 26px;
  }
  .gold-bg.puff-aktiviteter .content-container .btn-aktiviteter {
    width: 30%;
    padding-top: 14px;
  }
  .gold-bg.puff-aktiviteter .content-container .btn-aktiviteter a {
    background: #ffffff;
    padding: 10px 30px;
    color: #A29667 !important;
    text-transform: uppercase;
  }

  .fika-usp {
    color: #FF561C;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .fika-usp.small {
    margin-top: 10px;
    font-size: 16px;
    font-weight: normal;
    line-height: 22px;
    color: #496849;
    margin-bottom: 20px;
  }
  .fika-usp.small a {
    color: #496849;
  }

  .wrapper-rest-1 .wp-block-column:not(:first-child) {
    margin-left: 0 !important;
  }
  .wrapper-rest-1 .pr-4 {
    padding-right: 25px;
    font-size: 22px;
    line-height: 26px;
  }
  .wrapper-rest-1 .wrapper-1-bild {
    order: 0 !important;
    margin-bottom: 0 !important;
  }
  .wrapper-rest-1 .rest-puff1 {
    order: 1 !important;
  }
  .wrapper-rest-1 .rest-puff1 h4 {
    color: #ffffff !important;
    font-size: 20px !important;
    line-height: 25px !important;
    text-decoration: none;
    padding: 20px 40px -10px 40px;
    margin-bottom: 0;
  }
  .wrapper-rest-1 .rest-puff1 h3 {
    color: #ffffff !important;
    font-size: 35px !important;
    line-height: 39px !important;
    text-decoration: none;
    padding: 0px 40px 0 40px;
    margin-top: 0;
  }
  .wrapper-rest-1 .rest-puff1 p {
    padding: 10px 40px 0px 40px;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .wrapper-rest-1 .rest-header {
    font-size: 35px !important;
    line-height: 41px !important;
    text-decoration: none;
    margin-bottom: 10px !important;
    margin-top: 0;
  }
  .wrapper-rest-1 .rest-subheader {
    text-transform: uppercase;
    font-size: 25px;
    margin-bottom: 0;
  }

  .rest-wrapper-2 {
    display: flex;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .rest-wrapper-2 .wp-block-column {
    min-height: 150px;
    width: 50%;
    margin-bottom: 0;
    max-width: 50%;
    text-align: center;
  }
  .rest-wrapper-2 .wp-block-column:not(:first-child) {
    margin-left: 0;
  }
  .rest-wrapper-2 img {
    max-width: 150px;
    max-height: 150px;
    text-align: center;
  }

  .rest-wrapper-3-holder {
    position: relative;
    display: block;
    width: 1904px;
    margin-bottom: 10px;
  }
  .rest-wrapper-3-holder .rest-wrapper-3 {
    background: red;
  }

  .rest-wrapper-4 {
    margin-bottom: 20px !important;
  }
  .rest-wrapper-4 .wp-block-column {
    order: 1;
  }
  .rest-wrapper-4 .wp-block-column:not(:first-child) {
    margin-left: 0 !important;
    order: 0;
    margin-bottom: 0 !important;
  }
  .rest-wrapper-4 .wp-block-column:not(:first-child) .wp-block-nextend-smartslider3 {
    border: none !important;
  }

  .rest-wrapper-5 {
    margin-bottom: 20px;
  }
  .rest-wrapper-5 .wp-block-column:not(:first-child) {
    margin-left: 0px !important;
    margin-bottom: 10px;
  }
  .rest-wrapper-5 .wp-block-column {
    margin-bottom: 0 !important;
  }
  .rest-wrapper-5 .wp-block-column .wp-block-nextend-smartslider3 {
    border: none !important;
  }

  .rest-bg-gold {
    background: #A29667;
    margin-left: 0px !important;
    color: #ffffff;
    padding-top: 25px;
  }
  .rest-bg-gold h4 {
    font-size: 35px;
    line-height: 40px;
    font-weight: bold;
  }
  .rest-bg-gold p {
    font-size: 25px;
    line-height: 35px;
  }
  .rest-bg-gold a {
    color: #A29667;
  }
  .rest-bg-gold .white-button {
    background: #fff;
    color: #496849;
    font-size: 16px;
    display: block;
    max-width: 70%;
    text-align: center;
    margin: 0 auto;
    padding: 5px;
    margin-bottom: 20px;
  }
  .rest-bg-gold .white-button a {
    color: #A29667 !important;
  }

  .rest-bg-green {
    background: #496849;
    margin-right: 0px;
    color: #ffffff;
    padding-top: 25px;
    margin-bottom: 0 !important;
  }
  .rest-bg-green h4 {
    font-size: 35px;
    font-weight: bold;
    line-height: 40px;
  }
  .rest-bg-green p {
    font-size: 25px;
    line-height: 35px;
  }
  .rest-bg-green .white-button {
    background: #fff;
    color: #496849;
    font-size: 16px;
    display: block;
    max-width: 70%;
    text-align: center;
    margin: 0 auto;
    padding: 5px;
    margin-bottom: 20px;
  }
  .rest-bg-green .white-button a {
    color: #496849;
  }

  .rest-bg-red {
    background: #FF561C;
    margin-left: 25px !important;
    color: #ffffff;
    padding-top: 25px;
  }
  .rest-bg-red h4 {
    font-size: 35px;
    font-weight: bold;
  }
  .rest-bg-red p {
    font-size: 25px;
    line-height: 35px;
  }
  .rest-bg-red .white-button {
    background: #fff;
    color: #FF561C;
    font-size: 16px;
    display: block;
    max-width: 70%;
    text-align: center;
    margin: 0 auto;
    padding: 5px;
    margin-bottom: 20px;
  }
  .rest-bg-red .white-button a {
    color: #FF561C;
  }

  .rest-follow {
    font-size: 25px;
    color: #FF561C;
    text-transform: uppercase;
    font-weight: bold;
  }
}
.orange-text {
  color: #FF561C;
  margin-bottom: 0;
  margin-top: 30px;
}
.orange-text:first-child {
  margin-top: 0px;
}

.menu-title {
  font-size: 24px;
}

.gl {
  color: #000000;
  font-size: 18px;
  font-weight: normal;
}
.gl:before {
  content: " ";
}

/****
ERBJUDANDEN

 */
.offer-container {
  background: #FF561C;
  color: #ffffff;
  padding: 40px 20px 20px 30px;
  text-transform: uppercase;
  text-align: center;
}
.offer-container h1 {
  text-transform: uppercase;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 40px;
  line-height: 44px;
  margin: 0;
  margin-bottom: 5px;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .offer-container h1 {
    font-size: 32px;
    line-height: 36px;
  }
}
.offer-container .week {
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 25px;
  margin-top: -10px;
  margin-bottom: 10px;
}
.offer-container span {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .offer-container span {
    font-size: 16px;
  }
}
.offer-container span.prisexempel {
  font-size: 16px;
}
.offer-container .inner-container {
  margin: 0 auto;
  width: 90%;
}
.offer-container .inner-container .offer {
  border-top: 1px solid #ffffff;
  margin-bottom: 10px;
}
.offer-container .inner-container .offer h2 {
  font-size: 1.6rem;
  color: #ffffff;
  margin: 0;
  margin-top: 10px;
}
.offer-container .inner-container .offer .price {
  font-weight: bold;
  font-size: 1.9rem;
  line-height: 1.9rem;
  margin-top: 5px;
}
.offer-container .inner-container .offer span {
  display: block;
  width: 80%;
  margin: 0 auto;
  font-size: 18px;
}
.offer-container .inner-container .offer span.spec {
  width: 100%;
}
.offer-container .inner-container .offer span p {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .offer-container .inner-container .offer span p {
    font-size: 14px;
  }
}
.offer-container .inner-container .offer span.small-info {
  text-transform: uppercase;
  font-size: 14px;
}
.offer-container .inner-container .offer .total-price {
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 5px;
}
.offer-container .offer-boka {
  display: inline-block;
  margin-top: 10px;
  background: #ffffff;
  color: #FF561C;
  text-align: center;
  padding: 10px 20px;
  margin: 0 auto;
}
.offer-container .offer-boka div {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .offer-container .offer-boka {
    display: block;
    margin-bottom: 10px;
  }
}

/** boendeomrade */
.boendeomrade-item {
  border-bottom: 1px solid #cecece;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
.boendeomrade-item:last-child {
  border-bottom: none !important;
}
.boendeomrade-item .boende-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  /* Create 2 equal columns */
  gap: 24px;
  /* Optional: spacing between grid items */
}
@media screen and (max-width: 768px) {
  .boendeomrade-item .boende-container {
    display: block;
  }
}
.boendeomrade-item .boende-container .boende-image {
  margin-bottom: 20px;
}
.boendeomrade-item .boende-container .boende-image img {
  width: 100%;
  height: auto;
  /* maintain aspect ratio */
  display: block;
}
.boendeomrade-item .boende-container .boendeomrade-content h2 {
  text-align: left;
  color: #000000;
  font-size: 2.5rem;
  text-transform: none;
  line-height: 2.1rem;
  margin-top: 0px;
  color: #496849;
}
@media screen and (max-width: 768px) {
  .boendeomrade-item .boende-container .boendeomrade-content p {
    font-size: 20px;
    line-height: 1.2;
  }
}
.boendeomrade-item .boende-container .boendeomrade-content .offer-boka {
  display: inline-block;
  margin-top: 10px;
  background: #FF561C;
  color: #ffffff;
  text-align: center;
  padding: 10px 20px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.boendeomrade-item .boende-container .boendeomrade-content .offer-boka div {
  font-size: 16px;
}
.boendeomrade-item .bo-area {
  text-align: center;
  margin-top: 20px;
  font-weight: bold;
  color: #496849;
}
.boendeomrade-item .bo-area ul {
  list-style: none;
  text-align: left;
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  /* Create 2 equal columns */
}
@media screen and (max-width: 768px) {
  .boendeomrade-item .bo-area ul {
    display: block;
  }
  .boendeomrade-item .bo-area ul li {
    font-size: 20px;
    line-height: 26px;
  }
}

.d-none {
  display: none;
}

@media screen and (min-width: 768px) {
  /* For every odd iteration of .boendeomrade-item, make content first and image second */
  .boendeomrade-item:nth-child(odd) .boendeomrade-content {
    order: 1;
  }

  .boendeomrade-item:nth-child(odd) .boende-image {
    order: 2;
  }

  /* For every even iteration of .boendeomrade-item, make image first and content second */
  .boendeomrade-item:nth-child(even) .boendeomrade-content {
    order: 2;
  }

  .boendeomrade-item:nth-child(even) .boende-image {
    order: 1;
  }

  .show-desktop {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .boendeomrade-item {
    padding-left: 0;
    padding-right: 0;
  }

  .wp-block-columns.nopadmob .wp-block-column:last-child {
    margin-bottom: 0 !important;
  }

  .epyt-video-wrapper iframe {
    height: auto !important;
  }

  .home .start-page-ingress {
    margin-bottom: 20px;
  }

  .show-mobile {
    display: block;
  }

  .reg-text, .margin_bottom {
    font-size: 20px;
  }

  .entry-content p {
    font-size: 20px;
  }

  .hr-smaller {
    width: 100%;
    text-align: center;
    margin: 0 0 20px 0 !important;
    color: rgba(162, 150, 103, 0.5) !important;
    background-color: rgba(162, 150, 103, 0.5) !important;
  }
  .hr-smaller.marg-top-20 {
    margin: 25px 0 20px 0 !important;
  }

  .wp-block-columns {
    margin-bottom: 10px !important;
  }
  .wp-block-columns.rest-wrapper-4 {
    margin-bottom: 20px !important;
  }
  .wp-block-columns.rest-wrapper-5 {
    margin-bottom: 20px !important;
  }
  .wp-block-columns.m-margin {
    margin-bottom: 0 !important;
  }
}
.resmal-link h4 {
  color: #496849;
  margin-bottom: 0px;
}

span.entry-title {
  display: block;
  margin: 0.67em 0;
  font-size: 1.62rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #FF561C;
  text-align: center;
}

.start-page-header.m-none {
  margin-top: 20px;
}

.hidden {
  display: none;
}

.page-id-790 .entry-title {
  margin-top: 50px;
}
.page-id-790 .entry-content p {
  line-height: 25px;
}

.m-topsp {
  margin-top: 25px !important;
}

.notis-per {
  font-size: 16px;
  font-style: italic;
  text-align: center;
}

.entry-content .piff-sep:last-of-type {
  display: none;
}

.stugformedlingrubrik {
  margin-bottom: 25px;
  padding-bottom: 15px;
  font-size: 30px;
}

.stugformedling {
  margin: 0;
  padding: 0;
}
.stugformedling li {
  padding-left: 25px;
  list-style-type: none;
  background-image: url("https://idrehimmelfjall.se/check.svg");
  background-size: 20px 20px;
  background-position: 0 2px;
  background-repeat: no-repeat;
  fill: #FF561C;
  font-size: 21px;
  line-height: 27px;
  margin-bottom: 23px;
}

.margint {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .normal-text {
    font-size: 20px;
  }

  .rem-stap .wp-block-column {
    margin-bottom: 0px !important;
  }
}
.green.space-above {
  margin-top: 20px;
}

.boldgreen strong {
  color: #496849;
}

.program-section {
  margin-bottom: 20px;
}
.program-section .header {
  border-bottom: 2px solid rgba(73, 104, 73, 0.75);
  margin-bottom: 10px;
}
.program-section .header h2 {
  font-size: 18px;
  margin: 0;
  line-height: 24px;
  font-weight: 700;
  text-align: left;
  padding: 0;
  padding-bottom: 6.25px;
}
.program-section .items .item {
  display: flex;
  gap: 10px;
}
.program-section .items .item .time {
  min-width: 25%;
}
.program-section .items .item .time .special {
  display: block;
  font-size: 15px;
}

/*# sourceMappingURL=main.css.map */
/*custom puff by leen*/
.price-table.husky{
	font-size:0.9rem!important;
}
.custom-puff-rubrik
{
	font-size:38px;
	font-weight:bold ;
}
.custom-puff-rubrik.near
{
	margin-top:15px;
}
.custom-puff-content{
	font-family: 'Roboto Condensed', sans-serif; 
}
.custom-puff-content .custom-puff-p{
	font-size: 22px;
	margin-bottom:0;
}
.custom-puff-content .custom-puff-p.near{
	margin-top:-20px;
}
@media screen and (max-width: 768px) {
.custom-puff-rubrik
{
	font-size:35px;
}
.custom-puff-content  .custom-puff-p{
	font-size:18px!important;
}
	.custom-puff-content .custom-puff-p.near{
	margin-top:-15px;
}
}
