/*****************/
/* Color palette */
/*****************/

:root {
	/* blues */

	/* greys */

	/* accent colors */
}

/**************/
/* Typography */
/**************/

/** The styling below overrides the Need Help? box styling. Unfortunately, just adding the 
	* .woot-content-column parent selector will increase the specificity and override many of the classes
	* in this file. Not sure what the best solution is; the difference is very small so just noting this for now.
	*/
h2,
h3,
h4,
h5,
h6,
p {
	font-family: "Roboto Flex", Roboto, sans-serif;
	overflow-wrap: break-word;
	color: inherit;
	margin: 0;
	transition: border-bottom 0.15s ease;
	font-variation-settings: "wdth" 110, "GRAD" 0, "slnt" 0, "XTRA" 468,
		"YTLC" 514, "YTUC" 693, "YTAS" 750, "YTDE" -203, "YTFI" 738;
}

h2 {
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.3;
}

h3 {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.3;
}

h4 {
	font-size: 1.3125rem;
	font-weight: 700;
	line-height: 1.5;
}

h5 {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.5;
}

h6 {
	font-size: 1rem;
	font-weight: 453;
	line-height: 1.5;
}

p {
	font-size: 0.9375rem;
	font-weight: 300;
	line-height: 1.5;
}

.medal-count {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.3;
}

.medal-caption {
	font-size: 1.3125rem;
	font-weight: 453;
	line-height: 1.25;
	text-align: center;
}

.problem-source {
	font-size: 0.75rem;
	font-weight: 400;
}

.h7-headline {
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.5;
}

.body3 {
	font-size: 1.3125rem;
	font-weight: 453;
	line-height: 1.25;
}

.small-text-italics {
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.5;
	font-style: italic;
	color: #606060;
	font-variation-settings: "wdth" 100;
}

.woot-content-col a {
	color: #295d80;
	-webkit-text-decoration-line: underline;
	        text-decoration-line: underline;
}

.woot-content-col strong {
	font-weight: 700;
}

.font-24px {
	font-size: 1.5rem;
}

.font-18px {
	font-size: 1.125rem;
}

.font-14px {
	font-size: 0.875rem;
}

.font-16px {
	font-size: 1rem;
}

.list-style-type-disc {
	list-style-type: disc;
}

@media (min-width: 576px) {
	.medal-count {
		font-size: 4rem;
	}
}

@font-face {
	font-family: "PT Serif";
	src: url("/assets/fonts/PTSerif/PTSerif-Bold.ttf") format("truetype");
	font-weight: 700;
}

/******************/
/* Element Colors */
/******************/

.white-bg {
	background-color: #ffffff;
}

.gray-bg {
	background-color: #f7f7f8;
}

.txt-neon-blue {
	color: #91edf5;
}

.txt-blue {
	color: #295d80;
}

.txt-bronze {
	color: #7e4e06;
}

.txt-gold {
	color: #c48a00;
}

.txt-silver {
	color: #6e7784;
}

/*************************/
/* General Page Elements */
/*************************/

.woot-content-col {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	        flex-direction: column;
	-webkit-align-items: flex-start;
	        align-items: flex-start;
	margin-bottom: 1.3rem;
	color: #262626;
}

.woot-content-col *,
.woot-content-col *::before,
.woot-content-col *::after {
	box-sizing: border-box;
}

.woot-content-col .container {
	margin-bottom: 1.3rem;
}

.woot-content-col .icon {
	padding-right: 0.6rem;
	color: #295d80;
	margin-top: auto;
	margin-bottom: auto;
}

.benefits-icon {
	padding-right: 12px !important;
	padding-top: 2px !important;
	color: #295d80;
}

.tag-row {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
}

.tag-row-item {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	        flex-direction: row;
	-webkit-flex-wrap: nowrap;
	        flex-wrap: nowrap;
	padding-right: 10px;
	padding-left: 10px;
	-webkit-align-items: center;
	        align-items: center;
	padding-bottom: 4px;
	-webkit-align-self: start;
	        align-self: start;
}

.tag-row-item h4.h7-headline {
	margin: 0;
}

.tag-row-caption {
	padding-top: 4px;
	padding-left: 28px;
	padding-bottom: 16px;
}

.line-div {
	height: 0;
	padding: 0;
	border: none;
	margin: 0;
	border-top: 1px solid #262626;
}

/*********************/
/* Buttons and Links */
/*********************/

