.overview-box{
    border: 1px solid #cbd6e2;
    border-radius: 10px;
    padding: 20px;
}

.overview-box .box-header{
    font-weight: bold;
    font-size: 16px;
}

.overview-box .box-content{

}


.overview-box .box-content .file-item{
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    width: 100%;
    background: #fafafa;
    padding: 5px 20px;
    border-radius: 10px;
    margin:5px 0px;
    transition-duration: .4s;
}

.overview-box .box-content .file-item:hover{
    background: #f0f0f0;
}

.overview-box .box-content .file-item .file-item-icon {
    padding: 10px;
}

.overview-box .box-content .file-item .file-item-icon i{
    font-size: 30px;
}

.overview-box .box-content .file-item .file-item-check{
    color:rgba(0,0,0,.1);
    margin:0px 5px;
}

.overview-box .box-content .file-item .file-item-check i.checked{
    color: #4ccc01;
}
.overview-box .box-content .file-item .file-item-description{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.file-item-description-left {
    width: 80%;
}

.file-item-description-right{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 20%;
}

.overview-box .box-content .file-item .file-item-description .file-item-description-name{
    font-weight: bold;
}
.overview-box .box-content .file-item .file-item-description .file-item-description-targeting{
    font-size: 10px;
}
.overview-box .box-content .file-item .file-item-description .file-item-description-date{
    font-size: 10px;
}

.overview-box .box-content .file-item .file-item-description .file-item-description-ref{
    font-size: 10px;
}
span.select2.select2-container{
    width: 100%!important;
    min-width: 100%;
    max-width: 100%;
}

.select2-selection--single{
    height: calc(2.25rem + 2px)!important;
    padding: 0.375rem 0.75rem;
    border: 1px solid #ced4da!important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 24px!important;
    font-size: 1rem;
    line-height: 1.5;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
    top:6px!important;
}

.select2-results__group{
    background: #e9e9e9;
    color: #969696;
    font-weight: bolder;
    font-size: 12px;
}

.file-item.downloadable a:hover{
    cursor:pointer;
}

.file-item.notdownloadable{
    opacity: .4;
}

.overview-box .box-content .file-item.notdownloadable:hover{
    background: #ffeaea;
}

.overview-box .check-first{
    border: 1px solid red;
    padding: 10px;
    margin: 10px 0px;
    background: #ffeaea;
    border-radius: 3px;
    transition-duration: .4s;
}
.overview-box .check-first input{
    margin-right: 10px;
}

.overview-box .check-first:hover{
    border: 1px solid #56c536;
    background: #f0ffea;
}

.overview-box .box-content .file-item{
    border:1px solid transparent;
}
.overview-box .box-content .file-item.downloadable:hover{
    border: 1px solid #56c536;
    background: #f0ffea;
}
.alreadyvalidated-message{
    font-size: 12px;
}
.alreadyvalidated-message i{
    color:#4ccc01;
    margin-right:5px;
}

.file-item.searchhide{
    display: none!important;
}
div.pagination{
    display: flex;
    flex-wrap: wrap;
}


div.pagination span{
    border: 1px solid #ced4da;
    background: #fafafa;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 2px 4px 2px 0px;
    transition-duration: .4s;
    color:#999;
    min-width: 40px;
    text-align: center;
}

div.pagination span.active,
div.pagination span:hover{
    border: 1px solid #aeb4ba;
    background: #f0f0f0;
    color:#212529;
}

.subfilter{
    display: none;
}

.placeholder{
    background-color: #dadada;
    animation: placeholder-glow 2s ease-in-out infinite;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 5px 20px;
    border-radius: 10px;
    margin: 5px 0px;
    transition-duration: .4s;
    height:65px;

}

.placeholder i{
    font-size: 30px;
    color:#999;
}

@keyframes placeholder-glow {
    50% {
        opacity: .5;
    }
}

.page-item.active .page-link {
    color: #fff;
    background-color: #bdcbd0;
    border: 1px solid #bbbfbf;
}

.pagination-controls{
    display: flex;
}

.pagination-controls select{
    text-align:center;
    border-radius:0px;
    margin: 0px 3px;
}

.pagination-controls span.page-link.page-prev{
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.pagination-controls span.page-link.page-next{
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.pagination-controls .page-link:not(.active){
    color: #cdcdcd;
    background: #f0f0f0;
}

.pagination-controls .page-link:not(.active):hover{
    cursor:inherit;
}

.pagination-controls .page-link.active:hover{
    color: #212529;
    background: #e6eeff;
}