@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

@font-face {
	font-family: 'CooperBlack'; /* Choose a descriptive name for your font */
	src: url('Cooper Black Regular.ttf') format('truetype'); /* Adjust the path to your font file */
	/* Optional: Add font-weight and font-style if you have different variants */
	/* font-weight: normal; */
	/* font-style: normal; */
}

@font-face {
	font-family: 'Builttitling'; /* Choose a descriptive name for your font */
	src: url('Built titling bd.ttf') format('truetype'); /* Adjust the path to your font file */
	/* Optional: Add font-weight and font-style if you have different variants */
	/* font-weight: normal; */
	/* font-style: normal; */
}

:root {
	--text-color: #555555;
	--heading-color: #231f20;
	--primary-color: #896b99;
	--secondary-color: #F59A6C;
	
	--topnav-bgcolor: #FFF;
	--topnav-text: #000;
	--topnav-link: #000;
	--topnav-linkh: #9B1828;
	
	--nav-bgcolor: #7D7DAD;
	--nav-link: #FFF;
	--nav-linkh: #F9CF58;
	--navdropdown-bgcolor: #F9CF58;
	
	--primary-link: #5FD6B7;
	--primary-linkh: #F9CF58;
	--secondary-link: #79C95F;
	--secondary-linkh: #F9CF58;
	--reverse-link: #FFF;
	--reverse-linkh: #F9CF58;
	
	--counter-bgcolor: #896b99;
	--counter-text: #FFF;
	
	--footer-bgcolor: #4aa088;
	--footer-text: #FFF;
	--footer-link: #8eddc5;
	--footer-linkh: #F9CF58;
	
	--footerbottom-bgcolor: #4aa088;
	
	--black: #000;
	--white: #FFF;
	--darkgrey: #272324;
	--lightgrey: #F1F1F2;
	--red: #DB0D19;
	--yellow: #F9CF58;
	--green: #A8CF52;
	--blue: #3AC0B7;
	--pink: #DB1D67;
	--purple: #7D7DAD;
	
	--colorOne: #5B9791;
	--colorTwo: #C585B1;
	--colorThree: #F8CC78;
	--colorFour: #F09CC3;
	--colorFive: #9BD2F2;
	--colorSix: #F6958D;
	--colorSeven: #F2E3C9;
	
	--colorDonate: #5E5ECC;
	--colorRegister: #79C95F;
	--colorGreen: #007A8B;/*#81C1B0;*/
}

body {
	margin: 0 auto;
	max-width: 1920px;
	font-family: "Outfit", sans-serif;
	font-size: 1.2rem;
	font-weight: 300;
	color: var(--text-color);
	word-wrap: break-word;
}

b {
	font-weight: 500;
}

li {
	padding: 5px 0;
}

.nowrap {
    white-space: nowrap;
}

h1, h2, h3, h4, h5 ,h6 {
	font-family: "CooperBlack", sans-serif;
	font-weight: 700;
	color: var(--heading-color);
}

h1 {
	display: none;
}
h2 {
	font-size: 2.6rem;
}
h3 {
	font-size: 2.4rem;
}
h4 {
	font-size: 1.7rem;
}
h5 {
	font-size: 1.4rem;
}
h6 {
	font-size: 1.3rem;
}

.headline {
    position: relative;
    display: inline-block;
}

.headline:after {
	content:' ';
	position: absolute;
	width: 87px;
    height: 5px;
    background: var(--primaryColor);
    left: 0;
    top: 100%;
    margin: 5px auto;
}

