@media screen {
  .superadmin:after {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
    font-size: 14px;
    padding: 5px 10px;
    background-color: white;
    color: black;
    text-transform: uppercase;
  }
}
@media screen and (min-width: 1800px) {
  .superadmin:after {
    content: 'xxxl';
  }
}
@media screen and (min-width: 1400px) and (max-width: 1799px) {
  .superadmin:after {
    content: 'xxl';
  }
}
@media screen and (min-width: 992px) and (max-width: 1399px) {
  .superadmin:after {
    content: 'xl';
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .superadmin:after {
    content: 'l';
  }
}
@media screen and (min-width: 551px) and (max-width: 767px) {
  .superadmin:after {
    content: 'm';
  }
}
@media screen and (min-width: 321px) and (max-width: 550px) {
  .superadmin:after {
    content: 's';
  }
}
@media screen and (max-width: 320px) {
  .superadmin:after {
    content: 'xs';
  }
}
/* Color */
body {
  --main-color: #00aa55;
  --main-darker-color: #007e3d;
  --alt-green-color: #03aa55;
  --secondary-color: #045057;
  --dark-green: #004c21;
  --tertiary-color: #007681;
  --blue-dark: #003b5c;
  --grey-color: #e8e8e8;
  --friluft-color: #0072bb;
  --orange-color: #f1b434;
  --light-blue: rgba(0, 118, 127, 0.1);
  --light-blue: #e9f1f2;
  --header-height: 100px;
  line-height: 1.2;
}
@media (max-width: 991px) {
  body {
    --header-height: 70px;
  }
}
@media (max-width: 991px) {
  .desktop-only {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .mobile-only {
    display: none !important;
  }
}
.no-bg > .container {
  width: 100%;
}
.no-bg > .container,
.no-bg > .container > .row,
.no-bg > .container > .row > .col-sm-12 {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 991px) {
  .container {
    max-width: none;
  }
}
@media (min-width: 992px) {
  .use-container-width {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .use-container-width {
    width: 1170px;
  }
}
@media (min-width: 1920px) {
  .use-container-width {
    width: 1450px;
  }
}
body {
  word-wrap: break-word;
}
#vue-header {
  font-family: 'kyrial-sans-pro', sans-serif;
  margin: 0;
}
#vue-header .header-top-row {
  display: flex;
  justify-content: space-between;
  height: var(--header-height);
  align-items: center;
}
.header-logo {
  width: 360px;
}
@media (min-width: 1400px) and (max-width: 1799px), (min-width: 992px) and (max-width: 1399px) {
  .header-logo {
    width: 270px;
  }
}
@media (max-width: 991px) {
  .header-logo {
    width: 47px;
  }
}
.header-logo img {
  max-width: 100%;
}
.section-header {
  display: flex;
  transition: background-color 200ms ease-in-out;
  background-color: var(--tertiary-color);
  padding: 0;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 100vh;
}
.template-forside .section-header {
  background-color: rgba(0, 0, 0, 0.45);
}
.template-laeringsaktivitet .section-header {
  background-color: var(--dark-green);
}
.main-menu-open .section-header {
  background-color: #045057;
}
.header-nav {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}
.header-nav .header-angle-icon {
  transform: rotate(90deg);
  transition: transform 200ms ease-in-out;
  margin-left: 10px;
  display: inline-block;
  width: 7px;
  margin-top: -3px;
}
.main-menu-open.menu-open-friluftsraadet .header-nav .btn-friluftsraadet {
  border-color: var(--orange-color);
}
.main-menu-open.menu-open-friluftsraadet .header-nav .btn-friluftsraadet .header-angle-icon {
  transform: rotate(270deg);
}
.main-menu-open.menu-open-medlemsraad .header-nav .btn-medlemsraad {
  border-color: var(--orange-color);
}
.main-menu-open.menu-open-medlemsraad .header-nav .btn-medlemsraad .header-angle-icon {
  transform: rotate(270deg);
}
.header-nav a,
.header-nav button {
  background-color: transparent;
  color: white;
  border: none;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}
@media (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .header-nav a,
  .header-nav button {
    font-size: 17px;
  }
}
@media (min-width: 1400px) and (max-width: 1799px) {
  .header-nav a,
  .header-nav button {
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1399px) {
  .header-nav a,
  .header-nav button {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .header-nav a,
  .header-nav button {
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: border-color 200ms ease-in-out;
    padding: 10px 0;
  }
}
.toggle-mobile-menu-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 58px;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.toggle-mobile-menu-btn img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.toggle-mobile-menu-btn.menu-is-open img {
  width: 30px;
  height: 30px;
}
.menu-main-container {
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease-in-out, transform 200ms ease-in-out;
  transform: translateY(-30px);
  transform-origin: center top;
}
.main-menu-open .menu-main-container {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.main-menu-closed .menu-main-container {
  display: none;
}
.module-menu-holder.menu-main {
  padding: 30px 0;
}
.module-menu-holder.menu-main ul {
  border: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
.module-menu-holder.menu-main a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  display: block;
  padding: 5px 0;
}
@media (min-width: 992px) {
  .module-menu-holder.menu-main .level1 {
    display: flex;
    gap: 2.5%;
  }
}
.module-menu-holder.menu-main .level1 > li {
  display: none;
}
@media (min-width: 992px) {
  .module-menu-holder.menu-main .level1 > li {
    flex-basis: 30%;
  }
  .module-menu-holder.menu-main .level1 > li.mi191 {
    flex-basis: 60%;
  }
  .module-menu-holder.menu-main .level1 > li.mi191 .level2 {
    columns: 2;
  }
}
.module-menu-holder.menu-main .level1 > li > a {
  color: white;
  text-transform: uppercase;
  font-size: 16px;
  text-decoration: underline;
  text-underline-position: under;
}
@media (max-width: 991px) {
  .module-menu-holder.menu-main .level1 > li > a {
    text-transform: none;
    font-size: 22px;
  }
}
.module-menu-holder.menu-main .level1 ul {
  margin: 0;
  border: none;
  padding-left: 17px;
}
.module-menu-holder.menu-main .level2 {
  padding: 0 !important;
}
.module-menu-holder.menu-main .level2 ul {
  display: none;
}
.module-menu-holder.menu-main .level2 > li.has-children > a {
  display: inline-block;
}
.module-menu-holder.menu-main button.menu-reveal {
  margin-left: 2px;
  background: transparent;
  border: none;
  display: inline-block;
  padding: 0 15px 0;
  transition: transform 0.2s ease-out;
}
.module-menu-holder.menu-main button.menu-reveal:hover {
  transform: scale(1.1);
}
.module-menu-holder.menu-main button.menu-reveal img {
  vertical-align: middle;
  transition: transform 0.2s ease-out;
  transform: rotate(90deg) scale(0.7);
  position: relative;
  bottom: 2px;
}
.module-menu-holder.menu-main .menu-reveal-open button.menu-reveal img {
  transform: rotate(175deg) scale(0.7);
}
.module-menu-holder.menu-main .menu-reveal-open ul {
  display: block;
}
.module-menu-holder.menu-main .level3 > li > a {
  color: #c4beb8;
  font-size: 16px;
  padding: 5px 0;
}
.module-menu-holder.menu-main .level3 ul {
  display: none;
}
.menu-open-friluftsraadet .module-menu-holder.menu-main .mi231,
.menu-open-friluftsraadet .module-menu-holder.menu-main .mi191 {
  display: block;
}
.menu-open-medlemsraad .module-menu-holder.menu-main .mi203 {
  display: block;
}
.module-menu-holder.menu-main .menu-main-line {
  display: none;
}
.module-menu-holder.menu-main .menu-main-line-horizontal {
  height: 100%;
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 63%;
  background-color: #707070;
}
@media (max-width: 991px) {
  .module-menu-holder.menu-main .menu-main-line-horizontal {
    display: none;
  }
}
.module-menu-holder.menu-main .menu-main-line-horizontal {
  height: 1px;
  width: 200vw;
  top: 400px;
  inset: 0;
  bottom: auto;
  transform: translateX(-50%);
}
.module-menu-holder.hover {
  float: right;
  display: block;
  margin-top: 0;
  margin-bottom: 2px;
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .module-menu-holder.hover {
    display: none;
  }
}
.module-menu-holder.hover ul ul {
  padding: 10px 10px 30px;
  z-index: 12;
}
.module-menu-holder.hover ul ul li.current,
.module-menu-holder.hover ul ul li:hover span {
  border-bottom-color: transparent;
}
.main-menu-mobile .module-menu li a,
.main-menu .module-menu li a {
  font-weight: 700;
}
.main-menu-mobile .module-menu li a span,
.main-menu .module-menu li a span {
  /*border: 2px solid transparent;*/
  border: 0;
}
.main-menu-mobile .module-menu li a:hover,
.main-menu .module-menu li a:hover {
  color: black;
}
.main-menu-mobile .module-menu li a:hover span,
.main-menu .module-menu li a:hover span {
  border-bottom-color: #00aa55;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .main-menu-mobile .module-menu li a:hover span,
  .main-menu .module-menu li a:hover span {
    border-color: transparent;
    color: #00aa55;
  }
}
@media (min-width: 992px) and (max-width: 1399px) {
  .main-menu-mobile .module-menu li a,
  .main-menu .module-menu li a {
    font-size: 15px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .main-menu-mobile .module-menu li a,
  .main-menu .module-menu li a {
    font-size: 12px;
    padding-top: 5px;
  }
}
.main-menu-mobile .module-menu li.current a span,
.main-menu .module-menu li.current a span {
  border-bottom-color: #00aa55;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .main-menu-mobile .module-menu li.current a span,
  .main-menu .module-menu li.current a span {
    border-color: transparent;
    color: #00aa55;
  }
}
.main-menu-mobile .module-menu li.current ul li a span,
.main-menu .module-menu li.current ul li a span {
  border-color: transparent;
  color: black;
}
.module-menu-holder.hover ul ul.outOfBounds {
  left: auto;
  right: 100%;
}
.module-menu-holder .module-menu-button {
  background: none;
  width: 45px;
  right: 15px;
}
.module-menu-holder .module-menu-button:hover {
  background: none;
}
.module-menu-holder .module-menu-button:after {
  content: 'Meny';
  color: black;
  border-bottom: 2px solid #00aa55;
}
.module-menu-holder .module-menu-button .icon-bar {
  display: none;
}
@media (min-width: 768px) and (max-width: 991px) {
  .module-menu-holder.sidemenu.menu-visible-mobile.clickdown.offscreen.open .module-menu-button {
    display: none;
  }
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .module-menu-holder.sidemenu.menu-visible-mobile.clickdown.offscreen.open .module-menu-button {
    z-index: 11;
    position: absolute;
    left: 0;
    float: left;
    transform: scale(2);
    margin-top: 10px;
  }
  .module-menu-holder.sidemenu.menu-visible-mobile.clickdown.offscreen.open .module-menu-button .icon-bar {
    display: block;
    background-color: #00aa55;
  }
  .module-menu-holder.sidemenu.menu-visible-mobile.clickdown.offscreen.open .module-menu-button .icon-bar:nth-of-type(4) {
    display: none;
  }
  .module-menu-holder.sidemenu.menu-visible-mobile.clickdown.offscreen.open .module-menu-button:after {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .module-menu-holder.sidemenu.clickdown.offscreen {
    margin-top: 4px;
  }
}
@media (min-width: 551px) and (max-width: 767px) {
  .module-menu-holder.sidemenu.clickdown.offscreen {
    margin-top: -9px;
  }
}
@media (min-width: 321px) and (max-width: 550px) {
  .module-menu-holder.sidemenu.clickdown.offscreen {
    margin-top: 3%;
  }
}
@media (max-width: 320px) {
  .module-menu-holder.sidemenu.clickdown.offscreen {
    margin-top: 2px;
  }
}
@media (min-width: 1800px), (min-width: 1400px) and (max-width: 1799px), (min-width: 992px) and (max-width: 1399px) {
  .module-menu-holder.sidemenu.clickdown.offscreen {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .module-menu-holder.sidemenu.clickdown.offscreen {
    display: block;
  }
}
.module-menu-holder.sidemenu.menu-visible-mobile.clickdown.offscreen.open > ul {
  z-index: 10;
  background-color: white;
  width: 100%;
  padding: 20px 20px 0 0;
  background-image: url('https://files.solvecms.com/friluftsrad.no/fd03668/thumb/menu-logo.png?v=1496841884999');
  background-position: bottom left;
  background-size: 100px;
  background-repeat: no-repeat;
}
.module-menu-holder.sidemenu.menu-visible-mobile.clickdown.offscreen.open > ul a span {
  font-size: 16px;
  text-align: right;
}
@media (min-width: 768px) and (max-width: 991px) {
  .module-menu-holder.sidemenu.menu-visible-mobile.clickdown.offscreen.open .module-menu.level1 {
    width: 30%;
    float: right;
    margin-top: -20px;
    padding-top: 40px;
  }
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .module-menu-holder.sidemenu.menu-visible-mobile.clickdown.offscreen.open {
    left: 0;
    float: left;
  }
}
.section-header .module-search {
  float: none;
}
img {
  max-width: 100%;
}
.vue-form-search {
  position: relative;
  font-family: 'kyrial-sans-pro', sans-serif;
  height: 58px;
  display: block;
}
@media (min-width: 1400px) and (max-width: 1799px), (min-width: 992px) and (max-width: 1399px) {
  .vue-form-search {
    transform: scale(0.7);
    transform-origin: right center;
    margin-left: -70px;
  }
}
@media (max-width: 991px) {
  .vue-form-search {
    margin: 20px 0;
  }
}
.vue-form-search .search {
  height: 100%;
  width: 100%;
  border-radius: 15px;
  font-weight: 300;
  border: none;
  padding: 5px 73px 5px 20px;
}
.vue-form-search .search::placeholder {
  text-align: right;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.22;
  transform: translateX(25px);
}
.vue-form-search .search:focus + .search-icon,
.vue-form-search .search:active + .search-icon {
  opacity: 1;
}
.vue-form-search .search-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 200ms ease-in-out;
  right: 10px;
  opacity: 0.22;
}
.vue-form-search .btn-clear-field {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.8);
  right: 42px;
  padding: 8px 10px;
  border-radius: 100px;
  width: 30px;
  height: 30px;
  border: none;
  background-color: #eeeeee;
  display: flex;
  justify-items: center;
}
.vue-form-search .btn-clear-field img {
  display: block;
  filter: invert(1);
  opacity: 0.5;
}
.vue-form-search .btn-clear-field:hover,
.vue-form-search .btn-clear-field:focus {
  background-color: #d3d3d3;
}
.module-menu-holder.sidemenu li ul {
  border: 0;
}
.module-menu-holder.sidemenu li ul li a span {
  font-style: italic;
  font-size: 14px !important;
}
.module-menu-holder.sidemenu li ul li ul li a span {
  margin-right: 20px;
}
.module-menu-holder.sidemenu li .current > a {
  border: 0;
}
.module-menu-holder.sidemenu li .current > a span {
  color: var(--tertiary-color);
}
.module-menu-holder.sidemenu.venstremeny {
  border: 0;
  background-color: rgba(0, 118, 129, 0.06);
  border-radius: 15px;
  padding: 17px 25px;
}
.module-menu-holder.sidemenu.venstremeny a {
  color: #007681;
  font-weight: 600;
  display: block;
  padding: 6px 0;
  line-height: 1.2;
}
.module-menu-holder.sidemenu.venstremeny ul {
  border: 0;
  background-color: none;
}
.module-menu-holder.sidemenu.venstremeny ul li a:hover span {
  border-color: transparent;
}
.module-menu-holder.sidemenu.venstremeny ul li.current a span {
  border: 0;
}
.module-menu-holder.sidemenu.venstremeny ul li ul li ul li a span::before {
  content: '- ';
}
.module-menu-holder.sidemenu.venstremeny .level1 > li {
  border-bottom: 1px solid #007681;
  padding-bottom: 5px;
}
.module-menu-holder.sidemenu.venstremeny .level1 > li:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .module-menu-holder.sidemenu.venstremeny {
    display: none;
  }
}
.module-menu-holder.sidemenu.friluft {
  border: 0;
}
@media (min-width: 1800px), (min-width: 1400px) and (max-width: 1799px), (min-width: 992px) and (max-width: 1399px), (min-width: 768px) and (max-width: 991px) {
  .module-menu-holder.sidemenu.friluft ul li ul {
    margin-left: 2px !important;
  }
}
.module-menu-holder.sidemenu.friluft ul {
  border: 0;
  background-color: none;
}
.module-menu-holder.sidemenu.friluft ul li a:hover span {
  border-color: transparent;
}
.module-menu-holder.sidemenu.friluft ul li.current a span {
  border-color: transparent;
}
.module-menu-holder.sidemenu.friluft ul li.current ul li.current a span {
  color: #0072bb;
}
.module-menu-holder.sidemenu.friluft ul li.current a {
  border-radius: 5px;
  color: #0072bb;
}
.module-menu-holder.sidemenu.friluft ul li.current ul li a {
  color: black;
}
.module-menu-holder.sidemenu.friluft ul li ul li a span::before {
  content: '- ';
}
.module-menu-holder.sidemenu.friluft ul li.current ul li.current ul li a span {
  color: black;
}
.module-menu-holder.sidemenu.friluft ul li.current ul li.current ul li.current a span {
  color: #0072bb;
}
.module-menu-holder.sidemenu.friluft ul li.current ul li.current ul li.current ul li a span {
  color: black;
}
.module-menu-holder.sidemenu.friluft ul li.current ul li.current ul li.current ul li.current a span {
  color: #0072bb;
}
.module-menu-holder.sidemenu.friluft ul li.current ul li.current ul li.current ul li.current ul li a span {
  color: black;
}
.module-menu-holder.sidemenu.friluft ul li.current ul li.current ul li.current ul li.current ul li.current a span {
  color: #0072bb;
}
.section-footer {
  background-color: var(--tertiary-color);
  position: relative;
  font-family: 'kyrial-sans-pro', sans-serif;
  overflow: hidden;
}
.template-laeringsaktivitet .section-footer {
  background-color: var(--dark-green);
}
.section-footer > .container {
  width: 100%;
}
.section-footer > .container,
.section-footer > .container > .row,
.section-footer > .container > .row > .col-sm-12 {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}
.section-footer .col-sm-12 {
  display: flex;
}
@media (max-width: 991px) {
  .section-footer .col-sm-12 {
    max-width: 100%;
    flex-direction: column;
  }
}
.footer-bg-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1300px;
  aspect-ratio: 1.69;
  object-fit: contain;
  object-position: bottom right;
  opacity: 0.05;
  pointer-events: none;
  transform: translate(20%, 20%);
}
@media (max-width: 991px) {
  .footer-bg-img {
    width: 500px;
  }
}
.footer-logo-holder {
  width: 555px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .footer-logo-holder {
    aspect-ratio: 1.5;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-logo-holder {
    aspect-ratio: 2;
  }
}
.footer-logo-holder .footer-logo {
  position: relative;
  z-index: 2;
  opacity: 0.82;
  width: 35%;
}
@media (max-width: 991px) {
  .footer-logo-holder .footer-logo {
    width: 33%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-logo-holder .footer-logo {
    width: 20%;
  }
}
.footer-logo-holder::after {
  display: block;
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-color: var(--tertiary-color);
}
.template-laeringsaktivitet .footer-logo-holder::after {
  background-color: var(--dark-green);
}
.footer-logo-holder .footer-logo-bgimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.footer-content {
  flex-grow: 1;
  padding: 60px;
  padding-bottom: 50px;
  display: flex;
  z-index: 2;
}
@media (max-width: 991px) {
  .footer-content {
    padding: 40px;
    padding-bottom: 40px;
  }
}
.footer-content .footer-content-widthlimit {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .footer-content .footer-content-widthlimit {
    max-width: 1090px;
  }
}
.footer-content hr {
  width: 100%;
  border: none;
  border-bottom: 1px solid white;
  opacity: 0.43;
}
.footer-content .footer-user-content {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  color: white;
  margin: 30px 0;
}
@media (max-width: 991px) {
  .footer-content .footer-user-content {
    flex-direction: column;
  }
}
.footer-content .footer-user-content .module-article {
  flex-grow: 1;
}
.footer-content .footer-user-content .module-article a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-decoration-thickness: 1px;
}
.footer-content .footer-user-content .module-article h4 {
  font-size: 25px;
}
.footer-content .footer-user-content .module-article br {
  display: none;
}
.footer-content .footer-user-content .module-article p {
  color: white;
  line-height: 1;
}
.footer-content .footer-user-content .module-article p a {
  display: block;
  padding: 7px 0;
}
.footer-content .footer-user-content .module-article p + h4 {
  margin-top: 2em;
}
body #mc_embed_signup {
  background-color: white;
  border-radius: 15px;
  padding: 6px 10px;
}
@media (max-width: 991px) {
  body #mc_embed_signup {
    padding: 10px;
  }
}
body #mc_embed_signup form {
  padding: 0;
}
body #mc_embed_signup_scroll {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 991px) {
  body #mc_embed_signup_scroll {
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
  }
}
body #mc_embed_signup_scroll .clear {
  position: relative;
}
body #mc_embed_signup_scroll input.email {
  margin-right: 0;
  margin-bottom: 0;
  width: auto;
  min-height: 49px;
  border: none;
  flex-grow: 1;
  border-radius: 10px;
  min-height: auto;
  padding: 10px 10px;
  line-height: 1.2;
}
@media (max-width: 991px) {
  body #mc_embed_signup_scroll input.email {
    width: 100%;
    border: 1px solid grey;
    border-radius: 7px;
    padding: 10px 15px;
  }
}
body #mc_embed_signup_scroll .footer-btn-img {
  position: absolute;
  top: 50%;
  right: 18px;
  transition: transform 200ms ease-in-out;
  transform: translate(0, -50%);
}
body #mc_embed_signup_scroll button.button,
body #mc_embed_signup_scroll input.button {
  line-height: 1.2;
  padding: 10px 19px;
  padding-right: 35px;
  margin: 0;
  width: auto;
  height: auto;
  background-color: white;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--tertiary-color);
  border: 2px var(--tertiary-color) solid;
  border-radius: 10px;
}
body #mc_embed_signup_scroll button.button:hover,
body #mc_embed_signup_scroll input.button:hover {
  color: var(--tertiary-color);
  background-color: #e6f2f3;
}
body #mc_embed_signup_scroll button.button:hover img,
body #mc_embed_signup_scroll input.button:hover img {
  transform: translate(5px, -50%);
}
@media (max-width: 991px) {
  body #mc_embed_signup_scroll button.button,
  body #mc_embed_signup_scroll input.button {
    border: 1px var(--tertiary-color) solid;
    padding: 7px 15px;
    padding-right: 35px;
    font-size: 12px;
    border-radius: 7px;
  }
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  margin: 20px 0 0;
}
.footer-bottom p {
  font-size: 14px;
  opacity: 0.64;
  margin: 0;
}
@media (max-width: 500px) {
  .footer-bottom {
    flex-direction: column;
  }
}
.some-links {
  margin: 5px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  align-items: center;
}
@media (max-width: 991px) {
  .some-links {
    gap: 20px;
    margin-top: 20px;
  }
}
.some-links a {
  display: block;
  width: 30px;
}
.some-links a:hover {
  opacity: 0.7;
}
.some-links .twitter {
  height: 25px;
}
@media (max-width: 991px) {
  .article21676 {
    margin: 30px 0;
  }
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .footer-shortcuts {
    padding-bottom: 20px;
  }
}
.footer-shortcuts h4 a {
  color: white;
  text-decoration: underline;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .footer-info {
    padding-bottom: 20px;
  }
}
body #eapps-instagram-feed-1 .eapps-instagram-feed-posts-grid-load-more {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  height: auto;
  width: auto;
  margin: 50px 0;
  padding: 14px 60px 14px 40px;
  font-size: 17px;
  font-weight: 600;
  display: inline-block;
  background-color: var(--main-color);
  background-image: url(https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/friluftsraadet/arrow-right-2.svg);
  background-position: right 25px center;
  background-repeat: no-repeat;
  transition: background 200ms ease-out;
}
body #eapps-instagram-feed-1 .eapps-instagram-feed-posts-grid-load-more:hover {
  background-color: var(--main-darker-color);
  background-position: right 20px center;
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .show-on-desktop {
    display: none;
  }
}
@media (min-width: 1800px), (min-width: 1400px) and (max-width: 1799px), (min-width: 992px) and (max-width: 1399px) {
  .show-on-mobile {
    display: none;
  }
}
.learning-freshair-menu-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .learning-freshair-menu-container {
    flex-direction: column-reverse;
    justify-content: center;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    background: #00aa55;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 15;
    margin: 0;
  }
  .learning-freshair-menu-open .learning-freshair-menu-container {
    opacity: 1;
    transform: translateY(0px);
    pointer-events: auto;
  }
  .learning-freshair-menu-container .mi24 {
    display: none !important;
  }
}
.learning-freshair-menu-container .learning-freshair-home-icon p {
  margin: 0;
}
.module-menu-holder.sitemap.learning-freshair-submenu {
  position: static;
  background: transparent;
  margin: 16px 0;
}
.module-menu-holder.sitemap.learning-freshair-submenu .level1 > li {
  display: none;
  width: 100%;
}
.module-menu-holder.sitemap.learning-freshair-submenu .level1 > li.current {
  display: block;
}
.module-menu-holder.sitemap.learning-freshair-submenu .level1 > li.current > a {
  display: none;
}
.module-menu-holder.sitemap.learning-freshair-submenu .level2 {
  display: flex;
  border: none;
  margin: 0;
}
@media (min-width: 1800px), (min-width: 1400px) and (max-width: 1799px), (min-width: 992px) and (max-width: 1399px) {
  .module-menu-holder.sitemap.learning-freshair-submenu .level2 {
    justify-content: flex-end;
  }
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .module-menu-holder.sitemap.learning-freshair-submenu .level2 {
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 1800px), (min-width: 1400px) and (max-width: 1799px), (min-width: 992px) and (max-width: 1399px) {
  .module-menu-holder.sitemap.learning-freshair-submenu .level2 > li {
    margin-left: 16px;
  }
  .module-menu-holder.sitemap.learning-freshair-submenu .level2 > li:first-child {
    margin-left: 0;
  }
  .module-menu-holder.sitemap.learning-freshair-submenu .level2 > li > a {
    border: 1px solid #404040;
    font-weight: normal;
    padding: 5px 18px 7px;
    font-size: 20px;
  }
  .module-menu-holder.sitemap.learning-freshair-submenu .level2 > li.current > a {
    background: white;
  }
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .module-menu-holder.sitemap.learning-freshair-submenu .level2 > li {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 33px;
  }
  .module-menu-holder.sitemap.learning-freshair-submenu .level2 > li span {
    color: white;
    text-align: center;
    line-height: 1.2em;
  }
}
.learning-freshair-menu-closebtn {
  font-size: 40px;
  text-transform: lowercase;
  color: white;
  background: transparent;
  border: none;
  padding: 20px;
  font-weight: bold;
}
@media (min-width: 1800px), (min-width: 1400px) and (max-width: 1799px), (min-width: 992px) and (max-width: 1399px) {
  .learning-freshair-menu-closebtn {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .learning-freshair-menu-closebtn {
    margin-top: 40px;
  }
}
.learning-freshair-menu-closebtn img {
  margin-top: -6px;
  margin-right: 6px;
}
.mobilemenu-outside {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1800px), (min-width: 1400px) and (max-width: 1799px), (min-width: 992px) and (max-width: 1399px) {
  .mobilemenu-outside {
    display: none;
  }
}
.mobilemenu-outside p {
  font-size: 20px;
  font-weight: 600;
}
.mobilemenu-outside button {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}
.emblem {
  width: 100px;
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .learning-freshair-emblem {
    display: none;
  }
}
.learning-freshair-emblem > p img {
  margin: 20px auto;
  display: block;
}
.bg8198.learning-fresh-air-bg,
.learning-fresh-air-bg {
  margin-bottom: 6px;
  background-position-y: 44%;
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .bg8198.learning-fresh-air-bg,
  .learning-fresh-air-bg {
    background-image: url('https://files.solvecms.com/friluftsrad.no/fd03668/Bakgrunnsbilde-crop.jpg?v=1619007998101');
  }
  .bg8198.learning-fresh-air-bg > .container,
  .learning-fresh-air-bg > .container {
    width: 100%;
  }
  .bg8198.learning-fresh-air-bg > .container,
  .learning-fresh-air-bg > .container,
  .bg8198.learning-fresh-air-bg > .container > .row,
  .learning-fresh-air-bg > .container > .row,
  .bg8198.learning-fresh-air-bg > .container > .row > .col-sm-12,
  .learning-fresh-air-bg > .container > .row > .col-sm-12 {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 1800px), (min-width: 1400px) and (max-width: 1799px), (min-width: 992px) and (max-width: 1399px), (min-width: 768px) and (max-width: 991px) {
  .freshair-top-emblem-mobile {
    display: none;
  }
}
.freshair-top-emblem-mobile > p {
  margin: 37px;
  margin-top: 178px;
  text-align: right;
}
.learning-fresh-air {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  margin: 0;
}
.learning-fresh-air h1 {
  font-size: 40px;
  line-height: 1.2em;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .learning-fresh-air h1 {
    font-size: 35px;
    padding: 40px 50px;
  }
}
.learning-fresh-air h1 span {
  font-weight: normal;
  display: block;
}
.learning-fresh-air hr {
  border: none;
  border-bottom: 2px solid #bcedc3;
}
.learning-fresh-air p {
  line-height: 1.4em;
  font-size: 17px;
  margin-bottom: 30px;
  font-weight: normal;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .learning-fresh-air p,
  .learning-fresh-air hr {
    display: none;
  }
}
@media (min-width: 1800px), (min-width: 1400px) and (max-width: 1799px), (min-width: 992px) and (max-width: 1399px), (min-width: 768px) and (max-width: 991px) {
  .learning-fresh-air {
    width: 493px;
    float: right;
    padding: 30px 40px;
  }
}
#filter {
  background: #bcedc3;
  padding: 40px 10px 70px;
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  #filter {
    padding: 30px 0;
  }
}
.filter-holder {
  max-width: 100%;
  margin: 0 auto 6px;
}
@media (min-width: 1800px), (min-width: 1400px) and (max-width: 1799px), (min-width: 992px) and (max-width: 1399px), (min-width: 768px) and (max-width: 991px) {
  .filter-holder {
    display: flex;
    justify-content: center;
  }
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .filter-holder {
    padding: 25px;
  }
}
.select-holder {
  position: relative;
  background: white;
  border-radius: 1000px;
}
.select-holder .selected {
  margin: 0;
  padding: 13px 50px 13px 25px;
  background-color: transparent;
  background-image: url('https://files.solvecms.com/friluftsrad.no/fd03668/select-arrow.svg?v=1618828124463');
  background-repeat: no-repeat;
  background-position: right 9px top 50%;
  background-size: 40px;
  border: none;
  width: 100%;
  max-width: 100%;
  text-align: left;
  font-weight: 600;
}
.select-holder .selected span {
  pointer-events: none;
}
.learning-search-holder,
.learning-select {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-size: 25px;
  line-height: 1.2em;
}
@media (min-width: 1800px), (min-width: 1400px) and (max-width: 1799px), (min-width: 992px) and (max-width: 1399px), (min-width: 768px) and (max-width: 991px) {
  .learning-search-holder,
  .learning-select {
    width: 345px;
    margin-right: 31px;
  }
  .learning-search-holder:last-child,
  .learning-select:last-child {
    margin-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .learning-search-holder,
  .learning-select {
    margin-bottom: 30px;
  }
}
.learning-search-holder .label,
.learning-select .label {
  color: black;
  font-weight: bold;
  font-size: 35px;
  padding: 4px 0 7px;
  display: block;
  text-align: left;
}
.learning-search-holder input {
  border: 0;
  border-radius: 1000px;
  padding: 14px 27px 18px;
  max-width: 100%;
  line-height: 1;
  font-size: 18px;
  width: 100%;
  height: 56px;
}
.inputholder-filter-search {
  position: relative;
}
.inputholder-filter-search .filter-search-icon {
  position: absolute;
  width: 26px;
  inset: 12px;
  right: 17px;
  left: auto;
  object-fit: contain;
}
.select-list {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 0 9.5px 8px;
  border-radius: 20px;
  overflow-y: auto;
}
button .select-list.flip {
  top: auto;
  bottom: 0;
}
.select-list-item {
  display: flex;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #0072bc;
  font-weight: 600;
  padding: 15px 5px 15px 15px;
}
.select-list-item:last-child {
  border-bottom: none;
}
.select-list-item.has-icon {
  padding: 15px 0;
}
.select-list-item .icon {
  display: inline-block;
  width: 48px;
  height: 29px;
  margin-right: 12px;
  position: relative;
}
.select-list-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.learning-activities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
@media (min-width: 1800px), (min-width: 1400px) and (max-width: 1799px), (min-width: 992px) and (max-width: 1399px) {
  .learning-activities {
    gap: 64px;
    padding: 70px 0 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .learning-activities {
    gap: 34px;
    padding: 25px;
  }
}
.learning-activity {
  overflow: hidden;
}
.learning-activity a {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.learning-activity a:hover {
  text-decoration: none;
}
@keyframes spinning {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.loading-learning {
  animation: spinning 1s linear infinite;
}
.subject-area {
  color: #404040;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 10px;
}
.activity-name {
  color: #00aa55;
  font-size: 25px;
  margin-bottom: 19px;
}
.age-range {
  text-align: center;
  background: #404040;
  color: white;
  margin: 0;
  padding: 5px 5px 14px;
  font-weight: bold;
  border-radius: 0 0 20px 20px;
  font-size: 20px;
}
.img-holder {
  border: 1px solid #404040;
  height: 165px;
  text-align: center;
  flex-grow: 1;
}
.img-holder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: inline-block;
}
.img-holder img.placeholder {
  width: 80%;
}
.missing-results {
  position: relative;
  margin: 0 auto;
  width: 700px;
  max-width: 100%;
}
.missing-results img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .missing-results img {
    width: 80%;
  }
}
@media (max-width: 320px) {
  .missing-results img {
    left: -40px;
    top: 20px;
  }
}
.missing-results .missing-results-textcontainer {
  width: 300px;
  padding: 100px 0;
  margin: 50px;
  margin-left: auto;
  position: relative;
}
@media (min-width: 768px) and (max-width: 991px) {
  .missing-results .missing-results-textcontainer {
    width: 220px;
    padding: 80px 0;
    margin-right: 60px;
  }
}
@media (min-width: 551px) and (max-width: 767px) {
  .missing-results .missing-results-textcontainer {
    width: 220px;
    padding: 80px 0;
    margin-right: 40px;
  }
}
@media (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .missing-results .missing-results-textcontainer {
    width: 180px;
    margin: 0;
    margin-left: auto;
    padding: 80px 0;
    margin-right: 0;
  }
}
.missing-results p {
  color: #7e7e7e;
  font-size: 25px;
  line-height: 1.25em;
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .missing-results p {
    color: #404040;
    font-size: 18px;
  }
}
.missing-results .missing-results-header {
  font-size: 40px;
  color: #0a5;
  margin-bottom: 26px;
  font-weight: bold;
  line-height: 1.3em;
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .missing-results .missing-results-header {
    font-size: 35px;
  }
}
.learning-activity-page #activity {
  margin: 130px 0 40px;
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .learning-activity-page #activity {
    margin: 27px 0 18px;
  }
}
@media print {
  .learning-activity-page #activity p {
    font-size: 11pt;
  }
}
.learning-activity-page .top.row {
  margin-bottom: 40px;
}
@media print {
  .learning-activity-page .top.row {
    margin-bottom: 10pt;
  }
  .learning-activity-page .top.row .col-sm-7 {
    width: 100%;
  }
}
.learning-activity-page .print-btn {
  background: #0072bc;
  color: white;
  border-radius: 1000px;
  font-weight: bold;
  padding: 10px 20px;
  font-size: 25px;
  border: none;
  font-family: 'kyrial-sans-pro', sans-serif;
}
@media (min-width: 1800px), (min-width: 1400px) and (max-width: 1799px), (min-width: 992px) and (max-width: 1399px), (min-width: 768px) and (max-width: 991px) {
  .learning-activity-page .print-btn {
    float: right;
  }
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .learning-activity-page .print-btn {
    margin: 20px auto 0;
    display: block;
  }
}
.learning-activity-page .print-btn .icon {
  width: 33px;
  height: 33px;
  display: inline-block;
}
.learning-activity-page .print-btn .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.learning-activity-page .print-btn .text {
  padding: 0 23px;
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .learning-activity-page .print-btn {
    margin-bottom: 46px;
  }
}
.learning-activity-page .activity-info {
  background: #e6ffea;
  padding: 28px;
  border-radius: 3px;
}
@media print {
  .learning-activity-page .activity-info {
    padding: 20px;
  }
}
@media print {
  .learning-activity-page .activity-info {
    border: 1px solid #707070;
  }
}
@media (min-width: 1800px), (min-width: 1400px) and (max-width: 1799px), (min-width: 992px) and (max-width: 1399px), (min-width: 768px) and (max-width: 991px), print {
  .learning-activity-page .activity-imagecontainer {
    border: 1px solid #707070;
  }
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .learning-activity-page .activity-imagecontainer {
    margin-bottom: 20px;
  }
}
.learning-activity-page .activity-imagecontainer img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: block;
}
@media (min-width: 1800px), (min-width: 1400px) and (max-width: 1799px), (min-width: 992px) and (max-width: 1399px), (min-width: 768px) and (max-width: 991px) {
  .learning-activity-page .flexing-row {
    margin-bottom: 55px;
  }
}
@media print {
  .learning-activity-page .flexing-row {
    margin-bottom: 20pt;
  }
}
@media (min-width: 1800px), (min-width: 1400px) and (max-width: 1799px), (min-width: 992px) and (max-width: 1399px), (min-width: 768px) and (max-width: 991px), print {
  .learning-activity-page .flexing-row {
    display: flex;
  }
  .learning-activity-page .flexing-row .col-sm-7 > *,
  .learning-activity-page .flexing-row .col-sm-5 > * {
    height: 100%;
  }
}
@media print and (max-width: 2000px) {
  .learning-activity-page .flexing-row {
    flex-direction: row;
  }
}
.learning-activity-page h1 {
  font-size: 40px;
  line-height: 1.07em;
  color: #00aa55;
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .learning-activity-page h1 {
    font-size: 35px;
  }
}
.learning-activity-page h2 {
  color: #404040;
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .learning-activity-page h2 {
    font-size: 35px;
    margin-bottom: 30px;
  }
}
@media print {
  .learning-activity-page h2 {
    font-size: 20pt;
    margin-bottom: 12pt;
    color: black;
  }
}
.learning-activity-page h2.info-header {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 8px;
}
@media print {
  .learning-activity-page h2.info-header {
    font-size: 13pt;
    margin-bottom: 2pt;
  }
}
.learning-activity-page h3 {
  color: #00aa55;
  font-weight: bold;
}
.learning-activity-page .info-subject,
.learning-activity-page .info-agerange {
  font-size: 20px;
  margin-bottom: 38px;
}
@media print {
  .learning-activity-page .info-subject,
  .learning-activity-page .info-agerange {
    margin-bottom: 10pt;
  }
}
@media (min-width: 1800px), (min-width: 1400px) and (max-width: 1799px), (min-width: 992px) and (max-width: 1399px), (min-width: 768px) and (max-width: 991px) {
  .learning-activity-page .small-screen {
    display: none;
  }
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .learning-activity-page .large-screen {
    display: none;
  }
}
@media (min-width: 551px) and (max-width: 767px) and screen, (min-width: 321px) and (max-width: 550px) and screen, (max-width: 320px) and screen {
  .learning-activity-page .order-change-row {
    display: flex;
    flex-direction: column-reverse;
  }
}
.learning-activity-page .equipment h4 {
  color: #00aa55;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .learning-activity-page .equipment {
    margin-bottom: 65px;
  }
}
@media (min-width: 551px) and (max-width: 767px) and screen, (min-width: 321px) and (max-width: 550px) and screen, (max-width: 320px) and screen {
  .learning-activity-page .implementation-header {
    padding-bottom: 20px;
    border-bottom: 1px solid #00aa55;
  }
}
@media print {
  .learning-activity-page .section-header,
  .learning-activity-page .learning-freshair-submenu-section,
  .learning-activity-page .menu-freshair-bottom-mobile,
  .learning-activity-page .bg8172,
  .learning-activity-page .section-footer,
  .learning-activity-page #cookies,
  .learning-activity-page .superadmin:after,
  .learning-activity-page .print-btn {
    display: none;
  }
  .learning-activity-page .col-sm-7,
  .learning-activity-page .col-sm-5 {
    float: left;
  }
  .learning-activity-page .col-sm-7 {
    width: 50%;
  }
  .learning-activity-page .col-sm-5 {
    width: 42%;
  }
}
.learning-freshair-intro-mobile {
  margin: 74px 0 81px;
}
.learning-freshair-intro-mobile p {
  font-size: 24px;
  line-height: 1.2em;
  margin-bottom: 20px;
  color: white;
}
.learning-freshair-intro-mobile p img {
  margin: 0 auto 27px;
  display: block;
  width: 136px;
}
@media (min-width: 1400px) {
  .slick-slider {
    margin-left: auto;
    margin-right: auto;
    max-width: 1920px;
  }
}
.slick-slider .item {
  position: relative;
  height: calc(100vh - 300px);
}
@media (max-width: 991px) {
  .slick-slider .item {
    height: calc(100vh - 150px);
  }
}
@media (max-height: 700px) {
  .slick-slider .item {
    height: 570px;
  }
}
.slick-slider .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slick-slider .slick-dots {
  padding-right: 5%;
  bottom: 0;
}
.slick-slider .slick-dots li {
  margin: 0;
}
.slick-slider .slick-dots li button::before {
  color: white;
  font-size: 12px;
  opacity: 0.64;
  content: '•';
}
.slick-slider .slick-dots li.slick-active button:before {
  color: white;
  opacity: 1;
}
body .forside-karusell {
  margin: calc(var(--header-height) * -1) auto 130px;
}
@media (max-width: 991px) {
  body .forside-karusell {
    margin-bottom: 100px;
  }
}
@media (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .slick-list.draggable {
    width: 100%;
  }
}
.slide-caption {
  position: absolute;
  top: auto;
  right: 20px;
  bottom: 100px;
  left: 20px;
  text-align: center;
  text-wrap: balance;
  white-space: normal;
}
.slide-caption .alt-text {
  display: block;
  color: white;
  font-size: 12px;
  margin-left: 10px;
  clear: both;
}
.slide-caption a {
  color: white;
}
.slide-caption a:hover {
  text-decoration: none;
}
.slide-caption a:hover h1 {
  color: var(--orange-color);
}
.slide-caption h1 {
  text-transform: none;
  background: none !important;
  color: white;
  font-size: 60px;
  line-height: 1.1;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 5px 2px 10px #2b2b2b;
  float: none;
  display: block;
}
@media (min-width: 551px) and (max-width: 767px) {
  .slide-caption h1 {
    font-size: 38px;
    line-height: 40px;
  }
}
@media (min-width: 321px) and (max-width: 550px) {
  .slide-caption h1 {
    font-size: 20px;
  }
}
@media (max-width: 320px) {
  .slide-caption h1 {
    font-size: 17px;
    line-height: 20px;
  }
}
.slide-caption h2 {
  text-transform: none;
  background: none !important;
  color: white;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 300;
  text-shadow: 2px 2px 9px #2b2b2b;
  margin-top: 20px;
  display: block;
  float: none;
}
@media (max-width: 991px) {
  .slide-caption h2 {
    margin-top: 2vw;
  }
}
@media (min-width: 551px) and (max-width: 767px) {
  .slide-caption h2 {
    font-size: 22px;
  }
}
@media (min-width: 321px) and (max-width: 550px) {
  .slide-caption h2 {
    font-size: 18px;
  }
}
@media (max-width: 320px) {
  .slide-caption h2 {
    font-size: 15px;
  }
}
.module-blogfeed > ul:after,
.module-blogfeed > ul:before {
  display: none;
}
.frontpage-blogfeed ul {
  display: flex;
  gap: 15px;
}
@media (max-width: 991px) {
  .frontpage-blogfeed ul {
    flex-direction: column;
  }
}
.frontpage-blogfeed li {
  border: none !important;
  display: flex;
  flex-direction: column-reverse;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex-basis: 33%;
  border: 1px solid #e3e3e3;
}
.frontpage-blogfeed li .blogfeed-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  height: 390px;
}
.frontpage-blogfeed li .blogfeed-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  flex-grow: 1;
  margin: 0;
  padding: 30px 35px;
  background-color: white;
}
.frontpage-blogfeed li .blogfeed-info > * {
  display: none;
}
.frontpage-blogfeed li .blogfeed-info .blogfeed-title2 {
  flex-grow: 1;
}
.frontpage-blogfeed li .blogfeed-info .blogfeed-title1,
.frontpage-blogfeed li .blogfeed-info .blogfeed-title2,
.frontpage-blogfeed li .blogfeed-info .blogfeed-lead-paragraph,
.frontpage-blogfeed li .blogfeed-info .blogfeed-date {
  display: block;
}
.frontpage-blogfeed li .blogfeed-info .blogfeed-title1,
.frontpage-blogfeed li .blogfeed-info .blogfeed-title2,
.frontpage-blogfeed li .blogfeed-info .blogfeed-date {
  color: #003b5c;
}
.frontpage-blogfeed .blogfeed-title1:hover,
.frontpage-blogfeed .blogfeed-title2:hover {
  color: var(--main-color);
}
.frontpage-blogfeed .blogfeed-title1 h2 {
  font-size: 22px;
  line-height: 1.1;
  word-wrap: break-word;
}
@media (max-width: 991px) {
  .frontpage-blogfeed .blogfeed-title1 h2 {
    font-size: 19px;
  }
}
.frontpage-blogfeed .blogfeed-title2 h2 {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 300;
  margin-bottom: 1.5em;
}
@media (max-width: 991px) {
  .frontpage-blogfeed .blogfeed-title2 h2 {
    font-size: 14px;
  }
}
.frontpage-blogfeed .blogfeed-date {
  display: block;
  order: -2;
  margin-bottom: 7px;
}
.frontpage-blogfeed .blogfeed-date .time {
  display: none;
}
.frontpage-blogfeed .blogfeed-date:before {
  content: '';
  display: inline-block;
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/friluftsraadet/clock.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
  position: relative;
  bottom: 2px;
}
.frontpage-blogfeed .blogfeed-lead-paragraph {
  display: inline-block;
  color: white;
  background-color: var(--main-color);
  padding: 17px 34px;
  padding-right: 50px;
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/friluftsraadet/arrow-right-2.svg');
  background-position: right 25px center;
  background-repeat: no-repeat;
  background-size: 9px;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  transition: background 0.2s ease-out;
}
.frontpage-blogfeed .blogfeed-lead-paragraph:hover {
  text-decoration: none;
  background-color: var(--main-darker-color);
  background-position: right 20px center;
}
.frontpage-blogfeed .blogfeed-lead-paragraph:after {
  content: 'LES MER';
  display: block;
}
.frontpage-blogfeed .blogfeed-lead-paragraph h3 {
  display: none;
}
.news-page-link p {
  font-size: 24px;
  margin: 20px 0 100px;
}
.news-page-link p a {
  color: #003b5c;
  text-decoration: underline;
}
.stats-bg {
  background-color: var(--main-color);
  margin-top: 160px;
}
.stats-bg > .container {
  width: 100%;
}
.stats-bg > .container,
.stats-bg > .container > .row,
.stats-bg > .container > .row > .col-sm-12 {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}
.stats-bg .container {
  --padding: 30px;
  padding: var(--padding) 0;
  margin-top: 60px;
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/friluftsraadet/zigzag.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 970px;
}
@media (min-width: 992px) {
  .stats-bg .container {
    margin-top: 100px;
  }
}
@media (min-width: 1200px) {
  .stats-bg .container {
    background-size: 1140px;
  }
}
@media (min-width: 1920px) {
  .stats-bg .container {
    background-size: 1420px;
  }
}
@media (max-width: 991px) {
  .stats-bg .container {
    background-size: calc(100% - 30px);
  }
}
.module-statistics {
  position: relative;
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: 'kyrial-sans-pro', sans-serif;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .module-statistics {
    padding: 40px 0;
  }
}
@media (min-width: 992px) {
  .module-statistics {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .module-statistics {
    width: 1170px;
  }
}
@media (min-width: 1920px) {
  .module-statistics {
    width: 1450px;
  }
}
.module-statistics .header {
  position: absolute;
  top: calc(var(--padding) * -1 - 20px);
  left: 0;
  padding-left: 15px;
  font-size: 40px;
  line-height: 1;
  display: block;
  transform: translateY(-100%);
  color: #003b5c;
  max-width: calc(100vw - 30px);
}
@media (max-width: 991px) {
  .module-statistics .header {
    font-size: 30px;
  }
}
.module-statistics .stat {
  text-align: center;
  padding: 20px 20px;
  font-size: 28px;
}
@media (min-width: 992px) {
  .module-statistics .stat {
    flex-basis: 33%;
    padding: 20px 30px;
  }
}
.module-statistics .stat .left {
  display: block;
  font-size: 90px;
  line-height: 1.3;
  font-weight: bold;
}
@media (max-width: 991px) {
  .module-statistics .stat .left {
    font-size: 70px;
  }
}
.module-statistics .stat .right {
  font-size: 20px;
}
@media (max-width: 991px) {
  .module-statistics .stat .right {
    font-size: 17px;
  }
}
body:not(.frontpage) .module-statistics {
  background-color: var(--main-color);
  position: relative;
  margin-top: 150px;
  margin-bottom: 50px;
  width: 100%;
  background-image: url(https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/friluftsraadet/zigzag.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
}
body:not(.frontpage) .module-statistics .header {
  top: 0;
  left: 0;
  font-size: 40px;
  transform: translateY(-150%);
}
@media (max-width: 991px) {
  body:not(.frontpage) .module-statistics .header {
    font-size: 35px;
  }
}
.frontpage-calendar-facebook-section {
  padding: 0 0 40px 0;
}
@media (min-width: 992px) {
  .frontpage-calendar-facebook-section {
    padding: 0 0 80px 0;
  }
  .frontpage-calendar-facebook-section .row {
    display: flex;
  }
  .frontpage-calendar-facebook-section .col-sm-9 {
    flex-basis: 66%;
  }
  .frontpage-calendar-facebook-section .col-sm-3 {
    flex-basis: 33%;
  }
}
@media (min-width: 992px) and (max-width: 1399px) {
  .frontpage-calendar-facebook-section .row {
    display: flex;
  }
  .frontpage-calendar-facebook-section .col-sm-9 {
    flex-basis: 66%;
  }
  .frontpage-calendar-facebook-section .col-sm-3 {
    flex-basis: 33%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .frontpage-calendar-facebook-section .row {
    display: flex;
  }
  .frontpage-calendar-facebook-section .col-sm-9 {
    flex-basis: 50%;
  }
  .frontpage-calendar-facebook-section .col-sm-3 {
    flex-basis: 50%;
  }
}
.fb_iframe_widget {
  width: 100%;
  max-width: 100%;
}
/*** 
** Calendar
***/
.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  cursor: pointer;
}
.fc-content-skeleton tbody {
  display: none;
}
.fc-content-skeleton .fc-day-top {
  text-align: center;
}
.modal-calendar {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .modal-calendar {
    display: flex;
    flex-direction: row-reverse;
    border-radius: 15px;
    margin-bottom: 50px;
  }
}
.modal-calendar .event-calendar {
  background-color: var(--light-blue);
  padding: 10px;
  flex-shrink: 1;
  flex-basis: 66%;
}
@media (min-width: 992px) {
  .modal-calendar .event-calendar {
    padding: 30px;
  }
}
.modal-calendar .modal-header .closebutton {
  float: right;
  background-color: white;
  border: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.modal-calendar .fc-toolbar.fc-header-toolbar {
  padding: 4px;
}
.modal-calendar .fc-toolbar.fc-header-toolbar .fc-button {
  background: none;
  border: 0;
  color: var(--tertiary-color);
  box-shadow: none;
}
.modal-calendar .fc-toolbar.fc-header-toolbar .fc-center h2 {
  color: var(--tertiary-color);
  font-size: 24px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .modal-calendar .fc-toolbar.fc-header-toolbar .fc-center h2 {
    font-size: 30px;
  }
}
.modal-calendar .fc-toolbar.fc-header-toolbar .fc-center h2:first-letter {
  text-transform: uppercase;
}
.modal-calendar .fc-toolbar.fc-header-toolbar .fc-left {
  color: white;
}
.modal-calendar .fc-day-header {
  color: var(--tertiary-color);
  text-transform: uppercase;
  font-size: 0;
  text-align: center;
}
.modal-calendar .fc-day-header::first-letter {
  font-size: 17px;
}
.modal-calendar .fc-basic-view .fc-body .fc-row {
  min-height: 2em;
}
.modal-calendar .fc-day {
  font-size: 14px;
}
.modal-calendar .agenda {
  background-color: var(--tertiary-color);
  color: white;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-basis: 33%;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .modal-calendar .agenda {
    padding: 10px 20px;
  }
}
.modal-calendar .date-title-next {
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  opacity: 0.8;
}
.modal-calendar .event-normal > .date,
.modal-calendar .event-main > .date {
  font-size: 100px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
}
.modal-calendar .event-normal > .month,
.modal-calendar .event-main > .month {
  font-size: 30px;
  text-transform: uppercase;
  color: var(--alt-green-color);
  color: #62e3a0;
  margin-bottom: 15px;
}
.modal-calendar .event-normal > .title,
.modal-calendar .event-main > .title {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 10px;
}
.modal-calendar .full-date {
  color: #f5cb70;
  margin-bottom: 7px;
  line-height: 1.4;
}
.modal-calendar .full-date .icon-calendar {
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/friluftsraadet/calendar-icon.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 7px;
  width: 17px;
  height: 17px;
  display: inline-block;
  padding: 0;
  vertical-align: middle;
}
.modal-calendar .icon-calendar {
  background-image: url('https://files.solvecms.com/friluftsrad.no/fd03668/thumb/calendar.png?v=1496821005403');
  background-position: left;
  background-size: 20px;
  background-repeat: no-repeat;
  padding-left: 30px;
}
.modal-calendar .council {
  margin-bottom: 15px;
}
.modal-calendar .description {
  max-height: 100px;
  overflow: hidden;
  position: relative;
}
.modal-calendar .description:after {
  content: '';
  display: block;
  height: 3ch;
  position: absolute;
  inset: 0;
  top: auto;
  background: linear-gradient(0deg, var(--tertiary-color), transparent);
}
.modal-calendar .description > * {
  display: none;
}
.modal-calendar .description > *:nth-child(1) {
  display: block;
}
.modal-calendar .time .date {
  font-size: 23px;
  display: block;
}
.modal-calendar .time .end {
  display: none;
}
.modal-calendar .fc-footer-toolbar .fc-right {
  float: none;
}
.modal-calendar .fc-footer-toolbar .fc-right .fc-state-default {
  background: none;
  border: 0;
  box-shadow: none;
  text-shadow: none;
}
.modal-calendar .fc-footer-toolbar .fc-right .fc-button {
  color: var(--tertiary-color);
  border: 0;
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 2px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.modal-calendar .fc-bg td.fc-today {
  display: flex;
  align-content: center;
  justify-content: center;
  background-color: transparent;
}
.modal-calendar .fc-bg td.fc-today::before {
  content: '';
  display: block;
  width: 30px;
  aspect-ratio: 1;
  background-color: var(--alt-green-color);
  border-radius: 1000px;
  position: relative;
  bottom: 3px;
}
.modal-calendar .fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  float: none;
}
.modal-calendar .fc-today .fc-day-number {
  color: white;
}
.modal-content .delete-event {
  margin-top: 20px;
}
.modal-content .delete-event a {
  color: white;
}
.fc td.fc-today {
  border: none !important;
}
.fc td.fc-today,
.modal-calendar table,
.modal-calendar table tbody,
.modal-calendar table td,
.modal-calendar table th,
.modal-calendar table thead,
.modal-calendar table tr {
  border: none;
}
.modal-calendar thead .has-event-main,
.modal-calendar thead .has-event-normal {
  font-weight: 900;
  color: var(--tertiary-color);
}
.calendar-agenda {
  cursor: pointer;
}
.calendar-agenda.detailed .cal-event {
  margin-bottom: 10px;
  padding: 20px;
  border-bottom: 2px solid #e8e8e8;
}
.calendar-agenda.detailed .cal-event .time .date {
  border: 1px solid #00aa55;
  padding: 4px 8px;
  margin-right: 10px;
  display: inline-block;
  margin-bottom: 10px;
}
.calendar-agenda.detailed .cal-event .time .time {
  margin-right: 10px;
  background: url('https://files.solvecms.com/friluftsrad.no/fd03668/thumb/time.png?v=1496821005403');
  background-position: left;
  background-size: 20px;
  background-repeat: no-repeat;
  padding-left: 30px;
}
.calendar-agenda.detailed .cal-event .time .separator {
  padding-right: 10px;
}
.calendar-agenda.detailed .cal-event .time .end::before {
  content: '- ';
}
.calendar-agenda.detailed .cal-event .name {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  margin-top: 10px;
}
.calendar-agenda.detailed .cal-event .host {
  margin-bottom: 20px;
  font-style: italic;
  font-size: 14px;
}
.calendar-agenda.detailed .cal-event .host::before {
  content: 'Arrangør: ';
}
.create-event-form-capsule .create-new-event {
  background-color: #00aa55;
  color: white;
  border: 0;
  padding: 10px;
}
.modal-dialog.modal-lg .modal-content {
  background-color: white;
}
.modal-dialog.modal-lg .modal-content .modal-header {
  padding: 40px;
  background-color: var(--tertiary-color);
}
.modal-dialog.modal-lg .modal-content .modal-header .modal-heading {
  font-size: 25px;
  font-weight: 800;
  color: white;
  margin: 0;
}
.modal-dialog.modal-lg .modal-content .modal-body {
  padding: 40px;
}
.modal-dialog.modal-lg .modal-content .modal-body .event-owner {
  background-image: url('https://files.solvecms.com/friluftsrad.no/fd03668/thumb/place.png?v=1496835893351');
  background-position: left;
  background-size: 20px;
  background-repeat: no-repeat;
  padding-left: 25px;
  margin-bottom: 10px;
}
.modal-dialog.modal-lg .modal-content .modal-body .event-list li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid lightgrey;
}
.modal-dialog.modal-lg .modal-content .modal-body .event-list li:last-child {
  border: 0;
}
.modal-dialog.modal-lg .modal-content .modal-body .event-list .cal-event .time {
  margin-bottom: 10px;
  font-size: 17px;
  font-style: italic;
  letter-spacing: 1px;
}
.modal-dialog.modal-lg .modal-content .modal-body .event-list .cal-event .owner {
  background-image: url('https://files.solvecms.com/friluftsrad.no/fd03668/thumb/place.png?v=1496835893351');
  background-position: left;
  background-size: 20px;
  background-repeat: no-repeat;
  padding-left: 25px;
  margin-bottom: 10px;
}
.modal-dialog.modal-lg .modal-content .modal-body .event-list .cal-event .name {
  text-decoration: underline;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.modal-dialog.modal-lg .modal-content .modal-body .event-time {
  margin-bottom: 10px;
  font-size: 17px;
  font-style: italic;
  letter-spacing: 1px;
}
.modal-dialog.modal-lg .modal-content .modal-body .event-time .startDate {
  margin-right: 5px;
}
.modal-dialog.modal-lg .modal-content .modal-body .event-time .startDate::after {
  content: ' -';
  margin-left: 5px;
}
.act-holder {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.act-holder a {
  width: 200px;
  height: 200px;
  padding: 20px;
  margin: 4px;
  border: 4px solid grey;
  text-align: center;
  border-radius: 3px;
  background-color: #f8fafb;
  font-family: 'kyrial-sans-pro', sans-serif;
  color: black;
}
.act-holder img {
  height: 100px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .act-holder a {
    width: 160px;
    height: 160px;
    font-size: 12px;
  }
  .act-holder img {
    height: 70px;
  }
}
.act-holder a:nth-child(1) {
  border: 5px solid #f194a4;
}
.act-holder a:nth-child(2) {
  border: 5px solid #2caf2c;
}
.act-holder a:nth-child(3) {
  border: 5px solid #3c99c5;
}
.act-holder a:nth-child(4) {
  border: 5px solid #ffa93e;
}
.act-holder a:nth-child(5) {
  border: 5px solid #a05dca;
}
.act-holder a:nth-child(6) {
  border: 5px solid #f5d912;
}
.act-holder a:nth-child(7) {
  border: 5px solid #e0436e;
}
.act-holder a:nth-child(8) {
  border: 5px solid #61d29e;
}
.act-holder a:nth-child(9) {
  border: 5px solid #99e274;
}
.act-holder a:nth-child(10) {
  border: 5px solid #f194a4;
}
.act-holder a:nth-child(11) {
  border: 5px solid #2caf2c;
}
.act-holder a:nth-child(12) {
  border: 5px solid #3c99c5;
}
.act-holder a:nth-child(13) {
  border: 5px solid #ffa93e;
}
.act-holder a:nth-child(14) {
  border: 5px solid #a05dca;
}
.act-holder a:nth-child(15) {
  border: 5px solid #f5d912;
}
.act-holder a:nth-child(16) {
  border: 5px solid #e0436e;
}
.act-holder a:nth-child(17) {
  border: 5px solid #61d29e;
}
.act-holder a:nth-child(18) {
  border: 5px solid #99e274;
}
.act-holder a:nth-child(19) {
  border: 5px solid #f194a4;
}
.act-holder a:nth-child(20) {
  border: 5px solid #2caf2c;
}
.act-holder a:nth-child(21) {
  border: 5px solid #3c99c5;
}
.act-holder a:nth-child(22) {
  border: 5px solid #ffa93e;
}
.act-holder a:nth-child(23) {
  border: 5px solid #a05dca;
}
.act-holder a:nth-child(24) {
  border: 5px solid #f5d912;
}
.act-holder a:nth-child(25) {
  border: 5px solid #e0436e;
}
/* Friluftsråd medlem malside 2024 */
.member-council .module-carousel.forside-karusell .slide-caption {
  left: 45%;
  top: 40%;
  bottom: auto;
  text-align: left;
  /*
			a h2:after {
				content: '';
				background-color: #00aa55;
				padding: 5px;
				border-radius: 5px;
				width: 40px;
				height: 40px;
				position: absolute;
				right: 0;
				bottom: -50px;
				background-image: url(https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/friluftsraadet/arrow-right-2.svg);
				background-position: center;
				background-repeat: no-repeat;
			}*/
}
@media (min-width: 991px) {
  .member-council .module-carousel.forside-karusell .slide-caption h1 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .member-council .module-carousel.forside-karusell .slide-caption h1 {
    font-size: 30px;
  }
}
.member-council .module-carousel.forside-karusell .slide-caption a h2 {
  position: relative;
}
.member-council .module-carousel.forside-karusell .slide-caption .alt-text {
  opacity: 0;
}
@media (max-width: 767px) {
  .member-council .module-carousel.forside-karusell .slide-caption {
    text-align: center;
    left: 0;
    right: 0;
    top: auto;
    bottom: 20%;
  }
  .member-council .module-carousel.forside-karusell .slide-caption h2 {
    max-width: none;
  }
  .member-council .module-carousel.forside-karusell .slide-caption a h2:after {
    left: 50%;
    bottom: -80px;
    right: auto;
    transform: translateX(-50%);
  }
}
.member-council .blog-frontpage-bg .col-sm-3 {
  width: 33%;
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .member-council .blog-frontpage-bg .col-sm-3 {
    width: 100%;
  }
}
.member-council .blog-frontpage-bg .col-sm-9 {
  width: 66%;
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .member-council .blog-frontpage-bg .col-sm-9 {
    width: 100%;
  }
}
.member-council .frontpage-blogfeed ul {
  gap: 30px;
}
.member-council .frontpage-blogfeed li {
  flex-basis: 50%;
}
.member-council .frontpage-blogfeed .blogfeed-lead-paragraph h3,
.member-council .frontpage-blogfeed .blogfeed-lead-paragraph a h3 {
  display: none;
  font-size: 17px;
}
@media (max-width: 991px) {
  .member-council .mainpage-blogfeed ul {
    flex-direction: column;
  }
}
.member-council .mainpage-blogfeed li {
  border: none !important;
  display: flex;
  flex-direction: column-reverse;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex-basis: 33%;
  border: 1px solid #e3e3e3;
}
.member-council .mainpage-blogfeed li .blogfeed-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  height: 390px;
}
.member-council .mainpage-blogfeed li .blogfeed-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  flex-grow: 1;
  margin: 0;
  padding: 30px 35px;
  background-color: white;
}
.member-council .mainpage-blogfeed li .blogfeed-info > * {
  display: none;
}
.member-council .mainpage-blogfeed li .blogfeed-info .blogfeed-title2 {
  flex-grow: 1;
}
.member-council .mainpage-blogfeed li .blogfeed-info .blogfeed-title1,
.member-council .mainpage-blogfeed li .blogfeed-info .blogfeed-title2,
.member-council .mainpage-blogfeed li .blogfeed-info .blogfeed-lead-paragraph,
.member-council .mainpage-blogfeed li .blogfeed-info .blogfeed-date {
  display: block;
}
.member-council .mainpage-blogfeed li .blogfeed-info .blogfeed-title1,
.member-council .mainpage-blogfeed li .blogfeed-info .blogfeed-title2,
.member-council .mainpage-blogfeed li .blogfeed-info .blogfeed-date {
  color: #003b5c;
}
.member-council .mainpage-blogfeed .blogfeed-title1:hover,
.member-council .mainpage-blogfeed .blogfeed-title2:hover {
  color: var(--main-color);
}
.member-council .mainpage-blogfeed .blogfeed-title1 h2 {
  font-size: 22px;
  line-height: 1.1;
  word-wrap: break-word;
}
@media (max-width: 991px) {
  .member-council .mainpage-blogfeed .blogfeed-title1 h2 {
    font-size: 19px;
  }
}
.member-council .mainpage-blogfeed .blogfeed-title2 h2 {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 300;
  margin-bottom: 1.5em;
}
@media (max-width: 991px) {
  .member-council .mainpage-blogfeed .blogfeed-title2 h2 {
    font-size: 14px;
  }
}
.member-council .mainpage-blogfeed .blogfeed-title2 h2:after {
  content: 'LES MER';
  display: block;
  color: white;
  background-color: var(--main-color);
  padding: 17px 34px;
  padding-right: 50px;
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/friluftsraadet/arrow-right-2.svg');
  background-position: right 25px center;
  background-repeat: no-repeat;
  background-size: 9px;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  transition: background 0.2s ease-out;
  margin-top: 30px;
  width: fit-content;
}
.member-council .mainpage-blogfeed .blogfeed-title2 h2:hover:after {
  text-decoration: none;
  pointer-events: all;
  background-color: var(--main-darker-color);
  background-position: right 20px center;
}
.member-council .mainpage-blogfeed .blogfeed-date {
  display: block;
  order: -2;
  margin-bottom: 7px;
}
.member-council .mainpage-blogfeed .blogfeed-date .time {
  display: none;
}
.member-council .mainpage-blogfeed .blogfeed-date:before {
  content: '';
  display: inline-block;
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/friluftsraadet/clock.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
  position: relative;
  bottom: 2px;
}
.member-council .mainpage-blogfeed .blogfeed-lead-paragraph {
  display: inline-block;
  color: white;
  background-color: var(--main-color);
  padding: 17px 34px;
  padding-right: 50px;
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/friluftsraadet/arrow-right-2.svg');
  background-position: right 25px center;
  background-repeat: no-repeat;
  background-size: 9px;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  transition: background 0.2s ease-out;
}
.member-council .mainpage-blogfeed .blogfeed-lead-paragraph:hover {
  text-decoration: none;
  background-color: var(--main-darker-color);
  background-position: right 20px center;
}
.member-council .mainpage-blogfeed .blogfeed-lead-paragraph:after {
  content: 'LES MER';
  display: block;
}
.member-council .mainpage-blogfeed .blogfeed-lead-paragraph h3 {
  display: none;
}
.member-council .blog-sidemenu-header-article {
  margin-top: 20px;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .member-council #vue-header .header-top-row {
    width: 85vw;
  }
}
.member-council.menu-open-friluftsraadet .module-menu-holder.menu-main button.menu-reveal,
.member-council.menu-open-medlemsraad .module-menu-holder.menu-main button.menu-reveal {
  padding: 0 5px 0;
}
.member-council.menu-open-friluftsraadet .module-menu-holder.menu-main .level1 > li,
.member-council.menu-open-medlemsraad .module-menu-holder.menu-main .level1 > li {
  margin-bottom: 20px;
  margin-right: 20px;
}
@media (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .member-council.menu-open-friluftsraadet .module-menu-holder.menu-main .level1 > li,
  .member-council.menu-open-medlemsraad .module-menu-holder.menu-main .level1 > li {
    width: 100%;
    margin-right: 0px;
  }
}
.member-council.menu-open-medlemsraad .module-menu-holder.menu-main .level1 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 992px) and (max-width: 1399px) {
  .member-council.menu-open-medlemsraad .module-menu-holder.menu-main {
    gap: 15px;
  }
}
.member-council.menu-open-medlemsraad .module-menu-holder.menu-main li {
  display: block;
}
.member-council.menu-open-medlemsraad .module-menu-holder.menu-main li a {
  font-size: 14px;
}
.member-council.menu-open-medlemsraad .module-menu-holder.menu-main .mi231,
.member-council.menu-open-medlemsraad .module-menu-holder.menu-main .mi191,
.member-council.menu-open-medlemsraad .module-menu-holder.menu-main .mi653 {
  display: none;
}
.member-council .section-breadcrumb {
  background-color: #00768112;
  margin-bottom: 70px;
}
.member-council .section-breadcrumb .module-breadcrumb {
  margin: 20px 0;
}
.footer-content p.nyhetsbrev {
  color: white;
}
.frontpage-article {
  max-width: 900px;
  margin: 0 auto;
}
.frontpage-article h2 {
  font-size: 35px;
}
.radius img {
  border-radius: 20px;
}
.admin-config a,
.admin-config button {
  opacity: 0.25;
  color: black !important;
}
.admin-config a:hover,
.admin-config button:hover,
.admin-config a:focus,
.admin-config button:focus {
  opacity: 1;
  color: white !important;
}
* {
  box-sizing: border-box;
}
.admin-config {
  z-index: 10;
}
@media (min-width: 992px) {
  .only-mobile {
    display: none;
  }
}
@media (max-width: 991px) {
  .only-desktop {
    display: none;
  }
}
@media (min-width: 1800px) {
  .container {
    width: 1450px;
  }
}
html {
  scroll-behavior: smooth;
}
/* Typography */
.module-article a {
  color: var(--tertiary-color);
  text-decoration: none;
}
p,
td,
ul {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
}
h1,
h1 a {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
}
h2,
h2 a {
  font-size: 20px;
  line-height: 1.1;
  font-weight: 600;
}
h3,
h3 a {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
}
h4,
h4 a {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
}
h5,
h5 a {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
}
h6,
h6 a {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 300;
}
h1,
h1 a,
h2,
h2 a,
h3,
h3 a,
h4,
h4 a,
h5,
h5 a,
h6,
h6 a,
label,
nav,
li,
p,
td {
  font-family: 'kyrial-sans-pro', sans-serif;
}
/* bg */
.bg-margin-top-minus {
  margin-top: -30px;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .bg-margin-top-minus {
    margin-top: 0;
  }
}
.bg-margin-top-minus .col-sm-3 {
  width: 33.33%;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .bg-margin-top-minus .col-sm-3 {
    width: 100%;
  }
}
.bg-margin-top-minus .col-sm-9 {
  width: 66.66%;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .bg-margin-top-minus .col-sm-9 {
    width: 100%;
  }
}
/* articles */
.white-text {
  color: white;
}
.white-text p a {
  color: white !important;
}
.member p {
  background-image: url('https://files.solvecms.com/friluftsrad.no/fd03668/thumb/place.png?v=1496835893351');
  background-position: 4px;
  background-size: 20px;
  background-repeat: no-repeat;
  background-color: #e8e8e8;
  padding: 5px 5px 5px 30px;
}
.member p:hover {
  background-color: #cccccc;
}
.member p a {
  color: black;
  display: block;
}
/* standard */
.logo-medlem {
  background-color: white;
  padding: 15px;
  position: absolute;
  z-index: 1;
  top: 47px;
  border: 1px solid lightgrey;
  border-top: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .logo-medlem {
    top: 42px;
  }
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .logo-medlem {
    display: none;
  }
}
.logo-medlem img {
  width: 100px;
}
@media (min-width: 1800px), (min-width: 1400px) and (max-width: 1799px), (min-width: 992px) and (max-width: 1399px), (min-width: 768px) and (max-width: 991px) {
  .section-medlemslogo {
    display: none;
  }
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .section-medlemslogo {
    display: block;
  }
}
.section-medlemslogo .artikkel-medlem {
  text-align: center;
  padding: 20px;
}
.section-medlemslogo .artikkel-medlem p {
  margin-bottom: 0;
}
.section-medlemslogo .artikkel-medlem p img {
  width: 100px;
}
.artikkel-medlem {
  padding-bottom: 20px;
}
.artikkel-medlem p {
  margin-bottom: 0;
}
.artikkel-medlem p img {
  width: 100px;
}
.google-map-overlay .image.no-image {
  display: none;
}
.google-map-overlay a {
  display: block;
  margin-bottom: 5px;
  color: #00aa55;
}
.google-map-overlay .phone {
  background-image: url('https://files.solvecms.com/friluftsrad.no/fd03668/thumb/phone.jpg?v=1497271416038');
  background-size: 13px;
  background-position: left;
  background-repeat: no-repeat;
  padding-left: 25px;
}
.google-map-overlay .email {
  background-image: url('https://files.solvecms.com/friluftsrad.no/fd03668/thumb/mail.jpg?v=1497271635697');
  background-size: 15px;
  background-position: left;
  background-repeat: no-repeat;
  padding-left: 25px;
  color: black;
}
body .section-breadcrumb {
  margin-bottom: 80px;
  padding: 10px 0;
  background-color: transparent;
}
@media (max-width: 991px) {
  body .section-breadcrumb {
    padding: 20px 0;
    margin-bottom: 40px;
  }
}
body .section-breadcrumb .module-breadcrumb li:first-of-type a:before {
  display: none;
}
body .section-breadcrumb .module-breadcrumb a,
body .section-breadcrumb .module-breadcrumb .active {
  color: #003b5c;
  font-weight: normal;
}
body .section-breadcrumb .module-breadcrumb a:before,
body .section-breadcrumb .module-breadcrumb .active:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/friluftsraadet/triangle-right.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.green-top {
  background-color: #e8e8e8;
  padding: 20px;
  margin-bottom: 20px;
  max-height: 420px;
  overflow: hidden;
}
@media (min-width: 992px) and (max-width: 1399px) {
  .green-top {
    max-height: 550px;
    overflow: hidden;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .green-top {
    max-height: 680px;
    overflow: hidden;
  }
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .green-top {
    max-height: none;
    height: auto;
  }
}
.green-top h1 {
  background-color: #00aa55;
  color: white;
  margin-left: -20px;
  margin-right: -20px;
  margin-top: -20px;
  display: block;
  padding: 6px 20px;
  font-size: 22px;
  line-height: 30px;
}
.blog-sidemenu-header-article h4 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #003b5c;
}
@media (max-width: 991px) {
  .blog-sidemenu-header-article h4 {
    font-size: 20px;
  }
}
.module-custom-search,
.module-search {
  margin: 8px 0 0;
}
.module-custom-search .form-search input,
.module-search .form-search input {
  font-size: 12px;
}
.module-custom-search .form-search input:placeholder-shown,
.module-search .form-search input:placeholder-shown {
  font-size: 12px;
}
.module-custom-search .form-search .search,
.module-search .form-search .search {
  padding: 4px 5px;
  background-position: top 4px right 7px;
}
.module-custom-search .clear-field:after,
.module-search .clear-field:after {
  content: '✕';
  top: 2px;
}
.module-custom-search {
  z-index: 10;
  max-width: 150px;
  position: relative;
  margin-bottom: 20px;
}
.module-custom-search .search {
  margin-bottom: 0;
  background-color: #fff;
  background-image: url('https://files.solvecms.com/friluftsrad.no/fd03668/thumb/search-blue.png?v=1497606170378');
  background-repeat: no-repeat;
  background-size: 15px;
  border-radius: 3px;
  border: 1px solid #d1d1d1;
  line-height: normal;
  width: 150px;
}
.module-custom-search .clear-field {
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  background: #f6f6f6;
  border: 0;
  border-left: 1px solid #d1d1d1;
  color: transparent;
}
.module-custom-search .clear-field:after {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: #000;
}
iframe {
  width: 100%;
  min-height: 400px;
}
/* employeelist */
.module-employeelist.cards {
  display: flex;
  flex-wrap: wrap;
}
.module-employeelist.cards li {
  width: 31%;
  margin-right: 2%;
  margin-bottom: 4%;
}
@media (min-width: 551px) and (max-width: 767px) {
  .module-employeelist.cards li {
    width: 47%;
  }
}
@media (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .module-employeelist.cards li {
    width: 100%;
  }
}
.module-employeelist.cards li .phone {
  background-image: url('https://files.solvecms.com/friluftsrad.no/fd03668/thumb/phone.jpg?v=1497271416038');
  background-size: 15px;
  background-position: left;
  background-repeat: no-repeat;
  padding-left: 25px;
}
.module-employeelist.cards li .email {
  background-image: url('https://files.solvecms.com/friluftsrad.no/fd03668/thumb/mail.jpg?v=1497271635697');
  background-size: 15px;
  background-position: left;
  background-repeat: no-repeat;
  padding-left: 25px;
  color: black;
}
.module-employeelist.cards li .employee-details h3 {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 15px;
}
.module-employeelist.cards .facehugger.no-img {
  display: none;
}
/* buttons */
.btn-blue {
  background-color: #0072bb;
  color: white !important;
  font-size: 20px;
  background-image: url('https://files.solvecms.com/friluftsrad.no/fd03668/home.png?v=1497359898563');
  background-size: 28px;
  background-position: 5%;
  background-repeat: no-repeat;
  padding-left: 40px;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .btn-blue {
    display: block;
    width: 100%;
  }
}
.btn-orange {
  background-color: #ec9c38;
  color: white !important;
  font-size: 20px;
  background-image: url('https://files.solvecms.com/friluftsrad.no/fd03668/hvitpil.png?v=1498631345174');
  background-size: 28px;
  background-position: 5%;
  background-repeat: no-repeat;
  padding-left: 45px;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .btn-orange {
    display: block;
    width: 100%;
  }
}
.btn-green {
  background-color: #00aa55;
  color: white !important;
  font-size: 20px;
  padding-top: 3px;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .btn-green {
    display: block;
    width: 100%;
  }
}
.knapp p a {
  background-color: #0072bb;
  color: white !important;
  font-size: 20px;
  padding: 5px 20px 10px 20px;
  border-radius: 5px;
  display: inline-block;
  margin: 10px 0;
}
/* must-haves */
#cookies {
  background: #00aa55;
}
#cookies a,
#cookies p {
  color: white;
}
.solve-ad {
  float: right;
  margin-top: 0;
  text-align: right;
}
.solve-ad a {
  color: #868686;
}
.solve-ad a:hover {
  color: white;
}
/* Opoint */
.elfsight {
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .elfsight {
    margin-bottom: 50px;
  }
}
.frontpage-instagram h3,
.media-headline h3 {
  color: var(--blue-dark);
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 20px;
}
@media (max-width: 991px) {
  .frontpage-instagram h3,
  .media-headline h3 {
    font-size: 40px;
  }
}
.frontpage-instagram {
  margin-bottom: 30px;
  margin-top: 80px;
}
@media (max-width: 991px) {
  .frontpage-instagram {
    margin-top: 50px;
  }
}
.frontpage-instagram p {
  font-size: 20px;
}
@media (max-width: 991px) {
  .frontpage-instagram p {
    font-size: 18px;
  }
}
.module-opoint-news {
  display: flex;
  overflow: hidden;
  border-radius: 15px;
  gap: 2px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .module-opoint-news {
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .module-opoint-news .news-item:nth-child(n + 4) {
    display: none;
  }
}
.module-opoint-news .news-item {
  background-color: var(--tertiary-color);
  padding: 60px 50px;
  flex-grow: 1;
  flex-basis: 33%;
  color: white;
}
.module-opoint-news .news-item a {
  color: white;
  text-decoration: none;
}
@media (max-width: 991px) {
  .module-opoint-news .news-item {
    padding: 30px;
  }
}
.module-opoint-news .news-item-description {
  display: none;
}
.module-opoint-news .news-item-header {
  margin-bottom: 1.5em;
}
.module-opoint-news .news-item-header a {
  line-height: 1.2;
  font-weight: 600;
  font-size: 30px;
}
@media (max-width: 991px) {
  .module-opoint-news .news-item-header a {
    font-size: 20px;
  }
}
.module-opoint-news .anchor {
  background-color: #35858d;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 12px;
  text-transform: uppercase;
  font-size: 17px;
  margin-bottom: 15px;
}
.module-opoint-news .after-link {
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/friluftsraadet/arrow-right-2.svg');
  display: inline-block;
  width: 50px;
  height: 50px;
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: right 15px center;
  border-radius: 10px;
  border: 3px solid white;
  transition: width 0.2s ease-out;
}
.module-opoint-news .after-link:hover {
  width: 70px;
}
@media (max-width: 991px) {
  .module-opoint-news .after-link {
    border: 1px solid white;
    background-size: 7px;
    width: 30px;
    height: 30px;
    border-radius: 7px;
  }
}
/*cursor: pointer;*/
.pdf-icon {
  width: 10px;
}
.tekst-snarvei {
  display: flex;
  justify-content: flex-start;
}
.tekst-snarvei h3 a {
  background-color: #00aa55;
  color: white;
  padding: 5px 10px;
  margin-right: 12px;
}
.norgeskartContainer {
  overflow: hidden;
}
.norgeskartContainer iframe {
  margin-top: -90px;
}
.delete-or-edit {
  display: none;
}
.admin .delete-or-edit {
  display: block;
}
.admin .delete-or-edit .delete-event.btn.btn-danger {
  margin-bottom: 10px;
}
.admin .delete-or-edit .edit-event .btn.btn-default {
  background-color: #fdd920;
}
/* Aktiviteter */
/*
.bg865 {
	.col-sm-3 {
		.venstremeny {
			display: none;
		}
	}
	.col-sm-9 {
		width: 100%;
		padding: 0;
		p {
			font-size: 18px;
			line-height: 26px;
		}
		p a {
			color: @main;
			text-decoration: underline;
		}
		.subactivity-image {
			margin-bottom: 20px;
		}
		.subactivity-logo-container {
			margin-bottom: 30px;
			text-align: center;
		}
		.activity-content-container,
		.subactivity-content-container {
			padding: 0 130px;
			@media @l, @m, @s, @xs {
				padding: 0 15px;
			}
		}
		.topptext {
			padding: 30px 0;
		}
		.textbox-left {
			width: 50%;
			float: left;
			padding-right: 20px;
			margin-bottom: 30px;
			@media @s, @xs {
				width: 100%;
				float: none;
				padding: 0;
			}
		}
		.textbox-right {
			width: 50%;
			float: right;
			padding-left: 20px;
			margin-bottom: 30px;
			@media @s, @xs {
				width: 100%;
				float: none;
				padding: 0;
			}
		}
		.green {
			color: @main;
			font-weight: 600;
			font-size: 23px;
		}
		h1 {
			font-size: 32px;
			line-height: 37px;
			@media @s, @xs {
				font-size: 28px;
			}
		}
		h3 {
			display: block;
			clear: both;
			font-size: 24px;
			font-weight: 400;
			line-height: 32px;
		}
		.subactivity-description {
			h1 {
				text-align: center;
				margin-bottom: 30px;
			}
		}
		.subactivity-list-container {
			& > div {
				position: relative;
				margin: 20px 0;
			}

			a {
				font-size: 20px;
				color: black;
				top: 26px;
				left: 110px;
				line-height: 28px;
				h1 {
					line-height: normal;
					display: inline-block;
					font-size: 20px;
					font-weight: normal;
					margin-top: 20px;
					@media @s, @xs {
						width: 190px;
						font-size: 18px;
					}
				}
				img {
					height: 80px;
					width: auto;
					float: left;
					margin-right: 20px;
					transition: all 0.2s ease-in-out;
				}
				&:hover {
					h1 {
						text-decoration: underline;
					}
					img {
						transform: scale(1.1);
					}
				}
			}
			&:after {
				content: 'Husk å forlate et sted du har vært #likefinsomfør';
				display: block;
				font-size: 25px;
				line-height: normal;
				font-family: 'kyrial-sans-pro', sans-serif;
				font-weight: 600;
				height: 20px;
				width: 100%;
				margin: 80px 0 50px 0;
				@media @s, @xs {
					margin: 140px 0 50px 0;
				}
			}
			div:last-of-type {
				a {
					top: 95px !important;
				}
			}
		}
		.activity-form-submit-container {
			margin-bottom: 50px;
			.activity-form-submit {
				padding: 10px 30px 15px 30px;
				font-size: 20px;
				background-color: #fab72d;
				box-shadow: 2px 2px 2px grey;
				border-radius: 10px;
				color: black;
				text-decoration: none;
				display: inline-block;
				//display: none;
				margin-right: 30px;
				@media @s, @xs {
					margin-left: 0;
					margin-top: 20px;
				}
			}
			.activity-equipment-link {
				padding: 10px 30px 15px 30px;
				font-size: 20px;
				background-color: #3088c4;
				box-shadow: 2px 2px 2px grey;
				border-radius: 10px;
				color: white;
				text-decoration: none;
				display: inline-block;
				@media @s, @xs {
					margin-top: 20px;
				}
			}
		}
		.subactivity-title {
			display: none;
		}
	}
}

*/
.icon-panel {
  display: none;
}
.body-mi6761 .bg865 .col-sm-3 {
  display: none;
}
.body-mi6761 .bg865 .col-sm-9 {
  width: 100%;
}
.body-mi6761 .bg865 .smal-frilager {
  padding: 0 130px;
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .body-mi6761 .bg865 .smal-frilager {
    padding: 0 15px;
  }
}
.body-mi6761 .bg865 .article6767 h1 {
  margin: 30px 0;
  text-transform: uppercase;
}
.body-mi6761 .article6779 {
  border-top: 25px solid #00aa55;
}
.body-mi6761 .icon-panel {
  display: none;
}
.icon-panel {
  display: flex;
  width: 100%;
  max-width: 1450px;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px auto;
  scale: 0.7;
}
@media (min-width: 992px) {
  .icon-panel {
    margin: 50px auto;
  }
}
.icon-panel a {
  color: var(--tertiary-color);
  text-decoration: none;
  flex-grow: 1;
  text-align: center;
}
.icon-panel a .panel-icon {
  opacity: 1;
  transition: opacity 0.15s ease-out;
}
.icon-panel a .panel-icon-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.15s ease-out;
}
.icon-panel a h5 {
  transition: transform 0.15s ease-out;
  font-size: 21px;
}
.icon-panel a:hover .panel-icon {
  opacity: 0;
}
.icon-panel a:hover .panel-icon-hover {
  opacity: 0.91;
}
.icon-panel a:hover h5 {
  transform: scale(1.2);
}
.icon-panel .icon-holder {
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  width: 180px;
}
@media (max-width: 991px) {
  .icon-panel .icon-holder {
    width: 120px;
  }
}
.icon-panel .icon-holder img {
  width: 100%;
  max-width: 100%;
}
.grid-id-351 .icon-panel {
  margin: 50px 0;
}
.activity-form-body {
  max-width: 700px;
  margin: 0 auto;
  padding: 50px 0;
  background-color: #00aa55;
}
.activity-form-body h1 {
  font-size: 34px;
  margin-bottom: 30px;
  color: white;
}
.activity-form-body h2 {
  color: white;
}
.activity-form-body .control-label {
  color: white;
}
.activity-form-body .activity-reply-field {
  width: 48%;
  margin-right: 2%;
  float: left;
}
@media (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .activity-form-body .activity-reply-field {
    width: 100%;
    float: none;
    margin: 0;
  }
  .activity-form-body .activity-reply-field textarea {
    min-height: 100px;
  }
}
.activity-form-body .subactivity-reply-fields {
  clear: both;
  padding: 0px 30px 30px 30px;
  display: inline-block;
  background-color: #4eba74;
  margin-top: 30px;
  width: 98%;
}
.activity-form-body .activity-submit-button {
  padding: 10px 30px 10px 30px;
  font-size: 20px;
  background-color: #fab72d;
  border-radius: 10px;
  color: black;
  text-decoration: none;
  display: inline-block;
  border: 0;
  margin-top: 20px;
}
.activity-form-body .date-picker {
  color: black !important;
}
.back-to-activity-button {
  float: right;
  margin-top: 20px;
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 551px) and (max-width: 767px) {
  .back-to-activity-button {
    margin-top: 10px;
  }
}
@media (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .back-to-activity-button {
    float: none;
    margin-top: 0;
    margin-bottom: 20px;
  }
}
.back-to-activity-button a {
  background-color: #3088c4;
  color: white;
  padding: 3px 10px 5px 10px;
  border-radius: 3px;
  text-align: center;
}
@media (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .back-to-activity-button a {
    display: block;
    margin: 0 15px;
  }
}
@media (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .activity-logo {
    float: none;
    text-align: center;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .activity-logo a {
    float: none;
    text-align: center;
    margin: 0 auto;
  }
}
.activity-logo img {
  margin-bottom: 10px;
}
@media (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .activity-logo img {
    text-align: center;
    margin: 0 auto;
    float: none;
  }
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .activity-form-body {
    padding: 30px 15px;
  }
}
.activity-form-body label {
  color: white;
  font-weight: 300;
}
.activity-form-body input {
  color: black;
}
.activity-form-body .form-subactivity-title {
  margin-top: 30px;
}
.activity-form-body .has-error .form-control {
  border-width: 3px;
}
.participantes-container {
  display: block;
  clear: both;
  color: white;
  font-family: 'kyrial-sans-pro', sans-serif;
}
.participantes-container .participant-text {
  margin-bottom: 5px;
}
.participantes-container .add-participant {
  background-color: #3088c4;
  color: white;
  padding: 3px 10px 5px 10px;
  border-radius: 3px;
  text-align: center;
  border: 0;
  margin-bottom: 10px;
}
.participantes-container .participant-info label {
  color: white;
}
.participantes-container .participant-info input {
  color: black;
  border: 0;
}
.participantes-container .remove-participant {
  background-color: #ed8f1c;
  color: white;
  padding: 3px 10px 5px 10px;
  border-radius: 3px;
  text-align: center;
  border: 0;
}
.participantes-container .participant-ordered-list li {
  margin-bottom: 5px;
}
/* Blog */
@media (min-width: 992px), (min-width: 768px) and (max-width: 991px) {
  .grid-id-53 {
    width: 66%;
  }
}
@media (min-width: 992px), (min-width: 768px) and (max-width: 991px) {
  .grid-id-354 {
    width: 33%;
  }
}
.template-standard-blogg .module-blogfeed,
.template-standard-med-sidemeny .module-blogfeed {
  margin-bottom: 60px;
}
.template-standard-blogg .module-blogfeed .photographer,
.template-standard-med-sidemeny .module-blogfeed .photographer {
  display: none;
}
.template-standard-blogg .module-blogfeed *,
.template-standard-med-sidemeny .module-blogfeed * {
  color: #003b5c;
}
.template-standard-blogg .module-blogfeed .blogfeed-title1 h2,
.template-standard-med-sidemeny .module-blogfeed .blogfeed-title1 h2 {
  font-weight: 600;
  margin-bottom: 0.7em;
  padding-bottom: 8px;
  font-size: 23px;
}
@media (max-width: 991px) {
  .template-standard-blogg .module-blogfeed .blogfeed-title1 h2,
  .template-standard-med-sidemeny .module-blogfeed .blogfeed-title1 h2 {
    font-size: 16px;
  }
}
.template-standard-blogg .module-blogfeed .blogfeed-title2 h2,
.template-standard-med-sidemeny .module-blogfeed .blogfeed-title2 h2 {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
}
.template-standard-blogg .module-blogfeed li,
.template-standard-med-sidemeny .module-blogfeed li {
  margin-bottom: 25px;
  width: 100%;
  border: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .template-standard-blogg .module-blogfeed li,
  .template-standard-med-sidemeny .module-blogfeed li {
    display: block;
  }
}
.template-standard-blogg .module-blogfeed .blogfeed-info,
.template-standard-med-sidemeny .module-blogfeed .blogfeed-info {
  padding: 25px;
}
.template-standard-blogg .module-blogfeed .blogfeed-info .blogfeed-lead-paragraph,
.template-standard-med-sidemeny .module-blogfeed .blogfeed-info .blogfeed-lead-paragraph {
  text-decoration: none;
  display: none;
}
.template-standard-blogg .module-blogfeed .blogfeed-info .blogfeed-lead-paragraph h3,
.template-standard-med-sidemeny .module-blogfeed .blogfeed-info .blogfeed-lead-paragraph h3 {
  color: black;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
}
.article2877 .btn-green {
  background-color: transparent;
  color: var(--blue-dark) !important;
  font-size: 20px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 0.5px;
}
iframe {
  border: none;
  border-radius: 5px;
}
@media (min-width: 992px) {
  .template-standard-blogg .grid-id-354 {
    width: 29%;
    margin-left: 3%;
  }
}
.template-standard-blogg .module-pageimage {
  margin-bottom: 20px;
}
.template-standard-blogg .module-pageimage .image-title {
  font-size: 12px;
  color: #b3b3b3;
  margin-top: 10px;
}
.template-standard-blogg .module-pageimage .image-title::before {
  content: 'Fotograf: ';
}
.template-standard-blogg .page-content .module-article * {
  color: #003b5c;
}
.template-standard-blogg .page-content .module-article h1 {
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 0.5em;
}
@media (max-width: 991px) {
  .template-standard-blogg .page-content .module-article h1 {
    font-size: 40px;
  }
}
.template-standard-blogg .page-content .module-article p span {
  color: #b3b3b3;
  border-top: 1px solid #b3b3b3;
  padding-top: 2px;
  margin-top: 15px;
  margin-bottom: 15px;
  width: 100%;
  display: block;
  font-size: 14px;
}
.template-standard-blogg .module-blogfeed li {
  background-color: white;
  border: none;
  margin-bottom: 30px;
  border-radius: 7px;
  overflow: hidden;
}
.template-standard-blogg .module-blogfeed .blogfeed-info .blogfeed-title1:hover {
  color: black;
}
.template-standard-blogg .module-blogfeed .blogfeed-info .blogfeed-title1 h2 {
  margin-bottom: 0;
}
.template-standard-blogg .module-blogfeed .blogfeed-info .blogfeed-title2:hover {
  color: black;
}
.template-standard-blogg .module-blogfeed .blogfeed-info .blogfeed-title2 h3 {
  margin-bottom: 0;
}
.module-blogmeta {
  width: 100%;
  background: none;
}
.module-blogmeta .blogmeta-written::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/friluftsraadet/clock.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: -2px;
}
.module-blogmeta .blogmeta-written-time,
.module-blogmeta .blogmeta-written-text {
  display: none;
}
.module-blogmeta .blogmeta-info .blogmeta-date .blogmeta-written {
  color: #003b5c;
  font-size: 17px;
}
.module-blogmeta .blogmeta-info .blogmeta-date .blogmeta-written span {
  margin-right: 4px;
}
.module-blogmeta .blogmeta-info .blogmeta-date .blogmeta-edited {
  display: none;
}
.module-blogmeta span {
  font-family: 'kyrial-sans-pro', sans-serif;
}
.module-blogmeta .blogmeta-title,
.module-blogmeta .blogmeta-organisation {
  font-size: 14px;
  margin-bottom: 10px;
  display: inline-block;
}
.blog-author {
  margin-bottom: 20px;
}
.blog-author .blogmeta-info .blogmeta-date .blogmeta-written {
  color: #003b5c;
  font-size: 17px;
}
.blog-author .blogmeta-info .blogmeta-date .blogmeta-written span {
  margin-right: 4px;
}
.blog-author .blogmeta-info .blogmeta-date .blogmeta-edited {
  display: none;
}
.blog-author span {
  font-family: 'kyrial-sans-pro', sans-serif;
}
.blog-author .blogmeta-title,
.blog-author .blogmeta-organisation {
  font-size: 14px;
  margin-bottom: 10px;
  display: inline-block;
}
.news-archive-header h1 {
  color: #003b5c;
  font-weight: 500;
  margin-bottom: 40px;
  font-size: 60px;
}
@media (max-width: 991px) {
  .news-archive-header h1 {
    font-size: 40px;
  }
}
.module-blogfeed.dedicated-newsarchive > ul {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 991px) {
  .module-blogfeed.dedicated-newsarchive > ul {
    gap: 40px;
  }
}
.module-blogfeed.dedicated-newsarchive > ul > li {
  border: none;
  display: flex;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.1);
  background-color: white;
}
@media (min-width: 992px) {
  .module-blogfeed.dedicated-newsarchive > ul > li {
    flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .module-blogfeed.dedicated-newsarchive > ul > li {
    flex-direction: column-reverse;
  }
}
.module-blogfeed.dedicated-newsarchive .blogfeed-img {
  flex-basis: 45%;
  height: 400px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .module-blogfeed.dedicated-newsarchive .blogfeed-img {
    flex-basis: auto;
    width: 100%;
    flex-grow: 0;
    max-height: 350px;
    height: auto;
    aspect-ratio: 1.5;
  }
}
.module-blogfeed.dedicated-newsarchive .blogfeed-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.module-blogfeed.dedicated-newsarchive .blogfeed-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  color: #003b5c;
  flex-grow: 1;
  padding: 40px;
}
.module-blogfeed.dedicated-newsarchive .blogfeed-info .blogfeed-date {
  order: 2;
}
.module-blogfeed.dedicated-newsarchive .blogfeed-info .blogfeed-date .time {
  display: none;
}
.module-blogfeed.dedicated-newsarchive .blogfeed-info a {
  color: #003b5c;
}
@media (max-width: 991px) {
  .module-blogfeed.dedicated-newsarchive .blogfeed-info {
    padding: 30px;
  }
}
.module-blogfeed.dedicated-newsarchive .blogfeed-info .blogfeed-anchor {
  order: 3;
  display: inline-block;
  color: white;
  background-color: var(--main-color);
  padding: 17px 34px;
  padding-right: 50px;
  background-image: url(https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/friluftsraadet/arrow-right-2.svg);
  background-position: right 25px center;
  background-repeat: no-repeat;
  background-size: 9px;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  transition: background 0.2s ease-out;
}
.module-blogfeed.dedicated-newsarchive .blogfeed-info .blogfeed-anchor:hover {
  text-decoration: none;
  background-color: var(--main-darker-color);
  background-position: right 20px center;
}
.module-blogfeed.dedicated-newsarchive .blogfeed-title1 {
  order: 1;
}
.module-blogfeed.dedicated-newsarchive .blogfeed-title1 h2 {
  margin: 0;
  font-size: 29px;
  font-weight: 600;
}
@media (max-width: 991px) {
  .module-blogfeed.dedicated-newsarchive .blogfeed-title1 h2 {
    font-size: 25px;
  }
}
.module-blogfeed.dedicated-newsarchive .blogfeed-title2 {
  order: 3;
}
.module-blogfeed.dedicated-newsarchive .blogfeed-title2 h2 {
  font-weight: normal;
  font-size: 18px;
}
@media (max-width: 991px) {
  .module-blogfeed.dedicated-newsarchive .blogfeed-title2 h2 {
    font-size: 16px;
  }
}
.module-blogfeed.dedicated-newsarchive .blogfeed-date {
  font-size: 20px;
}
@media (max-width: 991px) {
  .module-blogfeed.dedicated-newsarchive .blogfeed-date {
    font-size: 16px;
  }
}
.module-blogfeed.dedicated-newsarchive .blogfeed-date:before {
  content: '';
  display: inline-block;
  background-image: url(https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/friluftsraadet/clock.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
  position: relative;
  bottom: 2px;
}
.module-blogfeed.dedicated-newsarchive .photographer,
.module-blogfeed.dedicated-newsarchive .blogfeed-lead-paragraph {
  display: none;
}
.fullbredde > .container {
  margin-top: -78px;
}
@media (min-width: 552px) {
  .fullbredde {
    overflow: hidden;
  }
  .fullbredde > .container {
    width: 98vw;
    padding-right: 0;
    padding-left: 0;
  }
  .fullbredde > .container .col-sm-12 {
    padding-right: 0;
    padding-left: 0;
  }
}
.module-blogmeta {
  padding: 0;
}
.module-blogmeta .blogmeta-info {
  padding: 0;
}
.logoer img {
  max-height: 100px;
}
.logoer span {
  color: #00aa54;
}
@media (min-width: 1800px), (min-width: 1400px) and (max-width: 1799px), (min-width: 992px) and (max-width: 1399px) {
  .module-menu-holder.menu-freshair-bottom-mobile {
    display: none;
  }
}
.module-menu-holder.menu-freshair-bottom-mobile:before,
.module-menu-holder.menu-freshair-bottom-mobile:after {
  display: none;
}
.module-menu-holder.menu-freshair-bottom-mobile > ul > li {
  float: none !important;
}
.module-menu-holder.menu-freshair-bottom-mobile .level1 > li {
  display: none;
}
.module-menu-holder.menu-freshair-bottom-mobile .level1 > li.current {
  display: block;
}
.module-menu-holder.menu-freshair-bottom-mobile .level1 > li.current > a {
  display: none;
}
.module-menu-holder.menu-freshair-bottom-mobile .level1 > li.current > ul {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  border: none;
}
.module-menu-holder.menu-freshair-bottom-mobile .level1 > li.current > ul li {
  margin-bottom: 10px;
}
.module-menu-holder.menu-freshair-bottom-mobile .level1 > li.current > ul li:last-of-type a {
  margin-bottom: 0;
}
.module-menu-holder.menu-freshair-bottom-mobile .level1 > li .current a {
  font-weight: normal;
}
.module-menu-holder.menu-freshair-bottom-mobile .level1 > li a {
  color: #00aa55;
  border: 1px solid #00aa55;
  padding: 10px 0 15px;
  font-size: 25px;
  line-height: 1.25em;
  text-align: center;
  display: block;
}
@media (min-width: 1800px), (min-width: 1400px) and (max-width: 1799px), (min-width: 992px) and (max-width: 1399px) {
  .freshair-homelink-mobile {
    display: none;
  }
}
.freshair-homelink-mobile > p {
  text-align: center;
}
.freshair-homelink-mobile > p > a > img {
  width: 67px;
}
.landskonferanse {
  padding: 30px;
  background-color: #0073bb1e;
  border-radius: 5px;
}
.landskonferanse .btn.submit {
  background-color: #0072bb;
  padding: 5px 15px 7px 15px;
  color: white;
  font-family: 'kyrial-sans-pro', sans-serif;
  font-size: 19px;
  margin-top: 10px;
  display: inline-block;
}
.rullegardin.panel {
  position: relative;
  padding-left: 40px;
  line-height: 1.3em;
}
.rullegardin.panel a:before {
  content: '+';
  width: 40px;
  height: 40px;
  position: absolute;
  font-size: 28px;
  left: 0;
  color: #00aa55;
  font-weight: 900;
  text-align: center;
}
.rullegardin.panel .admin-config a:before {
  display: none;
}
.strategisporsmal form .row {
  padding: 20px;
  background-color: #00aa551c;
  margin-bottom: 60px;
}
.strategisporsmal form .row .form-field.form-field-text label {
  font-weight: bold;
}
.strategisporsmal .btn.submit {
  font-size: 20px;
  background-color: #0072bb;
  color: white;
}
.module-employeelist.cards .facehugger {
  width: 100%;
  height: 200px;
}
.module-employeelist.cards .facehugger img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.module-employeelist.cards li {
  width: 23%;
}
.module-formbuilder.lightblue {
  padding: 30px;
  background-color: #ecf4f7;
  border-radius: 5px;
}
.module-formbuilder.lightblue .btn {
  background-color: #40a0cd;
  color: white;
}
.module-menu-holder.hover .mi8099 {
  display: block;
}
.productpage .activity-form-submit-container {
  display: none;
}
k .article8200 .textbox-holder {
  display: flex;
  justify-content: space-between;
  grid-column-gap: 5px;
}
.article8200 .textbox-holder p {
  margin-bottom: 5px;
  font-size: 15px;
}
.learning-freshair-intro-mobile {
  padding: 0 20px;
}
.learning-freshair-intro-mobile p {
  font-size: 18px;
  line-height: 23px;
}
@media (min-width: 991px) {
  .article8200 {
    max-width: 590px;
  }
}
.body-mi3336 .page-content .row {
  margin-bottom: 30px;
}
.body-mi3336 .module-formbuilder {
  padding: 30px;
  background-color: #f1f1f1;
  border-radius: 5px;
}
.body-mi3336 .module-formbuilder .btn {
  background-color: #40a0cd;
  color: white;
}
@media (max-width: 991px) {
  .module-employeelist.cards li {
    width: 31%;
  }
}
@media (max-width: 767px) {
  .module-employeelist.cards li {
    width: 48%;
  }
}
.medlemskommuner {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
@media (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .medlemskommuner {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
.medlemskommuner .kommune h4 a {
  font-size: 21px;
  color: #003b5c;
  line-height: 1;
}
.medlemskommuner .kommune h4 a::before {
  display: block;
  content: '';
  margin-right: 13px;
  margin-bottom: 4px;
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/friluftsraadet/arrow-right-2.svg');
  background-color: var(--main-color);
  background-repeat: no-repeat;
  background-size: 25%;
  background-position: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  float: left;
}
.medlemskommuner .kommune p {
  clear: left;
  margin-top: 15px;
  line-height: 1.4;
}
.article1180 {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .article1180 {
    margin-bottom: 40px;
  }
}
.article1180 h1 {
  font-size: 40px;
  font-weight: normal;
  margin-bottom: 0.6em;
}
@media (max-width: 991px) {
  .article1180 h1 {
    font-size: 30px;
  }
}
.article1180 h2 {
  font-size: 24px;
  line-height: 1.7;
  font-weight: normal;
}
@media (max-width: 991px) {
  .article1180 h2 {
    font-size: 20px;
  }
}
.alternate-light-bg {
  padding: 85px 0;
}
@media (max-width: 991px) {
  .alternate-light-bg {
    padding: 60px 0;
  }
}
.friluftskonf-frontpage-picture > p > img {
  border-radius: 15px;
}
.friluftskonf-frontpage-article h3 {
  font-weight: 600;
  font-size: 45px;
}
@media (max-width: 991px) {
  .friluftskonf-frontpage-article h3 {
    font-size: 30px;
  }
}
.friluftskonf-frontpage-article > p > a {
  display: inline-block;
  color: white;
  background-color: var(--main-color);
  margin-top: 20px;
  padding: 17px 34px;
  padding-right: 50px;
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/friluftsraadet/arrow-right-2.svg');
  background-position: right 25px center;
  background-repeat: no-repeat;
  background-size: 9px;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  transition: background 0.2s ease-out;
  text-transform: uppercase;
}
.friluftskonf-frontpage-article > p > a:hover {
  text-decoration: none;
  background-color: var(--main-darker-color);
  background-position: right 20px center;
}
.frontpage-intro-article {
  text-align: center;
  color: #003b5c;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 120px;
}
@media (max-width: 991px) {
  .frontpage-intro-article {
    margin-bottom: 100px;
  }
}
.frontpage-intro-article h1 {
  font-size: 60px;
  margin-bottom: 0.5em;
}
@media (max-width: 991px) {
  .frontpage-intro-article h1 {
    font-size: 40px;
  }
}
@media (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .frontpage-intro-article h1 {
    font-size: 30px;
  }
}
.frontpage-intro-article > p {
  margin-bottom: 0.5em;
  line-height: 1.5;
  font-weight: 300;
  font-size: 16px;
}
@media (max-width: 991px) {
  .frontpage-intro-article > p {
    font-size: 16px;
  }
}
@media (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .frontpage-intro-article > p {
    font-size: 15px;
  }
}
/* Nettbutikk */
.body-mi22059 {
  color: var(--blue-dark);
}
.body-mi22059 h2 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 20px;
}
.module-productlist.cards {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}
.module-productlist.cards:before {
  display: none;
}
.module-productlist.cards li {
  width: 23%;
  border: 0.5px solid lightgrey;
  padding: 15px;
  border-radius: 10px;
  color: var(--blue-dark);
  box-shadow: 1px 1px 20px #f1f1f1;
}
@media (min-width: 768px) and (max-width: 991px) {
  .module-productlist.cards li {
    width: 31%;
  }
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .module-productlist.cards li {
    width: 48%;
  }
}
.module-productlist.cards li .product-img {
  display: inline-block;
  margin-bottom: 15px;
  height: 170px;
  width: 100%;
  overflow: hidden;
}
.module-productlist.cards li .product-img img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.module-productlist.cards li h1 {
  margin-bottom: 5px;
}
.module-productlist.cards li h1 a {
  font-size: 22px;
  color: var(--blue-dark);
}
.module-productlist.cards li p {
  font-size: 15px;
}
.module-productlist.cards li .price {
  font-size: 25px;
  margin-bottom: 10px;
}
.module-productlist.cards li .partNumber {
  font-size: 12px;
  line-height: 1em;
  margin-bottom: 10px;
  color: #113b5c8c;
}
.module-productlist.cards li .partNumber:before {
  content: 'Varenummer:';
  display: inline-block;
  width: 90px;
  height: 10px;
}
.module-productlist.cards li .readMore {
  color: var(--main-color);
  text-transform: uppercase;
  border-bottom: 2px solid var(--main-color);
  font-weight: 600;
  font-size: 14px;
  margin-left: 15px;
}
.module-productlist.cards li .readMore:hover {
  text-decoration: none;
}
.module-productlist.cards li .buy {
  display: inline-block;
  color: white;
  background-color: var(--main-color);
  padding: 10px 24px;
  padding-right: 50px;
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/friluftsraadet/arrow-right-2.svg');
  background-position: right 25px center;
  background-repeat: no-repeat;
  background-size: 7px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  transition: background 0.2s ease-out;
}
.module-productlist.cards li .buy:hover {
  text-decoration: none;
  background-color: var(--main-darker-color);
  background-position: right 20px center;
}
.zoomContainer {
  display: none !important;
}
.section.cart,
.cart,
.delivery {
  font-family: 'kyrial-sans-pro', sans-serif;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .section.cart,
  .cart,
  .delivery {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.section.cart .venstremeny,
.cart .venstremeny,
.delivery .venstremeny,
.section.cart .col-sm-3.grid-id-23,
.cart .col-sm-3.grid-id-23,
.delivery .col-sm-3.grid-id-23 {
  display: none;
}
.section.cart .col-sm-9.grid-id-863,
.cart .col-sm-9.grid-id-863,
.delivery .col-sm-9.grid-id-863 {
  width: 100%;
}
.section.cart #shoppingcart .title,
.cart #shoppingcart .title,
.delivery #shoppingcart .title {
  margin-bottom: 20px;
  color: var(--blue-dark);
}
.section.cart #shoppingcart #overview .orderItem,
.cart #shoppingcart #overview .orderItem,
.delivery #shoppingcart #overview .orderItem {
  border: 0.5px solid lightgrey;
  padding: 15px;
  border-radius: 10px;
  color: var(--blue-dark);
  box-shadow: 1px 1px 20px #f1f1f1;
  margin-bottom: 10px;
}
.section.cart #shoppingcart #overview .orderItem:before,
.cart #shoppingcart #overview .orderItem:before,
.delivery #shoppingcart #overview .orderItem:before {
  display: none;
}
.section.cart #shoppingcart #overview .orderItem .row,
.cart #shoppingcart #overview .orderItem .row,
.delivery #shoppingcart #overview .orderItem .row {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .section.cart #shoppingcart #overview .orderItem .row,
  .cart #shoppingcart #overview .orderItem .row,
  .delivery #shoppingcart #overview .orderItem .row {
    flex-direction: column;
  }
}
.section.cart #shoppingcart #overview .orderItem .product-img,
.cart #shoppingcart #overview .orderItem .product-img,
.delivery #shoppingcart #overview .orderItem .product-img {
  height: 110px;
  max-height: none;
  width: 150px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .section.cart #shoppingcart #overview .orderItem .product-img,
  .cart #shoppingcart #overview .orderItem .product-img,
  .delivery #shoppingcart #overview .orderItem .product-img {
    width: 100px;
  }
}
.section.cart #shoppingcart #overview .orderItem .product-img img,
.cart #shoppingcart #overview .orderItem .product-img img,
.delivery #shoppingcart #overview .orderItem .product-img img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.section.cart #shoppingcart #overview .orderItem .product-title,
.cart #shoppingcart #overview .orderItem .product-title,
.delivery #shoppingcart #overview .orderItem .product-title {
  width: 100%;
}
.section.cart #shoppingcart #overview .orderItem .product-title p,
.cart #shoppingcart #overview .orderItem .product-title p,
.delivery #shoppingcart #overview .orderItem .product-title p {
  font-size: 14px;
}
.section.cart #shoppingcart #overview .orderItem .product-title a,
.cart #shoppingcart #overview .orderItem .product-title a,
.delivery #shoppingcart #overview .orderItem .product-title a {
  color: var(--blue-dark);
  font-weight: 700;
}
.section.cart #shoppingcart #overview .remove.delete-product,
.cart #shoppingcart #overview .remove.delete-product,
.delivery #shoppingcart #overview .remove.delete-product {
  font-size: 14px;
  padding-bottom: 3px;
}
.section.cart #shoppingcart #overview .product-quantity input,
.cart #shoppingcart #overview .product-quantity input,
.delivery #shoppingcart #overview .product-quantity input {
  margin-top: 5px;
  margin-left: 0;
}
.section.cart #shoppingcart #overview .product-total span,
.cart #shoppingcart #overview .product-total span,
.delivery #shoppingcart #overview .product-total span {
  color: var(--blue-dark);
}
.section.cart #shoppingcart #overview .calculations,
.cart #shoppingcart #overview .calculations,
.delivery #shoppingcart #overview .calculations {
  margin: 30px 0;
  color: var(--blue-dark);
}
.section.cart #shoppingcart #overview .shopping-actions a,
.cart #shoppingcart #overview .shopping-actions a,
.delivery #shoppingcart #overview .shopping-actions a {
  padding-bottom: 10px;
  border-radius: 10px;
  font-size: 12px;
}
.section.cart #shoppingcart #overview .shopping-actions .button,
.cart #shoppingcart #overview .shopping-actions .button,
.delivery #shoppingcart #overview .shopping-actions .button {
  border: 1px solid grey;
  background-color: transparent;
  font-weight: 700;
  text-transform: uppercase;
}
.section.cart #shoppingcart #overview .shopping-actions .button-primary,
.cart #shoppingcart #overview .shopping-actions .button-primary,
.delivery #shoppingcart #overview .shopping-actions .button-primary {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  color: white;
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/friluftsraadet/arrow-right-2.svg');
  background-position: right 19px center;
  background-repeat: no-repeat;
  background-size: 7px;
  padding-right: 35px;
  font-weight: 700;
  text-transform: uppercase;
}
#delivery .form .col-sm-6 .col-sm-4 {
  width: 45%;
}
#delivery .form .col-sm-6 .col-sm-8 {
  width: 55%;
}
@media (min-width: 768px) and (max-width: 991px) {
  #delivery .form .col-sm-6 .col-sm-4,
  #delivery .form .col-sm-6 .col-sm-8 {
    width: 50%;
  }
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  #delivery .form .col-sm-6 .col-sm-4,
  #delivery .form .col-sm-6 .col-sm-8 {
    width: 100%;
  }
}
.section.product .gallery {
  padding-right: 30px;
}
@media (min-width: 992px) {
  .section.product .gallery .zoomWrapper {
    height: 500px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section.product .gallery .zoomWrapper {
    height: 300px !important;
  }
}
.section.product .product-info {
  text-align: left;
  background-color: transparent;
  padding: 0;
}
.section.product .head {
  background-color: #00768112;
  margin: 0;
  display: inline-block;
  border-radius: 10px 10px 0 0;
  text-align: left;
  width: 50%;
  padding: 35px 35px 0 35px;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .section.product .head {
    width: 100%;
    padding: 25px;
    background-color: transparent;
  }
}
.section.product .head h1,
.section.product .head h2 {
  text-align: left;
  line-height: 1.3em;
  color: var(--blue-dark);
}
.section.product .head h1 {
  margin-bottom: 0;
}
.section.product .head h2 {
  font-size: 19px;
}
.section.product .side {
  background-color: #00768112;
  border-radius: 0 0 10px 10px;
  color: var(--blue-dark);
  margin: 0;
  padding: 0 35px 35px 35px;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .section.product .side {
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
  }
}
.section.product .side p {
  font-size: 15px;
  line-height: 1.4em;
  margin-bottom: 20px;
}
.section.product .side .partNumber {
  margin-bottom: 10px;
}
.section.product .side .partNumber:before {
  content: 'Varenummer:';
  display: inline-block;
  width: 110px;
  height: 20px;
}
.section.product .side .price {
  font-size: 25px;
  margin-bottom: 20px;
}
.section.product .side .buy {
  display: inline-block;
  color: white;
  background-color: var(--main-color);
  padding: 10px 24px;
  padding-right: 50px;
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/friluftsraadet/arrow-right-2.svg');
  background-position: right 25px center;
  background-repeat: no-repeat;
  background-size: 9px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  transition: background 0.2s ease-out;
}
.section.product .side .buy:hover {
  text-decoration: none;
  background-color: var(--main-darker-color);
  background-position: right 20px center;
}
.productpage .venstremeny {
  display: none;
}
.productpage .col-sm-9 {
  width: 100%;
}
.module-formbuilder .btn.submit {
  display: inline-block;
  color: white;
  background-color: var(--main-color);
  padding: 7px 24px;
  padding-right: 40px;
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/friluftsraadet/arrow-right-2.svg');
  background-position: right 21px center;
  background-repeat: no-repeat;
  background-size: 6px;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  transition: background 0.2s ease-out;
}
.module-formbuilder .btn.submit:hover {
  text-decoration: none;
  background-color: var(--main-darker-color);
  background-position: right 16px center;
}
.mce-menu {
  position: fixed !important;
}
