/*
4Cyte Red	c32034
Dark Blue	213360
*/

.header {
	display: block;
	position: sticky;
	z-index: 11;
	box-shadow: 0px 1px 2px 2px rgba(0, 0, 0, 0.05);
	top:0px;
}

.main-heading {
	position: static;
    font-size: 40px;
    margin-bottom: 20px;
	color: #0e204d;
    font-family: "Quicksand", sans-serif;
    text-transform: capitalize;
    font-weight: 700;
    line-height: 1.3;
	text-align: center;
	margin-bottom: 80px;
}

#header {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
	border-top: 2px solid #c22034;
	background-color: #ffffff;
	width: 100%;
}

#header-banner {
	display: none;
}
@media (min-width: 80rem) {
	#header-banner, #banner_home{
		display: block;
		max-height: 79px;
		cursor: pointer;
	}
}

.header_nav {
	position: fixed;
	top: 0;
	left: -100%;
	z-index: 101;
	width: 240px;
	height: 100%;
	padding: 10px 0;
	background-color: #ffffff;
	overflow-y: auto;
	transition: left 0.5s;
}
.header_nav--open {
	left: 0;
}
.header_nav-bg {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s;
}
.header_nav--open ~ .header_nav-bg {
	opacity: 1;
	pointer-events: auto;
}
.header_open {
	position: absolute;
	top: 50%;
	right: 10px;
	display: block;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background-color: transparent;
	cursor: pointer;
	transform: translateY(-50%);

	> span {
		position: absolute;
		top: 50%;
		left: 20%;
		display: block;
		width: 60%;
		height: 1px;
		background-color: currentcolor;
	}
	> span:nth-of-type(1) {
		top: 35%;
	}
	> span:nth-of-type(2) {
		width: 45%;
	}
	> span:nth-of-type(3) {
		top: 65%;
	}
}
.header_close {
	position: fixed;
	top: 30px;
	right: 30px;
	z-index: 100;
	display: block;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 2px solid white;
	border-radius: 20px;
	background-color: transparent;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s;

	> span {
		position: absolute;
		top: 50%;
		left: 50%;
		display: block;
		width: 40%;
		height: 2px;
		background-color: white;
		transform: translate(-50%, -50%) rotate(45deg);
	}
	> span:nth-of-type(2) {
		transform: translate(-50%, -50%) rotate(-45deg);
	}
}
.header_nav--open ~ .header_close {
	opacity: 1;
	pointer-events: auto;
}

.header_button {
	display: block;
    color: #000000;
    text-decoration: none;
    padding: 10px 20px;
    position: relative; /* Needed for the pseudo-element */
    overflow: hidden; /* Prevent border from overflowing */
    transition: color 0.1s ease;
}

.header_button::before {
    content: '';
    position: absolute;
    top: 0; /* Position the line at the top */
    left: 0;
    width: 0%; /* Start with no visible border */
    height: 2px; /* The thickness of the line */
    background-color: #c32034; /* The color of the border */
    transition: width 1s ease-in-out; /* The transition for the growing/shrinking effect */
}

.header_button:hover {
    color: #c32034; /* Change text color on hover */
}

.header_button:hover::before {
    width: 100%; /* Full width when hovered */
}

@media (min-width: 60rem) {
	.header_nav {
		position: static;
		display: flex;
		width: auto;
		height: auto;
		padding: 0;
		justify-content: flex-end;
		padding-right: 20px;
		background: transparent;
		overflow-y: visible;
	}
	.header_nav-bg {
		display: none;
	}
	.header_open {
		display: none;
	}
	.header_close {
		display: none;
	}
	.header_button {
		padding: 30px 20px;
	}
}

.contact_img {
    height: 13px;
    width: 13px; /* Optionally add a width to make sure images are square */
}

.contactcircle:hover .contact_img {
	filter: invert(1);
}

.contactcircle {
    border-radius: 11px;
    height: 22px;
    width: 22px;
    background: #ffffff;
    display: flex; /* This makes the container a flexbox */
    align-items: center; /* Centers the image vertically */
    justify-content: center; /* Centers the image horizontally */
    margin: 0 3px; /* Increase the horizontal margin to space the circles apart */
}

.contactcircle:hover {
    background: #c32034;
    cursor: pointer;
}

#logo {
	display: block;
	padding: 10px 0;
}
#logo img {
	display: block;
}

h1, h2, h3, h4, h5, h6{
	margin: 0px;
	color: #0e204d;
	font-family: "Quicksand", sans-serif;
}
.heading {
	font-family: "Quicksand", sans-serif;
}

footer{
    position: sticky;
	top: 100%;
}

body{

	margin: 0;
}
	
main{
	font-family: "Quicksand", sans-serif;
}
	
html{
	height: 100%;
	font-family: "Roboto", sans-serif;
}

*{
	box-sizing: border-box;
}

.payment_button{
	height: 40px;
	border-radius: 20px;
	background-color: #213360;
	color: #ffffff;
	width: 49%;
	transition: background-color 0.1s ease;
	position: sticky;
	top: 100%;
}

.payment_button:hover{
	background-color: #c32034;
	border-color: #c32034;
}

.cc_logos{
	font-size: 60px;
}

.payment_form{
	width: 400px;
	min-height: 300px;
	margin: 30px 0;
	align-items: center; /* Centers the image vertically */
    justify-content: center; /* Centers the image horizontally */
}

.payment_form_input{
	min-width: 100%;
	padding: 0.5rem 1rem;
	margin: 0.2rem;
	border: 2px solid #e6e8eb;
	border-radius: 3rem;
	font-size: 0.9rem;
	font-family: inherit;
}

.payment_form_select{
	width: 38%;
	padding: 0.5rem 1rem;
	border: 2px solid #e6e8eb;
	border-radius: 3rem;
	font-size: 0.9rem;
	font-family: inherit;
}

#parta{
	display: inline;
}
@media (min-width: 60rem) {
	.header-dropdown-content{
		position:absolute;
		opacity: 0;
		background-color: white;
		transition: opacity 0.3s;

		pointer-events: none;
	}
}

.header-dropdown-content a {
	
	text-decoration: none;
	padding: 5px;
	padding-right: 25px;
	font-size: 15px;
	font-family: "Roboto", sans-serif;
	color: #848e9f;
	display: flex;
	position: relative;
	margin-left: 20px;
	margin-bottom: 5px;
}

.header-dropdown-content a:hover {
	transition: color 0.3s;
	color: #c32034;
}

.header-dropdown-content a::before{
	opacity: 0;
	position: absolute;
	top:50%;
	left:-10px;
	content: "";
	transition: width 0.3s ease-in-out, opacity 0.3s;
	height: 2px;
	background-color: #C22034;
	width:0px;
	transform: translateY(-50%);
}

.header-dropdown-content a:hover::before {
	width: 10px;
	opacity: 1;
	
}


.header-dropdown:hover .header-dropdown-content{
	pointer-events: auto;
	opacity: 1;
}


.main_content{
	margin: auto;
	max-width: 1200px;
	padding: 0 1rem;
	font-family: "Roboto", sans-serif;
	color: #848e9f;

	p, li {
		line-height: 1.5;
	}

	a{
		color: #C22034;
		text-decoration: none;
	}
}

.acc_edit_table{
	margin: auto;
	max-width: 1900px;
	padding: 0 1rem;
	font-family: "Roboto", sans-serif;
	color: #848e9f;

	p{
		line-height: 1.5;
	}

	a{
		color: #C22034;
		text-decoration: none;
	}
}

.acc_filtered_out{
	display: none;
}

.acc_filtered_in{
	display: table-row;
}

.main_content--flex{
	display:flex;
}

.header_image{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 200px;
	width: 100%;
	padding: 80px 0;
	background-size: cover; 
	background-position: center;
	margin-bottom: 20px;
	color: #ffffff;
}
@media (min-width: 60rem) {
	.header_image{
		min-height: 300px;
	}
}
@media (min-width: 80rem) {
	.header_image{
		min-height: 400px;
	}
}

.header_text {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 1rem;
	text-shadow: 0 0 0.25rem #888888;
}
.header_text--centre {
	text-align: center;
}

.sub_header{
	margin-top: 20px;
	margin-bottom: 15px;
	font-size: 22px;
	font-weight: 500;
	color: #0e204d;
}

.info-section{
	margin-bottom: 3%;
	line-height: 1.5;
	
	.sub_header:target{
		scroll-margin-top: 300px;
		transition: background-color 0.5s;
		padding-top: 3px;
		padding-bottom: 3px;
		background-color: #b6c5ec;
	}
}

.header-info-left{
	width:90%;
}


.service-page{
  display:flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  border-radius: 10px;
  padding: 20px;
}

