p, h1, h2, table, tr, td, th, div, img, label {
  border: 0px solid blue;
}

table, th, td {
  border: 0px solid black;
  margin: 0px;
  padding: 0px;
}


/* ===============================
** COLORS AND FONT SIZE
================================== */

@font-face {
    /* https://freefontsfamily.com/graphik-font-free-download/ */
    font-family: GraphikRegular;
    src: url("/static/fonts/GraphikRegular.otf") format("opentype");
}
@font-face {
    /* https://freefontsfamily.com/graphik-font-free-download/ */
    font-family: GraphikMedium;
    src: url("/static/fonts/GraphikMedium.otf") format("opentype");
}


:root {

    --col-main-d3:#020c15;
    --col-main-d2:#0a2f54;
    --col-main-d1:#145ea8;
    --col-main-n:#1976D2;
    --col-main-l1:#5e9fe0;
    --col-main-l2:#a3c8ed ;
    --col-main-l3: #e8f1fb;

    --col-main-n-translucent:rgb(31, 96, 161, 0.5);

    /* Greys, darkest on top */
    --col-greys-d3: #191919;
    --col-greys-d2: #424242;
    --col-greys-d1: #6A6A6A;
    --col-greys-n: #939393;
    --col-greys-l1: #BBBCBC;
    --col-greys-l2: #E4E5E5;
    --col-greys-l3: #F8F9F9;

    --col-background: #ebebeb;


    --col-green: #2ECC71;
    --col-green-dark: #4ab578;
    --col-medium-green: #8ce6b3;
    --col-light-green: #D5F5E3;
    
    --col-red: #E74C3C;
    --col-red-dark: #b51b1b;
    --col-medium-red: #f09d95;
    --col-light-red: #FADBD8;

    --col-orange: #e7943c;
    --col-orange-dark: #b55e1b;
    --col-medium-orange: #f09d95;
    --col-light-orange: #fae7d8;


    --col-yellow-badge: #FFD54F;
    --col-yellow-flag: #ffe44a;
    --col-yellow-light: #f7efa6;

    --col-marina-main: #FFF176;
    --col-marina-border: #8c864c;
    --col-natural_harbour-main: #2ECC71;
    --col-natural_harbour-border: #1D8348;


    /* sizes */
    /*--font-size-xxl: 2.2em;*/
    --font-size-xl: 2.2em;
    --font-size-l: 1.6em;
    --font-size-m: 1.2em;
    --font-size-s: 0.85em;
    --font-size-xs: 0.65em;
    --font-size-xxs: 0.5em;
    --font-size-xxxs: 0.42em;
}



/* ===============================
** FONTS
================================== */

h1, h2, h3, p, a, table, input, li, .style-as-p {
    font-family: 'GraphikRegular', 'Arial', sans-serif;
    font-weight: 100;
    line-height: 1.7em;
    letter-spacing: 0.005em;
    text-align: left;
    color:var(--col-main-d3);
    text-decoration: none;
    margin: 0px;
    padding: 0px;
}



h1, h2 {
    font-size:var(--font-size-xl);
    font-weight: 300; letter-spacing: 0.02em; font-family: 'GraphikMedium', 'Arial', sans-serif;
    line-height: 1.2em;
    padding-bottom: 0px;
}

h3 {
    font-size:var(--font-size-l);
    font-weight: 300; letter-spacing: 0.02em; font-family: 'GraphikMedium', 'Arial', sans-serif;
    padding-bottom: 5px;
}


a, p, li, .style-as-p {
    font-weight: 300;
    padding-bottom: 0px;
}

a:hover {
    color: var(--col-main-d1);
}

a, .brand-color, .style-as-href {
  color: var(--col-main-d1);
  cursor: pointer;
}

.href-no-styling, .href-no-styling:hover {
  color:var(--col-main-d3);
  text-decoration: none;

}

p.logofont {
    padding: 0px;
    margin: 0px;
    font-weight: 300;
    letter-spacing: 1.3px;
    line-height: 1em;
    color: white;
}

a.no-underline {
    text-decoration: none;
}

.serif {
  font-family: serif;
}


b {font-weight: 500; letter-spacing: 0.02em; font-family: 'GraphikMedium', 'Arial', sans-serif;}
.thick       {font-weight: 300; letter-spacing: 0.02em; font-family: 'GraphikMedium', 'Arial', sans-serif;}
.thin        {font-weight: 300;}
.underline  {text-decoration: underline;}
.span-underline {border-bottom: 2px solid var(--col-main-n)}


.xxlarge      {font-size:var(--font-size-xxl);}
.xlarge      {font-size:var(--font-size-xl);}
.large       {font-size:var(--font-size-l);}
.regular     {font-size:var(--font-size-m);}
.small       {font-size:var(--font-size-s);}
.xsmall       {font-size:var(--font-size-xs);}
.xxsmall       {font-size:var(--font-size-xxs);}
.xxxsmall       {font-size:var(--font-size-xxxs);}
.white      {color: white;}


.center      {text-align: center;}
.left        {text-align: left;}
.right       {text-align: right;}
.nobreak     {white-space: nowrap;}

.spacer { margin: 30px 0px 10px }

.clr-light {color:var(--col-greys-n);}
.clr-brand {color:var(--col-main-n);}


.dot-habour-type {
    height: 15px; 
    width: 15px; 
    border-radius: 50%; 
    display: inline-block; 
    margin-right: 5px; 
}



.dot-marina {
    background-color: var(--col-marina-main); 
    border: 2px solid var(--col-marina-border);
}

.dot-natural_harbour {
    background-color: var(--col-natural_harbour-main); 
    border: 2px solid var(--col-natural_harbour-border);
}






.rotate {
     -moz-transform: rotate(-90.0deg);  /* FF3.5+ */
       -o-transform: rotate(-90.0deg);  /* Opera 10.5 */
  -webkit-transform: rotate(-90.0deg);  /* Saf3.1+, Chrome */
             filter:  progid:DXImageTransform.Microsoft.BasicImage(rotation=0.083);  /* IE6,IE7 */
         -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0.083)"; /* IE8 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.spacing {padding: 30px 0px;}
.spacing-before {padding-top: 40px;}

.cap-with-dots {
    overflow: hidden; 
    white-space: nowrap; 
    text-overflow: ellipsis;
}


