html {
	height: 100%;
}
body {
	height: 100%;
	font-family: 'Raleway', sans-serif;
	color: #333333;
}
.certificates {
	font-size: 11px;
	line-height: 1;
}

/* Site Name in NavBar 
----------------------------------------------------------------------------- */
.site-name {
	font-size: 34px;
	font-weight: 400;
}


/* Nav-Link styling in NavBar
----------------------------------------------------------------------------- */
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,1.0);
	font-size: 1.1rem;
	padding: 10px 20px;
}

.navbar-dark .navbar-nav .nav-link.active {
  color:#296fad;
}

.navbar-dark .navbar-nav .nav-link:focus {
	color:#c6ccd8;
}
	
.navbar-dark .navbar-nav .nav-link:hover {
	color:#c6ccd8;
}

.navbar-dark .navbar-nav .active>.nav-link {
	color:#296fad;
}

/* Dropdown Items styling in NavBar */

/* Collapsed NavBar Menu Background Colour */
@media (max-width: 992px) {
	.navbar-collapse
	  {
		background-color: rgba(0,0,0,0.8);
	  }
	.fixed-top.scrolled .navbar-collapse
	  {
		background-color: rgba(255,255,255,1);
	  }
	.navbar-dark .navbar-nav .dropdown-menu {
		margin: .125rem 0 0;
		background-color: rgba(0,0,0,0);
		background-clip: padding-box;
		border: none;
		padding-left: 10px;
	}
  }

/* NavBar Button Outline */
button.navbar-toggler, button.navbar-toggler:focus, button.navbar-toggler:active {
	outline-color: #296fad;
	outline: 1px;
} 
  
/* Change the colour of nav-pill links on mouse-over */
.pill-nav a:hover {
	background-color: #ddd;
	color: black;
}

.pill-nav a {
	background-color: #f5f5f5;
	color: black;
	
}

/* Add a color to the active/current link */
.pill-nav a.active {
	background-color: #444444 !important;
	color: white;
}

/* Define the shape and color of the 3 hamburger lines inside navbar-toggler */
.navbar-toggler span {
    display: block;
    background-color: #a6a6a6;
    height: 3px;
    width: 25px;
    margin-top: 5px;
    margin-bottom: 5px;
    position: relative;
    left: 0;
    opacity: 1;
    transition: all 0.35s ease-out;
    transform-origin: center left;
}

/* top line needs a little padding */
.navbar-toggler span:nth-child(1) {
    margin-top: 0.3em;
}

/**
 * Animate collapse into X.
 */

/* top line rotates 45 degrees clockwise and moves up and in a bit to close the center of the X in the center of the button */
.navbar-toggler:not(.collapsed) span:nth-child(1) {
    transform: translate(15%, -33%) rotate(45deg);
}
/* center line goes transparent */
.navbar-toggler:not(.collapsed) span:nth-child(2) {
    opacity: 0;
}
/* bottom line rotates 45 degrees counter clockwise, in, and down a bit to close the center of the X in the center of the button  */
.navbar-toggler:not(.collapsed) span:nth-child(3) {
    transform: translate(15%, 33%) rotate(-45deg) ;
}

/**
 * Animate collapse open into hamburger menu
 */

/* top line moves back to initial position and rotates back to 0 degrees */
.navbar-toggler span:nth-child(1) {
    transform: translate(0%, 0%) rotate(0deg) ;
}
/* middle line goes back to regular color and opacity */
.navbar-toggler span:nth-child(2) {
    opacity: 1;
}
/* bottom line goes back to initial position and rotates back to 0 degrees */
.navbar-toggler span:nth-child(3) {
    transform: translate(0%, 0%) rotate(0deg) ;
}

/* NavBar Dropdown on Hover */
.dropdown:hover>.dropdown-menu{
	display: block;
}

/* Fullscreen NavBar Background Colour */
@media (min-width: 768px) {
	.navbar-dark .navbar-nav .dropdown-menu {
		margin: .125rem 0 0;
		background-color: rgba(0,0,0,0.8);
		background-clip: padding-box;
		border: none;
	}
}

