.blog-outer {
    padding: 20px 20px 5rem;
    background: #fff;
}

.blog-outer .mainh1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 20px;
}

.blog-outer .custom-field .form-wrap input {
    height: 40px;
    background-color: #E6EEF4;
    border: 0 !important;
    border-radius: 8px;
    color: #013252;
    padding: 10px;
}

.custom-field .form-wrap {border: 0;border-radius: 0;}

.blog-outer .custom-field  .form-wrap.search input {
    background-image: url(https://cdn.eyemyeye.com/mobile/msite-images/icons/search.svg);
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: calc(100% - 15px) center;
    padding-right: 35px;
}

.blog-outer .custom-field {
    margin: 0;
    position: relative;
}

.blog-outer form {
    width: 100%;
    /* width: calc(100% - 85px); */
}

.blog-top-slider .img-base {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.blog-top-slider .img-base::after {
    content: '';
    position: absolute;
    background: rgb(0 0 0 / 35%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.blog-top-slider .img-base img {
    width: 100%;
}

.above-img {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 44;
}

.above-img span {
    font-size: 10px;
    color: #FFFFFF;
    background: rgb(255 255 255 / 40%);
    padding: 4px;
    border-radius: 8px;
    display: inline-block;
    min-width: 70px;
    text-align: center;
}

.above-img span.bookmark {
    min-width: 24px;
}

.blog-top-slider .text-outer {
    margin-top: 12px;
}

.blog-top-slider .text-outer h3 {
    font-size: 18px;
    color: var(--primaryColor);
}

.blog-top-slider  .foot-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.blog-top-slider .foot-wrap .left {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-top-slider .foot-wrap p {
    margin: 0;
    font-size: 10px;
    color: #333333;
}

.blog-top-slider .foot-wrap .right {
    color: #828282;
    font-size: 10px;
    display: flex;
    align-items: center;
}

.blog-top-slider .slick-list {
    padding-right: 10%;
}

.blog-top-slider .slide-wrap{
   display: block;
   margin-right: 18px;
}

/* blog list style start */
.blog-category-list > ul {
    list-style: none;
    padding: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.blog-category-list > ul li {
    font-size: 14px;
    color: #828282;
    border: 1px solid #9F9F9F;
    border-radius: 6px;
    padding: 4px 10px;
    white-space: nowrap;
}

.all-list-result > ul {
    list-style: none;
    padding: 0;
    margin: 0 -6px;
}

.all-list-result > ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 6px;
}

.all-list-result > ul li .bc-right-text {
    width: 100%;
}

.all-list-result > ul li:hover {
    border-color: #c1c1c1;
}

.bc-right-text h4 {
    font-size: 14px;
    color: var(--primaryColor);
}

.bc-right-text .bc-top {
    display: flex;
    align-items: center;
    font-size: 10px;
    justify-content: space-between;
    color: #828282;
    margin-bottom: 12px;
}

.bc-right-text .bc-top > span {
    color: #2C2C2C;
    background: #F2F2F2;
    padding: 4px;
    border-radius: 4px;
}

.bc-img {
    width: 96px;
    min-width: 96px;
    height: 80px;
    background: #C4C4C4;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    position: relative;
}

.bc-img::after {
    content: '';
    position: absolute;
    background: rgb(0 0 0 / 25%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.bc-img img {
    width: 100%;
    object-fit: cover;
}

.blog-outer .right span.dot{
    position: relative;
    /* padding-right: 10px; */
}


.blog-outer .right span.dot::after {
    position: absolute;
    content : '';
    background: #828282;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    right: 4px;
    display: none;
}

.blog-category-list > ul li.active, .blog-category-list > ul li:hover {
    background: var(--primaryColor);
    color: #fff;
    border-color: var(--primaryColor);
}

.blog-category-list {
    border-top: 1px solid #E0E0E0;
    padding-top: 20px;
}

.blog-top-slider .foot-wrap img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    overflow: hidden;
}

/* blog list style ends */

/* blog detail style start */
.blog-detail-wrap .img-base {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.blog-detail-wrap .img-base::after {
    content: '';
    position: absolute;
    background: rgb(0 0 0 / 35%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.blog-detail-wrap .above-img {
    justify-content: flex-end;
}

.above-img span.bookmark i {
    font-size: 15px;
}

.text-review {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 12px 0;
}

.text-review .retated-text {
    font-size: 10px;
    color: #000000;
    display: inline-block;
    padding: 6px;
    background: #F2F2F2;
    border-radius: 6px;
}

.text-review .right-text span {
    font-size: 10px;
    color: #828282;
    padding-left: 5px;
}

.text-outer h3 {
    font-size: 20px;
    color: var(--primaryColor);
    font-weight: 600;
}

.blog-detail-wrap .foot-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 12px 0;
}

.blog-detail-wrap .foot-wrap .left {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-detail-wrap .foot-wrap .left p {
    margin: 0;
    font-size: 10px;
    color: #333333;
}

.blog-detail-wrap .foot-wrap .left img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    overflow: hidden;
}

.blog-detail-wrap .description p, .blog-detail-wrap .description li {
    font-size: 14px;
    color: #2C2C2C;
}

span.share-wrap {
    width: 24px;
    height: 24px;
    background: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    transition: .2s ease;
}

span.share-wrap:hover {
    background: var(--primaryColor);
}

span.share-wrap:hover img {
    filter: brightness(0) invert(1);
}

.fixed-call-wrap {
    bottom: 4rem;
}

.search-list li {
    list-style: none;
    font-size: 12px;
    border-bottom: 1px solid #efefef;
    padding: 5px 10px;
    display: flex;
    align-items: flex-start;
}

.search-list li img {
    width: 15px;
    min-width: 15px;
    margin-right: 10px;
}

.search-list {
    padding: 0;
    background: #fff;
    box-shadow: 1px 7px 10px 0px rgb(0 0 0 / 6%);
    position: absolute;
    z-index: 44;
    width: 100%;
    max-height: 450px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
}

.search-list.active_list {
    visibility: visible;
    opacity: 1;
}

.custom-field .form-wrap.search input:-internal-autofill-selected {
    box-shadow: unset !important;
}

/* blog detail style ends */

/* blog- bookmarks page style start */

.bookmark-page .all-list-result > ul li {
    border-color: #ebebeb;
    margin-bottom: 10px;
}

.bookmark-page .all-list-result > ul li:hover {
    background: #f9f9f9;
}

.bookmark-page .all-list-result {
    padding: 0 6px;
}

.bookmark-page span.bookmark {
    margin-left: 5px;
}

.bookmark-page span.bookmark i {
    font-size: 12px;
    color: var(--primaryColor);
}
/* blog- bookmarks page style ends */

.blog-detail-wrap .description p img {
    height: auto !important;
}

.blog-detail-wrap .description p:empty {
    display: none;
}