.text-box {
  padding: 4px 13px;
  margin: 2px 4px;
  background-color: var(--col-main-l2);
  border-radius: 5px;
  white-space:nowrap;
  line-height: 2em;
}


.no-padding-margin {
  padding: 0px;
  margin: 0px;
}

/* ===============================
** FLASHED MESSAGES
================================== */

p.flashed-messages {
  border: 3px solid var(--col-main-n);
  margin: 15px 0px;
  padding: 20px 15px;
  font-weight: 700;
  background-color: var(--col-yellow-light); 

}





/* ===============================
** SHIP IMAGES / SHIP INFO 
================================== */

.ship-search {
    
}

.ship-image-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.ship-image-container::before {
    content: "";
    display: block;
    padding-top: 100%; /* Aspect ratio 5:3 */
}


div.ship-tile-image {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 20%;
    height: 100%;
    background-color: lightgrey;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

img.image-object-fit {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
}

td.ship-table {
    border-bottom: 1px solid lightgrey; 
    margin: 5px 0px; 
    padding: 5px 0px;

}

/* ===============================
** HARBOUR TILES
================================== */

.harbour-tile-image-area {
    width: 100%;
    padding: 0px;
    border: 0px solid lightgrey;
    border-radius: 0px;
    height: 0px;
    padding-top: 60%;  /* If you want to change this, it will affect style='position: absolute; top: 35%' that is used to make images center vertically on tiles. */
    position: relative;
}

.harbour-tile-info-area {
    width: calc(100% - 20px);
    background-color: var(--col-greys-l2);
    padding: 10px;
    position: relative;
}

.harbour-tile-info-area-map-popup {
    width: 100%;
    background-color: white;
    padding: 10px 0px 0px;
    position: relative;
}


.facilities-and-moorings-wrapper {
    width: 100%; 
    height: 0px; 
    padding-bottom: calc(100% / 9);
    margin: 8px 0px 0px;    
}

.facilities-and-moorings {
    width: calc(100% / 9);
    height: 0px;
    padding-bottom: calc(100% / 9);
    float: left;
    position: relative;
}

.facilities-and-moorings-large {
    width: calc(100% / 5);
    height: 0px;
    padding-bottom: calc(100% / 5);
    float: left;
    position: relative;
}



.harbour-tile {
    width: 100%;
    padding: 0px;
    border: 0px solid lightgrey;
    border-radius: 0px;
    height: 0px;
    padding-top: 85%;
    position: relative;
}

.harbour-tile-image-outer-wrapper {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
}


.harbour-tile-image {
  position: relative;
  width: 100%;
  height: 0px;
  padding-bottom: 85%;
  overflow: hidden;
  background-color: lightgrey
}


.harbour-tile-image img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: auto;
  -webkit-transform: translate(-50%,-50%);
      -ms-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
}

.harbour-tile-top-gradient {
    position: absolute; 
    left: 0px; 
    top: 0px; 
    width: 100%; 
    height: calc(12.54% + 30px); 
    background: linear-gradient(0deg, rgba(2,0,36,0) 0%, rgba(0,0,0,0.6) 91%);
}

.harbour-tile-bottom-gradient {
    position: absolute; 
    left: 0px; 
    bottom: 0px; 
    width: 100%; 
    height: calc(12.54% + 10px); 
    background: linear-gradient(180deg, rgba(2,0,36,0) 0%, rgba(0,0,0,0.5) 91%);
}

.harbour-tile-top-mooring-wrapper {
    position: relative;
    width: calc(96%);
    height: calc(100% - 30px);
    margin: 5px 2%
}

.harbour-tile-bottom-facilities-wrapper {
    position: relative;
    width: calc(96%);
    height: calc(100% - 10px);
    margin: 5px 2%
}


.white-circle {
    width: calc(90%); 
    height: calc(90%); 
    position: absolute; 
    background-color: white; 
    border-radius: 50%;
}

.harbour-tile-symbol-wrapper {
    z-index: 2; 
    width: calc(100% / 9); 
    height: 100%; 
    float: right; 
    position: relative;"
}


.harbour-tile-symbol {
    width: calc(90% - 4px);
    height: calc(90% - 4px); 
    position: absolute; 
    border-radius: 50%
}

.true-false-none-wrapper {
    position: absolute;
    height: 30%; 
    width: 30%; 
    right: -3%; 
    top: -3%
}

.harbour-tile-title-wrapper {
    position: absolute; 
    left: 0px; 
    top: 0px; 
    width: 100%; 
    height: calc(12.54% + 10px);

}

.harbour-tile-title-inner-wrapper {
    position: relative; 
    height: 100%; 
    width: 100%;
}

.harbour-tile-title {
    color: white;
    position: absolute;
    left: 12px;
    top: 4px
}

.harbour-tile-subtitle {
    color: white; 
    position: absolute; 
    left: 12px; 
    bottom: 4px;
}


/* ===============================
** FULL SIZE IMAGES
================================== */




/* Full-screen overlay, initially hidden */
#imageOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Container that holds the image, to position elements inside it */
#imageContainer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The main image */
#overlayImage {
    max-width: 100vw;
    max-height: 100vh;
    display: block;
}

/* Close button inside the image */
#closeButton {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    opacity: 0.5;
}





/* ===============================
** Centered image
================================== */

div.centered-image-parent {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;

}


img.centered-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
    
}

/* ===============================
** IMAGE CAROUSEL
================================== */


.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.harbour-images, .ship-images {
  position: relative;
  width: 100%;
  height: 0px;
  padding-bottom: 100%;
  overflow: hidden;
  background-color: lightgrey
}

.harbour-images-not-square-on-mobile {
  padding-bottom: 60%;
}


.harbour-images-img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: auto;
  -webkit-transform: translate(-50%,-50%);
      -ms-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
}

.ship-images img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}



/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
/*.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}*/



/* Caption text */
.image-description {
  position: absolute;
  bottom: -124px;
  width: 100%;
}

.image-text-background {
    color:white; 
    background-color: var(--col-main-n-translucent); 
    padding: 4px 14px; 
}


/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: white;
  border-radius: 50%;
  border: 1px solid white;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}




/* ===============================
** STANDARD ELEMENTS
================================== */

body {
   padding:0px;
   margin:0px;
   background-color: white;
   min-height: -webkit-fill-available;
}

