@charset "UTF-8";

/* Mobile first styles */


/*Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
body {
	font-family: 'Roboto Condensed', sans-serif;
	color: #414141;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5 {
	font-family: 'Fjalla One', sans-serif;
	text-transform: uppercase;
}

h2, .h2 {
	font-size: 2.8rem;
}

li {
	margin-bottom: 10px;
}

h6, .h6 {
	font-family: 'Roboto Condensed', sans-serif;
	text-transform: uppercase;
}

/*Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
	color: #3EB0AC;
	font-weight: 500;
	border-bottom: 1px solid transparent;
	-webkit-transition: ease all .3s;
	-o-transition: ease all .3s;
	transition: ease all .3s;
}

a:hover {
	color: #3EB0AC;
	border-bottom: 1px solid #3EB0AC;
	text-decoration: none;
	outline: none;
}

a:focus {
	outline: none;
}

a:active {
	outline: none;
}

.link:after {
	content: "\f019";
	font-size: .8em;
	font-family: "Font Awesome 6 Pro";
	font-weight: 500;
	padding-left: 5px;
	padding-right: 3px;
}

/* default button styles */
.btn {
	color: #fff;
	border-radius: 0;
	padding: 5px 20px;
	-webkit-transition: ease all .35s;
	-o-transition: ease all .35s;
	transition: ease all .35s;
	display: inline-block;
	border: 3px solid;
	font-family: 'Fjalla One', sans-serif;
	text-transform: uppercase;
	text-align: center;
	height: 48px;
	font-size: 22px;
}

.eq-btn {
	min-width: 205.06px;
}

.btn:hover {
	background-color: transparent;
	border-color: #3EB0AC;
	color: #fff;
}

.input .btn:hover {
	background-color: #3EB0AC;
	border-color: #3EB0AC;
	color: #fff;
}

/* custom button styles */
.btn-featured {
	padding: 1px 20px;
	font-size: 30px;
	width: 220px;
}

.btn-white {
	color: #fff;
	border-color: #fff;

	text-decoration: none;
	position: relative;
	cursor: pointer;
}

.btn-white:hover {
	color: #fff;

	text-decoration: none;
	border-bottom: none;
	z-index: 1;
}

.btn-white:before {
	content: "";
	position: absolute;

	bottom: 0;
	left: 0;
	right: 0;
	top: 100%;
	z-index: -1;
	transition: all .3s ease;
}

.btn-white:hover:before {
	top: 0;
}

.btn-blue {
	border-bottom-color: #3EB0AC;
}

.btn-blue:hover {
	border-color: #3EB0AC;
}

.btn-blue:before {
	background: #3EB0AC;
}

.btn-yellow {
	border-bottom-color: #f8bc16;
}

.btn-yellow:hover {
	border-color: #f8bc16;
}

.btn-yellow:before {
	background: #f8bc16;
}

.btn-primary {
	color: #163e43;
	border-color: #163e43;
	border-bottom-color: #3EB0AC;
	text-decoration: none;
	position: relative;
	cursor: pointer;
	background-color: transparent;
}

.btn-primary:hover {
	color: #fff;
	border-color: #3EB0AC;
	text-decoration: none;
	border-bottom: none;
	z-index: 1;
}

.btn-input:hover {
	background-color: #3eb0ac;
}

.btn-primary:before {
	content: "";
	position: absolute;
	background: #3EB0AC;
	bottom: 0;
	left: 0;
	right: 0;
	top: 100%;
	z-index: -1;
	transition: all .3s ease;
}

.btn-primary:hover:before {
	top: 0;
}

.btn-primary.focus,
.btn-primary:focus {
	box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
	color: #fff;
	background-color: #3EB0AC;
	border-color: #3EB0AC;
}

.btn-secondary.focus,
.btn-secondary:focus {
	box-shadow: none;
}

.btn-secondary {
	color: #163e43;
	border-color: #163e43;
	border-bottom-color: #f8bc16;
	text-decoration: none;
	position: relative;
	cursor: pointer;
	background-color: transparent;
}

.btn-secondary:hover {
	color: #fff;
	border-color: #f8bc16;
	text-decoration: none;
	border-bottom: none;
	z-index: 1;
}

.btn-secondary:before {
	content: "";
	position: absolute;
	background: #f8bc16;
	bottom: 0;
	left: 0;
	right: 0;
	top: 100%;
	z-index: -1;
	transition: all .3s ease;
}

.btn-secondary:hover:before {
	top: 0;
}

