@charset "UTF-8";
/* CSS Document */

/* @font-face {
font-family: "Montserrat";
src: url("../css/fonts/Montserrat-VariableFont_wght.ttf");
}
@font-face {
font-family: "Montserrat-Bold";
src: url("../css/fonts/Montserrat-Bold.ttf");
}
@font-face {
font-family: "Montserrat-SemiBold";
src: url("../css/fonts/Montserrat-SemiBold.ttf");
} */

* {
	-webkit-font-smoothing: antialiased;
}
:root {
	--body-bg-color: #fff;
	--theme-primary-color: #092e6e;
	--theme-magazine-blue: #092e6e;
	--theme-audience-blue: #2d4d83;
	--theme-light-blue: #51627e;
	--theme-alt-blue: #3386cd;
	--theme-secondary-color: #c60e3b;
	--white: #fff;
	--light-gray: #e6e5e5;
	--dark-gray: #69625b;
	--darker-gray: #2d2a26;
	--black: #000;
}
html,
body {
	overflow-x: hidden;
}
body {
	font-family: "Montserrat";
	background-color: var(--body-bg-color);
}

.bg-light-gray {
	background-color: var(--light-gray);
}
.bg-light-blue {
	background-color: var(--theme-light-blue);
}
.bg-audience-blue {
	background-color: var(--theme-audience-blue);
}
/* header	*/
#skiptocontent a:focus { background-color: var(--theme-secondary-color); color:#ffffff; }
.header {
	padding: 17px 0 0;
	background: -o-linear-gradient(
		45deg,
		rgba(180, 180, 180, 1) 0%,
		rgba(194, 194, 194, 1) 6%,
		rgba(201, 201, 201, 1) 17%,
		rgba(229, 229, 229, 1) 27%,
		rgba(239, 239, 239, 1) 39%,
		rgba(240, 240, 240, 1) 52%,
		rgba(226, 226, 226, 1) 62%,
		rgba(213, 213, 213, 1) 71%,
		rgba(196, 196, 196, 1) 79%,
		rgba(188, 188, 188, 1) 84%,
		rgba(184, 184, 184, 1) 89%,
		rgba(177, 177, 177, 1) 95%,
		rgba(177, 177, 177, 1) 100%
	);
	background: linear-gradient(
		45deg,
		rgba(180, 180, 180, 1) 0%,
		rgba(194, 194, 194, 1) 6%,
		rgba(201, 201, 201, 1) 17%,
		rgba(229, 229, 229, 1) 27%,
		rgba(239, 239, 239, 1) 39%,
		rgba(240, 240, 240, 1) 52%,
		rgba(226, 226, 226, 1) 62%,
		rgba(213, 213, 213, 1) 71%,
		rgba(196, 196, 196, 1) 79%,
		rgba(188, 188, 188, 1) 84%,
		rgba(184, 184, 184, 1) 89%,
		rgba(177, 177, 177, 1) 95%,
		rgba(177, 177, 177, 1) 100%
	);
	color: var(--theme-primary-color);
}
.top-links {
	display: inline;
	list-style: none;
	font-size: 1em;
}
.top-links li {
	margin: 5px 10px;
	display: inline;
	font-weight: bold;
}
.top-links li a {
	text-decoration: none;
	color: var(--theme-primary-color);
}
.top-links li a:hover {
	color: var(--theme-light-blue);
}

.top-links-mobile {
	list-style: none;
	font-size: 1em;
	padding-left: 0;
	margin: 20px 15px 0 0;
	text-align: center;
}
.top-links-mobile li {
	font-weight: bold;
	padding: 0.5rem 0;
}
.top-links-mobile li:hover {
	background-color: #ffffff;
}
.top-links-mobile li a {
	text-decoration: none;

	color: #ffffff;
}
.top-links-mobile li:hover a {
	color: var(--theme-primary-color);
}
.bold-secondary {
	color: var(--theme-secondary-color);
	font-weight: bold;
}
.navbar {
	background-color: var(--theme-primary-color);
	border-bottom: 6px solid var(--theme-secondary-color);
	padding-top: 0;
	padding-bottom: 0;
}
.navbar-nav {
	display: flex;
	width: 100%;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-left: 0;
	margin-bottom: -4px;
	list-style: none;
	align-items: center;
	justify-content: space-around;
}
.navbar-nav li {
	text-align: center;
}
.navbar-nav li a {
	font-weight: 700;
	color: var(--white);
}

.navbar-nav li a:hover,
.navbar-nav li a:focus {
	background-color: #fff;
	color: var(--theme-primary-color);
}
.dropdown-menu div.title {
	font-size: 1.5em;
}
.dropdown-menu .col-megamenu li {
	font-size: 0.875em;
	font-weight: bold;
	text-align: left;
}
.dropdown-menu .col-megamenu li a {
	color: var(--theme-secondary-color);
	text-decoration: none;
}
.dropdown-menu .col-megamenu a:hover {
	color: var(--theme-light-blue);
}

img.logo {
	max-width: 100%;
}

.navbar-toggler {
	padding: 0.25rem 0.75rem;
	font-size: 1.25rem;
	line-height: 1;
	background-color: transparent;
	color: var(--white);
}

.dropdown {
	position: static;
	width: 100%;
}
.dropdown-toggle {
	white-space: nowrap;
}
.dropdown-menu.show {
	width: 100%;
	padding: 30px 38px;
}
.dropdown-toggle::after {
	content: unset;
}

.list-links li ~ li {
	font-weight: normal;
	border-top: 1px solid #95989a;
	padding: 5px 0 5px 0;
}
.list-links li {
	padding: 5px 0 5px 0;
}

@media (max-width: 991px) {
	.navbar.fixed-top .navbar-collapse,
	.navbar.sticky-top .navbar-collapse {
		overflow-y: auto;
		max-height: 90vh;
		margin-top: 10px;
	}
	.magazine-card-image {
		/*		 height: 280px; */
	}
}

/* main	*/
main {
	background-color: var(--white);
}

a { 
	color: var(--theme-primary-color);
}

.btn {
	border-radius: 0;
	font-weight: bold;
	-webkit-transition: border.4s;
	-o-transition: border.4s;
	transition: border.4s;
}

.btn-primary-main,
.btn-alt-main {
	border-bottom: 5px solid var(--theme-secondary-color);
	border-radius: 0;
	color: var(--white);

}
.btn-primary-main:hover {
	color: var(--white);
	background-color: #545252;
	border-color: #545252;
}

