/*================================================
Em Blog Area CSS
=================================================*/
.em-blog-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.em-blog-search-box {
  background: #EEEEEE;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 40px;
}
.em-blog-search-box .em-categories-search {
  max-width: 300px;
  position: relative;
}
.em-blog-search-box .em-categories-search .form-control {
  background-color: var(--white-color);
  display: inline-block;
  height: 40px;
  border-radius: 5px;
  color: #656262;
  font-weight: 500;
  font-size: 14px;
  box-shadow: unset;
  border: none;
  padding: 10px 40px 10px 20px;
  transition: var(--transition);
}
.em-blog-search-box .em-categories-search .form-control::-moz-placeholder {
  color: #656262;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.em-blog-search-box .em-categories-search .form-control::placeholder {
  color: #656262;
  transition: var(--transition);
}
.em-blog-search-box .em-categories-search .form-control:focus::-moz-placeholder {
  color: transparent;
}
.em-blog-search-box .em-categories-search .form-control:focus::placeholder {
  color: transparent;
}
.em-blog-search-box .em-categories-search button {
  border: none;
  color: var(--black-color);
  font-size: 18px;
  position: absolute;
  right: 10px;
  top: 5px;
  background-color: transparent;
}
.em-blog-search-box .em-categories-select {
  max-width: 600px;
  margin-left: auto;
}
.em-blog-search-box .em-categories-select .form-group .form-select {
  background-color: var(--white-color);
  display: inline-block;
  height: 40px;
  border-radius: 5px;
  color: #656262;
  font-weight: 500;
  font-size: 14px;
  box-shadow: unset;
  border: none;
  padding: 10px 20px;
}
.em-blog-search-box .em-categories-select.right {
  position: relative;
  padding-right: 105px;
}
.em-blog-search-box .em-categories-select.right .filters-btn {
  position: absolute;
  right: 15px;
  top: 8px;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  color: #656262;
  transition: var(--transition);
}
.em-blog-search-box .em-categories-select.right .filters-btn i {
  font-size: 18px;
  color: #292D32;
  margin-left: 10px;
  transition: var(--transition);
}
.em-blog-search-box .em-categories-select.right .filters-btn:hover {
  color: var(--main-color);
}
.em-blog-search-box .em-categories-select.right .filters-btn:hover i {
  color: var(--main-color);
}

