body {
	font-size: 1rem;
}

main {
	display: flex;
}

.flex-top-between {
	display: flex;
	align-items: start;
	justify-content: space-between;
}

.flex-center-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media (min-width: 992px) {
	.w-lg-25 {
		width: 25% !important;
	}

	.flex-lg-top-between {
		display: flex;
		align-items: start;
		justify-content: space-between;
	}

	.flex-lg-center-between {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
}

.btn {
	border-radius: .6rem !important;
}

.btn-round {
	border-radius: 50% !important;
}

.bg-primary {
    background-color: #0096D6 !important;
}

.text-primary {
	color: #0096D6 !important;
}

a:not(.btn), a:not(.btn):visited, .link {
	color: #0096D6;
}

a:not(.btn):hover, a:not(.btn):focus, a:not(.btn):active, a:not(.btn):active:focus, .link:hover {
	color: #36a4d3;
}

a.card {
	color: initial !important;
	text-decoration: none;
}

.btn-container {
    text-align: left;
}

.btn-primary, .btn-primary.disabled, .btn-primary:disabled {
	color: #fff !important;
	background-color: #0096D6;
	border-color: #0096D6;
}

.btn-primary:hover, .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
	color: #fff !important;
	background-color: #36a4d3;
	border-color: #36a4d3;
}

.btn-primary.focus, .btn-primary:focus {
	box-shadow: 0 0 0 0.1rem rgba(0,150,214,.5);
    background-color: #36a4d3;
	border-color: #36a4d3;
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(0,150,214,.5);
}

.card-icon {
	display: inline-block;
	width: 50px;
	height: 50px;
	border-radius: 10px;
	text-align: center;
	line-height: 50px;
}

.card-icon.card-icon-green {
	color: rgb(76 175 80);
	background-color: rgb(76 175 80 / 20%);
}

.card-icon.card-icon-blue {
	color: rgb(33 150 243);
	background-color: rgb(33 150 243 / 20%);
}

.card-icon.card-icon-purple {
	color: rgb(156 39 176);
	background-color: rgb(156 39 176 / 20%);
}

.card-icon.card-icon-orange {
	color: rgb(255 152 0);
	background-color: rgb(255 152 0 / 20%);
}

.card-icon.card-icon-teal {
	color: rgb(0 150 136);
	background-color: rgb(0 150 136 / 20%);
}

.card-icon.card-icon-yellow {
	color: rgb(255 235 59);
	background-color: rgb(255 235 59 / 20%);
}

.card-icon.card-icon-red {
	color: rgb(244 67 54);
	background-color: rgb(244 67 54 / 20%);
}

header {
	height: 60px;
}

@media (min-width: 1200px) {
	header {
		height: 80px;
	}
}

header > .navbar {
	height: auto;
	min-height: 60px;
}

header .navbar-nav {
	flex-direction: column;
}

.g-recaptcha > div {
	margin: 0 auto;
}

#carersPortalLeftMenu {
	border-right: 1px solid rgba(0, 0, 0, .125);
}

#carersPortalLeftMenu > a {
	display: block;
	margin: .6rem;
}

.pageLoader {
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .6);
}

.pageLoader.pageLoaderDark {
	background-color: rgba(0, 0, 0, .8);
}

.pageLoaderInner {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 300px;
	text-align: center;
	color: #fff;
	font-size: 1.2rem;
}

.lds-eclipse {
	width: 160px;
	height: 160px;
	display: inline-block;
	overflow: hidden;
}

.lds-circle-line {
	width: 100%;
	height: 100%;
	position: relative;
	transform: translateZ(0) scale(1);
	backface-visibility: hidden;
	transform-origin: 0 0;
}

.lds-circle-line div {
	position: absolute;
	animation: lds-circle-line 1s linear infinite;
	width: 120px;
	height: 120px;
	top: 20px;
	left: 20px;
	border-radius: 50%;
	box-sizing: content-box;
	box-shadow: 0 4px 0 0 #fff;
	transform-origin: 60px 62px;
}

@keyframes lds-circle-line {
	0% { transform: rotate(0deg) }
	50% { transform: rotate(180deg) }
	100% { transform: rotate(360deg) }
}