.btn-blue {
	background-color: var(--theme-primary-color);
	border-bottom: 5px solid var(--theme-secondary-color);
	color: var(--white)!important;

}
.btn-blue:hover {
	background-color: #545252;
	border-color: #545252;
	color: var(--white)!important;
}
.btn-gray {
	background-color: #545252;
	border-color: #545252;
	color: var(--white)!important;
}
.btn-gray:hover {
	background-color: #545252!important;
	border-color: #545252;
	color: var(--white)!important;
}
.btn-red {
	background-color: var(--theme-secondary-color);
	border-bottom: 5px solid var(--white);
	color: var(--white)!important;

}
.btn-red:hover {
	background-color: #545252;
	border-color: #545252;
	color: var(--white)!important;
}
.btn-blue-solid {
	background-color: var(--theme-primary-color);
	border: 2px solid transparent;
	color: var(--white)!important;

}
.btn-blue-solid:hover {
	background-color: var(--white);
	border: 2px solid var(--theme-primary-color);
	color: var(--theme-primary-color)!important;
}
.btn-red-solid {
	background-color: var(--theme-secondary-color);
	border: 2px solid transparent;
	color: var(--white)!important;

}
.btn-red-solid:hover {
	background-color: var(--white);
	border: 2px solid var(--theme-secondary-color);
	color: var(--theme-secondary-color)!important;
}
.btn-primary {
	background-color: var(--theme-primary-color);
	border: 2px solid transparent;
	color: var(--white)!important;

}
.btn-primary:hover {
	background-color: var(--white)!important;
	border: 2px solid var(--theme-primary-color);
	color: var(--theme-primary-color)!important;
}
.btn-secondary {
	background-color: var(--theme-secondary-color);
	border: 2px solid transparent;
	color: var(--white)!important;	
}
.btn-secondary:hover {
	background-color: var(--white);
	border: 2px solid var(--theme-secondary-color);
	color: var(--theme-secondary-color)!important;
}
.btn-link {
	color: var(--theme-primary-color);
	text-decoration: underline;
}
.btn-block {
	display: block;
}
.magazine-links a {
	font-size: 0.875em;
	min-width: 150px;
}
h1.pagetitle {
	padding: 5px 0 5px;
	border-top: none;
	border-bottom: 1px dotted #959595;
	margin: 0;
	font-size: 1.5em;
	font-weight: bold;
	text-align: center;
	color: var(--theme-light-blue);
}
h2.section__title {
	font-size: 2em;
	font-weight: bold;
	color: var(--theme-primary-color);
}
.intro {
	position: relative;
	overflow: hidden;
	margin-left: -1px;
}

.intro .intro__video {
	position: relative;
	overflow: hidden;
	background-color: var(--black);
}

.intro .intro__video video {
	position: absolute;
	/* left: 50%;
	top: 50%;
	min-width: 100%;
	z-index: 0;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%); */
}
.intro__hider {
	position: relative;
}
.intro__image {
	height: 70vh;
	background-size: cover;
}

@media (max-width: 991px) {
	.intro__image {
		height: 52vh;
	}
}

.intro__content {
	color: var(--white);
	font-weight: bold;
	position: relative;
	left: 0;
	bottom: 150px;
	width: 100%;
	text-align: center;
}
.slider-wrapper {
	position: relative;
	overflow: hidden;
}
.hero-content {
	position: relative;
	padding-top: 30px;
	/* height: 55vh; */
}
.hero-wrapper {
	background-color: var(--white);
	color: var(--theme-primary-color);
	display: block;
	font-size: 2.75em;
	font-weight: 900;
	letter-spacing: -1px;
	line-height: 0.9em;
	padding: 0 25px 0 0;
	text-align: left;
	text-transform: uppercase;
	position: relative;
	z-index: 2;
}
.hero-button {
	position: relative;
	z-index: 3;
}
/* // Small devices (landscape phones, 786px and up) */
@media (min-width: 768px) {
	/* DETERMINED. DEDICATED. DOWNTOWN.	*/
	.hero-wrapper {
		background-color: transparent;
		color: var(--white);
		top: -94px;
		text-shadow: 1px 1px 3px #555;
	}
}
.breadcrumbs {
	font-size: 0.688em;
	color: #595959;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.breadcrumbs a {
	color: #595959;
	text-decoration: none;
}
.breadcrumbs a:hover {
	color: #222222;
	text-decoration: underline;
}
.breadcrumbs .current {
	color: #222222;
}
.main-head-title {
	font-size: 2.125em;
	font-weight: normal;
	padding-bottom: 6px;
	color: var(--black);
	text-transform: uppercase;
	text-align: center;
}

a.news-block-link {
	position: relative;
	text-decoration: none;
}
a.news-block-link h3 {
	font-weight: bold;
	display: block;
}
.section-news-home p {
	position: relative;
	left: 1em;
}
.news-secondary .prev,
.news-secondary .next {
	top: 50%;
	display: block;
	position: absolute;
	color: var(--theme-primary-color);
	font-size: 2em;
}
.news-secondary .prev:hover,
.news-secondary .next:hover {
	cursor: pointer;
	color: var(--theme-alt-blue);
}
.news-secondary .prev {
	left: -10px;
}
.news-secondary .next {
	right: -10px;
}
.news-secondary h3 {
	font-size: 1em;
	color: var(--theme-primary-color);
	font-weight: 700;
	background-color: var(--white);
	display: block;
}
.news-secondary a.news-block-link:hover {
	text-decoration: underline;
}
.news-secondary a.news-block-link:hover img {
	-webkit-transform: scale(1.05, 1.05);
	-ms-transform: scale(1.05, 1.05);
	transform: scale(1.05, 1.05);
}
.news-secondary .card {
	overflow: hidden;
}
.news-secondary .slick-prev::before,
.news-secondary .slick-next::before {
	color: var(--black);
}
.slick-same-h .slick-track {
	display: flex !important;
}
.slick-same-h .slick-slide {
	height: inherit !important;
}
.slick-same-h .slick-slide div {
	height: 100% !important;
}

.section-news-home .news-main [class^="col"] {
	overflow: hidden;
}
.section-news-home .news-main a.news-item img {
	width: 100%;
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	-o-transition: transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
}

.section-news-home .news-main a.news-item {
	display:block;
	text-decoration: none;
	position: relative;
	background-color: var(--black);
}
.section-news-home .news-main a.news-item h3 {
	background-color: rgba(255,255,255,0.85);
	bottom: 0;
	color: var(--theme-primary-color);
	font-weight: 700;
	/*height: 3em;
	margin-top: -120px;*/
	margin: 0!important;
	padding: 15px;
	position: absolute;
	width:100%;
	z-index: 3000;
}
.section-news-home .news-main a.news-item:hover img {
	-webkit-transform: scale(1.05, 1.05);
	-ms-transform: scale(1.05, 1.05);
	transform: scale(1.05, 1.05);
}

