#audioToggleBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: background-color 0.3s ease;
  opacity: 0.4;
}
#audioToggleBtn.playing {
  animation-name: spin;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
#audioToggleBtn.playing::after {
  content: none;
}
#audioToggleBtn::after {
  content: "";
  border-left: 3px solid #fff;
  height: 36px;
  display: block;
  width: 0;
  left: 25px;
  top: 7px;
  position: absolute;
  transform: rotate(45deg);
  z-index: 1;
}
#audioToggleBtn::before {
  content: "\f49e";
  font-family: bootstrap-icons !important;
  display: inline-block;
  position: absolute;
  z-index: 1;
  font-size: 24px;
  /* height: 100%; */
  /* width: 100%; */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#audioToggleBtn:hover {
  opacity: 1;
}

.comment-form {
  background-color: #d8d8d8;
  padding: 24px;
}
.comment-form .form-group {
  margin-bottom: 16px;
}
.comment-form .btn {
  background-color: #5c636a;
  color: white;
  text-transform: uppercase;
  font-size: 14px;
  min-width: 160px;
  margin: auto;
}

.comment-list {
  border: 1px solid #d8d8d8;
  padding: 0 16px;
  padding-top: 16px;
}
.comment-list .comment-box {
  border-bottom: 1px dashed #d8d8d8;
  padding: 12px 8px;
  border-bottom: 1px dashed #d8d8d8;
}
.comment-list .comment-box + .comment-box {
  margin-top: 12px;
}
.comment-list .comment-box .fullname {
  font-weight: 600;
  margin-bottom: 3px;
}
.comment-list .comment-box .content {
  font-weight: 300;
  font-size: 14px;
}
.comment-list .view-more {
  text-align: center;
}
.comment-list .view-more .btn-link {
  text-transform: uppercase;
  font-weight: 700;
  color: #3f51b5;
  text-decoration: none;
}
.comment-list .view-more a {
  text-decoration: none;
  color: inherit;
}

.container.container-md {
  max-width: 768px;
}/*# sourceMappingURL=common.css.map */