.blog-post-meta {
    padding-left: 35px;
    color: #404040;
    background-image: url('../../assets/icon-calendar.svg');
    background-position: left center;
    background-repeat: no-repeat;
}

.blog__header.header {
    padding-bottom: 0;
}

.blog__header #Breadcrumbs {
    margin-bottom: 60px;
}

.blog__header #Breadcrumbs ol {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 0;
}

.blog__header #Breadcrumbs ol li {
    display: flex;
    align-items: center;
}

.blog__header #Breadcrumbs ol li.breadcrumb__last {
    padding-left: 6px;
    color: #404040;
    font-size: 16px;
    font-weight: 700;
}

.blog__header #Breadcrumbs ol a {
    padding: 12px 8px;
    border-radius: 12px;
    color: #404040;
    font-size: 16px;
}

.blog__header #Breadcrumbs ol a:focus,
.blog__header #Breadcrumbs ol a:hover {
    outline: 2px solid #101F59;
    text-decoration: underline;
}

.blog__share {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.blog__share h3 {
    display: inline-flex;
    margin-top: 0;
    margin-bottom: 0;
    padding-right: 26px;
    border-right: 2px solid #101F59;
    line-height: 40px;
}

.blog__social {
    list-style: none;
    display: inline-flex;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 26px;
    height: 40px;
}

.blog__social li {
    display: flex;
    align-items: center;
    padding-right: 16px;
}

.blog__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    outline: 2px solid transparent;
}

.blog__social a:focus,
.blog__social a:hover {
    outline: 2px solid #101F59;
    background-color: #101F59;
}

.blog__social a:focus svg,
.blog__social a:hover svg {
    fill: #F6ED4E;
}

.blog__social a:focus svg path,
.blog__social a:hover svg path {
    fill: #101F59;
}

.blog__social svg {
    width: 30px;
    height: 30px;
    fill: #101F59;
}

.blog__social-email path {
    fill: white;
}

.blog__event {
    list-style: none;
    padding: 20px;
    background-color: #F0FBFA;
    border: 2px solid #101F59;
    border-radius: 20px;
}

.blog__event li {
    padding: 5px 0 5px 35px;
    background-position: left top 7px;
    background-repeat: no-repeat;
    background-size: 22px 22px;
    color: #101F59;
    font-size: 16px;
}

.blog__event .blog__event-date {
    background-image: url('../../assets/icon-date.svg');
}

.blog__event .blog__event-time {
    background-image: url('../../assets/icon-time.svg');
}

.blog__event .blog__event-location {
    background-image: url('../../assets/icon-location.svg');
}

.blog__event .blog__event-cost {
    background-image: url('../../assets/icon-cost.svg');
}

.blog__event .blog__event-registration {
    background-image: url('../../assets/icon-registration.svg');
}

.blog__event .blog__event-registration a {
    word-break: break-word;
}

.blog__subscribe {
    background-color: #F0FBFA;
}

/*Blog Search Form*/
.blog-sidebar form {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.blog-sidebar form fieldset {
    padding: 0;
    border: none;
}

.blog-sidebar form label {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
}

.blog-sidebar form input {
    padding: 8px 12px;
    width: 100%;
    border: 2px solid #101F59;
    border-radius: 12px;
    font-size: 18px;
    color: #0C1E5F;
}

/*Search Form in Main Navigation only*/
.blog-sidebar #Form_BlogSearchForm {
    position: relative;
}

.blog-sidebar #Form_BlogSearchForm fieldset input {
    padding: 12px 42px 12px 18px;
}

.blog-sidebar #Form_BlogSearchForm input:focus{
    outline: 3px solid #101F59;
}

.blog-sidebar #Form_BlogSearchForm_action_search {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    width: 34px;
    height: 34px;
    background: none;
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
}

.blog-sidebar #Form_BlogSearchForm_action_search:focus,
.blog-sidebar #Form_BlogSearchForm_action_search:hover {
    border: 2px solid #101F59;
    background-color: #F6ED4E;
}

.blog-sidebar #Form_BlogSearchForm_action_search span {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
}

.blog-sidebar #Form_BlogSearchForm_action_search::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url("../../assets/icon-search.svg") no-repeat center center;
    background-size: 22px 22px;
}

@media all and (min-width: 1400px) {
    .blog__share {
        justify-content: flex-end;
    }
}