a.hero-card {
	display: block;
	height: 100px;
	background-color: var(--theme-primary-color);
	overflow: hidden;
	text-decoration: none;
	border-bottom: 2px solid var(--theme-secondary-color);
}
a.hero-card img {
	max-width: 100px;
	margin-right: 20px;
	float: left;
}
a.hero-card span.title,
a.hero-card span.description {
	display: block;
	color: var(--white)!important;
}
a.hero-card span.title {
	font-weight: bold;
}

a.search-result-card {
	display: block;
	font-weight: 800;
	background-color: var(--white);
	overflow: hidden;
	text-decoration: none;
}
a.search-result-card:hover {
	background-color: var(--light-gray);
}
a.search-result-card img {
	max-width: 100%;
	margin-right: 20px;
	float: left;
	display: block;
}
a.search-result-card .content {
}

a.search-result-card .title {
	display: block;
	font-weight: 800;
	color: var(--theme-primary-color);
}
a.search-result-card .description {
	display: block;
	font-weight: 400;
	color: var(--black);
}
a.search-result-card .category {
	display: block;
	color: var(--black);
	text-transform: uppercase;
}
.intro-audience-wrapper {
	background-color: rgba(255, 255, 255, 0.90);
	margin-top: 0;
	position: relative;
}
/* // Small devices (landscape phones, 786px and up) */
@media (min-width: 768px) {
	.intro-audience-wrapper {
		margin-top: -126px;
	}
}
.intro__audience {
	text-align: center;
	line-height: 1.1;
	margin: 0;
	padding: 15px;
	display: flex;
}
.intro__audience a {
	text-decoration: none;
	color: var(--theme-primary-color);
	display: inline-block;
	height: 100%;
	padding: 5px;
	border: 1px solid transparent;
	border-collapse: collapse;
	width: 100%;
}
.intro__audience a:hover {
	border-color: var(--theme-primary-color);
}
.section-news-home,
.section-events-home {
	padding: 20px 0 10px;
	margin: 0 0 20px;
}
.section-news-home {
	background: url("https://designstudio.moderncampus.com/clients/uhd/assets/img/homepage-bynumbers-gray-75-25.jpg");
	background-position-x: 0%, 0%;
	background-position-y: 0%, 0%;
	background-repeat: repeat, repeat;
	background-size: auto, auto;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.section-social-links-home {
	background-color: var(--theme-primary-color);
}
.section-social-links-home a {
	color: var(--white);
	font-size: 1.4em;
	text-decoration: none;
}
.section-social-links-home a:hover {
	text-decoration: underline;
}
.uhdBTN {
	background-image: url("https://designstudio.moderncampus.com/clients/uhd/assets/img/homepage-bynumbers-gray-75-25.jpg");
	background-size: cover;
	background-position: center, center;
	margin: 0 0 30px;
	padding-top: 30px;
	position: relative;
}
.uhdBTN h3 {
	font-size: 1.8em;
	font-weight: 700;
	font-style: italic;
	color: var(--theme-secondary-color);
	margin-bottom: 0;
	text-shadow: 1px 1px 1px #767676;
}
.uhdBTN-title {
	font-weight: 700;
	font-size: 2.0625em;
	color: var(--theme-primary-color);
}
.uhdBTN-stats strong {
	font-size: 1.2em;
	color: var(--theme-primary-color);
}
.uhdBTN p {
	font-size: 1.2em;
}

/* sub-pages	*/

#sidebarMenu,
#sidebarMenuAlt {
	width: 100%;
	/*background-color: var(--light-gray);*/
}
#sidebarMenu .accordion-body,
#sidebarMenuAlt .accordion-body {
	padding: 0;
}

#sidebarMenu ul,
#sidebarMenuAlt ul {
	list-style-type: none;
	padding-left: 0;
	margin-bottom: 0;
	width: 100%;
}
#sidebarMenu ul li a,
#sidebarMenuAlt ul li a,
#sidebarMenu .accordion-item > a,
#sidebarMenuAlt .accordion-item > a {
	color: var(--black);
	background-color: var(--light-gray);
	border-bottom: 1px solid white;
	font-size: 0.875rem;
	padding: 0.5rem 1rem;
	text-decoration: none;
	width: 100%;
	display: block;
	font-family: "Montserrat";
	font-weight: 700;
}
#sidebarMenu ul li a,
#sidebarMenuAlt ul li a
{
	background-color:#c4c3c3;
}
#sidebarMenu .accordion-item:first-of-type, #sidebarMenuAlt .accordion-item:first-of-type { border-top-left-radius:0; border-top-right-radius:0 }
#sidebarMenu .accordion-item:last-of-type, #sidebarMenuAlt .accordion-item:last-of-type { border-bottom-left-radius:0; border-bottom-right-radius:0 }
#sidebarMenu .accordion-button, 
#sidebarMenuAlt .accordion-button {
	background-color: var(--light-gray);
	border-bottom: 1px solid white;
	border-radius: 0;
	color: var(--black);
	padding: 0.5rem 1rem;
	font-family: "Montserrat";
	font-size:0.875rem;
	font-weight: 700;
}

#sidebarMenu .accordion-button:focus,
#sidebarMenu .accordion-button:active,
#sidebarMenuAlt .accordion-button:focus,
#sidebarMenuAlt .accordion-button:active {
	color: var(--black);
}
#sidebarMenu .accordion-button:not(.collapsed)::after,
#sidebarMenuAlt .accordion-button:not(.collapsed)::after {
	background-image: none;
	transform: rotate(-180deg);
	color: var(--black);
}
#sidebarMenu .accordion-button::after,
#sidebarMenuAlt .accordion-button::after {
	font-family: "Font Awesome 6 Free";
	content: "\f078";
	color: var(--black);
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	margin-left: auto;
	background-image: none;
	transition: transform 0.2s ease-in-out;
}
#sidebarMenu .accordion-button:not(.collapsed),
#sidebarMenuAlt .accordion-button:not(.collapsed) {
	color: var(--black);
}
#sidebarMenu .accordion-button:hover,
#sidebarMenu .accordion-button:focus:hover,
#sidebarMenu ul li a:hover,
#sidebarMenu .accordion-item > a:hover,
#sidebarMenuAlt .accordion-button:hover,
#sidebarMenuAlt .accordion-button:focus:hover,
#sidebarMenuAlt ul li a:hover,
#sidebarMenuAlt .accordion-item > a:hover {
	background-color: var(--theme-primary-color);
	color: var(--white) !important;
}

