.text-head1 {
  font-size: 1.5em;
  color: black;
  font-weight: normal;
}

.text-head2 {
  font-size: 1.5em;
  color: black;
  font-weight: normal;
}

.text-head3 {
  font-size: 1.5em;
  color: black;
  font-weight: normal;
}

.text-paraph {
  font-size: 1.5em;
  color: black;
  font-weight: normal;
}

.text-little {
  font-size: 12px;
  color: #939494;
  font-weight: lighter;
  width: 100%;
  text-align: center;
  display: block;
}

.text-title {
  font-size: 1.1em;
  color: black;
  font-weight: normal;
}

.text-capital {
  font-size: 1.5em;
  color: black;
  font-weight: normal;
  line-height: 1.6em;
}

.text-align-center {
  text-align: center;
}

.text-align-right {
  text-align: right;
}

.text-align-left {
  text-align: left;
}

.text-divider {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
}
.text-divider .divider {
  border-bottom: 1px solid #efefef;
  flex: 1;
}
.text-divider .text {
  display: flex;
  color: #444444;
  gap: 1rem;
}
.text-divider .text span {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
}
.text-divider .text i {
  font-size: 1.5em;
}

@keyframes spin {
  0% {
    transform: rotateX(180deg);
    transform-origin: 0% 0%;
    ms-transform-origin: 0% 0%;
    moz-transform-origin: 0% 0%;
    moz-transform: rotateX(180deg);
    ms-transform: rotateX(180deg);
  }
  25% {
    transform: rotateX(100deg);
    transform-origin: 0% 0%;
    ms-transform-origin: 0% 0%;
    moz-transform-origin: 0% 0%;
    moz-transform: rotateX(180deg);
    ms-transform: rotateX(180deg);
  }
  50% {
    transform: rotateX(0deg);
    transform-origin: 0% 0%;
    ms-transform-origin: 0% 0%;
    moz-transform-origin: 0% 0%;
    moz-transform: rotateX(0deg);
    ms-transform: rotateX(0deg);
  }
  75% {
    transform: rotateX(45deg);
    transform-origin: 0% 0%;
    ms-transform-origin: 0% 0%;
    moz-transform-origin: 0% 0%;
    moz-transform: rotateX(45deg);
    ms-transform: rotateX(45deg);
  }
  100% {
    transform-origin: 0% 0%;
    transform: rotateX(0deg);
    ms-transform-origin: 0% 0%;
    moz-transform-origin: 0% 0%;
    moz-transform: rotateX(0deg);
    ms-transform: rotateX(0deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotateX(180deg);
  }
  25% {
    -webkit-transform: rotateX(100deg);
  }
  50% {
    -webkit-transform: rotateX(0deg);
  }
  75% {
    -webkit-transform: rotateX(45deg);
  }
  100% {
    -webkit-transform: rotateX(0deg);
  }
}
.imageSpin {
  animation-name: spin;
  animation-timing-function: linear;
  animation-duration: 0.8s;
  -webkit-animation-name: spin;
  -webkit-animation-timing-function: linear;
  -webkit-animation-duration: 1s;
}

.icons {
  width: 24px;
}

.chat {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1rem;
}
.chat .icon {
  font-size: 24px;
  font-weight: 500;
  display: inline-block;
}
.chat .icon:hover {
  cursor: pointer;
}
.chat .messagerie {
  display: none;
}

.chat-open {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.9529411765), rgba(0, 0, 0, 0.9529411765));
  min-width: 100vw;
  min-height: 100vh;
  width: 100%;
  height: 100%;
  z-index: 99999999;
}
.chat-open .messagerie {
  display: flex;
  right: 1rem;
  height: 75vh;
  width: 400px;
  max-width: 90%;
  background-color: white;
  box-shadow: 1px 0.5px 5px #000000;
  border-radius: 4px;
  flex-direction: column;
}
.chat-open .messagerie .message {
  display: grid;
  grid-template-columns: 30% auto;
}
.chat-open .messagerie .message label {
  display: flex;
  flex-direction: column;
  font-size: 10px;
  padding: 1rem;
}
.chat-open .messagerie .message .contenu {
  font-weight: bold;
  font-size: 12px;
  font-family: "Source Sans Pro", sans-serif;
  padding-top: 1rem;
}
.chat-open .messagerie .messagerie-header {
  padding: 0.5rem;
  background-color: #105265;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.chat-open .messagerie .messagerie-header .close {
  font-size: 3em;
  color: white;
}
.chat-open .messagerie .messagerie-header .close:hover {
  cursor: pointer;
}
.chat-open .messagerie .messagerie-header .titre {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px;
  color: white;
}
.chat-open .messagerie .messagerie-content {
  flex: 1;
  overflow-y: scroll;
}
.chat-open .messagerie .messagerie-footer {
  display: flex;
  width: 100%;
  align-items: flex-end;
}
.chat-open .messagerie .messagerie-footer .form-group {
  flex: 1;
}
.chat-open .messagerie .messagerie-footer .form-group input {
  width: 100%;
}

textarea {
  resize: none;
}

/*# sourceMappingURL=chat.css.map */
