.gold {
	/*color: rgb(255, 193, 7);*/
	color: #afff3d;
}

.green {
	color: rgb(175,255,61);
}
.white {
	color: #fff;
}
.red {
	color: red;
}
.blue {
	color: #265ea8;
}
a, a:hover {
	color: #afff3d;
}
.thumb:before {
	border-width: 1px;
}
.btn {
	border-radius: 0;
}
#contactForm .btn-primary,
#contactForm .btn-primary:hover,
#contactForm .btn-primary:not(:disabled):not(.disabled):active {
	background-color: transparent;
	border: 1px solid rgb(255, 193, 7);
}
.form-control:focus {
    border-color: rgb(255, 193, 7);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7,.25);
}
.btn-enter,
.btn-enter:hover,
.btn-enter:not(:disabled):not(.disabled):active {
	background-color: transparent;
	border: 1px solid rgb(255, 193, 7);
	color: #ddd;
}
.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled):active {
	background-color: rgba(0,0,0,0.5);
	border: 1px solid #fff;
	/*color: rgb(255, 193, 7);*/
	color: #afff3d;
	text-decoration: none;
}
.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus, .btn-primary.focus, .btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, .5);
}
.btn {
	border-radius: 0;
}




.topnav {
	background-color: #262261;
	padding: 0rem 0;
}
.topnav nav {
	display: flex;
}
.topnav .logo {
	display: block;
	width: 20rem;
	height: calc(5rem * 0.5193759436);
	background-image: url('/assets/img/TRA25-Web-webhead.png');
	background-repeat: no-repeat;
	background-size: contain;
	text-indent: -9999px;
}
.topnav ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
	font-size: .7rem;
	}
.topnav a {
	color: white;
	text-decoration: none;
}
.topnav li.active a {
	color: rgb(175,255,61);
}

@media all and (max-width: 575px) {
	

	.topnav nav {
		flex-direction: column;
		position: relative;
	}

	.topnav ul {
		flex-direction: column;
	}
	.topnav ul.hideOnMobile {
		display: none;
	}
	.topnav li {
		margin-top: .75rem;
	}
	.topnav .toggle {
		position: absolute;
		right: 0;
		font-size: 2rem;
		color: #fff;
		cursor: pointer;
	}

}
	
@media all and (min-width: 576px) {
	.topnav ul {
		align-items: center;
		margin-left: auto;
	}
	.topnav li + li:before {
		content: "|";
		color: #ccc;
		margin: 0 .75rem;
	}
	.topnav .toggle {
		display: none;
	}
}














.membersnav {
	background-color: #222;
	padding: 1rem 0;
}
.membersnav nav {
	display: flex;
}
.membersnav p {
	margin: 0;
	color: #fff;
}
.membersnav ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	}
.membersnav a {
	color: white;
	text-decoration: none;
}
.membersnav li.active a {
	color: rgb(255, 193, 7);
}

@media all and (max-width: 575px) {

	.membersnav nav {
		flex-direction: column;
		position: relative;
	}
	.membersnav ul {
		flex-direction: column;
	}
	.membersnav li {
		margin-top: .75rem;
	}

}
	
@media all and (min-width: 576px) {
	.membersnav ul {
		align-items: center;
		margin-left: auto;
	}
	.membersnav li + li:before {
		content: "|";
		color: #fff;
		margin: 0 .75rem;
	}
}
















/* Registration Form hack */
/* See also site.js */

div.registrationForm div.alert-danger {
	display: none;
}

div.registrationForm ul.errors li:nth-child(2) {
	display: none;
}

/* */
.flash {
	text-align: center;
}
.flashError {
	background-color: red;
	color: #fff;
}
.flashNotice {
	background-color: yellow;
}
.flashSuccess {
	background-color: green;
	color: #fff;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0,0,0,.1);
}
.delete-entry {
    --fa-primary-color: red;
    --fa-secondary-color: rgba(0,0,0,0.5);
}
.add-entry {
    --fa-primary-color: white;
    --fa-secondary-color: green;
}
a.new-entry, a.new-entry:hover {
	background-color: green;
	color: #fff;
	padding: 0 .25em;
}
.submit-entry, .submit-entry:hover {
	/*
	background-color: rgba(0,255,0,0.3);
	padding: 0 .25rem;
	color: white;
	text-decoration: none;
	*/
}

.form-control:disabled, .form-control[readonly] {
    background-color: #ccc;
}
.form-control::placeholder {
  color: #ccc;
}
.form-group > label {
	font-weight: 700;
}



.wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble;
	-webkit-animation-duration: 2.5s;
	animation-duration: 2.5s;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite
}
@-webkit-keyframes wobble {
	5% {
		-webkit-transform: translateY(8px);
		transform: translateY(8px)
	}
	10% {
		-webkit-transform: translateY(-6px);
		transform: translateY(-6px)
	}
	15% {
		-webkit-transform: translateY(4px);
		transform: translateY(4px)
	}
	20% {
		-webkit-transform: translateY(-2px);
		transform: translateY(-2px)
	}
	25% {
		-webkit-transform: translateY(1px);
		transform: translateY(1px)
	}
	30% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes wobble {
	5% {
		-webkit-transform: translateY(8px);
		transform: translateY(8px)
	}
	10% {
		-webkit-transform: translateY(-6px);
		transform: translateY(-6px)
	}
	15% {
		-webkit-transform: translateY(4px);
		transform: translateY(4px)
	}
	20% {
		-webkit-transform: translateY(-2px);
		transform: translateY(-2px)
	}
	25% {
		-webkit-transform: translateY(1px);
		transform: translateY(1px)
	}
	30% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

.sponsors {
	margin-bottom: -1rem;
}
.sponsor {
	background-color: #fff;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	padding-bottom: 30%;
	margin-top: -1rem;
}
.sponsor.alt {
	padding-bottom: 32.75%;
}

.slideshow {
	height: 10rem;
	position: relative;
}
.slideshow-wrapper {
	position: absolute;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
	overflow: visible;
}
.cycle-slideshow img {
	width: 5rem;
}
.cycle-slideshow img.platinum {
	width: 10rem;
}




.your-class img {
	width: 10rem;
}







.main-carousel {
	margin: 0 -2rem;
}
.carousel-cell {
	height: 5rem;
	display: flex;
	align-items: center;
	padding: 0 .5rem;
}
.carousel-cell img {
  display: block;
  height: 3rem;
  
}
.carousel-cell.platinum img {
  height: 4rem;
  
}


.bar {
	color: #fff;
	text-align: center;
	font-weight: 700;
	font-size: 1.25rem;
}

.headlineSponsors {
	background-color: #a41b5c;
}

.goldSponsors {
	background-color: #bca95c;
}
.categorySponsors {
	background-color: #265ea8;
}
.alsoSponsors {
	background-color: #1DA539;
}

.afterparty {
	background-color: #0089FF;
}

.entertainment {
	background-color: #049f01;
}

.recruitmentSponsors {
	background-color: #EC8303;
}

.sponsorDetail {
	background-color: #fff;
}

.text-platinumSponsor {
	color: #8e9da4;
}
.text-goldSponsor {
	color: #bca95c;
}
.text-categorySponsor {
	color: #265ea8;
}
.text-officialRecruitmentPartner {
	color: #9d9d9c;
}