.service-page--gray {
  display:flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  border-radius: 10px;
  background-color: #f7f4f4;
  padding: 20px;
}

@media (min-width: 60rem) {
	.service-page--gray {
		flex-direction: row;
	}

	.service-page {
		flex-direction: row;
	}
}

.dropdown_questions{
  border-top: 2px solid lightgray;
  padding-top: 15px;
margin-bottom: 2%;
  cursor: pointer;
  .dropdown_label {
	margin-left: 5px;
    font-family: "Quicksand", sans-serif;
    font-size: 20px;
    font-weight: 500;
	color: #0e204d;
	vertical-align: middle;
  }
  .dropdown_image_pointer_right {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    color: #ffffff;
	vertical-align: middle;

  }
  .dropdown_image_pointer_down {
    float:left;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    color: #ffffff;
    display: none;
  }
}

.dropdown_questions:hover{
  .dropdown_label {
    color:#c32034;
  }
}


.dropdown_content {
  height: 0;
  overflow: hidden;
  transition: height 0.5s;
  margin-top: 5px;
  margin-bottom: 10px;
}

.dropdown_questions--open .dropdown_label {
  color: #c32034;
}
.dropdown_image_pointer_right {
  transition: transform 0.5s;
}
.dropdown_questions--open .dropdown_image_pointer_right {
  transform: rotate(90deg);
}

.dropdown_questions--open {
	border-top: 2px solid #C22034;
}

.dropdown_questions--open + .dropdown_questions{
	border-top: 2px solid #C22034;
}

.services_sub_box_left{
  /* display: flex; */
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
  position: relative;
  /* margin: 20px 0; */

}

.information_widget_container{
	display:flex;
	flex-direction: column;
	margin-top: 20px;
	margin-bottom: 20px;
	justify-content: space-between;
	gap: 20px;
}

.information_widget_container--small{
	display:flex;
	flex-direction: column;
	margin-top: 20px;
	margin-bottom: 20px;
	justify-content: space-between;
	gap: 20px;
}

@media (min-width: 60rem) {
	.services_sub_box_left {
		flex-direction: row;
		gap: 50px;
	}

	.information_widget_container{
		flex-direction: row;
		gap: 50px;
		margin-top: 30px;
		margin-bottom: 40px;
	}
}

.information_widget:hover{
  box-shadow: 0 0 15px gray;

}

.information_widget--small{
	padding-bottom: 15px;
}

.information_widget{
  border: 1px solid lightgray;
  border-radius: 10px;
  flex: 1 1 50%;
  display: grid;
  grid-template-columns: 75px 1fr;
  grid-template-rows: max-content 1fr;
  grid-template-areas:
    "image title"
    "image text";
  gap: 10px 20px;
  padding: 20px;
  transition: box-shadow 0.5s;

  .widget_image{
	grid-area: image;
    height: 75px;
    width: 75px;
	object-fit: contain;
  }


  .widget_image--red {
	/* make it red using magic */
		filter: invert(19%) sepia(91%) saturate(2460%) hue-rotate(337deg) brightness(86%) contrast(97%);
  }

  .widget_fa {
	font-size: 70px;
	display: flex;
	grid-area: image;
  }
  
  .widget_fa--small {
	font-size: 40px;
	display: flex;
	grid-area: image;
  }

	.widget_title{  
	grid-area: title;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
	color: #0e204d;
  }

  .widget_title--small{  
	grid-area: title;
    font-size: 16px;
    font-weight: 600;
    line-height: 0.8;
	color: #0e204d;
  }

  .widget_text{
	grid-area: text;
    font-size: 14px;
	color: #C22034;

	:first-child {
		margin-top: 0;
	}
	:last-child {
		margin-bottom: 0;
	}
  }
}

.AMH_Results{
	text-align: left;
}

.AMH_Results th{
	width: 10rem;
}

.AMH_Results td{
	border-top: solid 1px black;

	padding: 10px 0;
}

.image--amhgraph{
	width: 80%;
	display: block;
	margin: auto;
}

.services_box_left{

  .services_image{
	width: 100%;
    margin-top: 20px;
    color: #ffffff;
  }
}

.lightgray-box{
  background-color: #e4e4e4;
  border-radius: 10px;
  padding-top: 10px;
  padding-bottom: 20px;
  margin-bottom: 10px;
}

.services_box_right{
  position: relative;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  
  .services_box_right_sticky {
	  position: sticky;
	  top: 20px;
	  margin-bottom: 20px;
  }

  .right-border{
    border-left: 4px solid #c32034;
    padding-left: 20px;
    padding-right: 20px;
  }

  .service_box_link:hover{
    height: 10%;
    width: 90%;
    padding: 20px;
    margin-bottom: 5px;
    border-radius: 50px;
    background-color: #c32034;
    font-size: 14px;
    font-weight: 500;
    color: white;
  }

  .service_box_link{
    height: 10%;
    width: 90%;
    padding: 20px;
    margin-bottom: 5px;
    border-radius: 50px;
    background-color: white;
    font-size: 14px;
    font-weight: 500;
  }

  .sub_header_right{
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
	color: #0e204d;
  }
}

.services--highlighted{
	transition: 1s;
	background-color: #fb8f9b;
	color: #606671;
}

.main_content .services_box_right .service-box-button {
    display: flex;
    justify-content: space-between;
	margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

@media (min-width: 60rem) {
	.services_box_left{
		flex: 1 1 70%;

	}
	.services_box_right{
		flex: 1 1 30%;
	}
}

.service_image--right {
	display: block;
	height: calc(100% - 105px);
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
	}

.service_image--right--thin {
	display: block;
	height: calc(100% - 40px);
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
	}

.service_image--right-half {
	display: block;
	height: calc(33% - 35px);
	width: 100%;
	object-fit: cover;
	margin-top: 30px;
	border-radius: 10px;
	}

.service_image--right--long {
	display: block;
	height: calc(100% - 80px);
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
}

@media (max-width: 60rem) {
	.service_image--right {
		display: none;
	}
	.service_image--right-half {
		display: none;
	}
}

.pdf-button {

  margin-bottom: 30px;
  width: 100%;
  background-color: #c32034;
  border-radius: 10px;
  color: white;
  padding: 15px;
  display:flex;
  align-items: center;
  justify-content: center;
  gap:10px;
  text-decoration: none;

  .pdf-logo {
    width: 50px;
    height: 50px;
	padding: 10px;
    background-color: #213360;
    border-radius: 10px;
    object-fit: contain;
  }
  
  .pdf-button-text{
    font-family: "Quicksand", sans-serif;
    font-size: 18;
	color: white;
  }

}

.pdf-button:hover {
  background-color: #213360;

  .pdf-logo {
    background-color: #c32034;
  }
}

.page_heading{
	color: inherit;
	font-size: 28px;
	font-weight: 800;
}
.page_heading_image {
	display: block;
	max-height: 15rem;
	max-width: 15rem;
	width: 71px;
	height: 71px;

	margin: 1rem auto;
}
@media (min-width: 60rem) {
	.page_heading {
		font-size: 38px;
	}
}
@media (min-width: 80rem) {
	.page_heading {
		font-size: 48px;
	}
}

.centered_header{
  position: absolute;
  bottom: 0;
  white-space: nowrap ;
  transform: translate(-50%);
}

.page_centered_heading{
  position: absolute;
	top: 250px;
	left: 50%;
  height: 175px;
  width: 300px;
	font-size: 40px;
	font-weight: 700;
  color: #ffffff;
  text-align: center;
  transform: translate(-50%);
}

.page_centered_heading--middle{
	text-align: center;
	margin-top: 30px;
	margin-bottom: 30px;
	font-size: 30px;
	font-weight: 700;
	color: #213360;
}

.page_centered_heading--left{
	text-align: left;
	margin-top: 30px;
	margin-bottom: 20px;
	font-size: 22px;
	font-weight: 700;
	color: #213360;
}

.page_centered_heading--left__faq{
	text-align: left;
	margin-top: 50px;
	margin-bottom: 20px;
	font-size: 22px;
	font-weight: 700;
	color: #213360;
}


.centered_image_header{
	position: absolute;
	  height: 100px;
	  width: 100px;
	  color: #ffffff;
	left: 35%;
  }

.page_sub_heading{
	margin: 20px 0;
	font-size: 20px;
	font-weight: 700;
}

#footer {
    background-color: #213360;
    width: 100%;
    padding: 20px 20px 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;  
    align-items: center;
}

