.migration {
    display: flex;
    flex-direction: row;
    border: 1px solid black;
    align-items: center;
    padding: 2px 4px;
}

.migration:hover {
    cursor: pointer;
    border-color: var(--green);
}

.migration img {
    margin-right: 5px;
}

.middle {
    padding: 0 5px;
}

/*MAIN MENU*/
.main-menu {
    padding: 10px;
    min-width: 200px;
    border-right: solid 1px var(--toggleForeground12);
    height: 100vh;
}

.main-menu h4, .main-menu h5 {
    color: var(--textcolor);
}

.menu-title {
    margin-left: 15px;
    color: var(--toggleForeground);
    margin-bottom: 1px;
}

.menu-header {
    height: 40px;
}

.menu-list {
    /*padding-top: 35px;*/
    margin-left: 25px;
    overflow-y: auto;
    height: calc(100% - 60px);
}

.menu-item {
    margin-top: 15px;
    cursor: pointer;
}

.menu-item .fas {
    height: 33px;
}

.menu-item:hover .fas, .menu-item.active .fas {
    background-color: var(--green);
    cursor: pointer;
}

.menu-item:hover .menu-title, .menu-item.active .menu-title {
    color: var(--textcolor);
    font-weight: 700;
    cursor: pointer;
}

.menu-item i {
    width: 30px;
}
/*CONTENT*/
.content {
    width: calc(100vw - 200px);
}

.chip {
    color: var(--textcolor);
    background-color: var(--textcolor12);
    padding: 2px 8px 2px 8px;
    border-radius: 12px;
    cursor: pointer;
    margin-right: 5px;
    font-size: 12px;
    margin-top: 2px;
}

.chip.alert {
    background-color: var(--red12);
    color: var(--red);
}

.chip.success {
    background-color: var(--lightGreen12);
    color: var(--lightGreen);
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 17px;
    margin-left: 15px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--toggleForeground);
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 2px;
    bottom: 2px;
    background-color: var(--white);
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--lightGreen);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--lightGreen);
}

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

/* Rounded sliders */
.slider.round {
    border-radius: 17px;
}

.slider.round:before {
    border-radius: 50%;
}

/*INFODATA*/
.information {
    width: 100%;
    height: calc(100vh - 60px);
    background-color: var(--toggleBackground);
}

.billlist {
    width: 100%;
    height: calc(100vh - 60px);
}

.billitem p {
    margin-top: 4px;
}

/*todo list not wrapping vertically*/
.billlist ul {
    max-height:  calc(100vh - 60px);
    width: 100%;
}

.billlist ul li {
    padding: 2px 10px;
}

.lists {
    width: 100%;
}

.mainlist {
    width: 35%;
    height: 100%;
    position: relative;
}

.sublist {
    width: 65%;
    height: 100%;
    border-left: solid 1px var(--white);
    position: relative;
}

.mainlist ul {
    max-height: calc(100vh - 65px);
    overflow-y: auto;
}

.mainlist .mono-list {
    max-height: calc(100vh - 65px);
    overflow-y: auto;
}

.mainlist .dual-list {
    max-height: calc(100vh - 103px);
    overflow-y: auto;
}

.sublist .mono-list {
    max-height: calc(100vh - 85px);
    overflow-y: auto;
}

.sublist .dual-list {
    max-height: calc(100vh - 117px);
    overflow-y: auto;
}

/*.sublist ul {
    max-height: calc(100vh - 85px);
    overflow-y: auto;
}*/

/*LOADING*/
.loading {
    margin-left: 100px;
}

.floating {
    right: 0;
}

.overdue {
    background-color: var(--red);
    color: var(--white);
}

.overdue p {
    color: var(--white);
}
