/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary variables that control standard elements
in the pages. This is also the file that loads all of the other themed CSS
styleshets into just this one in each of themed templates.
*********************************************************************************
****************************************************************************** */











































/* ******************************************************************************
*********************************************************************************
The intention of this file is to reset most of the different browser, built-in
CSS styles, so that it is an empty canvas for the themed specific stylesheets.
*********************************************************************************
****************************************************************************** */

*, *:before, *:after {
  box-sizing: border-box;
}
/* ******************************************************************************
*********************************************************************************
The intention of this file is to makes browsers render all elements more
consistently and in line with modern standards.
It precisely targets only the styles that need normalizing.
*********************************************************************************
****************************************************************************** */


/*! 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.
*/

/* 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.
*/

/* Grouping content
========================================================================== */

/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
* 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; /* 1 */
  font-size: 1em; /* 2 */
}

/* 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; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
* 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; /* 1 */
  font-size: 1em; /* 2 */
}

/**
* 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 {
  max-width: 100%;
  height: auto;
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}

/* 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; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/

button,
input { /* 1 */
  overflow: visible;
}

/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/

button,
select { /* 1 */
  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; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
* 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; /* 1 */
  padding: 0; /* 2 */
}

/**
* 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; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
* 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; /* 1 */
  font: inherit; /* 2 */
}

/* 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;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
Drag and Drop (DND) sections look when editing content in the page editor.
*********************************************************************************
****************************************************************************** */

.body-container-wrapper {
  max-width: 1750px;
  margin: 0 auto;
}
.page_center,
.dnd-section > .row-fluid {}


@media (max-width: 1300px) {

  .page_center,
  .dnd-section > .row-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }

}

.dnd-section > .row-fluid {
  margin-left: auto;
  margin-right: auto;
}

.dnd-section .widget-type-cell {
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 767px) {

  .dnd-section .widget-type-cell {
    padding-left: 0px;
    padding-right: 0px;
  }

}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */

html {}

body {
  line-height: 1;
}

.body-container-wrapper {
  line-height: 1.55;
}

a {
  text-decoration: none;
}

/* Highlighted Text */
/* Highlighted Text */
::-moz-selection {
  color: #fff;
  background: #39F;
  text-shadow: none;
}
::selection {
  color: #fff;
  background: #39F;
  text-shadow: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 15px 0;
  line-height: 1.25;
}

strong {
  font-weight: 700;
}
code {
  vertical-align: bottom;
}

blockquote {
  line-height: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 2px solid #A9A9A9;
  padding-left: 15px;
}

/* Horizontal Rules */
hr {
  color: #ccc;
  background-color: #ccc;
  height: 1px;
  border: none;
}

/* TODO */
small {}

/* TODO */
mark {}