#sidebarMenu .accordion-button:hover::after,
#sidebarMenuAlt .accordion-button:hover::after {
	color: var(--white) !important;
}
.slide {
	position: relative;
}
.slide p {
	font-size: 1.5em;
	font-weight: bold;
}
.slide img {
	width: 100%;
}
.slide .slide-text {
	position: absolute;
	background-color: rgba(0, 0, 0, 0.3);
	color: var(--white);
	bottom: 0;
	width: 100%;
	height: 150px;
}
.slick-dots {
	position: relative;
	font-size: 3em;
	height: 80px;
	top: -40px;
}
.slick-dots li button:before {
	font-family: "slick";
	font-size: 1.25rem;
	line-height: 20px;
}

.container-fluid.below-slider {
	position: relative;
	top: -50px;
}

/* Bootstrap Card */
.card.card-photo-boxes {
	background-color: var(--theme-primary-color);
	border: 0px;
	color: var(--white);
}
.row-photo-boxes a {
	text-decoration: none !important;
}
.row-photo-boxes a:visited {
	color: inherit !important;
}

.card.primary-card .card-header {
	background-color: var(--theme-primary-color);
	color: var(--white);
}
.card ul.card-links {
	list-style-type: none;
}
.card ul.card-links a {
	font-weight: bold;
	font-size: 1.2em;
	text-decoration: none;
}
.card ul.card-links a:hover {
	text-decoration: underline;
}
/* magazine styles	*/
.heroGraphic {
	background-size: cover;
	background-position: 50%;
	min-height: 56vw;
	padding: 1.25rem 0.625rem;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
}
.magazine-title-box {
	border: 10px solid var(--white);
	width: 85rem;
	text-align: center;
	position: relative;
	background-color: rgba(0, 0, 0, 0.5); /* for accessability */
}
.magazine-title-box.title-bottom {
	margin-bottom: 4em;
	margin-top: auto;
}
.magazine-title-box.title-middle {
	margin-bottom: 8em;
}
.magazine-title-box-alt {
	margin-bottom: 2em;
	padding: 20px 80px;
	font-size: 2.25rem;
	margin-top: auto;
	text-align: center;
	position: relative;
	background-color: #ffffff;
	color: #062f6e;
	font-weight: 700;
	text-transform: uppercase;
}
.magazine-title-box p.title {
	color: var(--white);
	font-weight: bold;
	font-size: 4rem !important;
	margin-bottom: 0;
	margin-top: 2rem;
}
.magazine-title-box p.subtitle {
	color: var(--white);
	font-size: 3rem;
	font-weight: 300;
	font-style: italic;
	margin-bottom: 0;
}
.magazine-title-box a {
	bottom: -40px;
	position: relative;
}
.magazine-card {
	box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 40px 0px;
	overflow: hidden;
}
@media (min-width: 1200px) {
	.magazine-card {
		/*		 height: 230px; */
	}
	.magazine-card .row {
		height: 100%;
	}
}

.magazine-card-image {
	background-repeat: no-repeat;
	background-size: cover;
}
.magazine-card p.title {
	font-size: 2em;
	line-height: 1.1em;
	font-weight: bold;
	color: var(--theme-primary-color);
}
.magazine-card p.subtitle {
	font-size: 1.15em;
	line-height: 1.1em;
	font-weight: 600;
	color: var(--theme-primary-color);
}
.magazine-card p.byline {
	color: var(--black);
	text-transform: uppercase;
	color: var(--theme-primary-color);
}
.magazine-container {
}
.magazine-container h1 {
	color: var(--theme-primary-color);
	font-size: 4.3125em;
	font-family: "Montserrat";
	font-weight: 600;
}
@media (max-width: 991px) {
	.magazine-container h1 {
		font-size: 2.5rem;
	}
}

.magazine-container h2 {
	color: var(--theme-primary-color);
	font-size: 1.2em;
	font-weight: 600;
}
.magazine-container span.byline {
	color: var(--black);
	font-size: 1em;
	text-transform: uppercase;
}
.magazine-container .highlight {
	text-align: center;
	background-color: var(--theme-magazine-blue);
	color: var(--white);
	font-weight: 800;
}
.magazine-container blockquote {
	color: var(--theme-magazine-blue);
	font-weight: 800;
}
.magazine-share-links a {
	padding: 10px 5px;
	color: var(--theme-secondary-color);
}
.magazine-share-links a:last-child {
	padding-right: 20px;
}
.magazine-share-links a:hover {
	color: var(--theme-primary-color);
}
.magazine-prev-next a {
	text-decoration: none;
	color: var(--black);
}
.magazine-prev-next a:first-child {
	margin-right: 40px;
}
.magazine-prev-next a:hover {
	color: var(--theme-secondary-color);
}
.magazine-prev-next a span {
	font-size: 2em;
	position: relative;
	top: 7px;
}
.magazine-prev-next a span.fa-arrow-right {
	left: 10px;
}
.magazine-prev-next a span.fa-arrow-left {
	right: 5px;
}
.back-issue-card {
	max-width: 18.475em;
}
.back-issue-card img {
}
.back-issue-card p {
	font-weight: 800;
	text-transform: uppercase;
	margin: 0.5em 0 0.5em 0;
}
.back-issue-card a {
	font-size: 0.75em;
}
.program-card .card-header {
	background-color: var(--theme-light-blue);
	color: var(--white);
	font-weight: bold;
}
.program-card .subhead {
	padding: 5px;
	display: block;
	text-align: center;
	color: #000000;
	font-weight: bold;
	background-color: #dcdcdc;
}
/* footer	*/
footer {
	width: 100%;
	bottom: 0;
	/* position: absolute; */
}
.footer-link-bar {
	background-color: var(--theme-primary-color);
}
.footer-link-bar a {
	color: var(--white);
	text-decoration: none;
	font-weight: 900;
}
.footer-link-bar a:hover {
	background-color: #ffffff;
	color: var(--theme-primary-color);
}
.footer-main {
	background-color: #5E5750;
	color: #ffffff;
}

.footer-main ul {
	list-style-type: none;
}
.footer-main a {
	color: var(--white);
	text-decoration: none;
}
.footer-main .socials ul {
	position: relative;
	padding-left: 0;
}
.footer-main .socials ul li {
	display: inline;
}
.bottom-footer-link {
	font-weight: bold;
}

.program {
}
.program-thumb {
	width: 100%;
}
.program-card {
	transition: all 0.35s ease;
}
.program-title {
	font-weight: 800;
	color: var(--theme-primary-color);
}
.program-trigger::before {
	content: "More";
}
.program-trigger.open::before {
	content: "Less";
}

