/*

Defines the different media queries

Can be inserted with:

@media screen and (max-width : 1600px) {
// 1600


}

@media screen and (max-width : 1279px) {
// 1279


}

@media screen and (max-width : 1023px) {
// 1023


}

@media screen and (max-width : 767px) {
// 767


}

@media screen and (max-width : 480px) {
// 480


}

@media screen and (max-width : 374px) {
// 374


}

*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: top;
}

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

body {
  line-height: 1;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Overordnet body stuff */
* {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body:before {
  width: 0;
}

.site-content {
  margin: 0;
  width: 100%;
  width: 100%;
}

figure {
  width: 100% !important;
  text-align: center;
}
figure img {
  max-height: 600px;
  max-width: 100%;
  width: auto;
  height: auto;
}

strong {
  font-weight: bold;
}

body {
  position: relative;
  color: #000000;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  min-height: 100%;
  width: 100%;
  float: left;
  margin: 0;
  background: #ffffff;
}

img {
  width: 100%;
  height: auto;
}

table {
  width: 100%;
  margin-bottom: 20px;
}

td {
  padding-right: 12px;
  padding-bottom: 6px;
}

.grey-bg {
  background: #f1f1f1;
}

:focus {
  outline: 0 !important;
}

#page {
  margin-top: 0px;
  text-align: left;
  display: block;
  float: left;
  width: 100%;
}

.screen-reader-text {
  height: 0;
  width: 0;
  overflow: hidden;
  position: absolute;
}

.panel-layout {
  width: 100%;
  display: block;
  float: left;
}

.overlay {
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(23, 19, 14, 0.25);
  padding: 8px;
}
.overlay-inner-border {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
}
.overlay--black-gradient-ttb {
  background-color: transparent;
  background-image: linear-gradient(to top, transparent, rgba(0, 0, 0, 0.25));
}
.overlay--black-gradient-rtl {
  background-color: transparent;
  background-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.25));
}
.overlay--black-gradient-btr {
  background-color: transparent;
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.25));
}
.overlay--black-gradient-ltr {
  background-color: transparent;
  background-image: linear-gradient(to left, transparent, rgba(0, 0, 0, 0.25));
}

html.js {
  margin-top: 0px !important;
}

.hidden {
  display: none !important;
}

.bold {
  font-weight: 600;
}

.underlined {
  text-decoration: underline;
}

.border-right {
  border-right: 1px solid #d9d9d9;
}

.border-left {
  border-left: 1px solid #d9d9d9;
}

.border-top {
  border-top: 1px solid #d9d9d9;
}

.border-bottom {
  border-bottom: 1px solid #d9d9d9;
}

.nomar {
  margin: 0 !important;
}
.nomar-top {
  margin-top: 0 !important;
}
.nomar-right {
  margin-right: 0 !important;
}
.nomar-bot {
  margin-bottom: 0 !important;
}
.nomar-left {
  margin-left: 0 !important;
}

.nopad {
  padding: 0 !important;
}
.nopad-top {
  padding-top: 0 !important;
}
.nopad-right {
  padding-right: 0 !important;
}
.nopad-bot {
  padding-bottom: 0 !important;
}
.nopad-left {
  padding-left: 0 !important;
}

.bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg-contain {
  background-size: contain;
}

.bgc-white, .bgc-fff {
  background: #ffffff;
}
.bgc-flowers {
  background: #eaebe5 url(https://sonnerupgaard.dk/wp-content/uploads/2018/05/bg-flowers.jpg) top center repeat-y;
}

.transform--center-center {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  float: left;
}
.transform--centerY {
  position: relative;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  float: left;
}

.jsTriggerXSmall, .jsTriggerSmall, .jsTriggerMedium, .jsTriggerLarge, .jsTriggerXLarge {
  position: absolute;
  top: -1000px;
  left: 50%;
  width: 1px;
  height: 1px;
  display: none;
}

.jsTriggerXLarge {
  display: block;
}

a {
  color: #07596f;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
  color: #000000;
}

/*
.arrow-link {
  &:after {
    transition: margin 0.2s ease;
    display: inline-block;
    content: "";
    margin-top: 0px;
    margin-left: 5px;
    height: 1em;
    width: 14px;
    background-image: url("https://sonnerupgaard.dk/wp-content/uploads/2019/07/link-arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
  }

  &:hover:after {
    background-image: url("https://sonnerupgaard.dk/wp-content/uploads/2019/07/link-arrow-hover.png");
    margin-left: 10px;
  }
}
*/
.link-white {
  color: #ffffff;
}
.link-grey {
  color: #999;
  text-decoration: underline;
}
.link-grey:hover, .link-grey:focus, .link-white:hover, .link-white:focus {
  color: #000000;
}