.footer_box {
    color: #ffffff;
    border-radius: 15px 15px 0px 0px;
    width: 640px;
    max-width: 100%;
    padding: 0px 20px 0px 20px;
    margin: 20px 30px 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer_box > a{
	color: #848e9f;
	text-decoration: none;
	line-height: 1.5;
}

.footer_box > a:hover{
	color: #c32034;
	text-decoration: underline;
}

/* .footer_box > a:last-child{
	margin-bottom: 20px;
} */

.foot_title{
	font-weight: 800;
	font-size: 18px;
}

.foot_title:not(:first-child) {
	margin-top: 15px;
}

#footer_logo {
	width: 100%;
	max-width: 182px;
	margin-left: -27px;
}

#footer_social {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}

.footer_box_contact {
    color: #213360;
    background-color: #ffffff;
    border-radius: 15px 15px 0px 0px;
    width: 640px;
    max-width: 100%;
    padding: 40px;
    margin: 30px 30px 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

@media (min-width: 90rem) {
	#footer {
		flex-direction: row;
		align-items: stretch;
	}

	#footer .footer_box {
		max-width: 320px;
		margin: 30px 30px 0 30px;
	}

	#footer .footer_box--fixed {
		flex-shrink: 0;
	}

	#footer .footer_box_contact {
		width: 420px;
		max-width: none;
	}

	#footer .footer_box_info {
		width: 550px;
		max-width: none;
	}
}

#phn_num{
	font-size: 26;
}

.toggle_name:hover{
	cursor: pointer;
}

#pac-input{
/*	padding: 20px; */
	width: 100%;
	height: 40px;
	padding-left: 10px;
	font-size: 20px;
}


#search_form {
	/* This bit sets up the horizontal layout */
	display:flex;
	flex-direction:row;
	border-radius: 20px;
	
	/* This bit draws the box around it */
	border:1px solid grey;
	margin-top: 2px;
  
	/* I've used padding so you can see the edges of the elements. */
	padding:1px;
  }
  
#pac-input {
	/* Tell the input to use all the available space */
	flex-grow:2;
	/* And hide the input's outline, so the form looks like the outline */
	border:none;
	border-radius: 20px 0px 0px 20px;
  }
  
  /* remove the input focus blue box, it will be in the wrong place. */
#pac-input:focus {
	outline: none;
  }
  
  /* Add the focus effect to the form so it contains the button */
#search_form:focus-within { 
	outline: 1px solid blue 
}
  
#loc_clear_button {
	/* Just a little styling to make it pretty */
	border:none;
	background:rgba(255,255,255,1);
	color:red;
	border-radius: 0px 20px 20px 0px;
	cursor: pointer;
  }

#clear_filters{
	width: 80px;
	height: 25px;
	border-radius: 12px;
	border-width: 0px;
	font-size: 11px;
	background-color: #213360;
	color: #ffffff;
}

#clear_filters:hover{
	background-color: #c32034;
	cursor: pointer;
}

#loc_search_button{
	width: 100%;
	height: 25px;
	border-radius: 12px;
	border-width: 0px;
	font-size: 16px;
	background-color: #213360;
	color: #ffffff;
}

#loc_search_button:hover{
	background-color: #c32034;
	cursor: pointer;
}

.loc_box{
	color: #213360;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#loc_wrapper{
	position: relative;
	align-items: stretch;
    display: flex;
	width: 100%;
	height: calc(100vh - 180px);
    justify-content: center;  
	overflow: hidden;
}

@media (min-width: 80rem) {
	#loc_wrapper {
		height: auto;
	}
}

#loc_filters_toggle {
	position: absolute;
	bottom: calc(50% + 10px);
	left: 100%;
	height: 40px;
	padding: 0 17px;
	border: none;
	font-family: Roboto, Arial, sans-serif;
	font-size: 18px;
	background: none padding-box rgb(255, 255, 255);
	box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
	cursor: pointer;
	transition: bottom 0.5s;
}

#loc_filters_background {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s;
}

#loc_filters_background.filter-open {
	opacity: 1;
	pointer-events: auto;
}

#loc_filters {
	position: absolute;
	z-index: 10;
	left: -300px;
	width: 300px;
	height: 100%;
	background-color: white;
	transition: left 0.5s;
}

#loc_filters .loc_box {
	height: 100%;
	padding: 0 20px 20px;
	overflow: auto;
}

#loc_filters.filter-open {
	left: 0;
}

@media (min-width: 60rem) {
	#loc_filters_toggle {
		bottom: 10px;
		transition: none;
	}
}

@media (min-width: 80rem) {
	#loc_filters_toggle {
		display: none;
	}

	#loc_filters_background {
		display: none;
	}

	#loc_filters{
		position: static;
	}

	#loc_filters .loc_box {
		padding: 0 10px;
		overflow: visible;
	}
}

#loc_map {
	width: 100%;
	height: 50%;
	transition: height 0.5s;
	position: relative;
}

@media (min-width: 60rem) {
	#loc_map {
		width: 80%;
		height: auto;
	}
}

#loading {
    background-color: rgba(255,255,255,0.5);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
	position: absolute;
	z-index: 9;
	transition: opacity 1s;
}

.fade_out{
	pointer-events: none;
	opacity: 0;
}

.loading_image {
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-moz-keyframes spin {
    100% { -moz-transform: rotate(360deg); }
}

@-webkit-keyframes spin {
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

#loading_text {
    font-size: 2em;
    margin-top: 15px;
}

#loc_rooms {
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 5;
	width: 100%;
	height: 50%;
	padding: 0 1rem;
	background-color: white;
	transition: top 0.5s;
}

#loc_rooms .loc_box {
	height: 100%;
	overflow-y: scroll;
}

@media (min-width: 60rem) {
	#loc_rooms {
		position: static;
		width: 350px;
		height: auto;
		padding: 0 0 0 10px;
	}
}

@media (min-width: 80rem) {
	#loc_rooms {
		height: 861px;
	}
}

.loc_head{
	position: sticky;
	top: 0;
	background-color: white; /* optional, to ensure it doesn't overlap content */
	z-index: 10; /* optional, to ensure it's on top of other content */
	padding: 10px;
	font-size: 1.5rem;
}

@media (min-width: 60rem) {
	.loc_head{
		padding: 30px 10px 10px;
	}
}

.loc_subhead{ /*Sub Headings on location page*/
	padding: 20px;
	color: #213360;
    justify-content: flex-start; 
}

.loc_state_head{
	padding: 20px;
	font-size: 1.5em;
}

.loc_suburb{
	font-size: 1.2em;
	cursor: pointer;
	margin-right: auto;  /* Ensures the address stays on the left */
	font-family: "Quicksand", sans-serif;
	font-weight: bolder;
}

#map {
  height: 100%;
}

