/*
   Description: Styles for single post ---------------------------------------
*/

.post-featured-image {
    width: 100%;
    min-width: 100px;
    max-width: 400px;
    max-height: 400px;
    height: 100%;
}

.post-attestant-image {
    border: 10px solid transparent;
    box-shadow: 0 0 3px rgba(52, 52, 52, 0.93);
}

/* Breadcrumb navigation styles ======================================  */

.nav-breadcrumb {
    background-color: transparent;
    border-bottom: 2px solid var(--theme-hover-bg-color);
}

.nav-breadcrumb .nav-breadcrumb-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-breadcrumb-items li {
    display: inline-block;
}

.nav-breadcrumb-items li a:hover, .nav-breadcrumb-item-active > a {
    border-radius: 5px 0 0 0;
    background-color: var(--theme-hover-bg-color);
    color: var(--theme-hover-txt-color) !important;

}

.nav-breadcrumb-items li a:hover .fa:after {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.nav-breadcrumb-items li:not(:last-child) > a > .fa:after {
    position: absolute;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    top: 24%;
    font-size: 1em;
    left: 110%;
    content: "\f061";
    color:  var(--theme-body-txt-color);

}

.nav-breadcrumb-items > li > a{
    position: relative;
    display: inline-block;
    padding: 5px 8px;
    margin: 0 20px -1px 2px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none;
    color: var(--theme-body-txt-color);
    font-weight: bold;
}

/* ##Breadcrumb navigation styles ======================================  */

/* Image gallery styles ------------------------------------------------------------------------*/

.gallery-icon >  img{
    max-width: 800px !important;
    height: 300px !important;
    width: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    cursor: pointer;
}

#imageGalleryContainer {
    position: fixed;
    z-index: 200 !important;
    display: none;
    background-color: rgba(52, 52, 52, 0.93);
    width: 100% !important;
    height: 100% !important;
    left: 0;
    top: 0;
}

#imageGalleryContainer img{
    display: block;
    width: 85%;
    height: 80%;
    margin: 5% auto ;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

#btnGalleryClose, #btnGalleryPrev, #btnGalleryNext {
    position: fixed;
    z-index: 200 !important;
    color: white;
    background-color: transparent;
    cursor: pointer;
    border: none;
    font-size: 2em;
}
#btnGalleryClose{
    top: 0;
    right: 5px;
}

#btnGalleryPrev {
    top: 45%;
    left: 5px;
}

#btnGalleryNext {
    top: 45%;
    right: 5px;
}

.btn-gallery:hover, .btn-gallery:focus {
    outline: none;
    opacity: 0.6;
}

/* ## Image gallery styles ------------------------------------------------------------------------*/