.woot-btn {
	/* universal styling */
	display: -webkit-flex;
	display: flex;
	padding: 8px 16px;
	-webkit-justify-content: center;
	        justify-content: center;
	-webkit-align-items: center;
	        align-items: center;
	border-radius: 4px;
	border: none;
	/* transitions */
	transition: background-color 150ms, outline 150ms;
	/* font */
	font-family: "Roboto Flex", Roboto, sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0.5px;
	vertical-align: top;
}

.woot-btn .fa-sharp,
.woot-btn .fa {
	margin-left: 8px;
}

a.woot-btn {
	text-decoration: none;
}

.no-btn-styles {
	background-color: #ffffff !important;
	border: none !important;
	border-radius: 4px;
}

.no-btn-styles:focus-visible {
	outline-offset: 2px;
	outline: 2px solid #295d80 !important; /* override Bootstrap */
}

/* Primary Button */
.primary-btn {
	background: #295d80;
	color: #ffffff !important; /* override (.woot-content-col a) color attribute */
}

.primary-btn:hover {
	background-color: #1b365d;
}

.primary-btn:disabled {
	background-color: #d0d2d3;
}

.primary-btn:focus {
	outline-offset: 2px;
	outline: 2px solid #295d80 !important; /* override Bootstrap */
}

/* Secondary Button */
.secondary-btn {
	color: #295d80;
	background-color: #ffffff;
	border: 1px solid #295d80;
}

.secondary-btn:hover {
	outline: 2.5px solid;
	outline-offset: -2.5px;
}

.secondary-btn:disabled {
	color: #aaaaaa;
	border-color: #d0d2d3;
	outline: none;
}

.secondary-btn:focus {
	outline: 2px solid #295d80 !important; /* override Bootstrap */
	outline-offset: 2px;
}

/* Links */
a.magenta-link {
	color: #9e009e !important;
	-webkit-text-decoration-line: none;
	        text-decoration-line: none;
}

a.magenta-link:hover {
	border-bottom: 1.5px solid #9e009e;
}

a.magenta-link:focus {
	border-bottom: 1.5px solid #9e009e;
}

a.magenta-link i {
	color: #9e009e !important;
	padding-left: 8px;
}

a.blue-link {
	color: #295d80;
}

/*****************/
/* Callout Boxes */
/*****************/

.prereq-box {
	background: #cdeef1;
	color: #295d80;
	display: -webkit-inline-flex;
	display: inline-flex;
	padding: 8px 16px;
	border-radius: 4px;
}

.green-callout {
	background: #eef6c5;
	color: #2f5628;
	display: -webkit-inline-flex;
	display: inline-flex;
	padding: 6px 16px;
	border-radius: 100px;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.5;
}

.green-callout.sharper {
	padding: 2px 12px;
	border-radius: 4px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	        align-items: center;
}

.early-bird-price {
	color: #2f5628;
	font-size: 1.5rem;
	line-height: 1.3;
	font-weight: 600;
	padding-right: 8px;
}