.em-blog-card {
  margin-bottom: 25px;
}
.em-blog-card .post-image {
  overflow: hidden;
  position: relative;
}
.em-blog-card .post-image::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(134.17deg, rgba(215, 109, 120, 0.8) 1.41%, rgba(72, 46, 123, 0.8) 100%);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.em-blog-card .post-content {
  margin-top: 20px;
  position: relative;
}
.em-blog-card .post-content .meta {
  padding-left: 0;
  margin-bottom: 12px;
  align-items: center;
}
.em-blog-card .post-content .meta li {
  list-style-type: none;
  font-size: 12px;
  font-weight: 500;
  color: var(--main-color);
}
.em-blog-card .post-content .meta li a {
  background: #EBEBEB;
  border-radius: 2px;
  padding: 8px 10px;
  color: #5F5F5F;
  display: inline-block;
}
.em-blog-card .post-content .meta li a:hover {
  background-color: var(--main-color);
  color: var(--white-color);
}
.em-blog-card .post-content h3 {
  font-weight: 500;
  font-size: var(--font-size);
  line-height: 1.5;
  margin-bottom: 10px;
}
.em-blog-card .post-content h3 a {
  color: #161414;
}
.em-blog-card .post-content h3 a:hover {
  color: var(--main-color);
}
.em-blog-card .post-content p {
  color: #757575;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 0;
  transition: var(--transition);
}
.em-blog-card .post-content .blog-btn {
  font-weight: 700;
  font-size: 14px;
  color: var(--optional-color);
  position: absolute;
  left: 0;
  bottom: 25px;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.em-blog-card:hover .post-image::before {
  opacity: 1;
  visibility: visible;
}
.em-blog-card:hover .post-content p {
  opacity: 0;
  visibility: hidden;
}
.em-blog-card:hover .post-content .blog-btn {
  opacity: 1;
  visibility: visible;
}
.em-blog-card.list-view .post-content {
  margin-top: 0;
  padding-left: 10px;
}
.em-blog-card.list-view .post-content .meta li {
  display: block;
  margin-bottom: 15px;
}
.em-blog-card.list-view .post-content .meta li:last-child {
  margin-bottom: 0;
}
.em-blog-card.list-view .post-content h3 {
  font-size: 20px;
}
.em-blog-card.list-view .post-content p {
  opacity: 1;
  visibility: visible;
}
.em-blog-card.list-view .post-content .info {
  margin-top: 15px;
}
.em-blog-card.list-view .post-content .info .title {
  margin-left: 10px;
}
.em-blog-card.list-view .post-content .info .title span {
  color: #757575;
  font-weight: 300;
  font-size: 14px;
}
.em-blog-card.list-view .post-content .info .title span a {
  font-weight: 500;
  font-size: 14px;
  color: #4B4B4B;
}
.em-blog-card.list-view .post-content .info .title span a:hover {
  color: var(--main-color);
}

/*================================================
Em Blog Widget Area CSS
=================================================*/
.em-blog-widget-area .collapse-widget {
  margin-bottom: 40px;
}
.em-blog-widget-area .collapse-widget:last-child {
  margin-bottom: 0;
}
.em-blog-widget-area .collapse-widget .collapse-widget-title {
  margin-bottom: 20px;
  padding-bottom: 15px;
  position: relative;
  font-size: 18px;
  border-bottom: 1px solid #EDE3E3;
  cursor: pointer;
}
.em-blog-widget-area .collapse-widget .collapse-widget-title::before {
  position: absolute;
  content: "\ea4e";
  right: 0;
  top: 1.5px;
  font-family: remixicon;
  color: #656262;
  transition: var(--transition);
}
.em-blog-widget-area .collapse-widget .collapse-widget-title.active::before {
  content: "\ea78";
}
.em-blog-widget-area .widget_categories .list {
  padding-left: 0;
  margin-bottom: 0;
}
.em-blog-widget-area .widget_categories .list li {
  list-style-type: none;
  margin-bottom: 20px;
}
.em-blog-widget-area .widget_categories .list li:last-child {
  margin-bottom: 0;
}
.em-blog-widget-area .widget_categories .list li a {
  font-weight: 500;
  font-size: 14px;
  color: #656262;
}
.em-blog-widget-area .widget_categories .list li a span {
  color: #AEAEAE;
}
.em-blog-widget-area .widget_categories .list li a:hover {
  color: var(--main-color);
}
.em-blog-widget-area .widget_post {
  position: relative;
  overflow: hidden;
}
.em-blog-widget-area .widget_post .item {
  overflow: hidden;
  margin-bottom: 25px;
}
.em-blog-widget-area .widget_post .item:last-child {
  margin-bottom: 0;
}
.em-blog-widget-area .widget_post .item .thumb {
  float: left;
  width: 70px;
  height: 80px;
  overflow: hidden;
  display: block;
  position: relative;
  margin-right: 20px;
  z-index: 1;
}
.em-blog-widget-area .widget_post .item .thumb .fullimage {
  width: 70px;
  height: 80px;
  display: inline-block;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}
.em-blog-widget-area .widget_post .item .thumb .fullimage.bg1 {
  background-image: url(../../assets/images/blog/img1.jpg);
}
.em-blog-widget-area .widget_post .item .thumb .fullimage.bg2 {
  background-image: url(../../assets/images/blog/img2.jpg);
}
.em-blog-widget-area .widget_post .item .thumb .fullimage.bg3 {
  background-image: url(../../assets/images/blog/img3.jpg);
}
.em-blog-widget-area .widget_post .item .thumb .fullimage.bg4 {
  background-image: url(../../assets/images/blog/img4.jpg);
}
.em-blog-widget-area .widget_post .item .thumb .fullimage.bg5 {
  background-image: url(../../assets/images/blog/img5.jpg);
}
.em-blog-widget-area .widget_post .item .thumb .fullimage.bg6 {
  background-image: url(../../assets/images/blog/img6.jpg);
}
.em-blog-widget-area .widget_post .item .info {
  overflow: hidden;
  position: relative;
  top: 5.5px;
}
.em-blog-widget-area .widget_post .item .info span {
  font-weight: 500;
  font-size: 12px;
  color: var(--main-color);
  display: block;
  margin-bottom: 12px;
}
.em-blog-widget-area .widget_post .item .info .title {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 14px;
  color: #161414;
  line-height: 1.5;
}
.em-blog-widget-area .widget_post .item .info .title a {
  display: inline-block;
  color: #161414;
}
.em-blog-widget-area .widget_post .item .info .price {
  color: #161414;
  font-size: 14px;
  font-weight: 800;
  display: block;
  margin-top: 10px;
}
.em-blog-widget-area .widget_post .show-more-btn a {
  font-weight: 500;
  font-size: 14px;
  color: var(--main-color);
  cursor: pointer;
}
.em-blog-widget-area .widget_popular_tags .tags-list {
  padding-left: 0;
  margin-bottom: 0;
}
.em-blog-widget-area .widget_popular_tags .tags-list li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}
.em-blog-widget-area .widget_popular_tags .tags-list li:last-child {
  margin-bottom: 0;
  margin-right: 0;
}
.em-blog-widget-area .widget_popular_tags .tags-list li a {
  display: block;
  background: #EBEBEB;
  border-radius: 2px;
  padding: 10px 15px;
  font-weight: 600;
  font-size: 12px;
  color: #5F5F5F;
  transition: var(--transition);
}
.em-blog-widget-area .widget_popular_tags .tags-list li a:hover {
  background-color: var(--main-color);
  color: var(--white-color);
}
.em-blog-widget-area .widget_popular_tags .show-more-btn a {
  font-weight: 500;
  font-size: 14px;
  color: var(--main-color);
  cursor: pointer;
  display: block;
  margin-top: 20px;
}

