/* [project]/src/workspaces/clients/website/src/app/globals.css [app-client] (css) */
@keyframes loading {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes notice {
  0% {
    opacity: 1;
    background-color: #f10c45;
  }

  50% {
    opacity: .8;
  }

  100% {
    opacity: 1;
  }
}

@keyframes notify {
  0% {
    opacity: 0;
    bottom: -100px;
  }

  100% {
    opacity: 1;
    bottom: 20px;
  }
}

@keyframes ghost {
  0% {
    filter: brightness();
  }

  50% {
    filter: brightness(115%);
  }

  100% {
    filter: brightness();
  }
}

@keyframes comment_slide_down {
  0% {
    margin-top: -80px;
  }

  100% {
    margin-top: 0;
  }
}

@keyframes message_slide_up {
  0% {
    transform: translateY(15px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes loadFade {
  0% {
    opacity: .3;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: .3;
  }
}

@keyframes typingDot {
  0% {
    margin-bottom: 0;
  }

  50% {
    margin-bottom: 5px;
  }

  100% {
    margin-bottom: 0;
  }
}

body {
  border: none;
  margin: 0;
}

.hideScroll {
  scrollbar-color: transparent;
  scrollbar-width: none;
}

.hideScroll::-webkit-scrollbar {
  width: 4px;
}

.hideScroll::-webkit-scrollbar-thumb {
  background-color: #0000;
}

.hideScroll::-webkit-scrollbar {
  display: none;
}

.hideScroll {
  -ms-overflow-style: none;
  overflow: auto;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, a, p, div, input, textarea {
  letter-spacing: .1px;
  color: #485643;
  margin: 0;
  font-family: sans-serif;
}

a, p, text, div, input, button {
  font-size: 14px;
}

input::placeholder {
  font-family: sans-serif;
  font-size: 14px;
}

a {
  color: #485643;
  text-decoration: none;
}

p {
  line-height: 16px;
}

button {
  cursor: pointer;
  background-color: #fff;
  border: none;
}

textarea {
  resize: none;
  outline: none;
}

input:focus {
  outline: none;
}

.title_input::placeholder {
  font-size: 1.5rem;
  font-weight: bold;
}

div {
  box-sizing: border-box;
}

.underline:hover {
  text-underline-offset: 3px;
  cursor: pointer;
  text-decoration: underline;
}

.shadow {
  box-shadow: 0 8px 24px #959da512;
}

.hardShadow {
  box-shadow: 0 8px 24px #959da526;
}

.smallText {
  opacity: .5;
  font-size: 12px;
}

.fade {
  opacity: 1;
  cursor: pointer;
  transition-duration: .3s;
}

.fade:hover {
  opacity: .7;
}

.sortable-ghost, .sortable-drag {
  opacity: 0;
}

.twoLineTextTrim {
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.stack > * {
  border-top: 1px solid #f1f5f3;
  padding: 20px 0;
}

.stack > :first-child {
  border-top: none;
}

* {
  -webkit-user-select: none;
  user-select: none;
}

.clamp-2 {
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

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