sup,
sub {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your forms looks
throughout your site. Styles for form fields, buttons, inputs, etc.
*********************************************************************************
****************************************************************************** */

form {
  max-width: 700px;
  /*border: 1px solid;*/
}

@media (max-width: 767px) {

  form {
    max-width: 100%;
  }

}

.body-container-wrapper form {
  margin-bottom: 30px;
}


h3.form-title {
  font-size: 38px;
  line-height: 1;
}

.hs-form-field > label,
.field > label {
  display: block;
  margin-bottom: 4px;
}

input[type="text"],
input[type="password"], 
input[type="datetime"], 
input[type="datetime-local"], 
input[type="date"],
input[type="month"], 
input[type="time"], 
input[type="week"], 
input[type="number"],
input[type="email"], 
input[type="url"], 
input[type="search"],
input[type="tel"], 
input[type="color"], 
input[type="file"],
textarea, 
select {
  width: 100%;
  outline: 0;
  border: 1px solid;
  font-family: Arial,Verdana,san-serif;
  font-size: 16px;
  padding: 8px 6px;
  line-height: 22px;
}

input[type="text"]:focus,
input[type="password"]:focus, 
input[type="datetime"]:focus, 
input[type="datetime-local"]:focus, 
input[type="date"]:focus,
input[type="month"]:focus, 
input[type="time"]:focus, 
input[type="week"]:focus, 
input[type="number"]:focus,
input[type="email"]:focus, 
input[type="url"]:focus, 
input[type="search"]:focus,
input[type="tel"]:focus, 
input[type="color"]:focus, 
input[type="file"]:focus,
textarea:focus, 
select:focus {

}

.hs-input[type=checkbox],
.hs-input[type=radio] {
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
}

.hs-input[type=file] {
  background-color: #fff;
  padding: initial;
  border: initial;
  line-height: initial;
  box-shadow: none;
}

.hs-input:-moz-placeholder {}

.hs-input::-webkit-input-placeholder {}

.hs-input input,
.hs-input textarea {
  transition: border 0.2s linear;
}
.hs-input:focus {
  outline: none;
  border-color: rgba(82, 168, 236, 0.8);
}

textarea.hs-input {
  height: auto;
}

select[multiple].hs-input {
  height: inherit;
}

.hs-button,
input[type="submit"],
input[type="button"] {
  cursor: pointer;
  -webkit-appearance: none;
  text-decoration: none !important;
  display: inline-block;
  margin: 15px 0;
  outline: 0;
  white-space: normal;
  border: 0 solid;
  line-height: 22px;
  font-size: 22px;
  font-weight: normal;
  font-family: Arial;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hs-button.primary:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.hs-button.primary:focus,
input[type="submit"]:focus,
input[type="button"]:focus {

}

.hs-button.primary:active,
input[type="submit"]:active,
input[type="button"]:active {

}

ul.hs-error-msgs {
  margin-top: 10px;
  margin-bottom: 10px;
}

.hs-error-msgs label {
  color: #f00;
  line-height: 22px;
}

.submitted-message {
  overflow: visible !important;
}

/* Force single column fields to full width inside of fieldsets */
fieldset.form-columns-1 .hs-input:not([type=radio]):not([type=checkbox]) {
  width: 100% !important;
}

input.hs-input.error,
div.field.error input,
div.field.error textarea,
div.field.error .chzn-choices,
textarea.hs-input.error,
select.hs-input.error {
  border-color: #c87872;
}
input.hs-input.error:focus,
div.field.error input:focus,
div.field.error textarea:focus,
div.field.error .chzn-choices:focus,
textarea.hs-input.error:focus,
select.hs-input.error:focus {
  border-color: #b9554d;
}

.actions {
  padding: 0;
}

.inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 0;
}
.inputs-list > li {
  display: block;
  padding: 0;
  width: 100%;
  padding-top: 0;
}
.inputs-list label {
  display: block;
  float: none;
  width: auto;
  padding: 0;
  text-align: left;
  white-space: normal;
}
.inputs-list:first-child {
  padding-top: 6px;
}
.inputs-list > li + li {
  padding-top: 2px;
}
.inputs-list label > input,
.inputs-list label > span {
  vertical-align: middle;
}

ul.no-list {
  list-style: none;
}

.field {
  margin-bottom: 18px;
}

.hs-field-desc {
  color: #7c98b6;
  margin: 0px 0px 6px;
  font-size: 14px;
}

.hs-form-required {
  color: red;
}

.hs-richtext {
  margin-bottom: 3px;
  line-height: 1.2;
  font-size: 1rem;
  color: #494a52;
}
.hs-richtext hr {
  text-align: left;
  margin-left: 0;
  width: 91%;
}

.grecaptcha-badge {
  margin: 0 auto;
}

.email-correction, .email-validation {
  padding-top: 3px;
  font-size: 12px;
}
.email-correction a,
.email-validation a {
  cursor: pointer;
}

@media (max-width: 400px),
  (min-device-width: 320px) and (max-device-width: 480px) {
    .email-correction form .form-columns-2 .hs-form-field,
    .email-correction form .form-columns-3 .hs-form-field,
    .email-validation form .form-columns-2 .hs-form-field,
    .email-validation form .form-columns-3 .hs-form-field {
      float: none;
      width: 100%;
    }
    .email-correction form .form-columns-2 .hs-form-field .hs-input,
    .email-correction form .form-columns-3 .hs-form-field .hs-input,
    .email-validation form .form-columns-2 .hs-form-field .hs-input,
    .email-validation form .form-columns-3 .hs-form-field .hs-input {
      width: 90%;
    }
    .email-correction form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-2 .hs-form-field input[type=radio],
    .email-correction form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-3 .hs-form-field input[type=radio],
    .email-validation form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-2 .hs-form-field input[type=radio],
    .email-validation form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-3 .hs-form-field input[type=radio] {
      width: 24px;
    }
}

.hs-button,
.hs-form-field input[type=text],
.hs-form-field input[type=email],
.hs-form-field input[type=phone],
.hs-form-field input[type=number],
.hs-form-field input[type=tel],
.hs-form-field input[type=date],
.hs-form-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.hs-default-font-element,
.hs-main-font-element {
  font-family: Lato, serif;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
menu items appear, including the link and hover effects.
*********************************************************************************
****************************************************************************** */
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
tables look throughout your site.
*********************************************************************************
****************************************************************************** */

table {
  margin-bottom: 1rem;
  border: 1px solid #dee2e6;
}

th,
td {
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #dee2e6;
}

thead th,
thead td {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
  border-bottom-width: 2px;
}

thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

tbody + tbody {
  border-top: 2px solid #dee2e6;
}

/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */

.custom_footer_lp div.footerContactDetails div.contactDetail div.contactDetailsInfo {
  border-bottom: 0;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your headers look
when it comes to the logo, search field, language switcher and navigation.
You will also find the mobile menu styles below.
*********************************************************************************
****************************************************************************** */

.header_container_wrapper {
  position: relative;
  z-index: 100;
  margin: 0 auto;
  max-width: 1750px;
  border-bottom: 4px solid #00afd3;
}
.custom_header {
  margin: 0 auto 0;
  position: relative;
  width: 100%;
  max-width: 950px;
  z-index: 100;
}
.header__container {
  max-width: 100% !important;
}
.header_logo {
  padding: 19px 0px 8px 0px;
}
.header_logo ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header_logo ul li {
  display: block;
  width: 102px;
  height: 101px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0px;
}
.header_logo ul li a img {
  width: 100% !important;
}



div.itineraryBasket {
  position: absolute;
  top: 127px;
  right: 120px;
  height: auto;
  z-index: 100;
  width: 345px;
}
div.itineraryBasket > a {
  background: url(https://7149395.fs1.hubspotusercontent-na1.net/hubfs/7149395/Sognefjord_April_2020/Images/icon_bag_blue.png) no-repeat scroll 118px 5px #fff;
  float: right;
  width: 180px;
  background-position: 148px 5px;
  padding: 0 10px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #002b45;
}
div.itineraryBasket > a:hover {

}
div.itineraryBasket > a > h2 {
  color: #031d71;
  font-family: Arial,Verdana,san-serif;
  font-size: 16px;
  height: 22px;
  line-height: 22px;
  margin: 2px 0 3px;
  padding: 3px 0;
  text-align: left;
}
div.itineraryBasket > a:hover > h2 {
  color: #002b45;
}
div.itineraryBasket > a > h2 .Count {
  color: #002b45;
  font-size: 19px;
  font-weight: bold;
  padding: 0 6px;
  position: absolute;
  right: 33px;
  top: 6px;
  display: none;
}
div.itineraryBasket > a:hover > h2 .Count {
  color: #002b45;
}
div.itineraryBasket div.EmptyMsg {
  background: none repeat scroll 0 0 #ececec;
  display: none;
  padding: 10px;
  clear: both;
  border: 7px solid #fff;
  border-bottom: 0;
  box-sizing: border-box;
  width: 345px;
}
div.itineraryBasket div.EmptyMsg > p {
  font-size: 16px;
  margin: 0 0 10px 0;
  line-height: 26px;
}
div.itineraryBasket div.EmptyMsg > p > img {
  vertical-align: middle;
}
div.itineraryBasket p.link {
  margin: 0;
  font-size: 16px;
  line-height: 22px;
  background: none repeat scroll 0 0 #ececec;
  display: none;
  float: left;
  padding: 0;
  position: relative;
  top: -10px;
  width: 345px;
  z-index: 10000;
  border: 7px solid #fff;
  border-top: 0;
  box-sizing: border-box;
}
div.itineraryBasket p.link > a {
  float: left;
  margin: 0 2px 0 10px;
  padding: 5px 0;
}



div.languageSelector {
  float: right;
  overflow: visible;
  position: absolute;
  right: 12px;
  top: 135px;
  z-index: 10000;
}
div.languageSelector div.separator_no div.currentLang {
  cursor: pointer;
  float: left;
}
div.languageSelector div.separator_no div.currentLang > h3 {
  margin: 0;
  background: url(https://7149395.fs1.hubspotusercontent-na1.net/hubfs/7149395/Sognefjord_April_2020/Images/arrow_lang_select_top.png) no-repeat scroll 31px 5px transparent;
  color: #031d71;
  font-family: Arial,Verdana,san-serif;
  font-size: 18px;
  padding: 0 24px 0 0;
  text-transform: uppercase;
  line-height: 1;
}
div.languageSelector div.separator_no div.currentLang:hover>h3 {
  color: #01afd3;
}

div.languageSelector div.separator_no > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background: none repeat scroll 0 0 #fff;
  display: none;
  float: right;
  position: absolute;
  right: 0;
  top: 27px;
  width: 47px;
  z-index: 10;
}
div.languageSelector div.separator_no > ul > li {
  padding: 0 6px 8px;
}
div.languageSelector div.separator_no > ul > li:hover {
  background: #01afd3;
}
div.languageSelector div.separator_no > ul > li > h3 {
  color: #3a3b3f;
  font-size: 25px;
  padding: 0;
  margin: 0;
  font-family: Arial,Verdana,san-serif;
  line-height: 1;
}
div.languageSelector div.separator_no > ul > li > h3 > a {
  color: #2d2d2d;
  font-size: 18px;
  font-family: Arial,Verdana,san-serif;
}
div.languageSelector div.separator_no > ul > li:hover > h3 > a {
  color: #fff;
}



div.siteSearch {
  background: none repeat scroll 0 0 #dddddf;
  border-radius: 4px;
  bottom: 0;
  height: 35px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  width: 250px;
}
div.siteSearch form.SearchSite {
  height: 35px;
  padding: 0 10px;
}
div.siteSearch form.SearchSite div.form {
  font-size: 16px;
  line-height: 22px;
  padding: 0;
  margin: 0;
}
div.siteSearch form.SearchSite div.form span.field {
  display: block;
  height: 35px;
  width: 155px;
}
div.siteSearch form.SearchSite div.form span.field > input {
  background: #dddddf;
  border-radius: 4px;
  border: none;
  vertical-align: middle;
  font-family: Arial,Verdana,san-serif;
  font-size: 18px;
  width: 188px;
  padding: 0;
  height: 35px;
  color: #000;
  line-height: normal;
}
div.siteSearch form.SearchSite div.form span.field > input::-webkit-input-placeholder {
  color: #000;
}
div.siteSearch form.SearchSite div.form span.field > input:-moz-placeholder {
  color: #000;
}
div.siteSearch form.SearchSite div.form span.field > input::-moz-placeholder {
  color: #000;
}
div.siteSearch form.SearchSite div.form span.field > input:-ms-input-placeholder {
  color: #000;
}
div.siteSearch form.SearchSite div.form span.field > input:focus {
  /*outline: 1px dotted #f1f3f5;*/
}


div.dropdownmenu {
  cursor: pointer;
  display: none;
  height: 40px;
  margin: 0 0 0 18px;
  overflow: hidden;
  width: 40px;
}




@media (min-width: 877px) {

  div.siteSearch {
    width: 250px !important;
  }

  div.siteSearch form.SearchSite div.form span.field {
    width: 250px;
  }

  div.siteSearch form.SearchSite div.form span.field > input {
    width: 250px;
  }

}

@media (min-width: 915px) {

  div.siteSearch {
    overflow: visible;
  }

}


@media (min-width: 1450px) {

  .custom_header {
    max-width: 1240px;
  }

}


@media (max-width: 994px) {

  .custom_header {
    width: auto;
    max-width: 100%;
    margin: 0 20px;
  }

}


@media (max-width: 920px) {

  .header_container_wrapper {
    max-width: 100%;
    border-bottom: none;
  }

  .custom_header {
    max-width: 100%;
    margin: 0;
    padding: 0 0 12px 0;
  }

  .header_logo {
    padding: 19px 0 3px 20px;
  }

  div.itineraryBasket {
    right: 95px;
    display: none;
  }

  div.languageSelector {
    right: 20px;
  }

  div.siteSearch {
    right: 10px;
    top: 124px;
    width: 200px;
  }

  div.dropdownmenu {
    display: block;
  }

  div.dropdownmenu > img {
    width: 40px;
    margin: 0 0 0 0;
  }

}


@media (max-width: 350px) {

  div.siteSearch {
    width: 155px;
  }

}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */

.custom_footer {}
.footer__container {
  max-width: 100% !important;
}

div#columnBotWrapper {
  background: none repeat scroll 0 0 #fff;
  border-top: 1px solid #ccc;
  margin: 0 auto;
  max-width: 1750px;
  width: 100%;
}
div#columnBotWrapper div#columnBot {
  margin: 0 auto;
  position: relative;
  max-width: 950px;
}
div.navigationUtility {
  margin: 5px 15px 0 0;
  width: 522px;
  float: left;
}
div.navigationUtility > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
div.navigationUtility > ul > li {
  float: left;
  font-size: 16px;
  height: 25px;
  padding: 10px 0 10px;
  margin: 0 15px 0 0;
}
div.navigationUtility > ul > li > a {
  color: #012b44;
  height: 28px;
  padding: 0 32px 0 0;
  position: relative;
  top: 1px;
}
div.navigationUtility > ul > li > a:hover {
  color: #607a9b;
}
div.navigationUtility > ul > li.UtilityEmail > a {
  background: url(https://7149395.fs1.hubspotusercontent-na1.net/hubfs/7149395/Sognefjord_April_2020/Images/icon_email.png) no-repeat scroll right center #fff;
}
div.navigationUtility > ul > li.Newsletter > a {
  background: url(https://7149395.fs1.hubspotusercontent-na1.net/hubfs/7149395/Sognefjord_April_2020/Images/icon_enewsletter.png) no-repeat scroll right center #fff;
}


div.languageSelectorFooter {
  cursor: pointer;
  display: block;
  float: right;
  margin: 0;
  padding: 14px 0 14px 43px;
  top: 0;
  z-index: 100;
  position: relative;
}
div.languageSelectorFooter div.separator_no {
  cursor: pointer;
}
div.languageSelectorFooter div.separator_no div.currentLang {
  float: left;
}
div.languageSelectorFooter div.separator_no div.currentLang > h3 {
  margin: 0;
  background: url(https://7149395.fs1.hubspotusercontent-na1.net/hubfs/7149395/Sognefjord_April_2020/Images/arrow_lang_select_footer.png) no-repeat scroll 31px 8px transparent;
  font-size: 16px;
  padding: 0 24px 0 0;
  text-transform: uppercase;
  color: #012b44;
  font-family: Arial,Verdana,san-serif;
  line-height: 22px;
}
div.languageSelectorFooter div.separator_no > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background: none repeat scroll 0 0 #fff;
  display: none;
  float: right;
  position: absolute;
  right: 0;
  top: 50px;
  width: 69px;
  z-index: 10;
}
div.languageSelectorFooter div.separator_no > ul > li {
  list-style: none;
  background: #fff;
  border-bottom: 1px solid #cacaca;
  border-right: 1px solid #cacaca;
  border-left: 1px solid #cacaca;
  padding: 12px 20px 12px 10px;
  cursor: pointer;
  font-size: 18px;
  text-align: right;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
div.languageSelectorFooter div.separator_no > ul > li:hover {
  background: #ececec;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
div.languageSelectorFooter div.separator_no > ul > li > h3 {
  margin: 0;
  font-family: Arial,Verdana,san-serif;
  line-height: 22px;
  font-size: 16px;
  color: #3a3b3f;
}
div.languageSelectorFooter div.separator_no > ul > li > h3 > a {
  color: #012b44;
  font-size: 16px;
}
div.languageSelectorFooter div.separator_no > ul > li:hover > h3 > a {
  color: #000;
}


div.ChannelSiteDropdown {
  background: url(https://7149395.fs1.hubspotusercontent-na1.net/hubfs/7149395/Sognefjord_April_2020/Images/arrow_lang_select_footer.png) no-repeat scroll 83px 22px #fff;
  border-right: 1px solid #ccc;
  cursor: pointer;
  display: block;
  float: right;
  left: 20px;
  margin: 0;
  padding: 14px 45px 14px 0;
  top: 0;
  z-index: 10;
  position: relative;
}
div.ChannelSiteDropdown > span {
  width: 100%;
}
div.ChannelSiteDropdown > span > p {
  margin: 0;
  font-size: 16px;
  padding: 0 13px 0 0;
  line-height: 22px;
}
div.NavChannelSitesDropdown {
  border-top: 1px solid #cacaca;
  top: 50px;
  z-index: 1000;
  right: 0;
  display: none;
  position: absolute;
}
div.NavChannelSitesDropdown > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 153px;
} 
div.NavChannelSitesDropdown > ul > li {
  list-style: none;
  background: #fff;
  border-bottom: 1px solid #cacaca;
  border-right: 1px solid #cacaca;
  border-left: 1px solid #cacaca;
  padding: 12px 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
div.NavChannelSitesDropdown > ul > li:hover {
  background: #00afd3;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
div.NavChannelSitesDropdown > ul > li > a {
  color: #012b44;
  font-size: 16px;
} 
div.NavChannelSitesDropdown > ul > li:hover > a {
  color: #3a3b3f;
}

div#footerExploreWrapper {
  float: left;
  position: relative;
  width: 100%;
}
div#footerExploreWrapper div#footerExplore {
  max-width: 1240px;
  margin: 39px auto 10px;
}
div.footerContactDetails {
  float: left;
  width: 227px;
  margin: 0 36px 50px 0;
}
div.footerContactDetails div.contactDetail.contactDetail {
  margin: 0 0 48px 0;
}
div#footerExploreWrapper .navtitle h3 {
  font-family: Arial,Verdana,san-serif;
  font-size: 16px;
  text-transform: uppercase;
  margin: 0 0 15px 0;
  line-height: 1;
}
div.footerContactDetails div.contactDetail div.contactDetailsInfo {
  margin: 0 0 20px 0;
  border-bottom: 1px solid #fff;
  padding: 0 0 20px 0;
}
div.footerContactDetails div.contactDetail div.contactDetailsInfo p {
  margin: 0;
  line-height: 22px;
  font-size: 16px;
}
div.footerContactDetails div.contactDetail div.contactDetailsInfo p a,
div.footerContactDetails div.contactDetail div.contactLinks p a {
  font-family: Arial,Verdana,san-serif;
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 8px;
}
div.footerContactDetails div.contactDetail div.contactLinks p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
}


div.footerNav {
  float: left;
  width: 205px;
  margin: 0 36px 0 0;
}
div.footerNav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
div.footerNav ul > li {
  float: left;
  font-family: Arial,Verdana,san-serif;
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 8px;
  width: 100%;
}
div.footerNav ul > li > a {
}


div.footerTouristInformation {
  float: left;
  width: 227px;
  margin: 0 36px 50px 0;
}
div.footerTouristInformation div.touristInfo div.touristStatement {
  margin: 0 0 20px 0;
}
div.footerTouristInformation div.touristInfo p {
  margin: 0;
  font-size: 16px;
  line-height: 22px;
}
div.footerTouristInformation div.touristInfo p a {
  font-family: Arial,Verdana,san-serif;
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 8px;
}

div#footerWrapper {
  background: #fff;
  float: left;
  position: relative;
  width: 100%;
}
div#footerWrapper div#footer {
  position: relative;
  max-width: 950px;
  margin: 20px auto 20px;
}
div.copyright {
  float: left;
  width: 100%;
  margin: 0 0 20px 0;
}
div.copyright img.footerLogo {
  height: auto;
  display: block;
  width: auto;
}
div.copyright p {
  float: left;
  margin: 6px 0 0 0;
  font-size: 16px;
  clear: both;
  line-height: 22px;
}



@media (min-width: 1450px) {

  div#columnBotWrapper div#columnBot {
    max-width: 1240px;
  }

  div.footerTouristInformation {
    margin: 0 125px 50px 0;
  }

  div#footerWrapper div#footer {
    max-width: 1240px;
  }

  div.footerContactDetails {
    margin: 0 125px 50px 0;
  }

  div.footerNav {
    margin: 0 125px 0 0;
  }

}