html {
    /*margin-left: calc(100vw - 100%); /* Avoid different positioning with and without scroll bar */
   /*height: 100%;*/
   min-height: 100vh;
   min-height: -webkit-fill-available;
}


/* ===============================
** PLANKEPRISER STANDARD TABLE
================================== */

table.pp-table {
  border-collapse: collapse;
  padding:0px;
  margin: 0px;
  width: 100%;
  background-color: y
}
tr.pp-table { 
  height: 40px;
}

th.pp-table{
  padding: 4px 0px 4px 10px;
}
td.pp-table{
  border-top: 1px solid var(--col-greys-l2);
  border-bottom: 1px solid var(--col-greys-l2);
  /*border: solid var(--col-greys-l2);
  border-width: 1px 0px;*/
  height: 40px;
  padding: 4px 0px 4px 10px;
  margin:0px;
}

td.pp-table-border-right{
  border: solid var(--col-greys-l2);
  border-width: 1px 1px 1px 0px;
  height: 40px;
  padding: 4px 5px;
  margin:0px;
}

td.pp-table-border-left{
  border: solid var(--col-greys-l2);
  border-width: 1px 0px 1px 1px;
  height: 40px;
  padding: 4px 5px;
  margin:0px;
}

.pp-table-heading {
  border-bottom: 2px solid var(--col-greys-d3);
}
.pp-table-border-right-left {
  /*border: solid var(--col-greys-d3);
  border-width: 0px 2px 0px 2px;*/
  border-left: 2px solid var(--col-greys-d3);
  border-right: 2px solid var(--col-greys-d3);
  
}


.pp-table-no-border {
  border-collapse: collapse;
  padding:0px;
  margin: 0px;
  padding: 4px 0px 4px 10px;
}


/* ===============================
**
================================== */

.div-button {
    padding: 4px 8px;
    background-color: var(--col-main-n);
    position: relative;
    min-width: 50px;
    margin: 50px;
    margin-top: 150px;
    cursor: pointer;

}

/* ===============================
** WARNINGS
================================== */

.warning-red {
    background-color: var(--col-red);
    color: white;
    font-weight: 700;
}


/* ===============================
** SEARCH BOX
================================== */

.menu-search-box {
    height:54px;
    width: 100%;
}
/* ===============================
** AUTOCOMPLETE
================================== */

div.autocomplete-wrapper {
    height:54px;
    width: 100%;
    margin: 0px;
    border: 3px solid var(--col-main-n);
    border-radius: 0px;
    position: relative;;
    font-size: 1.2em;
    color:black;
}


div.autocomplete-input {
    position: absolute;
    left: 0px;
    top: 0px;
    width: calc(100%);
    height: 54px;
    border: 0px solid transparent;
    background-color: transparent;
    padding: 0px;
    margin:0px;
}

input.autocomplete-input {
    height:54px;
    border: 0px solid transparent;
    width: calc(100% - 10px);
    background-color: transparent;
    padding-left: 10px;
    font-size: 1.2em;
    color:black;
    margin:0px;
}


div.autocomplete-button {
    position: absolute;
    right: -1px;
    top: 0px;
    height:54px;
    width:54px;
    border: 0px solid transparent;
    background-color: var(--col-main-n);
    font-size: 1.2em;
    color:black;
    margin:0px;
    cursor: pointer;
}

input.autocomplete-button {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height:100%;
    background-color: transparent;
    border: none;
    color: white;
    padding: 0px;
    margin: 0px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 0px;
    -webkit-appearance: none; /* Avoid strange look on iPhone */
    font-size: 1.2em;
    cursor: pointer;
}




.autocomplete-quick-selection {
  background-color: var(--col-greys-l1);
  height: 25px;
  border-radius: 15px;
  padding:5px 14px 0px;
  margin:5px;
  display: inline-block; 
  cursor: pointer; 
}

.autocomplete-quick-selection:hover {
  background-color: var(--col-brand);
  color: white;
}






/* ===============================
** FULL SIZE STRUCTURE
================================== */

/* also defined below, based on viewport */
.full-screen-wrapper {
    background-color: transparent;
    width: 100%;
    /* height: 100vh;  <-- this is defined below */ 
    position: relative;
}

.full-screen-pop-up {
    position: fixed;
    top: 0px;
    left: 0px;
    height:100%;
    width:100%;
    z-index: 99;
    background-color: white;
}


.map-wrapper {
    position: absolute;
    top: 0px;
    left: 0px;
    height:90%;
    width:100%;
}

.bottom-menu {
    position: fixed;
    bottom: 0px;
    left: 0px;
    height:10%;
    width:100%;
    border-top: 1px solid var(--col-greys-l2);
}

.bottom-menu-parts {
    float: left;
    width: 50%;
    height:  100%;
    background-color: var(--col-main-d1);
    background-color: white;
    cursor: pointer;
}

.map-wrapper-admin {
    width:70%;
}
    
.admin-wrapper {
    background-color: grey;
    position: absolute;
    top: 0px;
    right: 0px;
    height:100%;
    width:30%;
}


.full-screen-menu-wrapper {
    position: absolute;
    top: 0px;
    left: 0px;
}

.pop-up-full-screen-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: white;
    z-index: 10;
}


.store-mouse-coordinates {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
}


.map-menu-divs {
    position: absolute; 
    background-color: white; 
    border-radius: 5px; 
    border: 2px solid lightgrey; 
    height: 32px; 
}


/* ===============================
** SVG
================================== */


.svg-line {
    stroke:rgb(120,120,120);
    stroke-width:1.0;
    fill:transparent;
}



/* ===============================
** DIV BLOCKS
================================== */



.content-wrapper {
    background-color: transparent;
    margin: 0px;
    padding: 0px 0px 160px;
    width: 100%;
}


.header-outer {
    margin-bottom: 10px;
    height: 40px;
    padding: 0px 30px;
    background-color: var(--col-main-n);
}

.header-inner {
    width: 100%;
    height:100%;
    /*overflow: hidden;  add this to contain floated children */
}

.header-left {
    float: left;
    position: relative;
    height:100%;
    background-color: transparent;
    width: 60px;
}

.header-right {
    float: right;
    position: relative;
    height:100%;
    min-width: 80px;
}

.canvas-outer {
    padding: 0px 12px;
  }

.canvas{
    margin: 0 auto;
    padding: 0px;
    width: 100%;
    /*max-width: 1000px;*/
}

