[v-cloak] {
    display: none;
}
.account-details {
}
.account-details * {
    text-align: left;
}
.account-details div {
    margin-bottom: 1rem;
}
.account-section {
    text-align: center;
    padding: 4rem 0
}

.account-details .field {
    display: flex;
    flex-flow: row wrap;
}
.account-details .field .label {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(32% - 1rem);
    margin-right: 1rem;
    font-weight: bold;
}
.account-details .field .val {
    flex: 1 0 auto;
}

.account-details .class {
    margin-bottom: 0.5rem;
}

.account-details .class .date {
    /* flex-grow: 1; */
    /* flex-shrink: 0; */
    /* flex-basis: calc(20% - 1rem); */
    /* margin-right: 1rem; */
    display: block;
}

.account-details .class .title {
    /* flex: 1 1 70%; */
    display: block;
}

.info-update {
    text-align: center;
    padding: 100px 0 0 0;
}
.info-update h3 {
    margin-bottom: 30px;
}

.member-directory-search [type="text"] {
    background-color: #f0fafd;
    border-bottom: 3px solid #4cc4e9;
    transition: background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.member-directory-search [type="text"]:focus {
    background-color: #e2f5fb;
}

#memsearch .member {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: solid 1px #e7e7e7;
}

#memsearch .member a.member_name {
    font-weight: bold;
}
#memsearch {
    padding-bottom: 70px;
}
#memsearch .results-header {
    padding-top: 30px;
}


#survey-form, #terms-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

#survey-form .backdrop, #terms-form .backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    z-index: 10;
}

#survey-form .nfjb-modal, #terms-form .nfjb-modal {
    position: relative;
    z-index: 25;
    flex: 0 1 auto;
    background: white;
    padding: 2.5rem;
    text-align: center;
    max-width: 80vw;

    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}


#survey-form h2 {
    font-size: 2rem;
    font-weight: normal;
    margin-top: 0;
    color: #4db2d9;
}
#survey-form h3 {
    font-size: 1.5rem;
    margin: 2rem 0 3rem 0;
    color: #4db2d9;
    font-weight: bold;
}

#survey-form .buttons, #terms-form .buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 1rem;
}

#survey-form button, #terms-form button {
    display: inline-block;
    border: 0;
    border-radius: 0;
    background: #4db2d9;
    padding: .675rem 1rem;
    color: #fff;
    text-transform: uppercase;
    margin: 0 1rem;
    font: normal 500 14px "FF DIN",Helvetica,Arial,sans-serif;
}

#survey-form button:last-child, #terms-form button:last-child {
    background: #C2C1C0;
    margin-right: 1.5625rem;
}

#terms-container {
    max-width: 100%;
    max-height: 500px;
    overflow: auto;
    text-align: left;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2);
    padding: 1rem;
}

.portal-nav, .portal-content {
    background: white;
}
.portal-content .block {
    height: 250px;
    margin: 1rem 0;
    font-family: "FF DIN", Helvetica, Arial, sans-serif;
}
.portal-content .block .inner {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.portal-content .block img {
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.portal-content .block .title {
    position: relative;
    z-index: 10;
    font-weight: 600;

}
.portal-content .block .bg {
    height: 100%;    
    display: block;
    background: #777;
    /* border-top: solid 4px #777; */
    color: white;
    padding: 1rem 1.25rem 1.25rem 1.25rem;
    position: relative;
    z-index: 10;
}

.portal-content .block.with-image .bg {
    /* background-color: rgba(120, 120, 120, 0.5); */
    /* border-top: solid 4px rgba(120, 120, 120, 0.75); */
    background: rgba(0, 0, 0, 0.5);
}

.portal-content .block:hover .bg {
    /* border-top: solid 4px #4cc4e9; */
    background: #081D26;
}
.portal-content .block.with-image:hover .bg {
    /* border-top: solid 4px rgba(76, 196, 233, 0.75); */
    background: rgba(0, 0, 0, 0.7);
    /* background: rgba(8, 29, 38, 0.7); */
}

.portal-content .block .bg::before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0px;
    display: block;
    content: ' ';
    background: rgb(76, 196, 233);
    height: 4px;
    transition: width ease-in-out 0.4s;
}
.portal-content .block:hover .bg::before {
    width: 100%;
    transition: width ease-in-out 0.4s;
}

.portal-content .block .detail {
    /* display: none; */
    transform: translateY(100%);
    opacity: 0.0;
    transition: all ease-in-out 0.4s;
    position: relative;
    z-index: 10;
}
.portal-content .block:hover .detail {
    display: block;
    transform: translateY(0%);
    opacity: 1.0;
    transition: all ease-in-out 0.4s;
}

.portal-nav .categories-nav {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    margin: 0 15px 50px;
    padding: 30px 0;
text-align: center; }
@media (min-width: 768px) {
    .portal-nav .categories-nav {
padding: 0 15px; } }
@media (min-width: 768px) {
    .portal-nav .categories-nav li {
display: inline-block; } }
.portal-nav .categories-nav a {
    display: block;
    font-size: 16px;
    padding: 10px 0;
position: relative; }
@media (min-width: 768px) {
    .portal-nav .categories-nav a {
    padding: 30px 10px; }
    .portal-nav .categories-nav a:after {
        background-color: #eee;
        bottom: 0;
        content: '';
        height: 0;
        left: 0;
        position: absolute;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
width: 100%; } }
.portal-nav .categories-nav a:hover {
color: #4cc4e9; }
@media (min-width: 768px) {
    .portal-nav .categories-nav a:hover {
color: inherit; } }
.portal-nav .categories-nav a:hover:after {
    background-color: #eee;
height: 5px; }
.portal-nav .categories-nav .current_page_item {
color: #4cc4e9; }
.portal-nav .categories-nav .current_page_item a:after {
    background-color: #4cc4e9;
height: 5px; }

.page-template-portal-home .image-callout.join{background-image:url(members-join-callout.jpg)}
