/* =============================================================================
   HTML5 CSS Reset Minified - Eric Meyer
   ========================================================================== */

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}
body{line-height:1}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
nav ul{list-style:none}
blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{content:none}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;text-decoration:none}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}
del{text-decoration:line-through}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}
table{border-collapse:collapse;border-spacing:0}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
input,select{vertical-align:middle}
li{list-style:none}

textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
-webkit-appearance: none;
border-radius: 0;
}

:root {
    --white: #ffffff;
    --darkerblue: #00355D;
    --darkblue: #006295;
    --midblue: #164E78;
    --lighterblue: #0F7A9A;
    --lightblue: #0099FF;
    --altblue: #164e78;
    --lightaltblue: #0074C1;
    --black: #000000;
    --orange: #FF9900;
    --darkergrey: #333333;
    --darkgrey: #444444;
    --midgrey: #888888;
    --grey: #ACACAC;
    --secondgrey: #AAAAAA;
    --lightgrey: #DDDDDD;
    --lightergrey: #F4EFEA;
    --pink: #E01A59;
    --red: #E01A59;
    --gold: #CCA43D;
    --purple: #9E1F63;
    --powderblue: #9BC3D7;
}

/*
==========================================================================
GLOBAL & WP SPECIFIC STYLES
==========================================================================
*/

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-text-size-adjust: none;
}

input, textarea, select {
    -webkit-border-radius:0;
    border-radius:0;
}

img,
audio,
video,
canvas {
	max-width: 100%;
}

html {
	min-height: 100%;
	margin-bottom: 1px;
	overflow: -moz-scrollbars-vertical!important;
}

::selection {
	background: var(--orange);
	color: var(--white);
}

::-moz-selection {
	background: var(--orange);
	color: var(--white);
}

::-webkit-selection {
	background: var(--orange);
	color: var(--white);
}

.cf:before,.cf:after {content: " "; /* 1 */    display: table; /* 2 */}
.cf:after {clear: both;}
.cf {clear: both;}

strong, b {
	font-weight:bold;
}

em, i {
	font-style:italic;
}

img.alignright {
	float:right;
	margin:0 0 2em 1em;
}

img.alignleft {
	float:left;
	margin:0 2em 1em 0;
}

img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.alignright {
	float:right;
	margin:0 0 2em 1em;
}

.alignleft {
	float:left;
	margin:0 0 2em 1em;
}

img.wp-smiley {
	float: none;
	margin: 0 0 0 5px;
	vertical-align:middle;
}

p {
	margin: 0 0 24px 0;
  font: 18px 'TT Norms Pro', Helvetica , Arial, sans-serif;
  line-height: 24px;
  font-weight: 400;
}

a {
	color: var(--orange);
	text-decoration: none;
}

a:hover {
	color: var(--blue);
	text-decoration: none;
}

.desktop-hide { display:none !important; }


/*
==========================================================================
H & LINKS
==========================================================================
*/

h1 {
	font: 36px 'TT Norms Pro', Helvetica , Arial, sans-serif;
	margin:0 0 20px 0;
	padding:0;
	font-weight: 600;
	color: var(--midblue);
}

h2 {
	font: 48px 'Gazpacho', 'TT Norms Pro' , Arial, sans-serif;
  font-weight: 900;
	margin:0 0 24px 0;
	color: #06242D;
  line-height: 120%;
}

h3 {
	font: 24px 'TT Norms Pro', Helvetica , Arial, sans-serif;
  font-style: normal;
  font-weight: 900;
  line-height: 28.8px;
	color: #06242D;
}

h4 {
	font: 26px 'TT Norms Pro', Helvetica , Arial, sans-serif;
	margin:0 0 20px 0;
	padding:0;
	font-weight: 600;
	color: var(--midblue);
}

h5 {
	font: 22px 'TT Norms Pro', Helvetica , Arial, sans-serif;
	margin:0 0 20px 0;
	padding:0;
	font-weight: 600;
	color: var(--midblue);
}


/*
==========================================================================
GENERAL
==========================================================================
*/

body {
	background: var(--white);
	color: var(--darkergrey);
	font: 14px/1.8 'TT Norms Pro', Helvetica, Arial, sans-serif;
	margin:0;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

.container {
	max-width: 1260px;
	width:100%;
	margin:10px auto;
}

.inner {
	position: relative;
	width: 100%;
	max-width: 1260px;
	margin: 0 auto;
}
section {
	padding-top: 50px;
}

/*
==========================================================================
HEADER
==========================================================================
*/

header {
	background: var(--white);
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 99999;
  padding: 20px 0 10px 0;
  /* box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.16); */
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.logo {
    width: 260px;
    height: auto;
    float: left;
    margin: 25px 0 0 0;
	transition: all 0.3s ease-in;
}

.nav-section {
	float: right;
}

.nav-top-row {
	text-align: right;
	font-size: 14px;
}

.nav-top-row a {
  line-height: 1px;
  align-items: center;
  color: #FF789B;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
}

.nav-top-row a:not(.call-row) i {
  color: var(--orange);
}

.nav-contact {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 32px;
}

.call-times img {
  margin-top: -3px;
}

.call-row {
	color: var(--darkblue);
	font-weight: 600;
	margin: 0 !important;
}

.nav-top-row a.call-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.call-row span {
	font-size: 22px;
  padding-top: 2px;
}

.call-row img {
  width: 32px;
}

.call-times {
  display: flex;
  line-height: 1px;
  align-items: center;
  gap: 5px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
}

.call-row {
	margin: 0 0 -5px 0;
}

.call-row i {
  width: 32px;
  height: 32px;
  background-color: var(--darkblue);
  border-radius: 100%;
	font-size: 18px;
	color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
	display: none;
}

/*
==========================================================================
ALERT
==========================================================================
*/

.alert-block {
	z-index: 99;
	font-size: 14px;
	position: relative;
	background: var(--midblue);
	padding: 10px 0;
}

.alert-block p {
	margin: 0;
	color: var(--white);
	line-height: 30px;
}

.alert-block a {
	color: var(--white);
	font-weight: 700;
}

.alert-block a:hover {
	color: var(--white);
}

.close-alert {
  	position: absolute;
  	right: 10px;
  	top: 5px;
 	color: var(--white);
 	cursor: pointer;
	transition: all 0.3s ease-in;
}

.close-alert:hover {
	opacity: 0.6;
 	color: var(--white);
	transition: all 0.3s ease-in-out;
}

.alert-block i {
	margin: 0 10px;
}

.alert-block strong {
	margin: 0 0 0 10px;
}

/*
==========================================================================
NAV
==========================================================================
*/

.nav-bar-bottom {
	float: right;
}
.nav-bar-bottom p {
	margin: 0;
}

.nav-span {
	color: var(--lightblue);
	font-weight: 700;
	margin: 0 0 0 20px;
}

.sticky {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 5px 0 0px 0;
    z-index: 99999999;
}

.sticky .nav .sub-menu {
  margin: 2px 0 0 0;
}


nav {
	/* float: right; */
	/* margin: 5px 0 0 0; */
}

nav li {
	display: inline-block;
	margin: 0 0 0 15px;
}


.nav {
	list-style: none;
}

.nav {
	font-size: 14px;
}

.nav ul {
    list-style: none;
    width: 9em;
    min-width: 200px;
    margin:0;
    padding: 45px 0 0 0;
    text-align: left;
    font-weight: 700;
}

.sticky .nav ul {
    padding: 10px 0 0 0;
}

.sub-menu li {
	margin: 0;
	padding: 0px;
	left:-20px;
}


.sub-menu a {
	transition: all 0.3s ease-in;
}


.sub-menu a:hover {
	transition: all 0.3s ease-in-out;
}

.nav li {
    position: relative;
    display: block;
}

.nav > li {
	display:inline-block;
}


.nav > li.menu-item-has-children > a {
    background-image: url("../images/arrow.svg");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center right;
    padding: 5px 20px 5px 0;
	margin: 0 -5px 0 0;
}

.nav > li > a {
  display: block;
  color: #333;
  font-size: 18px;
  font-weight: 700;
}

.nav a {
	position: relative;
	    font-weight: 600;
	transition: all 0.3s ease-in-out;
}

.nav li:after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	margin: 0 auto;
	right: 0;
	width: 20px;
	height: 0;
	opacity: 0.3;
	background: var(--midblue);
}

.nav li.current_page_item:after,
.nav li:hover:after {
	content: "";
	position: absolute;
	bottom: -7px;
	left: 0;
	margin: 0 auto;
	right: 0;
	width: 100%;
	height: 2px;
	opacity: 1;
	background: var(--midblue);
}


.nav a:hover {
	color: var(--midblue);
	transition: all 0.3s ease-in-out;
}


.nav li ul {
    position: absolute;
  	top:100px;
  	left:0;
  	width:100%;
  	opacity:0;
  	visibility:hidden;
  	z-index:999999;
	transition: all 0.3s ease-in-out;
}

.nav > li.hover > ul {
	opacity:1;
	visibility:visible;
	top:100%;
	left:0;
}

.nav li li.hover ul {
    left: 100%;
    top: 0;
}

.nav li li a {
    display: block;
    background: var(--white);
    position: relative;
    z-index: 100;
    border-top: 0;
    color: var(--text);
    padding: 10px 20px;
    margin: 0;
    font-size: 14px;
}

.nav li li li a {
    background: var(--lightgrey);
    z-index:200;
    border-top: 0;
	color: var(--white);
}

.nav li li a:hover, .nav li li li a:hover {
    background: var(--lightblue);
	color: var(--white);
}

.nav li li:hover:after,
.nav li li:after {
	content: "";
	display: none;
}

.nav .sub-menu .menu-item-has-children ul {
	opacity:0;
	visibility: hidden;
}

.nav .sub-menu .menu-item-has-children:hover ul {
	opacity:1;
	visibility: unset;
}

.nav .sub-menu {
    list-style: none;
    width: 9em;
    min-width: 200px;
    margin: 6px 0 0 0;
	opacity:0;
	z-index: 9999;
	visibility: hidden;
    padding: 11px 0 0 0;
    text-align: left;
}

.nav .sub-menu ul {
    list-style: none;
    width: 9em;
    min-width: 200px;
    margin: 0;
	opacity:0;
	z-index: 9999;
	visibility: hidden;
    padding: 0px 0 0 0;
    text-align: left;
}

.nav li li li a:hover {
    background: var(--blue);
    color: var(--white);
}


/*
==========================================================================
NAV WRAPPER
==========================================================================
*/

.nav-button {
	display: none;
}

.nav-wrapper {
  background: #06242D;
  height: 100%;
  padding: 100px 30px 30px 30px;
  position: fixed;
  right: 0;
  top: 0;
  font-weight: 500;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  transition: visibility 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, visibility 0.5s;
  transition: transform 0.5s, visibility 0.5s, -webkit-transform 0.5s;
  visibility: hidden;
  width: 85%;
  max-width: 600px;
  z-index: 999999999999999;
}

.nav-wrapper li {
	display: block;
    position: relative;
}

.nav-wrapper .parent::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    color: var(--white);
    font-size: 14px;
    padding: 0 5px;
    margin: 0;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 5px;
    font-weight: 900;
}