/*Toggles*/
.checkbox-apple {
  position: relative;
  width: 50px;
  height: 25px;
  margin: 1px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-apple label {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 25px;
  border-radius: 50px;
  background: linear-gradient(to bottom, #b3b3b3, #e6e6e6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkbox-apple label:after {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.checkbox-apple input[type="checkbox"]:checked + label {
  background: linear-gradient(to bottom, #4cd964, #5de24e);
}

.checkbox-apple input[type="checkbox"]:checked + label:after {
  transform: translateX(25px);
}

.checkbox-apple label:hover {
  background: linear-gradient(to bottom, #b3b3b3, #e6e6e6);
}

.checkbox-apple label:hover:after {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.yep {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 2px;
}
/*End toggles*/

.acc_container{
	position: relative;
	padding: 5px;
	border: thick solid transparent;
}
.red_border{
	border: thick solid #c32034
}

.acc_container::before,
.acc_container::after {
	content: "";
	position: absolute;
	top: 33px;
	right: 0;
	display: block;
	width: 28px;
	height: 2px;
	transition: transform 0.5s, top 0.5s;
	background-color: currentcolor;
}
.acc_container::before {
	clip-path: rect(0 calc(50% + 1px) 100% 0);
	transform: translate(-50%, 0) rotate(45deg);
}
.acc_container::after {
	clip-path: rect(0 100% 100% calc(50% - 1px));
	transform: translate(-50%, 0) rotate(-45deg);
}
.acc_container.red_border::before,
.acc_container.red_border::after {
	top: 24px;
}
.acc_container.red_border::before {
	transform: translate(-50%, 0) rotate(-45deg);
}
.acc_container.red_border::after {
	transform: translate(-50%, 0) rotate(45deg);
}

.acc_details{
	display: none;
	font-family: "Roboto", sans-serif;
	font-size: 1em;
}

.acc_detail_subhead{
	font-weight: bold;
	margin-top: 5px;
}

.acc_detail_data{
	margin-bottom: 10px;
	font-size: 1.2em;
}

.pubhol_hours{
	font-family: "Roboto", sans-serif;
	margin-bottom: 10px;
	font-size: 1.2em;
	color: #c22034;
	font-weight: bold;
}

.acc_head{
	min-height: 25px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;  /* Ensures space between the elements */
	align-items: center;  /* Vertically centers the items */
	cursor: pointer;
}

.acc_head_address{
	display: block;
	padding-right: 40px;
	cursor: pointer;
}
  
 .chevron{
	margin-left: auto;  /* Pushes the chevron to the right */
	align-items: center;  /* Vertically centers the items */
	padding-right: 15px;
	font-size: 34px;
  }

.acc_container:hover .acc_head,
.acc_container:hover .acc_head_address,
.acc_container:hover::before,
.acc_container:hover::after {
	color: #c32034;
}
.acc_container.red_border .acc_head_address {
	color: transparent;
	user-select: none;
	-webkit-user-select: none;
}

/*Start about page*/
.about p, .about li {
	line-height: 1.75;
}

.feature > * {
	margin-top: 1rem;
}
@media (min-width: 60rem) {
	.feature {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		gap: 2rem;
		margin-top: -4rem;
	}
	.feature > * {
		margin-top: 0;
	}
	.feature > :first-child {
		flex: 1 1 calc(50%);
	}
	.feature > :last-child {
		flex: 1 1 calc(50%);
	}
}

.feature-boxes {
	background-color: white;
	border-radius: 1rem;
	box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.08);
}
.feature-boxes__link {
	display: block;
	padding: 1.5rem;
	color: inherit;
	text-decoration: none;
}
.feature-boxes__icon {
	
	width: 3rem;
	height: 3rem;
	object-fit: contain;
	float: left;
}
.feature-boxes__heading {
	margin-top: 1.5rem;
	font-size: 1.0rem;
	line-height: 1.5;
}

.feature-boxes__container{
	display: flex;
	height: 5rem;
	align-items: center;
}

.feature-boxes__heading--top {
	float: right;
	margin-top: 0px;
	margin-left: 1rem;
	color: #c22034;
}

.feature-boxes__item:not(:last-child) {
	border-bottom: 1px solid #ccc;
}
@media (min-width: 65rem) {
	.feature-boxes {
		display: flex;
	}
	.feature-boxes__item {
		flex: 1 1 calc(100% / 4);
	}
	.feature-boxes__link {
		padding: 2rem;
	}
	.feature-boxes__item:not(:last-child) {
		border-bottom: none;
		border-right: 1px solid #ccc;
	}
}

.news-container {
	display: flex;
	flex-direction: column;
  	justify-content: space-between;
	gap: 30px;
}

.news {
	padding: 1.5rem;
	font-size: 0.9rem;
	color: white;
	background-color: #c22034;
	border-radius: 1rem;
	box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.08);
}
.news__title {
	color: inherit;
	font-size: 1.1rem;
}
.news__link {
	margin-top: 1rem;
	text-align: center;
	font-weight: bold;
}
.news__link a {
	display: flex;
	align-items: center;
	gap: 0.5ch;
	color: white;
	text-decoration: none;
}
@media (min-width: 50rem) {
	.news {
		padding: 1rem 1.5rem;	
	}
}

.about-two__headings {
	margin: auto;
	width: 1200px;
	
}

.about-two__heading {
	margin-left: calc(100% / 12);
	margin-top: 0.75rem;
	font-size: 1.5rem;
	line-height: 1.3;
}

@media (min-width: 50rem) {
	.about-two__heading {
		font-size: 2.5rem;
	}
}

.service-heading {
	margin-top: 0.75rem;
	margin-bottom: 20px;
	line-height: 1.3;
	font-size: 2rem;
}

.service-heading--padded {
	padding-left: 20px;
}

.about-one {
	padding-top: 3rem;
}
.about-one__subheading {
	font-size: 0.9rem;
	font-weight: bold;
	color: #c22034;
}
.about-one__heading {
	margin-top: 4rem;
	font-size: 1.5rem;
	line-height: 1.3;
}

.about-one__headings--right {
	margin-top: 2rem;
}

.about-one__content {
	margin-top: 2rem;
	margin-bottom: 2rem;
}
.about-one__content > * {
	margin-top: 1rem;
}

.about-one__content--compact {
	margin-bottom: 3rem;
}

.about-one__content--borderless {
	margin-bottom: 1.5rem;
	margin-top: 0rem;
	flex-direction: column;
	width: 80%;
	margin-right: 20px;
	padding-right: 10px;
}

@media(min-width: 60rem) {
	.about-one__content--borderless {
		margin-top: 70px;
		width: 90%;
	}

	
	.about-one__image-container--small {
		margin-top: 70px;
	}
}

@media(max-width: 55rem) {
	.about-one__content--borderless {
	width: 100%;
	}
}

.about-one__content--borderless h2 {
	margin: 0;
}

.about-one__content p {
	margin: 0;
}

.about-one__headings--small {
	margin: 0;
}

.about-one__headings--last {
	margin-top: 2.5rem;
}

.about-one__content--container {
	display: flex;
	flex-direction: row;
}

.about-one__paragraph {
	color: #848e9f;
}
.about-one__paragraph--small {
	font-size: 0.9rem;
}
.about-one__paragraph--bold {
	font-weight: bold;
	color: #213360;
	font-size: 1.1rem;
}
.about-one__number {
	display: block;
	font-size: 7.5rem;
	font-weight: normal;
	line-height: 1;
}
.about-one__image-container {
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
	height: 100%;
}

.about-one__image-container--small {
	height: 650px;
}

@media (max-width: 55rem) {
	.about-one__image-container {
		display: none;
	}
}


.about-one__image img {
	display: block;
	width: 100%;
	height: 100%;
    object-fit: cover;
}
.about-one__image-container:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
    background-image: linear-gradient(180deg, #00000000 66%, #061733 97%);
}
@media (min-width: 50rem) {
	.about-one__heading {
		font-size: 2.5rem;
	}
}
@media (min-width: 60rem) {
	.about-one {
		padding-top: 3rem;
	}
	.about-one__headings {
		width: calc(700% / 12);
		margin-left: calc(100% / 12);
	}
	.about-one__headings--right{
		margin-left: calc(100% / 2 + 100% / 12);
	}
	.about-one__content {
		display: flex;
		gap: 4rem;
	}
	.about-one__content--borderless {
		gap: 0rem;
	}
	.about-one__numbers {
		flex: 1 1 calc(200% / 12);
	}
	.about-one__image {
		flex: 1 1 calc(500% / 12);
		margin-bottom: -3rem;
	}
	.about-one__text {
		flex: 1 1 calc(500% / 12);
	}
}

.about-two {
	padding-top: 4.5rem;
	background-image: url("/Images/4cyte-background-white.jpg");
	background-size: cover;
	background-position: center center;
}
.services {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 1rem;
	
}

.services > .service-page--gray {
	margin-top: 1rem;
}

.services:last-child {
	margin-bottom: 2rem;
}

.services__item {
	position: relative;
	max-width: 35rem;
	margin: 0 auto;
	border-radius: 1rem;
	font-size: 0.9rem;
	color: #848e9f;
	background-color: #ececec;
	box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.05);
	transition: box-shadow 0.4s;
}
.services__item::after {
	content: "";
	position: absolute;
	left: 2.5rem;
	right: 2.5rem;
	bottom: 0;
	display: block;
	height: 3px;
	background-color: #213360;
	transform: scaleX(0);
	transition: transform 0.4s;
}
.services__item:hover {
	box-shadow: 0px 5px 83px 0px rgba(40, 40, 40, 0.12);
}
.services__item:hover::after {
	transform: scaleX(1);
}
.services__image {
	border-radius: 1rem;
	overflow: hidden;
}
.services__image img {
	display: block;
	width: 100%;
	transition: transform 0.9s;
	height: 245px;
	object-fit: cover;

}
.services__item:hover img {
	transform: scale(1.1) rotate(1deg);
}
.services__text {
	padding: 2.5rem;

}
.services__heading {
	color: #0e204d;
	font-size: 1.3rem;
	padding-bottom: 10px;
}
.services__content {
	margin: 1rem 0;
}
@media (min-width: 50rem) {
	.services {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		flex-wrap: wrap;
	}
	.services__item {
		width: calc((100% - 2rem) / 2);
		margin: 0;
	}
}
@media (min-width: 60rem) {
	.about-two{
		padding-top: 6.5rem;
	}
	.services__item {
		width: calc((100% - 4rem) / 3);
	}
}

.about-three {
	padding-top: 4.5rem;
	font-size: 0.9rem;
}
.about-three__background {
	color: white;
	background-image: url("/Images/4cyte-background-red.jpg");
	background-size: cover;
	background-position: center center;
}
.about-three__container {
	max-width: 35rem;
	margin: 0 auto;
	color: white;
}
.about-three__text {
	padding-top: 4.5rem;
}
.about-three__heading {
	color: inherit;
	font-size: 2.5rem;
}
.about-three__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.about-three__list {
	list-style: none;
	margin-bottom: 2rem;
}
.about-three__list > li {
	position: relative;
	margin: 0.75rem 0;
	font-weight: bold;
}
.about-three__list > li::before {
	content: "";
	position: absolute;
	left: -2rem;
	top: 0;
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	background-image: url("/Images/icons/circle-tick.svg");
	background-size: contain;
	background-position: center center;
}
.about-three__boxes {
	margin: 3rem 0;
}
.about-three__image {
	margin: 0 -1rem;
}
.about-three__image-container {
	height: 20rem;
}
.boxes {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.boxes__box {
	display: flex;
	width: 16rem;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	padding: 2rem;
	border-radius: 1rem;
	color: #0e204d;
	background-color: white;
}
.boxes__heading {
	line-height: 1.5;
	font-size: 1.1rem;
	transition: color 0.3s;
}
.boxes__icon i {
	color: #c22034;
	font-size: 3rem;
}
.boxes__box:hover .boxes__heading {
	color: #c22034;
}
.boxes__box:hover .boxes__icon {
	animation: zoomOut 1s infinite alternate;
}
@keyframes zoomOut {
	50% {
		transform: scale(1.1);
	}
}

@media (min-width: 50rem) {
	.about-three__container {
		max-width: none;
	}
}
@media (min-width: 60rem) {
	.about-three {
		padding-top: 6rem;
		overflow: hidden;
	}
	.about-three__container {
		display: flex;
		justify-content: space-between;
	}
	.about-three__container > * {
		width: calc(50% - 1rem);
	}
	.about-three__image {
		margin: 0;
	}
	.about-three__image-container {
		width: 50vw;
		height: 100%;
	}
}
@media (min-width: 75rem) {
	.about-three__container {
		position: relative;
	}
	.about-three__container > * {
		width: calc(50% - 3rem);
	}
	.about-three__list {
		display: flex;
		flex-wrap: wrap;
		gap: 0.75rem 2rem;
	}
	.about-three__list > li {
		width: calc(50% - 1rem);
		margin: 0;
	}
	.about-three__text {
		padding: 6rem 0;
	}
	.about-three__boxes {
		position: absolute;
		left: 50%;
		top: 20%;
		margin: 0;
	}
	.about-three__image {
		margin: -2rem 0 0;
	}
	.about-three__image img {
		border-radius: 1rem 0 0 0;
	}
}

.about-four {
	padding: 4.5rem 0 15rem;
	margin-bottom: -15rem;
	color: white;
	background-color: #213360;
}
.about-four__container {
	color: white;
}
.about-four__image img {
	display: block;
	max-width: 100%;
	object-fit: contain;
}
.about-four__paragraph {
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.5;
}
@media (min-width: 60rem) {
	.about-four {
		margin-bottom: -8rem;
	}
}
@media (min-width: 60rem) {
	.about-four__container {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 2rem;
	}
	.about-four__image {
		width: calc(5 * (1200% - 2rem) / 12);
	}
	.about-four__text {
		width: calc(7 * (1200% - 2rem) / 12);
	}
}
/*End about page*/

/* Start common components */
.header_text .button,
.main_content .button {
	display: inline-flex;
	align-items: center;
	gap: 0.5ch;
	padding: 0.5rem 1rem;
	border-radius: 10rem;
	font-size: 0.9rem;
	font-weight: bold;
	color: white;
	background-color: #c22034;
	text-decoration: none;
	transition: background-color 0.4s, color 0.4s, border-color 0.4s;
}
.header_text .button:hover,
.main_content .button:hover {
	background-color: #213360;
}
.main_content .button--blue {
	color: #213360;
	background-color: transparent;
}
.main_content .button--blue:hover {
	color: white;
	border-color: #213360;
	background-color: #213360;
}
.main_content .button--transparent-white {
	color: white;
	background-color: transparent;
}
.main_content .button--transparent-white:hover {
	color: #c22034;
	border-color: white;
	background-color: white;
}
.main_content .button--border {
	border: 2px solid currentcolor;
}
.header_text .button--white,
.main_content .button--white {
  background-color: white;
  color: black;
}
.main_content .button--to-white:hover {
	color: #c22034;
	background-color: white;
}

.header_text .button--white:hover,
.main_content .button--white:hover {
  background-color: #c22034;
  color: white;
}

.main_content .button--home {
	top: 50px;
	height: 5%;
	float: right;
	position: sticky;
	color:white;
}

@media (min-width: 50rem) {
	.header_text .button,
	.main_content .button {
		padding: 1rem 2rem;
	}
}

.form {
	margin: 0;
}
.form__message {
	padding: 1rem 2rem;
	margin: 2rem 0;
	color: #000000;
	background-color: #cccccc;
	border-radius: 1rem;

	h2 {
		margin-bottom: 1rem;
	}
	hr {
		margin: 1rem 0;
		border: none;
		border-top: 1px solid currentcolor;
		opacity: 0.25;
	}
}
.form__message--success {
	color: #185220;
	background-color: #d6eddb;
}
.form__message--fail {
	color: #67123b;
	background-color: #f6d7da;
}

.form__message--hidden {
	display: none;
}

.form__message > p {
	margin: 0;
}
.form__heading {
	padding-bottom: 0.5rem;
	margin-bottom: 1.5rem;
	border-bottom: 1px solid #cccccc;
	color: #0e204d;
	font-size: 1.2rem;
}
.form__heading:not(:first-of-type) {
	margin-top: 2rem;
}
.form__row {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.form__row + .form__row {
	margin-top: 1rem;
}
.form--compact .form__row + .form__row {
	margin-top: 1rem;
}
.form .form__row.form__row--submit {
	margin-top: 2rem;
}

.form__input {
	width: 100%;
	min-width: 5rem;
	padding: 0.5rem 1rem;
	border: 2px solid #e6e8eb;
	border-radius: 1.5rem;
	font-size: 0.9rem;
	font-family: inherit;
}
.form__input:focus {
	border: 2px solid #c22034;
	outline: none;
}
.form__input--submit {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 0.5ch;
	border: 2px solid #213360;
	font-weight: bold;
	color: white;
	background-color: #213360;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.4s, border 0.4s;
}
.form__input--submit:hover {
	border: 2px solid #c22034;
	background-color: #c22034;
}

.form__row--patient {
	margin-top: 2rem;
	margin-bottom: 1rem;
}

#download_form .form__input--add-button {
	background-color: #213360;
	transition: background-color 0.4s, border 0.4s, color 0.4s;
	flex-grow: 0;
	width: calc(25% - 1rem);
	color: white;
	border: #213360;
	height: 3rem;
	min-width: 10rem;
}

#download_form .form__input--add-button:hover {
	background-color: #c22034;
	border: #c22034;
}

.form__radio-container {
	display: flex;
	align-items: center;
	margin: 0.5rem 0;
}
.form .form__radio-container > .form__input {
	width: auto;
	min-width: auto;
}
.form .form__radio-container > label {
	margin: 0;
}
.form__input--radio {
	margin: 0 0.5rem;
}
.form__input--radio:active,
.form__input--radio:focus {
	outline: 2px solid #c22034;
}
.form__input--textarea {
	min-height: 10rem;
	resize: vertical;
}

.form__input--textarea--small {
	min-height: 5rem;
	border-radius: 15px;
}

.form__input--drop-zone {
	border-radius: 10px;
	width: 100%;
	height: 250px;
	margin: 10px auto;
	text-align: center;
	line-height: 200px;
	border: 2px dashed #ccc;
	cursor: pointer;
}

/* .drag-over{
	background-color: #eee;
} */

.preview-container {
	width: 60%;
	margin: 5px auto;
}

.preview-image {
	border: 1px solid #aaa;
	border-radius: 10px;
	display: flex;
	grid-area: image;
	margin: 5px 0;
	justify-content: space-between;
}

.placeholder-container {
	font-size: 40px;
	margin-right: 10px;
	padding-left: 10px;
}

.placeholder-information-container {
	padding: 3px;
	line-height: 0.5px;
}

.placeholder-information {
	margin: 0px;
	font-size: 14px;
}

.form__input-file__input {
	border: 1px solid #aaa;
	border-radius: 1rem;
	color: transparent;
}
.form__input-file__input:hover {
	background-color: #eee;
}
.form__input-file__input::file-selector-button {
	display: none;
}

.input-file--container {
	position: relative;
	display: inline-block;
	width: 60%;
}

.input-file__text {
	position: absolute;
	top: calc(50%);
	left: calc(50%);
	transform: translate(-50%, -50%);
	display: block;
	max-width: 100%;
	max-height: 100%;
	text-align: center;
	overflow: hidden;
	pointer-events: none;
	color: #848e9f;
}

.image-info-container{
	display: flex;
}

.form__header {
	margin-bottom: 1rem;
	margin-top: 2rem;
}

.form__text--fineprint{
	font-size: 12px;
	padding: 0 0.5rem;
}

.form__text--terms {
	height:25rem;
	background-color: white;
	overflow: auto;

	p{
		font-size: 13px;
		padding-left: 1rem;
		padding-right: 1rem;
	}
	h3{
		padding-left: 1rem;
		padding-right: 1rem;
	}
	li {
		font-size: 13px;
	}
}

.form__label-input--terms {
	border: solid lightgray 1px;
	background-color: rgb(227, 227, 227);
	padding: 5px;
}

.form__input--DOB{
	color:gray;
}

.form__input--radio{
	font-size: 14px;
	padding-top: 5px;
}

.form__input--file {
	background-color: field;
}
.form__input--file::file-selector-button {
	display: none;
}
.form__label-input label {
	display: block;
	padding: 0 0.5rem;
	margin-bottom: 0.5rem;
}
.form__label-input--required > label::after {
	content: " *";
	color: #c22034;
}

.form__label-file-input--required {
	text-align: center;
}

.form__label-file-input--required > label::after {
	content: " *";
	color: #c22034;
	top: 0px;
    position: absolute;
	
}

.form__label-input:not(.form__label-input--large) .form__input {
	padding: 0.5rem 1rem;
}

.form__label-input--radio {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.form__label-input--hidden {
	display: none;
}

.form__input--flex{
	display: flex;
	margin-bottom: 0px;
}

.form__checkbox__label{
	padding-left: 0.5rem;
}

.form__checkbox{
	margin: 0px;
}

.form__input--box {
	font-size: 18px;
	width: 2rem;
	display: inline-block;
	height: 2.6rem;
	border-radius: 10px;
	border: 2px solid #c2c4c7a8;
	margin-right: 3px;
	text-align: center;
	margin-bottom: 16px;
}

.form__input--box--right {
	margin-right: 15px;
}

.form__input--box::placeholder {
	color: #77797ca8;
}


.form__input--box:disabled {
	background-color: #e5e8e868;
}


/* disables the up arrows on number input */
@layer base {
	input[type="number"]::-webkit-inner-spin-button,
	input[type="number"]::-webkit-outer-spin-button {
	  -webkit-appearance: none;
	  margin: 0;
	}
  }

.form__label-input .checkbox-container{
	display: grid;
	grid-template-columns: 1fr;
}
@media (min-width:60rem) {
	.form__label-input .checkbox-container{
		grid-template-columns: 1fr 1fr;
	}
}

.form__icon-input {
	position: relative;
}
.form__icon-input .fa {
	position: absolute;
	top: 0.75rem;
	left: 1rem;
}
.form__icon-input .form__input {
	width: 100%;
	padding-left: 2.5rem;
}
@media (min-width: 50rem) {
	.form__row {
		flex-direction: row;
		gap: 2rem;
	}
	https://www.medicalobjects.com/forms/online/?form=au_gp_receive_only.form .form__row.form__row--submit {
		margin-top: 4rem;
	}
	.form__row > * {
		flex: 1 1 auto;
		width: 0;
	}
	.form__row > .form__label-input--2 {
		flex: 1 1 calc(2 * 100% / 12);
	}
	.form__row > .form__label-input--3 {
		flex: 1 1 25%;
	}
	.form__row > .form__label-input--5 {
		flex: 1 1 calc(5 * 100% / 12);
	}
	.form__row > .form__label-input--6 {
		flex: 1 1 50%;
	}
	.form__row > .form__label-input--7 {
		flex: 1 1 calc(7 * 100% / 12);
	}
	.form__row > .form__label-input--9 {
		flex: 1 1 75%;
	}
	.form__row + .form__row {
		margin-top: 2rem;
	}
	.form__input {
		padding: 1rem 2rem;
	}
	.form__icon-input .fa {
		top: 1.25rem;
		left: 1.25rem;
	}
	.form__label-input--small {
		flex-grow: 0;
		width: 10rem;
	}
	.form__label-input--small-name {
		flex-grow: 0;
		width: 15rem;
	}
	.form__label-input--medium {
		
		flex-grow: 0;
		width: calc(50% - 1rem);
	}
	.form__label-input--medium--right {
		margin-left: auto;
		flex-grow: 0;
		width: calc(50% - 1rem);
	}
	.form__label-input--align-center {
		width: calc(50% - 1rem);
		flex-grow: 0;
	}
}
.custom-select {
	position: relative;
	min-width: 5rem;
	padding: 0.5rem 1rem;
	border: 2px solid #e6e8eb;
	background-color: white;
	color:gray;
	border-radius: 1.5rem;
	font-size: 0.9rem;
	font-family: inherit;
	user-select: none;
	webkit-user-select: none;
	
}
.custom-select:active,
.custom-select:focus,
.custom-select:focus-visible,
.custom-select--open {
	border: 2px solid #c22034;
	outline: none;
}
.custom-select::before {
	content: "";
	position: absolute;
	right: 1rem;
	top: 50%;
	display: block;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 0.625rem;
	background-color: #213360;
	transform: translate(50%, -50%);
}
.custom-select::after {
	content: "";
	position: absolute;
	right: 1rem;
	top: 50%;
	display: block;
	width: 0.2rem;
	height: 0.2rem;
	border-bottom: 2px solid white;
	border-right: 2px solid white;
	transform: translate(50%, -65%) rotate(45deg);
	transition: transform 0.15s;
}
.form__label-input:not(.form__label-input--large) select,
.form__label-input:not(.form__label-input--large) .custom-select {
	width: 100%;
	padding: 0.5rem 1rem;
}
.form__label-input:not(.form__label-input--large) .custom-select::before,
.form__label-input:not(.form__label-input--large) .custom-select::after {
	right: 1rem;
}
@media (min-width: 50rem) {
	.custom-select {
		padding: 1rem 2rem;
	}
	.custom-select::before,
	.custom-select::after {
		right: 1.5rem;
	}
}
.custom-select--open::after {
	transform: translate(50%, -35%) rotate(-135deg);
}
.custom-select__current {
}
.custom-select__list {
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	width: 100%;
	border: 2px solid #e6e8eb;
	border-radius: 0.5rem;
	background-color: white;
	overflow: hidden;
	transform: scale(0.9);
	opacity: 0;
	pointer-events: none;
	transition: top 0.15s, transform 0.15s, opacity 0.15s;
}
.custom-select--open .custom-select__list {
	top: calc(100% + 3px);
	transform: scale(1);
	opacity: 1;
	pointer-events: auto;
}
.custom-select__option {
	padding: 1rem;
	transition: background-color 0.15s;
}
.custom-select__option:hover {
	background-color: #fafafa;
}
.custom-select__option--current {
	font-weight: bold;
}
/* End common components */

/* Start contact page */
.contact {
	margin-top: 2rem;
}
.contact p {
	color: #848e9f;
	line-height: 1.75;
}
.contact a {
	color: #c22034;
	transition: color 0.3s;
}
.contact a:hover {
	color: #213360;
}
@media (min-width: 60rem) {
	.contact {
		margin-top: 2rem;
	}
}
/* End contact page */

/* Start contact form */
.contact-form {
	position: relative;
	padding: 1.5rem;
	margin: 4.5rem 0;
	border-radius: 1rem;
	color: #848e9f;
	background-color: white;
	font-size: 0.9rem;
	box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.1);
}
.contact-form__block {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 1rem;
	opacity: 0;
	transition: opacity 0.3s;
	cursor: pointer;
	pointer-events: none;
}
.contact-form__block--visible {
	opacity: 1;
	pointer-events: auto;
}
.contact-form__message {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: calc(100% - 4rem);
	max-height: calc(100% - 4rem);
	transform: translate(-50%, -50%);
	box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.1);
	opacity: 0;
	transition: opacity 0.6s;
}
.contact-form__block--visible .contact-form__message {
	opacity: 1;
}
.contact-form__container {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.contact-form__heading {
	color: #213360;
	font-size: 1.5rem;
	font-weight: bold;
}
.contact-form p {
	line-height: 1.75;
}
.contact-form__quick {
	padding: 1.5rem;
	border-radius: 1rem;
	color: white;
	background-color: #c22034;
}
.contact-form__quick .contact-form__heading {
	color: white;
}
.contact-form__contacts {
	padding-left: 1rem;
	margin: 0;
	list-style-type: none;
}
.contact-form__contacts li {
	position: relative;
	margin: 0.5rem 0;
	line-height: 1.5;
}
.contact-form__contacts .fa {
	position: absolute;
	left: -1rem;
	top: 0.2rem;
	transform: translateX(-50%);
}
.contact-form__contacts a,
.contact-form__contacts span {
	color: inherit;
	font-weight: bold;
	text-decoration: none;
}
.contact-form__link a:hover {
	color: #c22034;
	border-color: white;
	background-color: white;
}
@media (min-width: 60rem) {
	.contact-form {
		padding: 3rem;
		margin: 2rem 0;
	}
	.contact-form__container {
		flex-direction: row;
		gap: 4rem;
	}
	.contact-form__form {
		width: calc(100% - 29rem);
	}
	.contact-form__quick {
		width: 25rem;
		padding: 3rem;
	}
	.contact-form__contacts {
		margin-top: 5rem;
	}
	.contact-form__link {
		margin-top: 2rem;
	}
}
/* End contact form */

/* Start added test page */
.added-tests-form {
	margin: 3rem 0;
}
@media (min-width: 60rem) {
	.added-tests-form {
		margin-bottom: 6rem;
	}
}
/* End added test page */

/* Start web portal registration page */

.web-portal-registration-form {
	margin: 2rem 0;
}
@media (min-width: 60rem) {
	.web-portal-registration-form {
		margin-bottom: 6rem;
	}
}

.sleep-study-form{
	margin-bottom: 2rem;
}

/* End web portal registration page */

.w3-bar{
	text-align: center;
	display: static;
	padding-bottom: 10px;
	padding-top: 20px;
	margin-top: 40px;
	border-bottom: 1px solid gray;
	margin: 0 auto;
}

.w3-bar-item {
	font-size: 16px;
	background: none;
	border: none;
	position: relative; /* Needed for the pseudo-element */
    overflow: hidden; /* Prevent border from overflowing */
    transition: color 0.1s ease;
	color: #c32034;
	padding-bottom: 10px;
	margin-bottom: 10px;
	font-weight: 700;
	cursor: pointer;
}

.w3-information{
	position: static;
	display: flex;
	flex-direction: column;
	border: 1px solid lightgray;
	border-radius: 10px;
	margin-top: 20px;
	margin-bottom: 50px;
	
	.w3-information__image{
		width: 80px;
		height: 80px;
		padding-bottom: 10px;
		margin-left: -10px;
		/* make it red using magic */
		filter: invert(19%) sepia(91%) saturate(2460%) hue-rotate(337deg) brightness(86%) contrast(97%);
		
	}
}

.w3-information-content--left{
	margin: 20px 20px 0;

	.fa {
		padding-bottom: 15px;
		font-size: 80px;
		color: #c32034;
	}

}

.w3-information-content--left h2{ 	
	color: #213360;
}

.w3-information-content--left p{ 	
	font-size: 14px;
}

.w3-information-content--right{
	border-radius: 10px;
	padding: 30px;
	padding-bottom: 5px;
	margin: 20px;
	background-color: #ececec;
}

.w3-information-content--header{
	font-size: 16px;
	background: none;
	border: none;
	color: #c32034;
	font-weight: 700;
	padding-top: 5px;
	padding-bottom: 5px;

	.fa-check-circle{
		color:#000000;
		padding-right: 7px;
	}
}

.w3-information-content--text{
	margin-top: 0;
	border-bottom: 1px solid lightgray;
	padding-bottom: 10px;
	font-size: 14px;
}

.w3-information-content--text:last-child{
	border-bottom: none;
}

@media (min-width: 60rem) {
	.w3-information {
		flex-direction: row;
		margin: 20px 20px 50px;
	}
	.w3-information-content--left {
		width: 30%;
		margin: 40px 20px 20px 40px;
	}
	.w3-information-content--right {
		width: 70%;
		height:60%;
		margin: 40px 40px 30px 40px;
	}
}

.w3-bar-item::before {
    content: '';
    position: absolute;
    bottom: 0; /* Position the line at the top */
    left: 0;
    width: 0%; /* Start with no visible border */
    height: 2px; /* The thickness of the line */
    background-color: #c32034; /* The color of the border */
    transition: width 1s ease-in-out; /* The transition for the growing/shrinking effect */
}

.w3-bar-item:hover::before {
    width: 100%; /* Full width when hovered */
}

.w3-bar-item--active::before{
	width: 100%;
}

.warfarin-form-section{
	background-color: rgba(176, 52, 52, 0.08);
	padding: 20px;
	margin-bottom: 10px;
}

/* Start default pages */
.page-content {
	margin-top: 3rem;
	margin-bottom: 3rem;

	h3 {
		margin: 1rem 0;
	}
}
@media (min-width: 60rem) {
	.page-content {
		margin-bottom: 3rem;
	}
}
/* End default pages */

/* Start our team page */
.our-team h2 {
	font-size: 2rem;
}
.team {
	display: grid;
	grid-template-columns: 1fr;
	align-items: start;
	gap: 2rem;
	padding: 0;
	margin-top: 3rem;
	list-style-type: none;
}
.team__member {
	position: relative;
	border-radius: 0.5rem;
	transition: box-shadow 0.4s ease-in-out;
}
.team__member::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	display: block;
	width: 0;
	height: 3px;
	background-color: #c22034;
	transform: translateX(-50%);
	transition: width 0.4s linear;
	transition-delay: 0.3s;
}
.team__member:hover {
	box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.15);
}
.team__member:hover::after {
	width: calc(100% - 5rem);
}
.member {
	max-width: 20rem;
	padding: 0 1rem 1rem;
	margin: 0 auto;
}
.member__image {
	display: block;
	width: 65%;
	padding: 0.5rem;
	margin: 0 auto 1rem;
}
.team .member__name {
	margin: 0.5rem 0;
}
.member__info {
	color: #848e9f;
	font-size: 0.65em;
}
.member__title {
	margin: 0.5rem 0;
	color: #C22034;
	font-size: 0.9em;
}
@media (min-width: 40rem) {
	.team {
		grid-template-columns: 1fr 1fr;
	}
	.member {
		padding: 0 1.5rem 1.5rem;
	}
	.member__image {
		margin-bottom: 1.5rem;
	}
}
@media (min-width: 55rem) {
	.team {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.member {
		padding: 0 2rem 2rem;
	}
	.member__image {
		margin-bottom: 2rem;
	}
}
/* End our team page */

/* Start posts page */
.posts {
	display: grid;
	grid-template-columns: 1fr;
	align-items: start;
	gap: 2rem;
	padding: 0;
	margin-top: 3rem;
	list-style-type: none;
}
.posts__post {
	position: relative;
	border-radius: 0.5rem;
	transition: box-shadow 0.4s ease-in-out;
}
.posts__post:hover {
	box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.15);
}
.post__image {
	border-radius: 0.5rem;
	overflow: hidden;
}
.post__image img {
	display: block;
	width: 100%;
	transition: transform 0.9s ease;
}
.post:hover .post__image img {
	transform: scale(1.1) rotate(1deg);
}
.post__text {
	padding: 0 1rem 1rem;
}
.post__title a {
	color: currentcolor;
	transition: color 0.4s ease-in-out;
}
.post__title a:hover {
	color: #c22034;
}
.post__link {
	display: flex;
}
.post__link a {
	flex-grow: 0;
	display: flex;
	align-items: center;
	gap: 0.5ch;
	padding: 0.5rem 0;
	border-radius: 10rem;
	color: #0e204d;
	font-size: 0.9rem;
	font-weight: bold;
	transition: padding 0.4s ease-in-out, background-color 0.4s ease-in-out, color 0.4s ease-in-out;
}
.post:hover .post__link a {
	padding-left: 1rem;
	padding-right: 1rem;
	color: white;
	background-color: #213360;
}
.post .post__link a:hover {
	background-color: #c22034;
}
@media (min-width: 40rem) {
	.posts {
		grid-template-columns: 1fr 1fr;
	}
	.post__text {
		padding: 0 1.5rem 1.5rem;
	}
}
@media (min-width: 55rem) {
	.posts {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.post__text {
		padding: 0 2rem 2rem;
	}
	.posts--two {
		grid-template-columns: 1fr 1fr;
	}
}
/* End posts page */

/* Start post page */
.post-page__image {
	border-radius: 1rem;
	overflow: hidden;

	img {
		display: block;
		width: 100%;
		transition: transform 0.9s ease;
	}
}
.post-page__image:hover img {
	transform: scale(1.1) rotate(1deg);
}
.post-page__title {
	margin-bottom: 2rem;
}
.post-page__breadcrumb {
	margin-top: -1rem;
	margin-bottom: 2rem;
	font-size: 0.9rem;
	line-height: 2;
}
.post-page__breadcrumb a {
	display: inline-block;
}
.post-page__breadcrumb a + a::before {
	content: "> ";
	color: #848e9f;
}
.post-page__content {
	img {
		display: inline-block;
		max-width: 100%;
	}
}
.post-page__share {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 0;
	margin: 1rem 0;
	border-top: 1px solid #e7ebef;
	border-bottom: 1px solid #e7ebef;
	color: #0e204d;

	span {
		font-weight: bold;
	}
	a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 2.5rem;
		height: 2.5rem;
		border-radius: 2rem;
		background-color: #0e204d;
		transition: background-color 0.4s;
	}
	a:hover {
		background-color: #c22034;
	}
	img  {
		display: block;
		width: 1rem;
		height: 1rem;
		object-fit: contain;
		filter: invert(1);
	}
}
.post-page__latest {
	display: flex;
	margin: 1rem 0;
}
.post-page__latest a {
	display: block;
	padding: 1rem 2rem;
	border: 2px solid #e6e8eb;
	border-radius: 0.75rem;
	color: #0e204d;
	font-weight: bold;
	transition: border-color 0.4s;
}
.post-page__latest a:hover {
	color: #c22034;
	border-color: #c22034;
}
@media (min-width: 60rem) {
	.post-page__title {
		position: relative;
		padding-top: 2.5rem;
		margin: -2.5rem 2.5rem 2rem 0;
		background-color: white;
		font-size: 2.5rem;
		border-top-right-radius: 2rem;
	}
	.post-page__share {
		padding: 2rem 0;
		margin: 2rem 0;
	}
	.post-page__latest {
		margin: 2rem 0;
	}
}