.navbar-dark .navbar-nav .dropdown-item {
    color: rgba(255,255,255,1.0);
	font-size: 1.1rem;
	padding: 10px 20px;
}

.navbar-dark .navbar-nav .dropdown-item:focus, 
.navbar-dark .navbar-nav .dropdown-item:hover {
    color: #85a1c1;
    text-decoration: none;
    background-color: rgba(0,0,0,0);
}

.navbar-dark .navbar-nav .dropdown-item.active {
	color:#296fad;
}

/* Change Navbar Colour on Scroll */
.fixed-top {
	transition: background-color 200ms linear;
}

.fixed-top.scrolled {
	background-color: #fff !important;
	transition: background-color 200ms linear;
}

.fixed-top.scrolled .dropdown-menu {
	background-color: rgba(255,255,255,1);
}

.fixed-top.scrolled .nav-link {
	color:#666666;
}

.fixed-top.scrolled .dropdown-item,
.fixed-top.scrolled .dropdown-item:focus
{
	color:#666666;
	background-color: rgba(255,255,255,1);
}

.fixed-top.scrolled .nav-link:focus {
	color:#666666;
}

.fixed-top.scrolled .dropdown-item.active {
	color:#296fad;
	background-color: rgba(255,255,255,1);
}

.fixed-top.scrolled .nav-link:hover {
	color:#000000;
}

.fixed-top.scrolled .dropdown-item:hover {
	color:#000000;
	background-color: rgba(255,255,255,1);
}

.fixed-top.scrolled .navbar-brand {
	color:#555555;
}

.fixed-top.scrolled .navbar-toggler {
	border-color:#bbbbbb;
	outline-color: #296fad;
} 

/* Hide "Logout" text for smaller viewports */
@media (max-width:1080px) {
	.account_label {
		display: none;
	}
}

/* Hide or Show depending on viewport size */
@media (max-width:767px) {   /* Hide for screens with width < 767 */
	.hidemax767 {
		display: none;
	}
}
@media (min-width:767px) {   /* Hide for screens with width > 767 */
	.hidemin767 {
		display: none;
	}
}



/* NavBar End */

/* Banners
----------------------------------------------------------------------------- */
.banner-image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../img/banner.jpg");
  height: 60%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-top: 0px;
}

.banner-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  color: white;
}

.banner-title {
	color: #ffffff;
	font-size: 70px;
	font-weight: 500;
}

.banner-caption {
	color: #ffffff;
	font-size: 28px;
	font-weight: 400;
}

.scheme-banner-caption {
	color: #ffffff;
	font-size: 32px;
	font-weight: 400;
}

.scheme-banner-image {
	background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../img/scheme-banner.jpg");
	height: 30%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	margin-top: 0px;
}

.faqs-banner-image {
	background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../img/faqs-banner.jpg");
	height: 30%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	margin-top: 0px;
}

.calculator-banner-image {
	background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../img/calculator-banner.jpg");
	height: 22%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	margin-top: 0px;
}

.offset-banner-image {
	background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("../img/offset-banner.jpg");
	height: 22%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	margin-top: 0px;
}

@media (max-width:767px) {
.banner-title {
	font-size: 48px;
	font-weight: 400;
}
.banner-caption {
	font-size: 18px;
	font-weight: 300;
}
}


