﻿.scrollbar-hidden::-webkit-scrollbar {
    display: none;
}

.scrollbar-hidden {
    scrollbar-width: none;
}

.min-width-200px {
    min-width: 200px;
}

.max-width-200px {
    max-width: 200px;
}

.max-height-100px {
    max-height: 100px;
}

.max-height-75px {
    max-height: 75px;
}

.text-word-wrap {
    word-wrap: break-word;
    word-break: break-word;
    white-space: break-spaces;
}

.bg-success-light {
    background-color: #5cd65c;
}

.bg-danger-light {
    background-color: #ff8080;
}

.bg-info-light {
    background-color: #60d9eb;
}

.bg-warning-light {
    background-color: #ffdb4d;
}

.container-overwrite {

    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;

}