html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(to bottom, #e2e8f0 , #edf2f7 500px);
  color: #2d3748;
  scrollbar-gutter: stable both-edges;
  overflow-x: hidden;
  width: 100%;
}

:focus {
    outline: none;
}


.full-width-content .entry-content > .alignfull {
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	max-width: 100vw;
	width: 100vw;
}



.site-container {
  overflow: hidden;
  width: 100%;
}

/* Typographical Elements
--------------------------------------------- */


a {
	color: #ff483f;
	text-decoration: none;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
  font-weight: 600;
}

p {
  margin-bottom: 1.5rem;
}

b, strong {
  font-weight: 600;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  font-weight: inherit;
}

a:focus,
a:hover {
	color: #ff483f;
	text-decoration: none;
}



/* DEO COLORS */

.text-deo-red,
.has-deo-red-color { color: #ff483f !important; }
.bg-deo-red,
.has-deo-red-background-color { background-color: #ff483f !important; }


.text-deo-blue,
.has-deo-blue-color { color: #002176 !important; }
.bg-deo-blue,
.has-deo-blue-background-color { background-color: #002176 !important; }

.has-dark-gray-color { color: #2d3748 !important; }
.has-dark-gray-background-color { background-color: #2d3748 !important; }

.has-gray-color { color: #cbd5e0 !important; }
.has-gray-background-color { background-color: #cbd5e0 !important; }

.has-light-gray-color { color: #f7fafc !important; }
.has-light-gray-background-color { background-color: #f7fafc !important; }

.has-white-color { color: #fff !important; }
.has-white-background-color { background-color: #fff !important; }

.bg-deo-darkred {
  background-color: #bf4943;
}

.bg-deo-darkblue {
  background-color: #132042;
}

.bg-deo-yellow {
  background-color: #FFF683;
}

.text-deo-yellow {
  color: #FFF683;
}

.border-deo-red {
  border-color: #ff483f;
}


.deo-shadow {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.font-heading {
  font-family: "Roboto", sans-serif;
}




.first-letter-cap {
  display: inline-block;
}

.first-letter-cap::first-letter {
  text-transform: uppercase;
}

.entry-footer .entry-meta {
    border-top: 1px solid #e2e8f0;
    padding-top: 15px;
}

.entry-content code {
    background-color: #f7fafc;
}

a.anchor {
    display: block;
    position: relative;
    top: -150px;
    visibility: hidden;
}

.wp-block-genesis-blocks-gb-spacer {
    color: #cbd5e0 !important;
}



/* BUTTONS */

button {
  border-radius: 0;
}
.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin: 0 -5px -5px -5px !important;
}

.wp-block-buttons .wp-block-button {
  padding: 0 5px 5px 5px !important;
  margin: 0 !important;
}

.site-container .wp-block-button .wp-block-button__link,
.btn {
  display: inline-block;
  padding: .825rem 2rem !important;
  background-color: #ff483f;
  color: #f7fafc;
  font-family: "Source Sans Pro", sans-serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  border-radius: 0 !important;
  transition: box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
  height: auto !important;
  min-height: auto !important;
}

.btn-large {
  padding: 1.1rem 2.15rem !important;
  font-size: 1.25rem;
  font-weight: 600;
}

.site-container .wp-block-button .wp-block-button__link:hover,
.site-container .wp-block-button .wp-block-button__link:focus,
.btn:focus,
.btn:hover {
  box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.15) !important;
  color: #f7fafc;
  outline: 0;
}


.wp-block-getwid-button-group {
  margin-bottom: 1.5rem;
}


/* GRID */



/* Two column grid - fixed align */

.gb-layout-columns-2.gb-2-col-wideright > .gb-layout-column-wrap,
.gb-layout-columns-2.gb-2-col-wideleft > .gb-layout-column-wrap {
  -ms-grid-columns: repeat(3, minmax(0, 1fr));
  grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-template-areas: "col1 col2 col3";

}

.gb-layout-columns-2.gb-2-col-wideleft > .gb-layout-column-wrap > .gb-block-layout-column:nth-child(1),
.gb-layout-columns-2.gb-2-col-wideright > .gb-layout-column-wrap > .gb-block-layout-column:nth-child(2) {
    grid-column: span 2;
}

.gb-layout-columns-2.gb-2-col-wideleft > .gb-layout-column-wrap > .gb-block-layout-column:nth-child(2) {
  grid-area: col3;
}



@media only screen and (max-width: 600px) {
  .gb-layout-columns-2.gb-2-col-wideright > .gb-layout-column-wrap,
  .gb-layout-columns-2.gb-2-col-wideleft > .gb-layout-column-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-template-areas:
        "col1"
        "col2";
  }

  .gb-layout-columns-2.gb-2-col-wideleft > .gb-layout-column-wrap > .gb-block-layout-column:nth-child(1),
  .gb-layout-columns-2.gb-2-col-wideright > .gb-layout-column-wrap > .gb-block-layout-column:nth-child(2) {
    grid-column: span 1;
  }

  .gb-layout-columns-2.gb-2-col-wideleft > .gb-layout-column-wrap > .gb-block-layout-column:nth-child(2) {
    grid-area: col2;
  }
}



/* ARTICLE */



.title-prefix:after {
  content: '/';
  margin: 0 6px;
  display: inline-block;
}

.summary-title {
  margin-bottom: .75em;
}

.entry {
  margin-bottom: 60px;
}


/* ARTICLE TEASER - POST GRID */

.block-post-list .summary-title {
  margin-bottom: .25rem;
}

.post-grid-info {
  height: 38px;
  line-height: 40px;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  overflow: hidden;
}

.post-grid-info-item {
  font-weight: 500;
  padding-right: 11px;
  margin-right: 10px;
  white-space: nowrap;
  border-color: #edf2f7;
  border-right-width: 1px;
}

.post-grid-info-item:last-child {
  border-right-width: 0px;
}

.post-grid-info-item,
.post-grid-info-item:hover,
.post-grid-info-item:focus {
  color: #2d3748;
}

.post-grid-info-icon {
  width:  38px;
  height: 38px;
  margin-right: 12px;
  background-color: #2d3748;
  color: #f7fafc;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.post-grid-info-item:hover .post-grid-info-icon {
  background-color: #ff483f;
  color: #f7fafc;
}

.lydbog-icon {
  background-color: #f7fafc;
  color:#2d3748;
  border-color: #edf2f7;
  border-right-width: 1px;
}

.post-grid-info-item:hover .lydbog-icon {
  background-color: #f7fafc !important;
  color:#ff483f !important;
}

.post-grid-info-icon + .lydbog-icon {
  margin-left: -12px;
}

.post-grid-summary {
  padding: 28px 38px 38px;
  display: flex;
  flex-direction: column;

  word-wrap: break-word;
  overflow-wrap: break-word;

  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}


/* SITE HEADER */

.site-header {
  background-color: transparent;
  box-shadow: none;
  position: static;
  border-bottom: 1px solid #cbd5e0;
  background: linear-gradient(to bottom, #e2e8f0 , #edf2f7 500px);
}


ul.genesis-nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  flex-direction: column;
}


ul.genesis-nav-menu li.menu-item  {
  margin-right: 3px;
  position: inherit;
}

ul.genesis-nav-menu li.menu-item:last-child  {
  border-right: none;
  padding-right: 0;
}

.genesis-nav-menu a {
  text-transform: uppercase;
  font-size: 14px;
  height: 40px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: .075em;
  font-family: "Roboto", sans-serif;

}

.menu-checkbtn-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  height: 40px;
  width: 40px;
}

.menu-checkbtn-toggle #search-icon-close {
  height: 20px;
}

.header-widget-area .menu-checkbtn-toggle:hover,
.genesis-nav-menu a:focus,
.genesis-nav-menu a:hover {
  background-color: #edf2f7 !important;
  color: #2d3748 !important;
  outline: none !important;
}

.genesis-nav-menu .current-menu-item > a:focus,
.genesis-nav-menu .current-menu-item > a:hover,
.genesis-nav-menu .current-menu-item > a {
  background-color: #ff483f !important;
  color: #f7fafc !important;
}


.genesis-responsive-menu {
  position: inherit;
}


.nav-primary {
    padding: 0px 0px 30px;
    margin: 0 -30px;
    width: calc(100% + 60px);
}

.nav-primary li a {
  padding: 16px 30px 15px;
  border-top: 1px solid #cbd5e0 ;
  height: auto;
}

.nav-primary li:last-child a {
  border-bottom: none;
}




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

  .nav-primary {
    padding: 30px 0px;
    margin: 0 0;
    width: auto;
  }

  .nav-primary li a {
    padding: 12px 15px;
    border: none;
    height: 40px;
  }

  ul.genesis-nav-menu {
    flex-direction: row;
  }
}


.menu-toggle {
  float: right;
  text-transform: uppercase;
  font-size: 14px;
  height: 40px;
  line-height: 23px;
  font-weight: 600;
  letter-spacing: .075em;
  font-family: "Roboto", sans-serif;
  margin: 30px 3px;
  padding: 10px 10px;
  position: relative;
  z-index: 1000;
  border-radius: 0;
  text-indent: -9999px;
}

.menu-toggle:focus,
.menu-toggle:hover {
  background-color: #f7fafc;
  outline: none;
  color: #2d3748 !important;
}

.site-header .menu-toggle::before {
  float: left;
  position: relative;
  text-rendering: auto;
  top: -2px;
  font-size: 25px;
  text-indent: 0px;
  margin-right: 0px;
  text-indent: 0px;
  width: 24px;
  height: 24px;
}


.header-widget-area {
  float: right;
  padding: 30px 0px;
}


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

  .menu-toggle {
    text-indent: 0px;
  }

  .site-header .menu-toggle::before {
    margin-right: 8px;

  }
}


/* Site Logo
--------------------------------------------- */
.wp-custom-logo .title-area {
  max-width: 115px;
	padding-bottom: 30px !important;
	padding-top: 30px !important;
	width: 100%;
}

body .custom-logo-link img {
  display: none;
}

/* The new image should live inside your Child Theme */
body .custom-logo-link:before {
  background-image: url('/wp-content/themes/genesis-sample/images/deo_logo_2022.svg');
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  height: 40px;
  left: 0;
  position: absolute;
  width: 100%;
}

.custom-logo-link {
  position: relative;
  height: 40px;
  display: block;
}


body.single-ung .custom-logo-link:before,
body.deoung_branding_logo .custom-logo-link:before,
body.deoung_branding .custom-logo-link:before {
  background-image: url('/wp-content/themes/genesis-sample/images/deoung_logo_2022.svg');
}

body.single-ung.wp-custom-logo .site-container .title-area,
body.deoung_branding_logo.wp-custom-logo .site-container .title-area,
body.deoung_branding.wp-custom-logo .site-container .title-area {
  max-width: 238px !important;
}


@media only screen and (max-width: 400px) { 
  body.single-ung.wp-custom-logo .site-container .title-area,
  body.deoung_branding.wp-custom-logo .site-container .title-area {
    max-width: 200px !important;
  }

  body .custom-logo-link:before {
    height: 35px;
  }
}



/* SIDEBAR MENUS */

.menu-om-deo-container {
  margin: 0px;
  padding: 0px;

}

.widget ul li {
  margin: 0px;
}

.widget ul li li {
  margin: 0px 0px 0px 15px;
}

.widget ul.menu a {
  color: inherit;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0px;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #4a5568;
  padding: 0px 0px 0px;
  position: relative;
  justify-content: space-between;
  height: 30px;
}

.sidebar .widget ul.menu a:after {
  content: '';
  height: 100%;
  background-color:#cbd5e0;
  transition: flex 0.2s ease-in-out, height 0.2s ease-in-out, background-color 0.2s ease-in-out, opacity 0.5s ease-in-out;
  opacity: 0;
  flex: 0 1 0px;
  margin-left: 0px;
  margin-right: 0px;
}


.widget ul.menu a:focus:after,
.widget ul.menu a:hover:after,
.widget ul.menu .current_page_item > a:after {
  opacity: .5;
  transition: flex 0.2s ease-in-out, height 0.2s ease-in-out, background-color 0.2s ease-in-out, opacity 0.5s ease-in-out;
  flex: 0 1 5px;

}

.widget ul.menu a:focus,
.widget ul.menu a:hover {
  color: #1a202c;
}


.widget ul.menu .current_page_item > a {
  color: #ff483f;
}



/* FOOTER MENUS */

.footer-widgets ul.menu a {
  color: #cbd5e0;
}


.footer-widgets ul.menu a:focus,
.footer-widgets ul.menu a:hover {
  color: #fff;
}

.footer-widgets ul.menu .current_page_item > a {
  color: #ff483f;
}




/* POST WIDGET AREA */

.after-entry  {
  padding: 0;
  box-shadow: none !important;
}

.after-entry .quform {
  margin-bottom: 0 !important;
}

/* FOOTER MENUS */



/* FOOTER WIDGETS */


.footer-widgets {
    border-top: none;
    background-color: #002176;
    clear: both;
    padding: 100px 0;
    color: #FFF;
    font-size: 15px;
}

.footer-widgets a {
    color: #FFF;
}

.widgettitle.widget-title {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}


.site-footer {
    background-color: #ff483f;
    border-top: none;
    font-size: 15px;
    line-height: 1.5;
    padding: 30px;
    text-align: center;
    color: #1a202c;
}

.site-footer a {
    color: #1a202c;
    font-weight: 600;
}

.footer-widgets-3 {
  text-align: right;
}

.footer-widgets-3 .widget_media_image {
  margin-bottom: 30px;
}

.footer-widgets-3 .widget_media_image img {
  margin: 0 auto 0 auto;
  max-width: 130px !important;
}



.footer-widget-area {
  text-align: center !important;
}

.footer-widget-area .simple-social-icons ul {
  display: flex;
  justify-content: center;
}

.footer-widget-area .simple-social-icons ul,
.footer-widget-area .simple-social-icons ul li {
  float: none;
}

.footer-widget-area .menu a {
  justify-content: center !important;
}

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

  .footer-widget-area {
    text-align: left !important;
  }

  .footer-widget-area .menu a {
    justify-content: flex-start !important;
  }

  .footer-widget-area .simple-social-icons ul {
    justify-content: flex-start;
  }

  .footer-widgets-3 .widget_media_image img {
    margin: 0 auto 0 0;
    max-width: 130px !important;
  }


}



/* CUSTOM COMPONENTS */





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

    .full-width-content .entry-content > .alignslim {
      margin-left: -96px;
      margin-right: -96px;
      max-width: calc(100% + 192px);
      width: auto;
    }

    .single.full-width-content article.has-post-thumbnail .entry-header {
      margin-left: -45px;
      margin-right: -45px;
      max-width: calc(100% + 90px);
      width: auto;
    }

    .single.full-width-content article:not(has-post-thumbnail) .entry-header {
      margin-left: 0px;
      margin-right: 0px;
      max-width: 100%;
      margin-bottom: 15px;
    }

}


.entry-content .summary-title {
	margin-top: 0;
}

.entry-title {
	font-size: 40px;
	margin-bottom: 3rem;
}

.single .post-summary,
.single .post-info-top,
.single .entry-title {
  margin-bottom: 20px;
}

.single .entry-header {
  margin-bottom: 55px;
}



ul.post-info-top {
  font-family: "Roboto", sans-serif;
}

ul.post-info-top li {
  margin-bottom: 0em;
}


/* Post Info Block */

.post-info {
  background-color: #f7fafc;
  float: right;
  z-index: 10;
  position: relative;
  border-top: 8px solid #cbd5e0;
}

.post-info p {
  margin-bottom: 0;
}

.post-info-header {
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1.75rem 2rem 1rem;
}

.post-info-content {
  margin-bottom: 1rem;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: .875rem;
  font-weight: 400;
}

.post-info-item {
  list-style-type:none;
  margin: 0 0 0;
  padding: 1rem 2rem;
  border-top: 1px solid #edf2f7;
}

.post-info-item .info-item-label {
  font-weight: 500;
}

.post-info ul  {
  margin: 0 0 0 1em;
  padding: 0;
}

.post-info ul > li {
  list-style-type: none;
  padding: 0;
  margin: 0 0 0 .5em;
  border-top: none;
}

.post-info ul > li::before {
  content: "• ";
  color: #a0aec0;
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
}

.btn-post-info {
  background-color: #2d3748;
  display: -webkit-box;
  display: flex;
}

.btn-post-info:focus,
.btn-post-info:hover {
  background-color: #002176;
}


.post-info-udsolgt {
  padding: 1rem 2rem;
  background-color: #ff483f;

  color: #ffffff ;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.015em;
}



.wp-block-image.featured-image img {
	width: 100%;
}

.wp-block-image.alignslim,
.wp-block-image.alignwide,
.wp-block-image.alignfull,
.wp-block-embed.alignslim,
.wp-block-embed.alignwide,
.wp-block-embed.alignfull {
    margin-bottom: 30px;
}

.wp-block-image.alignslim.featured-image,
.wp-block-image.alignwide.featured-image,
.wp-block-image.alignfull.featured-image {
  margin-bottom: 50px;
}


.alignslim figcaption {
  padding-left: 0px !important;
}

.alignfull figcaption {
  padding-left: 30px !important;
}

figcaption,
.gallery-caption,
.wp-caption-text {
    font-size: .875rem;
    font-weight: 400;
    text-align: left;
    color: #718096;
}

.deo-related-posts {
  border-top: 1px solid #cbd5e0;
  clear: both;
  padding: 120px 0;
  margin-top: 50px;
}

.share-before {
  display: inline-block;
}

.post-summary .share-before {
  display: none;
}

.block-post-list .post-summary {
  min-height: 7em;
}

/* Gutenberg blocks */

.wp-block-audio {
  padding: 1rem;
  background-color: #2d3748;
}
.site-container .wp-block-quote.is-style-large,
.site-container .wp-block-quote {
  border-left: 4px solid #cbd5e0 !important;
  margin: 30px 0px 30px -4px !important;
  padding: 20px 30px 25px !important;
  background-color: #f7fafc;
}

.site-container .wp-block-quote p {
  font-style: italic;
  line-height: 1.6 !important;
  margin-bottom: 0px !important;
  font-size: 18px !important;
  line-height: 1.625 !important;
}

.site-container .wp-block-quote.is-style-large p {
  font-size: 22px !important;
  line-height: 1.575 !important;
}

.site-container .wp-block-quote p + cite {
  margin-top: 15px !important;
  color: #718096;
}

.block-post-list .post-summary:last-child {
  margin-bottom: 0px !important;
}

.gb-block-spacer {
    margin: 0 0 1rem 0 !important;
}


.block-post-grid-carousel .slick-arrow,
.wp-block-getwid-content-slider.has-arrows-inside .slick-arrow,
.wp-block-getwid-images-slider.has-arrows-inside .slick-arrow,
.wp-block-blockgallery-carousel .flickity-prev-next-button {
  border-radius: 0;
  width: 43px;
  height: 42px;
  top: 0;
  bottom: auto;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  background: rgba(247,250,252,1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}


.wp-block-getwid-content-slider.deoung-slider.has-arrows-inside .slick-arrow {
  top:auto;
  bottom: 0px;
}

.block-post-grid-carousel .slick-arrow:active,
.block-post-grid-carousel .slick-arrow:focus,
.block-post-grid-carousel .slick-arrow:hover,
.wp-block-getwid-content-slider.has-arrows-inside .slick-arrow:active,
.wp-block-getwid-content-slider.has-arrows-inside .slick-arrow:focus,
.wp-block-getwid-content-slider.has-arrows-inside .slick-arrow:hover,
.wp-block-getwid-images-slider.has-arrows-inside .slick-arrow:active,
.wp-block-getwid-images-slider.has-arrows-inside .slick-arrow:focus,
.wp-block-getwid-images-slider.has-arrows-inside .slick-arrow:hover,
.wp-block-blockgallery-carousel .flickity-prev-next-button:active,
.wp-block-blockgallery-carousel .flickity-prev-next-button:focus,
.wp-block-blockgallery-carousel .flickity-prev-next-button:hover {
  background: rgba(247,250,252,.95) !important;
  outline: none !important;
  opacity: 1 !important;
  box-shadow: none !important;
}


.block-post-grid-carousel .slick-arrow:before,
.wp-block-blockgallery-carousel .flickity-prev-next-button .flickity-button-icon {
    position: static;
    width: 40%;
    height: 40%;
    top:auto;
    left: auto;
}

.block-post-grid-carousel .slick-prev,
.wp-block-getwid-content-slider.has-arrows-inside .slick-prev,
.wp-block-getwid-images-slider.has-arrows-inside .slick-prev,
.wp-block-blockgallery-carousel .flickity-prev-next-button.previous {
  left: auto !important;
  right: 43px !important;
  border-right: 1px solid #edf2f7;
}

.block-post-grid-carousel .slick-next,
.wp-block-getwid-content-slider.has-arrows-inside .slick-next,
.wp-block-getwid-images-slider.has-arrows-inside .slick-next,
.wp-block-blockgallery-carousel .flickity-prev-next-button.next {
  left: auto !important;
  right: 0 !important;
  border-left: 1px solid #edf2f7;
}


.wp-block-getwid-content-slider.has-arrows-inside .slick-prev {
  left: auto !important;
  right: 51px !important;
}

.wp-block-getwid-content-slider.has-arrows-inside .slick-next {
  left: auto !important;
  right: 8px !important;
}

.block-post-grid-carousel .slick-prev:before,
.wp-block-blockgallery-carousel .flickity-prev-next-button.previous .flickity-button-icon {
  -webkit-transform: translateX(10%);
  -ms-transform: translateX(10%);
  transform: translateX(10%);
}

.block-post-grid-carousel .slick-next:before,
.wp-block-blockgallery-carousel .flickity-prev-next-button.next .flickity-button-icon {
  -webkit-transform: translateX(-10%);
  -ms-transform: translateX(-10%);
  transform: translateX(-10%);
}



/* Slick slider */

.slick-slider {
  margin-bottom: 0 !important;
}

.slick-dots {
  padding: 0 40px !important;
  margin: 0 !important;
}

.slick-dots li {
  margin: 0 6px !important;
}

.slick-dots li,
.slick-dots li button,
.slick-dots li button:before {
  width: 9px !important;
  height: 9px !important;
}

.slick-dots li button {
  text-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.slick-dots li button:before {
  content: '' !important;
  opacity: .5 !important;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
}

.slick-dots li.slick-active button:before {
  background: #fff !important;
  opacity: .75 !important;
}

.slick-prev:before,
.slick-next:before {
  position: static;
  width: 40%;
  height: 40%;
  line-height: 0 !important;
  opacity: 1 !important;
}

.slick-prev:before {
  content: url('data:image/svg+xml; utf8, <svg fill="black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" xml:space="preserve"><path d="M 10,50 L 60,100 L 65,95 L 20,50  L 65,5 L 60,0 Z"/></svg>') !important;
}

.slick-next:before {
  content: url('data:image/svg+xml; utf8, <svg fill="black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" xml:space="preserve"><path d="M 10,50 L 60,100 L 65,95 L 20,50  L 65,5 L 60,0 Z" transform="translate(100, 100) rotate(180)" /></svg>') !important;
  /*transform: rotate(180deg);*/
}

.wp-block-blockgallery-carousel .blockgallery:not(.has-margin) .blockgallery--item {
  margin-right: 5px !important;
  margin-left: 5px !important;
}

.blockgallery .blockgallery--figure {
  margin-right: 0px !important;
}
.blockgallery .blockgallery--figure {
  margin-left: 0px !important;
}


/* Birgitte  juni 2021 */
/* TABS + ARCHIVE MENU */


.wp-block-ub-tabbed-content {
	  margin: 0 0 0 !important;
}


.arhive-menu,
.wp-block-ub-tabbed-content .wp-block-ub-tabbed-content-tab-holder {
  margin-bottom: 1rem;
}

.arhive-menu,
.wp-block-ub-tabbed-content .wp-block-ub-tabbed-content-tab-title-wrap,
.wp-block-ub-tabbed-content .wp-block-ub-tabbed-content-tabs-title,
.wp-block-ub-tabbed-content .wp-block-ub-tabbed-content-tabs-content {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;


}

.arhive-menu,
.wp-block-ub-tabbed-content .wp-block-ub-tabbed-content-tabs-title {
  background-color: #f7fafc !important;
  overflow: visible !important;
  flex-wrap: wrap;

}

.wp-block-ub-tabbed-content-tabs-title:hover,
.wp-block-ub-tabbed-content-tabs-title:focus {
    overflow: visible !important;
}

.arhive-menu li a,
.wp-block-ub-tabbed-content .wp-block-ub-tabbed-content-tab-title-wrap .wp-block-ub-tabbed-content-tab-title {
  border: none !important;
  display: inline-block;
	border-top-right-radius: 0px;
	border-top-left-radius: 0px;
  padding: 1rem 2rem 1rem;
  color: #1a202c ;
	margin:0;
	position: relative;
	cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  /* birgitte@deo.dk  aug. 2021*/
 /* border-right: 1px solid #edf2f7 !important;
  border-bottom: 1px solid #edf2f7 !important;*/
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.wp-block-ub-tabbed-content .wp-block-ub-tabbed-content-tab-title-wrap:last-child:after {
  content: none;
}



.arhive-menu li a:after,
.wp-block-getwid-tabs .wp-block-getwid-tabs__nav-links .wp-block-getwid-tabs__nav-link a:after,
.wp-block-ub-tabbed-content .wp-block-ub-tabbed-content-tab-title:after {
  content: '';
  height: 4px;
  width: 0%;
  display: block;
  background-color: #2d3748 !important;
  margin-top: 2px;
  transition: width 0.2s ease-in-out, background-color 0.2s ease-in-out;
  position: absolute;
  top: -4px;
  left: 0;
}

.arhive-menu li a:hover:after,
.arhive-menu li a:focus:after,
.wp-block-getwid-tabs .wp-block-getwid-tabs__nav-links .wp-block-getwid-tabs__nav-link a:hover:after,
.wp-block-getwid-tabs .wp-block-getwid-tabs__nav-links .wp-block-getwid-tabs__nav-link a:focus:after,
.wp-block-getwid-tabs .wp-block-getwid-tabs__nav-links .wp-block-getwid-tabs__nav-link.ui-tabs-active a:after,
.wp-block-ub-tabbed-content .wp-block-ub-tabbed-content-tab-title-wrap.active .wp-block-ub-tabbed-content-tab-title:after,
.wp-block-ub-tabbed-content .wp-block-ub-tabbed-content-tab-title-wrap:hover .wp-block-ub-tabbed-content-tab-title:after {
  width:100% !important;
}


.darkbg-tabsmenu.wp-block-ub-tabbed-content .wp-block-ub-tabbed-content-tab-title-wrap {
	color: #f7fafc !important;
}

/*-------*/

.wp-block-getwid-tabs .wp-block-getwid-tabs__nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 !important;
  margin: 0 0 0px 0 !important;
  background-color: #f7fafc !important;
  margin-bottom: 1rem;
}

.wp-block-getwid-tabs .wp-block-getwid-tabs__nav-links .wp-block-getwid-tabs__nav-link {
  list-style: none !important;
  margin: 0 0 -1px 0 !important;
  border: none !important;
}

.wp-block-getwid-tabs .wp-block-getwid-tabs__nav-links .wp-block-getwid-tabs__nav-link a {
  border: none;
  display: inline-block;
	border-top-right-radius: 0px;
	border-top-left-radius: 0px;
  padding: 1rem 2rem 1rem;
  color: #1a202c ;
	margin:0;
	position: relative;
	cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  border-right: 1px solid #edf2f7 !important;
  border-bottom: 1px solid #edf2f7 !important;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.wp-block-getwid-tabs .wp-block-getwid-tabs__tab-content {
  border: none !important;
  padding: 1rem 0 0 !important;
}


/* CALL TO ACTION */

.gb-block-cta {
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    padding: 2.5em !important;
    border-radius: 0px !important;
    margin-bottom: 0 !important;
}


.gb-block-cta .gb-cta-title {
    margin-bottom: 1.5rem !important;
    line-height: 1.25 !important;
}

.gb-block-button .gb-button,
.gb-block-cta .gb-button {
		font-weight: 600 !important;
    padding: 1em 1.75em 1em !important;
}

.wp-block-genesis-blocks-gb-button.gb-block-button,
.gb-cta-button {
  margin-top: 2em;
}

.gb-cta-content {
  flex-grow: 1;
}



.gb-button-size-medium,
input[type="submit"].gb-button-size-medium {
    font-size: 18px !important;
}

/* AB BLOCK NOTICE */

.gb-block-notice {
    border-radius: 0px !important;
    position: relative;
    margin-bottom: 2em !important;
}

.gb-block-notice .gb-notice-title {
    font-weight: bold;
    padding: 1rem 2rem  !important;
    font-size: 18px !important;
    margin: 0;
    color: #fff;
    border-top-right-radius: 0px !important;
    border-top-left-radius: 0px !important;
    width: 100%;
    display: inline-block;
    line-height: 1.4;
}

.gb-block-notice .gb-notice-text {
    padding: 1.5rem 2rem 2rem !important;
    border: none !important;
    border-radius: 0px !important;
    background: #fff;
}

.gb-block-notice .gb-notice-dismiss {
    position: absolute;
    top: 18px !important;
    right: 15px;
    opacity: .8;
    padding: 0;
    background: none;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

/* SEARCH BAR */



#menu-searchbar-toggle {
 position: absolute;
 top: 100px;
 left: 0;
 width: 100%;
 z-index: 11;
 background: #e2e8f0;
 overflow: hidden;
 transition: height .5s ease;
 height: 101px;
 border-top: 1px solid #cbd5e0;
}

.admin-bar #menu-searchbar-toggle {
    top: 132px;
}

#checkBtn:checked ~ .menu-checkbtn-toggle > #search-icon-open,
.menu-checkbtn-toggle #search-icon-close,
#menu-searchbar-toggle,
#checkBtn {
  display: none;
}

#checkBtn:checked ~ #menu-searchbar-toggle,
#checkBtn:checked ~ .menu-checkbtn-toggle > #search-icon-close {
  display: block;
}

#menu-searchbar-toggle .search-form {
  margin: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}



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

	.menu-item .search-form {
		margin-top: 0;
	}

}

.search-form-input {
	padding: 10px 15px;
	font-size: 14px;
}

.search-form-input:focus {
	border-color: #ff483f;
}

.search-form-submit {
	border-radius: 0;
	background-color: #f7fafc;
	padding: 0 15px;
}

.search-icon {
	height: 16px;
}


.search-form-submit:hover .search-icon path {
	fill: white;
}

input, select, textarea {
    background-color: #f7fafc;
    border: 1px solid #f7fafc;
    color: #333;
    font-size: 18px;
    font-weight: 400;
    padding: 15px;
    width: 100%;
}


/* BLOCK STYLES
----------------------------*/

/* PARAGRAPH STYLES */

p.is-style-tight-leading {
  line-height: 1.4;
}



/* HEADING STYLES */




.is-style-underlined {
  padding: 1.5rem 0 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #cbd5e0;
  border-top: 1px solid #cbd5e0;
}

.is-style-underlined + .is-style-underlined {
  border-top: none;
  margin-top: -1.5rem;
}

.is-style-underlined:first-child {
  border-top: none;
  padding-top: 0;
}

p.is-style-underlined {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #cbd5e0;
}


.page .entry-title,
.section-label,
.icon-heading,
h1.is-style-label-underlined,
h2.is-style-label-underlined,
h3.is-style-label-underlined,
h4.is-style-label-underlined,
h5.is-style-label-underlined,
h6.is-style-label-underlined,
h1.is-style-label,
h2.is-style-label,
h3.is-style-label,
h4.is-style-label,
h5.is-style-label,
h6.is-style-label {
  text-transform: uppercase;
  letter-spacing: 0.025rem;
  line-height: 1.1;
  font-weight: 900 !important;
  margin-bottom: 60px;
}

.icon-heading-wrap a,
.icon-heading a {
  font-weight: 900 !important;
}


h1.is-style-label-underlined,
h2.is-style-label-underlined,
h3.is-style-label-underlined,
h4.is-style-label-underlined,
h5.is-style-label-underlined,
h6.is-style-label-underlined {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #cbd5e0;
}


.icon-heading-wrap {
  margin-bottom: 20px;
}

.archive .icon-heading-wrap {
  margin-bottom: 100px;
}

.post-grid-title,
h1.is-style-block-header,
h2.is-style-block-header,
h3.is-style-block-header,
h4.is-style-block-header,
h5.is-style-block-header,
h6.is-style-block-header {
  padding: 1rem 25px .9rem ;
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 16px;
  background: linear-gradient(to right, #f7fafc , #f7fafc );
  position: relative;
  overflow-x: auto;
}


.post-grid-title {
  padding: 0 0px 0 30px;
  margin-bottom: 1.5rem;
  margin-left: 0px;
  font-weight: 500;
  font-size: 20px;
  background: transparent;

}

.post-grid-title:before {
  /*content: url('data:image/svg+xml; utf8, <svg fill="black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" xml:space="preserve"><path d="M 10,50 L 60,100 L 65,95 L 20,50  L 65,5 L 60,0 Z" style="transform: translate(0px, 100px) rotate(-90deg)"/></svg>') !important;*/
  position: absolute;
  left:0;
  top:0;
  width: 15px;
  height: 15px;
  display: inline-block;
}

/* AB Columns (.is-style-alt removed) */

.wp-block-genesis-blocks-gb-columns .gb-block-layout-column {
    align-self: stretch !important;
}

.wp-block-genesis-blocks-gb-columns .gb-block-layout-column-inner {
    /* min-height: calc(100% - 3rem); */
    height: 100%;
}

/* AB Container */

.wp-block-genesis-blocks-gb-container.is-style-alt {
    padding: 2.5em;
}

/* AB CTA */

.gb-block-cta.is-style-alt {
  padding: 0 !important;
  background-color: transparent !important;
}

.gb-block-cta.is-style-alt2 {
  background-color: transparent !important;
}


/* AB TESTIMONIALS BOX */

.gb-block-testimonial {
    padding: 2rem !important;
    border-radius: 0px !important;
    margin-bottom: 1em !important;
    position: relative;
}

.gb-block-testimonial .gb-testimonial-text p {
  font-style: italic;
  text-indent: 45px;
  line-height: 1.5 !important;

}

.gb-block-testimonial .gb-testimonial-text:before {
  content: '“';
  font-size: 66px;
  position: absolute;
  left:10%;
  top:0px;
  font-weight: 700;
}

.gb-block-testimonial .gb-testimonial-name {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600 !important;
}


.gb-block-testimonial .gb-testimonial-info {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-top: 15px;
    min-height: auto !important;
    padding-top: 5px;
    line-height: 1.4;
}


/* SEPERATOR */

.entry-content hr.wp-block-separator {
  border: none;
  border-bottom: 1px solid currentColor;
  color: #cbd5e0 !important;
  margin-top: 2em;
  margin-bottom: 2em;
}



/* TABLE */

table {
  text-align: left;
}

tbody {
    border-bottom: none;
    font-size: 1rem;
    line-height: 1.5;
}

tfoot {
  font-size: .875rem;
}

tr {
    border-top: none;
    border-bottom: 2px solid #e2e8f0;
}

tfoot tr {
  border-top: 2px solid #e2e8f0;
}

tfoot tr:last-child,
tbody tr:last-child {
    border-bottom: none;
}


td, th {
    line-height: inherit !important;
    padding: 1rem 1.5rem 1.25rem;
    vertical-align: baseline;
}

th:first-child,
td:first-child {
    border-right: 2px solid #e2e8f0;
}

th {
    font-weight: 600;
}


/* TABLE STRIBES */


.wp-block-table.is-style-stripes tr {
    border: none;
    background-color: #edf2f7;
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    background-color: #f7fafc !important;
}


.wp-block-table.is-style-stripes tr th:first-child,
.wp-block-table.is-style-stripes tr td:first-child {
    border-right: 1px solid #e2e8f0;
}



/* TABLE REJSE PROGRAM */

.wp-block-table.is-style-alt table {
  margin-bottom: 0;
  background-color: #f7fafc;
}

.wp-block-table.is-style-alt {
  margin-bottom: 0;
   overflow-x: visible;
}

.wp-block-table.is-style-alt table tr {
    border-bottom: 2px solid #edf2f7;
	border-top: 2px solid #edf2f7;
	border-right: 2px solid #edf2f7;
	border-left: 2px solid #edf2f7;
}

.wp-block-table.is-style-alt th:first-child,
.wp-block-table.is-style-alt td:first-child {
    width: 20%;
    font-weight: 600;
    text-align: right;
    border-right: 2px solid #edf2f7;
}

.wp-block-table.is-style-alt tfoot td:first-child {
  font-weight: 400;
}

details > .gb-accordion-text table {
    margin-bottom: .5rem !important;
}


/* ACCORDION */

.gb-block-accordion {
    margin-bottom: 1.5rem !important;
    display: block;
}


.gb-block-accordion+.gb-block-accordion {
    margin-top: -1rem !important;
}

.is-style-alt3+.gb-block-accordion {
  margin-top: 0px !important;

}

details > summary {
    background: #f7fafc !important;
    padding: 1.25rem 2rem 1.2rem !important;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    cursor: pointer;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
    font-size: 16px;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


details > summary:focus,
details > summary:hover {
    background: #fff !important;
    outline: none !important;
}

details > .gb-accordion-text {
    padding: 2px 0 0px !important;
}


details > summary {
	user-select: none;
}

details > summary:after {
    content: url('data:image/svg+xml; utf8, <svg fill="black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve"><path d="M0,6c0-0.1,0-0.3,0.1-0.4c0.2-0.2,0.5-0.2,0.7,0l8.6,8.6l8.6-8.6c0.2-0.2,0.5-0.2,0.7,0s0.2,0.5,0,0.7l-9,9 c-0.2,0.2-0.5,0.2-0.7,0l-9-9C0,6.3,0,6.1,0,6L0,6z" style="transform: translate(0px, 0px)"/></svg>');
    height: 1rem;
    width: 1rem;
}

details[open] > summary:after {
  content: url('data:image/svg+xml; utf8, <svg fill="black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve"><path d="M0,15c0,0.1,0,0.3,0.1,0.4c0.2,0.2,0.5,0.2,0.7,0l8.6-8.6l8.6,8.6c0.2,0.2,0.5,0.2,0.7,0s0.2-0.5,0-0.7l-9-9 c-0.2-0.2-0.5-0.2-0.7,0l-9,9C0,14.7,0,14.9,0,15L0,15z" style="transform: translate(0px, 0px)"/></svg>');
  height: 1rem;
  width: 1rem;
}

summary::-webkit-details-marker {
		display: none;
	}





/* Gallery Billedtekster */

  .blocks-gallery-grid .blocks-gallery-image figcaption,
  .blocks-gallery-grid .blocks-gallery-item figcaption,
  .wp-block-gallery .blocks-gallery-image figcaption,
  .wp-block-gallery .blocks-gallery-item figcaption {
    bottom: 0;
    width: auto !important;
    padding: .75rem 1.25rem .7rem !important;
    color: #fff !important;
    text-align: left !important;
    background:rgb(26, 32, 44, 0.75) !important;
}


/* FORMS */

.quform.quform-theme-react {
  background-color: #f7fafc;
  padding: 3em;
}

.quform.quform-theme-react form {
  font-size: 16px;
  color: #2d3748;
}

.quform-theme-react .quform-field-captcha,
.quform-theme-react .quform-field-date,
.quform-theme-react .quform-field-email,
.quform-theme-react .quform-field-multiselect,
.quform-theme-react .quform-field-password,
.quform-theme-react .quform-field-select,
.quform-theme-react .quform-field-text,
.quform-theme-react .quform-field-textarea,
.quform-theme-react .quform-field-time,
.quform-theme-react.quform-timepicker.k-list-container.k-popup {
    background-color: transparent !important;
    border-color: #e2e8f0 !important;
    color: #2d3748 !important;
}

.quform-theme-react.select2-container--quform .select2-dropdown--below {
    border-color: #ff483f !important;
}

.quform-theme-react .quform-field-captcha,
.quform-theme-react .quform-field-date,
.quform-theme-react .quform-field-email,
.quform-theme-react .quform-field-file,
.quform-theme-react .quform-field-multiselect,
.quform-theme-react .quform-field-password,
.quform-theme-react .quform-field-text,
.quform-theme-react .quform-field-textarea,
.quform-theme-react .quform-field-time,
.quform-theme-react .select2-container--quform .select2-selection {
  padding-left: 15px !important;
  padding-right: 15px !important;
  font-size: 16px !important;
}

.quform-theme-react .quform-has-field-icon-left>.quform-field-captcha,
.quform-theme-react .quform-has-field-icon-left>.quform-field-date,
.quform-theme-react .quform-has-field-icon-left>.quform-field-email,
.quform-theme-react .quform-has-field-icon-left>.quform-field-password,
.quform-theme-react .quform-has-field-icon-left>.quform-field-text,
.quform-theme-react .quform-has-field-icon-left>.quform-field-textarea,
.quform-theme-react .quform-has-field-icon-left>.quform-field-time,
.quform-theme-react .quform-has-field-icon-left>span>span>.quform-field-date,
.quform-theme-react .quform-has-field-icon-left>span>span>.quform-field-time {
    padding-left: 35px !important;
}

.quform-theme-react .quform-field-captcha:hover,
.quform-theme-react .quform-field-date:hover,
.quform-theme-react .quform-field-email:hover,
.quform-theme-react .quform-field-multiselect:hover,
.quform-theme-react .quform-field-password:hover,
.quform-theme-react .quform-field-select:hover,
.quform-theme-react .quform-field-text:hover,
.quform-theme-react .quform-field-textarea:hover,
.quform-theme-react .quform-field-time:hover,
.quform-theme-react.quform-timepicker.k-list-container.k-popup:hover {
    border-color: #cbd5e0 !important;
    background-color: #edf2f7 !important;
}

.quform-theme-react .quform-field-captcha:active,
.quform-theme-react .quform-field-captcha:focus,
.quform-theme-react .quform-field-date:active,
.quform-theme-react .quform-field-date:focus,
.quform-theme-react .quform-field-email:active,
.quform-theme-react .quform-field-email:focus,
.quform-theme-react .quform-field-multiselect:active,
.quform-theme-react .quform-field-multiselect:focus,
.quform-theme-react .quform-field-password:active,
.quform-theme-react .quform-field-password:focus,
.quform-theme-react .quform-field-select:active,
.quform-theme-react .quform-field-select:focus,
.quform-theme-react .quform-field-text:active,
.quform-theme-react .quform-field-text:focus,
.quform-theme-react .quform-field-textarea:active,
.quform-theme-react .quform-field-textarea:focus,
.quform-theme-react .quform-field-time:active,
.quform-theme-react .quform-field-time:focus,
.quform-theme-react.quform-timepicker.k-list-container.k-popup {
  background-color: #edf2f7 !important;
    border-color: #ff483f !important;
}

.quform-theme-react .select2-container--quform .select2-selection:focus,
.quform-theme-react .select2-container--quform .select2-selection:active,
.quform-theme-react .select2-container--quform .select2-selection {
  background-color: #2d3748  !important;
  color: #fff !important;
}
.quform-theme-react .select2-container--below.select2-container--open .select2-selection,
.quform-theme-react .select2-container--quform .select2-selection:hover,
.quform-theme-react .select2-container--quform .select2-selection:hover {
  background-color: #ff483f  !important;

}

.quform-theme-react .select2-container--quform .select2-selection--multiple .select2-selection__rendered:before,
.quform-theme-react .select2-container--quform .select2-selection__arrow b,
.quform-theme-react.select2-container--quform .select2-search--dropdown:before {
  color: #fff !important;
}

.quform .select2-container--quform .select2-selection,
.quform .quform-field-select {
  font-size: 16px !important;
  font-weight: 700;
}


.quform-theme-react .quform-label > label > .quform-required {
    background-color: transparent !important;
}

.quform input[type=checkbox],
.quform input[type=radio] {
    vertical-align: baseline !important;
}

.quform .quform-label > label {
    margin-bottom: 3px;
    font-weight: 600;
    color: #2d3748 !important;
}

.quform-label > label > .quform-required {
    margin: 0 !important;
}

.quform-group-title {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .025em;
  margin: 1rem 0 2rem;
  padding-bottom: .5rem;
  border-bottom: 3px solid #ff483f !important;

}

.quform-element-group {
  padding: 0rem;
  margin-bottom: 1rem;
}




.quform-theme-react .quform-sub-label,
.quform-theme-react .quform-description {
    color: #718096 !important;
}

.quform .quform-button-submit-default button {
  border-radius: 0px;
  width: auto;
  padding: .75rem 2rem;
  font-size: 18px !important;
  background-color: #ff483f;
  color: #fff;
}


.quform-form-title-description {
  margin-bottom: 3rem;
}

.quform-form-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0.75em;
}



.quform-options-style-input-hidden .quform-option-label {
  display: flex !important;
  align-items: center;
  font-weight: 400;
}






.quform-options-style-input-hidden .quform-option {
  margin-bottom: 5px;
}

.quform-options-style-input-hidden .quform-option-label .quform-option-icon,
.quform-options-style-input-hidden .quform-option-label .quform-option-icon-selected {
  margin-right: 15px;
  font-size: 25px;
  height: 35px;
  width: 35px;
  line-height: 38px;
  background-color: #edf2f7;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;

}

.quform-options-style-input-hidden .quform-option-label:hover .quform-option-icon,
.quform-options-style-input-hidden .quform-option-label:hover .quform-option-icon-selected {
  background-color: #e2e8f0;
}

.quform-options-style-input-hidden .quform-option-label .quform-option-icon-selected {
  color:#f7fafc;
  background-color: #2d3748 !important;

}


.quform-options-style-input-hidden .quform-option-label .quform-option-icon {
  color:transparent;
}

.quform-theme-react .quform-responsive-elements-phone-landscape .quform-button-icon-above .quform-submit,
.quform-theme-react .quform-responsive-elements-phone-landscape .quform-button-icon-left .quform-submit,
.quform-theme-react .quform-responsive-elements-phone-landscape .quform-button-icon-right .quform-submit {
    padding-left: 15px !important;
    padding-right: 15px !important;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.quform-theme-react  .quform-responsive-elements-phone-landscape .quform-button-icon-above .quform-button-icon,
.quform-theme-react  .quform-responsive-elements-phone-landscape .quform-button-icon-left .quform-button-icon,
.quform-theme-react  .quform-responsive-elements-phone-landscape .quform-button-icon-right .quform-button-icon {
    font-size: 125% !important;
    padding: 2px;
}

.quform-theme-react .quform-label-inside > label {
  margin-bottom: 0;
}




/* DEO UNG Custom */


.is-style-ung-gradient,
.deoung_branding {
  background-image: radial-gradient( circle at 10% 50%,  rgb(0, 33, 118, 1) 0%, rgba(243,0,75,1) 100% );
}

.is-style-ung-red {
  	background-color: #f3004b !important;
	position: relative;
}

.is-style-ung-red:before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: inherit;
    opacity: .75;
    z-index: 1;
  	background-image: radial-gradient(farthest-corner at 10% 10%, #f3004b 0%, #ff483f 100%) !important;
}

.is-style-ung-gradient .icon-wrap,
.is-style-ung-red .icon-wrap {
  background-color: #fff !important;
}

.is-style-ung-gradient .icon-wrap svg,
.is-style-ung-red .icon-wrap svg {
  fill:  #f3004b !important;
}

.is-style-ung-red,
.is-style-ung-gradient,
.is-style-ung-gradient * {
  color: #fff;
}


.deoung_branding .btn {
  background-image: radial-gradient(farthest-corner at 10% 10%, #f3004b 0%, #ff483f 100%);
}

.deoung_branding .post-grid-title {
  color: #fff;
}

.deoung_branding .post-grid-title:before {
  content: url('data:image/svg+xml; utf8, <svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" xml:space="preserve"><path d="M 10,50 L 60,100 L 65,95 L 20,50  L 65,5 L 60,0 Z" style="transform: translate(0px, 100px) rotate(-90deg)"/></svg>') !important;
}

.deoung_branding .post-grid-info-icon {
  background-color:#f3004b;
  color: #f7fafc;
}


.post-grid-info-item:hover .post-grid-info-icon {
  color: #f7fafc;
}


.wp-block-getwid-images-slider,
.deoung-slider {
  margin-bottom: 2em;
}

.home .wp-block-getwid-content-slider,
.deoung-slider {
  margin-top: -1px;
}


.wp-block-getwid-content-slider .block-deo-flexbox {
 margin-bottom: 0;
}


.flexbox-slider-fullscreen .block-deo-flexbox {
  min-height: calc(100vh - 100px) !important;
  margin-bottom: 0;
}

.admin-bar .flexbox-slider-fullscreen .block-deo-flexbox {
  min-height: calc(100vh - 132px) !important;
  margin-bottom: 0;
}

.wp-block-getwid-content-slider.has-dots-inside .deo-flexbox-inner {
  padding-bottom: 3.5rem;
}

.wp-block-getwid-content-slider .slick-track {
  display: flex !important;
  align-items: stretch !important;
}

.wp-block-getwid-content-slider .wp-block-getwid-content-slider-slide {
  flex: 1 1 auto !important;
  height: auto;
}

.wp-block-getwid-content-slider .block-deo-flexbox,
.wp-block-getwid-content-slider .wp-block-getwid-content-slider-slide__wrapper {
  height: 100%;
}



/* MapBox */

.mapboxgl-map .mapboxgl-ctrl-group button:last-child,
.mapboxgl-map .mapboxgl-ctrl-group button:first-child {
  border-radius: 0;
}

.mapboxgl-map .mapboxgl-ctrl-top-right .mapboxgl-ctrl {
  margin: 10px 10px 0 0;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
}

.mapboxgl-map .mapboxgl-ctrl-group button {
  background-color: #fff;
  box-shadow: 0 0 3px 0px rgb(0 0 0 / 15%);
}

.mapboxgl-map .mapboxgl-ctrl button:not(:disabled):hover {
  background-color: #f5f5f5;
}

.mapboxgl-map .mapboxgl-ctrl-group button+button {
  border-top: none;
  margin-top: 1px;
}

.mapboxgl-map .map-wrapper {
  position: relative;
}


.map-btn {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
}


.deoung-map {
  height: 600px;
  width: 100%;
}

/* Marker tweaks */

.mapboxgl-ctrl-bottom-right,
.mapboxgl-ctrl-bottom-left,
.mapboxgl-popup-close-button {
  display: none;
}

.mapboxgl-popup .mapboxgl-popup-content {
  padding: 30px;
  width: 260px;
}

.mapboxgl-popup .mapboxgl-popup-content h5 {
  margin-bottom: 5px;
}

.mapboxgl-popup .mapboxgl-popup-content p {
  margin: 0;
}



/* OVERWRITES */



.entry-meta {
  text-transform: uppercase;
  font-size: 12px !important;
  color: #a0aec0;
  letter-spacing: .05em;
  margin-bottom: 20px !important;
  margin-top: 0px !important;
}
.type-bog .entry-content .entry-meta,
.type-ung .entry-content .entry-meta,
.type-rejse .entry-content .entry-meta,
.type-debatmoede .entry-content .entry-meta,
.type-note .entry-content .entry-meta,
.entry-footer .entry-meta {
  display: none;
}


.entry-meta a {
  font-weight: 600;
  color: #333;
}

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25em !important; }
.mb-2 { margin-bottom: 0.5em !important; }
.mb-3 { margin-bottom: 0.75em !important; }
.mb-4 { margin-bottom: 1em !important; }
.mb-6 { margin-bottom: 1.5em !important;}
.mb-8 { margin-bottom: 2em !important;}
.mb-10 { margin-bottom: 2.5em !important;}
.mb-12 { margin-bottom: 3em !important;}

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25em !important; }
.mt-2 { margin-top: 0.5em !important; }
.mt-3 { margin-top: 0.75em !important; }
.mt-4 { margin-top: 1em !important; }






/* SOME */

.widget.simple-social-icons ul li {
  margin: 0 8px 8px 0 !important;
}

.widget.simple-social-icons svg {
  vertical-align: baseline !important;
}


#dpsp-content-top {
  position: relative;
  float: left;
}

#dpsp-content-top .dpsp-networks-btns-wrapper {
  position: absolute;
  left: -80px;
  top: -30px;
}