/*Colors
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.primary-1 {
	color: #3EB0AC;
}

.primary-2 {
	color: #F8BC16;
}

.primary-3 {
	color: #338A87;
}

.secondary-1 {
	color: #F5F5F5;
}

.secondary-2 {
	color: #163E43;
}

.secondary-3 {
	color: #414141;
}

.secondary-4 {
	color: #F29D1A;
}

.bg-light {
	background-color: #F5F5F5!important;
}

.bg-primary-1 {
	background: linear-gradient(180deg, rgba(61, 148, 176, 1) 0%, rgba(62, 176, 172, 1) 100%);
}

.bg-primary-2 {
	background: linear-gradient(0deg, rgba(244, 188, 22, 1) 0%, rgba(242, 157, 26, 1) 100%);
}

.bg-primary-3 {
	background-color: #338A87;
}

.bg-secondary-1 {
	background-color: #EFEFEF;
}

.bg-secondary-2 {
	background-color: #163E43;
}

.bg-secondary-3 {
	background-color: #414141;
}

/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.well-sm {
	padding-top: 10px;
	padding-bottom: 10px;
}

.well-md {
	padding-top: 30px;
	padding-bottom: 30px;
}

.well-lg {
	padding-top: 40px;
	padding-bottom: 40px;
}

.p-sm {
	padding: 10px;
}

.p-md {
	padding: 30px 15px;
}

.p-lg {
	padding: 40px 15px;
}

.p-top-0 {
	padding-top: 0;
}

.p-top-sm {
	padding-top: 10px !important;
}

.p-top-md {
	padding-top: 30px !important;
}

.p-top-lg {
	padding-top: 60px !important;
}

.p-btm-sm {
	padding-bottom: 10px !important;
}

.p-btm-md {
	padding-bottom: 30px !important;
}

.p-btm-lg {
	padding-bottom: 60px !important;
}

.p-left-0 {
	padding-left: 0 !important;
}

.p-left-sm {
	padding-left: 10px !important;
}

.p-right-sm {
	padding-right: 10px !important;
}

.p-right-md {
	padding-right: 30px !important;
}

.p-right-lg {
	padding-right: 60px !important;
}

.p-right-0 {
	padding-right: 0px !important;
}

.p-left-md {
	padding-left: 30px !important;
}

.m-sm {
	margin: 10px !important;
}

.m-md {
	margin: 30px !important;
}

.m-lg {
	margin: 60px !important;
}

.m-top-sm {
	margin-top: 10px !important;
}

.m-top-md {
	margin-top: 30px !important;
}

.m-top-lg {
	margin-top: 60px !important;
}

.m-btm-sm {
	margin-bottom: 10px !important;
}

.m-btm-md {
	margin-bottom: 30px !important;
}

.m-btm-lg {
	margin-bottom: 60px !important;
}

.m-left-sm {
	margin-left: 10px !important;
}

.m-right-sm {
	margin-right: 10px !important;
}

.m-btm-0 {
	margin-bottom: 0 !important;
}

/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.table-bordered {
	width: 100%;
	max-width: 100%;
	margin-bottom: 1rem;
}

.table-bordered td,
.table-bordered th {
	padding: .75rem;
}

.table-bordered th {
	background-color: #f5f5f5;
	text-align: center;
	font-family: 'Fjalla One', sans-serif;
	text-transform: uppercase;
	font-size: 25px;
}

.table-bordered .primary th {
	background-color: #3eb0ac;
}

.table-bordered td,
.table-bordered th {
	border: 1px solid #dee2e6;
}

.table-bordered thead th {
	border-bottom-width: 0;
}

.registration-table .table-bordered th {
	font-size: 18px;
}


/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul.simple-list li {
	list-style: none;
	margin-bottom: 5px;
}

ul.simple-list {
	padding-left: 0;
}

ul.styled-list li {
	list-style-type: circle;
	margin-bottom: 5px;
}

/* Accordion Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.ui-widget-content a {
	color: #3eb0ac;
}


/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.form-control {
	border-color: #DBDBDB;
	background-color: #F5F5F5;
	border-radius: 0;
	margin-bottom: 1em;
}

.form-control:focus,
.credit-card-form.focus {
	background-color: #F5F5F5;
	border-color: #3eb0ac;
	box-shadow: 0 0 0 0.2rem rgba(62, 176, 172, 0.35);
}

.form-control.disabled {
	background-color: #fff;
}

.form-row {
	margin-left: -5px;
	margin-right: -5px;
}

label, .label {
	padding-bottom: .5em;
}

.select-dropdown select,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: block;
	width: 100%;
	padding: .375rem 1.65rem .375rem .75rem;
	background-image: none;
	-ms-word-break: normal;
	word-break: normal;
}

select::-ms-expand {
	display: none;
}

.select-dropdown {
	position: relative;
}

.select-dropdown:after {
	content: '\f078';
	font-family: "Font Awesome 6 Pro";
	color: #3eb0ac;
	right: 11px;
	top: 0;
	height: 34px;
	padding: 7px 0px 0px 8px;
	position: absolute;
	pointer-events: none;
}

.ui-datepicker-trigger {
	right: 10px;
	position: absolute;
	top: 37px;
	width: 25px;
	cursor: pointer;
	background: transparent;
	border: none;
	color: #3eb0ac;
}

.form-check {
	padding-left: 0;
}

.form-check input.form-check-input[type="checkbox"] {
	visibility: hidden;
}

.form-check input.form-check-input[type="checkbox"]+label:before {
	border: 1px solid #DBDBDB;
	border-radius: 3px;
	background-color: #F5F5F5;
	content: "\00a0";
	display: inline-block;
	height: 20px;
	width: 20px;
	margin: 0 .25em 0 0;
	margin-bottom: 2px;
	padding: 0;
	vertical-align: middle;
	cursor: pointer;
}

.form-check input.form-check-input[type="checkbox"]:checked+label:before {
	background: #F5F5F5;
	color: #3eb0ac;
	font-family: "Font Awesome 6 Pro";
	content: "\f00c";
	text-align: center;
	line-height: 19px;
	margin-bottom: 2px;
}

.form-check input.form-check-input[type="checkbox"]:checked+label:after {
	font-weight: bold;
}

.form-check input.form-check-input[type="checkbox"]:focus+label::before {
	outline: rgb(59, 153, 252) auto 5px;
}

.checkbox input,
.radio-btn input {
	margin-right: 5px;
	padding-bottom: .0;
}

.radio-btn input {
	margin-bottom: .5em;
}

.checkbox label,
.radio-btn label {
	margin-bottom: 0;
	margin-right: 20px;
}

.checkbox input,
.checkbox label,
.radio-btn input,
.radio-btn label {
	vertical-align: middle;
}

.form-width-sm {
	max-width: 125px;
}

.form-width-md {
	max-width: 200px;
}

.form-width-lg {
	max-width: 250px;
}

.reg-indent {
	margin-left: 24px;
}

/* Date Pickers */
img.ui-datepicker-trigger {
	right: 10px;
	position: absolute;
	top: 2em;
	width: 25px;
	cursor: pointer;
}