.side-item {
	position: relative;
    overflow-y: auto;
    height: 100%;
}

.nav-wrapper a {
	font: 16px 'TT Norms Pro', Helvetica , Arial, sans-serif;
	color: var(--white);
	font-weight: 700;
	display: block;
	padding: 10px;
	margin: 0;
	background: none;
	transition: all 0.3s ease-in;
}

.nav-wrapper a:hover {
	color: var(--orange);
	transition: all 0.3s ease-in-out;
}

.parent ul a {
    background: none;
    color: var(--white);
    margin: 0;
}

.side-item i {
	padding: 0 5px 0 0;
}

.nav-wrapper .nav-buttons {
    position: absolute;
    top: 18px;
    right: 10px;
	transition: all 0.3s ease-in;
}

.nav-wrapper .nav-buttons:hover {
	opacity: 0.6;
	transition: all 0.3s ease-in-out;
}

.nav-visible .nav-wrapper {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
}

.nav-wrapper .nav {
  position: relative;
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
    padding: 20% 25% 0 25%;
}

.nav-visible .nav {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
}

.nav-wrapper .parent ul {
	display: none;
}

.nav-wrapper .minus ul {
	display: block;
}

.nav-wrapper .nav a:focus, .nav-wrapper .nav a:hover {
  text-decoration: none;
	transition: all 0.3s ease-in-out;
    color: var(--text);
}

.button-lines {
	font: 16px Helvetica, Arial, sans-serif;
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-block;
  padding: 1rem 0.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.menutag {
	margin: 5px 0 0 15px;
    vertical-align: middle;
    display: inline-block;
    font-size: 15px;
    text-transform: none;
    color: var(--white);
}

.nav-visible .lines, .nav-visible .lines:after, .nav-visible .lines:before {
  background: var(--white);
}

.nav-visible .menutag {
    color: var(--white);
    margin: 0;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
}

.nav-visible .lines::after, .nav-visible .lines::before {
    height: 0.2rem;
    width: 2rem;
}

.nav-visible ul ul {
	display: block;
	margin:0;
	padding: 0 0 0 30px;
}

.nav-wrapper li {
    display: block;
    position: relative;

}

.nav-wrapper li li {
    display: block;
    position: relative;
    border-bottom: 0;
}

.nav-wrapper .parent {
    padding:  0;
}

.close {
	color: var(--white);
	font-size: 22px;
}

.side-social {
  display: block;
}

.side-social a {
	font-size: 22px;
  display: inline-block;
  margin: 0 10px 10px 0 0;
}

/*
==========================================================================
HOME
==========================================================================
*/

.hero {
	height: 652px;
	width: 100%;
	position: relative;
}

.hero-slider,.hero-slide {
	height: 652px;
	width: 100%;
	position: relative;
}

.hero-slide:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .2);
}

.hero-slide .inner {
  height: 652px;
}

.dark-hero-block {
  position: absolute;
  bottom: 50px;
  background: #fff;
  border-radius: 10px;
  min-width: 100%;
  padding: 24px 32px;
  z-index: 999;
}

.dark-hero-block h1 {
	color: var(--white);
	font-weight: 700;
	margin: 0 0 5px 0;
}

.dark-hero-block p {
	color: var(--white);
	font-size: 14px;
	margin: 0;
}

/*
==========================================================================
TABS
==========================================================================
*/

.tabbed-panels {
  width: 100%;
  margin: 20px 0 0 0;
}

.panel-container {
  clear: both;
  position: relative;
  background-color: none;
  padding: 20px;
  border: 1px solid var(--white);
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
   border-bottom-right-radius: 5px;
}

.panel-container p {
	margin: 0;
}

.tabs {
	margin: 0;
	padding: 0;
	list-style: none;
}

.tabs li {
   float: left;
	padding: 0;
	margin: 0;
    text-align: center;
}

.tabs a {
	display: block;
	text-decoration: none;
	color: var(--white);
	font-size: 14px;
    font-weight: bold;
	padding: 5px 10px;
	margin-right: 4px;
	margin-bottom: -1px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    background: var(--lightblue);
 	border-top: 1px solid var(--lightblue);
	border-left: 1px solid var(--lightblue);
	border-right: 1px solid var(--lightblue);
	transition: unset;
}

.tabs a:hover {
	color: var(--midblue);
    background: var(--white);
  	border-top: 1px solid var(--white);
	border-left: 1px solid var(--white);
	border-right: 1px solid var(--white);
}

.tabs a.active {
  background: none !important;
  border-top: 1px solid var(--white);
  border-left: 1px solid var(--white);
  border-right: 1px solid var(--white);
  border-bottom: 1px solid rgba(22, 78, 120, 0.9);
  color: var(--white);
  padding: 5px 10px;
  z-index: 9;
  /*margin: 0 10px -1px 0;*/
  position: relative;
}


.tabbed-block {
	margin: 50px auto;
}

