.popper_pr {
    display: inline-block; /* Строчно-блочный элемент */
    position: relative; /* Относительное позиционирование */
}
.popper_pr:hover::after {
    content: attr(data-title); /* Выводим текст */
    position: absolute; /* Абсолютное позиционирование */
    left: 0; top: 0; /* Положение подсказки */
    z-index: 100; /* Отображаем подсказку поверх других элементов */
    background: rgba(255,255,230,0.9); /* Полупрозрачный цвет фона */
    font-family: Arial, sans-serif; /* Гарнитура шрифта */
    font-size: 14px; /* Размер текста подсказки */
    padding: 5px 10px; /* Поля */
    border: 1px solid #333; /* Параметры рамки */
}

.red_pr{
    background-color: #ea524b;
}
.red_pr:hover{
    background-color: #FF4136;
}

.noActivePr{
    background-color: #f2dcdb;
}

.activePr{
    background-color: #d8e4bc;
}

.enableStatusOn{
    color:#7c9a3b;
}

.enableStatusOff{
    color: #000;
}

.disablePrOn{
    pointer-events: none;
    color: #ccc;
}

.disablePrOff{
    pointer-events: auto;
    color: #333;
}

.pointerPr{
    cursor: pointer;
}
#blackFonAjax{
    background-color: black;
    opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    width: 100%;
    display: none;
    text-align: center;
}

.redPr{
    background: rgba(255,0,0,.1) !important;
}
.greenPr{
    background: rgb(229, 235, 216) !important;
}

.grecaptcha-badge {
    margin-right: -1000px;
}

.input-350{
    width: 350px;
}

.input-400{
    width: 400px;
}

.input-450{
    width: 450px;
}

.input-500{
    width: 500px;
}

.input-550{
    width: 550px;
}

.input-600{
    width: 600px;
}

.input-650{
    width: 650px;
}

.input-max{
    width: 100%!important;
    max-width: 100%!important;
}

.monitor__table tr a.monitor__favorit-ico.active{
    opacity: 1!important;
}
.nowrapPr{
   white-space: nowrap;
}