/*
*** 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) {}

*/

* {
  box-sizing: content-box;
  box-sizing: border-box;
}

html {
	background-color: #fff;
    color: #222;
	font: normal 16px / 22px "Gotham SSm A", "Gotham SSm B", "Helvetica Neue", Helvetica, Arial, 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;
}

a {
	color: #0A893F;
    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;
}

.no-list {
    list-style-type: none;
    padding-left: 0;
}

main {
    padding-bottom: 20px;
}

main:focus {
    outline: none;
}

.uk-container {
    margin: 0 auto;
}

em {
	color: inherit;
}

.last-with-space:last-child {
    margin-bottom: 25px;
}

@media screen and (min-width:768px) {
    .last-with-space:last-child {
        margin-bottom: 0;
    }
}

.paragraph-block-indent {
    border-left:2px solid #ccc;
    padding-left:25px;
}

#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: 0;
    transition: transform 150ms ease-in-out;
    transform: translateY(-100%);
}

#skip-main-content:focus {
    transform: translateY(0);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
	height: 0;
}
 
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   Colors
   ========================================================================== */

.color-white {
    color: #fff !important;
}

.bg-green {
    background-color: #18453B;
}

.bg-gray {
    background-color: #f5f5f5;
}

/* ==========================================================================
   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 screen and (min-width:768px) {
    .header-msu-layout {
        flex-direction: row;
    }
}

.header-msu-masthead {
    
}

@media screen and (min-width:768px) {
    .header-msu-masthead {
        margin-bottom: 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 screen and (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 Alumni, secondary navigation)
   ========================================================================== */

.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 (min-width:960px) {
    .header-site-name {
        font-size: 28px;
    }
}

.header-site-give,
.header-site-give:visited {
    background-color: #06893A;
    border-radius: 5px;
    color: #fff;
    display: none;
    font-size: 14px;
    font-weight: 700;
    overflow: hidden;
    padding: 5px 10px;
    position: relative;
    margin-left: 25px;
    text-transform: uppercase;
}

.header-site-give:hover,
.header-site-give:focus {
    color: #fff;
}

.header-site-give::after {
    background: #fff;
    content: "";
    height: 155px;
    left: 0;
    opacity: 0.25;
    position: absolute;
    top: -50px;
    transform: rotate(35deg) translateX(-120%);
    transition: all 400ms ease-in-out;
    width: 50px;
}

.header-site-give:hover::after,
.header-site-give:focus::after {
    transform: rotate(35deg) translateX(180%);
}

@media screen and (min-width:768px) {
    .header-site-give {
        display: block;
    }
}

/* ==========================================================================
   Primary Navigation
   ========================================================================== */

.header-navigation {
    background-color: #111111;
    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;
        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;
}

/* ==========================================================================
   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;
    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 .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: #0db14b;
    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;
}

/* ==========================================================================
   Secondary Navigation
   ========================================================================== */

.secondary-navigation-container {
    display: none;
    margin-left: auto;
}

@media screen and (min-width:768px) {
    .secondary-navigation-container {
        display: block;
    }
}