.page-anchors {
	list-style-type: none;
	padding: 0;
}
.page-anchors li {
	display: inline;
	font-weight: bold;
}
.page-anchors li:not(:last-child):after {
	margin: 0 10px;
	content: "|";
}
.page-anchors li a {
	text-decoration: none;
	color: var(--theme-primary-color);
}
.page-anchors li a:hover {
	text-decoration: underline;
}
h3.degree-title {
	background-color: var(--theme-primary-color);
	color: var(--white);
	font-weight: bold;
	border-radius: 2em;
	padding: 10px 20px;
	text-align: center;
}
.zone-demo {
	border: 1px solid #dd0000;
	padding: 10px;
}
.content-demo {
	border: 1px solid green;
	padding: 10px;
}
.collapsing {
	height: 0;
	overflow: hidden;
	transition: all 0.35s ease;
}
/* magazine lightbox	*/

a.lightbox-link img {
	max-width: 100%;
}

/* faculty page	*/
.faculty-box-info,
.faculty-box-info-title,
.faculty-box-info-desc {
	float: left;
}
.faculty-box-info-title {
	margin-right: 8px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 1em;
}
.faculty-box-info {
	width: 100%;
}
.faculty-box-info-title:after {
	content: ":";
}
.faculty-title,
.faculty-department {
	display: block;
	margin: 15px 0;
}
.faculty-title {
	font-size: 2em;
	font-weight: bold;
}
.faculty-department {
	font-size: 1.5em;
}
p.tab-title {
	font-weight: bold;
	font-size: 1.2em;
}

.filtered-faculty h4 a {
	color: var(--theme-primary-color);
	text-decoration: none;
}
.filtered-faculty h4 a:hover {
	text-decoration: underline;
}
ul.faculty-sidenav,
ul.subnav {
	list-style-type: none;
}
ul.faculty-sidenav li a.active {
	background-color: var(--light-gray);
	font-weight: bold;
}
ul.faculty-sidenav li a,
ul.subnav li a {
	color: var(--theme-primary-color);
	text-decoration: none;
	border-radius: 3px;
	display: block;
	padding: 5px 0 5px 10px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}
ul.faculty-sidenav li a:hover,
ul.subnav li a:hover {
	background-color: var(--light-gray);
}
/* datatables styles */
.page-item .page-link {
	color: var(--darker-gray);
}
.page-item.active .page-link {
	z-index: 3;
	color: var(--darker-gray);
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(0%, var(--white)),
		color-stop(100%, var(--light-gray))
	);
	border-color: var(--darker-gray);
}

.centered-text-input {
	width: calc(100% - 75px);
}
.footer-main hr {
	opacity: 1;
	background-color: var(--white);
	margin-left: calc(2em + 12px);
	width: 85%;
}
.search-wrap {
	display: inline-block;
}

.sidebar-title {
	font-size: 2.5em;
	margin-top: 0;
	margin-bottom: 0.5rem;
	font-weight: 500;
	line-height: 1.2;
}
.faculty-title {
	color: var(--theme-primary-color);
	text-decoration: none;
	font-size: 1.5em;
	font-weight: 500;
}
.faculty-title a {
	color: var(--theme-primary-color);
	text-decoration: none;
}
.faculty-title a:hover {
	text-decoration: underline;
}
.search__btn {
	background-image: url("assets/img/AAAAAA-20-darker.png");
	background-position: 40% 50%;
	background-repeat: no-repeat;
	color: transparent;
	min-width: 3em;
	height: 28px;
	margin: auto;
}
.search-result-card .card-body .title {
	font-size: 1.25em;
}

/* custom uhd styles that wasn't brought over */