.a-name {
  width: 1px;
  height: 1px;
  display: block;
  clear: both;
  color: transparent;
  background-color: transparent;
}

.show-xl, .show-lg, .show-md, .show-sm, .show-xs {
  display: none !important;
}
.show-xl-inline-block, .show-xl-inline, .show-lg-inline-block, .show-lg-inline, .show-md-inline-block, .show-md-inline, .show-sm-inline-block, .show-sm-inline, .show-xs-inline-block, .show-xs-inline {
  display: none !important;
}

.show {
  display: block !important;
}

.hide {
  display: none !important;
}

.float-left {
  float: left;
}

.full-height {
  height: 100%;
}

.dib {
  display: inline-block;
}

.vat {
  vertical-align: top;
}

.vam {
  vertical-align: middle;
}

.vab {
  vertical-align: bottom;
}

.bg-blue {
  background: #739fba;
}
.bg-blue * {
  color: #ffffff;
}
.bg-red {
  background: #fd8374;
}
.bg-red * {
  color: #ffffff;
}
.bg-white, .bg-fff {
  background: #fff;
}
.bg-white *, .bg-fff * {
  color: #000000;
}

.clear::after {
  content: "";
  display: table;
  clear: both;
}

.negate-header-margin {
  margin-top: -75px;
}

label[button=label] {
  display: none;
}

label {
  font-weight: bold;
  font-size: 13px;
}

.so-panel {
  margin-bottom: 0 !important;
}

.relative {
  position: relative;
}

.dotted {
  border: 1px dashed #000000;
}

.marbot10 {
  margin-bottom: 10px;
}
.marbot20 {
  margin-bottom: 20px;
}
.marbot40 {
  margin-bottom: 40px;
}
.marbot60 {
  margin-bottom: 60px;
}

.disable-scroll {
  overflow: hidden;
}

@media screen and (max-width : 1600px) {
  .show-xl-inline {
    display: inline !important;
  }
  .show-xl-inline-block {
    display: inline-block !important;
  }

  .hide-xl {
    display: none !important;
  }
}
@media screen and (max-width : 1279px) {
  .show-lg {
    display: block !important;
  }
  .show-lg-inline {
    display: inline !important;
  }
  .show-lg-inline-block {
    display: inline-block !important;
  }

  .hide-lg {
    display: none !important;
  }

  .jsTriggerXLarge {
    display: none;
  }

  .jsTriggerLarge {
    display: block;
  }
}
@media screen and (max-width : 1023px) {
  .show-md {
    display: block !important;
  }
  .show-md-inline {
    display: inline !important;
  }
  .show-md-inline-block {
    display: inline-block !important;
  }

  .hide-md {
    display: none !important;
  }

  .jsTriggerLarge {
    display: none;
  }

  .jsTriggerMedium {
    display: block;
  }

  .float-right--md {
    float: right !important;
  }

  .marbot-md {
    margin-bottom: 25px !important;
  }

  .negate-header-margin {
    margin-top: -100px;
  }
}
@media screen and (max-width : 767px) {
  .show-sm {
    display: block !important;
  }
  .show-sm-inline {
    display: inline !important;
  }
  .show-sm-inline-block {
    display: inline-block !important;
  }

  .hide-sm {
    display: none !important;
  }

  .jsTriggerMedium {
    display: none;
  }

  .jsTriggerSmall {
    display: block;
  }

  .nomar-sm {
    margin: 0 !important;
  }
  .nomar-sm-top {
    margin-top: 0 !important;
  }
  .nomar-sm-right {
    margin-right: 0 !important;
  }
  .nomar-sm-bot {
    margin-bottom: 0 !important;
  }
  .nomar-sm-left {
    margin-left: 0 !important;
  }

  .nopad-sm {
    padding: 0 !important;
  }
  .nopad-sm-top {
    padding-top: 0 !important;
  }
  .nopad-sm-right {
    padding-right: 0 !important;
  }
  .nopad-sm-bot {
    padding-bottom: 0 !important;
  }
  .nopad-sm-left {
    padding-left: 0 !important;
  }

  .negate-header-margin {
    margin-top: -80px;
  }
}
@media screen and (max-width : 374px) {
  .show-xxs {
    display: block !important;
  }
  .show-xxs-inline {
    display: inline !important;
  }
  .show-xxs-inline-block {
    display: inline-block !important;
  }

  .hide-xxs {
    display: none;
  }

  .jsTriggerSmall {
    display: none;
  }

  .jsTriggerXSmall {
    display: block;
  }

  .show-xxs-inline {
    display: inline;
  }
}
/* Typography variables and statements */
.h0, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Playfair Display", "Times New Roman", Times, serif;
  position: relative;
  display: inline-block;
  width: 100%;
  word-wrap: break-word;
}