.headline-center:after {
	left: 50%;
	-webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.headline-white:after {
    background: var(--white);
}

a {
	color: var(--primary-link);
	text-decoration: none;
}
a:hover {
	color: var(--primary-linkh);
}
a.secondary {
	color: var(--secondary-link);
	text-decoration: none;
}
a.secondary:hover {
	color: var(--secondary-linkh);
}

a.reverse {
	color: var(--reverse-link);
}
a.reverse:hover {
	color: var(--reverse-linkh);
}

a.categoryBox {
	text-decoration: none;
	font-weight: normal;
	cursor: pointer;
}
a.categoryBox .card {
	overflow: hidden; /* ensures inner content doesn't overflow */
}

a.categoryBox .categoryBoxtext {
	color: var(--white);
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	background-color: var(--primary-link);
}
a.categoryBox:hover .categoryBoxtext {
	background-color: var(--primary-linkh);
	color: var(--white);
}

a.categoryBox .categoryBoxDtext {
	color: var(--white);
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
}
a.categoryBox:hover .categoryBoxDtext {
	color: var(--yellow);
}


.btn {
	border-radius: 5px;
	font-weight: bold;
	text-transform: uppercase;
}

.btn-primary, .btn-primary.focus, .btn-primary:focus, .btn-primary:active, .btn-primary:active:focus {
    background-color: var(--primary-link);
    border-color: var(--primary-link);
	box-shadow: 0 0 0 0rem rgba(0,0,0,0);
	color: var(--white);
}
.btn-primary:hover {
	background-color: var(--primary-linkh);
	border-color: var(--primary-linkh);
	color: var(--white);
}
.btn-primary.disabled, .btn-primary:disabled {
	color: var(--primary-link);
	background-color: var(--white);
    border: var(--primary-link) solid 2px;
}

.btn-secondary, .btn-secondary.focus, .btn-secondary:focus, .btn-secondary:active, .btn-secondary:active:focus {
	background-color: var(--secondary-link);
	border-color:var(--secondary-link);
	box-shadow: 0 0 0 0rem rgba(0,0,0,0);
	color: var(--white);
}
.btn-secondary:hover {
	background-color: var(--secondary-linkh);
	border-color: var(--secondary-linkh);
	color: var(--white);
}

.btn-reverse, .btn-reverse.focus, .btn-reverse:focus, .btn-reverse:active, .btn-reverse:active:focus {
	background-color: var(--reverse-link);
	border-color: var(--reverse-link);
	box-shadow: 0 0 0 0rem rgba(0,0,0,0);
	color: var(--primary-color);
}
.btn-reverse:hover {
	background-color: var(--reverse-linkh);
	border-color: var(--reverse-linkh);
	color: var(--white);
}

.btn-donate, .btn-donate.focus, .btn-donate:focus, .btn-donate:active, .btn-donate:active:focus {
	background-color: var(--colorDonate);
	border-color:var(--colorDonate);
	box-shadow: 0 0 0 0rem rgba(0,0,0,0);
	color: var(--white);
}
.btn-donate:hover {
	background-color: var(--secondary-linkh);
	border-color: var(--secondary-linkh);
	color: var(--white);
}

.img-circle {
	border-radius: 50%;
}
.img-small {
	width: 30px;
}
.img-border {
	border: 1px solid var(--primary-color);
}

.greyout {
	filter: grayscale(100%);
	opacity: 0.2;
}

.logo {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.19);
	width: 268px;
	margin-bottom: 10px;
}

.shadowbox {
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.img-gallery {
	width: 100%;
	margin: 5px;
}

.imgtopblock {
    margin-top: -1px;
}

.imgblock {
    margin-bottom: -1px;
}

/* Form */
.form-label {
	font-size: 0.8rem;
	font-weight: bold;
	color: var(--black);
}
.form-title {
	font-size: 1.1rem;
	font-weight: bold;
	color: var(--black);
	text-decoration: underline;
}
.help-text {
	font-size: 0.8rem;
    display: block;
    margin-bottom: 5px;
}

.has-error .form-control {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

.has-error .form-control-feedback, .help-block {
    color: #FF0000;
}

.has-success .form-control {
    border-color: #3c763d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

.has-success .form-control-feedback {
    color: #3c763d;
}

.form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none;
}

.form-control::placeholder {
  color: #BBB;
  opacity: 1; /* Firefox */
}
.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #BBB;
}
.form-control::-ms-input-placeholder { /* Microsoft Edge */
 color: #BBB;
}

.radio-toolbar input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}
.radio-toolbar label {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #444;
    border-radius: 4px;
}
.radio-toolbar input[type="radio"]:disabled + label {
	background-color: #e9ecef;
	opacity: 0.5;
}
.radio-toolbar input[type="radio"]:checked + label {
    background-color: var(--primary-link);
	color: var(--white);
	opacity: 1;
}