@media (max-width: 1449px) {

  div#footerExploreWrapper div#footerExplore {
    max-width: 950px;
  }
}


@media (max-width: 994px) {

  div#columnBotWrapper {
    width: auto;
    max-width: 100%;
  }

  div.navigationUtility {
    width: 60%;
  }

  div#columnBotWrapper div#columnBot {
    margin: 0 20px 0;
  }

  div#footerExploreWrapper div#footerExplore {
    max-width: auto;
    margin: 16px 20px 16px;
  }

  div.footerContactDetails {
    margin: 0 14px 50px 0;
    width: 205px;
  }

  div#footerWrapper div#footer {
    max-width: none;
    margin: 20px 20px 20px;
  }

  div.footerNav {
    margin: 0 14px 0 0;
  }


}


@media (max-width: 994px) {

  div.footerTouristInformation {
    margin: 0 14px 50px 0;
    width: 205px;
  }

}


@media (max-width: 920px) {

  div.footerContactDetails {
    margin: 0 0 20px 0;
    width: 33%;
    padding: 0 10px 0 0;
    box-sizing: border-box;
  }

  div.footerContactDetails div.contactDetail div.contactDetailsInfo {
    max-width: 210px;
  }

  div.footerNav {
    width: 33%;
    padding: 0 10px 0 0;
    box-sizing: border-box;
    margin: 0 0 20px 0;
  }

  div.footerTouristInformation {
    margin: 0 0 20px 0;
    width: 33%;
    padding: 0 10px 0 0;
    box-sizing: border-box;
  }

  div.ChannelSiteDropdown {
    border: 0;
  }

}