/* Text properties 
----------------------------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5 {
	color: #444444;
}
h1 {
	font-size: 38px;
	font-weight: 700;
}
h2 {
	font-size: 38px;
	font-weight: 700;
}
h3 {
	font-size: 28px;
}
h4 {
	font-size: 16px;
	font-weight: 700;
}
h5 {
	font-size: 16px;
	font-weight: 600;
	color: #296fad;
}

h1 span.blue,
h2 span.blue,
h3 span.blue,
h4 span.blue,
h5 span.blue,
p span.blue,
a span.blue,
span.blue {
	color: #296fad;
}
.text-colored {
	color: #296DAA;
}
a {
	color: #296DAA;
}
a:hover {
	color: #339BEB;
}
a:focus,
a:active {
	outline: none;
}

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

.p80 {
	padding: 80px 0;
}

.p60 {
	padding: 60px 0;
}

.p40 {
	padding: 40px 0;
}

.greenil {
	color: #0B6623;
}

.greenback {
	background-color: #0B6623;
	color: #ffffff;
}

.whitehead {
	color: #ffffff;
}

.borderWhite {
	border-color: white;
}

input.contact_form_h {
	display: none;
}

.calcTitle {
	font-size: 1.25rem;
	font-weight: 500;
}

/********************************/
/*          Panel cards         */
/********************************/
.panel.panel-card {
    position: relative;
    height: 241px;
    border: none;
    overflow: hidden;
	background-color: #ffffff;
}
.panel.panel-card .panel-heading {
    position: relative;
    z-index: 2;
    height: 120px;
    border-bottom-color: #fff;
    overflow: hidden;
    -webkit-transition: height 600ms ease-in-out;
            transition: height 600ms ease-in-out;
}
.panel.panel-card .panel-heading img {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 120%;
    -webkit-transform: translate3d(-50%,-50%,0);
            transform: translate3d(-50%,-50%,0);
}
.panel.panel-card .panel-heading button {
    position: absolute;
    top: 10px;
    right: 15px;
    z-index: 3;
}
.panel.panel-card .panel-figure {
    position: absolute;
    top: auto;
    left: 50%;
    z-index: 3;
    width: 70px;
    height: 70px;
    background-color: #fff;
    border-radius: 50%;
    opacity: 1;
    -webkit-box-shadow: 0 0 0 3px #fff;
            box-shadow: 0 0 0 3px #fff;
    
    -webkit-transform: translate3d(-50%,-50%,0);
            transform: translate3d(-50%,-50%,0);
    
    -webkit-transition: opacity 400ms ease-in-out;
            transition: opacity 400ms ease-in-out;
}

.panel.panel-card .panel-body {
    padding-top: 40px;
    padding-bottom: 20px;

    -webkit-transition: padding 400ms ease-in-out;
            transition: padding 400ms ease-in-out;
} 

.panel.panel-card .panel-thumbnails {
    padding: 0 15px 20px;
}
.panel.panel-card .panel-thumbnails span {
	color: #296fad;
}
.panel-thumbnails .thumbnail {
    width: 60px;
    max-width: 100%;
    margin: 0 auto;
    background-color: #fff;
} 

.panel.panel-card:hover .panel-heading {
    height: 55px; /* Hover Over Distance From Top */
    
    -webkit-transition: height 400ms ease-in-out;
            transition: height 400ms ease-in-out;
}
.panel.panel-card:hover .panel-figure {
    opacity: 0;
    
    -webkit-transition: opacity 400ms ease-in-out;
            transition: opacity 400ms ease-in-out;
}
.panel.panel-card:hover .panel-body {
    padding-top: 20px;
    
    -webkit-transition: padding 400ms ease-in-out;
            transition: padding 400ms ease-in-out;
}

.panel-text {
	opacity: 0;
}

.panel.panel-card:hover .panel-text {
    opacity: 1;
    
    -webkit-transition: opacity 400ms ease-in-out;
            transition: opacity 400ms ease-in-out;
}



/* Calculation Images
---------------------------------- */
.calcImg {
	cursor: pointer;
}


/* Contact Form List and Text
----------------------------------------------------------------------------- */
.contact-text {
	font-size: 18px;
}
.list-icons {
	padding: 0;
	margin: 20px 0;
	list-style: none;
	font-size: 18px;
}
.list-icons li {
	padding: 0 0 15px 0;
}
.input-group>.input-group-append {
    flex: 0 0 8%;
}
.input-group .input-group-text {
    width: 100%;
}

/* Social Links
---------------------------------- */
.social-links {
	padding: 0;
	list-style: none;
	margin: 15px 0;
}
.social-links li {
	margin: 10px 25px 10px 0;
	display: inline-block;
	font-size: 36px;
}