.visually-hidden {
	clip: rect(0 0 0 0);
	-webkit-clip-path: inset(50%);
	        clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.prereq-box strong {
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.5;
}

.other-prep-box {
	background: #cdeef1;
	color: #295d80;
	padding: 4px 12px;
	border-radius: 100px;
}

/*************/
/* Accordion */
/*************/

.accordion-caret {
	width: 2rem;
	height: 2rem;
	border-radius: 6rem;
	border: 1px solid #295d80;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	        flex-direction: column;
	-webkit-justify-content: center;
	        justify-content: center;
	-webkit-align-items: center;
	        align-items: center;
	background-color: #295d80;
	transition: background-color 0.15s, color 0.15s, -webkit-transform 0.15s;
	transition: transform 0.15s, background-color 0.15s, color 0.15s;
	transition: transform 0.15s, background-color 0.15s, color 0.15s, -webkit-transform 0.15s;
	-webkit-transform: rotate(180deg);
	        transform: rotate(180deg);
}

.fa-chevron-down {
	font-size: 0.9rem;
	font-weight: 400;
	color: #ffffff;
}

.accordion-card.closed .fa-chevron-down {
	color: #295d80;
}

.accordion-card.closed .accordion-caret {
	-webkit-transform: rotate(0deg);
	        transform: rotate(0deg);
	background-color: #ffffff;
}

.accordion-header h4 {
	border-bottom: 1.85px solid #ffffff;
	line-height: 1;
}

.accordion-header-inner {
	margin: auto 0;
}

.accordion-header:hover h4 {
	border-bottom: 1.85px solid #295d80 !important;
}

.accordion-header:hover .accordion-caret {
	background-color: #295d80;
}

.accordion-header:hover .fa-chevron-down {
	color: #ffffff;
}

/***************/
/* Title Block */
/***************/

.gray-quote-box {
	background-color: #f7f7f8;
	padding: 24px !important;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	        flex-direction: column;
	color: #295d80;
	font-size: 0.9rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	border-radius: 8px;
}

/* bootstrap grid won't quite cut it for home title block, need max width */
.max-width-675px {
	max-width: 675px;
}

/**********************/
/* Registration Block */
/**********************/

.woot-content-col .fa-circle {
	font-size: 6px;
	margin-top: 1.4em !important;
	margin-right: 2px;
}

/*********************/
/* Sponsorship Block */
/*********************/

.sponsorship-gray-block-inner {
	padding: 15px 15px 23px 15px;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	        flex-direction: column;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	height: 100%;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
}

.text-center {
	text-align: center;
}

.logo-wrapper {
	height: 3.75rem;
	-webkit-flex-shrink: 0;
	        flex-shrink: 0;
	padding: 10px 3% 12px 3%;
}

.logo-wrapper-lg {
	padding: 20px 15px 20px 15px;
	height: 96px;
}

.sponsorship-logo {
	margin: auto;
	width: 100%;
	max-height: 100%;
}

.sponsorship-logo-mobile {
	margin: auto;
	max-height: 27px;
	width: 100%;
}

.sponsorship-level-caption {
	color: #545454;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
}

a.sponsorship-logo-link {
	-webkit-text-decoration-line: none;
	        text-decoration-line: none;
}

/***********************/
/* Curr Designer Block */
/***********************/

.curr-img {
	width: 100%;
	height: auto;
}

.curr-img-figure {
	max-width: 400px;
	margin: 0 auto;
}

.curr-designer-icon-wrapper {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	        justify-content: center;
	width: 28px;
}

/****************/
/* Levels Block */
/****************/

.silly-empty-test {
	display: none;
}

.abs-anchor-link {
	position: absolute;
	top: 150px;
}
@media (min-width: 700px) {
	.abs-anchor-link {
		top: 0px;
	}
}

.pos-rel {
	position: relative;
}

.schedule-wrapper {
	font-weight: 300;
	margin-top: 6px;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	        flex-direction: column;
	-webkit-justify-content: start;
	        justify-content: start;
}

.schedule-wrapper .icon {
	padding-top: 4px;
}

/**********************************/
/* Prestigious Universities Block */
/**********************************/

.quote-light-blue-wrapper {
	background-color: #cdeef1;
	color: #295d80;
	border-radius: 8px;
	padding: 1.25rem 16px;
	line-height: 1.5;
	letter-spacing: 0.5px;
}

.quote-light-blue-caption {
	font-size: 16px;
	font-weight: 453;
	padding: 0.5rem 0 0 18px;
}

.quote-light-blue-inner {
	padding-left: 20px;
	border-left: 2px solid #295d80;
	font-size: 1.313rem;
	font-weight: 453;
	line-height: 1.25;
}

.university-txt {
	width: 165px;
	color: #265677;
	font-family: "PT Serif", serif;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.3;
}

/**********************/
/* Testimonials Block */
/**********************/

.testimonial-block-wrapper {
	background-color: #1b365d;
	color: #ffffff;
}

.testimonial-item {
	border-left: 2px solid #1b7594;
	padding: 4px 16px;
	font-weight: 300;
}

/***********************************************/
/* Adding To Bootstrap Grid System */
/***********************************************/

/* custom class names are based on 1rem = 16px */
.w-100 {
	width: 100% !important;
}

.my-6px {
	margin-top: 0.375rem !important;
	margin-bottom: 0.375rem !important;
}

.pb-12px {
	padding-bottom: 0.75rem !important;
}

.mb-n12px {
	margin-bottom: -0.75rem !important;
}

.p-20px {
	padding: 1.25rem !important;
}

.py-20px {
	padding-top: 1.25rem !important;
	padding-bottom: 1.25rem !important;
}

.px-20px {
	padding-left: 1.25rem !important;
	padding-right: 1.25rem !important;
}

.pt-20px {
	padding-top: 1.25rem !important;
}

.pb-20px {
	padding-bottom: 1.25rem !important;
}

.pl-20px {
	padding-left: 1.25rem !important;
}

.m-n20px {
	margin: -1.25rem !important;
}

.mx-n20px {
	margin-left: -1.25rem !important;
	margin-right: -1.25rem !important;
}

.pl-28px {
	padding-left: 1.75rem !important;
}

.m-n12px {
	margin: -12px !important;
}

.p-12px {
	padding: 12px !important;
}

.mr-40px {
	margin-right: 2.5rem !important;
}

@media screen and (min-width: 576px) {
	.p-sm-20px {
		padding: 1.25rem !important;
	}

	.p-sm-40px {
		padding: 2.5rem !important;
	}

	.pb-sm-40px {
		padding-bottom: 2.5rem !important;
	}
}

@media (min-width: 768px) {
	.white-md-bg {
		background-color: #ffffff !important;
	}
}

@media (min-width: 992px) {
	.text-lg-left {
		text-align: left !important;
	}

	.pb-lg-20px {
		padding-bottom: 1.25rem !important;
	}
}

@media (min-width: 1200px) {
	.text-xl-left {
		text-align: left !important;
	}

	.pt-xl-20px {
		padding-top: 1.25rem !important;
	}

	.pb-xl-20px {
		padding-bottom: 1.25rem !important;
	}

	.pl-xl-40px {
		padding-left: 2.5rem !important;
	}

	.text-xl-center {
		text-align: center !important;
	}

	.text-xl-left {
		text-align: left !important;
	}

	.col-xl-2-5 {
		-webkit-flex: 0 0 20%;
		        flex: 0 0 20%;
		max-width: 20%;
	}
}

/* larger breakpoint than Bootstrap gives, matches the largest AoPS breakpoint */
@media screen and (min-width: 1271px) {
	.col-xxl,
	.col-xxl-3,
	.col-xxl-4,
	.col-xxl-7,
	.col-xxl-8,
	.col-xxl-9 {
		position: relative;
		width: 100%;
		padding-right: 0.938rem;
		padding-left: 0.938rem;
	}

	.col-xxl {
		-webkit-flex-basis: 0;
		        flex-basis: 0;
		-webkit-flex-grow: 1;
		        flex-grow: 1;
		max-width: 100%;
	}

	.col-xxl-3 {
		-webkit-flex: 0 0 25%;
		        flex: 0 0 25%;
		max-width: 25%;
	}

	.col-xxl-7 {
		-webkit-flex: 0 0 58.333333%;
		        flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}

	.col-xxl-8 {
		-webkit-flex: 0 0 66.666667%;
		        flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}

	.col-xxl-9 {
		-webkit-flex: 0 0 75%;
		        flex: 0 0 75%;
		max-width: 75%;
	}

	.pt-xxl-0 {
		padding-top: 0 !important;
	}

	.pt-xxl-20px {
		padding-top: 1.25rem !important;
	}

	.pb-xxl-0 {
		padding-bottom: 0 !important;
	}

	.pb-xxl-3 {
		padding-bottom: 1rem !important;
	}

	.mb-xxl-0 {
		margin-bottom: 0 !important;
	}

	.pb-xxl-2 {
		padding-bottom: 0.5rem !important;
	}

	.pb-xxl-4 {
		padding-bottom: 1.5rem !important;
	}

	.mb-xxl-n4 {
		margin-bottom: -1.5rem !important;
	}

	.mx-xxl-n2 {
		margin-left: -0.5rem !important;
		margin-right: -0.5rem !important;
	}

	.mr-xxl-40px {
		margin-right: 2.5rem !important;
	}

	.mx-xxl-0 {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}

	.mx-xxl-10px {
		margin-right: 0.625rem !important;
		margin-left: 0.625rem !important;
	}

	.mx-xxl-n25px {
		margin-right: -1.563rem !important;
		margin-left: -1.563rem !important;
	}

	.m-xxl-0 {
		margin: 0 !important;
	}

	.flex-xxl-row {
		-webkit-flex-direction: row !important;
		        flex-direction: row !important;
	}

	.flex-xxl-grow-0 {
		-webkit-flex-grow: 0 !important;
		        flex-grow: 0 !important;
	}

	.btn-xxl-assert-width {
		min-width: 194px;
	}

	.text-xxl-left {
		text-align: left !important;
	}
}
