:root {
  --main-color: #4285F4;
  --secondary-color: white;
  --main-text-color: #0d47a1;
  --secondary-text-color: #2E2E2E;
  --send-message-form: #F5F5F5;
}

#openServiceChat {
  position: fixed;
  bottom: -6px;
  right: 24px;
  border-radius: 10px 10px 0px 0px;
}

#serviceChat {
  position: fixed;
  bottom: 0px;
  right: 24px;
  z-index: 1000;
}

#serviceChat .app-container {
  height: 400px;
  width: 300px;
  border: 1px #ccc solid;
  background: #ffffff;
}

.app {
  height: calc(100% - 100px);
}

#serviceChat .title .close {
  position: absolute;
  right: 10px;
}

.title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  color: var(--secondary-color);
  background: var(--main-color);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-align: center;
}

.message {
  margin: 15px 0;
}

.message div:nth-child(1) {
  font-size: 11px;
  color: var(--main-text-color);
  opacity: 0.9;
  margin-bottom: 6px;
}

.message div:nth-child(2) {
  background: var(--main-color);
  color: var(--secondary-color);
  padding: 4px 8px;
  border-radius: 8px;
}

.message-list {
  box-sizing: border-box;
  padding: 0 0 0 6px;
  margin: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  background: white;
}

.send-message-form {
  background: var(--send-message-form);
  display: flex;
  box-sizing: border-box;
  height: 60px;
}

.send-message-form input {
  width: 100%;
  padding: 15px 10px;
  border: none;
  margin: 0;
  background: var(--send-message-form);
  font-weight: 200;
}

.send-message-form input:focus {
  outline-width: 0;
}

.send-message-form input::placeholder {
  color: black;
}