@media (max-width: 767px) {

  div#columnBotWrapper {
    max-width: 100%;
  }

  div#columnBotWrapper div#columnBot {
    margin: 60px 20px 0;
  }

}


@media (max-width: 767px) {

  div.navigationUtility {
    margin: 30px 0 10px 0;
    width: 100%;
  }

  div.ChannelSiteDropdown {
    float: left;
    left: 0;
  }

  div.footerContactDetails {
    float: left;
    margin: 0 0 10px;
    width: 100% !important;
    padding: 0;
  }

  div.footerContactDetails div.contactDetail.contactDetail {
    margin: 0 0 20px 0;
  }

  div.footerContactDetails div.contactDetail div.contactDetailsInfo {
    max-width: 100%;
  }

  div.footerNav {
    float: left;
    margin: 0 0 20px;
    width: 100% !important;
    padding: 0;
  }

  div.footerTouristInformation {
    float: left;
    margin: 0 0 50px;
    width: 100% !important;
    padding: 0;
  }


}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles for your blog. The styles included
are for the listing and post templates, featured images and pagination.
Also for the post meta infromation like tags, author and published date
*********************************************************************************
****************************************************************************** */

/* TODO: Find a better place for this */
.content-wrapper {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

.blog-header {
  background-color: transparent;
  text-align: center;
  padding: 0 30px;
}

.blog-header__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 3.3rem 0;
}
.blog-header__title {
  font-size: 2rem;
}
.blog-header__subtitle {
  margin: 1rem 0 2rem;
}