.tabbed-block .tabs a {
	display: block;
	text-decoration: none;
	color: var(--white);
	font-size: 14px;
    font-weight: bold;
	padding: 10px 30px;
	margin-right: 4px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.tabbed-block .tabs a:hover {
	color: var(--white);
    background: var(--blue);
}

.tabbed-block .tabs a.active {
	color: var(--red);
    background: var(--white);
	margin-bottom: 0;
	position: relative;
	padding: 10px 30px;
	border-left: 1px solid var(--white);
	border-top: 1px solid var(--white);
	border-right: 1px solid var(--white);
}

.tabbed-block .active::after {
  content: "";
  background: var(--white);
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: -3px;
  left: 0;
}

.tab-grid {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.tab-col {
  min-width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #C1DBE7;
  padding-right: 25px;
  position: relative;
  padding-top: 15px;
}

.tab-col label,
.input-wrapper label {
  position: absolute;
  z-index: 1000;
  left: 0px;
  top: -7px;
  font-weight: 400;
  font-size: 16px;
  color: #5E6F73 !important;
}

.tab-col i {
  font-size: 24px;
}

.tab-col .nice-select {
	width: 100%;
  height: 100%;
  -webkit-tap-highlight-color: transparent;
  background-color: var(--white);
  color: var(--midgrey);
  border:0;
  margin: 0;
  border-radius: 5px;
  box-sizing: border-box;
  clear: both;
  font-size: 12px;
  padding-left: 12px;
}

.tab-col .nice-select .current { display:block;/*max-width:200px;*/width:100%;overflow:hidden;cursor:pointer; }
/*.tab-col .nice-select:hover .current { position:absolute;width:100%;height:100%;border-top-right-radius:5px;border-bottom-right-radius:5px; }
.tab-col .nice-select:hover:after { display:none; }*/

.light-blue-button {
	text-align: center;
	background: #126382;
	border: 0;
	color: var(--white);
	border-radius: 100px;
	padding: 16px 48px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	transition-property:background, color;
}

.light-blue-button i,
.blue-button i { color:#fff !important; }

.light-blue-button:hover {
	background: var(--lightaltblue);
	color: var(--white);
}

.light-blue-button.white-button {
	background: var(--lightblue);
  border-color: var(--lightblue);
	color: var(--white);
}

.light-blue-button.white-button:hover {
  border-color: var(--white);
}

.light-blue-button.white-button:hover i {
  color: var(--lightblue) !important;
}

.big-text {
	background: var(--white);
	color: var(--darkergrey);
	font: 14px 'Noto Sans', Helvetica, Arial, sans-serif;
	margin: 0;
	padding: 20px;
	border: 0;
	border-radius: 5px!important;
	width: 100%;
}

/*
==========================================================================
LIGHTBLOCK
==========================================================================
*/

.light-hero-block {
  position: absolute;
  bottom: 180px;
  padding: 20px;
  max-width: 100%;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.light-hero-block h2 {
	color: var(--white);
  font-family: 'Gazpacho';
	font-weight: 900;
  font-size: 74px;
  line-height: 120%;
	margin: 0px;
}

.light-hero-block p {
	color: var(--white);
	font-size: 18px;
  line-height: 26px;
  font-weight: 700;
	margin: 0px;
}

.light-hero-block img {
	width: 50px;
	display: inline-block;
	margin: 20px 0;
}

.bookmark {
  position: relative;
  height: 50px;
  width: 150px;
  margin: 0 0 30px -20px;
  padding: 10px 10px 10px 0;
  background: var(--white);
}

.bookmark img {
	width: 120px;
	margin: 0;
	display: block;
}

.bookmark:after {
	content: "";
    position: absolute;
    right: -25px;
    top: 0;
    -webkit-transform: rotate(0deg) skew(0deg);
    transform: rotate(0deg) skew(0deg);
    border-top: 25px solid var(--white);
    border-bottom: 25px solid var(--white);
    border-right: 25px solid transparent;
}

.current::placeholder {
  color: #06242D;
  opacity: 1;
}

.filter_datepicker::placeholder {
  color: #06242D;
  opacity: 1;
}

.white-button {
	border-radius: 100px;
  max-width: 210px;
	color: var(--white);
	background: #126382;
	padding: 16px 48px;
	display: block;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
	text-align: center;
	transition: all 0.3s ease-in-out;
}

.white-button:hover, .cabin-slide.active .white-button {
	background: #26b0e5;
	color: white;
	transition: all 0.3s ease-in-out;
}

/*
==========================================================================
HOME SECTIONS
==========================================================================
*/

.grey-block {
	position: relative;
	background: var(--lightergrey);
	padding: 120px 0;
	/*text-align: center;*/
}

.grey-block-alt {
	position: relative;
	background: var(--lightergrey);
	padding: 30px 0;
	text-align: left;
}

.white-block {
	position: relative;
	background: var(--white);
	padding: 60px 0;
	text-align: center;
}

.white-block-alt {
	position: relative;
	background: var(--white);
	padding: 0;
	text-align: left;
}

.white-block-alt.title-header {
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.white-block h1 {
	margin: 0 0 10px 0;
}

.content-block {
	position: relative;
	background: var(--white);
	padding: 60px 0;
}

.eyebrow {
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--grey);
	margin: 0 0 10px 0;
}

.input-grid {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0 0 12px 0;
}

.input-grid .input-col {
  display: flex;
  gap: 4px;
  height: 24px;
  margin: auto;
  align-items: center;
}

.input-grid .input-col input {
  margin: 0;
}

.input-grid label {
  font-size: 12px;
  margin: 0;
  color: var(--white);
}

.input-grid input:checked+label {
  background-color: inherit;
}

.three-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-items: stretch;
    align-items: initial;
    margin: 50px auto;
}

.four-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-items: stretch;
    align-items: initial;
}

.img-hover-zoom {
	position: relative;
  overflow: hidden;
  height: 550px;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
	transition: all 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
}

.big-cards .img-hover-zoom {
	height: 350px;
}

.top-header {
  position: relative;
}

.included-perks {
  background-color: rgba(0, 0, 0, .6);
  color: var(--white);
  position: absolute;
  bottom: 0;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
  width: 100%;
}

.included-perks i {
  color: #F9EB4F;
  margin-right: 4px;
}

.three-grid .featured-cruise >div {
	height: 100%;
}

.image-alt {
	height: 290px;
}

.zoomer {
	height: 100%;
  height: 227px;
  border-radius: 10px;
  transition: transform .66s ease-in-out, filter 1.2s ease-in-out;
  transform-origin: center center;
  filter: brightness(80%) blur(.1px);
  transform: scale(1);
  /* box-shadow: 0 5px 5px -5px rgba(0,0,0,0.3); */
  /* box-shadow: 0 3px 3px 2px transparent; */
}

.four-col-content {
  padding-top: 16px;
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.four-col-content h3 {
  margin: 0;
}

.four-col-content h3 a {
  color: var(--bs-black);
  font-size: 24px;
  line-height: 120%;
  font-weight: 900;
}

.four-col-content p {
	color: var(--bs-black);
	margin: 0;
	font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.offer {
  background: #06242D;
  color: var(--white);
  border-radius: 10px;
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 14px;
  line-height: 24px;
  z-index: 9;
  font-weight: 700;
  padding: 5px 15px;
  text-transform: uppercase;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}

.offer span {
  font-size: 28px;
  display: block;
  line-height: 24px;
}

.offer-red {
  background: var(--pink);
  color: var(--white);
}

.four-col-content .icon-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  font-size: 14px;
  font-weight: 700;
  gap: 10px 30px;
}

.four-col-content .icon-item {
  display: flex;
  gap: 5px;
}

.three-slider .slick-slide,
.four-slider .slick-slide,
.grey-block .slick-slider .slick-slide,
.white-block .slick-slider .slick-slide {
  padding: 0 10px;
}

.four-slider .slick-track { display:flex !important; }
.four-slider .slick-slide { height:inherit !important;display:flex !important;justify-content:flex-start;align-items:flex-start; }
.four-slider .slick-slide > div { width:100%;height:100%; }

.three-slider .slick-dots,
.four-slider .slick-dots,
.deal-slider .slick-dots,
.why-slider .slick-dots,
.holiday-slider .slick-dots {
  bottom: 0px;
  right: 0;
}

.holiday-blocks { margin:60px 0;display:grid;grid-template-columns:1fr 1fr 1fr 1fr;grid-column-gap:32px;grid-row-gap:32px; }

.date-slider .slick-dots {
  bottom: -15px;
  right: 0;
}

.cabin-slider .slick-dots {
  bottom: -30px;
  right: 0;
}

.three-slider .slick-dots li button::before,
.four-slider .slick-dots li button::before,
.deal-slider .slick-dots li button::before,
.why-slider .slick-dots li button::before,
.holiday-slider .slick-dots li button::before {
  /* border: 0;
  color: var(--lightblue)!important;
  background: var(--lightblue)!important;
  border-radius: 50%; */
  border: 2px solid var(--grey);
  color: transparent!important;
  background: transparent!important;
  border-radius: 50%;
}

.three-slider .slick-dots li.slick-active button::before,
.four-slider .slick-dots li.slick-active button::before,
.deal-slider .slick-dots li.slick-active button::before,
.why-slider .slick-dots li.slick-active button::before,
.holiday-slider .slick-dots li.slick-active button::before {
  color: var(--grey)!important;
  background: var(--grey)!important;
}

.three-slider .slick-prev,
.four-slider .slick-prev,
.deal-slider .slick-prev,
.why-slider .slick-prev,
.holiday-slider .slick-prev {
  left: -60px;
}

.three-slider .slick-next,
.four-slider .slick-next,
.deal-slider .slick-next,
.why-slider .slick-next,
.holiday-slider .slick-next {
  right: -60px;
}

.grey-block .holiday-slider .slick-slide {
  margin: 0 16px;
  padding: 0;
}

/* .grey-block .holiday-slider .slick-slide > div { */
  /* height: 250px; */
  /* width: calc(100% + 30px);
  padding: 0 15px; 
  margin-left: -15px; 
  overflow: hidden; 
} */
/* 
.grey-block .holiday-slider .slick-list {
  overflow: visible;
} */


.blue-button {
	background: var(--darkblue);
	color: var(--white);
	padding: 10px 20px;
	display: inline-block;
	border-radius: 5px!important;
	margin: 30px 0;
	font-size: 14px;
	font-weight: 700;
	transition: all 0.3s ease-in-out;
	border: 0;
	cursor: pointer;
}

.blue-button:hover {
	background: var(--darkerblue);
	color: var(--white);
	transition: all 0.3s ease-in-out;
}


/* why section */

.why-celestyal-block {
	padding: 120px 0;
}

.why-celestyal {
    text-align: center;
}

.why-celestyal p {
    max-width: 846px;
    margin: 0 auto;
}

.why-items {
    margin-top: 56px;
    display: flex;
    gap: 25px;
}

.why-img img {
    width: 139px;
    height: 139px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 auto;
}

.why-img {
  margin-bottom: 24px;
  height: 139px;
}

.why-slider {
  margin-top: 56px;
}

.why-slider .slick-list {
  height: 290px;
}

.why-item {
  width: 25%;
}

.why-item p {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}


/*
==========================================================================
BLOCK GRID
==========================================================================
*/


.blocks-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 10px;
}
.grid-block {
	height: 390px;
	border: 1px solid #ddd;
}
.grid-block a { color:var(--darkergrey); }
.grid-block .zoomer {
	height: 260px;
}
.grid-block-content {
    z-index: 5;
    position: absolute;
    height: 130px;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.grid-block-content p {
	margin-bottom: 0;
}
.grid-block-content h2 {
	margin-bottom: 3px;
	font-size: 24px;
}
.cruiseline-grid a {
     color: var(--darkergrey);
}
.cruiseline-grid .grid-block {
     display: flex;
     flex-direction: column;
}
.cruiseline-grid .grid-block .image-container {
     height: 290px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
}
.cruiseline-grid .grid-block .grid-block-content {
  	width: 90%;
    margin: auto;
    left: 0;
    right: 0;
    border-top: 1px solid #ddd;
}
/*
==========================================================================
OFFER BLOCK
==========================================================================
*/

.offer-block {
	padding: 55px 0 72px;
  background-size: cover;
  background-position: center;
}

.offer-block.customer-testimonial .eyebrow {
  color: var(--white);
}

.offer-block-content {
	max-width: 790px;
  margin: auto;
  text-align: center;
}

.offer-block-content h2 {
	color: var(--white);
	font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  margin: 0 0 40px 0;
}

.offer-block-content .button {
  margin: auto;
}

.offer-block-content-full {
	color: var(--white);
}

.offer-block-content-full h2 {
	color: var(--white);
	font-weight: 700;
}

.logo-slider {
	margin: 20px 0;
}

.cabin-slider .slick-prev,
.logo-slider .slick-prev {
  left: -60px;
}


.cabin-slider .slick-next,
.logo-slider .slick-next {
  right: -60px;
}

.date-slider .slick-prev { left:-20px;z-index:1; }
.date-slider .slick-next { right:-20px;z-index:1; }
.date-slider .slick-dots { z-index:1; }

.cabin-slider .slick-dots li button::before,
.date-slider .slick-dots li button::before,
.logo-slider .slick-dots li button::before {
  /* border: 0;
  color: var(--lightblue)!important;
  background: var(--lightblue)!important;
  border-radius: 50%; */
  border: 2px solid var(--grey);
  color: transparent!important;
  background: transparent!important;
  border-radius: 50%;
}

.cabin-slider .slick-dots li.slick-active button::before,
.date-slider .slick-dots li.slick-active button::before,
.logo-slider .slick-dots li.slick-active button::before {
  color: var(--grey)!important;
  background: var(--grey)!important;
}

.three-slider .slick-dots,
.four-slider .slick-dots,
.logo-slider .slick-dots {
    position: absolute;
    bottom: -35px;
    right: 0;
    list-style: none;
    z-index: 9999;
}

.logo-content {
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.logo-content img {
	border: 1px solid var(--lightgrey);
	display: block;
	width: 100%;
	height: auto;
	padding: 20px;
}

.logo-blue {
	background: var(--midblue);
	color: var(--white);
	padding: 5px;
	font-weight: 700;
}

.logo-orange {
	background: var(--orange);
	color: var(--white);
	padding: 5px;
	font-weight: 700;
}

.logo-blue a, .logo-orange a { color:var(--white); }

.logo-content:hover {
  /* box-shadow: 0 5px 5px 2px rgba(0,0,0,0.3); */
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
	transition: all 0.3s ease-in-out;
}

.white-col {
	position: relative;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
  text-align: left;
	transition: all 0.3s ease-in-out;
}

.smaller-thumbnail .white-col {
  height: 196px;
}

.smaller-thumbnail h2 {
  color: var(--lighterblue);
}

.smaller-thumbnail .deal-slider .slick-slide {
  padding: 0 5px;
}

.smaller-thumbnail .c-orange {
  line-height: 24px;
}

.white-col-content {
  background: var(--white);
  padding: 16px;
  width: 100%;
  text-align: left;
  margin: 0;
}

.white-col-content img {
	display: block;
	text-align: center;
	max-width: 100px;
	margin: 0 auto;
}

.white-col-content {
  font: 28px 'TT Norms Pro', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 33.6px;
  color: #06242D;
}

.white-col-content .oc-white-container-text p {
  color: #06242D;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 14px;
}

.white-col-content .oc-icon-list {
  display: flex;
  gap: 8px;
  align-items: center;
}

.white-col-content .oc-icon-list span {
  color: #06242D;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.white-col-content .oc-icon-list img {
  margin: 0;
  width: 32px;
}

.white-col-content .oc-icon-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.white-col-content h3 {
	margin-bottom: 24px;
}

.white-col-content .oc-price-from {
color: #06242D;
font-size: 16px;
font-weight: 400;
line-height: 20px;
}

.white-col-content .oc-price-text, 
.white-col-content .oc-price-person {
  color: #06242D;
  font-size: 20px;
  font-weight: 900;
  line-height: 20px;
}

.white-col-content .oc-price-person {
  margin-left: -5px;
}

.oc-price-section {
  text-align: center;
}

.cruise-card-cta {
  display: flex;
}

.cruise-card-cta span {
  margin: auto;
  padding: 5px 34px;
  border-radius: 100px;
  border: 1.5px solid #06242D;
  color: #06242D;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  gap: 10px;
  transition: background-color 0.3s ease;
}

.cruise-card:hover .cruise-card-cta span {
  background-color: #F4EFEA;
}

.cruise-card-wrapper.is-hidden {
	display: none;
}

.oc-block-image-text-cta {
  padding: 120px 0;
}

.oc-block-container {
  position: relative;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
}

.brochure-image {
  width: 40%;
}

.brochure-image img {
  width: 416px;
  height: 312px;
  object-fit: contain;
}

.brochure-text {
  width: 60%;
}

.oc-block-cta-button {
  padding: 14px 34px;
  border-radius: 100px;
  background-color: #fff;
  border: 1.5px solid #06242D;
  font-family: 'TT Norms Pro';
  font-size: 14px;
  font-weight: 700;
  color: #06242D;
  transition: background 0.3s ease;
}

.oc-block-cta-button:hover {
  background-color: #F4EFEA;
}

.oc-block-description {
  margin-bottom: 40px;
}

.contact-us-block {
  padding: 120px 0;
  background-color: #F4EFEA;
  text-align: center;
}

.contact-us-options {
  display: flex;
  gap: 32px;
  margin-top: 64px;
}

.contact-us-option {
  width: 50%;
  background-color: #fff;
  padding: 32px 96px;
  border-radius: 10px;
}

.contact-us-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px auto;
  padding-bottom: 16px;
}

.contact-us-option-description p {
  font-size: 16px;
  color: #06242D;
  line-height: 20px;
}

.contact-us-link {
  color: #333;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  text-decoration: underline;
  cursor: pointer;
}


.white-col-content h5 {
	margin: 0;
}

.white-col-content h5 a { color:var(--midblue); }

.white-col-content p {
	margin: 0;
}

.strip {
	top: 10px;
	left: 0;
	z-index: 2;
	position: absolute;
	max-width: 160px;
}

.white-slide {
	height: 430px;
}

.white-slide .offer {
  top: 140px;
}

.smaller-thumbnail .white-slide .offer {
  top: 96px;
}

.red {
	color: var(--pink);
	font-size: 38px;
	font-weight: 700;
}

/*
==========================================================================
QUOTE
==========================================================================
*/

.quote-block {
	position: relative;
	padding: 60px 0;
	text-align: center;
	color: var(--white);
}

.quote-block:before {
	content: "";
	background: rgba(22, 78, 120, 0.7);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.quote-block h2,
.quote-block .eyebrow {
	color: var(--white);
}

.newsletter-block {
	position: relative;
	padding: 60px 0;
	text-align: left;
	color: var(--white);
}

.newsletter-container {
  border-radius: 10px;
  background: #F4EFEA;
  padding: 48px;
  max-width: 540px;
}

.newsletter-block h3,
.newsletter-block .eyebrow {
	color: var(--white);
}

.newsletter-container {
  color: #06242D;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.newsletter-block a { color:var(--white);text-decoration:underline; }

.nl {
	position: relative;
	margin: 20px auto;
	max-width: 700px;
}

.nl-text {
	font: 16px 'Noto Sans', Helvetica , Arial, sans-serif;
	width: 75%;
	display: inline-block;
	color: var(--midgrey);
	background: var(--white);
	border: 2px solid var(--white);
	padding: 10px;
	height: 46px;
	border-top-left-radius: 5px!important;
	border-bottom-left-radius: 5px!important;
}

.nl-go {
	display: inline-block;
	font: 14px 'Noto Sans', Helvetica , Arial, sans-serif;
	font-weight: 700;
	width: 25%;
	margin: 0 -2%;
	color: var(--white);
	background: none!important;
	border: 2px solid var(--white);
	padding: 10px;
	height: 46px;
	border-top-right-radius: 5px!important;
	border-bottom-right-radius: 5px!important;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.nl-go:hover {
	display: inline-block;
	color: var(--lightblue);
	background: var(--white)!important;
	border: 2px solid var(--white);
	transition: all 0.3s ease-in-out;
}

/*
==========================================================================
FOOTER BLOCK
==========================================================================
*/

.blue-block {
	background: var(--altblue);
	padding: 60px 0;
	position: relative;
	text-align: center;
	color: var(--white);
}

.blue-block-mascot {
  position: absolute;
  right: -100px;
  bottom: -7px;
  z-index: 0;
}

.four-item img {
	max-width: 100px;
	display: block;
	margin: 0 auto 10px auto;
}

.four-item i {
	font-size: 50px;
	display: block;
	margin: 0 auto 15px auto;
}

.blue-block h3 {
	color: var(--white);
	margin: 0 0 15px 0;
  font-size: 24px;
  line-height: 24px;
}

/*
==========================================================================
SEARCH RESULTS
==========================================================================
*/

.inner-hero {
	position: relative;
	padding: 60px 0;
}

.inner-hero h1,
.inner-hero h2,
.inner-hero h3,
.inner-hero h4,
.inner-hero h5,
.inner-hero h6 {
	color: var(--white);
}

.inner-hero:before {
	content: "";
	background: rgba(22, 78, 120, 0.7);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.main-filter {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 2fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-items: stretch;
    align-items: initial;
}

.sub-filter {
	display: none;
	border-top: 1px solid rgba(255,255,255,0.2);
	padding: 50px 0 0 0;
	margin: 50px 0 0 0;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-items: stretch;
    align-items: initial;
	transition: all 0.3s ease-in-out;
}

.show {
	display: grid!important;
	transition: all 0.3s ease-in-out;
}

.sub-filter .nice-select,
.main-filter .nice-select {
	border-radius: 5px;
}

.main-filter .light-blue-button {
	margin: 0;
	padding: 10px;
	height: 50px;
}


.ui-draggable, .ui-droppable {
	background-position: top;
}

.ui-slider {
    height: 10px!important;
    margin: 10px auto!important;
    padding: 0;
    width: 100%;
    border: 0!important;
    background: var(--white);
    border-radius: 2px;
}

#amount, .slider-label {
    border: 0;
    color: var(--lightblue);
    font-weight: bold;
    background: none;
    text-align: center;
    width: 100%;
    margin: 0 0 5px;
}

.ui-widget-header {
    border: 0;
    background: var(--lightblue);
}

.show-hide {
	display: block;
	margin: 30px auto 0 auto;
	cursor: pointer;
}

.show-hide i {
	margin: 0 0 0 20px;
}

.search-options {
	margin: 30px 0;
	padding: 0;
}

.search-options h6 {
  font-weight: 700;
  color: var(--darkblue);
  margin: -3px 0 0 0;
  font-size: 18px;
  line-height: 24px;
}

.search-hero .search-title {
  display: flex;
  gap: 4px;
  margin: 0;
}

.search-hero .search-title p {
  margin-bottom: 0;
}

.taglist {
	display: inline-block;
	margin: 0 0 0 30px;
}

.blue-button-alt {
	position: relative;
	display: inline-block;
	margin: 0 3px 6px 3px;
	background: var(--lightblue);
	color: var(--white);
	padding: 5px 25px 5px 15px;
	border-radius: 5px;
	font-weight: 600;
	cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.blue-button-alt::after {
    content: "\f00d";
    font-family: "Font Awesome 5 Free";
    color: var(--white);
    font-size: 10px;
    padding: 0 5px;
    margin: 0;
    cursor: pointer;
    position: absolute;
    right: 2px;
    top: 2px;
    font-weight: 900;
}

.blue-button-alt:hover {
	background: var(--midblue);
	color: var(--white);
  transition: all 0.3s ease-in-out;
}

.search-block-title {
  font-weight: 700;
  color: var(--midblue);
  display: inline-block;
  vertical-align: middle;
}

.search-block-title span {
	font-size: 12px;
	font-weight: 500;
	color: var(--darkergrey);
}

.search-filter {
  display: inline-block;
  float: right;
}

.search-filter .nice-select {
  background: var(--white);
  border-radius: 5px;
  color: var(--grey);
  border: 1px solid var(--lightgrey);
  width: 100px;
  padding: 1px 12px;
  height: 37px;
  line-height: 34px;
  font-weight: 400;
  margin: 0;
  font-size: 12px;
}

.search-filter .nice-select::after {
	content: "\f078";
  top: 1px;
}

.pagination {
	float: left;
}

.wp-pagenavi { display:flex;align-items:center; }

.pg-button a, .pagination span.current, .pagination-left .pg-button {
  background: var(--darkblue);
  /* padding: 5px 10px; */
  padding: 0;
  border-radius: 5px;
  color: var(--white);
  min-width: 40px;
  line-height: 40px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  margin: 0 2px 2px 0;
  transition: all 0.3s ease-in;
}

.pg-button a:hover, .pagination span.current, .pagination-left .pg-button:hover {
  background: var(--midblue);
  color: var(--white);
  transition: all 0.3s ease-in-out;
}

.pg-active {
  background: var(--grey);
  color: var(--white);
  transition: all 0.3s ease-in-out;
}

.page-no {
	margin: 0 0 0 20px;
	font-weight: 600;
	color: var(--midblue);
	order: 999;
}

.search-result {
	border: 1px solid var(--lightgrey);
	background: var(--white);
	margin: 30px 0;
}

.search-result:hover {
    box-shadow: 0 5px 5px 2px rgba(0,0,0,0.3);
	transition: all 0.3s ease-in-out;
}

.search-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 33% 67%;
    grid-column-gap: 0;
    grid-row-gap: 0;
    justify-items: stretch;
    align-items: flex-start;
}

.search-split {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    grid-column-gap: 0;
    grid-row-gap: 0;
    justify-items: stretch;
    align-items: flex-start;
}


.search-result h2 {
	font-size: 24px;
	/* margin: 0 0 5px 100px; */
  margin: 0 0 5px 10px;
	line-height: 26px;
}

.search-result h5 {
	color: var(--darkergrey);
	font-size: 12px;
	/* margin: 0 0 20px 100px; */
	margin: 0 0 20px 10px;
}

.search-split .search-col {
	position: relative;
  /* padding: 20px; */
  padding: 25px 20px;
  height: 100%;
  display: flex;
  flex-flow: column;
}

.search-col .col-lined {
  height: 100%;
}

.result-itinerary,
.result-includes {
    /* width: 80%; */
    width: 100%;
    /* display: grid;
    grid-template-columns: 1fr 2fr; */
    display: flex;
    grid-column-gap: 10px;
    grid-row-gap: 0px;
    justify-items: stretch;
    align-items: initial;
    margin: 16px 0 0;
}

.result-includes {
  margin: 0;
}

.result-itinerary > div,
.result-includes > div {
  min-width: 70px;
}

.result-itinerary > div:first-child, 
.result-includes > div:first-child {
  text-align: right;
}

.result-slider, .result-slide {
  min-height: 350px;
  height: 100%;
}

.search-result .search-col, .result-slider .slick-track,
.result-slider .slick-list {
  height: 100%;
  position: relative;
}

.blue-strong {
	color: var(--darkblue);
	font-weight: 600;
}

.col-padded {
	padding: 20px 20px 0 20px;
}

.search-col-top.col-padded {
  padding: 20px 32px;
}

.col-lined {
	border-left: 2px solid var(--lightgrey);
	padding: 0 0 0 30px;
	font-weight: 600;
	color: var(--midblue);
}

.col-lined .light-blue-button {
  width: 100%;
  padding: 10px;
  display: block;
}

.col-lined p {
	margin: 0;
}

.col-lined h5 {
  color: var(--midblue);
  font-size: 15px;
  margin: 0 0 10px 0;
}

.offer-red {
  background: var(--pink);
  color: var(--white);
  bottom: 50px;
  right: 20px;
  top: auto;
}

.offer-orange {
  background: var(--orange);
  color: var(--white);
  bottom: 50px;
  right: 20px;
  top: auto;
}

.offer.offer-orange {
  width: 50px;
  height: 50px;
  font-size: 18px;
}

/* .result-icons {
	margin: 20px 0 0 0;
} */

.result-icons img {
	width: 50px;
	margin: 0 10px 10px 0;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 70px;
  background-color: black;
  color: var(--white);
  text-align: center;
  border-radius: 0;
  padding: 5px 10px;
  font-size: 10px;
  position: absolute;
  text-transform: uppercase;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
  z-index: 1;
}

.result-icons .tooltip .tooltiptext {
  margin-left: -5px;
  bottom: 95%;
  transform: translateX(-50%);
}

.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.big-date {
	position: absolute;
	top: 20px;
	left: 30px;
  background: var(--darkblue);
  text-align: center;
  min-width: 70px;
  height: 70px;
}

.search-col-top {
  display: flex;
}

.search-col-top .item-titles {
  display: flex;
  flex-flow: column;
}

.single-cruises .big-date,
.search-col-top .big-date {
  position: relative;
  left: inherit;
  top: inherit;
}

.big-day {
  font-size: 30px;
  color: var(--white);
  font-weight: 600;
  margin: 0;
}

.big-nights {
	font-size: 12px;
	margin: -15px 0 0 0;
	color: var(--white);
}

.purple {
	background: var(--purple);
}

.price-row {
	color: var(--darkergrey);
  letter-spacing: -0.76px;
}

/*
==========================================================================
DESTINATIONS
==========================================================================
*/

.narrow-hero {
	position: relative;
	padding: 40px 0;
}

.narrow-hero h1 {
	color: var(--white);
	margin: 0;
}

.narrow-hero:before {
	content: "";
	background: rgba(22, 78, 120, 0);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.logo-slider .slick-dots {
	display: none;
}

.six-image-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-items: stretch;
    align-items: initial;
    margin: 30px auto;
}

.image-grid-col {
	position: relative;
}

.image-grid-col img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
}


.image-large .pop,
.image-small .pop,
.image-grid-col .pop {
	transition: all 0.3s;
	background: rgba(0, 0, 0, 0);
}

.image-large:hover .pop,
.image-small:hover .pop,
.image-grid-col:hover .pop {
	opacity: 1;
	background: rgba(0, 0, 0, 0.25);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.pop i {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 18px;
  transform: scale(1.5);
  color: var(--white);
	transition: all 0.8s ease-in-out;
}

.pop:hover i {
	transform: scale(1);
	transition: all 0.8s ease-in-out;
}

.fancybox-container {
  z-index: 99999999999999;
}

.grey-block-grid {
	position: relative;
	background: var(--lightergrey);
	padding: 60px 0;
	text-align: left;
}

.no-spacer {
	margin: 0;
}

.gallery-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-items: stretch;
    align-items: initial;
    margin: 0 auto 50px auto;
}

.single-cruises .gallery-grid {
  margin: 0 auto 24px auto;
}

.image-large {
	position: relative;
  height: 500px;
  width: 100%;
  display: block;
  overflow:hidden;
}

.image-small {
	position: relative;
  height: 240px;
  width: 100%;
  display: block;
}

.image-small:nth-of-type(2) {
	margin: 20px 0 0 0;
}

.wide-image {
	margin: 0 0 30px 0;
}

.wide-image img {
	width: 100%;
	height: auto;
}

.logo-col {
	padding: 40px;
	border: 1px solid var(--lightgrey);
}

.logo-col:hover {
	box-shadow: 0 5px 5px -5px rgba(0,0,0,0.3);
}

.three-one-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-items: stretch;
  align-items: inherit;
  margin: 0 auto;
}

.thirty-seventy {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-items: stretch;
  align-items: initial;
  margin: 0 auto 25px auto;
}

.thirty-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-items: stretch;
  align-items: end;
  margin: -25px auto 20px auto;
}

label,
.passenger-grid label {
  display: block;
  color: var(--midblue);
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.passenger-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-items: stretch;
  align-items: baseline;
  margin: 25px auto;
}

.passenger-grid-alt {
  margin: 25px auto 0 auto;
}

.passenger-grid .nice-select {
  font: 14px 'Noto Sans', Helvetica, Arial, sans-serif;
  color: var(--darkergrey);
  border: 0;
  background: var(--white);
  padding: 10px;
  height: 40px;
  border-radius: 5px !important;
  margin: 0 0 20px 0;
  border: 1px solid var(--lightgrey);
}

.passenger-grid .nice-select:after {
	content: "\f078";
	top: 10px;
}

.form-input {
  width: 100%;
  font: 14px 'Noto Sans', Helvetica, Arial, sans-serif;
  color: var(--darkergrey);
  border: 0;
  background: var(--white);
  padding: 10px;
  height: 40px;
  border-radius: 5px !important;
  margin: 0 0 20px 0;
  border: 1px solid var(--lightgrey);
}

.text-area {
	height: 150px;
}

.passenger-summary h1 {
	font-size: 24px;
	background: var(--midblue);
	padding: 20px;
	margin: 0;
	color: var(--white);
	display: block;
}

.passenger-summary h3 {
  margin: 20px 0;
  padding: 20px 0 0 0;
  border-top: 1px solid var(--lightgrey);
}

.ps-inner {
  border: 1px solid var(--lightgrey);
  padding: 20px 30px;
}

.ps-inner p {
	margin: 0 0 10px 0;
}

.ps-inner strong {
	color: var(--midblue);
}

.price-small {
  font-size: 12px;
  margin: 0 0 0 10px;
  color: var(--darkergrey);
}

.payment-type {
  width: 100%;
  margin: 0 auto 30px auto;
  border-bottom: 1px solid var(--lightgrey);
  padding: 0 0 30px 0;
}

.payment-col {
	display: inline-block;
	vertical-align: middle;
}

.payment-col h5 {
	font-size: 14px;
	font-weight: 700;
	color: var(--darkergrey);
	margin: 0 0 -5px 20px;
}

.payment-col p {
	font-size: 14px;
	font-weight: 400;
	color: var(--darkergrey);
	margin: 0 0 0 20px;
}

/*
==========================================================================
BLOG
==========================================================================
*/

.blog-image {
	height: 250px;
}

.large-blog-image {
	height: 500px;
}

.gallery-grid-alt {
	align-items: center;
	margin: 0 0 -20px 0;
	border: 1px solid var(--lightgrey);
}

.gallery-grid-alt:hover {
	box-shadow: 0 3px 3px 2px rgba(0,0,0,0.3);
	transition: all 0.3s ease-in-out;
}

.blog-image .zoomer {
	box-shadow: 0 5px 5px -5px rgba(0,0,0,0);
}

.blog-image:hover {
    box-shadow: 0 3px 3px 2px rgba(0,0,0,0);
	transition: all 0.3s ease-in-out;
}

.gallery-grid-alt:hover .zoomer,
.blog-col:hover .zoomer {
	filter: brightness(100%);
	transform: scale(1.3);
}

.gallery-grid-alt:hover .light-blue-button {
	background: var(--midblue);
	color: var(--white);
	transition: all 0.3s ease-in-out;
}

.blog-col {
	border: 1px solid var(--lightgrey);
	transition: all 0.3s ease-in-out;
}

.blog-col:hover {
	box-shadow: 0 3px 3px 2px rgba(0,0,0,0.3);
	transition: all 0.3s ease-in-out;
}

.blog-content {
	padding: 20px;
}

.blog-content h4 {
	font-size: 22px;
	margin: 0 0 10px 0;
}

.blog-content p {
	margin: 0 0 10px 0;
}

.blog-content a {
	color: var(--midblue);
	transition: all 0.3s ease-in-out;
	font-weight: 700;
}

.blog-content a:hover, .blog-content:hover a {
	color: var(--lightblue);
	transition: all 0.3s ease-in-out;
}

.small-date {
	font-size: 13px;
	color: var(--white);
	font-weight: 700;
}

.gallery-col {
	position: relative;
}

.gallery-col .small-date {
	color: var(--grey);
	text-transform: uppercase;
}

.blog-content-large {
	padding: 20px;
}

.blog-content-large p,
.blog-content-large h2 {
	margin: 0 0 10px 0;
}

.blog-content-large .light-blue-button {
	padding: 10px 20px;
	display: inline-block;
	width: 160px;
}

.other-blogs {
	margin: 20px 0 -20px 0;
}

.blog-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 20px;
    justify-items: stretch;
    align-items: initial;
}

.blog-grid .small-date {
	color: var(--grey);
	text-transform: uppercase;
}

blockquote {
	position: relative;
	margin: 30px 30px 30px 60px;
	font-weight: 700;
}

blockquote::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f10d";
  top: -20px;
  left: -60px;
  color: var(--midblue);
  font-size: 40px;
  position: absolute;
}

.blog-check {
	font-size: 13px;
}

.side-newsletter .blue-button {
	display: block;
	margin: 0;
	width: 100%;
}

.widget {
	margin: 0 0 30px 0;
	padding: 0 0 30px 0;
	border-bottom: 1px solid var(--lightergrey);
}

.blog-nav {
	position: relative;
	margin: 50px 0;
	padding: 50px 0;
	border-bottom: 1px solid var(--lightergrey);
}

.blog-nav-left {
		position: absolute;
		left: 0;
		top: 0;
  	margin: 0;
}

.blog-nav-right {
	position: absolute;
	right: 0;
	top: 0;
 	 margin: 0;
}

.blog-nav-center {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  text-align: center;
  width: 60px;
  display: block;
  margin: 0 auto;
}

/*
==========================================================================
CRUISESHIP
==========================================================================
*/

.ship-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-items: stretch;
  align-items: center;
  padding: 10px 30px 30px 30px;
  text-align: center;
}

