﻿/*body{
    overflow: hidden!important;
}*/
.overflow-body{
    overflow: scroll!important;
}


.top-span-blog-menu{
    color: #fff;
    font-size: 15px;
    text-decoration:none;
    text-transform: capitalize;
}

.total-comments-span{
    font-size: 16px;
    color: #000;
    opacity: .8;
}

.blog-comment-wrapper {
    width: 100%;
    max-width: 960px;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    border-top: 2px solid #DCDCDC;
    margin-top: 15px;
}

.blog-comment-container {
   /* border-bottom: 1px solid #808080;*/
   /* padding: 10px;*/
}

.blog-comment-container:last-child{
    border: unset;
}

.blog-comment-container:first-child{
    margin-top: 15px;
}

.reply-textArea-wrapper{
    width:100%;
    display:flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
    position: relative;
    transition: all .3s ease;
}

.cancel-reply{
    position: absolute;
    top: 0;
    right: 5px;
    font-size: 12px;
    color: red;
    font-weight: 500;
    cursor: pointer;
}



.reply-textArea-wrapper small {
    font-size: 12px !important;
    color: #696969;
}


.blogs-container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 1fr;
}

.blogs-header-container {
    position: relative;
    display: grid;
    width: 100%;
    gap: 15px;
    height: 275px;
    /* overflow: hidden; */
    color: #fff;
    padding: 10px 25px;
    transition: height 0.3s ease, opacity 0.3s ease;
}

.blog-individual-header{
    height: 115px!important;
}

.blogs-header-container::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../../images/wallpaper01.jpg);
    background-color: rgba(0, 0, 0, 0.7);
    background-blend-mode: overlay;
    z-index: 1;
    background-size: cover;
    background-position: center;
}

.blog-header-filter-container {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-rows: 55px 1fr;
    gap: 25px;
    align-items: center;
    position: absolute;
    z-index: 2;
    top: 50%;

}

