.fixed {
    position: fixed;
}

.relative {
    position: relative;
}

.custom-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    padding: 1rem;
    background: transparent;
}

.mt-0 {
    margin-top: 0;
}

.mt-2px {
    margin-top: 2px;
}

.mb-0 {
    margin-bottom: 0;
}

.text-white {
    color: white;
}

.px-8px {
    padding-right: 8px;
    padding-left: 8px;
}

.max-w-full {
    max-width: 100%;
}

.word-wrap-break-word {
    word-wrap: break-word;
}

.w-24px {
    width: 24px;
}

.h-24px {
    height: 24px;
}

.p-0 {
    padding: 0px;
}

.hidden {
    display: none;
}

.flex-grow {
    flex-grow: 1;
}

.bg-error {
    background-color: #931726;
}

.select-none {
    user-select: none;
}

.cursor-pointer {
    cursor: pointer;
}

.btn-success {
    background: var(--success-color) !important;
}

.custom-badge-danger {
    display: inline-block;
    color: white;
    background-color: red !important;
    border-radius: 100%;
    border-radius: 20px;
    padding: 0 7px;
}