.blog-header__form {
  margin: 0 1rem;
}

@media screen and (min-width: 768px) {
  .blog-header__form {
    width: 500px;
    margin: 0 auto;
  }
}

.blog-index {
  display: flex;
  flex-wrap: wrap;
  padding: 3.3rem 0;
}
.blog-index:after {
  content: "";
  flex: auto;
}
.blog-index__tag-header {
  flex: 1 0 100%;
  padding: 1rem;
}
.blog-index__tag-subtitle {
  font-size: 1.16rem;
  line-height: 1.1;
}
.blog-index__tag-heading {
  padding-bottom: 1rem;
  border-bottom: 3px solid #D1D6DC;
}
.blog-index__post {
  flex:  0 0 100%;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .blog-index__post {
    flex:  0 0 calc(100%/2);
  }
}
@media screen and (min-width: 1000px) {
  .blog-index__post {
    flex:  0 0 calc(100%/3);
  }
}
@media screen and (min-width: 768px) {
  .blog-index__post--large {
    flex: 1 0 100%;
    display: flex;
    justify-items: space-between;
  }
}
.blog-index__post-image {
  display: block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 63%;
  background-image: url('./images/grayscale-mountain.png');
    }
@media screen and (min-width: 768px) {
  .blog-index__post-image--large {
    flex: 1 1 100%;
    padding-bottom: 0;
  }
  .no-image .blog-index__post-image--large {
    display: none;
  }
  .blog-index__post-content--large {
    flex: 1 1 100%;
    padding-left: 2rem;
  }
  .blog-index__post-image--large {
    flex: 1 1 48%;
  }
  .blog-index__post-content--large {
    flex: 1 1 48%;
    padding-left: 2rem;
  }
  .no-image .blog-index__post-content--large {
    padding-left: 0;
  }

}
.blog-index__post-content h2 {
  margin: .5rem 0;
}
.blog-index__post-content--small h2 {
  font-size: 1.25rem;
}
.blog-index__post-content p {
}
.blog-index__post-content a {
  color: #494a52;
}
.blog-index__post img {
  max-width: 100%;
  height: auto;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: Lato, sans-serif;
  margin-bottom: 3.3rem;
}
.blog-pagination__link {
  display: inline-flex;
  padding: .25rem .4rem;
  margin: 0 .1rem;
  color: #494a52;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
  border-radius: 7px;
}
.blog-pagination__link--active {
  border: 2px solid #B0C1D4;
}
.blog-pagination__link:hover,
.blog-pagination__link:focus {
  text-decoration: none;
}
.blog-pagination__prev-link,
.blog-pagination__next-link {
  display: inline-flex;
  align-items: center;
}
.blog-pagination__prev-link {
  text-align: right;
  margin-right: .25rem;
}
.blog-pagination__next-link {
  text-align: left;
  margin-left: .25rem;
}
.blog-pagination__prev-link--disabled,
.blog-pagination__next-link--disabled {
  color: #B0C1D4;
  pointer-events: none;
  cursor: default;
}
.blog-pagination__prev-link svg,
.blog-pagination__next-link svg {
  fill: #494a52;
  margin: 0 5px;
}
.blog-pagination__prev-link--disabled svg,
.blog-pagination__next-link--disabled svg {
  fill: #B0C1D4;
}
.blog-pagination__number-link:hover,
.blog-pagination__number-link:focus {
  border: 2px solid #B0C1D4;
}

