.container {
  display: flex;
  flex-direction: column;
  /* width: 300px; */
  width: calc(100dvw - 60px);
  /* box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2); */
  border-radius: 8px;
  padding: 15px 20px 25px 20px;
  margin: 10px auto 0px auto;
  background-color: white;
}

.news-topic {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 7px;
}

.news-topic-img {
  width: 27px;
  flex-shrink: 0;
}

.news-topic-icon {
  height: 20px;
  width: 20px;
  border-radius: 10px;
}

.news-topic-text {
  font-size: 16px;
  font-weight: 600;
  color: rgb(180, 0, 0);
}

.news-title {
  font-size: 22px;
  font-weight: bold;
  padding-left: 5px;
  margin-bottom: 10px;
}

.news-text {
  font-size: 15px;
  line-height: 20px;
  padding-left: 5px;
  margin-top: 3px;
  padding-bottom: 25px;
  margin-bottom: 10px;
}


.news-date {
  font-size: 12px;
  text-decoration: italic;
  color: rgb(150, 150, 150);
  font-weight: 500;
  padding-left: 5px;
  padding-bottom: 5px;
  border-bottom: 2px solid rgb(180, 0, 0);
}

.mbz {
  padding-bottom: 0;
  margin-bottom: 0;
}

/* Count down */
.cd-container {
  height: 51px;
  display: flex;
  align-items: center;
  margin-left: -12px;
}

.cd-col {
  margin-top: 8px;
  height: 51px;
}

.cd-col-inactive {
  display: none;
}

.cd-num {
  display: flex;
  justify-content: center;
  width: 60px;
  font-size: 32px;
  color: rgb(200, 200, 200);
  font-weight: bold;
  margin-bottom: 3px;
}

.cd-txt {
  display: flex;
  justify-content: center;
  width: 60px;
  font-size: 10px;
  color: rgba(180, 0, 0, 0.6);
}

@media (min-width: 700px) {
  .container {
    width: 600px;
  }
}