.radio-newtoolbar input[type="radio"] {
	display: none;
}
.radio-newtoolbar label {
	position: relative;
	color: var(--primary-link);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 0.8em;
	border: 2px solid var(--primary-link);
	padding: 0.2em 0.5em;
	border-radius: 0.5em;
}
.radio-newtoolbar label:before {
	content: "";
	height: 1em;
	width: 1em;
	border: 2px solid var(--primary-link);
	border-radius: 50%;
}
.radio-newtoolbar input[type="radio"]:checked + label:before {
	height: 1em;
	width: 1em;
	border: 0.35em solid var(--white);
	background-color: var(--secondary-link);
}
.radio-newtoolbar input[type="radio"]:checked + label {
	background-color: var(--secondary-link);
	color: var(--white);
	border: 2px solid var(--secondary-link);
}
.radio-newtoolbar input[type="radio"]:disabled + label {
	background-color: #e9ecef;
	color: #444;
	border: 2px solid #444;
	opacity: 0.2;
}
.radio-newtoolbar input[type="radio"]:disabled + label:before {
	border: 2px solid #444;
}

.btnyesno{
    border: 2px solid var(--primary-link);
    display: inline-block;
    padding: 5px 10px;
    position: relative;
    text-align: center;
    transition: background 600ms ease, color 600ms ease;
}

input[type="radio"].toggle {
    display: none;
    & + label{
        cursor: pointer;
        min-width: 60px;
        &:hover{
            background: none;
            color: var(--primary-link);
        }
        &:after{
            background: var(--primary-link);
            content: "";
            height: 100%;
            position: absolute;
            top: 0;
            transition: left 200ms cubic-bezier(0.77, 0, 0.175, 1);
            width: 100%;
            z-index: -1;
        }
    }
    &.toggle-left + label {
        border-right: 0;
        &:after{
            left: 100%
        }
    }
    &.toggle-right + label{
        margin-left: -5px;
        &:after{
            left: -100%;
        }
    }
    &:checked + label {
        cursor: default;
		background: var(--primary-link);
        color: #fff;
        transition: color 200ms;
        &:after{
            left: 0;
        }
    }
}
/* Form End */

/* Navigation Top Bar */
#navtopbar {
	background-color: var(--topnav-bgcolor);
	color: var(--topnav-text);
}
/* Navigation Top Bar End */

/* Navigation Menu */
.navbar-brand {
	margin-right: 0;
}
.navbar {
	padding: 0;
	background-color: var(--nav-bgcolor);
	z-index: 5;
}
.navbar-light .navbar-nav .nav-link {
	font-weight: bold;
	color: var(--nav-link);
	font-size: 1rem;
}
.navbar-light .navbar-nav li {
	padding: 0;
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
   color:  var(--nav-linkh);
}
.navbar-light .navbar-nav .nav-link2 {
	background-color: var(--primary-link);
	color: #FFF;
}
.navbar-light .navbar-nav .nav-link2:focus, .navbar-light .navbar-nav .nav-link2:hover {
	background-color: var(--primary-linkh);
	color: #FFF;
}

.dropdown-item:focus,.dropdown-item:hover{
	color: #FFF;
	text-decoration: none;
	background-color: var(--navdropdown-bgcolor);
}
.dropdown-item.active,.dropdown-item:active{
	color: #FFF;
	text-decoration: none;
	background-color: var(--navdropdown-bgcolor);
}