.full-height {
    position: relative; /* needed for footer positioning*/
    height: auto !important; /* real browsers */
    min-height: calc(100% - 160px); /* real browsers */
}


.container{
    width: 100%;
    background-color: blue;
}



.footer-outer {
    position: absolute;;
    bottom: 0px;
    width: calc(100% - 60px);
    margin-top: 40px;
    height: 80px;
    padding: 0px 30px;
    background-color: var(--col-main-n);
}

.footer-inner {
    position: relative;
    width: 100%;
    height:100%;
}



.chart {
    padding:0px;
    background-color: transparent;
}

.chart-height {
    height: 280px;
}


/* ===============================
** SPECIAL FORM FIELD
================================== */


.bigcomment{
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
} 

/* ===============================
** COLOR SCHEMES AND FONTS
================================== */

.color-scheme {
    width: 84px; 
    height: 90px; 
    margin: 10px; 
    padding: 5px 8px; 
    float:left;
    border: 1px solid transparent;
    font-family: 'GraphikRegular', 'Arial', sans-serif;
    font-size: 12px;
    color: white;
}


/* ===============================
** CENTERED POSITIONING
================================== */

/* must be within position: relative div */

.center-horiz {
    position: absolute;
    top:50%;
    left:0%;
    transform: translate3d(-0%,-50%,0);
    -webkit-transform: translate3d(-0%,-50%,0);
    -moz-transform: translate3d(-0%,-50%,0);
    -o-transform: translate3d(-0%,-50%,0);
}

.center-horiz-no-left-adjust {
    position: absolute;
    top:50%;
    transform: translate3d(-0%,-50%,0);
    -webkit-transform: translate3d(-0%,-50%,0);
    -moz-transform: translate3d(-0%,-50%,0);
    -o-transform: translate3d(-0%,-50%,0);
}


.center-horiz-and-vertical {
    position: absolute;
    top:50%;
    left:50%;
    transform: translate3d(-50%,-50%,0);
    -webkit-transform: translate3d(-50%,-50%,0);
    -moz-transform: translate3d(-50%,-50%,0);
    -o-transform: translate3d(-50%,-50%,0);
}

.center-vertical {
    position: absolute;
    top:0%;
    left:50%;
    transform: translate3d(-50%,-0%,0);
    -webkit-transform: translate3d(-50%,-0%,0);
    -moz-transform: translate3d(-50%,-0%,0);
    -o-transform: translate3d(-50%,-0%,0);
}

.center-vertical-no-horiz-alignment {
    position: absolute;
    left:50%;
    transform: translate3d(-50%,-0%,0);
    -webkit-transform: translate3d(-50%,-0%,0);
    -moz-transform: translate3d(-50%,-0%,0);
    -o-transform: translate3d(-50%,-0%,0);
}



/* ===============================
** PRICING TABLE
================================== */

.price-parent {
    height: 100px;
    border-bottom: 1px solid grey;
    position: relative;
}

.col-1 {
    background-color: yellow;
    background-color: transparent;
    width: calc(25%);
    height: 100%;
    float:left;
}
.col-2 {
    background-color: blue;
    background-color: transparent;
    width: calc(50%);
    height: 100%;
    float:left;
}
.col-3 {
    background-color: pink;
    background-color: transparent;
    width: calc(25%);
    height: 100%;
    float:left;
}


.price-col-1-logo {
    background-color: yellow;
    background-color: transparent;
    width: calc(20%);
    height: 40px;
    float:left;
}



.price-prod-name {
    position:relative;
    width: 100%;
    background-color: transparent;
}

.price-logo {
    max-height:50px;
    max-width:120px;    
}



/* ===============================
** NAME CLEANING API
================================== */

table.name-claning {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

.name-claning-button {
    background-color: #0AB74A;
    border: none;
    color: white;
    padding: 0px;
    margin: 0px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 0px;
    -webkit-appearance: none; /* Avoid strange look on iPhone */
    width: calc(100%);
    height:80px;
    font-size: 1.2em;
}

.name-claning-input {
    width: calc(100%);
    height:74px;
    border: 3px solid #0AB74A;
    background-color: var(--col-main-l3);
    border-radius: 0px;
    padding-left: 10px;
    font-size: 1.2em;
    color:black;
}


/* ===============================
** INPUT FORMS
================================== */

.input-box {
    width: calc(100% - 10px);
    height: 50px;
    border: 0px solid var(--col-main-n);
    border-bottom: 3px solid var(--col-main-n);
    background-color: var(--col-greys-l2);
    border-radius: 0px;
    padding-left: 10px;
    font-size: 1em;
}

.form-field-full-width {
    width:100%;
    min-height: 200px;
    padding: 5px;
    border:1px solid black;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */

}


/* ===============================
** LOGIN / SIGNUP / LOGOUT / RESET PW
================================== */

.login-box {
    margin: 0 auto;
    width:220px;
    height:300px;
    background-color:var(--col-greys-l2);
    border: 3px solid var(--col-main-d1);
    padding: 25px 25px 5px 25px;
}

.login-sections {
    width: 100%;
    padding: 0px;
}

.login-field {
    width: calc(100% - 16px);
    height: 70%;
    border: 3px solid var(--col-main-n);
    background-color: white;
    border-radius: 0px;
    padding-left: 10px;
    font-size: 1em;
}


.form-button {
    background-color: var(--col-main-n);
    border: none;
    color: white;
    padding: 0px;
    margin: 0px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 0px;
    border-bottom: 3px solid var(--col-main-d1);
    -webkit-appearance: none; /* Avoid strange look on iPhone */
    width: calc(100% - 0px);
    height: 70%;
    font-size: 1em;
}

.form-button:hover {
    background-color: var(--col-main-d1);
    color: white;
}

/* ===============================
** LOADER. wait...
================================== */


.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.3s infinite ease-in-out;
}
.loader {
  color: var(--col-main-n);
  font-size: 10px;
  margin: 20px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 3.5em;
}
@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}

/* ===============================
** LOADING RING
================================== */

.loading-ring {
  display: inline-block;
  position: relative;
  width: 32px;
  height: 32px;
}
.loading-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  margin: 4px;
  border: 4px solid #fff;
  border-radius: 50%;
  animation: loading-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.loading-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.loading-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.loading-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes loading-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ===============================
** MAGIC MATCHER
================================== */

