.add-employee{
    border-radius: 4px;
    margin-top: 40px;
}
.add-employee .row{
    margin-bottom: 0px;
}
.row-button{
    display: flex;
    justify-content: end;
    margin-bottom: 20px;
}
.row-button .btn-black{
    height: 44px;
    width: 180px;
}

/* employee details */
.split-view{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.split-view .btn-link{
    border: 1px solid #dbdbdb !important;
    color: #000 !important;
    rotate: 90deg;
}
.split-view .btn-link:hover{
    border: 1px solid #dbdbdb;
    color: #4d4d4d;
    background-color: #f1f1f1;
}
.employee-document-list{
    border: 1px solid #dee2e6;
    padding: 14px;
    margin: 10px 0px 20px 0px;
    border-radius: 3px;
}
.employee-document-list .doc_name{
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 12px;
    color: #000;
}
.employee-document-list .doc_file_description{
    color: #999;
    font-size: 15px;
}
.employee-document-list .doc_file_time{
    color: #999;
    font-size: 15px;
}
.edl-one{
    display: flex;
    justify-content: space-between;
}
.edl-one ul{
    display: flex;
    margin-bottom: 0px;
}
.edl-one ul li{
    width: 20px;
    width: 40px;
    justify-content: center;
    display: flex;
    cursor: pointer;
    color: #757575;
    margin-left: 10px;
}
#documents .divide-column{
    margin-top: 20px;
}
.employee-document-list .edl-one ul{
    display: none;
}
.employee-document-list:hover .edl-one ul{
    display: flex;
    align-items: center;
}
/* suggestion */
.suggestions-box {
    border: 0.5px solid #ccc;
    border-top: none;
    position: absolute;
    z-index: 9999;
    background-color: white;
    width: 98%;
    border-radius: 10px;
    margin-left: 3px;
}

.suggestions-box div {
    padding: 8px;
    cursor: pointer;
}

.suggestions-box div:hover {
    background-color: #f0f0f0;
}

/* inner-tabs */
.inner-tabs{
    border-bottom: 1px solid #f5f5f5;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}
.inner-tabs .inner-link{
    cursor: pointer;
    pointer-events: auto;
}
.inner-tabs li{
    border: 1px solid #e8e8e8;
    margin-right: 12px;
    border-radius: 4px 4px 0px 0px;
    border-bottom: 0px;
}
.inner-tabs li a{
    color: #000;
    text-decoration: none;
    padding: 12px 16px;
    display: block;
    border-radius: 4px 4px 0px 0px;
    background-color: #fff;
    font-size: 14px;
}
.inner-tabs li a.active{
    color: #fff;
    font-weight: 600;
    background-color: #000000;
}
.state-option.dropdown-option{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.state-option.dropdown-option h4{
    font-size: 16px;
    background-color: #30a93d;
    color: #fff;
    margin: 0px;
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: 300;
    margin-right: 20px;
}
.exit{
    display: block;
    text-align: center;
    opacity: 0.6;
    position: relative;
    bottom: 12px;
    font-size: 12px;
}
h4.notice-period{
    background-color: #cbcb00 !important;
    color: #000 !important;
    font-weight: 500 !important;
}
.sub-heading.exits{
    background-color: #cbcb0080;
    display: flex;
    justify-content: space-between;
}
.sub-heading.exits span{
    cursor: pointer;
    color: red;
    opacity: 0.7;
}
.sub-heading.exits span .fas{
    padding-right: 5px;
}
.sub-heading.exits span:hover{
    opacity: 1;
}
@media only screen and (max-width: 1000px) {
    .inner-tabs li a {
        padding: 11px 6px;
        font-size: 12px;
        font-weight: 400;
    }
    .inner-tabs li a.active {
        font-weight: 400;
    }
    .inner-tabs li {
        margin-right: 6px;
    }
}