.navbar-light .navbar-toggler {
	color: rgba(255,255,255,1);
    border-color: rgba(0,0,0,0);
}
.navbar-toggler:focus {
	box-shadow: 0 0 0 0;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Navigation Menu End */

/* Counter */
#counterBG {
	background-color: var(--counter-bgcolor);
}
#countertime {
	text-transform: uppercase;
	font-size: 0.9rem;
	color: var(--counter-text);
}
.counterheader {
	font-size: 1.3rem;
	text-transform: uppercase;
	font-weight: bold;
	color: var(--counter-text);
}
.counterText {
	margin: 0;
	line-height: 1;
	font-size: 1.7rem;
	text-transform: uppercase;
	font-weight: bold;
	color: var(--counter-text);
}
/* Counter End */

/* Homepage */
#about {
	/* The image used */
    background: #FFF url("../img/bg-about.jpg");

    /* Create the parallax scrolling effect */
	background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#entitlements {
	/* The image used */
    background: #4cc1b9 url("../img/bg-entitlements.jpg") top center no-repeat;
	background-size: 100% auto;
}

#leaderboard {
	/* The image used */
    background: var(--purple) url("../img/bg-leaderboard.jpg") top center no-repeat;
	background-size: 100% auto;
}

.progresscounter-item {
    display: flex;
    padding: 30px 18px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #d9d9d9;
	text-transform: uppercase;
}
.progresscounter-item:last-child {
    border-right: 0;
}

.table-swipe {
	display: none;
}

.table>:not(caption)>*>* {
	border-bottom-width: 0px;
	background-color: transparent;
}

.toptable {
	width: 100%;
	border-spacing: 0px 3px;
}
.toptable thead {
	background: var(--colorTwo);
}
.toptable thead th {
	vertical-align: middle;
	color: var(--white)
}
.toptable thead tr, .toptable tbody tr {
	vertical-align: middle;
	padding: 20px 0;
	margin: 5px 0;
}
.toptable tbody tr {
	font-weight: bold;
}
.toptable tbody tr:nth-child(even) {
	background: #DDD;
}
.toptable tbody tr:nth-child(odd) {
	background: #FFF;
}

.colortable {
	width: 100%;
	border-collapse: separate;
	background: #DDD;
}
.colortable thead th, .colortable tbody th {
	vertical-align: middle;
    background-color: var(--primary-color);
	color: #FFF;
}
.colortable tbody td {
	vertical-align: middle;
	background: #FFF;
}

.myFR {
	margin-bottom: -5px;
}
.myFR li {
	margin: 0 1px;
}

.myFR .nav-link {
    margin-bottom: calc(-1* var(--bs-nav-tabs-border-width));
	font-weight: bold;
}

.myFR .nav-item.show .nav-link, .myFR .nav-link.active, .myCSR .nav-item.show .nav-link, .myCSR .nav-link.active {
    color: var(--black);
    background-color: var(--yellow);
    border-color: var(--yellow);
}

.leaderboardfrtable {
	width: 100%;
	border-spacing: 0px 3px;
	background: transparent;
	border-top: 2px solid var(--yellow);
}

.leaderboardfrtable thead th {
	vertical-align: middle;
    background-color: var(--darkgrey);
	color: var(--white);
	border-right: 1px solid var(--purple);
}
.leaderboardfrtable thead th:last-child {
	border-right: none;
}
.leaderboardfrtable tbody tr:nth-child(odd) {
	vertical-align: middle;
	background-color: var(--white);
}
.leaderboardfrtable tbody tr:nth-child(even) {
	vertical-align: middle;
	background-color: #E0F7FA;
}
.leaderboardfrtable tbody td {
	background-color: transparent;
	border-right: 1px solid var(--purple);
}
.leaderboardfrtable tbody td:last-child {
	border-right: none;
}
/* Homepage End */