.magic-shadow {
    width:calc(100%-50px);
    margin:0px 0px 15px 0px;
    padding:22px ;
    background-color: white;

}

.magic-button-mother {
    width: 80%;
    height: 70px;
    margin: 0 auto;
    background-color: transparent;
    padding-top: 5px;
}

.magic-button-daughter {
    width: calc(30% - 28px);
    margin:0px 5px;
    padding: 5px;
    border-radius: 0px;
    background-color: #dbdbdb;
    border: 4px solid #d4d4d4;
    float:left;
}

.magic-button-daughter-stop-this-mp {
    width: calc(10% - 28px);
    margin:0px 5px;
    padding: 5px;
    border-radius: 0px;
    background-color: #dbdbdb;
    border: 4px solid #d4d4d4;
    float:left;
}


.magic-button-daughter-dummy {
    width: calc(33.33% - 28px);
    float:left;
    height:1px;
    background-color: transparent;
}


.magic-button-daughter:hover {
    background: #c4c4c4;
    border-color: #c4c4c4;
    transition: all 0.4s ease 0s;
}


table.magic {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}


td.magic {
    border: 0px solid #dddddd;
    text-align: left;
    padding: 3px 8px;
}


/* ===============================
** WIND ARROWS ON MAP 
================================== */


.wind-arrow-on-map-wrapper {
    position: relative; 
    width: 36px; 
    height: 82px; 
}

.wind-arrow-on-map-arrow {
    position: absolute; 
    bottom: 0px; 
    left: 0px; 
    width: 36px; 
    height: 36px; 
}

.wind-arrow-on-map-text {
    position: absolute;
    top: 0px;
    left: 0px; 
    width: 46px;
    height: 36px;
}

.strokeme
{
    color: white;
    text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;  
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    text-align: center;
}

/* ===============================
** FREEZE TOP ROW 
================================== */

.fixme {

    width: 100%;
    z-index: 1;
}



/* ===============================
** TOOLTIP - 
================================== */


.tooltip {
  position: relative;
}
.tooltip:hover {
} 

.tooltip-border {
    border: 1px solid transparent;
}
.tooltip-border:hover {
    border: 1px solid var(--col-main-n);
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: var(--col-main-n);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 10px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -70px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -7px;
  border-width: 7px;
  border-style: solid;
  border-color: var(--col-main-n) transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

p.tooltip {
    font-size:var(--font-size-xs);    
    color: white;
    text-align: center;
    line-height: 1.03em;

}

/* ===============================
** TABLE
================================== */

.crop-overflow-text-in-table {
    width:100%;
    overflow:hidden;
    height:20px;
    line-height:20px;
}

/* ===============================
** MATRIX TABLE
================================== */

table.matrix {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}


th.matrix, td.matrix {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 3px 5px;
    margin: 3px 5px;
}


/* ===============================
** OUTLIER TABLE
================================== */

table.outliers {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}


th.outliers, td.outliers {
    border-bottom: 1px solid #dddddd;
    text-align: left;
    padding: 3px 5px;
    margin: 3px 5px;
}



@media (max-width: 576px) {
    .hide-tbl-col-on-mobil {display: none}
}
@media (min-width: 576px) {
    .hide-tbl-col-on-desktop {display: none}
}


/* ===============================
** MAP:
================================== */
#map {
    height:600px;
    border:0px solid #26394b;

}

/* ===============================
** HEART-LOGO
================================== */

.heart-wrapper {
    position: relative;
    background-color: transparent;
    width: 60px;
}

.heart-row{
    overflow: hidden; /* add this to contain floated children */
}

.heart-pixel{
    height: 3px;
    width:  3px;
    background-color: var(--col-main-n);
    border: 0.1px solid var(--col-main-n);
    float:left;
}

/* ===============================
** GRID LAYOUT
================================== */

.flex-grid-parent {
    width: 100%;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0px;
}

.tile-harbour {
    width: calc(100%);
    margin: 10px 0px;
    background-color: var(--col-background);
    padding: 0px;
    border: 0px solid lightgrey;
    border-radius: 0px
}

.tile-text {
    padding: 6px 10px;
}

.fixed-grid-20  {width: 20%;}
.fixed-grid-25  {width: 25%;}
.fixed-grid-30  {width: 30%;}
.fixed-grid-33  {width: 33%;}
.fixed-grid-40  {width: 40%;}
.fixed-grid-50  {width: 50%;}
.fixed-grid-60  {width: 60%;}
.fixed-grid-70  {width: 70%;}
.fixed-grid-75  {width: 75%;}
.fixed-grid-80  {width: 80%;}
.fixed-grid-100 {width: 100%;}

.flex-grid-img-release {
    padding: 8px;
    border: 1px solid black;

}

/* ===============================
** 
================================== */

.webcam {
    width: 100%;
    padding-top: 65%;
    position:relative;
}


/* ===============================
** FACILITIES AND MOORING
================================== */

.has-data-false, .has-data-none {
    opacity: 15%;
}

.has-data-true {
    opacity: 85%;
}

.olav {
    padding: 10px;
    margin: 20px 0px;
    cursor: pointer;
    font-family: 'GraphikRegular', 'Arial', sans-serif;
    text-align: center;
    background-color: var(--col-greys-l3);
    border: 2px solid var(--col-greys-l1);
    color: var(--col-greys-l1);
}


.update-harbour {
    width: calc(50% - 48px);
    padding: 10px;
    margin: 10px;
    float: left;
    cursor: pointer;
    font-family: 'GraphikRegular', 'Arial', sans-serif;
    text-align: center;
}


.update-harbour-type-selected {
    background-color: var(--col-main-l2);
    border: 2px solid var(--col-main-d1);
    color: var(--col-main-d2);
    font-weight: 900;
}

.update-harbour-type-unselected {
    background-color: var(--col-greys-l3);
    border: 2px solid var(--col-greys-l1);
    color: var(--col-greys-l1);
}


#update-data-focus-none {
    background-color: #f9eec6; 
    border: 3px solid #e69030;   
}

#update-data-focus-true {
    background-color: #e1feea; 
    border: 3px solid #26bb69;    
}

#update-data-focus-false {
    background-color: #ffd7d0; 
    border: 3px solid #ff0000;    
}

#update-data-unfocus {
    background-color: transparent; 
    border: 3px solid transparent;    

}


/* ===============================
** VALIDATING USER IUPUT
================================== */