/* Buttons
---------------------------------- */
.btn-1 {
	padding: 8px 15px;
	font-size: 14px;
	line-height: 1.42857143;
	min-width: 160px;
	text-align: center;
	border-radius: 0;
	text-transform: uppercase;
	-webkit-transition: all 0.2s ease-in-out; /* Safari */
	transition: all 0.2s ease-in-out;
}
.btn-2 {
	color: #296DAA;
	border: 1px solid #cccccc;
}
.btn-2:hover {
	color: #ffffff;
	background-color: #296DAA;
	border-color: #296DAA;
}
.cc-btn:hover {
	color: #ffffff !important;;
	background-color: #296DAA !important;;
	border-color: #ffffff !important;;
}
.csv-download {
	display: inline-block;
	text-align: center;
}

/* Carousel Cursor
----------------------------------------------------------------------------- */
.carousel-item.active {
	cursor: grabbing;
}

/* Google Map
----------------------------------------------------------------------------- */
#map {
    width: 100%; height: 400px; margin-top: 40px; margin-bottom: 40px;
}

.info-window {
    font-family: 'Montserrat', sans-serif;
}
.info-content {
    color: #999;
}


/* Copyright Footer
----------------------------------------------------------------------------- */
.cfooter {
	background-color: #fafafa;
	border-top: 1px solid #f3f3f3;
	border-bottom: 1px solid #f3f3f3;
	padding: 40px 0;
}
.cfooter p {
	margin-bottom: 0;
}




/* Backgrounds
----------------------------------------------------------------------------- */
.default-bg {
	background-color: #222222;
	color: #ffffff;
}
.default-bg.blue {
	background-color: #296DAA;
}
.default-bg.grey {
	background-color: #909090;
}
.default-bg.greenTranslucent {
	background-color: rgba(0, 66, 37, 0.1);
	color: #333333;
}
.default-bg.greenTranslucent h2 {
	color: #444444;
}
.default-bg.greyTranslucent {
	background-color:rgba(51, 68, 85, 0.3);
	color: #333333;
}

.translucent-bg {
	color: #ffffff;
	overflow: auto;
}

.default-bg h1,
.default-bg h2,
.default-bg h3,
.default-bg h4,
.default-bg h5,
.default-bg h6,
.translucent-bg h1,
.translucent-bg h2,
.translucent-bg h3,
.translucent-bg h4,
.translucent-bg h5,
.translucent-bg h6 {
	color: #ffffff;
}
.default-bg blockquote footer,
.translucent-bg blockquote footer {
	color: #cccccc;
}
.default-bg.greyTranslucent h3,
.default-bg.greyTranslucent h4 {
	color: #333333;
}

.default-bg a:hover,
.translucent-bg a:hover {
	text-decoration: none;
}
.translucent-bg {
	-webkit-background-size: cover !important; /* Safari */
	background-size: cover !important;
	background-position: 50% 0;
	background-repeat: no-repeat;
	z-index: 1;
	position: relative;
}
.translucent-bg .translucent-bg {
	margin-top: 80px;
	z-index: 3;
}
.translucent-bg:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
}
.translucent-bg.blue:after {
	background-color: rgba(85, 172, 238, 0.7);
}
.translucent-bg.grey:after {
	background-color: rgba(80, 80, 80, 0.1);
}
.translucent-bg .container {
	z-index: 3;
	position: relative;
}


/* Visible and Invisible objects */
.object-non-visible {
	opacity: 0;
	filter: alpha(opacity=0);
}
.object-visible,
.touch .object-non-visible {
	opacity: 1 !important;
	filter: alpha(opacity=100) !important;
}

/* FadeIn */