/* Progress Bar */
#progress {
	/* The image used */
    background: var(--colorThree) url("../img/bg-progress.jpg") center center no-repeat;
}
.progress {
	border-radius: 1rem;
	background: var(--lightgrey);
	height: 35px;
	overflow: hidden;
}
.progress::-webkit-progress-bar {
    border-radius: 1rem;
}
.progress::-webkit-progress-value {
	border-radius: 1rem;
}
.progress::-moz-progress-bar {
    border-radius: 1rem;
}
.colour-bar {
	position: relative;
	border-radius: 1rem;
    background: var(--primary-color);
    animation: animate-positive 2s;
}

.profilecounter-item {
    padding: 20px 18px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #d9d9d9;
}
.profilecounter-item:last-child {
    border-right: 0;
}

.profilesupporter-item {
    padding: 20px 18px;
    flex-direction: column;
	align-items: center;
    justify-content: center;
	border-top: 1px solid #d9d9d9;
}
.profilesupporter-item:last-child {
    padding-bottom: 0;
}
/* Modal */
.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
/* Participant Profile End */

/* Pagination */
.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}
.pagination>li{display:inline}
.pagination>li>a,.pagination>li>span{
	position:relative;
	float:left;
	padding:6px 12px;
	margin-left:-1px;
	line-height:1.42857143;
	color:#FFF;
	text-decoration:none;
	background-color:var(--primary-link);
	border:1px solid #ddd
}
.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}
.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}
.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{
	z-index:2;
	color:#FFF;
	background-color:var(--primary-linkh);
	border-color:#ddd
}
.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{
	z-index:3;
	color:#FFF;
	cursor:default;
	background-color:var(--primary-linkh);
	border-color:#ddd;
}
.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{
	color:#FFF;
	cursor:not-allowed;
	background-color:var(--secondary-linkh);
	border-color:#ddd;
}
.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}
.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}
.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}
.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}
.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}
.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}

/* FAQs */
.list-faq {
    padding-left: 0;
    list-style: none;
}
ul.list-faq {
    margin: 0;
}
.list-faq>li {
    padding: 8px 5px;
}

.accordion-item {
	border-color: var(--white);
}
.accordion-button {
	color: var(--secondary-link);
	font-size: 1.2rem;
}
.accordion-button:focus {
	border-color: var(--white);
	box-shadow: 0 0 0 0.25rem rgb(255 255 255 / 25%)
}
.accordion-button::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2379C95F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed) {
	background-color: var(--secondary-linkh);
	color: #FFF;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body {
	background-color: #fff;
}
/* FAQs End */

/* Section CTA */
.CTABG {
	/* The image used */
    background: var(--colorDonate) url("../img/bg-cta.jpg") center center no-repeat;
	background-size: 100% 100%;
}

.CTABGsponsors {
	/* The image used */
    background: #4cc1b9 url("../img/bg-cta-sponsor.jpg") top right no-repeat;
	background-size: 100% auto;
	
	padding: 100px 0;
}
/* Section CTA End */

/* T&C */
#tnc ol { counter-reset: item; padding: 0;}
#tnc li { display: block; content: counters(item, "."); }
#tnc ol ol { padding-left: 2rem;}
#tnc li:before { content: counters(item, ".") ". "; counter-increment: item; }
/* T&C End */

/* Footer */
footer {
	background-color: var(--footer-bgcolor);
	color: var(--footer-text);
}
.footerbottomBG{
	background-color: var(--footerbottom-bgcolor);
}

footer a, .footerbottomBG a{
	color: var(--footer-link);
	text-decoration: none;
}

footer a:hover, .footerbottomBG a:hover{
	color: var(--footer-linkh);
}

.copyright-text {
	font-size: 0.8rem;
}

.listnone {
    list-style: none;
}

.list-inline, .listcontact {
    padding-left: 0;
	margin-bottom: 0;
    margin-left: -5px;
    list-style: none;
}

