#sortable1, #sortable2 {
    list-style-type: none;
    background: #eee;
    padding: 5px;
    max-width: 49%;
}
#sortable1 li, #sortable2 li {
    margin: 5px;
    padding: 5px;
    font-size: 1.2em;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: 1px solid #c5c5c5;
    background: #f6f6f6;
    font-weight: normal;
    color: #454545;
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    border: 1px solid #363c78;
    background: #5e72e4;
    color: white;
}
.table-responsive a.home {
    background: #ccc;
    transition: all 0.3s ease;
    transform: rotate(0);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
}
.table-responsive a.home.active{
    background: #363c78;
    transform: rotate(360deg);
}
.table-responsive a.home i{
    margin: auto;
}
.table-responsive a.home i::before{
    color: white;
}
ul .elem {
    cursor: pointer;
}
@media(max-width: 768px){
    .main-content .container-fluid.mt--7{
        margin-top: -40px!important;
    }
    .header .mask, .header{
        z-index:-1;
    }
    .main-content{
        position: unset;
    }
}
.fc-event-title-container[data-tooltip] {
    position: relative;
}

.fc-event-title-container[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #212529;
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s;
    z-index: 9999;
}

.fc-event-title-container[data-tooltip]:hover::after {
    opacity: 1;
}