.edit_head{
	border-top: 1px solid;
	margin-top: 20px;
	position: sticky;
	top: 0;
	background-color: white; /* optional, to ensure it doesn't overlap content */
	z-index: 10; /* optional, to ensure it's on top of other content */
	padding: 10px;
	font-size: 1.5rem;
}


#save_changes_button{
	height: 40px;
	border-radius: 19px;
	border-width: 0px;
	font-size: 16px;
	background-color: #213360;
	color: #ffffff;
	margin: 20px;
	padding: 10px 30px;
	cursor: pointer;
}

#save_changes_button:hover{
	background-color: #c32034;
}

.acc_filtered_in:hover{
	background-color: #f6d7da;
}

#acc_edit_button{
	cursor: pointer;
}

#login_form{
	display: inline-block;
	margin-left: 30%;
	margin-right: auto;
	padding-bottom: 30px;
}

.conf_speaker_image{
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-height: 280px;
	max-width: 280px;
	width: auto;
	height: auto;
}
.conf_speaker_name{
	font-weight: bolder;
	font-size: larger;
}
.conf_speaker_title{
	font-weight: bolder;
}

.stores_order_container {
	display: flex;
	flex-direction: column;
	/* max-width: 50rem; */
	margin: 0 auto;

}

.main_content--stores{
	margin: auto;
	max-width: 1200px;
	padding: 0 0.5rem;
	font-family: "Roboto", sans-serif;
	color: #848e9f;

	p, li {
		line-height: 1.5;
	}

	.stores-hyperlink{
		color: #C22034;
		text-decoration: none;
	}
}