.list-inline>li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
}

.listcontact>li {
    padding-right: 5px;
    padding-left: 5px;
	line-height: 25px;
}

.listcontact>li>svg {
    margin-right: 10px;
}
/* Footer End */

/* Font */
.ml9 {
  position: relative;
}
.ml9 .word {
  white-space: nowrap;
  display: inline-block;
}
.ml9 .text-wrapper {
  position: relative;
  display: inline-block;
  padding-top: 0.2em;
  padding-right: 0.05em;
  padding-bottom: 0.1em;
  overflow: hidden;
}
.ml9 .letter {
  transform-origin: 50% 100%;
  display: inline-block;
  line-height: 1em;
}

.headingFont {
	font-family: "CooperBlack", sans-serif;
}

.titleHeading {
	font-weight: bold;
	color: var(--primary-color);
	text-transform: uppercase;
	margin-bottom: 10px;
}
.subTitleText {
	font-weight: bold;
}

.text-justify {
	text-align: justify;
}
.smallFont {
	font-size: 0.8rem;
	font-weight: bold;
}
.bigFont {
	font-size: 1.8rem;
	font-weight: bold;
}
.bigFontText {
	font-size: 1.6rem;
	font-weight: bold;
}
.uppCase {
	text-transform: uppercase;
}
.sponsorText {
	text-transform: uppercase;
	font-weight: bold;
	color: var(--black);
}

.text-dropshadow {
	text-shadow: 1px 1px 10px #606060;
}

.progresscounterText {
	font-size: 3rem;
	font-weight: bold;
	color: var(--black);
}

.profilecounterText {
	font-size: 1.8rem;
	font-weight: bold;
	color: var(--black);
}

.headerBG {	
	background: var(--colorFive) url("../img/banner-subpage.jpg") top center no-repeat;
	background-size: 100% auto;
}
.footerBG {
	background-color: var(--footer-bgcolor);
}
.primaryBG {
	background-color: var(--primary-color);
}
.secondaryBG {
	background-color: var(--secondary-color);
}
.blackBG {
	background-color: var(--black);
}
.whiteBG {
	background-color: var(--white);
}
.lightgreyBG {
	background-color: var(--lightgrey);
}
.gradientBG{
	background-image: linear-gradient(to bottom, var(--purple), var(--white));
}
.purpleBG {
	background-color: var(--purple);
}
.yellowBG {
	background-color: var(--yellow);
}
.colorGreenBG {
	background-color: var(--colorGreen);
}


.bg-success {
	background-color: #002f86;
}

.primaryColor {
	color: var(--primary-color);
}
.secondaryColor {
	color: var(--secondary-color);
}
.headingColor {
	color: var(--heading-color);
}
.black {
	color: var(--black);
}
.white {
	color: var(--white);
}
.darkgrey {
	color: var(--darkgrey);
}
.lightgrey {
	color: var(--lightgrey);
}
.red {
	color: var(--red);
}
.green {
	color: var(--green);
}
.yellow {
	color: var(--yellow);
}
.colorOne {
	color: var(--colorOne);
}
.colorSeven {
	color: var(--colorSeven);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.outlined-text {
    -webkit-text-stroke: 1px var(--colorOne); /* 1px black outline */
    -moz-text-stroke: 1px var(--colorOne);
}

.shadowed-text {
	text-shadow: -2px 0px var(--colorOne);
}

.glitch-text {
    position: relative;
    animation: glitch 1s infinite;
}

@keyframes glitch {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(2px, -2px);
    }
    60% {
        transform: translate(-1px, 1px);
    }
    80% {
        transform: translate(1px, -1px);
    }
}

.wave-text span {
    display: inline-block;
    animation: wave 2s ease-in-out infinite;
}

