.nowrap {
    text-wrap-mode: nowrap;
}

.text-3sm {
    font-size: 0.75rem;
}

.border-gray {
    border-color: #99A1B7;
    border: solid 1px;
}

.spinner-border {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-bottom: -3px;
    border: 0.15em solid rgb(119 135 224);
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}
.notready {
    position: fixed;
    inset: 0;
    background-color: white
}
  
@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.4;
    }
}

.page-title {
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-grow: 1;
    font-weight: 600;
    color: var(--tw-gray-900);
}
.skeleton2 {
    background-color: #e5e7eb; /* Tailwind gray-200 */
    border-radius: 4px;
    border-radius: 20px;
    animation: pulse 1.7s infinite ease-in-out;
}
.skeleton {
    background-color: #e5e7eb; /* Tailwind gray-200 */
    border-radius: 4px;
    border-radius: 20px;
    animation: pulse 1.7s infinite ease-in-out;
}
.skeleton-menu {
    background-color: #ffffff; /* Tailwind gray-200 */
    border-radius: 4px;
    height: 30px;
    margin-top: 5px;
    border-radius: 10px;
    animation: pulse 1.4s infinite ease-in-out;
}
.skeleton-menu-hide {
    display: none;
}

.horizontal-line {
    width: 20px;
    margin-left: -10px;
    margin-top: 12px;
    border-top: solid;
    border-color: #3391ff;
}

.required:after {
    content: "*";
    position: relative;
    font-size: inherit;
    color: #f1416c;
    padding-left: .25rem;
    font-weight: 700
}

.ts-wrapper.required:after {
    content: none;
}