@font-face {
  font-family: 'CeraProMedium';
  src: url('/assets/webfonts/cerapromedium.woff') format('woff')
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-family: 'CeraProMedium', 'Quicksand', sans-serif;
}

.lpm0 p:last-child {
	margin-bottom: 0;
}

html , body {
	height: 100%;
}

html {
	scroll-behavior: smooth;
}

a , a:hover {
	color: var(--steel-blue);
	font-weight: bold;
}

/* colour scheme */

:root {
  --neda-blue: #2f3e4f;
  --steel-blue: #96adb5;
  --cool-grey: #dadada;
  --neutral: #f9f2ea;
}

body {
	font-family: 'Quicksand', sans-serif;
	font-size: 18px;
}

body.solo {
	background-color: var(--neda-blue);
	color: #fff;
	margin: 1rem;
}

.small, small {
	opacity: .5;
}

/* navbar */

nav {
	display: flex;
	gap: 1rem;
	position: absolute;
	right: 1rem;
	top: 1rem;
	z-index: 5;
}

nav a {
	display: flex;
	flex-direction: column;
}

nav a svg {
	display: block;
	height: 2rem;
	width: auto;
}

nav a svg path {
	fill: var(--neda-blue);
}

nav a:hover svg path {
	fill: var(--steel-blue);
}

nav a span {
	font-size: .8rem;
	font-weight: 400;
	margin-top: .25rem;
}

nav a:hover {
	text-decoration: none;
}

@media screen and (max-width: 1199px) {
	nav {
		background: var(--neda-blue);
		bottom: 0;
		justify-content: space-between;
		padding: 1rem 2rem 2rem;
		position: fixed;
		right: 0;
		top: auto;
		width: 100%;
	}
	nav a svg path {
		fill: #fff;
	}
	nav a svg {
		height: 1.5rem;
	}
	nav a span {
		color: #fff;
		font-size: .6rem;
		line-height: .75rem;
	}
}

/* search box */

.client-search {
	display: flex;
	gap: 1rem;
	width: 100%;
}

.client-search .btn-search {
	align-items: center;
	border: 1px solid var(--cool-grey);
	border-radius: 0;
	color: var(--steel-blue);
	display: flex;
	font-family: 'CeraProMedium', 'Quicksand', sans-serif;
	gap: .5rem;
	text-transform: uppercase;
}

.client-search .btn-search:hover {
	border: 1px solid #000;
}

@media screen and (max-width: 480px) {
	.client-search {
		flex-direction: column;
	}
	.client-search .btn-search {
		justify-content: center;
	}
}

/* footer */

.footer {
	font-size: .75rem;
	padding: 3rem 15px 2rem;
	text-align: center;
}

.logout {
	border: 1px solid var(--cool-grey);
	border-radius: 0;
	color: var(--steel-blue);
	display: inline-block;
	font-family: 'CeraProMedium', 'Quicksand', sans-serif;
	margin-bottom: 1rem;
	text-transform: uppercase;
	width: 7rem;
}

.logout:hover {
	border-color: #000;
	color: var(--steel-blue);
	font-weight: 400;
}

.footer .dropdown-menu {
	border-radius: 0;
	margin-top: 0;
	min-width: auto;
	padding: 0 1px;
}

.dropdown-toggle::after {
	display: none;
}

@media screen and (max-width: 1199px) {
	.footer {
		padding-bottom: 5.5rem;
	}
}

/* booking page */

.booking-row {
	padding: 2em 0;
}

.booking-row .form-control , .img-txt .form-control , .solo .form-control {
	background-color: transparent;
	border: 1px solid var(--cool-grey);
	border-radius: 0;
	color: var(--neda-blue);
	font-weight: 500;
	
	-webkit-transition: border .5s ease-in-out;
	-moz-transition: border .5s ease-in-out;
	-ms-transition: border .5s ease-in-out;
	-o-transition: border .5s ease-in-out;
	transition: border .5s ease-in-out;
}

.booking-row.row-dblue .form-control , .img-txt.row-dblue .form-control , .solo .form-control {
	color: var(--neutral);
}

.booking-row .form-control:focus , .img-txt .form-control:focus {
	border: 1px solid var(--steel-blue);
	box-shadow: none;
}