/* Bootstrap Overrides and Add-ons */
.text-primary { color:var(--theme-primary-color)!important; }
.text-secondary { color:var(--theme-secondary-color)!important; }
.bg-primary { background-color:var(--theme-primary-color)!important; }
.bg-secondary { background-color:var(--theme-secondary-color)!important; }
.table-bordered { border-color:#595959; }
.table-bordered th, .table-bordered td, .table-bordered thead th { border-color:#595959; }
button:focus:not(:focus-visible) { background:none; } /* override Slate form CSS. causes bkgd color on carousel next/prev button */

/* Slider */
.slider { padding:0 16px; max-width:100%; }
.slider .slick-arrow { background-color:transparent; border:none; color:var(--theme-primary-color); font-size:2.75rem; position:absolute; top:50%; -webkit-transform:translateY(-50%); -ms-transform:translateY(-50%); transform:translateY(-50%); -webkit-appearance:none; -moz-appearance:none; appearance:none; z-index:5; }
.slider .slick-prev { left:-10px; min-width:0; }
.slider .slick-next { right:-10px; min-width:0; }
.slider .slick-prev:before { content:normal; }
.slider .slick-next:before { content:normal; }

@media(max-width:480px){
	.slider .slick-arrow { font-size:2.3125rem; }
	.slider .slick-prev { left:-28px; }
	.slider .slick-next { right:-28px; }
}

/* library */
.tab.current { display:block; }
.tabs-nav-toggle { display:none; }
.tabs-nav { border-bottom:1px solid #fff; }
.tabs-nav ul { overflow:hidden; margin:0; padding:0; list-style:none outside none; }
.tabs-nav li { float:left; width:20%; }
.tabs-nav li + li { border-left:1px solid #fff;	}
.tabs-nav a { display:block; height:41px; padding:7px 10px 0 18px; background:#e6e5e5; font-size:0.688em; color:#545253; text-transform:uppercase; text-decoration:none;}
.tabs-nav .current a,
.tabs-nav a:hover { background:#727272; color:#ffffff; text-decoration:none; }
.tabs-body { /* height:346px;*/ background:#e6e5e5; }
.tabs-body-inner { /* height:346px; */ }
.tab { display:none; padding:24px; }
.section-library-search { margin-bottom:20px; padding:20px 0; background:#e6e5e5; }
.section-library-search .section-actions .btn { width:100%; margin-left:-3px; text-decoration:none; }
.section-library-search .section-actions { padding-top:20px; }
.section-library-search .section-content { background:#fff; }
.section-library-search .section-aside { background:#f8f8f8; }
.section-library-search .section-nav ul { margin-bottom:0; list-style:none outside none; }
.section-library-search .section-nav { padding-left:0; background:#fff; }
.section-library-search .section-nav li + li { border-top:1px solid #e6e5e5; }
.section-library-search .section-nav a { display:block; padding:14px 10px 10px; background:#9d9d9e; font-size:0.688em; font-weight:bold; color:#ffffff; text-transform:uppercase; letter-spacing:1px; text-decoration:none;}
.section-library-search .section-nav .current a,
.section-library-search .section-nav a:hover { background:#545253; text-decoration:none; }
.section-library-search .row { margin:0; }
.section-library-search .section-aside { position:relative;	}
.section-library-search .help { position:absolute; top:50%; left:0; width:100%; -webkit-transform:translateY(-50%); -ms-transform:translateY(-50%); -o-transform:translateY(-50%); transform:translateY(-50%); }
.section-library-search .tab { padding:10px 0 10px; }
.section-library-search .tabs-nav { border-bottom:0; }
.section-library-search .tabs-nav li { float:none; width:100%; }
.section-library-search .tabs-nav li + li { border-left:0; }
.section-library-search .tab-title { margin:0; color:#313131; font-size:2.25em; }
.section-library-search .form-search { padding-top:17px; }
.section-library-search .form-search .form-body { position:relative; border:1px solid #9d9d9e; margin-bottom:18px; }
.section-library-search .form-search .form-btn { position:absolute; top:1px; right:1px; width:35px; height:35px; min-width:35px; border:0; border-radius:0; background:#9d9d9e; }
.section-library-search .form-search .form-btn:hover { background:#000; }
.section-library-search .form-search .form-row { height:37px; padding-right:35px; }
.section-library-search .form-search .form-row-inner { overflow:hidden; padding:10px 0 0 5px; width:100%; }
.section-library-search .form-search .field { width:100%; border:0; padding:0 5px; font-size:1em; color:#545253; }
.section-library-search .form-search .field::-webkit-input-placeholder { color:#545253; }
.section-library-search .form-search .field:-moz-placeholder { color:#545253; }
.section-library-search .form-search .field::-moz-placeholder { color:#545253; }
.section-library-search .form-search .field:-ms-input-placeholder { color:#545253; }
.section-library-search .form-search .form-foot p { padding-bottom:15px; margin:0; }
.section-library-search .form-search .form-note { padding-top:6px; }
.section-library-search .form-search .form-label { position:absolute; top:-19px; left:0; font-weight:normal; }
.section-library-search .checkboxes { margin:0 0 14px 0; list-style-type:none; }
.section-library-search .checkbox { margin:0; }
.section-library-search .checkbox input { display:none; }
.section-library-search .checkbox label { position:relative; padding-left:22px; }
.section-library-search .checkbox label:before { position:absolute; top:-1px; left:0; width:15px; height:15px; border:1px solid #9d9d9e; content:''; }
.section-library-search .checkbox input:checked + label:before { background:#084e96; }
.section-library-search .keywords-select { float:left; width:145px; }
.section-library-search .list-links-secondary { margin:0; list-style:none outside none; }
.section-library-search .list-links a { color:#084e96; text-decoration:none;}
.section-library-search .help { text-align:center; }
.section-library-search .help h2 { padding-bottom:18px; margin:0; line-height:1.25; border-bottom:none; color:inherit; }
.section-library-search .databases-search-head h6 { margin:0; }
.section-library-search .databases-search-body {	}
.section-library-search .databases-search ~ .databases-search { padding-top:17px; }
.section-library-search .databases-search-body p { padding-bottom:0; margin:0;	}
.section-library-search .databases-search-characters { padding-top:7px; font-size:1em; }
.section-library-search .databases-search-characters a { display:inline-block; margin:0 2px 7px 3px; text-decoration:none;}
.section-library-search .databases-search-body ul { margin:0; list-style:none outside none;	}
.section-library-search .databases-search-body li { padding-bottom:1px; text-align:left; }
.section-library-search .databases-search-body .col-sm-6 { padding:0; }
.library-links { margin:0 0 40px; }
.library-links, .library-links a { color:#545253; }
.library-links ul { margin:0; list-style:none outside none;	}
.library-links li { padding:8px 0 8px; border-top:1px solid #cccccc; }

@media (max-width:767px) {
	.section-library-search .eq-height { height:auto !important; }
	.section-library-search .help { position:static; padding:30px 0; -webkit-transform:translateY(0); -ms-transform:translateY(0); -o-transform:translateY(0); transform:translateY(0); }
	.section-library-search .section-nav li + li { border-top:0; }
	.section-library-search .tabs-nav-toggle { position:relative; display:block; padding:14px 10px 10px; border-bottom:1px solid #e6e5e5; background:#9d9d9e; font-size:0.6875em; color:#ffffff; text-transform:uppercase; letter-spacing:1px; }
	.section-library-search .tabs-nav-toggle:after { position:absolute; top:15px; right:10px; width:10px; height:6px; background:url(images/sprite.png) -249px -108px no-repeat; content:''; }
	.section-library-search .tabs-nav ul { display:none; }
	.section-library-search .tabs-nav { position:relative; padding-right:0; }
	.section-library-search .tabs-nav.open ul { display:block; position:absolute; top:100%; left:0; z-index:999; width:100%; }
	.section-library-search .tabs-nav li { float:none; width:100%; border-bottom:1px solid #fff; }
	.section-library-search .tabs-nav li + li { border-left:0; }
	.section-library-search .tabs-nav a { height:auto; padding:14px 10px 10px; }
	.section-library-search .section-actions .col-sm-3 { padding-bottom:5px; }
}

/* button override for library research guide button */
.databases-search-body .btn-default {
	background-color: var(--theme-primary-color);
	border: 2px solid transparent;
	color: var(--white)!important;
	margin-top:10px;

}
.databases-search-body .btn-default:hover {
	background-color: var(--white);
	border: 2px solid var(--theme-primary-color);
	color: var(--theme-primary-color)!important;
}

/* fact book tables */
.table-fact-book { border-spacing:0; width:100%; }
.table-fact-book tbody tr:nth-of-type(odd) { background-color:#e9ecf7; }
.table-fact-book th, .table-fact-book td { border:1px solid var(--theme-primary-color)!important; }

/* degree page sidebar card */
.card-degree { border:none; }
.card-degree .card-header { background-color:var(--theme-primary-color); border-bottom:5px solid var(--theme-secondary-color); color:#ffffff; font-size:1.57rem; font-weight:bold; line-height:100%; margin:0; padding:0.5rem 1rem !important; }
.card-degree .card-body { background-color:#eaeaea; padding-top:0; }
.card-degree .text-df { color:#eaeaea; }

/* degree sheets */
.dSheet h1{ color:#25344c; font-weight:bolder; text-transform:uppercase; }
.dSheet h2{ margin:0; }
.dSheet h2>span{ color:#25344c; font-weight:bold; }
.dSheet ul{ list-style-type:square!important; }
.dSheet>.row>.dSheetSidebar{ background-color:#51627e; color:#ffffff; }
.dSheet>.row>.dSheetSidebar ul{ line-height:1.5; }
.dSheet>.row>.dSheetSidebar *{ color:#ffffff!important; }
.dSheet>.row>.dSheetSidebar h2{ font-weight:bold; }
.dSheet>.row>.dSheetSidebar>p{ line-height:1.5; padding-left:10px; padding-right:10px; }
.dSheet>.row>.dSheetSidebar>h2:first-child>span{ margin-top:0!important; }

/* admissions timeline */
ul.admissions-timeline { list-style-type: none; position: relative; }
ul.admissions-timeline:before { content: ' '; background: #bababa; display: inline-block; position: absolute; left: 29px; width: 2px; height: 100%; z-index: 400; }
ul.admissions-timeline > li { margin: 20px 0; padding-left: 20px; }
ul.admissions-timeline > li:before { content: ' ';  background: white; display: inline-block; position: absolute; border-radius: 50%; border: 3px solid var(--theme-primary-color); left: 20px; width: 20px; height: 20px; z-index: 400; }

/* events lists */
.events { list-style:none outside none; margin-bottom:25px!important; }
.event { display:-webkit-box; display:-ms-flexbox; display:flex; -webkit-box-align:center; -ms-flex-align:center; align-items:center; }
.events .event + .event { margin-top:22px; }
.event .event__date { -webkit-box-flex:0; -ms-flex:0 0 66px; flex:0 0 66px; max-width:66px; border:1px solid #acb1b6; height:66px; }
.event .event__month { color:#ffffff; background-color:var(--theme-primary-color); font-size:0.625rem; text-transform:uppercase; text-align:center; padding:2px 0; }
.event .event__day { text-align:center; color:var(--theme-primary-color); font-size:1.625rem; font-weight:500; line-height:45px; }
.event .event__content { -webkit-box-flex:0; -ms-flex-positive:0; flex-grow:0; -ms-flex-negative:0; flex-shrink:0; -ms-flex-preferred-size:calc(100% - 66px); flex-basis:calc(100% - 66px); max-width:calc(100% - 66px); padding-left:16px; }

div.widget-contacts { margin-bottom:20px; }
.widget-contacts { padding:17px 10px; background:#e6e5e5; color:#545252; }
.widget-contacts .btn { width:100%; }
.widget-contacts .btn ~ .btn { margin-top:13px; text-decoration:none; }

/* sacs timeline */
.sacs-main-timeline{position: relative;}
.sacs-main-timeline:before{content: '';height: 100%;width: 2px;border: 3px dashed #999;transform: translateX(-50%);position: absolute;left: 50%;top: 0;}
.sacs-main-timeline:after{content: '';display: block;clear: both;}
.sacs-main-timeline .sacs-timeline{width: 50.05%;display:inline-block;float: left;position: relative;z-index: 1;}
.sacs-main-timeline .sacs-timeline:before,.sacs-main-timeline .sacs-timeline:after{content: '';background-color:var(--theme-primary-color);height: 25px;width: 25px;border-radius: 50%;transform: translateY(-50%);position: absolute;top: 50%;right: -12px;}
.sacs-main-timeline .sacs-timeline:after{height: 17px;width: 150px;border-radius: 0;right: 0;}
.sacs-main-timeline .sacs-timeline-content{text-align: right;min-height: 155px;padding: 20px 230px 15px 12px;display:block;}
.sacs-main-timeline .sacs-timeline-content:hover{ text-decoration: none; }
.sacs-main-timeline .sacs-timeline-year{color:var(--theme-primary-color);background-color: #fff;font-size: 1.25rem;font-weight: 600;text-align: center;line-height: 100px;height: 120px;width: 120px;border: 10px solid var(--theme-primary-color);transform: translateY(-50%);position: absolute;right: 100px;top: 50%;z-index: 1;}
.sacs-main-timeline .title{color:var(--theme-primary-color);font-size: 1.375rem;font-weight: 600;text-transform: capitalize;letter-spacing: 1px;margin: 0 0 5px;}
.sacs-main-timeline .description{color: #101010;font-size:0.9375rem; letter-spacing: 1px;margin: 0;}
.sacs-main-timeline .sacs-timeline:nth-child(even){ float: right; }
.sacs-main-timeline .sacs-timeline:nth-child(even):before{right: auto;left: -12px;}
.sacs-main-timeline .sacs-timeline:nth-child(even):after{right: auto;left: 0;}
.sacs-main-timeline .sacs-timeline:nth-child(even) .sacs-timeline-content{padding: 20px 12px 15px 230px;text-align: left;}
.sacs-main-timeline .sacs-timeline:nth-child(even) .sacs-timeline-year{right: auto;left: 100px;}
.sacs-main-timeline .sacs-timeline:nth-child(5n+2):before,.sacs-main-timeline .sacs-timeline:nth-child(5n+2):after{background-color: var(--theme-secondary-color);}
.sacs-main-timeline .sacs-timeline:nth-child(5n+2) .sacs-timeline-year{color:var(--theme-secondary-color);border-color: var(--theme-secondary-color);}
.sacs-main-timeline .sacs-timeline:nth-child(5n+2) .title{ color: var(--theme-secondary-color); }
.sacs-main-timeline .sacs-timeline:nth-child(5n+3):before,.sacs-main-timeline .sacs-timeline:nth-child(5n+3):after{background-color:var(--theme-primary-color);}
.sacs-main-timeline .sacs-timeline:nth-child(5n+3) .sacs-timeline-year{color:var(--theme-primary-color);border-color:var(--theme-primary-color);}
.sacs-main-timeline .sacs-timeline:nth-child(5n+3) .title{ color: var(--theme-secondary-color); }
.sacs-main-timeline .sacs-timeline:nth-child(5n+4):before,.sacs-main-timeline .sacs-timeline:nth-child(5n+4):after{background-color: var(--theme-secondary-color);}
.sacs-main-timeline .sacs-timeline:nth-child(5n+4) .sacs-timeline-year{color:var(--theme-secondary-color);border-color: var(--theme-secondary-color);}
.sacs-main-timeline .sacs-timeline:nth-child(5n+4) .title{ color: var(--theme-secondary-color); }
@media screen and (max-width:990px){.sacs-main-timeline .sacs-timeline-year{ right: 30px; }
	.sacs-main-timeline .sacs-timeline-content{ padding: 15px 160px 15px 15px; }
	.sacs-main-timeline .sacs-timeline:nth-child(even) .sacs-timeline-year{ left: 30px; }
	.sacs-main-timeline .sacs-timeline:nth-child(even) .sacs-timeline-content{ padding: 15px 15px 15px 160px; }
}
@media screen and (max-width:767px){.sacs-main-timeline:before{transform: translateX(0);left: -3px;}
	.sacs-main-timeline .sacs-timeline{width: 100%;margin-bottom: 20px;}
	.sacs-main-timeline .sacs-timeline:before,.sacs-main-timeline .sacs-timeline:after,.sacs-main-timeline .sacs-timeline:nth-child(even):before,.sacs-main-timeline .sacs-timeline:nth-child(even):after{transform: translateY(0);top: 14px;}
	.sacs-main-timeline .sacs-timeline:before,.sacs-main-timeline .sacs-timeline:after{right: auto;left: -12px;}
	.sacs-main-timeline .sacs-timeline:after{ left: 0; }
	.sacs-main-timeline .sacs-timeline:after,.sacs-main-timeline .sacs-timeline:nth-child(even):after{width: 50px;top: 17px;}
	.sacs-main-timeline .sacs-timeline .sacs-timeline-content,.sacs-main-timeline .sacs-timeline:nth-child(even) .sacs-timeline-content{text-align: left;padding: 70px 10px 10px 20px;}
	.sacs-main-timeline .sacs-timeline .sacs-timeline-year,.sacs-main-timeline .sacs-timeline:nth-child(even) .sacs-timeline-year{line-height: 40px;height: 50px;width: 120px;border-width: 5px;transform: translateY(0);top: 0;left: 45px;}
}
.sacs-timeline2 { list-style: none; padding: 20px 0 20px; position: relative; }
.sacs-timeline2:before {top: 0;bottom: 0;position: absolute;content: " ";width: 3px;background-color: #eeeeee;left: 50%;margin-left: -1.5px;}
.sacs-timeline2 > li {margin-bottom: 20px;position: relative;}
.sacs-timeline2 > li:before,.sacs-timeline2 > li:after {content: " ";display: table;}
.sacs-timeline2 > li:after {clear: both;}
.sacs-timeline2 > li:before,.sacs-timeline2 > li:after {content: " ";display: table;}
.sacs-timeline2 > li:after {clear: both;}
.sacs-timeline2 > li > .sacs-timeline2-panel {width: 46%;float: left;border: 1px solid #d4d4d4;border-radius: 2px;padding: 20px;position: relative;-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);}
.sacs-timeline2 > li > .sacs-timeline2-panel:before {position: absolute;top: 26px;right: -15px;display: inline-block;border-top: 15px solid transparent;border-left: 15px solid #ccc;border-right: 0 solid #ccc;border-bottom: 15px solid transparent;content: " ";}
.sacs-timeline2 > li > .sacs-timeline2-panel:after {position: absolute;top: 27px;right: -14px;display: inline-block;border-top: 14px solid transparent;border-left: 14px solid #fff;border-right: 0 solid #fff;border-bottom: 14px solid transparent;content: " ";}
.sacs-timeline2 > li > .sacs-timeline2-badge {color: #fff;width: 50px;height: 50px;line-height: 50px;font-size: 1.4em;text-align: center;position: absolute;top: 16px;left: 50%;margin-left: -25px;background-color: #999999;z-index: 100;border-top-right-radius: 50%;border-top-left-radius: 50%;border-bottom-right-radius: 50%;border-bottom-left-radius: 50%;}
.sacs-timeline2 > li.sacs-timeline2-inverted > .sacs-timeline2-panel {float: right;}
.sacs-timeline2 > li.sacs-timeline2-inverted > .sacs-timeline2-panel:before {border-left-width: 0;border-right-width: 15px;left: -15px;right: auto;}
.sacs-timeline2 > li.sacs-timeline2-inverted > .sacs-timeline2-panel:after {border-left-width: 0;border-right-width: 14px;left: -14px;right: auto;}
.sacs-timeline2-badge.primary {background-color:var(--theme-primary-color) !important;}
.sacs-timeline2-badge.success {background-color: #bababa !important;}
.sacs-timeline2-badge.warning {background-color: var(--theme-primary-color) !important;}
.sacs-timeline2-badge.danger {background-color: #bababa !important;}
.sacs-timeline2-badge.info {background-color: var(--theme-primary-color) !important;}
.sacs-timeline2-title {margin-top: 0;color: inherit;}
.sacs-timeline2-body > p,.sacs-timeline2-body > ul {margin-bottom: 0;}
.sacs-timeline2-body > p + p {margin-top: 5px;}
@media (max-width: 767px) {ul.sacs-timeline2:before {left: 40px;}
	ul.sacs-timeline2 > li > .sacs-timeline2-panel {width: calc(50% - 90px);width: -moz-calc(50% - 90px);width: -webkit-calc(50% - 90px);}
	ul.sacs-timeline2 > li > .sacs-timeline2-badge {left: 15px;margin-left: 0;top: 16px;}
	ul.sacs-timeline2 > li > .sacs-timeline2-panel {float: right;}
	ul.sacs-timeline2 > li > .sacs-timeline2-panel:before {border-left-width: 0;border-right-width: 15px;left: -15px;right: auto;}
	ul.sacs-timeline2 > li > .sacs-timeline2-panel:after {border-left-width: 0;border-right-width: 14px;left: -14px;right: auto;}
}

/*sidebar */

#sidebar .navbar-toggler {
	background-color: var(--theme-primary-color);
	width: 100%;
	justify-content: space-between;
	padding: 8px 0;
}
#sidebar .fa-chevron-down {
	transition: transform 0.2s ease-in-out;
}
#sidebar .navbar-toggler:not(.collapsed) .fa-chevron-down {
	transform: rotate(-180deg);
}
#sidebar .navbar { background:none; border-bottom:none; margin-bottom:20px; }

/* cob comment cards */
.boddy { color: rgba(0, 0, 0, 0.6); font-size: 0.875em; line-height: 1.6em; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; -webkit-transition: 0.5s ease; transition: 0.5s ease; }
.c-card .btnn { border-radius: 2px; padding: 8px 12px; color: var(--theme-secondary-color); font-size: 0.875em; font-weight: 500; text-decoration: none; text-transform: uppercase; -webkit-transition: 0.5s ease; transition: 0.5s ease; }
.c-card { background: #FFFFFF; max-width: 400px; margin: 20px auto; border-radius: 12px; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); box-sizing: border-box; padding: 28px; text-align: center; }
.c-card .products { position: relative; overflow: hidden; -webkit-transition: 0.5s ease; transition: 0.5s ease; }
.c-card .product { position: absolute; top: 0; left: 0; opacity: 0; visibility: hidden; -webkit-transition: 0.5s ease; transition: 0.5s ease; }
.c-card .product.active { opacity: 1; visibility: visible; }
.c-card .thumbnail { margin: 0 0 48px; }
.c-card .title { margin: 0 0 12px; color: var(--theme-primary-color) font-size: 1.125em!important; -webkit-transition: 0.5s ease; transition: 0.5s ease; }
.c-card .description { margin: 0 0 18px; }
.c-card .footerr { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row;   flex-direction: row; -webkit-box-pack: justify; -ms-flex-pack: justify;   justify-content: space-between; margin: 0 -12px -12px; }
[ripple] { z-index: 1; position: relative; overflow: hidden; }
[ripple] .ripple { position: absolute; background: #FFFFFF; width: 60px; height: 60px; border-radius: 100%; -webkit-transform: scale(0);   transform: scale(0); -webkit-animation: ripple 2s;   animation: ripple 2s; }