.secondary-navigation {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.secondary-navigation li:not(:last-of-type)::after {
    content: "/";
    color: #0DB14B;
    margin-left: -5px;
}

.secondary-navigation-link {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    margin: 0 4px;
    padding: 5px 1px;
    position: relative;
    text-transform: uppercase;
}

.secondary-navigation-link:hover,
.secondary-navigation-link:focus {
    color: #fff;
}

.secondary-navigation-link::after {
    content: '';
    border-bottom: 2px solid #fff;
    left: 0;
    bottom: 0;
    position: absolute;
    transition: width 200ms ease-in-out;
    width: 0;
}

.secondary-navigation-link:hover::after,
.secondary-navigation-link:focus::after {
    width: 100%;
}

@media screen and (min-width:960px) {
    .secondary-navigation-link {
        font-size: 14px;
        margin: 0 9px;
    }
}

/* ==========================================================================
   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: none;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

@media screen and (min-width:768px) {
    .side-navigation-label {
        display: block;
    }
}

.side-navigation ul {
	list-style-type: none;
	padding: 0;
}

.side-navigation-list {
    margin: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 300ms ease-in-out;
}

.side-navigation.is-open .side-navigation-list {
    max-height: 2000px;
    visibility: visible;
}

@media screen and (min-width:768px) {
    .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;
}

.side-navigation .level-two {
    padding-left: 18px;
}

.side-navigation-mobile-menu-button {
    align-items: center;
    border: none;
    color: #4f4f4f;
    display: flex;
    font-size: 18px;
    font-weight: 700;
    justify-content: space-between;
    padding: 6px 5px;
    text-transform: uppercase;
    width: 100%;
}

@media screen and (min-width:768px) {
    .side-navigation-mobile-menu-button {
        display: none;
    }
}

.side-navigation-mobile-menu-button i {
    font-size: 24px;
    transform: rotate(0) translateY(-1px);
    transition: transform 300ms ease-in-out;
}

.side-navigation.is-open .side-navigation-mobile-menu-button i {
    transform: rotate(180deg);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer-site {
    background-color: #18453B;
    border-top: 10px solid #111;
    color: #fff;
    padding: 40px 0;
    position: relative;
}

.footer-site a {
    color: #fff;
}

.footer-plate {
    background-color: #111;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 50%;
    padding: 5px 12px;
    text-transform: uppercase;
    transform: translate(-50%, -65%);
    white-space: nowrap;
}

.footer-plate .color-green-2 {
    font-weight: 900;
    color: #0FC254;
}

.footer-header {
    color: #0FC254;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 25px;
    margin-bottom: 5px;
    text-transform: uppercase;
}


.footer-grid div:first-of-type .footer-header:first-of-type {
    margin-top: 0;
}

.footer-grid div p:last-of-type {
    margin-bottom: 0;
}

@media screen and (min-width:768px) {
    .footer-header {
        margin-top: 0;
    }
    
    .footer-grid div .footer-header:not(:first-of-type) {
        margin-top: 25px;
    }
}

.footer-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer-list li:not(:last-of-type) {
    margin-bottom: 5px;
}

.footer-list a {
    color: #fff;
    display: inline-block;
    padding: 1px 0;
    position: relative;
    text-decoration: none;
}

.footer-list a::after {
    content: '';
    border-bottom: 2px solid #fff;
    left: 0;
    bottom: 0;
    position: absolute;
    transition: width 200ms ease-in-out;
    width: 0;
}

.footer-list a:hover::after,
.footer-list a:focus::after {
    width: 100%;
}

.footer-site-name {
    display: inline-block;
    font-size: 26px;
    font-weight: 700;
    margin-top: 25px;
}

@media screen and (min-width:768px) {
    .footer-site-name {
        margin-top: 0;
    }
}

.footer-msu {
    background-color: #111;
    color: #fff;
    font-size: 11px;
    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,
.btn {
    background-color: #fff;
    border: none;
	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-size: 14px;
	font-weight: 700;
    padding: 6px 15px;
	text-decoration: none;
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.editable .button,
.editable .btn {
    margin-bottom: 8px;
    margin-right: 8px;
}

.button:hover,
.button:focus,
.btn:hover,
.btn:focus {
    color: #222;
	text-decoration: none;
    transform: translateY(-1px);
}

.button-dark-green,
.button-dark-green:visited,
.btn--primary,
.btn--primary:visited {
    background-color: #18453B;
    color: #fff;
}

.button-dark-green:hover,
.button-dark-green:focus,
.btn--primary:hover,
.btn--primary:focus {
    background-color: #0f2c25;
    color: #fff;
}

.button-light-green,
.button-light-green:visited,
.btn--green-2,
.btn--green-2:visited {
	background-color: #06893A;
	color: #fff;
}

.button-light-green:hover,
.button-light-green:focus,
.btn--green-2:hover,
.btn--green-2:focus {
	background-color: #06893A;
	color: #fff;
}

.button-orange,
.btn--orange {
	background-color: #F08521;
	color: #fff;
}

.button-orange:hover,
.button-orange:focus,
.btn--orange:hover,
.btn--orange:focus {
	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;
}

.button-arrow,
.button-arrow:visited {
    background-color: transparent;
    box-shadow: none;
    color: #086930;
    font-size: 16px;
    padding: 5px 18px 5px 0;
    position: relative;
}

.button-arrow:hover,
.button-arrow:focus {
    background-color: transparent;
    transform: none;
}

.button-arrow::after {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid #086930;
    content: "";
    height: 0;
    position: absolute;
    right: 0;
    top: 9px;
    width: 0;
}

.button-group {
    display: flex;
}

.button-group .button:not(:last-child) {
    margin-right: 10px;
}

/* ==========================================================================
   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: 18px;
}

.form-label {
    color: #444;
    display: block;
    font-weight: 500;
    line-height: 24px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="url"],
input[type="password"],
textarea,
select {
    border: 1px solid #787878;
    border-radius: 2px;
    box-sizing: border-box;
    line-height: 1.3em;
    padding: 8px;
}

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 {
    margin: 5px 0;
    width: 375px;
}

.inline-radio {
	display: inline-block;
}

.inline-radio:not(.first) {
    margin-left: 15px;
}

.inline-select {
	display: inline-block;
}

.is-required label:not(.no-asterisk):after {
    color: #d00;
    content: " *";
}

.input-error {
	color: red;
	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;
}

.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;
}

.input-group {
    display: flex;
}

input.input-group-field {
    border-radius: 2px 0 0 2px;
    flex: 1;
    border-right: none;
    margin: 0;
}

.input-group-button {
    border: 1px solid #787878;
    border-left: none;
    border-radius: 0 2px 2px 0;
    box-shadow: none;
}

fieldset > legend {
    font-weight: 600;
    margin-bottom: 20px;
}

/* ==========================================================================
   Alert
   ========================================================================== */

.alert {
    border: 1px solid transparent;
    border-radius: 2px;
    margin: 20px 0 20px;
	padding: 15px;
}

.alert--success {
	color: #3c763d;
	background-color: #dff0d8;
	border-color: #d6e9c6;
}

.alert--info {
	color: #31708f;
	background-color: #d9edf7;
	border-color: #bce8f1;
}

.alert--warning {
	color: #8a6d3b;
	background-color: #fcf8e3;
	border-color: #faebcc;
}

.alert--danger {
	color: #a94442;
	background-color: #f2dede;
	border-color: #ebccd1;
}

/* ==========================================================================
   Section styles
   ========================================================================== */

.section-sm {
    padding: 25px 0;
}

.section-md {
    padding: 50px 0;
}

/* ==========================================================================
   Home Image Grid
   ========================================================================== */

.home-grid-container {

}

.home-grid-top,
.home-grid-bottom {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media (min-width: 768px) {
    .home-grid-top,
    .home-grid-bottom {
        flex-direction: row;
    }
}

.home-grid-hero {
    flex: 2;
}

@media (max-width: 767px) {
    .home-grid-hero {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
    }
	
	.home-grid-hero-no-video {
       padding-bottom: 0;	
	}
    
    .home-grid-hero iframe,
    .home-grid-hero object,
    .home-grid-hero embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

@media (min-width: 768px) {
    .home-grid-hero {
        min-height: 450px;
    }
}

.home-grid-top-right {
    flex: 1;
}

.home-grid-bottom {
    display: flex;
}

.home-grid-bottom > div {
    flex: 1;
}

.home-grid-cell {
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 175px;
    position: relative;
    z-index: 1;
}

.home-grid-cell .cell-title {
    color: #fff;
    font-size: 24px;
    margin-bottom: 8px;
}

.home-grid-cell .cell-subtitle {
    font-size: 16px;
}

.home-grid-cell .cell-link,
.home-grid-cell .cell-link:visited {
    color: #fff;
    text-decoration: none;
}

.home-grid-cell .cell-link:hover,
.home-grid-cell .cell-link:focus {
    color: #fff;
}

@media (max-width: 767px) {
    .home-grid-cell a.cell-title {
        font-size: 22px;
    }

    .home-grid-bottom-1,
    .home-grid-bottom-2,
    .home-grid-bottom-3 {
        background-size: 0;
        border-bottom: 1px solid #ccc;
        min-height: auto;
    }

    .home-grid-bottom-1 a.cell-title,
    .home-grid-bottom-2 a.cell-title,
    .home-grid-bottom-3 a.cell-title {
        background: none;
        color: #444;
        text-shadow: none;
    }
}

@media (min-width: 768px) {
    .home-grid-cell {
        min-height: 225px;
    }
    .home-grid-hero .home-grid-cell {
        min-height: 450px;
    }
}

.home-grid-cell .cell-text {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0;
    padding: 20px;
    text-decoration: none;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 100%);
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 100%);
}

.home-grid-cell .cell-link::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.home-grid-cell .cell-link:hover,
.home-grid-cell .cell-link:focus {
    text-decoration: underline;
}

/* ==========================================================================
   Home styles
   ========================================================================== */

.partner-image {
    max-height: 95px;
}

/* ==========================================================================
   Heading styles
   ========================================================================== */

.heading-style-1 {
    font-size: 30px;
    text-transform: uppercase;
}

.heading-style-1:after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background-color: #00B047;
    margin: 20px 0 0;
}