.blog-header__author-avatar {
  height: 200px;
  width: 200px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  box-shadow: 0 0 12px 0 rgba(0,0,0,0.15);
  margin: 0 auto 1.5rem;
}
.blog-header__author-social-links a {
  display: inline-block;
  position: relative;
  background-color: #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0 5px;
}
.blog-header__author-social-links a:hover {
  background-color: #494a52;
}
.blog-header__author-social-links svg {
  fill: #fff;
  height: 15px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-post {
  max-width: 960px;
  margin: 0 auto;
  padding: 3.3rem 0;
}
.blog-post h1 {
  font-size: 1.6rem;
}
.blog-post__meta {
  margin: 1rem 0;
}
.blog-post__meta a {
  color: #494a52;
  text-decoration: underline;
  display: inline-block;
  margin-bottom: 10px;
}

.blog-post__tags {
  font-family: Lato, sans-serif;
  color: #000;
}
.blog-post__tags svg {
  width: 15px;
  height: auto;
  margin-right: 10px;
}
.blog-post__tag-link {
  font-size: .8rem;
  color: #000;
}

.blog-recent-posts {
  margin-top: 3rem;
  background-color: transparent;
  padding: 2rem 0;
}
.blog-recent-posts h2 {
  text-align: center;
}
.blog-recent-posts__list {
  display: flex;
  flex-wrap: wrap;
}
.blog-recent-posts__post {
  display: block;
  flex:  0 0 100%;
  color: #494a52;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .blog-recent-posts__post {
    flex:  0 0 calc(100%/2);
  }
}
@media screen and (min-width: 1000px) {
  .blog-recent-posts__post {
    flex:  0 0 calc(100%/3);
  }
}
.blog-recent-posts__post:hover {
  text-decoration: none;
}
.blog-recent-posts__image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 63%;
}
.blog-recent-posts__title {
  margin: 1rem 0 .5rem;
}

