.newspapers-container {
  display: flex;
  height: 100vh;
}
.newspapers-container .sidebar {
  width: 25%;
  background-color: #000;
  padding: 20px 24px;
  height: 100%;
}
.newspapers-container .sidebar .back-home {
  background-color: #008837;
  padding: 10px 20px;
  height: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.newspapers-container .sidebar .list {
  height: calc(100% - 60px);
  overflow: overlay;
}
.newspapers-container .sidebar .list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}
.newspapers-container .sidebar .list::-webkit-scrollbar {
  width: 0;
  background-color: #f5f5f5;
}
.newspapers-container .sidebar .list::-webkit-scrollbar-thumb {
  background-color: #a09c9c;
}
.newspapers-container .sidebar .inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
.newspapers-container .sidebar .item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  background-color: #fff;
}
.newspapers-container .sidebar .item-children {
  position: relative;
  cursor: pointer;
}
.newspapers-container .sidebar .item-children.active .empty {
  z-index: 0;
  background-color: transparent;
}
.newspapers-container .sidebar .item-children.active .article-img {
  border-color: #c5161d;
}
.newspapers-container .sidebar .item-children.active .article-img::before {
  content: none;
}
.newspapers-container .sidebar .pagination {
  position: absolute;
  bottom: 4px;
  right: 6px;
  padding: 3px 6px;
  background-color: #000;
  border-radius: 5px;
  overflow: hidden;
  font-size: 12px;
  color: #fff;
}
.newspapers-container .sidebar .empty {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.3);
}
.newspapers-container .sidebar .article-img {
  position: relative;
  display: block;
  padding-bottom: 145%;
  border: 1px solid #b2b2b2;
}
.newspapers-container .sidebar .article-img img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.newspapers-container .sidebar .article-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.3);
}
.newspapers-container .content {
  width: 75%;
  flex: 1;
  /* display: flex; */
  align-items: center;
  height: 100%;
  padding: 20px;
  overflow: hidden;
}
.newspapers-container .content .left-ema {
  padding: 80px 70px 40px;
  height: 100%;
}
.newspapers-container .content .left-ema .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.newspapers-container .content .left-ema .logo img {
  height: auto;
  width: auto;
  max-width: 100%;
}
.newspapers-container .content .left-ema .sapo {
  font-size: 24px;
  font-weight: bold;
  color: #c5161d;
  text-align: center;
  margin-top: 2px;
}
.newspapers-container .content .left-ema .list-cate {
  margin-top: 40px;
  height: calc(100% - 200px);
  overflow: overlay;
}
.newspapers-container .content .left-ema .list-cate::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}
.newspapers-container .content .left-ema .list-cate::-webkit-scrollbar {
  width: 0;
  background-color: #f5f5f5;
}
.newspapers-container .content .left-ema .list-cate::-webkit-scrollbar-thumb {
  background-color: #a09c9c;
}
.newspapers-container .content .left-ema .article-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.newspapers-container .content .left-ema .article-img {
  position: relative;
  display: block;
  padding-bottom: 127%;
}
.newspapers-container .content .left-ema .article-img img {
  position: absolute;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.newspapers-container .content .left-ema .article-title {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-top: 4px;
  text-align: center;
}
.newspapers-container .content .right-ema {
  height: 100%;
}
.newspapers-container .content .right-ema  .article-img {
  position: relative;
  display: block;
  padding-bottom: 132%;
}
.newspapers-container .content .right-ema  .article-img img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.newspapers-container .content .swiper {
  width: 100%;
}
.newspapers-container .content .swiper-button-prev,
.newspapers-container .content .swiper-rtl .swiper-button-next {
  left: 0;
  right: auto;
  background: #008837;
  border-radius: 6px;
  color: #fff;
}
.newspapers-container .content .swiper-button-next,
.newspapers-container .content .swiper-rtl .swiper-button-prev {
  right: 0;
  left: auto;
  background: #008837;
  border-radius: 6px;
  color: #fff;
}
.newspapers-container .content .swiper-button-next:after,
.newspapers-container .content .swiper-rtl .swiper-button-prev:after,
.newspapers-container .content .swiper-button-prev:after,
.newspapers-container .content .swiper-rtl .swiper-button-next:after {
  font-size: 20px;
}
.newspapers-container .content .swiper-button-next.swiper-button-disabled,
.newspapers-container .content .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

@media (max-width: 1536px) {
  .d-2xl-none {
    display: none;
  }
  .d-2xl-block {
    display: block;
  }
  .d-2xl-flex {
    display: flex;
  }
  .d-2xl-grid {
    display: grid;
  }
  .newspapers-container .content .left-ema {
    padding: 80px 50px 40px;
  }
  .newspapers-container .content .left-ema .logo img {
    height: 90px;
    width: auto;
  }
  .newspapers-container .content .left-ema .sapo {
    font-size: 20px;
  }
}
@media (max-width: 1280px) {
  .d-xl-none {
    display: none;
  }
  .d-xl-block {
    display: block;
  }
  .d-xl-flex {
    display: flex;
  }
  .d-xl-grid {
    display: grid;
  }
}
@media (max-width: 1024px) {
  .d-lg-none {
    display: none;
  }
  .d-lg-block {
    display: block;
  }
  .d-lg-flex {
    display: flex;
  }
  .d-lg-grid {
    display: grid;
  }
  .newspapers-container {
    flex-direction: column;
  }
  .newspapers-container .sidebar {
    order: 2;
    width: 100%;
    padding-top: 40px;
  }
  .newspapers-container .sidebar .back-home {
    position: fixed;
    z-index: 20;
    bottom: 0;
    left: 0;
    right: 0;
    margin-bottom: 0;
  }
  .newspapers-container .content {
    order: 1;
    width: 100%;
    height: auto;
    overflow: unset;
    display: block;
    padding: 10px;
  }
  .newspapers-container .content .left-ema {
    padding: 20px;
    width: 100%;
    height: auto;
    display: none;
  }
  .newspapers-container .content .right {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .d-md-none {
    display: none;
  }
  .d-md-block {
    display: block;
  }
  .d-md-flex {
    display: flex;
  }
  .d-md-grid {
    display: grid;
  }
}
@media (max-width: 640px) {
  .d-sm-none {
    display: none;
  }
  .d-sm-block {
    display: block;
  }
  .d-sm-flex {
    display: flex;
  }
  .d-sm-grid {
    display: grid;
  }
  .newspapers-container .sidebar {
    padding-top: 20px;
  }
  .newspapers-container .sidebar .list {
    height: calc(100% - 50px);
  }
  .newspapers-container .content .swiper-button-next:after,
.newspapers-container .content .swiper-rtl .swiper-button-prev:after,
.newspapers-container .content .swiper-button-prev:after,
.newspapers-container .content .swiper-rtl .swiper-button-next:after {
    font-size: 15px;
  }
}
@media (max-width: 400px) {
  .newspapers-container .sidebar .list {
    height: calc(100% - 40px);
  }
}


@media screen and (max-width: 1550px) {
  .newspapers-container .sidebar {
      width: 30%;
  }
}
@media screen and (max-width: 1440px) {
  .newspapers-container .sidebar {
      width: 33%;
  }
}
/*# sourceMappingURL=style.css.map */