h1, .h1, .h0, h2, .h2 {
  font-weight: 900;
}

.h0 {
  line-height: normal;
  margin: 0;
  padding: 0;
  font-size: 60px;
}

h1, .h1 {
  font-size: 48px;
  line-height: 64px;
  margin-bottom: 20px;
}

h2, .h2 {
  font-size: 40px;
  line-height: 56px;
  margin-bottom: 20px;
}

h3, .h3 {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 20px;
  font-weight: 700;
}

h4, .h4 {
  font-size: 20px;
  line-height: 24px;
  font-weight: normal;
  margin-bottom: 5px;
  font-style: italic;
  font-family: "Playfair Display", "Times New Roman", Times, serif;
}

h5, .h5 {
  font-size: 16px;
  line-height: 20px;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}

h6, .h6 {
  font-size: 15px;
  line-height: 18px;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: #999;
}

p, ul, ol {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
}

a {
  font-size: inherit;
}

blockquote {
  display: inline-block;
  padding-left: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: "Playfair Display", "Times New Roman", Times, serif;
  margin-bottom: 20px;
  width: 100%;
  font-size: 20px;
  line-height: 1.7;
}
blockquote p {
  font-size: 20px;
}
blockquote p:last-child {
  margin-bottom: 0 !important;
}
blockquote.with-quotes {
  padding: 30px 40px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  position: relative;
  margin-top: 20px;
  margin-bottom: 40px;
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
}
blockquote.with-quotes p {
  font-size: 20px;
}
blockquote.with-quotes:after, blockquote.with-quotes:before {
  content: "";
  height: 35px;
  background: #fff;
  padding-left: 10px;
  padding-right: 10px;
  width: 35px;
  background-image: url(https://sonnerupgaard.dk/wp-content/uploads/2020/04/citationstegn_sort.png);
  background-position: center center;
  background-size: 35px;
  background-repeat: no-repeat;
  position: absolute;
}
blockquote.with-quotes:after {
  right: 10px;
  top: -20px;
}
blockquote.with-quotes:before {
  left: 10px;
  bottom: -20px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
blockquote.big-text, blockquote.highlighed-text {
  font-style: normal;
  font-weight: 500;
  padding: 30px 0px;
  width: 150%;
  text-align: center;
  margin-left: -25%;
  margin-right: -25%;
}
blockquote.big-text p, blockquote.highlighed-text p {
  font-size: 28px !important;
}
blockquote.highlighted-textbox {
  padding-top: 50px;
  padding-left: 185px;
  padding-bottom: 50px;
  padding-right: 30px;
  box-shadow: 0 0px 2px rgba(0, 0, 0, 0.2);
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  position: relative;
  font-size: 16px !important;
}
blockquote.highlighted-textbox p {
  font-size: 16px !important;
}
blockquote.highlighted-textbox .highlighted-textbox-img {
  position: absolute;
  left: 30px;
  top: 30px;
  height: 125px;
  width: 125px;
  margin-right: 15px;
  float: left;
  border-radius: 50%;
}
blockquote.featured-person {
  font-style: normal;
  padding: 0;
  box-shadow: 0 0px 2px rgba(0, 0, 0, 0.2);
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  position: relative;
}
blockquote.featured-person img {
  position: absolute;
  top: 30px;
  border-radius: 50%;
  left: 30px;
  height: 125px;
  width: 125px;
}
blockquote.featured-person .featured-person-tiny-title {
  position: absolute;
  top: 20px;
  right: 20px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}
blockquote.featured-person .featured-person-description {
  padding-top: 50px;
  padding-left: 185px;
  padding-bottom: 50px;
  padding-right: 30px;
  font-size: 16px;
}
blockquote.featured-person .featured-person-name {
  font-weight: bold;
  font-size: 20px;
}
blockquote.featured-person .featured-person-contact-info {
  width: 100%;
  float: left;
}
blockquote.featured-person .featured-person-contact-info .contact-info-col {
  width: 33.3333%;
  float: left;
  padding: 15px;
  background: #f7f5f1;
  text-align: center;
}
blockquote.featured-person .featured-person-contact-info .contact-info-col a {
  font-size: 16px;
}
blockquote.featured-person .featured-person-contact-info .contact-info-col:nth-child(2) {
  background: #31476a;
}
blockquote.featured-person .featured-person-contact-info .contact-info-col:nth-child(2) a {
  color: #fff !important;
}
blockquote.featured-person .featured-person-contact-info .contact-info-col:nth-child(2) a:hover {
  color: #000 !important;
}
blockquote.highlighted-excerpt, blockquote.left-border {
  border-left: 3px solid #000000;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
}
blockquote.highlighted-excerpt p, blockquote.left-border p {
  font-size: 16px;
}

.highlighted-text {
  padding: 30px;
}
.highlighted-text p {
  font-size: 1.5em;
  font-weight: bold;
}

.line-height-standard {
  line-height: 1.25em;
}
.line-height-larger {
  line-height: 1.5em;
}
.line-height-double {
  line-height: 2em;
}

.text-bold {
  font-weight: 500;
}
.text-large {
  font-size: 1.1em;
}
.text-larger {
  font-size: 1.2em;
}
.text-small {
  font-size: 0.9em;
}
.text-smaller {
  font-size: 0.8em;
}
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-gray {
  color: #999;
}
.text-grey {
  color: #999;
}
.text-italic {
  font-style: italic;
}
.text-white {
  color: #ffffff;
}
.text-black {
  color: #000000;
}
.text-capitalized {
  text-transform: uppercase;
}
.text-huge {
  font-size: 30px;
  line-height: 35px;
  font-weight: 900;
  margin-left: 5px;
  font-family: "Playfair Display", "Times New Roman", Times, serif;
}
.text-huge-container {
  line-height: 45px;
}
.text-green {
  color: #5e6251;
}
.text-pink {
  color: #e4bebd;
}
.text-blue {
  color: #07596f;
}
.text-brandblue {
  color: #31476a;
}

.bold, strong, b {
  font-weight: 600;
}

.italic, em, i {
  font-style: italic;
}

.normal {
  font-style: normal;
  font-weight: 400;
}

.uppercase {
  text-transform: uppercase;
}

.playfair {
  font-family: "Playfair Display", "Times New Roman", Times, serif;
}

.raleway {
  font-family: "Raleway", Helvetica, Arial, sans-serif;
}

.cursive {
  font-family: "Playfair Display", "Times New Roman", Times, serif;
}

.cursive-headline {
  font-size: 20px;
  line-height: 24px;
  font-weight: normal;
  margin-bottom: 5px;
  font-style: italic;
  font-family: "Playfair Display", "Times New Roman", Times, serif;
}

.tinymar {
  margin-bottom: 3px;
}

.tinylineheight {
  line-height: 1.1em;
}

.tinyspacing {
  line-height: 1em;
  margin-bottom: 10px;
}

.large-phone-number {
  line-height: 40px;
}
.large-phone-number a {
  line-height: 40px;
  font-size: 24px;
  margin-left: 5px;
}

.big-link {
  background: #fff;
  padding: 15px 22px;
  color: #000000;
  border-radius: 25px;
  font-size: 16px;
}

ul {
  list-style-type: disc;
}

ul, ol {
  padding-left: 30px;
}
ul li, ol li {
  padding-left: 5px;
}
ul li ul, ul li ol, ol li ul, ol li ol {
  margin-top: 10px;
  padding-left: 15px;
}

@media screen and (max-width : 1279px) {
  blockquote.big-text {
    width: 120%;
    margin-right: -10%;
    margin-left: -10%;
  }
  blockquote.featured-person .featured-person-contact-info .contact-info-col {
    width: 100%;
  }
}
@media screen and (max-width : 1023px) {
  blockquote.big-text {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (max-width : 767px) {
  .h0 {
    line-height: normal;
    margin: 0;
    padding: 0;
    font-size: 60px;
  }

  h1, .h1 {
    font-size: 40px;
    line-height: 56px;
  }

  h2, .h2 {
    font-size: 32px;
    line-height: 46px;
  }

  h3, .h3 {
    font-size: 24px;
    line-height: 30px;
  }

  h4, .h4 {
    font-size: 20px;
    line-height: 24px;
    font-weight: normal;
    margin-bottom: 5px;
    font-style: italic;
    font-family: "Playfair Display", "Times New Roman", Times, serif;
  }

  h5, .h5 {
    font-size: 16px;
    line-height: 20px;
  }

  h6, .h6 {
    font-size: 15px;
    line-height: 18px;
  }

  p, ul, ol {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .text-sm-bold {
    font-weight: 500;
  }
  .text-sm-large {
    font-size: 1.1em;
  }
  .text-sm-larger {
    font-size: 1.2em;
  }
  .text-sm-small {
    font-size: 0.9em;
  }
  .text-sm-smaller {
    font-size: 0.8em;
  }
  .text-sm-center {
    text-align: center !important;
  }
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-gray {
    color: #999;
  }
  .text-sm-grey {
    color: #999;
  }
  .text-sm-italic {
    font-style: italic;
  }
  .text-sm-white {
    color: #ffffff;
  }
  .text-sm-black {
    color: #000000;
  }
  .text-sm-capitalized {
    text-transform: uppercase;
  }
  .text-sm-huge {
    font-size: 30px;
    line-height: 35px;
    font-weight: 900;
    margin-left: 5px;
    font-family: "Playfair Display", "Times New Roman", Times, serif;
  }
  .text-sm-huge-container {
    line-height: 45px;
  }
  .text-sm-green {
    color: #5e6251;
  }
  .text-sm-pink {
    color: #e4bebd;
  }
  .text-sm-blue {
    color: #07596f;
  }
  .text-sm-brandblue {
    color: #31476a;
  }

  ul, ol {
    padding-left: 25px;
  }
  ul li ul, ul li ol, ol li ul, ol li ol {
    padding-left: 10px;
  }

  blockquote {
    padding-left: 15px;
  }
  blockquote.with-quotes {
    padding: 40px 20px;
  }
  blockquote.featured-person img {
    top: 30px;
    left: 20px;
  }
  blockquote.featured-person .featured-person-description {
    padding: 30px 20px;
    padding-top: 175px;
  }
  blockquote.highlighted-excerpt {
    border-left: 2px solid #000;
  }
  blockquote.highlighted-textbox {
    padding: 30px 20px;
    padding-top: 175px;
  }
  blockquote.highlighted-textbox .highlighted-textbox-img {
    left: 20px;
    top: 30px;
  }
}
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #000;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

.byline {
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.section {
  padding-top: 75px;
  padding-bottom: 75px;
  display: flex;
  justify-content: center;
}

.header {
  display: flex;
  justify-content: center;
}

.link-header {
  line-height: 40px;
  display: block;
  float: left;
  padding: 0 15px;
  border-right: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  border-right: 1px solid #aaa;
}
.link-header:first-child, .link-header:last-child {
  border-left: 1px solid #aaa;
}
.link-header:last-child {
  float: right;
}
.link-header:hover {
  background: #f1f1f1;
}
.link-header-mobile {
  display: block;
  float: left;
  width: 100%;
  padding: 15px 20px;
  text-align: center;
  border-bottom: 1px solid #aaa;
}

.container {
  width: 95%;
  max-width: 1600px;
}

.page-title {
  font-weight: 900;
  font-size: 48px;
}

.form-control {
  padding: 8px 12px;
  width: 250px;
  margin-bottom: 6px;
  border-radius: 2px;
  border: 1px solid #aaa;
}

.btn {
  background: #000;
  color: #fff;
  border: 2px solid #333;
  border-radius: 2px;
  padding: 6px 8px;
  font-size: 14px;
}

.table-inner-container {
  padding-left: 0;
}

.ovw {
  margin-bottom: 40px;
}
.ovw-ttl {
  font-weight: 900;
  font-size: 48px;
  line-height: 1.25;
}
.ovw--dates {
  margin-bottom: 0;
}
.ovw a {
  text-decoration: none !important;
}
.ovw .dept-cnt {
  padding-left: 100px;
  min-width: 1200px;
  border-top: 1px solid #aaa;
  border-right: 1px solid #aaa;
  border-left: 1px solid #aaa;
  position: relative;
}
.ovw .dept-cnt:last-child {
  border-bottom: 1px solid #aaa;
}
.ovw .dept-cnt-inner {
  border-left: 1px solid #aaa;
}
.ovw .dept-cnt-inner--dates {
  border-color: transparent;
}
.ovw .dept-cnt--dates {
  border-color: transparent;
  border-bottom: none !important;
  border-right: none !important;
}
.ovw .dept-ttl {
  transform: translate(-50%, -50%) rotate(-90deg);
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  text-transform: uppercase;
  top: 50%;
  left: 50px;
  position: absolute;
}
.ovw .ovw-tbl {
  table-layout: fixed;
  width: 100%;
  margin-bottom: 0px;
  border-left: 1px solid #e9e9e9;
}
.ovw .ovw-tbl--dates {
  border: 1px solid #999;
  border-bottom: none;
}
.ovw .ovw-td {
  height: 25px;
  padding-bottom: 3px;
  padding-right: 4px;
  padding-left: 4px;
}
.ovw .ovw-td:last-child {
  border-right: none;
}
.ovw .ovw-row {
  height: 20px;
}
.ovw .ovw-row:first-child .ovw-td {
  padding-top: 4px;
}
.ovw .ovw-row:last-child .ovw-td {
  padding-bottom: 4px;
}
.ovw .ovw-row--dates {
  height: auto;
}
.ovw .inv-row {
  height: auto;
}
.ovw .inv-capacity-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}
.ovw .inv-capacity-bar--green {
  background: green;
}
.ovw .inv-capacity-bar--orange {
  background: orange;
}
.ovw .inv-capacity-bar--red {
  background: red;
}
.ovw .inv-td {
  position: relative;
  text-align: center;
}
.ovw .inv-td--green {
  color: white;
}
.ovw th {
  font-size: 14px;
  text-align: center;
}
.ovw th:first-child {
  text-align: left;
}
.ovw tr {
  background: #fff;
}
.ovw .ovw-row:hover, .ovw .tbl-cnt:hover, .ovw .dept-cnt:hover {
  background: #f1f1f1;
}
.ovw .ovw-row--dates:hover, .ovw .tbl-cnt--dates:hover, .ovw .dept-cnt--dates:hover {
  background: #ffffff;
}
.ovw .ovw-td--date:hover {
  background: #ffffff;
}
.ovw .venue-booking, .ovw .room-booking, .ovw .material-booking {
  width: 100%;
  white-space: nowrap;
  background-color: #999;
  color: #fff;
  padding: 3px 6px;
  font-size: 12px;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid #e6194B;
  transition: all 0.1s ease;
  font-weight: bold;
  font-family: arial, sans-serif;
  position: relative;
  z-index: 1;
}
.ovw .venue-booking:hover, .ovw .room-booking:hover, .ovw .material-booking:hover {
  background-color: #888;
  border: 1px solid #c3153f;
}
.ovw .arrival .room-booking {
  margin-bottom: 3px;
}
.ovw .arrival:last-child .room-booking {
  margin-bottom: 0px;
}
.ovw tr:first-child td {
  border-top: none;
}
.ovw tr:last-child td {
  border-bottom: none;
}
.ovw a:last-child .venue-booking, .ovw a:last-child .room-booking {
  margin-bottom: 0px;
}
.ovw .green, .ovw .green-mini {
  background-color: #3cb44b;
  color: #ffffff;
  border: 1px solid #32973f;
}
.ovw .green:hover, .ovw .green-mini:hover {
  background-color: #32973f;
  border: 1px solid #1a4d20;
}
.ovw .yellow, .ovw .yellow-mini {
  background-color: #ffe119;
  color: #000000;
  border: 1px solid #f1d100;
}
.ovw .yellow:hover {
  background-color: #f1d100;
  border: 1px solid #8f7c00;
}
.ovw .blue, .ovw .blue-mini {
  background-color: #4363d8;
  color: #ffffff;
  border: 1px solid #2a4cca;
}
.ovw .blue:hover {
  background-color: #2a4cca;
  border: 1px solid #192e79;
}
.ovw .orange, .ovw .orange-mini {
  background-color: #f58231;
  color: #ffffff;
  border: 1px solid #f36b0c;
}
.ovw .orange:hover {
  background-color: #f36b0c;
  border: 1px solid #954207;
}
.ovw .purple, .ovw .purple-mini {
  background-color: #911eb4;
  color: #ffffff;
  border: 1px solid #761892;
}
.ovw .purple:hover {
  background-color: #761892;
  border: 1px solid #320a3e;
}
.ovw .cyan, .ovw .cyan-mini {
  background-color: #42d4f4;
  color: #000000;
  border: 1px solid #1dccf2;
}
.ovw .cyan:hover, .ovw .cyan-mini:hover {
  background-color: #1dccf2;
  border: 1px solid #0988a3;
}
.ovw .lime, .ovw .lime-mini {
  background-color: #bfef45;
  color: #000000;
  border: 1px solid #b3ec21;
}
.ovw .lime:hover {
  background-color: #b3ec21;
  border: 1px solid #759d0e;
}
.ovw .teal, .ovw .teal-mini {
  background-color: #469990;
  color: #ffffff;
  border: 1px solid #3a7e77;
}
.ovw .teal:hover {
  background-color: #3a7e77;
  border: 1px solid #1b3b37;
}
.ovw .lavender, .ovw .lavender-mini {
  background-color: #e6beff;
  color: #000000;
  border: 1px solid #d797ff;
}
.ovw .lavender:hover {
  background-color: #d797ff;
  border: 1px solid #b135ff;
}
.ovw .brown, .ovw .brown-mini {
  background-color: #9A6324;
  color: #ffffff;
  border: 1px solid #7a4f1d;
}
.ovw .brown:hover, .ovw .brown-mini:hover {
  background-color: #7a4f1d;
  border: 1px solid #2b1b0a;
}
.ovw .beige, .ovw .beige-mini {
  background-color: #fffac8;
  color: #000000;
  border: 1px solid #fff6a1;
}
.ovw .beige:hover {
  background-color: #fff6a1;
  border: 1px solid #ffee3f;
}
.ovw .mint, .ovw .mint-mini {
  background-color: #aaffc3;
  color: #000000;
  border: 1px solid #83ffa7;
}
.ovw .mint:hover {
  background-color: #83ffa7;
  border: 1px solid #21ff62;
}
.ovw .olive, .ovw .olive-mini {
  background-color: #808000;
  color: #ffffff;
  border: 1px solid #595900;
}
.ovw .olive:hover {
  background-color: #595900;
  border: 1px solid #0a0a00;
}
.ovw .apricot, .ovw .apricot-mini {
  background-color: #ffd8b1;
  color: #000000;
  border: 1px solid #ffc48a;
}
.ovw .apricot:hover {
  background-color: #ffc48a;
  border: 1px solid #ff9328;
}
.ovw .navy, .ovw .navy-mini {
  background-color: #000075;
  color: #ffffff;
  border: 1px solid #00004e;
}
.ovw .navy:hover {
  background-color: #00004e;
  border: 1px solid #000013;
}
.ovw .red, .ovw .red-mini {
  background-color: #e6194B;
  color: #ffffff;
  border: 1px solid #c3153f;
}
.ovw .red:hover {
  background-color: #c3153f;
  border: 1px solid #6a0c23;
}
.ovw .grey, .ovw .grey-mini {
  background-color: #f3f3f3;
  color: #000000;
  border: 1px solid #dfdfdf;
}
.ovw .grey:hover {
  background-color: #dfdfdf;
  border: 1px solid #a5a5a5;
}
.ovw .grey, .ovw .grey-mini {
  background-color: #f3f3f3;
  color: #000000;
  border: 1px solid #dfdfdf;
}
.ovw .grey:hover {
  background-color: #dfdfdf;
  border: 1px solid #a5a5a5;
}
.ovw .frokost {
  background-color: #ABB487;
  border: 1px solid #929d63;
}
.ovw .frokost:hover {
  background-color: #87925b;
  border: 1px solid #656d44;
}
.ovw * {
  box-sizing: border-box;
}
.ovw table {
  overflow: hidden;
}
.ovw td, .ovw th {
  position: relative;
  overflow: visible;
}
.ovw th {
  background-color: #fff;
  border-bottom: none;
}
.ovw td:hover::before {
  background-color: #eee !important;
  content: "";
  height: 100%;
  left: -5000px;
  position: absolute;
  top: 0;
  width: 10000px;
  z-index: -2;
}
.ovw td:hover::after {
  background-color: #ffa;
  content: "";
  height: 10000px;
  left: 0;
  position: absolute;
  top: -5000px;
  width: 100%;
  z-index: -1;
}
.ovw .date-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: none;
}
.ovw .date-header .container th {
  border-top: none;
  border-bottom: none;
}
.ovw .date-header .table-inner-container {
  border-top: none;
}
.ovw .highlighted {
  background: #f1f1f1;
}
.ovw .show-header {
  display: block !important;
}
.ovw .extra-info {
  font-size: 11px;
  text-align: left;
  padding: 2px 3px;
  padding-left: 6px;
  font-weight: bold;
  position: relative;
  z-index: 0;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  margin-top: -1px;
  white-space: nowrap;
  overflow: hidden;
}
.ovw .remove-left-padding {
  padding-left: 0;
}
.ovw .remove-right-padding {
  padding-right: 0;
}
.ovw .remove-left-border-and-rounding {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-left: none !important;
}
.ovw .remove-right-border-and-rounding {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-right: none !important;
}

.tbl-cnt {
  padding-left: 175px;
  position: relative;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px;
  background: #fff;
  border-bottom: 1px solid #e9e9e9;
}
.tbl-cnt:last-child {
  border-bottom: none;
}

.tbl-has-double .tbl-ttl {
  background: red !important;
  color: #fff !important;
}
.tbl-has-double .tbl-ttl .room-type {
  color: #fff !important;
}

.tbl-ttl {
  position: absolute;
  width: 175px;
  height: 100%;
  vertical-align: middle;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  padding: 0 20px;
}

.capacity-container {
  border: 1px solid #aaa;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px;
}
.capacity-container td {
  text-align: center;
}

.room-type {
  color: #777777;
  font-size: 12px;
  line-height: 20px;
  margin-left: 10px;
}

.ovw--capacity .ovw-td {
  border-right: 1px solid #e9e9e9;
}

.dividers {
  left: 175px;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  display: flex;
}
.dividers div {
  border-right: 1px solid #e9e9e9;
  height: 100%;
  width: 100%;
}
.dividers div:last-child {
  border-right: none;
}

@media screen and (max-width : 1279px) {
  .ovw-ttl {
    font-size: 36px;
  }
  .ovw .dept-cnt {
    padding-left: 60px;
  }
  .ovw .dept-ttl {
    left: 30px;
  }

  .tbl-cnt {
    padding-left: 130px;
  }

  .dividers {
    left: 130px;
  }

  .tbl-ttl {
    font-size: 13px;
    width: 130px;
  }
}
@media screen and (max-width : 767px) {
  .ovw-ttl {
    font-size: 30px;
  }
}
.wl {
  font-family: "Arial", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
.wl-th {
  padding-bottom: 5px;
  padding-top: 5px;
  font-weight: 600;
}
.wl-td:first-child, .wl-th:first-child {
  padding-left: 10px;
}
.wl-td:last-child, .wl-th:last-child {
  padding-right: 10px;
}
.wl-td-pt {
  padding-top: 10px;
}
.wl-seperator {
  border-top: 1px solid #999;
}
.wl-seperator:first-child {
  border: none;
}
.wl-seperator td {
  padding-top: 5px;
}
.wl-row-padding td {
  padding-top: 10px;
}
.wl .sum-border {
  border-top: 1px solid #ddd;
  padding-top: 4px;
}
.wl-date-row {
  border-top: 1px solid #aaa;
}
.wl-date-row:first-child {
  border-top: none;
}

.form-textarea {
  width: 100%;
  height: 80px;
}
.form-btn {
  background: #31476a;
  padding: 10px;
  color: white;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
}
.form-btn:hover {
  background: #25354f;
}

.login-background {
  width: 100vw;
  height: 100vh;
  background-image: url("/images/login-background.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-enter {
  padding: 30px;
  border-radius: 5px;
  background-color: #fff;
  width: 95%;
  max-width: 350px;
  flex-grow: 0;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
}
.login-input {
  width: 100%;
}
.login-btn {
  width: 100%;
  background: #31476a;
  padding: 10px;
  color: white;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
}

#menu-burger {
  width: 100%;
  padding: 15px 20px;
  text-align: center;
  background: #f1f1f1;
  border-bottom: 1px solid #aaa;
}

@media print {
  .no-print, .no-print * {
    display: none !important;
  }
}

/*# sourceMappingURL=styles.css.map */