.blog-header-text-cont {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.blog-header-text-cont h1,p{
    font-size: 28px;
    color: #fff;
    font-weight: 500;
}

.blog-item-main-content p{
    font-size: 13px;
    color: #808080;
}

.blog-header-text-cont h1 b, p b{
    color: #FFB606!important;
    font-weight: 500!important;
    font-size: 28px!important;
}

.header-small-text{
    color: #fff;
    font-size: 13px;

}

.search-blog-container {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.search-blog-filter {
    width:100%;
    max-width: 750px;
    background-color: rgba(0,0,0,0.7);
    border: 1px solid #696969;
    height: 35px;
    display: grid;
    grid-template-columns: 1fr 150px;
    border-radius: 5px;
}

.search-blog-filter input{
    border:none;
    outline:none;
    padding: 5px;
    padding-left: 25px;
    color: #696969;
    background-color: transparent;
}

.search-blog-filter input::placeholder{
    color: #696969;
}

.search-blog-filter .search-blog-text{
    width:100%;
    height:100%;
    display:flex;
    background-color: #696969;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
   
}

.search-blog-text span {
    font-size: 12px;
    color: #fff;
}

.search-blog-text svg {
    height: 14px;
    margin-right: 15px;
    fill: #fff;
}

.blog-content-wrapper{
    width:100%;
    height:calc(100vh - 275px);
    overflow-y:scroll;
    padding-top: 25px;
}

.blog-content-layout{
    width:100%;
    max-width: 960px;
    height:100%;
    display:flex;
    flex-direction:column;
    gap: 25px;
    margin-left: auto;
    margin-right:auto;
}

.blog-card-container {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-rows: 65px 1fr;
    gap: 25px;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 1px groove #DCDCDC;
    position: relative;
}

.blog-view-all-btn{
    position: absolute;
    top: 5px;
    right: 5px;
    border: 1px solid #696969;
    background-color: #fff;
    padding: 5px 15px;
    color: #000;
    font-size: 11px;
    display:flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.blog-content-text{
    position: relative;
    width:100%;
    height: 100%;
    display:flex;
    flex-direction:column;
    text-align:center;
    gap: 10px;
}

.blog-content-text h2{
    font-size: 25px;
    color: #000;
    opacity: .8;
    font-weight: 600;
}

.blog-content-text small{
    font-size: 13px;
    color: #696969;
}

.blog-card-content{
    width:100%;
    height:100%;
    display:flex;
    flex-direction: row;
    gap: 15px;
}

.no-blog{
    width:100%;
    height:355px;
    display:flex;
    flex-direction:column;
    gap:10px;
    align-items: center;
    justify-content: center;
}

.no-blog img{
    width: 85px;
    height: 85px;
}

.no-blog span {
    font-size: 13px;
    color: #808080
}

.blog-card-content-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.blog-card-wrapper {
    width: 100%;
    height: 100%;
    display: grid;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #DCDCDC;
}

.blog-card-normal-wrapper {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 215px 1fr;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #DCDCDC;
}

.blog-card-normal-wrapper .blog-featured-detail-cont{
    padding: 20px!important;
}

.blog-card-normal-wrapper .blog-brief-description {
   
    -webkit-line-clamp: 3!important;

}

.blog-img-container{
    width:100%;
    height:100%;
    overflow: hidden;
}

.blog-featured-card{
    height: 285px!important;
}



.blog-img-container img{
    width:100%;
    height:100%;
    object-fit: cover;
  /*  border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;*/
}

.blog-featured-detail-cont{
    width:100%;
    height:100%;
    display:grid;
    grid-template-rows: 1fr 55px;
    gap: 15px;
    padding: 10px;
}
.blog-featured-main-details{
    display:grid;
    grid-template-rows: 1fr auto;
    gap: 25px;
    align-items: center;
    align-self: end;
}

.blog-featured-normal-detail-cont {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 1fr 55px;
    gap: 15px;
    padding: 10px;
}

.blog-featured-main-normal-details {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 25px;
    align-items: center;
    align-self: end;
    height:100%;
    width:100%;
}

.blog-title-a{
    text-decoration:none;
    color: #000;
    opacity: .8;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 0.9rem;
    cursor: pointer;
}

.blog-brief-description {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    color: #696969;
}

.blog-footer-cont{
    display:flex;
    align-items: end;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 2px solid #DCDCDC;
}

.blog-author-time{
    display:flex;
    flex-direction:column;
  /*  align-items: center;*/
}

.blog-author {
    text-decoration:none;
    color: #FFB606;
    font-weight: 600;
    font-size: 11px;
}

.blog-time{
    color: #696969;
    opacity: .8;
    font-size: 10px;
}

.total-views{
    display:flex;
    gap: 10px;
    font-size: 10px;
    align-items: center;
    color: #696969;
    font-weight: 500;
}

.blog-item-views {
    display: flex;
    gap: 10px;
    align-items: center;
}

.total-views svg {
    height: 13px;
    fill: #FFB606;
}

.blog-item-views svg{
    height: 18px!important;
    fill: #000!important;
    margin-bottom: 1px;
}

.blog-item-views img{
    height: 23px;
}

.blog-item-views span {
    font-size: 15px;
    color: #808080;
    font-weight: 500;
}

/*<!--individual blog style!-->*/

.blog-item-container{
    width:100%;
    height:100%;
    display:flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 15px;
    /*overflow-y: scroll;*/
    position: relative;
}

.blog-item-btn-cont {
    position: fixed;
    top: 51px;
    height: 55px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    padding: 0 15px;
    gap: 15px;
}

.publish-blog-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    width: 155px;
    font-size: 13px;
    border: 2px solid #fff;
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    gap: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.edit-blog-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    width: 155px;
    font-size: 13px;
    border: 2px solid #DAA520;
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    gap: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.delete-blog-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    width: 155px;
    font-size: 13px;
    border: 2px solid #8B0000;
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    gap: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.edit-blog-btn svg{
    height: 15px;
    fill: #fff;
}

.publish-blog-btn svg{
    height: 15px;
    fill: #fff;
}

.delete-blog-btn svg {
    height: 15px;
    fill: #fff;
}

.blog-item-container h1,h2,h3,h4,h5,h6,span,small,b,strong{
    color: #000 ;
    font-size: 15px;
}

.top-details-layout h1{
    font-size: 26px;
}

.blog-item-container p {
    color: #000;
    font-size: 13px;
}

.blog-item-container p{
    margin: 10px 0;
}

.blog-item-container strong{
    font-size: 13px!important;
    color: #000!important;
    opacity: .8;
}

.blog-item-container a{
    color: #4169E1;
    cursor: pointer;
    font-size: 14px;
}


.blog-item-container ul, .blog-item-container ol{
    display:flex;
    flex-direction: column;
    padding-left: 25px;
    gap: 10px;
    margin: 25px 0;
}

.blog-item-container ul li{
    color: #000;
    font-weight: 500;
}

.blog-item-container a{
    color: #000;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.blog-item-container a:hover{
    color: #DAA520;
    transition: color 0.5s ease;
}

.blog-item-top-section{
    background-color: #DCDCDC;
    width:100%;
    height: 100%;

  
}

.top-section-layout{
    width: 100%;
    max-width: 960px;
    height: 100%;
    display:grid;
    gap: 28px;
    margin-left: auto;
    margin-right: auto;
    padding: 35px 0;
}

.top-img-wrapper{
    display:flex;
    align-items: center
}

.top-img-container{
    width: 350px;
    height:250px;
    overflow: hidden;
    border-radius: 15px;
}

.top-img-container img{
    width:100%;
    height:100%;
    object-fit: cover;
}

.top-details-layout{
    display:grid;
    grid-template-rows: 1fr 85px;
    align-items: center;
}

.top-blog-title-cont{
    width:100%;
    height:100%;
    display:grid;
    position: relative;

}

.top-title-share-container{
    display:flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.top-title-share-container i{
    display:flex;
    align-items: center;
    justify-content: center;
}

.top-title-share-container i svg{
    height: 30px;
    fill: #696969;
}

.top-title-share-container i svg:hover{
    fill: #FFB606;
    transition: fill .5s ease-out;
}

.top-title-share-container h1 {
    font-size: 30px;
    color: #000;
    font-weight: 500;
    align-self: start;
}

.top-blog-title-cont h2{
    font-size: 16px;
    color: #000;
    font-weight: 500;
    opacity: .6;
}

.blog-tags{
    background-color: #FFB606;
    width: 185px;
    padding: 8px 10px;
   color: #000!important;
   font-size: 12px!important;
   border-radius: 35px;
   display:flex;
   align-items: center;
   justify-content: center;
  font-weight: 500!important;
  position: absolute;
  bottom: 0;
  right: 0;
}

.top-footer-details{
    display:grid;
    grid-template-columns: 1fr 150px;
    align-items:center;
    border-top: 1px groove rgba(0,0,0,0.2);
    padding: 10px 0;
    width:100%;
}

.top-author-time-layout{
    display:flex;
    flex-direction: column;
    gap: 10px;
}

.top-author-cont{
    display:flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}

.top-author-cont a{
    text-decoration: none;
    color: #DAA520;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 3px;
    text-transform: capitalize;
}

.top-author-time{
    display:flex;
    align-items: center;
    gap: 10px;
    color: #696969;
    font-size: 11px;
}

.top-author-time svg{
    height: 13px;
    fill: #FFB606;
}

.top-author-social-links{
     display:flex;
     flex-direction: column;
     gap: 10px;
}

.top-links-cont{
    display:flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

.top-links-cont svg{
    height: 15px;
    fill: #000;
}

.top-links-date{
    font-size: 10px;
    color: #696969;
    display:flex;
    justify-content: end;
}

.blog-item-main-content{
    width:100%;
    height:100%;
    max-width: 960px;
    display:flex;
    flex-direction: column;
    gap: 30px;
    margin-left: auto;
    margin-right: auto;
}

 .blog-item-main-content div {
        font-size: 13px;
        color: #696969;
        text-align: justify;
  /*      text-transform: capitalize;*/
        line-height: 1.3;
  

    }   

.blog-item-with-image {
   width: 100%;
   height: auto;
}



.blog-item-width-image-wrapper {
    float: left;
    margin: 0 1rem 1rem 0;
    width: 350px;
    height: 275px;
    overflow: hidden;
    border-radius: 10px;
    margin-right: 10px;
}

.blog-item-width-image-wrapper img{
    width:100%;
    height:100%;
    object-fit: cover;
}

.blog-item-width-image-wrapper video{
    width:100%;
    height:100%;
}

.blog-item-main-content h2{
    font-size: 32px;
    font-weight: 500;
    color: #000;
    opacity: .8;
    text-transform: capitalize;
    margin: 10px 0;
}


/*blog new*/




.create-new-blog-content{
    width:100%;
    height:100%;
    position: relative;
}

.create-blog-right-left-cont {
    width: calc((100% - 1200px) / 2);
    height: 750px;
    overflow-y:hidden;
    position: fixed;
    top: 50px;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding-top: 28px;
}

.create-blog-right-menu {
    width: 300px;
    height: 100%;
    display:grid;
    grid-template-rows: 45px 85px 85px 350px 85px;
    background-color: #fff;
    align-items: center;
    padding: 10px;
    margin-left: 25px;
    border:1px solid #DCDCDC;
    overflow-y: scroll;
    gap: 15px;
}

.create-edit-blog-right-menu {
    grid-template-rows: 45px 125px 125px 350px 85px!important;
}

.right-menu-label{
    font-size: 15px!important;
}

.creator-blog-entries-container {
    width: calc((100% - 1200px) / 2);
    height: 750px;
    position: fixed;
    top: 50px;
    right: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding-top: 28px;
}

.creator-blog-entries-list {
    width: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    align-items: center;
    padding: 10px;
    gap: 10px;
    margin-left: 25px;
    border: 1px solid #DCDCDC;
    overflow-y: scroll;
}

.created-blog-item{
    width:100%;
    display:grid;
    grid-template-columns: 65px 1fr;
    align-items: center;
    background-color: #DCDCDC;
    padding:10px;
    border-radius: 10px;
    cursor: pointer;
}

.created-blog-img-container{
    width:100%;
    height:100%;
    overflow:hidden;
 

}

.created-blog-img-container img{
    width:55px;
    height:55px;
    object-fit:cover;
       border-radius: 10px;
}

.created-blog-detail{
    display:flex;
    flex-direction: column;
    /*gap: 10px;*/
}

.created-blog-detail h3{
    font-size: 13px;
    font-weight:600;
}

.created-blog-detail small{
    font-size: 10px;
    color:#000;
    opacity: .9
}

.created-blog-status{
    font-size: 11px;
    color: #fff;
    font-weight: 500;
}

.publish{
    color:#008000!important;
}

.draft{
    color:#B22222!important;
}



.create-new-blog-layout{
    width:100%;
    max-width: 960px;
    height:100%;
    margin-left: auto;
    margin-right: auto;
    display:grid;
    grid-template-rows: 55px 1fr;
    gap: 25px;
    align-items: center;
    
}

.create-new-blog-layout h2{
    font-size: 18px;
    color: #000;
    opacity: .8;
    font-weight: 500;
    align-self: end;
    /*text-align: center;*/
    width:100%;
    border-bottom:2px solid #DCDCDC;
    padding-bottom: 8px;
}

.create-new-blog-info{
    width:100%;
    height:100%;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 25px;
}

.create-new-blog-add-img {
    width: 100%;
    height: 250px;
    border: 1px solid #DCDCDC;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    overflow: hidden;
   /* background-color: #DCDCDC;*/
}

.create-new-blog-add-img svg{
    height: 150px;
    fill: #DCDCDC;
}

.create-new-blog-add-img img{
    height:100%;
    width:100%;
    object-fit: cover;
}

.create-new-blog-add-img img[src$=".png"] {
    height: 150px;
    width: 150px;
}

.create-new-blog-form-container{
    display:flex;
    flex-direction: column;
    gap: 15px;
    width:100%;
    height:100%;
}

.create-new-blog-input-cont{
    width:100%;
    height:auto;
    display:flex;
    flex-direction: column;
    gap:8px;
    position: relative;
}

.edit-blog-wrapper{
    width:100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    bottom: 5px;
    border-bottom: 2px solid #DCDCDC;
}

.edit-blog-wrapper span{
    font-size: 14px!important;
    color: #000!important;
    font-weight: 500!important;
}

.edit-button {
    font-size: 12px;
    color: #fff!important;
    padding: 5px 10px;
    background-color: #008000;
    border:none;
    border-radius: 5px;
    margin-bottom: 5px;
}

.done-button {
    font-size: 12px;
    color: #fff !important;
    padding: 5px 10px;
    background-color: darkred;
    border: none;
    border-radius: 5px;
    margin-bottom: 5px;
}

.create-new-blog-input-cont label{
    font-size: 20px;
    color: #000;
    font-weight:600;
    opacity:.8;
    position: relative;
}

.edit-blog-container{
    width: 35px;
    height: 35px;
    position: absolute;
    right: 0;
    top: -5px;
    display:flex;
    align-items: center;
    justify-content: center;
    background-color: #808080;
    border-radius: 50%;
}

.cancel-blog-container {
    width: 35px;
    height: 35px;
    position: absolute;
    right: 10px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: darkred;
    border-radius: 50%;
    z-index: 2;
}


.edit-blog-container svg, .cancel-blog-container svg{
    height: 18px;
    fill: #fff;
}

.create-new-blog-input-cont input{
    border:1px solid #DCDCDC;
    outline:none;
    padding:5px 10px;
    color: #808080;
}

.create-new-blog-input-cont textarea{
    width:100%;
    height: 150px;
    resize: none;
     border:1px solid #DCDCDC;
    outline:none;
    padding:5px 10px;
    color: #808080;
    font-size:22px;
}

.display-title-cont {
    width: 100%;
    height: 150px;
    resize: none;
    border: 1px solid #DCDCDC;
    outline: none;
    padding: 5px 10px;
    color: #808080;
    font-size: 22px;
    overflow: hidden;
    display: none;
    background-color: #fff;
}

.create-blog-dropdown{
    width:100%;
    display:grid;
    grid-template-columns: 1fr 25px;
    align-items: center;
    border:1px solid #DCDCDC;
    position: relative;
}

.create-blog-dropdown input{
    border:none!important;
}

.create-blog-dropdown svg{
    height: 18px;
    fill: #808080;
}

.create-new-blog-input-cont-wrapper{
    display:flex;
    gap: 10px;
}

.create-new-blog-wrapper-content{
    width:100%;
    height:100%;
    display:grid;
   /* grid-template-rows: 35px 1fr;*/
    align-items: center;
}

.creator-new-blog-header{
    width:100%;
    height:100%;
    background-color: #696969;
    display:flex;
    gap: 15px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 0 15px;
}

.creator-new-html-element{
    display:flex;
    align-items: center;
    justify-content: center;

}

.htmlElem-active svg{
    fill:#FFB606!important;
}

.creator-new-html-element svg{
    height: 10px;
    fill: #fff;
}

.create-new-blog-textarea-container{
    width:100%;
    height:100%;
    /*overflow-y:scroll;*/
    /*border:1px solid #DCDCDC;*/
}

.create-new-blog-textarea-container textarea{
    width:100%;
    height:100%;
    padding: 10px;
    color: #808080;
    border:none;
    outline:none;
}

.textarea-blog-editor {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    padding: 10px;
    color: #808080;
    font-size: 14px;
}

.create-new-blog-btn-container {
    display:grid;
    grid-template-rows: 1fr 1fr;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 10px;
}

.publish-blog{
    width: 100%;
    height:35px;
    text-align: center;
    color: #fff;
    background-color: #FFB606;
    border-radius:5px;
    border:none;
    font-size: 13px;
}

.draft-blog {
    width: 100%;
    height: 35px;
    text-align: center;
    color: #fff;
    background-color: #808080;
    border-radius: 5px;
    border: none;
    font-size: 13px;
}

.sidebar-mobile-btn-container {
    display: none;
}
/*media query*/
/*desktop view*/
@media only screen and (min-width: 1025px) {
    .top-homepae-header-blog {
        background-color: unset !important;
        position: absolute!important;
        top: 55px!important;
    }

    .homepage-login-menu-container a svg{
        display:none;
    }

    .blog-card-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .top-section-layout {
        grid-template-columns: auto 1fr;
    }

    .blog-item-with-image {
        grid-template-columns: 300px 1fr;
    }

    .layout1-blog-first-cont {
        grid-template-columns: auto 1fr;
    }

    .layout1-header-main-content {
        grid-template-columns: 300px 1fr;
    }

    .layout1-close-btn{
        display:none;
    }

    .create-new-blog-section2-div {
        grid-template-columns: auto 1fr;
    }

    .top-blog-title-cont {
        grid-template-rows: auto 35px;
    }

}

/*mobile view*/
@media only screen and (max-width: 767px) {
    .homepage-login-menu-container{
        justify-content: center!important;
    }

    .homepage-top-icon{
        width:100%;
        gap: 15px!important;
    }

    .homepage-login-container-absolute{
        height: 50px!important;
        background-color: rgba(0,0,0,0.7)!important;
    }

    .homepage-login-menu-container a{
        font-size: 13px!important;
        display: flex;
        gap: 8px;
    }

    .homepage-login-menu-container a svg{
        fill: #fff;
        height: 19px;
    }

    .header-small-text {
        text-align: center;
        color: rgba(255,255,255,0.6) !important;
        font-size: 12px!important;
    }

    .blog-header-filter-container {
        grid-template-rows: auto 1fr !important;
        top: 39% !important;
        padding: 0 22px !important;
        gap: 15px;
    }

    .blog-header-text-cont {
        justify-content: center;
        align-items: center;
    }

    .blog-header-text-cont h1{
        font-size: 29px!important;
    }

    .search-blog-filter{
        height: 45px!important;
        border-radius: 10px!important;
        grid-template-columns: 1fr 75px;
    }

    .search-blog-filter input{
       padding-left: 10px!important;
    }

    .search-blog-text {
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        border: 1px solid #DCDCDC;
    }

    .search-blog-text svg{
        height: 20px!important;
        margin-left: 5px;
    }

    .search-blog-text span{
        display:none;
    }

    .blog-card-container{
        grid-template-rows: 85px 1fr!important;
        padding-bottom: 55px!important;
    }

    .blog-content-text h2{
        font-weight: bold!important;
    }

    .blog-content-text small{
        padding: 0 35px;
    }

    .blog-card-content{
        flex-direction: column!important;
        height: auto!important;
       /* padding: 0 15px;*/
    }

    .blog-card-wrapper{
        grid-template-rows: 1fr 1fr;
    }

    .blog-featured-card{
        height: unset!important;
    }

    .blog-title-a{
        font-size: 18px!important;
        font-weight: bold!important;
        text-align: center;
    }

    .blog-brief-description{
        font-size: 13px!important;
        padding: 0 10px!important;
        text-align: justify;
        color: #000!important;
    }

    .blog-footer-cont{
        padding-top: 8px!important;
        align-self: start!important;
    }

    .blog-card-content-grid{
        display: grid!important;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }



    .blog-card-content > :nth-child(3) {
        display: none !important;
    }

    .blog-card-normal-wrapper{
        height: auto!important;
        gap: 10px!important;
    }

    .blog-card-normal-wrapper .blog-featured-detail-cont {
        padding: 0 !important;
    }

    .blog-featured-main-normal-details{
        gap: 5px!important;
    }

    .blog-featured-main-normal-details .blog-title-a{
        font-size: 12px!important;
        text-align: unset!important;
        align-self: center;
        justify-self: center;
    }

    .blog-featured-main-normal-details .blog-brief-description{
        text-align: center!important;
        font-size: 11px!important;
    }

    .blog-featured-normal-detail-cont{
        padding: 0 5px!important;
    }

    .total-views{
        align-self: start;
    }

    .blog-view-all-btn{
        top:unset!important;
        right:37%!important;
        bottom: 10px;
        border:2px solid #DCDCDC!important;
        padding: 5px 30px!important;
        font-weight: 600;
    }


    .blog-content-wrapper {
        padding: 10px!important;
        padding-top: 20px!important;
    }

    /*individual blog*/

    .blog-item-container {
        grid-template-rows: auto 1fr !important;
    }

    .blog-individual-header {
        height: 165px !important;
    }

    .blog-item-top-section{
        height: auto!important;
    }

    .blog-individual-header .blog-header-filter-container {
        top: 65% !important;
    }

    .top-section-layout {
        height:auto!important;
        grid-template-rows: 1fr auto;
        padding: 15px;
        gap: 15px!important;
    }

    .top-img-container{
        width:100%!important;
    }

    .top-details-layout{
        grid-template-rows: 1fr auto;
    }

    .top-details-layout h1{
        font-size: 25px!important;
        opacity: .8;
        font-weight: 600;
    }

    .top-author-time-layout{
        gap: 0!important;
    }

    .top-footer-details{
        padding: 10px;
    }

    .blog-item-main-content{
        padding: 25px!important;
        padding-top: 0!important;

    }

    .blog-item-main-content h2{
        font-weight: 600;
        font-size: 26px!important;
    }

    .shrink-header {
        height: 175px !important;
    }

    .shrink-header .blog-header-filter-container{
        top: 65%!important;
    }

    .hide-div {
        display: none !important;
    }

    .blog-content-wrapper {
        height: calc(100vh - 200px)!important;
    }

    .blog-item-with-image {
        grid-template-rows: 300px 1fr;
    }

    .history-container {
        display:none!important;
    }

    .free-template-container{
        grid-template-columns: repeat(2, 1fr)!important;
    }

    .akonini-template-container {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .free-template-img-cont{
        width:100%!important;
    }

    .akonini-template-img-cont{
        width: 100%!important;
    }

    .add-newblog-template-layout{
        grid-template-rows: auto auto auto!important;
    }

    .add-newblog-template-header{
        grid-template-rows: 1fr auto!important;
    }

    .suggested-template {
        flex-direction: column;
        gap: 10px !important;
    }

    .layout-wrapper {
      padding-top: 0!important;
    }

    .create-blog-right-left-cont {
      width: 100%;
      z-index: 889!important;
      background-color: #fff;
      padding: 15px!important;
      height:100%!important;
      padding-top: 30px!important;
      transition: all .5s ease;
    }

    .creator-blog-entries-container {
        width: 100%;
        z-index: 889 !important;
        background-color: #fff;
        padding: 15px !important;
        height: 100% !important;
        padding-top: 30px !important;
        transition: all .5s ease;
    }

   /* .creator-blog-entries-container .layout1-close-btn{
        right:unset!important;
        left: 0;
    }*/

    .creator-blog-entries-list{
        width:100%!important;
        border:none!important;
        margin-left:0!important;
        padding:0!important;
        padding-top: 5px!important;
        height: 95%!important;
    }

    .layout1-container-layout {
        height: 100% !important;
    }

    .create-blog-right-menu {
        border: none !important;
        width: 100% !important;
        margin-left: 0 !important;
        /*grid-template-rows: 45px 85px 85px 355px 85px!important;*/
        gap: 10px!important;
    }

    .layout1-close-btn{
        position: absolute;
        height: 35px;
        width: 35px;
        top: 0; 
        right: 0;
        font-size: 30px;
        font-weight: 600;
        background-color: #fff;
        display:flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
    }

    .layout1-blog-first-cont {
        grid-template-rows: auto 1fr;
    }

    .layout1-blog-first-cont-blog-img {
        width:100%!important;
    }

    .layout1-blog-content{
        padding: 0 10px!important;
    }

    .layout1-header{
        height: 85px!important;
    }

    .layout1-header-main-content {
        grid-template-rows: 1fr;
        position: relative !important;
        height:100%!important;
        padding: 10px 0;
    }

    .menu-header-container{
        position: absolute;
        top:0;
        justify-content: space-evenly!important;
        width:100%;
        background-color: rgba(0,0,0,0.7);
        padding: 5px 0;
    }

    .website-logo {
        justify-content: center!important;
        align-items: end!important;
    }

    .hide{
        display:none!important;
    }

    .sidebar-mobile-btn-container {
        position: fixed;
        width: 55px;
        height: auto;
        bottom: 25px;
        right: 10px;
        border-radius: 5px;
        z-index: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .tools-absolute-btn {
        width: 55px;
        height: 55px;
        background-color: rgba(128, 128, 128, 0.8);
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .history-absolute-btn {
        width: 55px;
        height: 55px;
        background-color: rgba(218, 165, 32, 0.8);
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tools-absolute-btn svg, .history-absolute-btn svg{
        height: 25px;
        fill: #fff;
    }

    .create-new-blog-section2-div {
        grid-template-rows: auto 1fr;
    }

    .top-blog-title-cont{
        height: auto!important;
        grid-template-rows: auto 35px 40px;
    }

    .blog-tags {
        bottom: 10px;
        right: unset!important;
    }

    .top-title-share-container i {
        display: block;
        align-self: end;
        justify-self: end;
    }

   
}



/*ipdad view*/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  
}