.uk-text-center .heading-style-1:after {
    margin-left: auto;
    margin-right: auto;
}


/* ==========================================================================
   Featured event card
   ========================================================================== */

.featured-event-card {
    border: 1px solid #c7c7c7;
    border-radius: 5px;
    color: #373737;
    display: block;
    font-weight: 500;
    overflow: hidden;
    text-decoration: none;
}

.featured-event-card:hover {
    color: inherit;
    text-decoration: none;
}

.featured-event-card-top {
    background-size: cover;
    padding-top: 56.25%;
    position: relative;
}

.featured-event-card-top-inside {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.featured-event-card-heading {
    color: #fff;
    display: block;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    padding: 30px 15px 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 100%);
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 100%);
}

.featured-event-card:hover .featured-event-card-heading {
    text-decoration: underline;
}

.featured-event-card-bottom {
    padding: 15px;
}

.featured-event-card-2-col {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2px;
}

.featured-events-tab-container {
    margin-top: 30px;
}

@media screen and (min-width:768px) {
    .featured-events-tab-container {
        margin-top: 0;
    }
}

/* ==========================================================================
   Tabs
   ========================================================================== */

.tab-container {
    border: 1px solid #c7c7c7;
    border-radius: 5px;
    overflow: hidden;
}

.tab-buttons {
    border-bottom: 1px solid #c7c7c7;
    display: flex;
}

