 /* toggle checkbox */ 
.toggle-checkbox {
	height: 0;
	width: 0;
	visibility: hidden;
}
.toggle-label {
	cursor: pointer;
	text-indent: -9999px; 
	width: 25px;
	height: 15px;
	background: grey;
	/* display: block; */
	border-radius: 10px;
	position: relative;
}
.toggle-label:after {
	content: '';
	position: absolute;
	top: 1px;
    left: 1px;
    width: 15px;
    height: 13px;
	background: #fff;
	border-radius: 10px;
	transition: 0.3s;
}
.toggle-checkbox:checked + label {
	background: #bada55;
}
.toggle-checkbox:checked + label:after {
	left: calc(100% - 1px);
	transform: translateX(-100%);
}
.toggle-label:active:after {
	width: 130px;
}
/* toggle checkbox */ 


.content {
    background-color: #fff;
    padding: 0 40px;
}
#main {
    padding: 40px  15px;
}
#main .top-line {
    width: 100%;
    margin-bottom: 40px;
}
#main .top-line .title {
    font-size: 36px;
    display: inline-block;
}
#main .top-line .arq {
    font-size: 16px;
    margin-left: 10px;
    margin-right: 10px;
}
#main .top-line .filtr_btn {
    margin-left: 20px;
    display: inline-block;
    cursor: pointer;
    caret-color: transparent;
}



.add-button {
    float: right;
    margin-top: 8px;
}
.add-button:hover {
    color: #fff;
    text-decoration: none;
}
.del-button {
    float: right;
    margin-top: 8px;
    background-color:red;
    color: #fff;
    text-decoration: none;
}

#main .header2 {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 10px;
}
#main .header2 a {
    color: #555;
}
#main .header2 .active {
    color: red;
}
#main .info-content {
    width: 100%;
    margin: auto;
    /* float: right; */
}
#main .info-content .entr-menu {
    text-align: center;
    padding: 100px;
}

#main .info-content .top {
    font-size: 18px !important;
    margin-top: 5px;
} 
#main .info-content .bar {
    font-size: 16px;
    padding: 10px 0;
} 
#main .info-content .bar .inv_ch {
    color: black;
}


#main .info-content .bar-click:hover {
    transition: 0.5s;
    background-color: #e5e5e5;
} 
#main .info-content .line {    
    background-color: #dddddd;
    height: 1px;
    width: 100%;
   /*  margin: 10px 0; */
}
#main .info-content .line_red {    
    background-color: #bada55;
}

#main .info-content .bar div {
    /* text-overflow: ellipsis; 
    white-space: nowrap;
    overflow: hidden;    */
}
#main .info-content .bar .no-ecl {
    /* text-overflow: unset;
    white-space: unset;
    overflow: unset; */
}
#main .info-content .bar .ecl {
    text-overflow: ellipsis; 
    white-space: nowrap;
    overflow: hidden;   
}
#main .info-content .bar .input_ch {
    width: 20px;
    height: 20px;
}
#main .info-content .bar .input_night {
    width: 40px;
    height: 30px;
}
/* #main .info-content .bar .tip {
    position: relative;
}
#main .info-content .bar .tip:hover::after { 
    content: attr(data-title); 
    position: absolute;
    left: 20%; top: 30%; 
    z-index: 1; 
    background: rgba(255,255,230,0.9);
    font-size: 11px; 
    padding: 5px 10px; 
    border: 1px solid #333;
} */