.booking-row .form-control:read-only , .img-txt .form-control:read-only , .solo .form-control:read-only , .booking-row .form-control:read-only:focus , .img-txt .form-control:read-only:focus , .solo .form-control:read-only:focus {
	border: 1px dotted var(--neutral);
}

.booking-row p {
	font-size: 1.2rem;
	font-weight: 300;
	margin: 0;
}

.booking-row.terms p {
	margin-bottom: 1rem;
}

.regular-checkbox , .checkboxes input[type=checkbox] {
	-webkit-appearance: none;
	background-color: transparent;
	border: 1px solid var(--cool-grey);
	box-shadow: none;
	padding: 9px;
	display: inline-block;
	position: relative;
	width: 38px;
	height: 38px;
	float: left;
	margin-right: 10px;
}

.regular-checkbox:active, .regular-checkbox:checked:active , .checkboxes input[type=checkbox]:active , .checkboxes input[type=checkbox]:checked:active {
	box-shadow: none;
}

.regular-checkbox:checked , .checkboxes input[type=checkbox]:checked {
	background-color: var(--steel-blue);
	border: none;
	color: #99a1a7;
}

.row-sblue .regular-checkbox:checked , .row-sblue .checkboxes input[type=checkbox]:checked {
	background-color: var(--neda-blue);
}

.regular-checkbox:checked:after , .checkboxes input[type=checkbox]:checked:after {
	background-color: transparent;
	border: 3px solid #fff;
	border-right-color: transparent;
	border-top-color: transparent;
	content: '';
	display: block;
	height: 12px;
	left: 8px;
	position: absolute;
	top: 9px;
	transform: rotate(-45deg);
	width: 22px;
}

.checkboxes {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
}

.checkboxes li {
	flex-basis: 25%;
	float: left;
	margin-bottom: 1rem;
	margin-right: 2rem;
}

.checkboxes li label , .radio-replace {
	font-size: 1.2rem;
	line-height: 38px;
	margin: 0;
}

.form-prefilled {
	display: block;
	width: 100%;
	height: calc(1.5em + .75rem + 2px);
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	background-clip: padding-box;
	border: 1px solid var(--neutral);
}

.btn-submit {
	background-color: transparent;
	border: 1px solid var(--steel-blue);
	border-radius: 0;
	color: var(--neda-blue);
	font-family: 'CeraProMedium', 'Quicksand', sans-serif;
	height: 38px;
	text-transform: capitalize;
	width: 100%;
}

.row-dblue .btn-submit , .solo .btn-submit {
	color: var(--neutral);
}

.radios {
	display: flex;
	flex-wrap: wrap;
}
.radio-replace {
	display: block;
	flex-basis: 25%;
	float: left;
	margin-bottom: 1rem;
    margin-right: 2rem;
}

.skincol .radio-replace {
	flex-basis: calc(16.6% - 2rem);
}

.radio-replace input[type=radio] {
	-webkit-appearance: none;
	background-color: transparent;
	border: 1px solid var(--cool-grey);
	border-radius: 50%;
	box-shadow: none;
	padding: 9px;
	display: inline-block;
	position: relative;
	width: 38px;
	height: 38px;
	float: left;
	margin-right: 10px;
}

.radio-replace input[type=radio]:active , .radio-replace input[type=radio]:checked:active {
	border: none;
	box-shadow: none;
}

.radio-replace input[type=radio]:checked {
	background-color: var(--steel-blue);
	border: none;
	border-radius: 50%;
	color: #99a1a7;
}

.radio-replace input[type=radio]:checked:after {
	content: '';
	display: block;
	position: absolute;
	top: 10px;
	left: 10px;
	background-color: #fff;
	border-radius: 50%;
	height: 18px;
	width: 18px;
}

.row-sblue .radio-replace input[type=radio]:checked {
    background-color: var(--neda-blue);
}

.checkboxes li {
    flex-basis: 25%;
    float: left;
    margin-bottom: 1rem;
    margin-right: 2rem;
}

/* responsive */

@media screen and (max-width: 1280px) {
	body {
		font-size: 16px;
	}
	.img-txt .box-txt {
		padding: 1em 4em;
	}
}

@media screen and (max-width: 1199px) {
	.checkboxes li label, .radio-replace {
		font-size: 1rem;
	}
}

