
.card,
p.description.active {
  padding: 5px;
}
#rootSearch, #rootShow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100vw;
  max-width: 940px;
  margin: 0 auto;
}
input#search {
  width: 100vw;
  max-width: 940px;
  height: 50px;
  padding-left: 15px;
  border: 1px solid #333;
  margin: 7px;
}
div#filter_data_div {
  width: 100vw;
  max-width: 940px;
}
.searchCard.searchBlog {
  width: 100vw;
  max-width: 940px;
}
.column-container,
.unorderedList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.categoryColumn {
  flex: 1;
  width: calc(25% - 10px);
  margin-right: 10px;
}
.h-410 {
  display: flex;
  width: calc(100vw - 15px);
  max-width: 926px;
  margin: 10px 7px;
  border-radius: 3px;
  justify-content: space-between;
  align-items: center;
}
.description {
  display: none;
}
.description.active {
  display: block;
  width: 100vw;
  max-width: 940px;
}
ul.description.active {
  padding-left: 0;
}
p.h-410-2 {
  position: relative;
  display: inline-block;
  height: 50px;
  background-color: rgb(48, 105, 154, .2);
  align-content: center;
  padding: 15px;
}
p.h-410-2::after {
  content: "\25BC";
  display: inline-block;
  position: absolute;
  top: 30px;
  right: 20px;
  transform: translateY(-50%);
}
li{
    list-style: none;
}

p {
  cursor: pointer;
}

button.buttonFlexContainer {
  height: 40px;
  width: 170px;
  margin: 0 0 .1rem 7px;
  border-radius: 25px;
  background-color: rgb(48, 105, 154, 1);
  color:#fff;
}

button.buttonFlexContainer:hover {
  background-color: rgb(48, 105, 154, .2);
  color: #6a859c;
}

.faq-header {
  width: 100vw;
  max-width: 940px;
  margin: 70px auto 20px auto;
}
#sitemap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: calc(100vw - 15px);
  max-width: 940px;
  margin: 0 auto;
}

#sitemap h3, #faq-header h3{
  margin: 60px 0 30px 0;
}

h3#faq-header, p#faq-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100vw;
  max-width: 940px;
  margin: 0 auto;
  padding-left: 8px;
}

.category-column, p {
  animation: fade-in .5s forwards;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}