﻿.main-container {
    max-width: 100%;
    display: flex;
    width: 100%;
    padding: 0;
    margin: 0 0 155px 0;
    flex-direction: row;
    border-radius: 0;
}

.search-results-title {
    display: flex;
    font-size: 1rem;
    margin-right: auto;
    padding-right: 1rem;
    margin-bottom: 0;
    align-items: center;
    justify-content: center;
    color: var(--pr-text-muted);
}

    .search-results-title i {
        padding-left: .25rem;
        color: var(--pr-black);
        font-weight: bold;
        font-style: italic;
    }

.blog-header {
    max-width: 1140px;
    overflow: hidden;
    padding: 1.5rem 1.5rem 0 1.5rem;
}

    .blog-header h1 {
        /*font-family: 'Exo';*/
        font-weight: bold;
    }

    .blog-header h2 {
        font-weight: normal;
    }

.blog-container {
    /*max-width: 1200px;*/
    display: flex;
    align-items: start;
    justify-content: start;
    /*padding:1.5rem 1rem 0 1rem;*/
    padding: 0;
    gap: 0rem;
    flex-direction: row;
    width: 100%;
    height: 100%;
    border: none;
}

.blog-body-container {
    display: flex;
    padding: 0;
    flex-direction: row;
    flex: 1 1 auto;
    height: 100%;
    border: none;
    align-items: start;
    justify-content: center;
}

.blog-headline-container {
    display: flex;
    flex-direction: column;
    max-width: 1140px;
    width: 100%;
    gap: 1rem;
    color: var(--pr-black);
    padding: 0 1.5rem;
}

.blog-sidebar-container {
    display: flex;
    align-items: start;
    justify-content: start;
    min-width: 375px;
    max-width: 375px;
    padding: 1.5rem;
    flex-direction: column;
    margin: 0rem;
    height: 100%;
    /*background-color: var(--pr-sidebar-black);*/
    background-color: var(--pr-list-group-border);
    gap: 1rem;
    flex: 1;
}

.blog-sidebar-list {
    display: flex;
    align-items: start;
    justify-content: start;
    padding: 0rem;
    flex-direction: column;
    /*border: 1px solid var(--pr-list-group-border);*/
    border-radius: 0.375rem;
    /*background-color: var(--pr-light-blue-gray);*/
    margin: 0;
    height: auto;
    width: 100%;
}

.blog-sidebar-next {
    border-bottom: 1px solid var(--pr-list-group-border-button);
    padding-bottom: 1.5rem;
}

.blog-center {
    max-width: 1140px;
    /*border: 1px solid var(--pr-list-group-border);*/
    /*padding: 1.5rem;*/
    display: flex;
    flex-direction: column;
}