.stores_text_container {
	width: 100%;
	display: flex;
}

.stores_order_item {
	font-size: 14px;
	margin: 7px 0;
	background-color: rgb(238, 236, 236);

	padding-left: 5px;
	border-radius: 10px;
	display: flex;
	/* width: 50%; */
}

.stores_header_section {
	width: calc(100%);
	display: flex;
}

.stores_order_header {
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.3;
    color: #0e204d;
	width: calc(40% + 10px);
}

.stores_order_header--unit{
	width: calc(15%);
}

.stores_order_header--view{
	/* width: calc(20%); */
	display: none;
}

.stores_order_header--max{
	width: calc(20%);
}

.stores_order_header--order{
	width: calc(25%);
}

.stores_order_text {
	padding: 5px 5px;
	width: calc(40%);
	display: grid;
    align-items: center;
	font-size: 14px;
}

.stores_order_text--unit{
	width: calc(15%);
}

.stores_order_text--view{
	/* width: calc(20%); */
	display: none;
}

.stores_order_text--max{
	width: calc(20%);
}

.stores_order_text--input{
	width: calc(25%);
}

.form__input--stores{
	width: 4rem;
	padding: 0.5rem 1rem;
	border: 2px solid #e6e8eb;
	border-radius: 1.5rem;
	font-size: 0.9rem;
	font-family: inherit;
	margin-right: 1rem;
}