div#ui-datepicker-div {
	background: #fff;
	border: 1px solid #3eb0ac;
	border-radius: 0px;
	z-index: 4 !important;
	box-shadow: 0 0 0 0.2rem rgba(62, 176, 172, 0.25);
}

.ui-datepicker-header:after,
.ui-datepicker-title:before {
	content: "\f078";
	font-family: "Font Awesome 6 Pro";
	position: absolute;
	top: 7px;
	right: 52px;
	width: 20px;
	height: 28px;
	color: #3eb0ac;
	text-align: center;
	padding-top: 9px;
	display: block;
	pointer-events: none;
}

.ui-datepicker-title:before {
	right: 155px;
	top: 5px;
}

.ui-datepicker .ui-datepicker-header {
	border-radius: 0px;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 47%;
	margin-right: 5px;
	display: inline-block;
	border-radius: 0;
}

.ui-widget-header {
	border: none;
	background: #f5f5f5;
	color: #414141;
	font-weight: bold;
}

.ui-datepicker th {
	color: #3eb0ac;
}

.birth-date .ui-state-default,
.birth-date .ui-widget-content .ui-state-default,
.birth-date .ui-widget-header .ui-state-default {
	border: 1px solid #d3d3d3;
	background: #f5f5f5;
	color: #414141;
}

a.EmergencyAnnouncement {
	margin: 0 auto;
	/* margin-top: 55px; */
	text-align: center;
	color: #FFFFFF;
	font-family: 'Fjalla One', sans-serif;
	font-size: 22px;
	background-color: #3db0ac !important;
}

a.EmergencyAnnouncement:hover {
	background-color: #163e43 !important;
}

a.SpecialAnnouncement {
	margin: 0 auto;
	/* margin-top: 55px; */
	text-align: center;
	color: #FFFFFF;
	font-family: 'Fjalla One', sans-serif;
	font-size: 22px;
}

a.SpecialAnnouncement:hover {
	background-color: #163e43;
}

.registration {
	text-align: center;
}

.reg-statments {
	display: inline-block;
	margin: 0px 1em;
}


@media (max-width:767px) {

	.registration p {
		text-align: left;
	}
}

/* Extra small devices (portrait phones, 576px and higher)
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (min-width: 576px) {
	.p-md {
		padding: 30px;
	}

	.p-lg {
		padding: 60px;
	}
}

/* Small devices (landscape phones, 768px and higher)
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (min-width: 768px) {

	.well-lg {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

/* Medium devices (tablets, 992px and higher)
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (min-width: 992px) {}

/* Large devices (desktops, 1200px and higher)
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (min-width: 1200px) {}

/* Extra large devices (large desktops)
   No media query since the extra-large breakpoint has no upper bound on its width */