 
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

 
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

 
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  border-radius: 50%;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F0;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F0;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
} 

.info-prop-mark-grey{
  margin: 0px 5px 2px 0px;
  padding: 2px 5px;
  border-radius: 4px;
  background-color: gray;
  color: white;
  display:inline-block;
}
  
#cancelAction{
 right: 10px;
 bottom: 10px;
 position: fixed;
 background-color: white;
} 
 
/*заголовок ячейки таблицы с основным содержимым */
.section-th{
  text-align: center;
  font-weight: bold;
} 

.font-weight-600{
    font-weight: 600;
}

.text-danger a{
   color: #dc3545;
}

.text-std a{
   color: black;
}

.table-hover tbody tr:hover .fixed_col { 
    background-color: rgba(0,0,0,.025); 
}

.row_selected, .row_selected .fixed_col{
   background: #b4d6ff;
}
.row_selected:hover, .row_selected:hover .fixed_col{
   background: #cce0ff !important;
}
 
.cell-rotated { 
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  transform: rotate(180deg); 
  vertical-align: bottom;
  margin:0 auto;
}

.row-filter-button {
    float: left;
    width: 100%;
    background: whitesmoke;
    padding: 10px 12px;

    cursor: pointer;
    border: 1px solid lightgray;
    box-sizing: border-box; 
}

.row-filter-list {
    float: left;
    width: 100%;

    border: 1px solid lightgray;
    border-top: none;
    box-sizing: border-box;
    padding: 10px 12px;

}

.row-filter-list ul {
    margin: 10px 0;
    max-height: 200px;
    overflow-y: auto;
    list-style: none;
    padding: 0;
}
    
.row-filter-list ul input[type="checkbox"] {
    position: relative;
    top: 2px;
 }