.blog-comments {
  max-width: 960px;
  margin: 0 auto;
}
.section.post-footer {
  max-width: 700px;
}
.blog-comments form {
  max-width: 100%;
}
.blog-comments .hs-submit {
  text-align: center;
}
.blog-comments .hs-button {
  background-color: transparent;
  border: 2px solid #494A52;
  color: #494A52;
}
.blog-comments .hs-button:hover {
  background-color: #494A52;
  color: #fff;
}
.blog-comments .comment-reply-to {
  border: 0 none;
}
.blog-comments .comment-reply-to:hover {
  background-color: transparent;
  text-decoration: underline;
  color: #494A52;
}


/*             Blog Listing with Sidebar            */
.post-item .page-center{
  display: -webkit-flex; /* Safari */
  display: flex; /* Standard syntax */
  margin-bottom: 20px;
}
.post-item .page-center .span4, .post-item .page-center .span8 {
  -webkit-flex: 1; /* Safari */
  -ms-flex: 1; /* IE 10 */
  flex: 1; /* Standard syntax */
}
.post-item .page-center .span8 {
  flex-basis: 31.914893614%;

}
img.featured-image {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
}

.grecaptcha-badge {
  margin: 0 !important;
}

.blog-comments .hs-submit {
  text-align: left;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
system pages look. These pages include the error pages (404 and 500),
password protected content and search listing results.
*********************************************************************************
****************************************************************************** */

.error-page {
  padding: 10rem 0;
  text-align: center;
  position: relative;
}
.error-page:before {
  content: attr(data-error);
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: Lato, sans-serif;
  font-size: 40vw;
  font-weight: bold;
  color: #F3F6F9;
  z-index: -1;
}
@media screen and (min-width: 1100px) {
  .error-page:before {
    font-size: 20rem;
  }
}
.error-page_heading {
  margin-bottom: 1rem;
}

.systems-page {
  padding: 3rem 20px;
}
.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  width: 100%;
  max-width: 650px;
  background-color: #cde3cc;
  border: 1.5px solid #4f7d24;
  border-radius: 6px;
  font-size: .75rem;
  color: #4f7d24;
  padding: .1rem .75rem;
}


.hs-search-results {
  margin-top: 2rem;
}
ul.hs-search-results__listing li {
  margin-bottom: 2rem;
}
.hs-search-results__title {
  font-family: Merriweather, serif;
  font-size: 1.25rem;
  color: #494a52;
  text-decoration: underline;
  margin-bottom: .25rem;
}
.hs-search-results__title:hover {
  text-decoration: none;
}
.hs-search-results__description {
  padding-top: .5rem;
}
.hs-search-highlight {
  font-weight: bold;
}
.hs-search-results__pagination a {
  color: #494a52;
}

.hs_cos_wrapper_type_password_prompt input[type="password"] {
  height: auto !important;
  margin: 0 !important;
}

.hs_cos_wrapper_type_email_simple_subscription input[type="email"] {
  width: 100% !important;
}

.hs_cos_wrapper_type_email_subscriptions h1,
.hs_cos_wrapper_type_email_subscriptions h2 {
  font-size: 30px;
}

@media (max-width: 479px) {

  .hs_cos_wrapper_type_email_subscriptions_confirmation h2 {
    font-size: 28px;
  }

  .hs_cos_wrapper_type_email_subscriptions h1,
  .hs_cos_wrapper_type_email_subscriptions h2 {
    font-size: 25px;
  }

}