.em-featured_products_products {
  position: relative;
  overflow: hidden;
  background: #F8F8F8;
  border-radius: 5px;
  padding: 35px 30px;
  margin-left: 100px;
  margin-bottom: 25px;
}
.em-featured_products_products .title {
  font-size: 18px;
  margin-bottom: 25px;
}
.em-featured_products_products .item {
  overflow: hidden;
  margin-bottom: 25px;
}
.em-featured_products_products .item:last-child {
  margin-bottom: 0;
}
.em-featured_products_products .item .thumb {
  float: left;
  width: 120px;
  height: 120px;
  overflow: hidden;
  display: block;
  position: relative;
  margin-right: 20px;
  z-index: 1;
}
.em-featured_products_products .item .thumb .fullimage {
  width: 120px;
  height: 120px;
  display: inline-block;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}
.em-featured_products_products .item .thumb .fullimage.bg1 {
  background-image: url(../../assets/images/blog/product1.jpg);
}
.em-featured_products_products .item .thumb .fullimage.bg2 {
  background-image: url(../../assets/images/blog/product2.jpg);
}
.em-featured_products_products .item .thumb .fullimage.bg3 {
  background-image: url(../../assets/images/blog/product3.jpg);
}
.em-featured_products_products .item .thumb .fullimage.bg4 {
  background-image: url(../../assets/images/blog/product4.jpg);
}
.em-featured_products_products .item .thumb .fullimage.bg5 {
  background-image: url(../../assets/images/blog/product5.jpg);
}
.em-featured_products_products .item .info {
  overflow: hidden;
  position: relative;
  top: 5px;
}
.em-featured_products_products .item .info .title {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 15px;
  color: #161414;
  line-height: 1.4;
}
.em-featured_products_products .item .info .title a {
  display: inline-block;
}
.em-featured_products_products .item .info .rating {
  padding-left: 0;
  line-height: 1;
  margin-top: 12px;
  margin-bottom: 10px;
}
.em-featured_products_products .item .info .rating li {
  display: inline-block;
  margin-right: 5px;
}
.em-featured_products_products .item .info .rating li:last-child {
  margin-right: 0;
}
.em-featured_products_products .item .info .rating li i {
  color: #F0C005;
  font-size: 18px;
}
.em-featured_products_products .item .info .price {
  font-weight: 300;
  font-size: 12.5px;
  color: #757575;
}
.em-featured_products_products .item .info .price span {
  font-weight: 700;
  font-size: 15px;
  color: var(--main-color);
}

/*================================================
EM Blog Filters Modal Area CSS
=================================================*/
.em-blog-filters-modal.modal.end .modal-dialog {
  position: fixed;
  margin: auto;
  width: 420px;
  height: 100%;
  transform: translate3d(0%, 0, 0);
}
.em-blog-filters-modal.modal.end .modal-content {
  height: 100%;
  overflow-y: auto;
}
.em-blog-filters-modal.modal.end.fade .modal-dialog {
  right: -420px;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}