.validation-section {
    border-top: 2px solid black;
    margin: 30px 0px;
    padding: 20px 0px;
}

.validation-true-false {
    margin: 0px 4px;
}

.validation-text {
    margin: 4px 8px;
    padding: 12px;
    border: 1px solid grey;
}


.fixed-grid-50  {width: 50%;}


.validation-clr-none {background-color: var(--col-greys-l1)}
.validation-clr-true {background-color: var(--col-medium-green)}
.validation-clr-false {background-color: var(--col-medium-red)}

/* ===============================
** BUTTONS
================================== */


.submit-button {
    padding: 8px 12px;
    background-color: var(--col-main-n);
    position: relative;
    color: white;
    cursor: pointer;
}

.btn-yes, .btn-no, .btn-uncertain {
    padding: 6px 20px;
    margin: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 0px;
    border: 2px solid transparent;
    -webkit-appearance: none; /* Avoid strange look on iPhone */
    width: calc(100% - 80px);
    font-size: 1.5em;
    font-weight: 800;
    background-color: blue;
}

.btn-yes {
    background-color: var(--col-green);
    color: white;
}
.btn-yes:hover {
    background-color: var(--col-green-dark);
    color: white;
}

.btn-no {
    background-color: var(--col-red);
    color: white;
}
.btn-no:hover {
    background-color: var(--col-red-dark);
    color: white;
}

.btn-uncertain {
    background-color: var(--col-greys-n);
    color: white;
}
.btn-uncertain:hover {
    background-color: var(--col-greys-d1);
    color: white;
}



.branded-button, .branded-button:hover {
    background-color: var(--col-main-n);
    border: none;
    color: white;
    padding: 12px 20px;
    margin: 0px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 0px;
    -webkit-appearance: none; /* Avoid strange look on iPhone */
    min-width: 30px;
    font-size: 1em;
}

.branded-button:hover {
    background-color: var(--col-main-d1);
}

.branded-button-small, .branded-button-small:hover {
    padding: 6px 12px;
    min-width: 20px;

}

.red-button, .red-button:hover {
    background-color: var(--col-red);
    border: none;
    color: white;
    padding: 12px 20px;
    margin: 0px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 0px;
    -webkit-appearance: none; /* Avoid strange look on iPhone */
    min-width: 30px;
    font-size: 1em;
}

.red-button:hover {
    background-color: var(--col-red-dark);
}


.button-off, .operate-button {
  padding: 8px 18px;
  margin: 4px 4px;
  border-radius: 9999999px;
  white-space:nowrap;
  cursor: pointer;
  font-family: 'GraphikRegular', 'Arial', sans-serif;
  font-weight: 300;
  line-height: 1.7em;
  text-align: left;
  text-decoration: none;
  background-color: var(--col-greys-l2);
  color: black;    
}

.button-on {
  padding: 8px 18px;
  margin: 4px 4px;
  border-radius: 9999999px;
  white-space:nowrap;
  cursor: pointer;
  font-family: 'GraphikRegular', 'Arial', sans-serif;
  font-weight: 300;
  line-height: 1.7em;
  text-align: left;
  text-decoration: none;
  background-color: var(--col-main-n);
  color: white;
}


.filter-button {
  padding: 8px 18px;
  margin: 4px 4px;
  border-radius: 9999999px;
  white-space:nowrap;
  cursor: pointer;
  background-color: var(--col-greys-l2);
  color: black;    
}

.filter-button-on {
  background-color: var(--col-main-n);
  color: white;
}

.compass-buttons {
  padding: 8px 18px;
  margin: 4px 4px;
  border-radius: 9999999px;
  background-color: var(--col-greys-l1);
  white-space:nowrap;
  cursor: pointer;
}


/* ===============================
** SVG
================================== */
.compass-directions {
    font-size:var(--font-size-s);
    font-weight: 600;
    fill: black;
    font-family: 'Roboto', Arial, sans-serif;
    letter-spacing: 0.0em;
    text-anchor:middle; /* start, middle, end */
    alignment-baseline:middle; /* hanging, middle, baseline */
  }



.compass-text {
    font-size:var(--font-size-xxxs);
    font-weight: 200;
    fill: var(--col-greys-d1);
    font-family: 'Roboto', Arial, sans-serif;
    letter-spacing: 0.0em;
    text-anchor:middle; /* start, middle, end */
    alignment-baseline:middle; /* hanging, middle, baseline */
  }


.wind-txt {
    font-size:var(--font-size-xxxs);
    font-weight: 200;
    fill: var(--col-greys-n);
    font-family: 'Roboto', Arial, sans-serif;
    letter-spacing: 0.0em;
    text-anchor:middle; /* start, middle, end */
    alignment-baseline:middle; /* hanging, middle, baseline */
  }

.wind-bezier {
    fill: transparent;
    stroke-width:1;
    stroke: var(--col-greys-d2);
}

.wind-bezier-fill {
    fill: var(--col-greys-l1);
    stroke-width:0;
    stroke:transparent;
}

.bezier-min-max-wind-line {
    stroke: var(--col-greys-d2); 
    stroke-linecap:round; 
    stroke-width:0.5; 
}

.wind_speed_area_lines {
    stroke: var(--col-greys-l2); 
    stroke-linecap: round; 
    stroke-width:0.5;
}

.wind-protection-txt-true {
    font-weight: 600;
    fill: black;

}

.wind-protection-txt-false {
    font-weight: 600;
    fill: lightgrey;
}


.wind-protection-bacground-neutral {
  stroke:transparent;
  stroke-width:0;
  fill:lightgrey; 
  fill-opacity:1;
}


.wind-protection-true {
  fill: transparent;
  stroke: black;
  stroke-width: 8;
}


.svg-sailboat {
  fill: transparent;
  stroke: black;
  stroke-width: 1;
}

.svg-bearing-arrow-fill {
  fill: white;
  stroke: transparent;
  stroke-width: 0;
}

.svg-bearing-arrow-line {
  fill: white;
  stroke: white;
  stroke-width: 16;
}

.svg-wind-forecast-arrow-fill {
  fill: black;
  stroke: transparent;
  stroke-width: 0;
}

.svg-wind-forecast-arrow-line {
  fill: black;
  stroke: black;
  stroke-width: 1;
}

