/*Document List Style Starts*/
.docList {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
@media only screen and (max-width: 768px){
    .docList{
        justify-content: center;
    }
    
}
.docList .docList__item {
    border: 1px solid lightgray; 
    flex-basis: 23%;
    position: relative;
    min-width: 200px;
    margin: 0 1rem 1rem 0;
    min-height: 180px;
}

.docList .docList__itemIcon {
    text-align: center;
    border-bottom: 1px solid lightgray;
    padding: 1rem;
}

.docList .docList__itemIcon img {
    max-width: 4rem;
}

.docList .docList__itemTitle {
    padding: 2px 0.5rem;
    display: flex;
    align-items: center;
    height: 52px;
}

.docList .docList__info {
    display: flex;
    justify-content: space-between;
}

.docList .docList__date {
    padding: 2px 0.5rem;
}

.docList .docList_newBadge {
    position: absolute;
    top: 1rem;
    width: 52px;
    left: 0;
    padding: 4px 1rem 4px 4px;
    background-color: var(--color-primary);
    color: #ffffff;
    overflow: hidden;
    font-size: 12px;
}

.docList .docList_newBadge::after {
    content: '';
    width: 19px;
    height: 19px;
    background-color: #f9f9f9;
    -webkit-transform: rotate(46deg);
            transform: rotate(46deg);
    position: absolute;
    right: -9px;
}

.docList .docList__actionIcons {
    padding: 2px 0.5rem;
}

.vidList{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
@media only screen and (max-width: 768px){
    .vidList{
        justify-content: center;
    }
    
}
.vidList_item{
    flex-basis: 30%;
    position: relative;
    min-width: 220px;
    margin-right: 20px;
    margin-bottom: 20px;
    border: 1px solid lightgray;
}
.vidList_item .vidList_video {
    position: relative;
    height: 160px;
}
 .vidList_item img { 
    -o-object-fit: cover; 
       object-fit: cover;
        height: 100%; 
            width: 100%;
}
.vidList_item .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    color: white;
    font-size: 45px;
    z-index: 1;
}
.vidList_item .vidList_video .docVid_YTVideo{
    height: 100%;
}
.vidList_item .vidList_video iframe{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.vidList_item .vidList_video:hover{
    cursor: pointer;
}
.vidList_item .vidList_video:hover .circle{
    color: red; 
}
.vidList_title{
    padding: 2px 0.5rem;
    text-transform: capitalize;
}
@media only screen and (max-width: 768px){
    .healthCareTab .side-tabs ul.tab-nav{
        width: 100%;
    }

    .healthCareTab .side-tabs ul.tab-nav li{
        display: inline-block;
    }
}

/*Document List Style Ends*/