.fadeIn {
  opacity: 0;
  animation: fadeIn 1.8s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Assign JQuery 3 Smooth Scroll function to HTML (overrides default scroll - doesn't work on Safari, IE or Edge) 
html {
	scroll-behavior: smooth;
  } */


/* Accordian Panel Collapse Styling
---------------------------------- */
.panel-group .panel {
	-webkit-border-radius: 0px;
	border-radius: 0px;
	border: none;
}
.panel-default > .panel-heading {
	padding: 0;
	outline: none;
	border: none;
	-webkit-border-radius: 0; /* Safari */
	border-radius: 0;
	width: 100%;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
	border: 1px solid #f0f0f0;
	border-top: none;
	background-color: #fafafa;
}
.panel-heading a {
	font-weight: 400;
	padding: 12px 35px 12px 15px;
	display: inline-block;
	width: 100%;
	background-color: #296DAA;
	color: #ffffff;
	position: relative;
	text-decoration: none;
}
.panel-heading a.collapsed {
	color: #ffffff;
	background-color: #333333;
}
.panel-heading a:after {
	font-family: "Font Awesome 6 Free";
	content: "\f146";
	position: absolute;
	right: 15px;
	font-size: 14px;
	font-weight: 300;
	top: 50%;
	line-height: 1;
	margin-top: -7px;
}
.panel-heading a.collapsed:after {
	content: "\f0fe";
}
.panel-heading a:hover {
	text-decoration: none;
	background-color: #296DAA;
	color: #ffffff;
}
.panel-title a i {
	padding-right: 10px;
	font-size: 16px;
}

/* Accordian Panel Collapse Styling (FAQs)
---------------------------------- */
.panel-group1 .panel {
	-webkit-border-radius: 0px;
	border-radius: 0px;
	border: 1px;
}
.panel-default1 > .panel-heading1 {
	padding: 0;
	outline: none;
	border: none;
	-webkit-border-radius: 0; /* Safari */
	border-radius: 0;
	width: 100%;
}
.panel-default1 > .panel-heading1 + .panel-collapse > .panel-body1 {
	border: 1px solid #000;
	border-top: none;
	background-color: #333333;
}
.panel-heading1 a {
	font-weight: 500;
	padding: 17px 35px 17px 15px;
	display: inline-block;
	width: 100%;
	background-color: #ffffff;
	color: #333333;
	position: relative;
	text-decoration: none;
	border: 1px solid #000000;
	box-shadow: 0 0 0 3px rgba(11, 102, 35, 0.5);
	transition: all 0.5s ease;
}
.panel-heading1 a.collapsed {
	color: #333333;
	background-color: #ffffff;
	border: 1px solid #000000;
	box-shadow: none;
}
.panel-heading1 a:after {
	font-family: "Font Awesome 6 Free";
	content: "\f146";
	position: absolute;
	right: 15px;
	font-size: 14px;
	font-weight: 300;
	top: 50%;
	line-height: 1;
	margin-top: -7px;
}
.panel-heading1 a.collapsed:after {
	content: "\f0fe";
}
.panel-heading1 a:hover {
	text-decoration: none;
	background-color: #333333;
	color: #ffffff;
}
.panel-title1 a i {
	padding-right: 10px;
	font-size: 16px;
}

/* Dashboard Counter
---------------------------------- */
.counter {
    background-color:#f5f5f5;
    padding: 20px 0;
    border-radius: 5px;
}

.count-title {
    font-size: 40px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

.count-text {
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

.fa-2x {
    margin: 0 auto;
    float: none;
    display: table;
    color: #296DAA;
}

/* Image Size Restrictions */
.hexicon {
	max-width:160px;
	max-height:136px;
}

.imaxh80res {
	max-height:80px;
}
@media (max-width:567px) {
	.imaxh80res {
		max-height:40px;
	}
}


.imaxh120 {
	max-height:120px;
}

.imaxh140 {
	max-height:140px;
}

.imaxh150 {
	max-height:150px;
}

.imaxh160 {
	max-height:160px;
}

.lead1 {
    font-size: 1.25rem;
}

.bullets {
	font-size: 1.25rem;
	text-align: left;
	font-weight: 500;
}

.whytitle {
	font-size: 1.25rem;
	font-weight: 500;
}

@media (max-width:767px) {
	.bullets {
		text-align: center;
		font-weight: 400;
	}
	.whytitle {
		text-align: center;
	}
}

.lead2 {
    font-size: 1rem;
}

/* Calculator Tabs (Vertical) */
.calcv, .calcv:after, .calcv:before {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
  }
.calcv {
	margin:0;
	padding:0;
	border: 0 none;
	position: relative;
}
section.calcv{
  background: #fff;
  width: 100vw; /* default was 80% of viewing width (vw) */
  max-width: 70rem; /* 10 rem per tab */
  /* min-width: 380px; */
  height: 45rem;
  margin: auto;
  /* padding-left: 5rem; */
  box-shadow: 0 0 3px rgba(0,0,0,0.4);
}
input.calcv {
	display: none;
  }
.calcvbox{
	height: 100%;
	position: absolute;
	top: 0;
	padding-left: 6rem;
	overflow: auto;
	transition: .7s;
	transform: scale(0);
	transform-origin: 50% 100%;
	transition-delay: .1s;
  }
.calcvboxicon {				/* Positions FA icon within tab */
  color: rgba(0,0,0,0.2);
  font-size: 4rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

@media (max-width:767px) {
	.calcvboxicon {
		color: rgba(255,255,255,0);
	}
	.hidden-label {
		display: none;
	}
}

p.calcv {
	font-family: 'Raleway', sans-serif;
	color: rgba(0,0,0,.6);
}
h2.calcv, h2.calcr {
	font-family: 'Raleway', sans-serif;
	font-size: 2.5rem;
	color: rgba(0,0,0,.6);
}
nav.calcv {
	background: #0B6623; /* Calculator Icon Bar background unselected*/
	width: 5rem;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
}
nav.calcv:after {
	content:'';
	width: 5rem;
	height: 5rem; /* Height of selected sidebar menu tab */
	background: #fff; /* Calculator Icon Bar background selected (moving) */
	position: absolute;
	left: 0;
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
	transition: .5s;
}
nav.calcvcruise:after {
	height: 7.5rem !important; /* Override height of selected sidebar menu tab for Cruise */
}
label.calcv {
	display: flex;
	width: 100%;
	height: 5rem; /* Height of each tab */
	color: #fff; /* Calculator Icons unselected colour */
	text-align: center;
	flex-direction: column;
	justify-content: center;
	cursor: pointer;
	transition: .5s;
	z-index: 2;
}
label.calcvcruise {
	height: 7.5rem !important; /* Override height of each sidebar menu tab for Cruise */
}
label.calcv:hover {
	  color: #BEE3D1; /* Calculator Icons hover colour */
}
label.calcv:before {
	display: block;
	font-size: 2.5rem; /* Calculator icon size in left bar */
	z-index: 2;
}

/* Calculator Value Tabs - Regular User */
#cvtab1:checked ~ nav [for='cvtab1'],
#cvtab2:checked ~ nav [for='cvtab2'],
#cvtab3:checked ~ nav [for='cvtab3'],
#cvtab4:checked ~ nav [for='cvtab4'],
#cvtab5:checked ~ nav [for='cvtab5'],
#cvtab6:checked ~ nav [for='cvtab6'],
#cvtab7:checked ~ nav [for='cvtab7'],
#cvtab8:checked ~ nav [for='cvtab8'],
#cvtab9:checked ~ nav [for='cvtab9'] {
  color: #0B6623; /* Calculator Icons selected/active colour */
}
#cvtab1:checked ~ nav:after {
	top:0rem;
}
#cvtab2:checked ~ nav:after {
	top: 5rem;
}
#cvtab3:checked ~ nav:after {
	top: 10rem;
}
#cvtab4:checked ~ nav:after {
	top: 15rem;
}
#cvtab5:checked ~ nav:after {
	top: 20rem;
}
#cvtab6:checked ~ nav:after {
	top: 25rem;
}
#cvtab7:checked ~ nav:after {
	top: 30rem;
}
#cvtab8:checked ~ nav:after {
	top: 35rem;
}
#cvtab9:checked ~ nav:after {
	top: 40rem;
}
#cvtab1:checked ~ .calcresults,
#cvtab2:checked ~ .calcair,
#cvtab3:checked ~ .calccar,
#cvtab4:checked ~ .calcrail,
#cvtab5:checked ~ .calcbus,
#cvtab6:checked ~ .calctaxi,
#cvtab7:checked ~ .calchotel,
#cvtab8:checked ~ .calcweight,
#cvtab9:checked ~ .calcutility {
  transform: scale(1);
  transition-delay: .5s; 
}



