.very-long-editor {
    height: 1600px;
    max-height: 1600px;
    font-size: 17px;
    display: inline-block;
    font-size: 17px;
}

.long-editor {
    height: 600px;
    max-height: 600px;
    font-size: 17px;
    display: inline-block;
    font-size: 17px;
}

.editor {
    height: 175px;
    max-height: 175px;
    font-size: 17px;
    display: inline-block;
    font-size: 17px;
}

.small-editor {
    height: auto;
    max-height: 140px;
    display: inline-block;
    font-size: 17px;
}

.tiny-editor {
    height : 50px;
    min-height: 50px;
    max-height: 100px;
    display: inline-block;
    font-size: 17px;
}


.menu-item-style {
    font-family: Proxima Nova;
    font-weight: normal;
    font-style: normal;
    font-size: 10px;
}

.menu {
    display: block;
    position: absolute;
    right: 0px;
    top: 5px;
    visibility: hidden;
}

button + .menu:active,
button:focus + .menu {
    visibility: visible;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  padding-left: 2em;
  text-indent: -1.2em;
}

li::before {
  content: "•  ";
  color: red; /* or whatever color you prefer */
  padding-right: 8px;
}


sul {
  list-style: none;
  padding: 0;
  margin: 0;
}

sli {
  padding-left: 2em;
  text-indent: -1.2em;
}

input[type="radio"] + label span {
    transition: background .2s, transform .2s;
}

input[type="radio"] + label span:hover,
input[type="radio"] + label:hover span{
    transform: scale(1.2);
}

input[type="radio"]:checked + label span {
    background-color: #3490DC;
    box-shadow: 0px 0px 0px 2px white inset;
}

input[type="radio"]:checked + label{
    color: #3490DC;
}

.token-autocomplete-container {
    display: inline-flex;
    flex-wrap: wrap;
    border: 1px solid #E6E6E6;
    background-color: #FFFFFF;
}

.token-autocomplete-container .token-autocomplete-container * {
    box-sizing: border-box;
}

.token-autocomplete-container .token-autocomplete-input {
    color: black;
    font-size: 17px;
    line-height: 24px;
    margin: 4px 2px;
    padding: 0px 8px;
}

.token-autocomplete-container .token-autocomplete-input:empty::before {
    content: attr(data-placeholder);
    color: rgb(0,0,0,0.6);
}

.token-autocomplete-container .token-autocomplete-token {
    font-size: 17px;
    line-height: 24px;
    background-color: #E6E6E6;
    margin: 4px 2px;
    border-radius: 24px;
    padding: 0px 8px;
    pointer-events: none;
}

.token-autocomplete-container .token-autocomplete-token:hover {
    background-color: #EF9A9A;
}

.token-autocomplete-container .token-autocomplete-token .token-autocomplete-token-delete {
    cursor: pointer;
    font-size: 17px;
    line-height: 20px;
    margin-left: 4px;
    pointer-events: auto;
    border-radius: 50%;
    height: 24px;
    width: 24px;
    display: inline-block;
    text-align: center;
}

.token-autocomplete-container .token-autocomplete-token .token-autocomplete-token-delete:hover {
    background-color: #e55858;
}

.token-autocomplete-container .token-autocomplete-suggestions {
    display: none;
    width: 100%;
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

.token-autocomplete-container .token-autocomplete-suggestions li {
    width: 100%;
    padding: 8px;
    cursor: pointer;
}

.token-autocomplete-container .token-autocomplete-suggestions li.token-autocomplete-suggestion-active {
    color: #747474;
    background-color: #fdfdfd;
}

.token-autocomplete-container .token-autocomplete-suggestions li.token-autocomplete-suggestion-highlighted {
    background-color: #95caec;
}

.arrow-up {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;

  border-bottom: 10px solid #f00;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;

  border-top: 10px solid #000;
}

.stats {
    right: 8px;
    bottom: 4px;
}

.background-button-color {
    background-color: #FF0000;
}

.text-link-color {
    color: #FF0000;
}

.ql-editor {
    box-sizing: border-box;
    line-height: 1.42;
    height: 88%;
    outline: none;
    overflow-y: auto;
    tab-size: 4;
    text-align: left;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.message-list {
    height: 50%;
}

.page-numbers {
    left: 50%;
    transform: translateX(-130%);
}

.normal-item {
    height: 160px;
    max-height: 160px;
}

.long-item {
    height: 320px;
    max-height: 320px;
}

.short-item {
    height: 64px;
    max-height: 64px;
}

.comment-list {
    height: auto;
    max-height: 150px;
}

.text-xxs {
    font-size: 0.6rem;
}

.toggle__dot {
    top: -0.25rem;
    left: -0.25rem;
    tansition: all 0.3s ease-in-out;
}

input:checked ~ .toggle__dot {
    transform: translateX(100%);
    background-color: #FF0000;
}