.blog-body {
    /*max-width: 1140px;*/
    width: 100%;
    /*border: 1px solid var(--pr-list-group-border);*/
    background: #fff;
    padding: 1.5rem 0 1.5rem 0;
}

    .blog-body p {
        font-size: 1.1rem;
    }

    .blog-body h1, .blog-body h2, .blog-body h3, .blog-body h4, .blog-body h5, .blog-body h6, .blog-body p, .blog-body img {
        font-family: 'Roboto';
        margin-bottom: 1.25rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .blog-body img {
        width: calc(100% - 3rem);
        display: inline-block;
        border-radius: 0.375rem;
        overflow: hidden;
        height: auto;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-left: 1.5rem;
        margin-right: 1.5rem;
        box-sizing: border-box;
    }

.blog-list-container {
    max-width: 1140px;
    overflow: hidden;
    padding: 0rem 1.5rem 0 1.5rem;
}

.blog-list-bg {
    background: #fff;
    padding: 1.5rem;
    margin-bottom: 0rem;
}

    .blog-list-bg:nth-child(odd) {
        background-color: var(--pr-light-blue);
        background-image: var(--pr-light-pattern);
        background-repeat: repeat;
    }

.blog-list-img {
    max-width: 200px;
    max-height: 200px;
    min-width: 200px;
    min-height: 200px;
    height: 200px;
    width: 200px;
}

.blog-sidebar-section-title {
    font-size: 0.9rem;
    color: var(--pr-text-muted-dark);
    margin-bottom: 0.5rem;
}

.blog-sidebar-row {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: row;
    gap: 1rem;
    margin: 1.5rem 0 0 0;
    padding: 1.5rem 0 0 0;
    border-top: 1px solid var(--pr-list-group-border-button);
    position: relative;
}

    .blog-sidebar-row:first-of-type {
        border-top: none;
        margin-top: 0;
        padding-top: 0;
    }

.blog-post-title-img {
    max-width: 100px;
    max-height: 100px;
    min-width: 100px;
    min-height: 100px;
    height: 100px;
    width: 100px;
}

.blog-sidebar-img-container {
    display: flex;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 0.375rem;
    position: relative;
    text-decoration: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

/*.blog-sidebar-img-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #007ac2;
        mix-blend-mode: multiply;  
        opacity: 0.50;  
        pointer-events: none;  
        z-index:2;
    }*/

.blog-sidebar-img {
    width: 75px;
    height: 75px;
    /*filter: grayscale(100%);*/
    /*mix-blend-mode: multiply;*/
    /*opacity: 0.5;*/
    position: relative;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.blog-sidebar-img-container:hover .blog-sidebar-img-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #007ac2;
    mix-blend-mode: multiply;
    opacity: 0.50;
    pointer-events: none;
    z-index: 2;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.blog-sidebar-img-container:hover .blog-sidebar-img {
    filter: grayscale(100%);
    mix-blend-mode: multiply;
    opacity: 0.5;
}

.blog-sidebar-data {
    display: flex;
    flex-direction: column;
    width: auto;
    gap: 0.375rem;
}

.blog-sidebar-data-title {
    font-size: 1rem;
    display: flex;
    width: auto;
    margin-right: auto;
    margin-bottom: 0;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.4;
    color: var(--pr-secondary);
}

.blue-light {
    background-color: var(--pr-light-blue);
}

.splash-contain {
    position: relative;
}

.splash-content {
    position: relative;
    z-index: 3;
    height: auto;
}

.blog-snippet {
    font-family: 'Roboto';
    font-size: .875em;
    color: #6c757d;
    margin-bottom: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0 0.5rem;
    max-height: 3.6em;
    line-height: 1.8em;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .blog-snippet h1, .blog-snippet h2, .blog-snippet h3, .blog-snippet h4, .blog-snippet h5, .blog-snippet h6, .blog-snippet div, .blog-snippet span, .blog-snippet p, .blog-snippet small, .blog-snippet b, .blog-snippet i, .blog-snippet caption, .blog-snippet a, .blog-snippet li {
        font-size: .875em;
        font-family: 'Roboto';
        margin-bottom: 0;
    }

.blog-meta {
    display: flex;
    gap: 0.75rem;
    /*margin-top: auto;*/
    justify-content: flex-start;
    flex-direction: row;
    font-size: .875em;
}

.blog-sidebar-meta {
    gap: 0.375rem;
    font-size: .9rem;
}

.blog-main-meta span, .blog-main-meta small, .blog-main-meta a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-home-meta {
    gap: 0.5rem;
}

.blog-sidebar-meta span {
    /*font-size:1.8rem;
    line-height:1.2rem;*/
    color: var(--pr-text-muted);
}

.full-bg {
    border: none;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0 1.5rem;
    margin-top: 0;
    /*background-color: var(--pr-light-blue);
    background-image: var(--pr-light-pattern);
    background-repeat: repeat;
    background-clip: padding-box;
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;*/
}

    .full-bg h1 {
        /*font-family: 'Exo';*/
        font-weight: bold;
    }

.full-bg-bottom {
    background: var(--pr-white);
    position: absolute;
    top: 300px;
    height: calc(100% - 300px);
    left: 0;
    width: 100%;
    z-index: -2;
}

.full-curved-bg-svg-z {
    z-index: -3;
}

.full-curved-bg-svg {
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
    position: absolute;
    top: 300px;
    transition: 0.3s;
    left: 0;
    width: 100%;
}

    .full-curved-bg-svg path {
        fill: var(--pr-white);
    }

.full_area {
    background: transparent;
    width: 100%;
    height: 300px;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.page-link {
    color: var(--pr-secondary);
    border-color: var(--pr-list-group-border);
    padding: 0.15rem 0.50rem;
}

    .page-link:hover {
        color: #fff;
        background-color: var(--pr-secondary);
        border-color: var(--pr-secondary);
    }

    .active > .page-link, .page-link.active {
        color: var(--pr-black); /*var(--pr-secondary);*/
        background-color: var(--pr-list-group-border); /*#f3f3f3;*/
        border-color: var(--pr-list-group-border); /*#dfdfdf;*/
    }

.blog-list-paging {
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: var(--pr-white);
    color: var(--pr-black);
    display: flex;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
}

.blog-list-paging-bottom {
    border-bottom-left-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

.blog-search-form {
    width: 100%;
    max-width: 500px;
}

.page-loading-container {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.75);
}

.page-loading-result-container {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.page-loading-result {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    background: rgba(0,0,0,0.4);
    padding: 1.5rem;
    color: #fff;
}

.page-loading-spinner {
    width: 64px;
    height: 64px;
    border: 0.2em solid var(--pr-secondary); /*#6c757d*/
    border-right-color: transparent;
    margin-right: 5px;
    display: inline-block;
}

.page-loading-grow {
    width: 48px;
    height: 48px;
    background-color: #e3e3e3;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
    padding: 0rem 1.5rem 0 1.5rem;
    /*background:var(--pr-list-group-border);*/
    width: auto;
    /*max-width:100px;*/
    flex-direction: row;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    width: 25px;
    padding: 0;
    border-radius: 50%;
    text-decoration: none;
    color: var(--pr-secondary);
    font-size: 16px;
    transition: background-color 0.3s ease;
    background-color: var(--pr-white);
    border: 1px solid var(--pr-list-group-border);
}

    .share-btn:hover {
        border-color: var(--pr-list-group-border);
        background-color: var(--pr-list-group-border);
        color: var(--pr-black);
    }


/*.facebook {
    background-color: #3b5998;
}

    .facebook:hover {
        background-color: #2d4373;
    }

.twitter {
    background-color: #1da1f2;
}

    .twitter:hover {
        background-color: #0d95e8;
    }

.linkedin {
    background-color: #0077b5;
}

    .linkedin:hover {
        background-color: #005582;
    }

.email {
    background-color: #dd4b39;
}

    .email:hover {
        background-color: #c23321;
    }*/


@media(max-width:1200px) {
    .blog-sidebar-container {
        min-width: 275px;
    }

    /*.blog-meta {
        flex-direction: column;
        gap:0rem;
    }*/
}

@media(max-width:1000px) {
    .blog-sidebar-container {
        min-width: 275px;
    }

    /*.blog-meta {
        flex-direction: column;
        gap: 0rem;
    }*/

    /*.blog-container {
        flex-direction: column;
    }*/
}

@media(max-width:800px) {
    .main-container {
        margin: 0 0 155px 0;
        flex-direction: column;
    }

    .blog-sidebar-container {
        min-width: 100%;
    }
}
