.h-spacer {
  width: 100%;
  height: 40px;
}

#map1 {
  width: 100%;
  min-height: 800px;
}

.spacer-25 {
  height: 25px;
  width: 100%;
}

.news-main-image {
  margin-bottom: 1em;
}

.vertical-line {
  width: 2px;
  height: 100%;
  background-color: var(--bs-success);
}

#web-footer {
}

.content-page {
  min-height: calc(100vh - 355px);
}

.search-box {
  height: 50px;
  width: 100%;
  background-color: rgba(0,0,0,0.05);
}

.truncated-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#pestListTable td:last-child {
  width: 1%;
  white-space: pre-wrap;
}

#pestListTable {
  width: auto;
  border-collapse: collapse;
}

#table-issues tbody {
  max-height: 354px;
  overflow-y: auto;
  display: block;
}

#table-issues thead, #table-issues tbody tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

#table-issues tbody::-webkit-scrollbar {
  width: 0;
}

.news-thumb-image {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.news-thumb-image-container {
  aspect-ratio: 1/1;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  font-size: 1.1em;
}

.pest-profile-img {
  width: 100px;
}

.marquee {
  height: 50px;
  overflow: hidden;
  position: relative;
  background: #fefefe;
  color: #333;
  /*border: 1px solid #4a4a4a;*/
}

.marquee p {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  line-height: 50px;
  text-align: center;
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -moz-animation: scroll-left 2s linear infinite;
  -webkit-animation: scroll-left 2s linear infinite;
  animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
  0% {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

#card-issue {
  min-height: 800px;
}