.wave-text .wfirst {
    animation-delay: 0s;
}
.wave-text .wsecond {
    animation-delay: 0.3s;
}
.wave-text .wthird {
    animation-delay: 0.6s;
}
.wave-text .wfourth {
    animation-delay: 0.9s;
}
.wave-text .wfifth {
    animation-delay: 0.12s;
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.spin-text {
    display: inline-block;
    animation: spin 0.8s linear infinite ;
}
@keyframes spin {
    0%, 100% {
		transform: rotate(0deg); /* Starting point of the rotation */
    }
	50% {
		transform: rotate(15deg); /* Starting point of the rotation */
    }
}

.scale-text {
	display: inline-block;
	animation: bigToSmall 2s ease-in-out infinite;
}
@keyframes bigToSmall {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(0.5); /* Ends at half the original size */
    }
}

.bfh-datepicker-toggle>input[readonly] {
    background-color: #FFF !important;
}

#my_centered_buttons { display: flex; justify-content: center; }
#my_right_buttons { display: flex; justify-content: right; }

/* Back to top Button */
#BTT {
	display: none; /* Hidden by default */
	position: fixed; /* Fixed/sticky position */
	bottom: 60px; /* Place the button at the bottom of the page */
	right: 30px; /* Place the button 30px from the right */
	z-index: 99; /* Make sure it does not overlap */
	border: none; /* Remove borders */
	outline: none; /* Remove outline */
	background-color: var(--primary-link); /* Set a background color */
	color: var(--white); /* Text color */
	cursor: pointer; /* Add a mouse pointer on hover */
	padding: 0.6rem 0.8rem; /* Some padding */
	border-radius: 50%; /* Rounded corners */
	font-size: 12px; /* Increase font size */
}
#BTT:hover {
	background-color: var(--primary-linkh); /* Add a dark-grey background on hover */
	color: var(--white);
}
/* Back to top Button End */

.owl-prev, .owl-next {
	width: 15px;
	height: 100px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: block !important;
}
.owl-prev { left: -20px; }
.owl-next { right: 0px; }
.owl-prev i, .owl-next i {transform : scale(2,2); color: var(--primary-link);}

.owl-dots {
	text-align: center !important;
}
.owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	background: var(--white);
	display: block;
	-webkit-backface-visibility: visible;
	transition: opacity .2s ease;
    border-radius: 30px;
}
   
.owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background: var(--primary-linkh);
}

.bootbox-close-button {
	display: none;
}

.iti {
	display: block !important;
}
.iti~.invalid-feedback {
    display: block;
}

.hidden-nav {
	display:none;
}

.mainbanner {
	display: block;
}
.mobile-mainbanner {
	display: none;
}

.hide { display: none; }
.show { display: block; }

@media only screen and (min-width:320px) and (max-width:768px){	
	.mainbanner {
		display:none;
	}
	.mobile-mainbanner {
		display: block;
	}
	
	.hidden-col {
		display:none;
	}
	
	.navbar-collapse {
		background-color: var(--nav-bgcolor);
	}
	
	.btn-space {
		margin-top: 10px;
	}
	
	.scroll_frame iframe {
		display:block;
	}
	
	.table-swipe {
		display: block;
		width: 100%;
		margin: 0 auto 5px;
		padding: 5px 0;
		color: #FFF;
		background: var(--counter-bgcolor);
		position: relative;
		line-height: 1;
		text-align: center;
	}
	
	.table-swipe b:first-child {
		left: 5%;
		position: absolute;
	}
	
	.table-swipe b:last-child {
		right: 5%;
		position: absolute;
	}
	
	h2 {
		font-size: 1.8rem;
	}
	h3 {
		font-size: 1.5rem;
	}
	h4 {
		font-size: 1.4rem;
	}
	h5 {
		font-size: 1.2rem;
	}
	h6 {
		font-size: 1.1rem;
	}
	
	.bigFont {
		font-size: 1.6rem;
	}
	.bigFontText {
		font-size: 1.4rem;
	}
}