@charset "UTF-8";
div.network.container {
  width: calc(100% - 22px);
  min-width: 609px;
  padding: 20px 30px;
}
@media screen and (max-width: 710px) {
  div.network.container {
    min-width: 220px;
  }
}
div.network.container .chat {
  min-width: 100%;
  display: block;
}
div.network.container .details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
div.network.container .list-wrapped .details {
  display: block;
}
div.network.container .title {
  font-size: 1.5rem;
  font-weight: 700;
}
div.network.container .details li {
  list-style: none;
  margin: 8px 0;
}
@media screen and (max-width: 490px) {
  div.network.container .details li {
    margin: 4px 0;
  }
}
div.network.container .details li.topic {
  font-size: 1rem;
  color: #2b509b;
}
@media screen and (max-width: 710px) {
  div.network.container .details li.topic {
    font-size: 0.9rem;
  }
}
div.network.container .details li a {
  font-size: 1.125rem;
  color: #333;
  text-decoration: none;
}
@media screen and (max-width: 490px) {
  div.network.container .details li a {
    font-size: 0.9rem;
  }
}
div.network.container .button a {
  color: #fff;
  background: #0a2558;
  padding: 4px 12px;
  font-size: 0.9rem;
  font-weight: 400;
  border-radius: 4px;
  text-decoration: none;
}
div.network.container .button a:hover {
  background: #0d3073;
}
.chat-header {
  white-space: nowrap;
  justify-content: space-between;
  padding: 5px 0 5px 0;
  margin-right: -10px;
}
.chat-header.horizontal {
  display: flex !important;
  justify-content: flex-start !important;
  white-space: nowrap;
  justify-content: space-between;
  padding: 5px 0 5px 0;
  margin-bottom: 10px;
}
.chat-header.vertical {
  overflow-y: scroll;
  white-space: nowrap;
  justify-content: space-between;
  padding: 5px 0 5px 0;
}
div.network.container .sectionTitle {
  margin: 10px 0;
}
div.network.container .sectionTitle .title {
  font-size: 0.7rem;
  text-align: left;
  color: #fff;
}
div.network.container .sectionTitle .content {
  font-size: 0.8rem;
  text-align: left;
  width: 100%;
}
div.network.container .add-icon {
  font-size: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  min-width: 35px;
  width: 35px;
  height: 35px;
  margin: 5px;
  background: linear-gradient(to right, #3498db, #2980b9);
  color: #fff;
  border: solid #ccc 0.5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  cursor: pointer;
}
div.network.container .horizontal-alignment .sectionTitle {
  margin: 5px;
}
.discussion-capsule {
  border-radius: 15px;
  border: 1px solid #ccc;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #000;
  padding: 5px 10px;
  margin: 0 5px;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 700;
}
.discussion-capsule:hover {
  background-color: #2980b9;
  border-color: #2980b9;
  color: #fff;
}
.discussion-capsule.back {
  display: none;
}
.chat-header.vertical .discussion-capsule {
  padding: 5px 10px;
  margin-bottom: 5px;
  border-radius: 5px;
}
#chat-box {
  height: calc(100vh - 350px);
  max-width: 900px;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (max-width: 710px) {
  #chat-box {
    justify-content: flex-end;
  }
}
body.chat #chat-box {
  background: linear-gradient(
      to left,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.5)
    ),
    url(../../img/lebienveillantapp/banner-aesthetics-and-beauty.jpg) no-repeat
      50% 50% / cover;
  background-size: cover;
  background-position: center;
  border-right: 1px solid #888;
  border-left: 1px solid #888;
}
#chat-box div.chat-bubble {
  max-width: calc(100% - 15px);
  align-self: flex-start;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #b7b7b7;
  padding: 5px 10px 20px 10px;
  margin: 5px;
  word-wrap: break-word;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