.ship-grid i {
  font-size: 30px;
  margin: 0 0 20px 0;
  padding: 20px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: var(--midblue);
  color: var(--white);
}

.ship-grid p {
	margin: 0;
}

.ship-col strong {
	font-size: 15px;
  color: var(--lightblue);
}

.tab-container {
  clear: both;
  padding: 20px;
  border: 1px solid var(--lightgrey);
}

.ship-tabs .active:after {
    border-bottom: 3px solid var(--white);
}

.ship-tabs .tabs a {
	position: relative;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    background: var(--midblue);
    border: 1px solid var(--midblue);
}

.ship-tabs .tabs a:hover {
	color: var(--white);
    background: var(--lightblue);
    border: 1px solid var(--lightblue);
}

.ship-tabs .tabs a.active {
  background: none !important;
    border-top: 1px solid var(--lightgrey);
    border-left: 1px solid var(--lightgrey);
     border-right: 1px solid var(--lightgrey);
    border-bottom: 1px solid var(--white);
  color: var(--darkergrey);
}


.sidebar-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    justify-items: stretch;
    align-items: initial;
    margin: 0 auto 30px auto;
}

.sbg-col h2 {
	font-size: 16px;
	font-weight: 600;
	color: var(--blue);
}

.sbg-col .nice-select {
	width: 100%;
	margin: 0 0 15px 0;
	position: relative;
	z-index: 9;
}