/* Calculator Value Tabs - CRUISE User */
#cvctab1:checked ~ nav [for='cvctab1'],
#cvctab2:checked ~ nav [for='cvctab2'],
#cvctab3:checked ~ nav [for='cvctab3'],
#cvctab4:checked ~ nav [for='cvctab4'],
#cvctab5:checked ~ nav [for='cvctab5'],
#cvctab6:checked ~ nav [for='cvctab6'] {
  color: #0B6623; /* Calculator Icons selected/active colour */
}
#cvctab1:checked ~ nav:after {
	top:0rem;
}
#cvctab2:checked ~ nav:after {
	top: 7.5rem;
}
#cvctab3:checked ~ nav:after {
	top: 15rem;
}
#cvctab4:checked ~ nav:after {
	top: 22.5rem;
}
#cvctab5:checked ~ nav:after {
	top: 30rem;
}
#cvctab6:checked ~ nav:after {
	top: 37.5rem;
}
#cvctab1:checked ~ .calcresults,
#cvctab2:checked ~ .calcair,
#cvctab3:checked ~ .calcrail,
#cvctab4:checked ~ .calchotel,
#cvctab5:checked ~ .calcweight,
#cvctab6:checked ~ .calccruise {
  transform: scale(1);
  transition-delay: .5s; 
}