.form__input--submit--stores {
	margin-top: 3rem;
	margin-bottom: 6rem;
}

.image-overlay{
  position: fixed; /* Sit on top of the page content */
  display: none;
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5); /* Black background with opacity */
  z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer; /* Add a pointer on hover */
  align-items: center
   
}

.image-overlay--shown{
  display: block;
}

.image-stores-item {
	position:relative;
	display: block;
    margin: auto; 
	top: calc(25%);
	/* width: 20rem;
	*/
	max-height: 20rem;
}

.stores-hyperlink--toggle{
	color: #C22034;
}

.message-clear-text {
	color: #0e204d;
	p {
		line-height: 1;
	}
}

.main_content {
	.hyperlink-payment {
		text-decoration: underline;
		color: #0e204d;
	}
}


@media (min-width: 40rem) {

	.image-stores-item {
		top: calc(25%);
		/* width: 30rem;*/
		max-height: 35rem; 
	}
	.stores_order_header{
		font-size: 1.5rem;
	}
	.form__input--stores{
		width: 6rem;
	}
	.stores_order_text{
		font-size: 17px;
	}
	.stores_order_text--name{
		width: calc(40%);
	}
	.stores_order_text--input{
		width: calc(20%);
	}
	.stores_order_header--input{
		width: calc(20%);
	}
	.stores_order_text--view{
		width: calc(15%);
		display: grid;
	}
	.stores_order_header--view{
		width: calc(15%);
		display: grid;
	}
	.stores_order_header--order{
		width: calc(20%);
	}
	.main_content--stores{
		padding: 0 1rem;
	}
	.stores-hyperlink--toggle{
		color: #848e9f;
	}
	
}