.sbg-col .widget-txt {
	width: 100%;
	margin: 0 0 15px 0;
	z-index: 0;
}

.table-wrapper {
	width: 100%;
	display: block;
	height: 500px;
	margin: 0 0 30px 0;
}

.ship-table {
	background-color: var(--white);
	border: 0;
	width: 100%;
	display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 0px;
    padding: 10px;
     justify-items: stretch;
    align-items: center;
}

.sthead {
	background: var(--midblue);
	padding: 5px 10px;
	color: var(--white);
}

.ssthead {
	background: var(--midblue);
	padding: 5px 10px;
	color: var(--white);
}

.ship-table:nth-of-type(even) {
	background-color: var(--lightergrey);
}


.sthead .scol {
	padding: 5px 10px;
}

.scol :checked+label {
	background: none;
	color: var(--title);
}

.scol :checked+label p {
	display: none;
}

.checkboxes input[type="radio"][id^="cb"] {
  display: none;
}

.checkboxes span {
	margin: 0!important;
}

.checkboxes label {
  border: 0;
  background: var(--midblue);
  color: var(--white);
  padding: 10px 13px;
  font-size: 13px;
  height: 75px;
  width: 100%;
  text-align: center;
  display: block;
  position: relative;
  margin: 0;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.cb1 {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.cb4 {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.checkboxes label::before {
  background-color: var(--midblue);
  color: white;
  content: " ";
  display: block;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 28px;
  transition-duration: 0.4s;
  transform: scale(0);
}

.scheck {
	display: none;
	color: var(--midblue);
}

:checked+label {
	  background-color: var(--white);
}

:checked+label .sprice {
	display: none;
}


:checked+label .scheck {
	display: block;
	text-align: center;
	font-size: 12px;
	color: var(--midblue);
}


:checked+label p {
	display: block;
	text-align: center;
	font-size: 12px;
	color: var(--midblue);
}

:checked+label .scheck i  {
	display: block;
	text-align: center;
	color: var(--orange);
}

.checkboxes label p {
	margin: 0;
	text-align: center;
}


.table-wrapper .checkboxes label {
    border: 0;
    background: var(--midblue);
    color: var(--white);
    padding: 3px 20px;
    font-size: 13px;
    height: 20px;
    width: 75px;
    height: auto;
    width: auto;
    text-align: center;
    display: inline-block;
    position: relative;
    margin: 0;
    border-radius: 3px;
}

.tagspan {
	padding: 5px;
	color: var(--white);
	background: var(--lightblue);
	border-radius: 6px;
	padding: 5px 10px;
	display: inline-block;
	margin: 0 0 3px;
}

.tagorange {
	background: var(--orange);
}

.table-wrapper :checked+label {
	background: none;
	color: var(--darkerygrey);
    padding: 5px 20px;
    font-size: 13px;
    height: 25px;
    width: 75px;
	text-align: center;
}

.activecheck {
	border:2px solid var(--midblue)!important;
}

.mobcoltitle {
	display: none;
}

.table-wrapper {
    width: 100%;
    display: block;
    height: 500px;
    margin: 0 0 30px 0;
}

.deckplan {
    height: 100%;
    margin: 30px auto;
    max-width: 450px;
}

.cabin-extra {
  position: relative;
  display: block;
}

.cabin-left {
  float: left;
  width: 30%;
  margin: 0 5% 0 0;
}

.cabin-right {
  float: left;
  width: 65%;
  margin: 0;
}

/*
==========================================================================
CRUISEONLY
==========================================================================
*/

.cruise-only-col {
	position: relative;
}

/* .cruise-only-col .big-date {
  position: absolute;
  top: 0;
  left: 0;
} */

.gallery-grid-cruise {
	margin: -20px 0 0 0;
}

.cruise-only-col h2 {
	/* margin: 0 0 0 90px; */
  margin: 0;
  max-width: 70%;
	font-size: 30px;
	line-height: 35px;
}

.cruise-meta {
	margin: 20px 0;
	color: var(--midblue);
	font-weight: 600;
}

.two-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-items: stretch;
    align-items: last baseline;
    margin: 0 auto;
}

.cruise-only-col .strip {
	position: relative;
	top: auto;
	left: auto;
}

.cruise-only-col .offer {
  position: absolute;
  top: 0px;
  right: 0;
  bottom: auto;
}

.two-grid h5 {
	margin: 0;
	font-size: 16px;
}

.two-grid p {
  margin: 0;
}

.two-grid .light-blue-button,
.two-grid .blue-button {
	width: 100%;
	font: 14px 'Noto Sans', Helvetica, Arial, sans-serif;
	font-weight: 600;
	display: block;
	margin: 20px 0 0 0;
	text-align: center;
	padding: 10px!important;
}

.white-block-cruise {
  position: relative;
  background: var(--white);
  padding: 30px 0;
  text-align: center;
  border-top: 2px solid var(--lightergrey);
}

.perk-title {
  background: var(--midblue);
  padding: 10px;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
}

.perk-inner {
  background: var(--white);
  border: 1px solid var(--lightgrey);
  font-size: 16px;
  font-weight: 600;

  padding: 30px;
}

.perk-inner-with-header {
  margin: 0 0 10px;
}

.perk-inner--header {
  background-color: var(--orange);
  color: var(--white);
  text-align: center;
  font-size: 18px;
  min-height: 40px;
  margin: 0;
  font-weight: 600;
}

.perks-list {
  border: 1px solid var(--lightgrey);
  border-top: 0;
  padding: 30px;
  background: var(--white);
}

.perks-list i,
.perk-inner i {
	color: var(--midblue);
	margin: 0 10px 0 0;
}

.pack-two-table {
    max-height: 430px;
}

.package-two .ssthead {
    background: var(--white);
    padding: 5px 10px;
    color: var(--midblue);
    font-weight: 700;
}

.extra {
    color: var(--grey);
    margin: 0 20px 10px 0
}

.tab-row i {
    color: var(--midblue);
}

.tab-row {
	padding: 10px;
}

.table-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 0.3fr 1fr 2.3fr 0.3fr 0.5fr 0.5fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-items: stretch;
    align-items: initial;
    margin: 0 auto 0 auto;
    border-top: 1px solid var(--lightergrey);
}

.package-two .ssthead {
  background: var(--white);
  padding: 5px 10px;
  color: var(--lightblue);
  font-weight: 700;
  text-transform: none!important;
}

.extra {
    color: var(--text);
    margin: 0 20px 10px 0
}

.big-line {
	position: relative;
	width: 100%;
	height: 3px;
	margin: 60px auto 30px auto;
	background: var(--midblue);
}

.big-line-image {
	background: var(--white);
	position: absolute;
	left: 0;
	right: 0;
	width: 60px;
	padding: 10px;
	display: block;
	margin: -20px auto 0 auto;
	text-align: center;
}

.perk-padder {
	padding: 30px;
}

.centered {
	text-align: center;
}

.two-col {
	position: relative;
}

.step-icon {
	position: absolute;
	left: 0;
	font-size: 40px;
	color: var(--midblue);
}

.step-icon small i { transform:scale(0.8); }

.cabin-dates {
	margin: 50px auto;
}

.stepper-inputsss,
.stepper-inputss {
  position:relative;
  width:300px;
  height:80px;
  margin: 0 0 0 30px;
  overflow:hidden;
}


.stepper-inputs,
.stepper-input {
  position:relative;
  width:280px;
  height:80px;
  margin: 0 0 0 30px;
  overflow:hidden;
}

.stepper-inputsss input,
.stepper-inputss input,
.stepper-inputs input,
.stepper-input input {
  display:none;
}

.stepper-inputsss .input,
.stepper-inputss .input,
.stepper-inputs .input,
.stepper-input .input {
  width:100%;
  height:100%;
  display:flex;
}

.stepper-inputsss button,
.stepper-inputss button,
.stepper-inputs .input button,
.stepper-input .input button {
  width:40px;
  height:40px;
  margin: 10px 20px;
  border-radius:50%;
  background: var(--lightergrey);
  color: var(--darkergrey);
  font-size:14px;
  line-height:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  border:none;
  transition:all 300ms ease-in-out;
}

.stepper-inputsss .input .range,
.stepper-inputss .input .range,
.stepper-inputs .input .range,
.stepper-input .input .range {
  flex:1;
  text-align:center;
  overflow:hidden;
}

.stepper-inputsss .input .range .list span,
.stepper-inputss .input .range .list span,
.stepper-inputs .input .range .list span,
.stepper-input .input .range .list span {
  display:block;
  width:100%;
  height:80px;
  color: var(--midblue);
  font-size:20px;
  font-weight: 700;
  line-height:60px;
}

.step-label {
	display: inline-block;
	  color: var(--midblue);
  font-size:20px;
  font-weight: 700;
  line-height:60px;
  margin: 0 0 0 10px;
  width:90px;
}

.step-label span {
  color: var(--darkergrey);
  display: block;
  font-size: 12px;
  margin: -40px 0 0 0;
}

.cabin-dates .two-grid {
	margin: 30px auto;
}

.date-slide h4  {
	color: var(--white);
	margin: 10px 0 0 0;
	font-size: 22px;
	font-weight: 700;
}

.date-slide a { color:var(--white); }

.date-slide h5 {
	color: var(--white);
	margin: 0;
}

.date-slider {
	padding: 25px;
}

.cabin-slider .slick-slide,
.date-slider .slick-slide {
  padding: 0 5px;
}

.date-slide {
	cursor: pointer;
	background: var(--powderblue);
	color: var(--white);
	font-weight: 600;
	text-align: center;
	border-radius: 5px;
	padding: 20px;
	transition: all 0.3s ease-in-out;
}

.date-slide:hover {
	box-shadow: 0 3px 3px 2px rgba(0,0,0,0.3);
	transform: scale(1.1);
	transition: all 0.3s ease-in-out;
}

.date-slider .slick-list {
	padding: 20px 5px;
  overflow-y: clip!important;
}

.red-bg {
	background: var(--pink);
	margin: 50px 0 0 0;
}

.red-content p {
	margin: 0;
	font-weight: 700;
	color: var(--midblue);
}

.red-content {
	margin: 0 0 50px 0;
}


.orange {
	background: var(--orange);
}

.c-orange {
	color: var(--orange);
  font-size: 38px;
  line-height: 1;
	font-weight: 700;
}

.navy {
	background: var(--darkerblue);
}

.cabin-info {
  background: var(--midblue);
  position: relative;
  padding: 10px;
  color: var(--white);
}

.cabin-info h5 {
	color: var(--white);
	margin: 0 0 5px 0;
}

.cabin-slider {
	margin: 30px -15px;
	cursor: pointer;
}

.cabin-info::before {
  content: "";
  background: rgb(22,78,120);
  background: linear-gradient(0deg, rgba(22,78,120,1) 0%, rgba(0,0,0,0) 60%);
  height: 60px;
  width: 100%;
  left: 0;
  right: 0;
  position: absolute;
  top: -60px;
}

.cabin-price {
	font-weight: 700;
	margin: 0 0 5px 0;
}

.cabin-slide:not(.no-cabin):hover  .cabin-info, .cabin-slide.active .cabin-info {
  background: var(--orange);
  position: relative;
}

.cabin-slide:not(.no-cabin):hover .cabin-info::before, .cabin-slide.active .cabin-info::before {
  content: "";
background: rgb(255,153,0);
background: linear-gradient(0deg, rgba(255,153,0,1) 0%, rgba(0,0,0,0) 60%);
  height: 60px;
  width: 100%;
  left: 0;
  right: 0;
  position: absolute;
  top: -60px;
}

.cabin-info-button {
  background: var(--lightblue);
  width: 35px;
  height: 35px;
  position: absolute;
  right: 20px;
  bottom: 20px;
  border-radius: 50%;
  text-align: center;
  padding: 5px;
}

.cabin-slide {
	transition: all 0.3s ease-in-out;
}

.cabin-slide img { height:180px;width:100%; }

.cabin-slide:not(.no-cabin):hover {
	box-shadow: 0 3px 3px 2px rgba(0,0,0,0.3);
	transform: scale(1.1);
}

.cabin-slider .slick-list {
	padding: 32px 15px;
  overflow-y: clip!important;
}

.not-available {
	background: var(--midblue);
}

.cabin-not {
	padding: 50px;
	color: var(--white);
	text-align: center;
}

.not-available .cabin-price {
	margin: 0 0 20px 0;
}

.not-available h5 {
	color: var(--white);
	font-size: 30px;
	text-align: center;
}

.not-available .white-button {
  margin: 30px 0 0 0;
}

.cabin-slider .slick-track
{
    display: flex !important;
}

.cabin-slider .slick-slide
{
    height: inherit !important;
}

.cruise-meta-alt {
  margin: 20px 0 20px 90px;
  color: var(--darkblue);
  font-weight: 600;
}

.single-cruises .cruise-meta-alt {
  margin: 0 0 20px 14px;
}

.cruise-meta-alt h2 {
	margin: 0;
  max-width: 70%;
}

.cabin-logo {
  /* position: absolute; */
  top: 0;
  right: 0;
  /* height: 65px; */
  min-width: 396px;
  margin-left: auto;
}

.cruise-only-col .img-section,
.cabin-logo img { 
  height: auto;
  width: 150px; 
}

.cabin-logo > div > p { 
  letter-spacing: -0.76px; 
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.cabin-logo > div > p .cfp {
  font-size: 22px;
}

.cruise-only-col .offer,
.cabin-logo > div .offer {
  position: relative;
  top: inherit;
  left: inherit;
  bottom: inherit;
  right: inherit;
  margin: auto 0 auto auto;
}

.overview-col {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 0.5fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-items: stretch;
    align-items: initial;
}

.overview-col {
	border: 1px solid var(--lightergrey);
	margin: 30px 0;
}

.overview-col img {
	display: block;
	margin: 0;
}

.overview-row ul {
	margin: 30px 0;
	list-style: none;
}

.overview-row li  {
	margin: 10px 0;
	display: block;
	list-style: none;
	font-weight: 700;
	height: 30px;
}
.overview-row li.flex { line-height: 16px; }
.overview-row li.flex i { margin-right:10px; }

.overview-col i {
	color: var(--midblue);
	margin: 0 5px 0 0;
}

.edit {
	background: var(--lightblue);
	padding: 2px 4px;
	color: var(--white)!important;
	display: inline-block;
	border-radius: 5px;
	height: 30px;
	width: 30px;
	text-align: center;
	transition: all 0.3s ease-in-out;
}

.edit:hover {
	background: var(--midblue);
	color: var(--white)!important;
	transition: all 0.3s ease-in-out;
}

.edit i {
	color: var(--white);
	margin: 0;
}

.totals {
	border-top: 2px solid var(--lightergrey);
	margin: 30px auto;
	padding: 30px 0;
	  font-weight: 700;
	text-align: center;
}

.blue-bold {
  font-weight: 700;
  color: var(--midblue);
  margin: 0 0 -10px 0;
}

.total-block {
	max-width: 700px;
	margin: 20px auto;
}

.total-col .light-blue-button,
.total-col .blue-button {
  /* padding: 20px !important;
  margin: 0 0 10px 0; */
  padding: 0 !important;
  margin: 0 0 10px 0;
  height: 40px;
  line-height: 40px;
}

.share {
  margin: 30px 0 0 0;
}

.share .light-blue-button {
  margin: 20px 0 0 0;
  padding: 10px 20px;
}

.second-stick {
	display: none;
}

.stickys {
  position: fixed;
  display: block;
  left: 0;
  right: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 100000;
  background: white;
  /* box-shadow: 0 5px 5px -5px rgba(0,0,0,0.5); */
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.result-icons li {
  display: inline-block;
  margin: 0 20px 0 0;
}

.result-icons a {
	color: var(--lightblue);
	font-weight: 600;
	transition: all 0.3s ease-in-out;
}

.result-icons a:hover {
	color: var(--midblue);
	transition: all 0.3s ease-in-out;
}

.static-intro {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-items: stretch;
    align-items: initial;
    margin: -20px 0 0 0;
}

.static-col {
	font-weight: 700;
}

.static-col i{
	color: var(--midblue);
	margin: 0 5px 0 0;
	font-weight: 700;
}

.gallery-grid-alts {
    width: 100%;
    display: grid;
    grid-template-columns: 66% 33%;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-items: stretch;
    align-items: initial;
    margin: 0 auto 50px auto;
}

.cabin-slider-alt .slick-slide {
  margin: 0 10px;
}

.cabin-slide:not(.no-cabin):hover, .cabin-slide.active {
	box-shadow: 0 3px 3px 2px rgba(0,0,0,0.3);
	transform: scale(1.1);
	transition: all 0.3s ease-in-out;
	position: relative;
	z-index: 1;
}

.cabin-slider-alt .slick-list {
	padding: 20px 0;
  overflow-y: clip!important;
}

.gallery-col {
	position: relative;
}

.gallery-col .totals {
	border: 0;
}

.gallery-col .big-line {
	margin: 50px 0;
}

.cabin-slider-alt .white-button {
  width: 130px;
}

.fixed-side {
  position: sticky;
  border: 1px solid var(--lightergrey);
  top: 135px;
  right: 0;
  padding: 30px;
  	box-shadow: 0 3px 3px 2px rgba(0,0,0,0.3);
}

.fixed-side h3 {
	font-size: 24px;
	font-weight: 700;
}

.side-top {
	position: relative;
	border-bottom: 2px solid var(--lightergrey);
	padding: 0 0 20px 0;
}

.side-bottom {
	position: relative;
	padding: 20px 0 0 0;
}

.side-bottom p,
.side-top p {
	margin: 0;
	font-weight: 700;
}

.side-top .red {
  color: var(--pink);
  font-size: 38px;
  font-weight: 700;
  margin: -15px 0 0 0;
  display: inline-block;
}

.side-top .offer-red {
  background: var(--pink);
  color: var(--white);
  bottom: 10px;
  right: 0;
  top: auto;
}

.side-bottom ul {
	margin: 10px 0;
	font-weight: 700;
}
.side-bottom li { display:flex;align-items:center;margin:0 0 5px; }
	.side-bottom li:last-child { margin-bottom:0; }
.side-bottom i {
	color: var(--midblue);
	margin: 0 10px 0 0;
}

.side-bottom span { flex:1; }

.side-bottom a {
	float: right;
	color: var(--lightblue);
}

.side-bottom a:hover {
	float: right;
	color: var(--midblue);
}

.side-bottom .light-blue-button,
.side-bottom .blue-button {
	float: none;
	display: block;
	margin: 10px 0;
	padding: 10px 20px;
	color: var(--white);
	text-align: center;
	line-height:22px;
}


.side-bottom .blue-button:hover {
	background: var(--lightblue);
	color: var(--white);
	float: none;
	display: block;
}

.side-bottom .light-blue-button:hover {
	background: var(--midblue);
	color: var(--white);
	float: none;
	display: block;
}

.narrow-stick {
  position: sticky;
  width: 100%;
  top: 100px;
  background: var(--white);
  z-index: 100000;
  padding: 0 0 5px 0;
  box-shadow: 0 3px 3px 2px rgba(0,0,0,0.1);
  height: 65px;
}

.narrow-col {
	margin: 0;
}

.narrow-col .price-row {
  margin: 20px 10px 0 0;
  display: block;
}

.narrow-col .cruise-only-col .offer {
  top: 8px;
  right: 0;
}

.narrow-col .light-blue-button {
	display: inline-block;
	padding: 10px;
}

.narrow-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-items: stretch;
    align-items: center;
    font-weight: 700;
}

.narrow-grid .red {
  color: var(--pink);
  font-size: 28px;
  font-weight: 700;
  display: inline-block;
  margin: -20px 0 0 0;
}

.outbound-slide {
	padding: 30px 20px;
	border: 1px solid var(--lightergrey);
	text-align: center;
	background: var(--white);
		transition: all 0.3s ease-in-out;
}

.outbound-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-items: stretch;
    align-items: center;
    text-align: center;
    margin: 0 auto 20px auto;
}

.outbound-slide img {
	display: block;
	margin: 0 auto;
}

.outbound-grid h5 {
	margin: 20px 0 0 0;
}

.our-price {
	margin: -20px 0 0;
	font-weight: 700;
}

.out-where,
.out-time{
	font-size: 12px;
}

.line {
	position: relative;
	width: 100%;
	height: 3px;
	background: var(--midblue);
}

.grey-line {
  position: relative;
	width: 100%;
	height: 2px;
	background: var(--black);
  opacity: .1;
	margin: 80px auto 70px auto;
}

.line i {
	position: absolute;
	right: 0;
	top: -7px;
	background: var(--white);
	padding: 2px;
	color: var(--midblue);
}

.blue-button-alts {
	background: var(--darkblue);
	color: var(--white);
	padding: 10px 40px;
	display: inline-block;
	border-radius: 5px!important;
	margin: 10px 0 20px 0;
	font-size: 14px;
	font-weight: 700;
	transition: all 0.3s ease-in-out;
	border: 0;
	cursor: pointer;
}

.blue-button-alts:hover {
	background: var(--midblue);
	color: var(--white);
	transition: all 0.3s ease-in-out;
}

.cabin-slider .outbound-slide {
	margin: 0 5px;
}

.outbound-slide:hover {
	box-shadow: 0 3px 3px 2px rgba(0,0,0,0.3);
	transform: scale(1.1);
	transition: all 0.3s ease-in-out;
}

.orange-select {
  display: none;
  background: var(--orange);
  padding: 10px;
  position: absolute;
  bottom: 0;
  margin: 0 -5px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.orange-select i {
	margin: 0 10px 0 0;
}

.outbound-slide:hover .blue-button-alts {
	display: none;
}

.outbound-slide:hover .orange-select {
	display: block;
	transition: all 0.3s ease-in-out;
}

.hotel-price {
	display: block;
	margin: 0 0 20px 0;
}

.overview-alt {
	padding: 20px;
	font-weight: 700;
}

.adder {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  display: block;
}

/*
==========================================================================
FOOTER
==========================================================================
*/

footer {
  padding: 120px 0;
  clear: both;
  font-size: 14px;
  background-color: #06242D;
  color: white;
}

.footer-grid {
    width: 100%;
    /*display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-items: stretch;
    align-items: initial;*/
    display: flex;
    justify-content: space-between;
}

footer h5 {
  font-size: 20px;
  color: #fff;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.footer-logos {
  display: flex;
  gap: 20px;
}

footer a {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

footer a:hover {
	color: #f5eded;
	transition: all 0.3s ease-in-out;
}

.footer-grid .social-media {
  display: flex;
  flex-flow: column;
}

footer p {
  font-size: 14px;
  font-weight: 700;
}

.footer-logos img {
  width: 80px;
  height: auto;
}

.extra-grid {
	font-size: 12px;
	border-top: 2px solid var(--lightergrey);
	margin: 50px auto 0 auto;
	padding: 50px 0 0 0;
    width: 100%;
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    justify-items: stretch;
    align-items: initial;
}

.extra-grid.no-columns {
  grid-template-columns: 1fr;
}

.extra-grid.reverse {
  grid-template-columns: 1fr 2fr;
}

.extra-col img {
	max-width: 150px;
}

.extra-logos {
  display: flex;
  justify-content: flex-end;
}

.extra-logos img {
	max-width: 685px;
}

.departed-date {
  margin-top: 12px;
  color: var(--darkblue);
  font-size: 12px;
}

.second-stick .departed-date {
  margin-top: 3px;
}

.opening-times-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
}

.popup-inner {
  background: white;
  padding: 30px;
  max-width: 600px;
  text-align: center;
  width: 90%;
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.popup-inner p {
  font-size: 22px;
  line-height: 50px;
}

.popup-close {
  position: absolute;
  right: 15px;
  top: 10px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

.popup-inner .logo {
  margin: 0 0 10px 0;
}


/*
==========================================================================
MEDIA QUERIES
==========================================================================
*/


@media screen and (max-width: 1450px) {

.holiday-slider .slick-prev {
  left: -50px;
}

.holiday-slider .slick-next {
  right: -50px;
}

.three-slider .slick-dots,
.four-slider .slick-dots,
.logo-slider .slick-dots {
	display: block;
}

}

@media screen and (max-width: 1360px) {

.slick-next,
.slick-prev {
	display: none!important;
}


}

@media screen and (max-width: 1190px) {

.search-split {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 0;
    justify-items: stretch;
    align-items: center;
}

.col-lined {
	border-left: 0;
  border-top: 2px solid var(--lightgrey);
  padding: 30px 0;
	text-align: center;
}

.search-result h5 {
  margin: 0px 0 30px 100px;
}

.result-slider .slick-next,
.result-slider .slick-prev {
	display: block!important;
}

.search-grid {
  align-items: initial;
}

.col-lined h5 {
  margin: 0 0 10px 0 !important;
}

.offer-red {
  bottom: 80px;
  right: 20px;
}

}


@media screen and (max-width: 1050px) {

.hero {
	height: 80vh;
}

.hero-slide .inner {
  height: 80vh;
}

.hero-slider .slick-dots {
  display: none!important;
}

.light-hero-block {
  padding: 120px 20px 0 20px;
  max-width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tabs a.active {
  border-bottom: 1px solid rgba(22, 78, 120, 0.8);
}

.dark-hero-block {
  position: relative;
  top: 20px;
  left: 0;
  height: 400px;
  width: auto;
  background: none;
  margin: 0;
  padding:10px;
}

.grey-block .holiday-slider .slick-slide {
  margin: 0;
  padding: 0;
}

.hero-slider, .hero-slide {
  height: 80vh;
  position: relative;
}

.light-hero-block h2 {
  font-size: 48px;
  line-height: 57.6px;
}

.grey-block {
  padding: 60px 20px;
}

.why-celestyal-block {
  padding: 60px 20px;
}

.oc-block-image-text-cta {
  padding: 60px 20px;
  text-align: center;
}

.brochure-image {
  display: none;
}

.brochure-text {
  width: 100%;
}

.contact-us-block {
  padding: 60px 20px;
}

.contact-us-options {
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.contact-us-option {
  width: 100%;
  padding: 32px 32px;
}

.why-item p {
  margin-bottom: 30px;
}

.why-slider {
  margin-top: 30px;
}

.why-slider .slick-list {
  height: 300px;
}

.white-col-content .oc-white-container-text p {
  font-size: 16px;
}

}


@media screen and (max-width: 1020px) {

.search-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 50% 50%;
}

.nav-contact,
.nav-bar-bottom,
nav {
	display: none;
}

header {
	height: auto;
}

header .inner {
	padding: 0 5px;
}

.mobile-nav {
	display: block;
  background: #fff;
  align-items: center;
  z-index: 9;
  position: relative;
  padding: 5px 50px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin: auto;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.mobile-nav a {
  color: #06242D;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease-in;
}

.mobile-nav a i {
  color: #FF789B;
}

.mobile-nav .nav-button i {
  color: #06242D;
}
}

.mobile-nav  a:hover {
	color: var(--orange);
	transition: all 0.3s ease-in-out;
}

.nav-button {
  display: inline-block;
}

.fixed-side {
  top: 140px;
}

.nav-top-row {
  text-align: right;
  font-size: 14px;
}

.alert-block {
	font-size: 12px;
}

.alert-block p {
	padding: 0 10px 0 0;
	line-height: 25px;
}

.alert-block strong {
  margin: 0;
}

.four-grid {
  grid-template-columns: 1fr 1fr;
}

.footer-grid {
  grid-template-columns: 1fr 1fr 1fr;
}

.sub-filter,
.main-filter {
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr;
}

.taglist {
	display:block;
	margin: 10px 0 0 0;
}

.three-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.content-block {
  padding: 30px 0 60px 0;
}

.three-one-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
 grid-column-gap: 0;
grid-row-gap: 0;
}

.ship-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.two-grid-cabin {
	  grid-template-columns: 1fr;
}

.cabin-logo {
  position: relative;
  top: 0;
  right: 0;
  text-align: center;
  margin: -20px 0;
}

}

@media screen and (max-width: 980px) {

.adder-col {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
}

.adder-col .two-col {
  position: relative;
  margin: 0 auto;
  text-align: center;
}
.blocks-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
}

}

@media screen and (max-width: 900px) {

.gallery-grid-alts {
  width: 100%;
  display: block;
  margin: 0 auto 50px auto;
}
.fixed-side {
  position: relative;
  top: auto !important;
  right: auto;
}

.cruise-only-col .cabin-logo {
  margin: -20px 0 0px 0;
}
}

@media screen and (max-width: 768px) {

.stickys {
	display: none;
}

.blog-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-items: stretch;
    align-items: initial;
}

.blog-nav-center,
.blog-nav-right,
.blog-nav-left {
  top: -20px;
}

.payment-col {
	display: block;
	text-align: center;
	margin: 0;
}

.payment-col h5, .payment-col p {
	display: block;
	margin: 0 0 5px 0;
}

.search-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 100%;
}

.inner.top-header {
  display: none;
}

header {
  padding: 0;
}

.logo {
  width: 200px;
  margin: -5px 0 -13px;
}

.nav-button {
  margin-right: -60px;
}

.my-bookings {
	display: none!important;
}

.nav-top-row {
  margin: 15px 0 0 0;
}

.mobile-nav {
  padding: 18px 20px;
}

.footer-grid {
  grid-template-columns: 1fr 1fr;
}

.holiday-blocks {
  grid-template-columns: 1fr;
  margin: 30px 0 0 0;
}

.passenger-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
 grid-column-gap: 0;
grid-row-gap: 0;
}

.cruise-only-col h2,
h1,
h2 {
	font-size: 40px;
}

p {
  font: 16px 'TT Norms Pro', Helvetica, Arial, sans-serif;
}

footer {
  padding: 30px 15px;
  clear: both;
}

.blue-block h3 {
	font-size: 24px;
}

.extra-grid {
  	grid-template-columns: 1fr;
 	grid-column-gap: 20px;
	grid-row-gap: 0px;
}

.mobile-hide {
	display: none !important;
}

.footer-logos {
  margin-left: 20px;
}

.desktop-hide { display:unset !important; }

.gallery-grid {
  grid-template-columns: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.image-large {
	height: 240px;
}

.six-image-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  }

.blog-content-large {
  padding: 0 20px 20px 20px;
}

.large-blog-image {
  height: 250px;
}


.sidebar-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}