a.calcv {color: rgba(0,0,0,.4)}
a.calcv:hover {color: rgba(0,0,0,.2)}

.resulticon {
	font-size: 1.5rem;
	color: rgba(0,0,0,.4);
}
table td {
	vertical-align: middle !important;
}
.calc-text {
	width: 50%;
}
@media (max-width:767px) {
	.calc-text {
		width: 100%;
	}
}

.calc-instructions {
	width: 90%;
	font-size: 1.1rem;
	font-weight: 700;
	color: #555555;
}
@media (max-width:767px) {
	.calc-instructions {
		width: 100%;
		font-size: 1rem;
		font-weight: 500;
	}
}

section.calcr{
	background: #fff;
	width: 100vw; /* default was 80% of viewing width (vw) */
	max-width: 70rem; /* 10 rem per tab */
	/* min-width: 380px; */
	margin: auto;
	box-shadow: 0 0 3px rgba(0,0,0,0.4);
  }

/* Page Loader / Spinner */
#cover-spin {
    position:fixed;
    width:100%;
    left:0;right:0;top:0;bottom:0;
    background-color: rgba(255,255,255,0.7);
    z-index:9999;
    display:none;
}

@-webkit-keyframes spin {
	from {-webkit-transform:rotate(0deg);}
	to {-webkit-transform:rotate(360deg);}
}

@keyframes spin {
	from {transform:rotate(0deg);}
	to {transform:rotate(360deg);}
}

#cover-spin::after {
    content:'';
    display:block;
    position:absolute;
    left:48%;top:40%;
    width:60px;height:60px;
    border-style:solid;
    border-color:#296fad;
    border-top-color:transparent;
    border-width: 6px;
    border-radius:50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}

/* AJAX Locations / Geo Search */
.locationsFrom,
.locationsTo,
.viaPoints,
.hotelCities {
	width: 100%;
	position: absolute;
	right: 0%;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
	z-index: 5;
}

.locationsAJAX-box {
	position: relative;
	background: #ffffff;
}

.location-btn {
	max-width: 3rem;
	min-width: 3rem;
}

.geo-btn {
	max-width: 4rem;
	min-width: 4rem;
}

.location-list {
	min-height: 50px;
}

.location-list-airport {
	min-height: 40px;
}

.location-list-airport:hover,
.location-list:hover {
	background-color: #f0f0f0;
	cursor: pointer;
}

.first-line {
	font-weight: bold;
	font-size: 0.9em;
}

.second-line {
	font-size: 0.8em;
}

.valign-wrapper {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center
}

.valign-wrapper .valign {
	display: block
}