#dpsp-content-bottom {
  padding: 0px 0px 10px;
  margin-top: 80px !important;
}


/* Page Title
--------------------------------------------- */

.page .entry-title {
  font-size: 18px;
}

.page .breadcrumb,
.page .breadcrumb a {
  color: #cbd5e0;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.page .breadcrumb a:hover {
  color: #2d3748;
}

.page .breadcrumb {
  border-bottom: none;
}


/* Page & Sidebar
--------------------------------------------- */

.sidebar-content .sidebar,
.sidebar-content .content {
  padding-top: 60px ;
  padding-bottom: 60px ;
}
.sidebar-content .site-inner {
  padding: 0px 30px;
}

@media only screen and (min-width: 960px) {
  .sidebar-content .sidebar {
      width: calc(17.5%);
  }
}

@media only screen and (min-width: 960px) {
  .sidebar-content .content {
      width: 82.5%;
      margin-right: 0%;
     /*border-left: 1px solid #cbd5e0;*/
      padding-left: 5%;
  }
}


/* Archive Pages
--------------------------------------------- */

.post-archive-header {
  border-bottom: 1px solid #e2e8f0;
}


.search-results.full-width-content .content,
.archive.full-width-content .content {
  width: 100%;
}


.archive-description {
  padding: 1.1rem 2rem 1rem;
  background-color: #f7fafc;
  margin-bottom: 1rem;
}

