@import "custom-variables/variables";
@import "../../bootstrap-4.0.0/scss/functions";
@import "../../bootstrap-4.0.0/scss/variables";
@import "../../bootstrap-4.0.0/scss/mixins";
@import "custom/news-list";

span.IN-widget {
    position: absolute;
    opacity: 0;
    width: 19px;
    overflow: hidden;
}
.mainTitle {
    font-size: rem(36);
}

.title {
    font-size: rem(19);
}

.font-medium {
    font-size: 14px;
}

.latest {
    letter-spacing: 1px;
    color: #4d4949;
}

.readmore {
    position: relative;
    &:after {
        border: $primary 1px solid;
        content: "";
        width: 0;
        opacity: 0;
        position: absolute;
        left: 0;
        bottom: -6px;
        transition: all ease .5s;
    }
    &:hover:after {
        width: 100%;
        opacity: 1;
    }
}

.f26 {
    font-size: rem(26);
}

.separator {
    width: 35px;
    height: 2px;
    background: #878787;
}

.share {
    span a {
        color: #878787;
    }
}

.blog_categories,
.tags {
    ul li a {
        &.active {
            color: $black !important;
            .count {
                color: $primary;
            }
        }
    }
}

.archive-list-block {
    h6 {
        font-size: 15px;
        &:before {
            content: "";
            width: 10px;
            height: 2px;
            display: inline-block;
            right: 0px;
            top: 50%;
            transition: all 0.3s ease-in-out;
            transform: translateY(-50%);
            position: absolute;
            background: $black;
        }
        &:after {
            content: "";
            width: 2px;
            height: 10px;
            display: inline-block;
            right: 4px;
            top: 50%;
            position: absolute;
            transition: all 0.3s ease-in-out;
            transform: translateY(-50%) rotate(90deg);
            background: $black;
        }
        &.collapsed {
            color: $text-muted;
            &:before {
                background: $text-muted;
            }
            &:after {
                background: $text-muted;
                transform: translateY(-50%) rotate(0deg);
            }
        }
    }
}

.comment_reply {
    .comment-box {
        .img-block {
            img {
                width: 60px;
                height: 60px;
                object-fit: cover;
            }
        }
        figcaption {
            padding-left: 75px;
        }
    }
}

.recent_post {
    .img {
        height: 62px;max-width: 115px;
    }
    li:last-child {
        margin-bottom: 0 !important;
    }
}

.blog_categories ul li a .count {
    width: 25px;
    height: 23px;
    line-height: 23px;
    background-color: #dfdfdf;
    border-radius: 3px;
}

.back {
    &:before {
        content: '';
        top: 0;
        left: 0;
        border-top: 5px solid transparent;
        border-right: 5px solid $black;
        border-bottom: 5px solid transparent;
        border-left: 5px solid transparent;
        margin-right: 15px;
        display: inline-block;
    }
}

#content_comment {
    textarea {
        height: 90px;
    }
    .form-control {
        font-size: 14px;
    }
}

.subcomment {
    .content {
        margin-top: rem(25);
    }
}

.head {
    font-size: rem(24);
}

.blogTitle {
    line-height: 19px;
}

.gutter-10 {
    margin-left: -10px !important;
    margin-right: -10px !important;
    [class^="col"] {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}
.blog_view * {
    max-width: 100%;
    width: auto;
    height: auto;
}
.custom-button01{
    @include media-breakpoint-down(sm){
        width: 100%;
        padding: 10px!important;
    }
}

.newsletter-list{
    @include media-breakpoint-down(xs){
        h5{
            &.border-bottom{
                border-bottom: 0 !important;
            }
        }
    }
    .border-bottom{
        border-bottom: 1px solid #b7d6d7 !important;
    }
}



.scroll-outer{
    @include media-breakpoint-down(md) {
        overflow-x: auto;
    }
}

.gutter{
    &-22_5{
        margin-left: -22.5px;
        margin-right: -22.5px;
        @include media-breakpoint-down(md) {
            margin-left: -8px;
            margin-right: -8px;
        }
        & > [class*="col"]{
            padding-left: 22.5px;
            padding-right: 22.5px;
            @include media-breakpoint-down(md) {
                padding-left: 8px;
                padding-right: 8px;
            }
        }
    }
}

.category-img-list{
    .item{
        img{
            height: 349px;
            transform: scale(1);
            transition: all 0.5s ease-in-out;
            @include media-breakpoint-down(sm) {
                height: 300px;
            }
        }
        &:hover{
            img{
                transform: scale(1.1);
            }
            a{
                color: $dark;
            }
        }
    }
}

header {
    border-bottom: 1px solid #f2f2f2;
}

.blog_view{
    img{
        height: 349px;
        transform: scale(1);
        transition: all 0.5s ease-in-out;
        @include media-breakpoint-down(sm) {
            height: 300px;
        }
    }
    &:hover{
        img{
            transform: scale(1.1);
        }
        a{
            color: $dark;
        }
    }
}

.blog-detail-content:before{
    content: "";
    width: 100%;
    height: 60px;
    background-color: #d5edee;
    display: inline-block;
    left: 0;
    top: 0;
    position: absolute;
}