.em-blog-filters-modal.modal.end.fade.show .modal-dialog {
  right: 0;
}
.em-blog-filters-modal .modal-content {
  border-radius: 0;
  border: none;
}
.em-blog-filters-modal .modal-content .modal-body {
  padding: 35px;
}
.em-blog-filters-modal .modal-content .modal-body .filters-title {
  font-weight: 300;
  font-size: 25px;
  margin-bottom: 35px;
}
.em-blog-filters-modal .modal-content .modal-body .em-products-widget-area .collapse-widget .collapse-widget-title {
  margin-bottom: 20px;
  padding-bottom: 15px;
  position: relative;
  font-size: 18px;
  border-bottom: 1px solid #EDE3E3;
  cursor: pointer;
  font-weight: bold;
}
.em-blog-filters-modal .close {
  color: var(--black-color);
  font-size: 25px;
  outline: 0 !important;
  line-height: initial;
  transition: var(--transition);
  position: absolute;
  right: 25px;
  top: 35px;
  z-index: 1;
  background-color: transparent;
  border: none;
}
.em-blog-filters-modal .close:not(:disabled):not(.disabled):hover, .em-blog-filters-modal .close:not(:disabled):not(.disabled):focus {
  color: var(--main-color);
  text-decoration: none;
  opacity: 1;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .em-blog-area .container-fluid {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    max-width: 540px;
  }
  .em-blog-search-box .em-categories-search {
    max-width: 100%;
  }
  .em-blog-search-box .em-categories-select {
    margin-top: 15px;
  }
  .em-blog-search-box .em-categories-select.right {
    padding-right: 0;
  }
  .em-blog-search-box .em-categories-select.right .filters-btn {
    position: relative;
    right: 2px;
    top: 0;
    margin-top: 10px;
    justify-content: end;
  }
  .em-blog-widget-area {
    margin-bottom: 30px;
  }
  .em-blog-widget-area.right {
    margin-top: 30px;
    margin-bottom: 0;
  }
  .em-blog-card.list-view .post-content {
    margin-top: 20px;
    padding-left: 0;
  }
  .em-featured_products_products {
    padding: 25px 20px;
    margin-left: 0;
  }
  .em-featured_products_products .item .thumb {
    width: 80px;
    height: 80px;
    margin-right: 15px;
  }
  .em-featured_products_products .item .thumb .fullimage {
    width: 80px;
    height: 80px;
  }
  .em-featured_products_products .item .info {
    top: 0;
  }
  .em-blog-filters-modal.modal.end .modal-dialog {
    width: 300px;
  }
  .em-blog-filters-modal .modal-content .modal-body {
    padding: 35px 25px;
  }
}
/* Min width 576px to Max width 767px */
/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .em-blog-area .container-fluid {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    max-width: 720px;
  }
  .em-blog-search-box .em-categories-select {
    margin-top: 15px;
  }
  .em-blog-widget-area {
    margin-bottom: 30px;
  }
  .em-blog-widget-area.right {
    margin-top: 30px;
    margin-bottom: 0;
  }
  .em-blog-card.list-view .post-content {
    margin-top: 20px;
    padding-left: 0;
  }
  .em-featured_products_products {
    margin-left: 0;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .em-featured_products_products {
    margin-left: 0;
  }
  .em-blog-card.list-view .post-content h3 {
    font-size: 18px;
  }
}
/* Min width 1200px to Max width 1399px */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .em-blog-card.list-view .post-content {
    padding-left: 0;
  }
  .em-blog-card.list-view .post-content h3 {
    font-size: 15px;
  }
  .em-blog-card.list-view .post-content p {
    display: none;
  }
  .em-featured_products_products {
    margin-left: 0;
  }
  .em-blog-widget-area .collapse-widget .collapse-widget-title {
    font-size: 17px;
  }
  .em-blog-widget-area .widget_post .item .thumb {
    width: 50px;
    height: 55px;
    margin-right: 10px;
  }
  .em-blog-widget-area .widget_post .item .thumb .fullimage {
    width: 50px;
    height: 55px;
  }
  .em-blog-widget-area .widget_post .item .info {
    top: 0;
  }
  .em-blog-widget-area .widget_popular_tags .tags-list li a {
    padding: 5px 10px;
  }
}
/* Min width 1600px */
@media only screen and (min-width: 1600px) {
  .em-blog-area .container-fluid {
    max-width: 1920px;
    padding-left: 100px;
    padding-right: 100px;
  }
}/*# sourceMappingURL=blog.css.map */