body{
    overflow-x: hidden;
}
#app{

    position: relative;
}
#app .login{
    background-image: url('../img/outdoor.png');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: calc(100vh - 55px);
    display: flex;
}
#app .login .container{
    margin-top: 30px;
    margin-bottom: 30px;
}


.bd-sidebar{
    flex: 0 1 320px;
    padding: 0px;
    padding-top: 15px;
    height: 100vh;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-right: 1px solid rgba(0,0,0,.1);
    order: 0;
    border-bottom: 1px solid rgba(0,0,0,.1);
    background-color: white;
}
.bd-sidebar .list-group{
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}
@media (max-width: 1199px) {
    .bd-sidebar{
      width: 100%;
      height: auto;
      flex: 0 1 100%;
      position: relative;
      min-width: 100%;
    }
    .list-group{
        flex-direction: row;
        width: 100%;
    }
    .list-group-item{
        border: none;
    }
    .nav.bd-sidenav{
        display: none;
    }
  }

.d-item{
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #e3e6f0;
    border-radius: .35rem;
    box-shadow: 0 .15rem 1.75rem 0 rgba(58,59,69,.15)!important;
    margin-bottom: 30px;
    width: 100%;

}


.d-item-title{
    padding: 15px 20px;
    background-color: rgb(248, 249, 252);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.d-item-title p{
    margin: 0px;
    font-weight: 700;

}
.d-item-title div{
  display: flex;
  align-items: center;
}
.filters{
    margin: 10px;
}

.filters form{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.filters ul.prime{
    display: flex;
    align-items: center;
    list-style: none;
    cursor: pointer;
    margin: 0px;
    padding-left: 5px;
}

.filters ul.prime a{
    margin-right: 10px;
    color: black;
    text-decoration: none !important;
}
.d-item-content{
    padding: 15px 20px;
    max-height: 80vh;
    overflow: hidden;
    overflow-y: auto;
}
.d-item-content label {
    cursor: pointer;
    color: grey;
}

.d-item-content label:hover {
    color: black;
}
.d-item-content input[type=checkbox]:checked + label{
    font-weight: 900;
    color:black;
}
.bd-content{
    max-width: 100%;
    flex: 0 0 calc( 91.666% - 40px);
}

@media (max-width: 1199px) {
    .bd-content{
        flex: 0 0 100%;
    }
    table.table{
        width: 100%;
        overflow: auto;
        white-space: nowrap;
    }
}

input[type="file"]{
    padding-right: 15px;
    padding-left: 15px;
}


@media (max-width: 1199px) {
    .pl-md-5, .px-md-5 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

.clickToToggle{
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}



#msg{
    position: fixed;
    bottom: 10px;
    width: 100%;
    max-width: 500px;
    max-height: 300px;
    overflow-y: auto;
    right: 0px;
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
    z-index: 2000;
    box-shadow: 0 .15rem 1.75rem 0 rgba(58,59,69,.15)!important;
    color: green;
    transition: all 0.3s;
}
#msg.hidden{
    transform: translate(100%, 0);
    transition: all 0.5s;
}
#msg.error{
    color: red;
}
#msg.success{
     color: green;
}