.svg-timescale-line {
  fill: transparent;
  stroke: var(--col-greys-d3);
  stroke-width: 0.5;
}


.svg-bearing-background {
  fill: black;
  stroke: black;
  stroke-width: 16;
}

.wind-protection-false {
  fill: transparent;
  stroke: lightgrey;
  stroke-width: 2;
  stroke-dasharray: 7,3;
}

.wind-protection-, .wind-protection-none {
  fill: transparent;
  stroke: lightgrey;
  stroke-width: 0.5;
}


.svg-pizza-clicker {
  fill:white; 
  fill-opacity:0.1;
  stroke:transparent;
  stroke-width:0;
  stroke-opacity:0.9;
  cursor: pointer;
}

.middle{text-anchor:middle;}
.end{text-anchor:end;}
.start{text-anchor:start;}
.hanging{alignment-baseline:hanging;}
.vertical-middle{alignment-baseline:middle;}
.baseline{alignment-baseline:baseline;}

.svg-text-white {fill: white;}
.svg-text-black {fill: black;}




/* ===============================
** FORM TO UPLOAD IMAGES
================================== */

.image-submit-upload {
    background-color: var(--col-main-n);
    border-radius: 0px;
    border: 3px solid var(--col-main-n);
    color: white;
    padding: 10px 25px;
    margin: 0px;
    display: inline-block;
    cursor: pointer;
    -webkit-appearance: none; /* Avoid strange look on iPhone */
    height: 50px;
}



.image-select-filt-to-upload {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}
.image-select-filt-to-upload + label {
    background-color: var(--col-greys-l2);
    border-radius: 0px;
    border: 3px solid var(--col-greys-l1);
    padding: 14.5px 25px;
    margin: 0px;
    display: inline-block;
    cursor: pointer;
    -webkit-appearance: none; /* Avoid strange look on iPhone */
    color: var(--col-greys-d3);
}

.image-select-filt-to-upload:focus + label,
.image-select-filt-to-upload + label:hover {
    background-color: var(--col-greys-l1);
    color: var(--col-greys-d3);
}

.image-select-filt-to-upload + label {
    cursor: pointer; /* "hand" cursor */
}

.image-select-filt-to-upload:focus + label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.image-select-filt-to-upload + label * {
    pointer-events: none;
}


