.wdn-text-hidden {
  font-size: 0;
  width: 1px;
  height: 1px;
  display: inline-block;
  overflow: hidden;
  position: absolute !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  clip: rect(1px, 1px, 1px, 1px);
}

.socialShareButton {
  height: 28px;
  border-radius: 4px;
  margin: 0px 5px;
  border: none;
  cursor: pointer;
}

.note-box-shadow {
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}

.socialShareButtonText {
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-stretch: 100%;
  font-style: normal;
  font-variant-caps: normal;
  font-variant-east-asian: normal;
  font-variant-ligatures: normal;
  font-variant-numeric: normal;
  font-weight: 500;
  height: 26px;
  line-height: 26px;
  margin: 0px 4px;
  text-align: center;
  user-select: none;
  vertical-align: top;
  white-space: nowrap;
  width: 35.1719px;
  zoom: 1;
}

.smsBtn {
  background-color: #5bc236;
}

.smsBtn:hover {
  background-color: green;
}

.twitterBtn {
  background-color: #1b95e0;
}

.twitterBtn:hover {
  background-color: #0c7abf;
}

.facebookBtn {
  background-color: #4267b2;
}

.facebookBtn:hover {
  background-color: #365899;
}

.noteButton {
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 3px 1px -2px rgba(0, 0, 0, 0.12);
  padding: 6px 16px;
  border: 0;
  font-size: 12px;
  box-sizing: border-box;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  line-height: 1.75;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-weight: 500;
  border-radius: 4px;
  letter-spacing: 0.02857em;
  text-transform: uppercase;
  cursor: pointer;
  min-width: 150px;
  text-decoration: none;
}

.noteButton:hover {
  opacity: 0.7;
}

.noteButton:active {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}

input[type="range" i]::-webkit-slider-container,
input[type="range" i]::-webkit-media-slider-container {
  -webkit-appearance: inherit;
  min-width: 0px;
  box-sizing: border-box;
  display: flex;
  -webkit-user-modify: read-only !important;
  flex: 1 1 0%;
}

.typing-indicator {
  background-color: #e6e7ed;
  will-change: transform;
  width: auto;
  border-radius: 50px;
  padding: 10px;
  display: table;
  position: relative;
  animation: 2s bulge infinite ease-out;
}

.typing-indicator span {
  height: 10px;
  width: 10px;
  float: left;
  margin: 0 1px;
  background-color: #9e9ea1;
  display: block;
  border-radius: 50%;
  opacity: 0.4;
}

.typing-indicator span:nth-child(1) {
  animation: 1s blink infinite 0.33s;
}

.typing-indicator span:nth-child(2) {
  animation: 1s blink infinite 0.67s;
}

.typing-indicator span:nth-child(3) {
  animation: 1s blink infinite 1s;
}

@keyframes blink {
  50% {
    opacity: 1;
  }
}

@keyframes bulge {
  50% {
    transform: scale(1.05);
  }
}

.shakeClass {
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {
  10%,
  90% {
    transform: translate3d(-2px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(4px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-8px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(8px, 0, 0);
  }
}

.hardOut {
  opacity: 0;
  visibility: hidden;
}

.fadeIn {
  opacity: 1;
  transition: opacity 0.3s;
}

.slowFadeIn {
  opacity: 1;
  animation: fadeLoaderIn 3s;
}

@keyframes fadeLoaderIn {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  40% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}

.notRecordingButton {
  width: 15px;
  height: 15px;
  font-size: 0;
  background-color: darkred;
  border: 0;
  border-radius: 25px;
  outline: none;
  cursor: pointer;
}

.recordingButton {
  width: 15px;
  height: 15px;
  font-size: 0;
  background-color: red;
  border: 0;
  border-radius: 25px;
  outline: none;
  animation: pulse 1.5s infinite linear;
  cursor: pointer;
}

@keyframes pulse {
  0% {
    box-shadow: 0px 0px 5px 0px rgba(173, 0, 0, 0.3);
  }
  65% {
    box-shadow: 0px 0px 5px 13px rgba(173, 0, 0, 0.3);
  }
  90% {
    box-shadow: 0px 0px 5px 13px rgba(173, 0, 0, 0);
  }
}

.longLineBreak {
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}
