body {
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  color: #231917;
}

h1 {
  font-family: "Cherry Bomb One", system-ui;
  line-height: 1em;
  margin-bottom: 0;
}

.title_icon {
  font-size: 2rem;
  line-height: 1em;
}

.nav-tabs .nav-link {
  border-bottom-color: rgba(104, 94, 91, 0.3);
}
.nav-tabs .nav-link:hover {
  border-color: rgba(104, 94, 91, 0.3) rgba(104, 94, 91, 0.3) rgba(255, 255, 255, 0.7);
}
.nav-tabs .nav-link.active {
  border-color: rgba(104, 94, 91, 0.6) rgba(104, 94, 91, 0.6) rgba(255, 255, 255, 0.7);
  background-color: rgba(255, 255, 255, 0.7);
}

form .form-control {
  border-color: rgba(104, 94, 91, 0.6);
}
form .form-control:focus {
  box-shadow: 0px 0px 0px 2px rgba(237, 82, 53, 0.5) !important;
  border-color: rgba(237, 82, 53, 0.5);
}

.btn_accent-color {
  background-color: #ed5235;
  color: white;
}
.btn_accent-color:hover {
  background-color: #f67255;
  color: white;
}

.background_img {
  position: fixed;
  top: 0;
  background-size: cover;
  width: 100%;
  height: 100vh;
  z-index: -1;
  opacity: 0.7;
}

main {
  flex: 1;
}

.bg-info {
  background-color: #685e5b !important;
}
.bg-info > svg {
  color: white !important;
}

.jumbotron {
  position: relative;
}

.cat1 {
  position: absolute;
  bottom: calc(100% - 1px);
  left: 5%;
  width: 100px;
  height: 2.9rem;
}
.cat1 img {
  width: 100px;
  height: 2.9rem;
  object-fit: contain;
}

.search_form {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}
@media (min-width: 576px) {
  .search_form {
    padding: 0 2em;
    margin-bottom: -2rem;
    margin-top: 2rem;
  }
}

.search_form > input {
  background-color: ghostwhite;
  border-radius: 3em;
  border: none;
  padding-right: 2em;
  padding-left: 1em;
}
.search_form > button {
  outline: none;
  position: absolute;
  right: 0;
  background-color: #ed5235;
  border-radius: 50%;
  width: 3.8em;
  height: 3.8em;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.5em solid #685e5b;
  transform: 0.3s;
}
.search_form > button:hover {
  right: -0.2em;
  width: 4em;
  height: 4em;
  background-color: #f67255;
  color: white;
  transform: 0.3s;
}

.searched_words {
  font-weight: bolder;
}

.show_category_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1em;
  gap: 10px;
}
.show_category_list > li {
  position: relative;
  width: calc(25% - 1em);
  min-width: 5.5em;
  max-width: 8em;
  padding: 10px 0;
  text-align: center;
  color: gray;
  cursor: pointer;
  font-size: 1.05rem;
}
.show_category_list > li::after {
  content: "";
  position: absolute;
  left: 100%;
  right: 100%;
  bottom: 0;
  height: 4px;
  background-color: #ed5235;
  transition: left 0.5s ease, right 0.5s ease;
}
.show_category_list > li:hover {
  opacity: 0.6;
  color: #ed5235;
  transition: all 0.3s;
}
.show_category_list > li:hover::after {
  left: 0;
  right: 0;
}
.show_category_list > li.active {
  color: #ed5235;
  font-weight: bold;
}
.show_category_list > li.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background-color: #ed5235;
}
.show_category_list > li.active:hover {
  opacity: 1;
  cursor: default;
}

.category_container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.posts_container,
.users_container {
  display: none;
}

.posts_container.active,
.users_container.active {
  display: flex;
}

.background-color_white {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 5px;
}