.tab-button {
    background-color: #fff;
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    color: #424242;
    font-size: 15px;
    font-weight: 700;
    flex: 1;
    padding: 8px 5px;
    text-transform: uppercase;
}

.tab-button:not(:last-child) {
    border-right: 1px solid #BDBDBD;
}

.tab-button.is-active {
    border-bottom: 3px solid #00B047;
}

.tab-content {
    background-color: #F5F5F5;
    padding: 15px;
}

.tab-tabpanel.is-hidden {
    display: none;
}

.tab-event-list {
    list-style-type: none;
    margin: 8px 0 20px;
    padding: 0;
}

.tab-event-item {
    align-items: flex-start;
    display: flex;
    position: relative;
}

.tab-event-item:not(:last-child) {
    margin-bottom: 20px;
}

.tab-event-calendar {
    border: 1px solid #ccc;
    display: flex;
    flex: 0 0 70px;
    flex-direction: column;
    margin-right: 15px;
    text-align: center;
}

.tab-event-calendar-month {
    background-color: #18453B;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 1px 0;
    text-transform: uppercase;
}

.tab-event-calendar-day {
    background-color: #fff;
    color: #444;
    font-size: 24px;
    font-weight: 500;
    padding: 6px 0;
}

.tab-event-content {
    display: flex;
    flex-direction: column;
}

.tab-event-link {
    display: inline-block;
}

.tab-event-link:hover .tab-event-title,
.tab-event-link:focus .tab-event-title {
    text-decoration: underline;
}

.tab-event-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.tab-event-title {
    font-size: 17px;
    margin-bottom: 0;
    text-decoration: none;
}

.tab-event-time,
.tab-event-location {
    color: #616161;
    font-size: 14px;
    font-weight: 500;
}

/* ==========================================================================
   Portrait cards
   ========================================================================== */