.clinical-note-message-container {
	width: 600px;
	height: 500px;
	text-align: center;
	vertical-align: middle;
	margin: 0 auto;

}

.clinical-note-message{
	position: relative;
	top: calc(50%);
	transform: translate(0, -50%);
}

.footer_ul{
	list-style: none; /* remove default bullet */
	padding-left: 0;
}

.footer_ul li {
	margin-bottom: 15px; /* increase the vertical gap */
}

.footer_ul li::before {
	content: "~";
	margin-right: 8px;
	margin-left: -20px;
	margin-bottom: 3px;
}

#footer_info_header{
	margin-left: -20px;
}
/* End post page */

/* likely_radio */

/* The container */
.container {
  display: inline;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #c32034;
}

/* When the radio button is focused, add a blue outline */
.container input:focus ~ .checkmark {
  outline: 2px solid #213360;
  outline-offset: 2px;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

#qualify{
	min-height: 1100px;
}

#app .custom-date-picker {
	border-radius: 20px; 
	border: 2px solid #e6e8eb; 
	height: 2.4rem;
	min-width: 5rem;
	box-shadow: unset;
}

#app .is-active {
	border: 2px solid #c32034; 
}

#additional-patient .button--delete-patient {
  position: absolute;
  height: 23px;
  width: 23px;
  right:0px;
  top:0%;
  background: none;
  border: none;
  font-size: 18px;
  color: #c32034; 

}

#additional-patient .button--delete-patient:hover {
  color: #213360;
}

@media (max-width: 50rem) {
	#additional-patient #hidden-label {
		display: block;

	}

	#additional-patient #hidden-label label{
		margin-bottom: 0px;
		
	}

	#additional-patient {
		padding: 5px;
		background-color: #f2eeee;
		border-radius: 5px;

		.form__input--box {
			width: 1.8rem;
			height: 2.4rem;
			font-size: 16px;
		}

		.form__input--box:disabled {
			display: none;
		}
	}

	#first-patient-download {
		padding: 7px;
		background-color: #f2eeee;
		border-radius: 5px;

		.form__input--box {
			width: 1.8rem;
			height: 2.4rem;
			font-size: 16px;
		}

		.form__input--box:disabled {
			display: none;
		}
	}
}

.g-recaptcha {
	:first-child {
		float:right;
	}
}