.ship-tabs .tabs li {
  float: none;
  width: 100%;
  margin: 0 0 10px 0;
}

.ship-tabs .tabs a {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  display: block;
  text-align: center;
  border: 0;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--midblue);
}

.ship-tabs .tabs a.active {
  margin: 0;
  padding: 10px;
  border: 1px solid var(--lightergrey);
}

.ship-tabs .active::after {
    display: none;
}

.cabin-left {
  float: none;
  width: 100%;
  margin: 0 0 20px 0;
}

.cabin-right {
  float: none;
  width: 100%;
  margin: 0 0 20px 0;
}

 .two-grid,
.cabin-dates .two-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
}

.overview-col {
  grid-template-columns:2fr 1fr;
}

.overview-col {
  border: 1px solid var(--lightergrey);
  margin: 0;
  padding: 30px;
}

.overview-row ul {
  margin: 20px;
  list-style: none;
}

.row-image {
display: none;
}

.cabin-dates .two-col {
  position: relative;
  margin: 0 auto;
}

}


@media screen and (max-width: 600px) {

.blue-button {
	margin: 50px auto 20px auto;
}

.cabin-slider .slick-dots,
.date-slider .slick-dots,
.three-slider .slick-dots,
.four-slider .slick-dots,
.logo-slider .slick-dots,
.deal-slider .slick-dots
 {
  right: 0;
  text-align: center;
  left: 0;
}

.sub-filter,
.main-filter {
  width: 90%;
  margin: 0 auto;
  grid-template-columns: 1fr;
}
.blocks-grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 10px;
}

}


@media screen and (max-width: 480px) {

.three-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
}

}


@media screen and (max-width: 320px) {

 .container {
	min-width:240px;
	width:100%;
 }

}