.portrait-card {
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.portrait-card::after {
    border-radius: 5px;
    box-shadow: 0 2px 4px -1px rgba(0,0,0,.2), 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12);
    content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.portrait-card:hover::after {
    opacity: 1;
}

@media screen and (min-width: 480px) {
    .portrait-card {
        flex-direction: row;
    }
}

.portrait-card-img-container {
    flex: 0 0 30%;
}

.portrait-card-img img {
    border-radius: 5px 5px 0 0;
    display: block;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

@media screen and (min-width: 480px) {
    .portrait-card-img img {
        border-radius: 5px 0 0 5px;
    }
}

.portrait-card-img img {
    height: 100%;
    object-fit: cover;
}

.portrait-card-content {
    padding: 20px;
}

.portrait-card-heading {
    font-size: 20px;
    margin: 0 0 15px;
    text-transform: uppercase;
}

.portrait-card-description {
    margin: 0 0 20px;
}

.portrait-card-link::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.portrait-card-last {
    margin-top: 30px;
}

@media screen and (min-width:768px) {
    .portrait-card-last {
        margin-top: 0
    }
}

div.editable[contenteditable="true"] .snippet-container {
    border:1px dashed #666666;
        border-radius:5px;
}
/* In surreal staging only, minimize ::after element to allow editing of content on the card - IG/JK 02.21.22 */
div.editable[contenteditable="true"] .portrait-card-link::after,
div.editable[contenteditable="true"] .hover-card__link::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0%;
    width: 0%;
}

/* ==========================================================================
   Flat cards
   ========================================================================== */

.flat-card {
    display: flex;
    flex-direction: column;
    max-width: 354px;
    position: relative;
}

.flat-card:last-child {
    margin-bottom: 30px;
}

.flat-card-img {
    border-radius: 5px 5px 0 0;
}

.flat-card-img-container {
    position: relative;
}

.flat-card-img-container::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    transform: translateY(100%);
    transition: all 300ms ease-in-out;
    width: 100px;
    background: rgb(26,166,82);
    background: -moz-linear-gradient(left,  rgba(26,166,82,1) 0%, rgba(208,222,63,1) 100%);
    background: -webkit-linear-gradient(left,  rgba(26,166,82,1) 0%,rgba(208,222,63,1) 100%);
    background: linear-gradient(to right,  rgba(26,166,82,1) 0%,rgba(208,222,63,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1aa652', endColorstr='#d0de3f',GradientType=1 );
}

.flat-card:hover .flat-card-img-container::after,
.flat-card:focus-within .flat-card-img-container::after {
    width: 100%;
}

.flat-card-sub {
    font-size: 14px;
    margin: 10px 0;
    text-transform: uppercase;
}

.flat-card-link,
.flat-card-link:hover,
.flat-card-link:focus {
    text-decoration: none;
}

.flat-card-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.flat-card-heading {
    font-size: 22px;
    margin-bottom: 10px;
}

.flat-card-description {
    margin: 0;
}

/* ==========================================================================
   Stripe card
   ========================================================================== */

.stripe-card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 8px 9px -5px rgba(0,0,0,.2), 0 15px 22px 2px rgba(0,0,0,.14), 0 6px 28px 5px rgba(0,0,0,.12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

@media screen and (min-width:480px) {
    .stripe-card {
        flex-direction: row;
    }
}

.stripe-card-content {
    align-items: flex-start;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px;
}

@media screen and (min-width:480px) {
    .stripe-card-content {
        order: 1;
    }
}

.stripe-card-content p {
    max-width: 30em;
}

.stripe-card-content a:last-of-type {
    margin-top: auto;
}

.stripe-card-form {
    margin-top: 25px;
}

@media screen and (min-width:480px) {
    .stripe-card-img {
        order: 2;
    }
}

/* ==========================================================================
   Testimonial card
   ========================================================================== */
.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;
}

/* ==========================================================================
   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%;
}

/* ==========================================================================
   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: #0DB14B;
    position: absolute;
    right: 0;
    top: 1px;
}

.breadcrumb-link,
.breadcrumb-page {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-link:hover,
.breadcrumb-link:focus {
    color: #fff;
}

/* ========================================================================
	Component: Photo grid / Gallery
/  ======================================================================== */

.photo-grid {
    list-style-type: none;
}

.photo-card {
    border: 1px solid #e5e5e5;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0,0,0,.05);
    display: block;
    margin-bottom: 35px !important;
    overflow: hidden;
    text-decoration: none;
}

.photo-card:hover {
    color: #444;
    text-decoration: none;
}

.photo-card img {
    display: block;
    object-fit: cover;
    margin: 0 auto;
}

.photo-card span {
    color: #444;
    display: block;
    font-size: 16px;
    padding: 4px 5px;
}

/* ========================================================================
	Component: Pagnation (For "Next" and "Previous" page buttons)
/  ======================================================================== */

.pagnation {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.pagnation li {
    display: inline-block;
    margin: 0 10px;
}
.pagnation li a {
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0,0,0,.05);
    display: inline-block;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    width: 100px;
}
.pagnation li a.is-active {
    color: #fff;
    background-color: #539753;
}

/* ========================================================================
	Component: Media Card
/  ======================================================================== */

.media-card {
	border-radius: 2px;
	max-width: 355px;
	padding-bottom: 15px;
	text-align: center;
}

.media-card .media-card-img {
	margin: 0;
	width: 100%;
}

.media-card p {
	font-weight: 700;
	padding: 0 10px;
	text-align: center;
}

.media-card .media-card-link {
	border: 2px solid rgba(255, 255, 255, 0);
	color: #fff;
	display: inline-block;
	font-weight: 700;
	margin: 10px auto 0;
    padding: 10px 15px;
    text-decoration: underline;
}

.media-card .media-card-link:hover {
	border: 2px solid rgba(255, 255, 255, 1);
	text-decoration: none;
}

.media-card-light-blue {
	background-color: #619DB5;
}

.media-card-light-blue .media-card-link {
	background-color: #456C7D;
	transition: all 150ms ease-in-out;
}

.media-card-light-blue .media-card-link:hover {
	background-color: #395967;
}

.media-card-green {
	background-color: #94AE49;
}

.media-card-green .media-card-link {
	background-color: #6E7F3B;
	transition: all 150ms ease-in-out;
}

.media-card-green .media-card-link:hover {
	background-color: #5a6830;
}

.media-card-purple {
	background-color: #B193CF;
}

.media-card-purple .media-card-link {
	background-color: #945BCC;
	transition: all 150ms ease-in-out;
}

.media-card-purple .media-card-link:hover {
	background-color: #8341c4;
}

.media-card-orange {
	background-color: #FD6929;
}

.media-card-orange .media-card-link {
	background-color: #FB4E01;
	transition: all 150ms ease-in-out;
}

.media-card-orange .media-card-link:hover {
	background-color: #d94301;
}

.media-card-dark-blue {
	background-color: #609ACA;
}

.media-card-dark-blue .media-card-link {
	background-color: #3181C8;
	transition: all 150ms ease-in-out;
}

.media-card-dark-blue .media-card-link:hover {
	background-color: #2a6fad;
}

.media-card-yellow {
	background-color: #FFCA0A;
}

.media-card-yellow p {
	color: #333;
}

.media-card-yellow .media-card-link {
	background-color: #AB880A;
	transition: all 150ms ease-in-out;
}

.media-cardyellow .media-card-link:hover {
	background-color: #8b6e08;
}

/* ========================================================================
	Component: Aggregate List
/  ======================================================================== */

.aggregate-list--text {
    list-style-type: none;
    padding-left: 0;
}

.aggregate-list--text a {
    color: #444;
    display: flex;
    text-decoration: none;
}
.aggregate-list__item {
	border: 1px solid #ddd;
	background-color: #f7f7f7;
	display: block;
	margin-bottom: 20px;
	padding: 15px;
}
.aggregate-list__item--clickable:hover {
	background-color: #fff;
	border-left: 3px solid #539753;
	color: #444;
	cursor: pointer;
}
.aggregate-list__icon {
	background-color: #ddd;
	border-radius: 20px;
	color: #fff;
    float: left;
    flex-shrink: 0;
	font-size: 20px;
	height: 40px;
	line-height: 40px;
	margin: 0 15px 15px 0;
	text-align: center;
	width: 40px;
}
.aggregate-list__icon--articles {
	background-color: #256b5b;
}
/* used on magazine index and magazine issue*/
.aggregate-list__title {
	font-weight: 800;	
}
.aggregate-list__heading {
	font-size: 20px;
	color: #18453b;
	font-weight:600;
}

.agg-list > li {
	margin-bottom: 35px;
}

.agg-list a {
    text-decoration: none;
}

.agg-list .description {
    margin: 4px 0 8px;
}

.aggregate-list__icon--aa {
    background-color: #18453b;	
}

.aggregate-list__icon--students {
    background-color: #256b5b;	
}

.aggregate-list__icon--clubs {
    background-color: #32917c;	
}

.filter-label {
    display: block;
    font-weight: 500;
    font-size: 14px;
    margin: 10px 0 5px;
}

@media screen and (max-width:479px) {
    .aggregate-list__icon {
        display: none;	
    }
}

/* ========================================================================
	Component: Table -- Agenda
/  ======================================================================== */

.table--agenda {
    background: #fff;
    border: 0;
    border-collapse: none;
    border-radius: 2px;
    box-shadow: 0px 5px 5px -2px rgba(0,0,0,.3);
    overflow: hidden;
    text-align: left;
}
.table--agenda tr th,
.table--agenda tr td {
    padding: 10px 20px;
}

.table--agenda thead tr {
    background: #18453B;
    color: #fff;
}
.table--agenda tbody tr {
    border-bottom: 1px solid #ccc;
}
.table--agenda tbody tr:last-of-type {
    border: 0;
}

/* ========================================================================
	Component: Migrated styles
/  ======================================================================== */

.content__img--portrait {
	margin: 0 0 15px 0 !important; /* override uikit removing margin bottom for last child */;
}

.content__img--full-width {
	margin: 15px 0;
}

@media screen and (min-width:768px) {
	.content__img--float-right {
		float: right;
		margin: 15px 0 15px 15px;
    }
    
	.content__img--float-left {
		float: left;
		margin: 15px 15px 15px 0;
	}	
}

.hover-card {
	background-color: #fff;
	border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.hover-card__top {
	position: relative;	
}

.hover-card .hover-card__top {
	max-height: 170px;
	overflow: hidden;
}

.hover-card__top > img {
	width: 100%;
	border-radius: 3px 3px 0 0;
}

.photo-card .hover-card__top img {
		max-height: none;	
}

.hover-card__bottom {
	padding: 10px;	
}

.hover-card__title {
	display: block;
    font-size: 18px;
}

.hover-card__footer {
	background-color: #f6f6f6;
	border-top: 1px solid #e7e7e7;
	box-shadow: 0 1px 0 0 #fff inset;
	padding: 7px 8px 8px;
	color: #333;
}

.hover-card__icon {
	border-left: 1px solid #ddd;
	color: #929292;
	font-size: 20px;
	float: right;
	margin: 5px 5px 0 0;;
	padding-left: 10px;
}

.hover-card__date {
	display: inline-block;
	font-size: 12px;
}

.hover-card--travel {
    color: #333;
    display: block;
    margin-bottom: 35px;
    text-decoration: none;
}

.hover-card--travel .hover-card__bottom {
	min-height: 100px;
}

.hover-card--travel .hover-card__image {
	height: 220px;
}

.hover-card--travel-photos .hover-card__bottom{
	min-height: 100px;
}

.hover-card--travel .hover-card__cta {
	border: 1px solid #333;
	color: #333;
	padding: 5px 10px;
	display: inline-block;
	text-transform: uppercase;	
	font-size: 12px;
	margin-bottom: 10px;
}

.hover-card {
	border-radius: 0;	
}

.hover-card--podcast .hover-card__description {
	background-color: #fff;
	color: #000;
	padding:15px;
	min-height: 100px;
}

.hover-card--podcast .hover-card__title {
	font-size: 16px;
}

.hover-card--podcast .hover-card__date {
	font-size: 12px;
	color: #9e9e9e;	
}

.hover-card--podcast .hover-card__properties {
	border-top: 1px solid #ddd;
	font-size: 12px;
	margin-top: 10px;
	padding: 10px 0 0 0;
}

.hover-card--podcast .hover-card__top {
	max-height: 145px;
}

.hover-card--story .hover-card__top {
	max-height: 230px;	
}

.hover-card--story .hover-card__title {
	font-size: 22px;
}
.hover-card--story .hover-card__properties {
	font-size: 16px;	
}

.hover-card--story .hover-card__link::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.hover-card--special-guest {
    background-color: #fff;
    display: flex;
    text-align: left;
    margin-top: 15px;
    min-height: 0;
  }
  
  .hover-card--special-guest .hover-card__top {
    align-self: center;
    flex-shrink: 0;
    margin: 15px;
    width: 25%;
  }
  
  .hover-card--special-guest .hover-card__top > img {
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 4px solid #008208;
  }

  .hover-card--special-guest .hover-card__bottom p {
    margin-bottom: 0;
  }
  
  .hover-card--special-guest .hover-card__title {
    color: #555;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-transform: none; 
  }
  
  .hover-card--special-guest .role {
    border-top: 1px solid #d3d3d3;
    margin-top: 15px;
    padding-top: 15px;
  }
  
  @media screen and (min-width: 768px) {
    .hover-card--special-guest {
      display: block;
      text-align: center;
    }
    .hover-card--special-guest .hover-card__top {
      margin: 0 auto;
      padding: 20px;
      width: 50%;
    }
    .hover-card--special-guest .hover-card__title {
      font-size: 20px;
      line-height: 22px;
    }
  }

.details__container {
	background-color: #fff;
	border:1px solid #ddd;
	border-top: none;
	padding: 15px 15px 0 15px;
	margin-bottom: 30px;
}

.details__heading {
	background: #fff;
	color:#000;
	padding: 5px;
	border: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	border-left:5px solid #000;

}

.details__properties-list {
	list-style-type: none;
	padding-left: 0;
	margin-bottom: 40px;
}

.details__properties-title {
	border-bottom: 1px dotted #ddd;
	display: block;
	font-weight: bold;
}

.details__properties {
	font-size: .95em;
	margin-bottom: 20px;
	overflow-wrap: break-word;
}

.callout {
	background-color: #fff;
	border-left: 3px solid #444;
	box-shadow: 3px 3px 0 3px #d9d9d9;
	margin: 30px 0;
	padding: 10px;
}

.callout p:last-of-type {
    margin-bottom: 0;
}

.callout--info {
	background-color: #f4f7f8;
	border-left: 3px solid #31708f;
	box-shadow: 3px 3px 0 3px #eaeff2;
}

.call-to-action {
	background-color: #fff;
	border: 1px solid #000;
	color: inherit;	
	display: block;
	font-size: .8em;
	margin: 0 0 15px 0;	
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
	text-transform: uppercase;
}

.cr {
	width: 200px;
	position: absolute;
	text-align: center;
	color: #f0f0f0;
	font-size: 10px;
	font-weight: 800;
	padding: 4px;
	text-transform: uppercase;
	box-shadow: 0 1px 3px rgba(0,0,0,0.3);
	background-color: #b24e23;
}

.cr-sticky {
  position: fixed;
}

/* Positions */

.cr-top {
    top: 25px;
}

.cr-bottom {
    bottom: 25px;
}

.cr-left {
    left: -50px;
}

.cr-right {
    right: -50px;
}

/* Rotations */

.cr-top.cr-left,
.cr-bottom.cr-right {
  transform: rotate(-45deg);
}

.cr-top.cr-right,
.cr-bottom.cr-left {
  transform: rotate(45deg);
}

.status {
	color: #fff;
	display: inline-block;
	font-size: 11px;
	font-weight: bold;
	border-radius: 2px;
	background-color: #ddd;	
	padding: 0 4px;
}

.status--canceled {
	background-color: red;	
}

.status--wait-list {
	background-color: orange;	
}

.status--new-dates {
	background-color: green;	
}

/* tile-item */
.tile-item {
	background-color: #fff;
	margin-bottom: 15px;
	border: 1px solid #eee;
	color: #333;
}

.tile-item_badge {
	float: left;
	background-color: orange;
	width: 5px;
	height: 100px;
	margin-right: 10px;
}

.tile-item_title {
	font-size: 18px;
	margin-top: 10px;
}

.dark-bg,
.dark-bg a:not([class]) {
	color: #fff;
}

.color-card {	
	border-radius: 2px;
	min-height: 160px;
	padding: 10px;
}

.color-card-green {
	background-color: #18453b;
}

.color-card-purple {
	background-color: #6e005f;
}

.color-card-orange {
	background-color: #B75F0C;
}

.color-card-teal {
	background-color: #008183;
}

.color-card-light-green {
	background-color: #4C8438;
}

#list-social-cards {
	padding:0;
	margin: 0;
}
#list-social-cards li {
	float: left;
	list-style-type: none !important;
	padding: 1%;
	width: 23%;
}
#list-social-cards a {
	background-color: #f2f2f2;
	border: 1px solid #ddd;
	border-radius: 4px;
	display: block;
	overflow: hidden;
	padding: 25px 0;
	position: relative;
	transition: all .2s linear;
	width: 100%;
}
#list-social-cards a:hover {
	border: 1px solid #777;
	text-decoration: none;
}
#list-social-cards .logo-social {
	display: block;
	margin: 0 auto 25px;
	-ms-transform: scale(.97,.97);
	-webkit-transform: scale(.97,.97);
	transform: scale(.97,.97);
	transition: all .3s linear;
}
#list-social-cards span {
	background-color: #e0e0e0;
	border-top: 1px solid #b9b9b9;
	font-weight: 600;
	position: absolute;
	left: 0;
	bottom: 0;
	height: 26px;
	width: 100%;
	color: #4f4f4f;
	line-height: 26px;
	text-align: center;
}
#list-social-cards .social-first {
	width: 48%;
}
#list-social-cards .social-first a {
	padding-top: 10px;
	height: 115px;
}
#list-social-cards .social-first a {
	cursor: default;
}
#list-social-cards .social-first h2 {
	margin: 0 10px;
}
.img-lead {
	margin: 13px 0 0 38px;
}
.icon-chevron {
	position: absolute;
	left: -16px;
	bottom: 6px;
	transition: all .1s linear;
}
.card-facebook {
	background-color: #DFE3EE;
}
.card-twitter {
	background-color: #c0deed;
}