/* ===============================
** TOGGLE SWICH
================================== */
.switch {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 56px;
  height: 20px;
  padding: 3px;
  background-color: white;
  border-radius: 18px;
  box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  background-image: -webkit-linear-gradient(top, #eeeeee, white 25px);
  background-image: -moz-linear-gradient(top, #eeeeee, white 25px);
  background-image: -o-linear-gradient(top, #eeeeee, white 25px);
  background-image: linear-gradient(to bottom, #eeeeee, white 25px);
}

.switch-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.switch-label {
  position: relative;
  display: block;
  height: inherit;
  font-size: 10px;
  text-transform: uppercase;
  background: #eceeef;
  border-radius: inherit;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.15s ease-out;
  -moz-transition: 0.15s ease-out;
  -o-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
  -webkit-transition-property: opacity background;
  -moz-transition-property: opacity background;
  -o-transition-property: opacity background;
  transition-property: opacity background;
}
.switch-label:before, .switch-label:after {
  position: absolute;
  top: 50%;
  margin-top: -.5em;
  line-height: 1;
  -webkit-transition: inherit;
  -moz-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}
.switch-label:before {
  content: attr(data-off);
  right: 11px;
  color: #aaa;
  text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}
.switch-label:after {
  content: attr(data-on);
  left: 11px;
  color: white;
  text-shadow: 0 1px rgba(0, 0, 0, 0.2);
  opacity: 0;
}
.switch-input:checked ~ .switch-label {
  background: #47a8d8;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}
.switch-input:checked ~ .switch-label:before {
  opacity: 0;
}
.switch-input:checked ~ .switch-label:after {
  opacity: 1;
}

.switch-handle {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 10px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  background-image: -webkit-linear-gradient(top, white 40%, #f0f0f0);
  background-image: -moz-linear-gradient(top, white 40%, #f0f0f0);
  background-image: -o-linear-gradient(top, white 40%, #f0f0f0);
  background-image: linear-gradient(to bottom, white 40%, #f0f0f0);
  -webkit-transition: left 0.15s ease-out;
  -moz-transition: left 0.15s ease-out;
  -o-transition: left 0.15s ease-out;
  transition: left 0.15s ease-out;
}
.switch-handle:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -6px;
  width: 12px;
  height: 12px;
  background: #f9f9f9;
  border-radius: 6px;
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
  background-image: -webkit-linear-gradient(top, #eeeeee, white);
  background-image: -moz-linear-gradient(top, #eeeeee, white);
  background-image: -o-linear-gradient(top, #eeeeee, white);
  background-image: linear-gradient(to bottom, #eeeeee, white);
}
.switch-input:checked ~ .switch-handle {
  left: 40px;
  box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}

.switch-green > .switch-input:checked ~ .switch-label {
  background: #4fb845;
}


/* ===============================
** HAMBURGER MENU
================================== */

/*
.hamburger {
  background: transparent;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
*/





/* ===============================
** SCREEN SIZE ADJUSTMENT
** viewport-identifier is for debugging (se base.html)
** canvas is the width of the site
** body font-size is relative to em-sizes
================================== */

/* INITIAL SETTINGS */
/*.container{width: calc(100% - 80px); padding: 0px 40px;}*/


/* VIEWPORT WIDTH: 0->320
/* ======================================*/
@media (min-width: 0px) {
    .viewport-identifier {background-color: pink}
    .container{width: calc(100% - 30px); padding: 0px 15px;}
    body{font-size: 11px;}
  .hide-on-mobil {display: none}
  .hide-on-desktop {display: block}
  
  .flex-grid-filters,
  .flex-grid-products,
  .flex-grid-20,
  .flex-grid-25,
  .flex-grid-30,
  .flex-grid-33,
  .flex-grid-33-padding,
  .flex-grid-33-harbour-tile,
  .flex-grid-35,
  .flex-grid-40,
  .flex-grid-40-padding-left,
  .flex-grid-40-padding-right,
  .flex-grid-50,
  .flex-grid-50-padding,
  .flex-grid-50-padding-left,
  .flex-grid-50-padding-right,
  .flex-grid-60,
  .flex-grid-60-center,
  .flex-grid-70,
  .flex-grid-75,
  .flex-grid-80,
  .flex-grid-100 {width: 100%;}

  .flex-grid-img-release {width: calc(100% - 20px)}

  .half-height-on-mobile {height: 50vh}

  .padding-left-or-right {padding: 30px 0px 0px 0px;}
  .flex-padding-left {padding-left: 0px}
  .flex-padding-right {padding-right: 0px}

  .flex-grid-33-harbour-tile {padding:  10px 0px 30px; }

  .map-flex-height {padding-top: 140%;}

  .search-box-wrapper {width: 98%;}
  .search-box-wrapper {width: calc(100% - 6px) }

  .center-grid-50 {width: 100%;margin-left: 0%}

  .flex-grid-70-with-margin {width: 100%; margin-right: 0px}

  .tile-wrapper-full-page-width {width: 100%;}

  .shadow {
      background-color: rgb(255,255,255);
      box-shadow: 0px 0px 20px var(--col-main-l2);
      border-radius: 10px;
  }

  .shadow-not-on-mobil {
      background-color: rgb(255,255,255);
      box-shadow: none;
      border-radius: none;
  }

    .full-screen-wrapper {
        height: 100svh;
    }



}


/* VIEWPORT WIDTH: 320 | iPhone 4 / 5 / SE | 
/* ======================================*/
@media (min-width: 320px) {
    .viewport-identifier {background-color: green}
    .container{width: calc(100% - 30px); padding: 0px 15px;}
    body{font-size: 11px;}
}


/* VIEWPORT WIDTH: 360 | Galaxy S5 | 
/* ======================================*/
@media (min-width: 360px) {
    .viewport-identifier {background-color: blue}
    .container{width: calc(100% - 30px); padding: 0px 15px;}
    body{font-size: 11px;}
}


/* VIEWPORT WIDTH: 375 | iPhone 6/7/8 | iPhone X
/* ======================================*/
@media (min-width: 375px) {
    .viewport-identifier {background-color: deeppink}
    .container{width: calc(100% - 30px); padding: 0px 15px;}
    body{font-size: 13px;}
}


/* VIEWPORT WIDTH: 411 | iPhone 6/7 | Pixel 2/2XL | iPhone 6/7/8 Plus
/* ======================================*/
@media (min-width: 411px) {
    .viewport-identifier {background-color: lime}
    .container{width: calc(100% - 30px); padding: 0px 15px;}
    body{font-size: 13px;}
}


/* VIEWPORT WIDTH: 576
/* ======================================*/
@media (min-width: 576px) {
    .viewport-identifier {background-color: cyan}
    .container{width: calc(100% - 80px); padding: 0px 40px;}
    body{font-size: 14px;}
}


/* VIEWPORT WIDTH: 768 | iPad
/* ======================================*/
@media (min-width: 768px) {
    .viewport-identifier {background-color: rgb(50,50,50)}
    .container{width: calc(100% - 30px); padding: 0px 15px;}
    body{font-size: 14px;}

    .canvas-outer {padding: 0px 30px;}

    .hide-on-mobil {display: block}
    .hide-on-desktop {display: none}

    .flex-grid-20  {width: 20%;}
    .flex-grid-25  {width: 25%;}
    .flex-grid-30  {width: 30%;}
    .flex-grid-33  {width: 33%;}
    .flex-grid-33-padding  {width: calc(33% - 40px); padding: 0px 20px}
    .flex-grid-33-harbour-tile {width: calc(33% - 36px); padding: 10px 18px 30px}
    .flex-grid-35  {width: 35%;}
    .flex-grid-40  {width: 40%;}
    .flex-grid-40-padding-left {width: calc(40% - 20px); padding-left: 20px}
    .flex-grid-40-padding-right {width: calc(40% - 20px); padding-right: 20px}
    .flex-grid-50  {width: 50%;}
    .flex-grid-50-padding  {width: calc(50% - 40px); padding: 0px 20px}
    .flex-grid-50-padding-left {width: calc(50% - 20px); padding-left: 20px}
    .flex-grid-50-padding-right {width: calc(50% - 20px); padding-right: 20px}
    .flex-grid-60  {width: 60%;}
    .flex-grid-60-center  {width: 60%; margin-left: 20%}
    .flex-grid-70  {width: 70%;}
    .flex-grid-70-with-margin {width: calc(70% - 50px); margin-right: 50px}
    .flex-grid-75  {width: 75%;}
    .flex-grid-80  {width: 80%;}
    .flex-grid-100 {width: 100%;}

    .flex-grid-img-release {width: calc(20% - 20px)}
    .half-height-on-mobile {height: 70vh}

    .padding-left-or-right {padding: 0px 0px 0px 30px;}
    
    .flex-padding-left {padding-left: 20px}
    .flex-padding-right {padding-right: 20px}


    .center-grid-50 {width: 50%;margin-left: 25%}

    .search-box-wrapper {width: calc(100% - 10px) }

    .map-flex-height {
      width: 100%;
      padding-top: 75%;
      position:relative;
    }

    .tile-harbour {
        width: calc(33.33% - 20px);
        margin: 10px;
    }




    .harbour-images {padding-bottom: 60%;}

    .flex-grid-filters {width: 280px;}
    .flex-grid-products {width: calc(100% - 280px);}

    .product-overview {padding: 20px 35px 10px 0px;}

    .tile-wrapper-products-page {width: 50%;}

    .product-tile {
    /* height and width is realtive to tile-wrapper-products-page */
    margin:10px;
    padding:20px 20px 10px 20px;
    width: calc(100% - 62px);
    }

    .shadow-not-on-mobil {
      background-color: rgb(255,255,255);
      box-shadow: 0px 0px 20px var(--col-main-l2);
      border-radius: 10px;
    }

    .full-screen-wrapper {
        height: 100vh;
    }


}


/* VIEWPORT WIDTH: 992 | iPad Pro
/* ======================================*/
@media (min-width: 992px) {
    .viewport-identifier {background-color: yellow}
    .container{width: calc(100% - 60px); padding: 0px 30px;}
    body{font-size: 15px;}
}


/* VIEWPORT WIDTH: 1200
/* ======================================*/
@media (min-width: 1200px) {
    .viewport-identifier {background-color: pink}
    .container{width: calc(100% - 80px); padding: 0px 40px;}
    body{font-size: 15px;}
}