.show_list_style > li {
  border-top: 1px solid rgba(104, 94, 91, 0.6);
}
.show_list_style > li:last-child {
  border-bottom: 1px solid rgba(104, 94, 91, 0.6);
}
.show_list_style > li p {
  margin: 0 !important;
}
.show_list_style > li .action_area {
  border-top: 1px solid rgba(104, 94, 91, 0.6);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.post_content {
  line-height: 1.1em;
}

.post-image {
  padding-top: 15px;
  padding-bottom: 15px;
  aspect-ratio: 1/1;
}
.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

time {
  font-size: 0.8em;
}

footer {
  position: relative;
  margin-top: 80px;
}
footer .cat2 {
  position: absolute;
  bottom: 100%;
  right: 0;
  z-index: -1;
  width: 25%;
  min-width: 180px;
  max-width: 500px;
}
footer .cat2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
footer .cat2.cat2_left {
  left: 0;
  transform: scale(-1, 1);
}

.btn-warning {
  background-color: orange;
  border-color: orange;
  color: white;
}
.btn-warning:hover {
  color: white;
}

label {
  margin: 0;
}

.user_icon {
  object-fit: cover;
  aspect-ratio: 1/1;
}

.card-body {
  position: relative;
}
.card-body .add_icon-btn {
  position: absolute;
  right: 10%;
  bottom: 10%;
  width: 15%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-body .add_icon-btn > svg {
  height: 60%;
}

.modal_close-btn {
  position: absolute;
  top: 0;
  right: 0;
}
.modal_close-btn > svg {
  color: white;
  height: 2rem;
}
.modal_close-btn:hover {
  opacity: 0.65;
}

.cancel-modal-btn {
  background-color: white;
  color: dimgray;
}
.cancel-modal-btn:hover {
  opacity: 0.65;
}

.timeline-list {
  display: none;
}

.timeline-category {
  display: flex;
  gap: 0.8rem;
}
.timeline-category .btn {
  min-width: 5em;
  font-size: 0.9rem;
  padding: 0.1em 0.8em;
  background-color: white;
  border: 1px solid #ed5235;
  color: #ed5235;
  border-radius: 3em;
  cursor: pointer;
}
.timeline-category .btn:hover {
  background-color: #ed5235;
  color: white;
  opacity: 0.65;
}
.timeline-category .btn.active {
  background-color: #ed5235;
  color: white;
}
.timeline-category .btn.active:hover {
  opacity: 1;
}

.postImg-input_container {
  row-gap: 0.5rem;
}
.postImg-input_container .postImg-input_item {
  position: relative;
  min-width: 100px;
}
.postImg-input_container .postImg-input_item > .btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0;
  border: 1px solid darkgray;
  border-radius: 3rem;
  background-color: white;
  font-size: 0.8rem;
  line-height: 1em;
}
.postImg-input_container .postImg-input_item > .btn svg {
  font-size: 1rem;
  align-self: center;
}
.postImg-input_container .postImg-input_item > .btn:hover {
  opacity: 0.65;
}
.postImg-input_container .postImg-input_item .currentImg_preview,
.postImg-input_container .postImg-input_item .postImg_preview {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10%;
}
.postImg-input_container .postImg-input_item .currentImg_delete,
.postImg-input_container .postImg-input_item .postImg_delete {
  position: absolute;
  top: 2px;
  right: 18px;
  background-color: rgba(255, 255, 255, 0.65);
  color: dimgray;
  border-radius: 50%;
  width: 18%;
  aspect-ratio: 1/1;
  border: none;
}
.postImg-input_container .postImg-input_item .currentImg_delete:hover,
.postImg-input_container .postImg-input_item .postImg_delete:hover {
  opacity: 0.65;
}

#post-img_modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(35, 25, 23, 0.7);
  opacity: 0;
  transition: 0.3s ease-out;
}
#post-img_modal.active {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: 0.3s ease-out;
  cursor: pointer;
}
#post-img_modal div {
  position: relative;
  width: 90%;
  height: 80%;
  max-width: 900px;
}
#post-img_modal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#post-img_modal .post-img_modal_cancel {
  background-color: #ed5235;
  color: white;
  border-radius: 3em;
  margin-top: 1rem;
  padding: 0.2rem 1rem;
  border: none;
}
#post-img_modal .post-img_modal_cancel:hover {
  opacity: 0.65;
}

.post-image {
  cursor: pointer;
}

.follow_btn {
  background-color: dimgray;
  color: white;
  border: none;
  border-radius: 3em;
  font-size: 0.85rem;
  padding: 0 0.8em;
  width: 9em;
}
.follow_btn.orange {
  background-color: orange;
}
.follow_btn:hover {
  opacity: 0.65;
}

.favorite-pulus {
  color: gray;
  background-color: white;
  margin-bottom: -0.25em;
  margin-left: -0.9em;
  border-radius: 50%;
  border: solid 1px gray;
  font-size: 0.4em;
  padding: 0.2em;
}

.favorite-minus {
  color: white;
  background-color: gray;
  margin-bottom: -0.25em;
  margin-left: -0.8em;
  border-radius: 50%;
  border: solid 1px white;
  font-size: 0.5em;
  padding: 0.2em;
}

.fa-heart {
  color: hotpink;
}

.favorite-btn {
  border: none;
  background-color: inherit;
  color: dimgray;
  padding: 0;
}

.hover:hover {
  opacity: 0.65;
}/*# sourceMappingURL=style.css.map */