.flex-center {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

/* fix for IE 11 not wrapping text */
.flex-center span,
.flex-center p {
	width: 100%;
}

.flex-stacked {
	flex-direction: column;
}

.image-float-left {
	display: inline-block;
	float: left;
    margin: 0 15px 15px 0;
}

.image-float-right {
    display: inline-block;
    float: right;
    margin: 0 0 15px 15px;
}

.holiday-give-button {
	display: none;
	position: absolute;
	margin: auto;
	top: 0;
	text-align: center;
}

@media (min-width: 960px) {
	.holiday-give-button {
		display: inline-block;
	    right: 41%;
	}
}

@media (min-width: 1220px) {
	.holiday-give-button {
	    right: 48%;
	}
}

.swing {
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    animation: swing 5s ease-in-out;
}

@keyframes swing {
    17% { transform: rotate(-6deg); }
	33% { transform: rotate(6deg); }
	50% { transform: rotate(-6deg); }
	66% { transform: rotate(6deg); }
	84% { transform: rotate(-6deg); }
}

/* Component: Social Module
========================================================================== */
/*------------------------------------*\
    Component: Dialog
\*------------------------------------*/

.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;
    }
}

/*------------------------------------*\
    Component: Share Module
    The sticky component
\*------------------------------------*/

.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,
.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.clearfix:after,
.cf:after {
    clear: both;
}

.clearfix,
.cf {
    *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;	
}

.text-uppercase,
.uk-text-uppercase {
    text-transform: uppercase;
}

.overflow-hidden {
    overflow: hidden;
}

div.editable[contenteditable="true"] .snippet-container { /*style is only activated in the surreal editable regions on staging*/
    border:1px dashed #666666;
        border-radius:5px;
}

/* ==========================================================================
   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;
    }
}


/*privacy statement styles only*/
.privacy-statement span.p-indent {
    display:inline-block;
    margin-left:30px;
}
.privacy-statement lh {
    display:inline-block;
    margin-bottom:0.5em;
    margin-left:-30px;
} 