
/* we will explain what these classes do next! */
.v-enter-active,
.v-leave-active {
  transition: opacity 0.5s ease;
}

.v-enter-from,
.v-leave-to {
  opacity: 0;
}

[v-cloak] {
    display: none;
}

#sideBar > .openMenu{
    height: 100vh;
    width: 400px;
    background:#005b96;
    color: #fff;
    padding: 30px;
    float: left;
}

#sideBar .closedMenu{
    position: fixed;
    top: 0;
    left: 0;
    background: #005b96;
    color: #fff;
    width: 40px;
    height: 40px;
    z-index: 1;
    border-bottom-right-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
}

#sideBar .closedMenu i{
    transform: translateX(-2px);
}

.listFunction{
    overflow: auto;
}

.listFunction .item{
    font-size: 20px;
    margin-bottom: 20px;
}

.listFunction .item.open{
    background: #b3cde0;
    border-radius: 10px;
}

.listFunction .item .first{
    background: #6497b1;
    padding: 20px 15px;
    border-radius: 10px;
    color: #fff;
}

.listFunction .item .child{
    padding: 15px 10px 15px 25px;
    border: 1px solid #fff;
    border-top: none;
    border-radius: 10px;
    cursor: pointer;
}

.switch{
    transform: scale(.8);
    margin: 0;
}

.main > .row > .col-12{
    padding: 20px;
    overflow: auto;
    height: 100vh;
}

.card .card-header{
    background: #005b96;
    color: #fff;
}

.tableDef thead tr th{
    min-width: 120px;
}

.no-bottom .dt-buttons{
    display: none;
}

table.dataTable tbody tr.odd{
    background: #f3f3f3;
}

.modalPop .bgGrey{
    position: fixed;
    right: -5px;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 1;
    opacity: .3;
    cursor: pointer;
}

.modalPop .content{
    position: fixed;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    z-index: 2;
    min-width: 250px
}

.modalPop .close{
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}