@media screen and (max-width: 768px) {
	.h1, h1 {
		font-size: 1.5rem;
	}
	.h2, h2 {
		font-size: 1.25rem;
	}
	.hide-mob {
		display: none;
	}
	.checkboxes li , .radio-replace {
		flex-basis: 40%;
	}
	.logo-type {
		width: 75%;
	}
}

/* styles for Franchise Portal */

.fr-logo {
	display: block;
	height: auto;
	margin: 2rem auto;
	max-width: 25rem;
	width: 90%;
}

.click-large {
	border: 1px solid var(--cool-grey);
	height: 40px;
	width: 40px;
}

.radio-large {
	align-items: center;
	display: flex;
	float: left;
	font-size: 1.5rem;
	margin-right: 20px;
}

.radio-large input[type=radio] {
	height: 40px;
	margin-right: 10px;
	width: 40px;
}

.portal-link , .btn-exp {
	border: 1px solid var(--cool-grey);
	color: var(--steel-blue);
	display: block;
	font-family: 'CeraProMedium', 'Quicksand', sans-serif;
	font-size: 25px;
	font-weight: 300 !important;
	height: 50px;
	line-height: 48px;
	margin: 20px 0;
	text-align: center;
	text-transform: uppercase;
}

.portal-link:hover , .btn-exp:hover {
	border: 1px solid #000;
	color: var(--steel-blue);
	text-decoration: none;
}

.btn-exp {
	background-color: #fff;
	margin-bottom: 2rem;
	width: 100%;
}

.franchise-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.franchise-list a {
	color: var(--neda-blue);
}

.form-price {
	border: 1px solid var(--neutral);
	border-bottom: 2px solid var(--steel-blue);
}

.portal-access {
	background-color: var(--steel-blue);
	color: var(--neda-blue);
	display: block;
	font-size: 1.5rem;
	margin: 2rem 0;
	padding: .51rem;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
}

.portal-access:hover {
	background-color: var(--neutral);
	color: var(--neda-blue);
	text-decoration: none;
}

.previous-links {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
}

.previous-links li {
	padding-bottom: 1rem;
}

.previous-links a {
	border: 1px solid var(--cool-grey);
	display: block;
	font-weight: normal;
	padding: .5rem ;
	text-align: center;
}

.previous-links a:hover {
	border: 1px solid #000;
	text-decoration: none;
}

@media screen and (min-width: 992px) {
	.previous-links.client-list {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 1rem;
	}
	
	.previous-links.client-list li {
		flex-basis: calc(50% - .5rem);
		padding-bottom: 0;
	}
}

/* files formatting */

ul.files {
	list-style: none;
	padding-left: 0;
}

ul.files li {
	font-size: 1rem;
	padding-bottom: .5rem;
}

ul.files li a {
	color: #000;
	font-weight: 300;
}

ul.files input {
	border: 0;
	padding: 0;
}

/* homepage big links */

.big-links {
	align-items: stretch;
	display: flex;
	flex-direction: row;
	gap: 2rem;
	justify-content: space-between;
	list-style: none;
	margin: 0;
	margin-top: 2rem;
	padding: 0;
}

.big-links a {
	align-items: center;
	background-color: var(--steel-blue);
	display: flex;
	flex: 1 1 0px;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
	padding: 2rem 1rem;
	text-align: center;
}

.big-links a:hover {
	background-color: var(--neda-blue);
	text-decoration: none;
}

.big-links a svg {
	display: block;
	fill: #fff;
	height: 8rem;
	margin-top: .5rem;
	width: auto;
}

.big-links a span {
	color: #fff;
	font-family: 'CeraProMedium', 'Quicksand', sans-serif;
	font-size: 1.5rem;
	font-weight: 500;
	text-transform: uppercase;
}

@media screen and (max-width: 1199px) {
	.big-links a svg {
		height: 6rem;
	}
	.big-links a span {
		font-size: 1.1rem;
	}
}

@media screen and (max-width: 767px) {
	.big-links {
		flex-direction: column;
		margin-top: 1rem;
	}
	.big-links a {
		gap: .5rem;
		padding: 1rem;
	}
	.big-links a svg {
		height: 4rem;
	}
}