/*
*** Media Queries

@media screen and (max-width:479px) {
}

@media screen and (min-width:480px) {
}
@media screen and (min-width:480px) and (max-width:767px) {
}

@media screen and (min-width:768px) {   
}
@media screen and (min-width:768px) and (max-width:959px) {
}

@media screen and (min-width:960px) {
}
@media screen and (min-width:960px) and (max-width:1199px) {
}

@media screen and (min-width:1200px) {
}

*/
@import url('https://msu-p-001.sitecorecontenthub.cloud/api/public/content/1a1d46b45afb40eda6ebf4ed44077295');

* {
  box-sizing: content-box;
  box-sizing: border-box;
}

html {
	background-color: #fff;
    color: #222;
    font: normal 16px / 22px "Metropolis", sans-serif;
    line-height: 1.5;
}

body {
    display: table; /* IE doesn't support flexbox */
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    width: 100%;
}

main {
    flex-grow: 1;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

h1, h2, h3, h4, h5, h6 {
    display: block;
	font-weight: 600;
    font-family: "Metropolis", sans-serif;
}

a {
	color: #0A803B;
    text-decoration: underline;
}

a:hover {
	color: #076b31;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

.no-text {
    color: transparent;
}

main {
	padding-bottom: 20px;
}

main:focus {
    outline: none;
}

.uk-container {
    margin: 0 auto;
}

em {
	color: inherit;
}

#skip-main-content {
    background-color: #fff;
    border: 1px solid #ccc;
    color: #18453b;
    display: inline-block;
    font-weight: 700;
    padding: 8px 15px;
    position: absolute;
    left: 0;
    top: -42px;
    transition: top 100ms linear;
}

#skip-main-content:focus {
	top: 0px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.header-msu {
	border-bottom: 1px solid #ddd;
	padding: 15px 0 16px;
}

.header-msu-layout {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

@media (min-width:768px) {
    .header-msu-layout {
        flex-direction: row;
    }
}

.header-msu-masthead {
	
}

@media (min-width:768px) {
    .header-msu-masthead {
        margin-bottom: 0;
    }
}

.header-msu-search {
	float: right;
	padding: 3px 0 0;
}

.header-msu-search {
	display: none;
}

@media screen and (min-width:768px) {
    .header-msu-search {
        display: block;
    }
}

.search {
    height: 28px;
    border-radius: 3px;
}

.search-form {
    display: flex;
    flex: 1;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 2px;
}

.search .search-value {
    padding: 6px 0 6px 10px;
    background-color: #fff;
    outline: 0;
    border-radius: 2px 0px 0px 2px;
    border: 1px solid #e0e0e0;
}

@media (min-width:768px) {
    .search .search-value {
        min-width: 275px;
    }
}

.search .search-value::-webkit-input-placeholder {
    color: #4A4A4A;
}

.search .search-value::-moz-placeholder {
    color: #4A4A4A;
}

.search .search-value:-moz-placeholder {
    color: #4A4A4A;
}

.search .search-value:-ms-input-placeholder {
    color: #4A4A4A;
}

.search .search-submit {
    background-color: #fff;
    cursor: pointer;
    border: 0;
    margin: 0;
    border-radius: 0px 2px 2px 0px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    padding: 0 10px;
}

.search .search-submit:focus {
    background-color: #F7F7F7;
}

.search--mobile {
	color: #444;
	padding: 15px 8px 13px 12px;
}

.search--mobile .search {
	float: none;
	width: 100%;
}

.search--mobile form {
	height: 38px; /* Connected to the height of .search-submit */
	width: 100%;
}
.search--mobile .search-submit {
	height: 38px; /* Connected to the height of .search--mobile form */
}

/* ==========================================================================
   Header Site (MSU Serve)
   ========================================================================== */

.header-site {
    background-color: #18453B;
    padding: 15px 0;
}

.header-site-layout {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.header-site-layout a {
    text-decoration: none;
}

.header-site-name {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.header-site-name:hover,
.header-site-name:focus {
    color: #fff;
}
@media screen and (max-width:768px) {
	.header-site-user {
		display: none;
	}
}
.header-site-user a {
	align-items: center;
	color: #fff;
	display: flex;
	justify-content: center;
}
.header-site-user a:hover,
.header-site-user a:focus {
	text-decoration: underline;
}
@media screen and (min-width:768px) {
    .header-site-name {
        font-size: 28px;
    }
	.header-site-user {
		font-size: 16px;	
	}
}

/* ==========================================================================
   Primary Navigation
   ========================================================================== */

.header-navigation {
    background-color: #252525;
    display: none;
}

@media screen and (min-width:768px) {
    .header-navigation {
        display: block;
    }
}

.primary-navigation {
    display: flex;
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.primary-navigation li {
    flex: 1;
    text-align: center;
}

.primary-navigation-link {
    align-items: center;
    color: #eee;
    display: flex;
    font-weight: 700;
    height: 100%;
    justify-content: center;
    outline-offset: -2px;
    padding: 15px 0;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
}

.primary-navigation-link:hover,
.primary-navigation-link:focus {
    background-color: #070707;
    color: #fff;
	text-decoration: none;
}

.desktop-navigation .has-sub-navigation {
    position: relative;
}

.desktop-navigation .has-sub-navigation.is-open .sub-navigation {
    opacity: 1;
    padding: 8px;
    visibility: visible;
    transform: translateY(-5px);
}

.desktop-navigation .sub-navigation {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 15px 5px rgba(30, 30, 30, 0.2);
    list-style-type: none;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    /*width: 260px;*/
    visibility: hidden;
    z-index: 10;
}

@media screen and (min-width: 1290px) {
    .desktop-navigation .sub-navigation::before {
        content: "";
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid #fff;
        position: absolute;
        /*left: 0;*/
        left: 20%;
        top: 0;
        transform: translateY(-100%) translateX(550%);
    }
}

@media screen and (max-width: 1289px) {
    .desktop-navigation li.has-sub-navigation:last-child .sub-navigation,
    .desktop-navigation li.has-sub-navigation:nth-last-child(2) .sub-navigation {
        left: auto;
        right: 0;
    }
}

.desktop-navigation .sub-navigation-link {
    border-radius: 5px;
    color: #424242;
    display: inline-block;
    list-style-type: none;
    padding: 5px 10px;
    text-decoration: none;
    text-align: left;
    width: 100%;
}

.desktop-navigation .sub-navigation-link:hover,
.desktop-navigation .sub-navigation-link:focus {
    background-color: #18453B;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
}

.header-mobile-menu-button {
    border: 1px solid #fff;
    border-radius: 3px;
    background-color: transparent;
    color: #fff;
    padding: 4px 10px;
}

@media screen and (min-width:768px) {
    .header-mobile-menu-button {
        display: none;
    }
}

.header-mobile-menu-button-text {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin-right: 4px;
    text-transform: uppercase;
}

/* from the boilerplate */

.main-navigation {
	border: 1px solid #ddd;
	border-top: none;
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.main-navigation li {
	border-right: 1px solid #e9e9e9;
	display: inline-block;
	float: left;
}

.main-navigation-link {
	border-bottom: 3px solid rgba(255, 255, 255, 0);
	color: #656565;
	display: inline-block;
	padding: 15px 20px;
    text-decoration: none;
}

.main-navigation-link:hover {
	border-bottom: 3px solid rgba(240, 133, 33, 1);
	color: #444;
	text-decoration: none;
	transition: all 300ms linear;
}
.slide-out-navigation .fa-chevron-down {
	display: none;
}

 .desktop-navigation .fa-chevron-down {
	 margin-left: 10px;
	 margin-top: -5px
 }

.side-nav {
	border: 1px solid #ddd;
}

.side-nav-list {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.side-nav-list li {
	border-bottom: 1px solid #eee;
}

.side-nav-list li:last-child {
	border-bottom: none;
}

.side-nav-link {
	color: #606060;
	display: block;
	padding: 8px 10px;
    text-decoration: none;
}

.side-nav-link:hover {
	color: #444
}

/* ==========================================================================
   Slide Out Navigation
   ========================================================================== */

.slide-out-navigation {
    background-color: #111;
    height: 100%;
    padding: 15px;
    overflow-y: auto;
    position: fixed;
    right: 0;
    transform: translate3d(100%, 0, 0);
    transform-style: preserve-3d;
    transition: transform 400ms cubic-bezier(.4, 0, .2, 1);
    visibility: hidden;
    -webkit-overflow-scrolling: touch;
    width: 320px;
    z-index: 100;
}

.slide-out-navigation-open {
    /* position: fixed; */
}

.slide-out-navigation-open .slide-out-navigation {
    transform: translate3d(0, 0, 0);
    visibility: visible;
}

.slide-out-navigation-header {
    align-items: center;
    display: flex;
    margin-bottom: 20px;
}

.slide-out-navigation-header-img {
    margin: 0 15px 0 8px;
    width: 26px;
}

.slide-out-navigation-header-site-name {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.slide-out-navigation-close-button {
    align-items: baseline;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 2px;
    color: #fff;
    display: flex;
    font-size: 19px;
    font-weight: 600;
    line-height: 1;
    margin-left: auto;
    padding: 6px 11px;
    text-transform: uppercase;
}

.slide-out-search .search-form {
    display: flex;
}

.slide-out-search .search-value {
    background-color: rgba(24, 69, 59, 0.2);
    border-radius: 2px 0 0 2px;
    border-right: none;
    color: rgba(255, 255, 255, 0.8);
    flex: 1;
}

.slide-out-search .search-value::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.slide-out-search .search-submit {
    align-items: center;
    background-color: rgba(24, 69, 59, 0.2);
    border-radius: 0 2px 2px 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    width: 38px;
}

.slide-out-navigation .primary-navigation {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-direction: column;
    margin-bottom: 15px;
    padding: 10px 0;
}

.slide-out-navigation li {
    text-align: left;
}

.slide-out-navigation .primary-navigation-link {
	justify-content: space-between;
	padding-left: 8px;
}

.slide-out-navigation .has-sub-navigation .primary-navigation-link {
    border: 1px solid rgba(0, 0, 0, 0);
    border-bottom: none;
    justify-content: space-between;
    padding: 15px 8px;
    position: relative;
}

.slide-out-navigation .has-sub-navigation.is-open .primary-navigation-link {
    background-color: #070707;
    border-color: #444;
}

.slide-out-navigation .has-sub-navigation .primary-navigation-link::after {
    content: "\f0d7";
    color: #0A803B;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 22px;
    position: absolute;
    right: 10px;
    top: 14px;
    transform: rotate(0);
    transition: transform 300ms ease-out;
}

.slide-out-navigation .has-sub-navigation.is-open .primary-navigation-link::after {
    transform: rotate(180deg);
}

.slide-out-navigation .sub-navigation {
    background-color: #070707;
    border: 1px solid rgba(0, 0, 0, 0);
    border-top: none;
    list-style-type: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    position: static;
    visibility: hidden;
    width: 100%;
}

.slide-out-navigation .is-open .sub-navigation {
    border-color: #444;
    max-height: 2000px;
    padding-bottom: 8px;
    visibility: visible;
}

.slide-out-navigation .sub-navigation::before {
    display: none;
}

.slide-out-navigation .sub-navigation-link {
    color: #fff;
    display: block;
    outline-offset: -2px;
    padding: 15px 10px 15px 25px;
    text-decoration: none;
}

.slide-out-navigation .sub-navigation-link:hover,
.slide-out-navigation .sub-navigation-link:focus {
    background-color: #000;
}

.slide-out-navigation .secondary-navigation {
    flex-direction: column;
    padding: 10px 0 25px;
}

.slide-out-navigation .secondary-navigation li::after {
    display: none;
}

.slide-out-navigation .secondary-navigation a {
    display: inline-block;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 8px;
    text-decoration: none;
}

.slide-out-page-overlay {
    background-color: rgba(0, 0, 0, 0.8);
    bottom: 0;
    height: 100%;
    opacity: 0;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    transition: opacity 300ms ease-in-out;
    visibility: hidden;
    width: 100%;
    z-index: 70;
}

.slide-out-navigation-open .slide-out-page-overlay {
    opacity: 1;
    visibility: visible;
}

.slide-out-navigation .sign-in-link {
	color: #fff;	
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer-msu {
    background-color: #252525;
    color: #fff;
    font-size: 13px;
    padding: 25px 0;
}

.footer-msu ul {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.footer-msu li {
    display: inline-block;
    line-height: 1.6em;
    margin: 0 12px 6px 0;
}

.msu-info-list > li {
    font-size: 10px;
    line-height: 16px;
}

@media (min-width: 1220px) {
    .footer-msu ul {
        display: flex;
    }

    .footer-msu li {
        margin-bottom: 0;
    }

    .msu-info-list {
        display: block;
    }
}

.footer-msu li {
    margin-right: 12px;
}

.footer-msu li:last-child {
    margin-right: 0;
}

.footer-msu .standard-footer-site-links {
    border-bottom: 1px dotted #808080;
    padding-bottom: 4px;
    margin-bottom: 10px;
}

.footer-msu .standard-footer-site-links li:first-child {
    display: block;
}

@media (min-width: 768px) {
    .footer-msu .standard-footer-site-links {
        margin-bottom: 3px;
    }

    .footer-msu .standard-footer-site-links li:first-child {
        display: inline-block;
    }
}

.footer-msu a {
    color: #fff;
    display: inline-block;
    line-height: 1.1em;
    text-decoration: underline;
}

.footer-msu a:hover,
.footer-msu a:focus {
    text-decoration: underline;
}

.footer-msu .copyright {
    /*font-weight: bold;*/
    font-weight: normal;
    font-size: 10px;
    line-height: 16px;
}

.footer-msu img {
    margin-top: 20px;
}

@media (min-width: 768px) {
    .footer-msu img {
        margin-top: 7px;
    }
}

.footer-green {
    color: #84d123 !important;
}


/* ==========================================================================
   Buttons
   ========================================================================== */
   
.button {
	background-color: #fff;
	border-radius: 2px;
    box-shadow: 1px 2px 4px rgba(0,0,0,.3), -1px -1px 3px rgba(0,0,0,.12);
	color: #444;
	display: inline-block;
	font-weight: 500;
	margin-top: 15px;
    padding: 10px 20px;
	text-decoration: none;
	-webkit-transition: all .5s ease-out;
	transition: all .5s ease-out;
}

.button:hover {
	text-decoration: none;
	background-color: #efefef;
}

.button-light-green {
	background-color: #4C842E;
	color: #fff;
}

.button-light-green:hover {
	background-color: #559334;
	color: #fff;
}

.button-dark-green {
	background-color: #18453B;
	color: #fff;	
}

.button-dark-green:hover {
	background-color: #0f2c25;
	color: #fff;	
}

.button-orange {
	background-color: #F08521;
	color: #fff;
}

.button-orange:hover {
	background-color: #d06c0e;
	color: #fff;
}

.button-link {
	background-color: transparent;
	box-shadow: none;
	color: #539753;
}

.button-link:hover {
	color: #417641;
}

.button-red {
  background-color: #FF5252;
  color: #fff;
}

.button-red:hover {
  background-color: #ff1f1f;
  color: #fff;
}

/* ==========================================================================
   Search
   ========================================================================== */

.search-large {
    color: #444;
    border: 1px solid #a9a9a9;
    float: left;
    font-size: 16px;
    padding: 9px 10px;
    width: 85%;
}
.search-icon-button {
    background-color: #3C494F;
    border: 1px solid #3C494F;
    border-radius: 0 2px 2px 0;
    color: #fff;
    float: left;
    font-size: 18px;
    padding: 6px 12px;
    margin-left: -2px;
    width: 15%;
}

@media screen and (min-width:480px) {
   .search-large {
        width: 380px;
    }
    .search-icon-button {
        width: auto;
    }
}

/* ==========================================================================
   Form
   ========================================================================== */

.form-legend {
    margin-bottom: 25px;
}

.form-row {
	margin-bottom: 25px;
}

.form-label {
    color: #444;
    display: block;
    font-weight: 500;
    line-height: 24px;
}

input[type="text"].form-control,
input[type="tel"].form-control,
input[type="email"].form-control,
input[type="number"].form-control,
input[type="search"].form-control,
input[type="url"].form-control,
input[type="password"].form-control,
textarea.form-control,
select.form-control {
    border: 1px solid #787878;
    border-radius: 2px;
    box-sizing: border-box;
    line-height: 1.3em;
    margin: 5px 0;
    padding: 8px;
    width: 375px;
}

.inline-radio {
	display: inline-block;
}

.inline-radio:not(.first) {
    margin-left: 15px;
}

.inline-select {
	display: inline-block;
}

.inline-checkbox,
.inline-checkbox .form-label {
	display: inline-block;	
}

.is-required label:not(.no-asterisk):after,
.is-required legend:not(.no-asterisk):after {
    color: #d00;
    content: " *";
}

p#project-flow-message {
    color: #d00;
}

.input-error {
	color: #E60000;
	font-size: .9em;
    font-weight: 500;
	line-height: 1.3em;
    margin: 0;
	overflow: hidden;
	max-height: 0;
	transition: all .5s ease-out;
}

.is-invalid input[type="text"].form-control,
.is-invalid input[type="tel"].form-control,
.is-invalid input[type="email"].form-control,
.is-invalid input[type="number"].form-control,
.is-invalid input[type="search"].form-control,
.is-invalid input[type="url"].form-control,
.is-invalid input[type="password"].form-control,
.is-invalid textarea.form-control,
.is-invalid select.form-control {
	border: 2px solid rgb(251, 139, 141);
	box-shadow: 1px 1px 1px rgba(235,39,43,0.08);
}

.is-invalid .input-error {
	max-height: 100px;
}

.large-click-input label {
	border: 1px solid #BCBCBC;
	border-radius: 2px;
	display: block;
	margin-bottom: 10px;
	padding: 12px;
}

.large-click-input label:hover {
	padding-left: 20px;
}

@media screen and (min-width:768px) {
	.large-click-input label {
		width: 50%;
	}	
}

.vertical-radio-wrapper {
	display: flex;
	float: left;
}

.vertical-radio {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	width: 30px;
}

/* ==========================================================================
   Insert new styles here!
   ========================================================================== */
h1 {
	color: #18453b;
	font-weight: 900;
	font-size: 32px;	
	font-family: "Metropolis", sans-serif;
	line-height: 1.2;
}
@media screen and (min-width:768px) {   
	h1 {
		font-size: 46px;	
	}
}
.no-bullet {
	list-style-type: none;	
}
.tooltip {
	margin: 10px 0;	
}
.tooltip-label {
	display: inline-block;
}
.tooltip-legend {
	float: left;	
}
.tooltip-trigger {
	padding: 7px;	
}

.tooltip-trigger i {
	font-size: 20px;	
}
.uk-alert-primary {
	border: 1px solid #B3BFC4;
}
.uk-alert-success {
	border: 1px solid #009A63;	
	color: #004C1E;
}
.uk-alert-warning {
	background: #faf993;
	border: 1px solid #e2e171;
	color: #414141;	
}
.slim-button {
	padding: 5px 7px;	
}
.simple-sidebar {
	background-color:#efefef;
	border-radius:5px;
	display: block;
	overflow-wrap: break-word;
	padding: 20px;	
}
.hero {
	border-bottom: 3px solid #BDBDBD;
}
.hero-img {
	height: 100%;
	width: 100%;
}
.hero-img img {
	object-fit: cover;
	height: 100%	;
	width: 100%;
}
.hide {
    display: none;
}
.shift-list__item {
	margin-bottom: 20px;
	overflow-wrap: break-word;
}
.shift-list__item label {
	color: #444;
	font-weight: 500;
	line-height: 24px;
}
.progress-indicator > li.current,
.progress-indicator > li.current .bubble {
    color: #CB5A28;
}
.progress-indicator > li.current .bubble,
.progress-indicator > li.current .bubble:after,
.progress-indicator > li.current .bubble:before {
    background-color: #CB5A28;
    border-color: red;
}
.msu-avatar__container {
	margin: 0 0 20px 0;	
}
.msu-avatar {
	background: #fff url('../img/spartan-helmet-Black-50-pxls.gif') no-repeat center center;
	border: 1px solid #a0a0a0;
	border-radius: 50px;	
	height: 100px;
	width: 100px;
}
.msu-avatar--small {
	background: #fff url('../img/spartan-helmet-Black-50-pxls.gif') no-repeat center center;
	background-size: 25px;
	border-radius: 20px;	
	display: inline-block;
	height: 40px;
	margin: 0 0 0 10px;
	width: 40px;

}
.user-info {
	padding-left: 0;
}
@media screen and (min-width:480px) {
	.msu-avatar__container {
		float: left;
		margin: 0 40px 0 0;
	}
	.user-info {
		margin-top: 0;	
	}
}
.banner--impersonation {
	background-color: #FCDB73;
	text-align:center;
 	padding:15px;
}
.project-location.row {
	background-color: #f4f4f4;
	border: 1px solid #BCBCBC;
	margin-bottom: 10px;
	padding: 12px;
	}
.testimonial-card {
	background-color: #ddd;
	border-radius: 5px;	
	text-align: center;
	padding: 30px;
}
.testimonial-card blockquote {
	border-left: none;
	border-radius: 20px;
	background-color: #fff;
	padding: 20px;
}
.testimonial-card figcaption {
	font-weight: 600;
	padding: 25px 10px 0;
}
.testimonial-card .profile {
	border-radius: 50%;
	border: solid 5px rgba(24, 69, 59, 0.8);
	box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.4);
	width: 200px;
}
.testimonial-card  {
	font-style: normal;	
}
.badge--spartys-kind-kids {
    background: url("../img/badge-spartys-kind-kids.png") no-repeat;
    display: block;
    position: absolute;
    bottom: 13%;
    right: 0;
    height: 59px;
    width: 150px;
}
.hover-card__top .badge--spartys-kind-kids {
    bottom: 5%;
}
/* ==========================================================================
   Section styles
   ========================================================================== */

.section-sm {
    padding: 25px 0;
}

.section-md {
    padding: 50px 0;
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */

.breadcrumb {
    background-color: rgba(24, 69, 59, 0.8);
    bottom: 0;
    left: 0;
    padding: 8px 0;
    position: absolute;
    width: 100%;
}

.breadcrumb-list {
    display: flex;
    font-weight: 500;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    position: relative;
    padding-right: 22px;
    margin-right: 10px;
}

.breadcrumb-item:not(:last-of-type)::after {
    content: ">";
    color: #ffffff;
    position: absolute;
    right: 0;
    top: 1px;
}

.breadcrumb-link,
.breadcrumb-page {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-link:hover,
.breadcrumb-link:focus {
    color: #fff;
}

/* ==========================================================================
   Side navigation
   ========================================================================== */

.side-navigation {
    background-color: #efefef;
    border-radius: 5px;
    box-shadow: 0 3px 3px -2px rgba(0,0,0,.2), 0 3px 4px 0 rgba(0,0,0,.14), 0 1px 8px 0 rgba(0,0,0,.12);
    margin-bottom: 30px;
    padding: 10px;
    position: relative;
}

@media screen and (min-width:768px) {
    .side-navigation {
        margin-bottom: 0;
        padding: 15px;
    }
}

.side-navigation-label {
    color: #4f4f4f;
    display: block;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

.side-navigation ul {
	list-style-type: none;
	padding: 0;
}

.side-navigation-list {
	max-height: 2000px;
	margin: 10px 0 0;
	visibility: visible;
}

.side-navigation-list > li {
    border-top: 1px solid #ccc;
    padding: 3px 0;
}

.side-navigation-list > li > a {
    font-weight: 700;
}

.side-navigation-list a {
    color: #484848;
    display: block;
    outline-offset: -1px;
    padding: 5px 5px;
    text-decoration: none;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero-medium {
    padding-top: 52.0833%;
    position: relative;
}

@media screen and (min-width:768px) {
    .hero-medium {
        padding-top: 21.0526%;
    }
}

.hero-img {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.hero-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
/* ==========================================================================
   Hover Cards
   ========================================================================== */
.hover-card {
	margin-bottom: 30px;
}
.hover-card__top {
	position: relative;
}
.hover-card__bottom {
	background-color: #fff;
	border: 1px solid #E1E1E1;
	border-top: none; 
	padding: 15px;	
}
.hover-card__row {
	margin-top: 15px;	
}
.hover-card__title {
	font-weight: 600;
	margin-bottom: 15px;	
}
.hover-card__thermometer {
	background-color: #efefef; 
	margin-top: 15px;
	width: 100%;"	
}
.hover-card__location,
.hover-card__date, 
.hover-card__time {
	font-size: 14px;
}
.hover-card__time,
.hover-card__type {
	margin-top: 10px;
	
}
@media screen and (min-width:768px) {
	.hover-card__time,
	.hover-card__type {
		margin-top: 0;
		text-align: right;
	}
}
.hover-card__location {
	 margin-bottom: 5px; 
	 font-weight: 600; 
	 color: #028849;
	 font-size: 16px;	
}
.hover-card__banner--organizer {
	display: flex;
	font-size: 14px;
	align-items: center;
	justify-content: center;
	height: 30px;
	background-color:#efefef;
	color: #000;
	text-align: center;
}
.hover-card__banner--club {
	background-color:#D1DE3F;
}

.hover-card__banner--student {
	background-color: #94AE4A;
}
.hover-card__banner--msu {
	background-color: #18453b;
	color: #fff;
}
.hover-card__banner--other {
	background-color: #0A803B;
	color: #fff;
}	
.hover-card__status {
	position: absolute;
	right: 0;
	top: 0;
	margin-right: 10px;
	margin-top: 10px;
	color: #fff;
	padding: 3px 10px;
	border-radius: 3px;
	font-size: 14px;
}
.hover-card__status--approved {
	background-color: #20c178;	
}
.hover-card__status--denied {
	background-color: #97a2a2;	
}
.hover-card__status--pending {
	background-color: #cb5a28;	
}
.hover-card__status--draft {
	background-color: #6e005f;	
}
.hover-card__status--canceled {
	background-color: #535054;	
}
.hover-card__thermometer-filled {
	background-color: #0A803B;
	height: 5px;
}
.hover-card__attribute {
	font-size: 14px;	
}
.hover-card__attribute-emphasis {
	display: block;
	font-size: 16px;
	font-weight: 600;	
}
.action-list {
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 0;
	padding: 0;
}
.action-list__item {
	padding: 0;
	list-style-type: none;
}
.action-list__item a {
	border-top: 1px solid #E1E1E1;
	display: block;
	padding: 15px 0;
	color: #000;
	text-decoration: none;
}
.action-list__item a:focus,
.action-list__item a:active,
.action-list__item a:hover {
	background-color:  #efefef;
	padding-left: 10px;
	transition: 0.3s;
}
/* ==========================================================================
   Social Share
   ========================================================================== */

.dialog {
    border-radius: 2px;
    box-sizing: border-box;
    max-width: 90%;
    max-height: 272px;
    vertical-align: top;
    background-color: #fff;
    box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), -5px 0 15px 0 rgba(0, 0, 0, 0.1);
    z-index: 110;
}

.dialog__header {
    background-color: #eee;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.3em;
    padding: 10px 15px;
    position: relative;
}

.dialog__body {
    padding: 10px 15px;
    overflow-y: auto;
}

.dialog__close {
	background-color: transparent;
	border: 0;
    cursor: pointer;
    float: right;
    font-size: 22px;
	padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    text-align: center;
}
.dialog__close i {
    padding-top: 0;
}

.dialog__bg {
    background-color: rgba(0,0,0,.3);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 80;
}
.dialog__bg {
    display: block;
}
.dialog__bg.is-hidden {
    display: none;
}

/* MD+: medium and up (iPad) */
@media only screen and (min-width: 768px) {
    .dialog {
        max-width: 375px;
    }
}
.social-module {
    position: fixed;
    z-index: 100;
    left: 6px;
    bottom: 6px;
}
.social-module-list {
    padding: 0;
	margin: 0;
}
.social-module li {
	display: block;
}
.social-module-item {
	border: 0;
    cursor: pointer;
    display: inline-block;
    float: left;
	overflow: hidden;
    width: 60px;
    height: 50px; /* line-height of next icon */
    text-align: center;
    transition: all .2s;
}
.social-module-item i {
    color: #fff;
    line-height: 50px; /* height of .social-module-item */
    font-size: 28px;
    transition: all .2s;
}
.social-module-item[data-network="mobile"] {
    background-color: #c41425;
    position: relative;
    z-index: 105;
}
.social-module-item[data-network="facebook"] {
    background-color: #3b5598;
    display: none;
}
.social-module-item[data-network="twitter"] {
    background-color: #00aced;
    display: none;
}
.social-module-item[data-network="linkedin"] {
    background-color: #007bb6;
    display: none;
}
.social-module-item[data-network="email"] {
    background-color: #9e9e9e;
}
.social-module-item > a {
    display: block;
}

/* MQ is based on where the module starts to cover the text on the page */
@media only screen and (min-width: 1080px) {
    
    .social-module {
        left: 0;
        top: 295px;
		bottom: auto;
    }
    .social-module-item {
        display: block;
        float: none;
        width: 40px;
        -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, .3),  0 -4px 5px rgba(0, 0, 0, .1);
        -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, .3),  0 -4px 5px rgba(0, 0, 0, .1);
        box-shadow: 0 2px 3px rgba(0, 0, 0, .3),  0 -4px 5px rgba(0, 0, 0, .1);
    }
    .social-module-item[data-network="facebook"],
	.social-module-item[data-network="twitter"],
	.social-module-item[data-network="linkedin"] {
        display: block;
    }
    .social-module-item:nth-child(n) {
        -ms-transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    .social-module-list li:first-child .social-module-item {
        border-radius: 0 2px 0 0;
    }
    .social-module-list li:last-child .social-module-item {
        border-radius: 0 0 2px 0;
    }

}

/* LG+: large and up (11" laptop, old 4:3 monitor) */
@media only screen and (min-width: 1219px) {
    
    .social-module {
        top: 425px;
    }
    .social-module-item {
        width: 45px; /* line-height of next icon */
        height: 45px;
    }
    .social-module-item:hover,
    .social-module-item:focus {
        border-radius: 0 2px 2px 0;
        width: 60px;
    }
    .social-module-item:hover i,
    .social-module-item:focus i {
        transform: scale(1.1);
    }
    .social-module-item i {
        line-height: 45px; /* height of .social-module-item */
    }

}

.share-list {
	list-style-type: none;
	margin: 0;
	padding: 0;
    width: 100%;
}

.share-list li {
    border-radius: 2px;
    cursor: pointer;
    margin-bottom: 5px;
    transition: all .2s ease-in-out;
}
.share-list li:last-child {
    margin-bottom: 0;
}

.share-list li[data-network="facebook"] i {
    color: #3b5598;
}
.share-list li[data-network="facebook"]:hover,
.share-list li[data-network="facebook"]:focus {
    background-color: #3b5598;
}

.share-list li[data-network="twitter"] i {
    color: #00aced;
}
.share-list li[data-network="twitter"]:hover,
.share-list li[data-network="twitter"]:focus {
    background-color: #00aced;
}

.share-list li[data-network="google"] i {
    color: #dd4b39;
}
.share-list li[data-network="google"]:hover,
.share-list li[data-network="google"]:focus {
    background-color: #dd4b39;
}

.share-list li[data-network="linkedin"] i {
    color: #007bb6;
}
.share-list li[data-network="linkedin"]:hover,
.share-list li[data-network="linkedin"]:focus {
    background-color: #007bb6;
}

.share-list li[data-network="email"] i {
    color: #9E9E9E;
}
.share-list li[data-network="email"]:hover,
.share-list li[data-network="email"]:focus {
    background-color: #9E9E9E;
}

.share-list button,
.share-list a {
	align-items: center;
	background-color: rgba(0, 0, 0, 0);
    border: none;
    color: #444;
	cursor: pointer;
    display: flex;
	height: 48px;
	padding: 0;
    text-align: left;
    text-decoration: none;
	width: 100%;
}

.share-list button:hover,
.share-list a:hover,
.share-list a:focus {
	text-decoration: none;
}

.share-list i {
    font-size: 24px;
    text-align: center;
    width: 50px;
    transition: all .2s ease-in-out;
	vertical-align: text-bottom;
}
.share-list span {
	color: #444;
	font-size: 16px;
	font-weight: 400;
	padding-left: 5px;
    transition: color .2s ease-in-out;
	vertical-align: text-bottom;
}
.share-list li:hover i {
    color: #fff;
}
.share-list li:hover span {
    color: #fff;
}
.share-list i.fa-envelope {
    font-size: 22px;
}
/* ==========================================================================
   Helper classes
   ========================================================================== */

.is-hidden {
    display: none !important;
    visibility: hidden;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.offscreen {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

.absolute-center {
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.fixed-center {
  margin: auto;
  position: fixed !important;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.flex-center {
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.flex-center-stack {
	-webkit-flex-direction: column;
	flex-direction: column;	
}

/* ==========================================================================
   Print styles
   ========================================================================== */
.flexer,
.progress-indicator {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.no-flexer,
.progress-indicator.stacked {
    display: block;
}
.no-flexer-element {
    -ms-flex: 0;
    -webkit-flex: 0;
    -moz-flex: 0;
    flex: 0;
}
.flexer-element,
.progress-indicator > li {
    -ms-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    flex: 1;
}
.progress-indicator {
    margin: 5em 0;
    padding: 0;
    font-size: 70%;
    text-transform: uppercase;
}
@media screen and (min-width:768px) {
	.progress-indicator {
		font-size: 100%;	
	}
}
.progress-indicator > li {
    list-style: none;
    text-align: center;
    width: auto;
    padding: 0;
    margin: 0;
    position: relative;
    text-overflow: ellipsis;
    /*color: #bbb;*/
    display: block;
}
.progress-indicator > li:hover {
    color: #6f6f6f;
}
.progress-indicator > li.completed,
.progress-indicator > li.completed .bubble {
    color: #18543B;
}
.progress-indicator > li .bubble {
    border-radius: 1000px;
    width: 20px;
    height: 20px;
    background-color: #bbb;
    display: block;
    margin: 0 auto 0.5em;
    border-bottom: 1px solid #888;
}
.progress-indicator > li .bubble:after,
.progress-indicator > li .bubble:before {
    display: block;
    position: absolute;
    top: 9px;
    width: 100%;
    height: 3px;
    content: "";
    background-color: #bbb;
}
.progress-indicator > li.completed .bubble,
.progress-indicator > li.completed .bubble:after,
.progress-indicator > li.completed .bubble:before {
    background-color: #18543B;
    border-color: #247830;
}
.progress-indicator > li .bubble:before {
    left: 0;
}
.progress-indicator > li .bubble:after {
    right: 0;
}
.progress-indicator > li:first-child .bubble:after,
.progress-indicator > li:first-child .bubble:before {
    width: 50%;
    margin-left: 50%;
}
.progress-indicator > li:last-child .bubble:after,
.progress-indicator > li:last-child .bubble:before {
    width: 50%;
    margin-right: 50%;
}
.progress-indicator > li.active,
.progress-indicator > li.active .bubble {
    color: #337ab7;
}
.progress-indicator > li.active .bubble,
.progress-indicator > li.active .bubble:after,
.progress-indicator > li.active .bubble:before {
    background-color: #337ab7;
    border-color: #122a3f;
}
.progress-indicator > li a:hover .bubble,
.progress-indicator > li a:hover .bubble:after,
.progress-indicator > li a:hover .bubble:before {
    background-color: #5671d0;
    border-color: #1f306e;
}
.progress-indicator > li a:hover .bubble {
    color: #5671d0;
}
.progress-indicator > li.danger .bubble,
.progress-indicator > li.danger .bubble:after,
.progress-indicator > li.danger .bubble:before {
    background-color: #d3140f;
    border-color: #440605;
}
.progress-indicator > li.danger .bubble {
    color: #d3140f;
}
.progress-indicator > li.warning .bubble,
.progress-indicator > li.warning .bubble:after,
.progress-indicator > li.warning .bubble:before {
    background-color: #edb10a;
    border-color: #5a4304;
}
.progress-indicator > li.warning .bubble {
    color: #edb10a;
}
.progress-indicator > li.info .bubble,
.progress-indicator > li.info .bubble:after,
.progress-indicator > li.info .bubble:before {
    background-color: #5b32d6;
    border-color: #25135d;
}
.progress-indicator > li.info .bubble {
    color: #5b32d6;
}
.progress-indicator.stacked > li {
    text-indent: -10px;
    text-align: center;
    display: block;
}
.progress-indicator.stacked > li .bubble:after,
.progress-indicator.stacked > li .bubble:before {
    left: 50%;
    margin-left: -1.5px;
    width: 3px;
    height: 100%;
}
.progress-indicator.stacked .stacked-text {
    position: relative;
    z-index: 10;
    top: 0;
    margin-left: 60% !important;
    width: 45% !important;
    display: inline-block;
    text-align: left;
    line-height: 1.2em;
}
.progress-indicator.stacked > li a {
    border: none;
}
.progress-indicator.stacked.nocenter > li .bubble {
    margin-left: 0;
    margin-right: 0;
}
.progress-indicator.stacked.nocenter > li .bubble:after,
.progress-indicator.stacked.nocenter > li .bubble:before {
    left: 10px;
}
.progress-indicator.stacked.nocenter .stacked-text {
    width: auto !important;
    display: block;
    margin-left: 40px !important;
}
@media handheld, screen and (max-width: 400px) {
    .progress-indicator {
        font-size: 60%;
    }
}
/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}