.archive-description .archive-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.5;
}

.archive-description + .arhive-menu {
  margin-top: -.5rem;
}


.archive-filter {
  margin-bottom: 15px;
}


.archive-description p {
  font-size: .875rem;
  color: #718096;
}

.blox-content-image .blox-image-wrap.blox-image-background {
  height: 160px !important;
}

.blox-content-image .blox-image-wrap.blox-image-background:after {
	content: '';
	position: absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background-color: #002176;
	opacity: .8;
}



/* Post Grid Pagination & Show Links
--------------------------------------------- */

.post-grid-show-links,
.archive-pagination ul,
.pagination {
  padding: 0 !important;
  margin: 1em 0 2em;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.post-grid-show-links {
  margin: 0 0 0;
}

 
.post-grid-show-links a,
.archive-pagination ul a,
.pagination .page-numbers {
  font-size: 16px;
  background-color: #f7fafc;
  margin-right: 2px;
  font-weight: 600;
  color: #2d3748;
  height: 50px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.post-grid-show-links a {
  margin-right: 0;
}

.pagination .page-numbers {
  width: 50px;
}

.post-grid-show-links a:hover,
.post-grid-show-links a:focus,
.pagination .current.page-numbers,
.pagination .page-numbers:hover {
  background-color: #fff;
  color: #2d3748;
}


/* birgitte
--------------------------------------------- */

.post-grid-show-linksny
{
  padding: 0 !important;
  margin: auto 0 0;
  display: flex;
  flex-direction: row;
  justify-content: left;
  
}

.post-grid-show-linksny a:hover
  {
  background-color:#f7fafc; ; 
   color: #ff483f;
 
   }
   
  .post-grid-show-linksny a
 {
  font-size: 16px;
  background-color: #e2e8f0;
  margin-right: 2px;
  font-weight: 600;
  color: #2d3748;
  height: 50px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 1em;
}



/* Lazy Loading
--------------------------------------------- */

.flickity-slider .blockgallery--item {
  background-color: #fff;
}

body.wp-admin

.flickity-slider .blockgallery--item figure,
.wp-post-image,
.flexbox-bg-img {
  opacity: 0 ;
}

body.wp-admin .flickity-slider .blockgallery--item figure,
body.wp-admin .wp-post-image,
body.wp-admin .flexbox-bg-img {
  opacity: 1 ;
}

/*

.flickity-slider .blockgallery--item figure:has(img.lazyloaded),
.wp-post-image.lazyloaded,
.flexbox-bg-img.lazyloaded {
  animation-name: lazyfade;
  animation-duration: 4s;
  opacity: 1;
}
*/
/*@keyframes lazyfade {
  from {opacity: 0;}
  to {opacity: 1;}
} 
*/

/* Cookie Consent
--------------------------------------------- */


#cookie-law-info-bar  {
  padding: 40px 60px !important;
  text-align: center !important;
  max-width: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border: none !important;
}

#cookie-law-info-bar .cli-bar-actions {
  margin-top: 20px;
}

#cookie-law-info-bar .cli-bar-btn_container .cli_action_button {
  font-weight: 600 !important;
  font-size: 17px !important;
}


#cookie-law-info-bar .wt-cli-custom-checkbox input[type="checkbox"] {
  border: 1px solid #fff;
  box-shadow: none;
  margin: -4px 6px 0 0;
}

#cookie-law-info-bar .wt-cli-custom-checkbox input[type=checkbox]:checked:before {
  border: solid #ff483f !important;
  border-width: 0 2px 2px 0 !important;
}



/* No Title Template
--------------------------------------------- */

.notitle-page .site-inner {
	clear: both;
	margin: 0 auto;
	padding: 0px 30px;
}


/* youtube iframe 
--------------------------------------------- */


.youtube-video-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.youtube-video-container::after {
  display: block;
  content: "";
  padding-top: 56.25%;
}

.youtube-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}