body {
    font-family: 'Nunito', sans-serif;
    height: 100%;
}
:root {
  /*--main-color: #ecf0f1;*/
  --point-color: #8FDD62;
  --size: 5px;
}
.loader-image{
    width: 100%;
    height: 100%;
    background: rgb(67 67 67 / 20%);
    position: fixed;
    z-index: 99;
}

.loader {
  /*background-color: var(--main-color);*/
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0; left: 0;
  display: flex;
  align-items: center;
  align-content: center; 
  justify-content: center;  
  z-index: 100000;
}

.loader__element {
  border-radius: 100%;
  border: var(--size) solid var(--point-color);
  margin: calc(var(--size)*2);
}

.loader__element:nth-child(1) {
  animation: preloader .6s ease-in-out alternate infinite;
}
.loader__element:nth-child(2) {
  animation: preloader .6s ease-in-out alternate .2s infinite;
}

.loader__element:nth-child(3) {
  animation: preloader .6s ease-in-out alternate .4s infinite;
}

@keyframes preloader {
  100% { transform: scale(2); }
}

/*.loader-image img{
    position: absolute;
    top: 30%;
    left: 45%;
    width: 10%;
}*/

.alert {
    width: 29%;
    float: right;
    position: fixed !important;
    z-index: 9999;
    right: 10px;
    top: 10%;
}

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert .close, .alert .close:hover, .alert .close:focus{
    opacity: 1;
}

.alert button.close {
    top: 15px;
    position: absolute;
    right: 11px;
    font-size: 24px;
}

.alert-content {
    float: left;
    width: auto;
    color: #ffffff;
}

span.alert-title {
    float: left;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

.alert.success button.close {
    color: #ffffff;
}

.alert.error button.close {
    color: #ffffff;
}

.error-alert{
    background: #c04f3b;
    color: #ffffff;
}
.success{
    /* background: #3a74b9; */
    background: #28a745!important;
    color: #ffffff;
}

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

.message-tag{
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.message-right
{
    text-align: right;
    align-self: end;
    max-width: 80%;
    background: #f6f6f6;
    border-radius: 5px;
    padding: 5px 10px;
}
.message-left
{
    text-align: left;
    align-self: start;
    width: 80%;
    background: #f6f6f6;
    border-radius: 5px;
    padding: 5px 10px;
}

.message-time{
    font-size: 10px;
    color: #999ea6;
}

.btnCncl {
    background: #E6E6E6 !important;
    color: #7D7D7D !important;
    border-radius: 25px !important;
    text-align: center !important;
    font-size: 15px !important;
    min-height: 40px !important;
}
.btngreen {
    background: #8FDD62 !important;
    color: #fff !important;
    border-radius: 25px !important;
    text-align: center !important;
    font-size: 15px !important;
    min-height: 40px !important;
}
.btnRed {
    background: #FC4242 !important;
    color: #fff !important;
    border-radius: 25px !important;
    text-align: center !important;
    font-size: 15px !important;
    min-height: 40px !important;
}

.messageCols .acceptence .badge {
    line-height: 1.5;
    border-radius: 50%;
    min-width: 18px;
}
.messageCols .acceptence {
    /* max-width: 186px; */
/*    width: inherit;*/
    font-size: 12px;
    color: #000000 !important;
    font-weight: 500 !important;
    display: flex;
    justify-content: space-between;
}
.messageCols .acceptence .preview_chat_message{
    width: 80%;
}
table#printLabel_table td {
    padding: 0;
    font-size: 12px;
    font-weight: 500;
}