#chat-box .chat-datetime {
  display: flex;
  justify-content: center;
}
#chat-box .chat-datetime div {
  font-family: "Open+Sans", sans-serif;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  padding: 0 10px;
  background-color: #054f7e;
  border-radius: 20px;
}
#chat-box div.chat-bubble .chat-subject {
  font-family: "Open+Sans", sans-serif;
  font-size: 1rem;
  color: #0f0f0f;
  font-weight: 700;
}
#chat-box div.chat-bubble .chat-user {
  display: inline-block;
  background-color: #5b7294;
  border-radius: 10px;
  font-family: "Open+Sans", sans-serif;
  font-size: 0.8rem;
  color: #fff;
  font-weight: 700;
  padding: 2px 10px;
  margin-left: 5px;
}
#chat-box div.chat-bubble .chat-info {
  display: inline-block;
  font-family: "Open+Sans", sans-serif;
  font-size: 0.8rem;
  color: #000;
  margin-left: 5px;
}
#chat-box div.chat-bubble .chat-message {
  font-family: "Open+Sans", sans-serif;
  font-size: 1rem;
  color: #050505;
  margin-top: 5px;
}
.input-container {
  width: 100%;
  margin-top: 10px;
}
@media screen and (max-width: 710px) {
  .input-container {
    padding: 0 5px;
  }
}
#message-input {
  width: calc(100% - 40px);
  font-size: 1rem;
  border-radius: 20px;
  background: linear-gradient(to right, #f0f2f5, #f0f2f5);
  padding: 5px 10px;
  vertical-align: middle;
  height: auto;
  word-wrap: break-word;
  margin-right: 5px;
}
.submit-button {
  font-size: 2rem;
  background: 0 0;
  color: #2881ba;
  border: none;
  cursor: pointer;
  margin: auto;
  vertical-align: middle;
}
#chat-box::-webkit-scrollbar,
#chat-header::-webkit-scrollbar {
  width: 10px;
}
#chat-header::-webkit-scrollbar-track {
  background: #fff;
}
#chat-box::-webkit-scrollbar-track {
  background: #fff;
}
#chat-box::-webkit-scrollbar-thumb,
#chat-header::-webkit-scrollbar-thumb {
  background: #888;
}
.hashtag {
  color: #2e70a6;
  font-weight: 700;
  font-family: "Arial Black", sans-serif;
}
.reaction-buttons {
  display: flex;
  justify-content: flex-end;
  margin-right: 20px;
  margin-bottom: 10px;
  margin-top: -20px;
}
.reaction-button {
  position: relative;
  background-color: linear-gradient(45deg, #e0e0e0, #aaa);
  color: #483945;
  border: none;
  padding: 4px 8px;
  margin-left: 2px;
  border-radius: 20px;
  border: 2px solid #fff;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
}
.reaction-button.react {
  background-color: #2b84bf;
  border: 2px solid #2b84bf;
  color: #fff;
}
.reaction-button .reaction-icon {
  display: none;
}
.reaction-button .noreaction-icon {
  display: block;
}
.reaction-button.react .reaction-icon {
  display: block;
}
.reaction-button.react .noreaction-icon {
  display: none;
}
.reaction-button:hover .reaction-icon {
  display: none;
}
.reaction-button:hover .noreaction-icon {
  display: block;
}
.reaction-button.react:hover .reaction-icon {
  display: block;
}
.reaction-button.react:hover .noreaction-icon {
  display: none;
}
.reaction-button .reaction-text {
  position: absolute;
  opacity: 0;
  font-size: 0.1px;
  transition: font-size 0.5s ease;
}
@media screen and (max-width: 710px) {
  .reaction-button .reaction-text {
    transition: font-size 0.1s ease !important;
  }
}
div.network.container .reaction-buttons i {
  margin-right: 3px;
}
.reaction-button.focused {
  justify-content: flex-start;
}
.reaction-count {
  margin-left: 5px;
  color: #555;
}
.reaction-button {
  width: 100px;
  justify-content: flex-start;
  width: auto;
}
.reaction-button .reaction-text {
  opacity: 1;
  position: relative;
  margin-left: 2px;
  font-size: 1rem;
}
@media screen and (max-width: 710px) {
  .reaction-button .reaction-text {
    font-size: 0.7rem;
  }
}
.reaction-button:hover {
  background-color: #1d5f98;
  border: 2px solid #1d5f98;
  color: #fff;
}
.reaction-button:hover img {
  display: none;
}
.reaction-button:active {
  background-color: #2875b8;
  border: 2px solid #2875b8;
}
.reaction-button:hover .fa-heart {
  color: #f7112f;
  font-size: 1rem;
}
.reaction-button:hover .fa-ranking-star {
  color: #ecd64c;
  font-size: 1.2rem;
  box-shadow: 10px 10px 10px rgba(255, 255, 255, 1);
}
.reaction-button:hover .fa-broom {
  color: #ff6e25;
  font-size: 1rem;
}
.website-overview {
  display: flex;
  align-items: flex-start;
  margin-top: 10px;
  border-radius: 5px;
  padding: 5px;
  border: 1px solid #ccc;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}
.website-overview:active,
.website-overview:focus,
.website-overview:hover {
  background-color: #bcd1e8;
}
.website-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 10px;
}
.website-details {
  flex: 1;
}
.website-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}
.website-sitename {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
}
.website-description {
  font-size: 12px;
  color: #666;
  word-wrap: break-word;
}
a.website-url {
  width: 100%;
  font-size: 12px;
  color: #3564db;
  overflow-wrap: break-word;
  word-break: break-all;
}
.url-link {
  font-weight: 500;
  color: #183ed6;
  text-decoration: none;
  padding: 3px 6px;
  background-color: #e6f2ff;
  border-radius: 10px;
  display: inline-block;
  margin: 2px 0;
}
.url-link:hover {
  background-color: #bcd1e8;
}
.reaction-count-circle {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #00a2ff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}
.reaction-buttons .reaction-button {
  position: relative;
}
.margin-button {
  position: relative;
}
