 .tv-container{
        display: flex;
        width: 100%;
        height: auto;
        font-family: Arial;
        box-sizing: border-box;
        margin-bottom: 1rem;
        transition: all 300ms;
        position: relative;
        align-items: flex-start;
    }

    .tv-container h3{
        color: #af2639;
        font-size: 16px;
    }

    .tv-container ul {
        width: 100%;
        padding: 0;
    }

    .tv-container ul li {
        list-style: none;
        width: 100%;
        font-size: 10pt;
    }

    .tv-container ul li a{
        text-decoration: none;
        color: black;
        display: block;
        padding: 0.5rem 0;
        margin-left: 0.5rem;
        border-bottom: 1px dotted #e4e4e4;
    }


    .tv-container ul li a:hover{
        /*text-decoration: underline;*/
        color: #ea2320;
    }
    .tv-container ul li:hover{
        color: #ea2320;
    }

    .active{
        color: #ea2320;
    }

    .cat-title{
        background: #ea2320;
        color: white;
        width: 90%;
        display: block;
        padding: 0.6rem 0;
        margin: 0 auto;
        text-align: center;
    }

    .hr{
        width: 60%;
        display: block;
        padding-bottom: 0.5rem;
        /* border-bottom: 2px solid #c9858f; */
        margin-left: 0.4rem;
    }

    .tv-category{
        width: 25%;
        float: left;
        margin-left: 0;
    }

    .tv-docs{
        width: 75%;
        display: inline-block;
        padding-left: 2%;
        flex: 1;
    }

    .tv-list table {
       	display: block;
        overflow: hidden;
        overflow-x: auto;
    }

.tv-list table>tbody{
	width: 100%;
	display: inline-block;
}

    .tv-list table tr td+td{
       padding-left: 10px;
    }

    .tv-list table tr td{
    	flex: 1;
    	padding-bottom: 10px;
    }

    .tv-list table tr td>a{
    	display: inline-block;
    	height: 100%;
    }
    
    .tv-list table tr{
    	display: flex;
    	align-items: stretch;
    }

    .tv-doc{
        display: inline-block;
        text-align: center;
        cursor: pointer;
        padding: 1rem;
        border-radius: 3px;
        box-shadow: 1px 1px 4px silver;
        width: 100%;
        height: auto;
        border: 1px solid #e4e4e4;
        margin-bottom: 10px;
        height: 100%;
    }

    .tv-doc:hover{
        box-shadow: 2px 2px 6px silver;
    }

    .tv-doc img{
        width: 100%;
        height: 100%;
        max-height: 100%;
        /*min-width: 80px;
	    max-width: 210px;*/
    }


    .tv-doc div:nth-child(1){
        padding: 10px;
        width: auto;
        height: 280px;
        border: 1px solid #e4e4e4;
    }

    .tv-doc div:nth-child(1)>img{
    	object-fit: scale-down;
    }

    .tv-doc div:nth-child(2){
        width: 100%;
        height: auto;
        overflow: hidden;
        text-align: left;
        margin-top: 10px;
        display: block;
        overflow: hidden;
        margin-bottom: 10px;
        color: #424242;
        font-weight: bold;
    }

.tv-doc div:nth-child(2)>span{
	font-size: 13px;
	line-height: 1.4 !important;
}


    .tv-doc div:nth-child(3){
        color: silver;
        display: flex;
      	float: left;
        padding-left: 0.1rem;
    }

    .tv-doc div:nth-child(3) > p{
	    display: flex;
        justify-content: center;
        flex-direction: row;
	    align-items: center;
	    overflow: hidden;
	    margin: 0;
	    margin-right: 10px;
	    font-size: 12px;
    }

	.tv-doc div:nth-child(3) img{
		width: 15px !important;
		height: 15px !important;
		min-width: 0px !important;
		margin-right: 10px;
		opacity: 0.3;
	}

    .tv-doc div:nth-child(3) p:nth-child(1) img{
        opacity: 1 !important;
    }

    .tv-filter{
        display: flex;
        padding: 0.5rem 0;
        margin-bottom: 0.5rem;
    }

    .tv-filter div:nth-child(1){
        flex-grow: 1;
        display: flex;
        align-items: center;
    }

    .tv-filter div:nth-child(2){
        flex-grow: 1;
        text-align: right;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .tv-filter select{
        padding: 5px 10px;
        width: 20%;
        border: none;
        border-bottom: 1px solid #e4e4e4;
        border-radius: 0;
    }
    .tv-filter input{
        padding: 5px 10px;
        border: none;
        border-bottom: 1px solid #e4e4e4;
        margin: 0 10px;
    }

    .tv-filter input[type="submit"]{
        /* border: 1px solid silver; */
        width: 20%;
        background: #a46422;
        color: white;
        cursor: pointer;
    }

    .tv-filter span{
        margin-right: 0.5rem;
    }

    .tv-filter a{
        text-decoration: none;
        color: #369;

    }

    .tv-filter input[type="text"]{
        width: 40%;
        flex: 1;
    }

    .tv-details{
        padding: 0.5rem!important;
        display: block;
        height: auto;
    }
    
    .tv-details tbody{
        display: block;
    }
    .tv-details tbody tr{
        display: block;
    }
    .tv-details tbody tr td{
        display: block;
    }
   

    .tv-details h3{
        color: #424242;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .tv-details .info-details{
        color: silver;
        display: flex;
	    pading: 0.5rem 0;
	    margin-top: 0.5rem;
    }

    .info-details img{
        width: 15px !important;
        height: 15px !important;
        min-width: 0px !important;
        margin-right: 10px;
        opacity: 0.3;
    }
    .info-details p:nth-child(1) img{
        opacity: 1 !important;
    }

    .info-details p{
        display: flex;
        justify-content: center;
        flex-direction: row;
        align-items: center;
        overflow: hidden;
        margin: 0;
        font-size: 13px !important;
    }

    .tv-details p{
        padding: 0;
        margin: 0;
        color: #757575;
        margin-right: 10px;
        font-size: 14px;
    }

    .tv-download{
        text-align: right;
        display: block;
        height: 1.7rem;
    }


    .tv-download a{
        padding: 0 20px;
        text-decoration: none;
        color: white;
        background-color: #a46422;
        display: inline-block;
        height: 100%;
        font-size: 13px;
        line-height: 25px;
    }


    .rViewer{
        width: 100% !important;
        margin:0;
        height: 90vh !important;
        border: 1px solid silver;
        overflow: hidden;
        overflow-y: auto;
    }

    .tv-login{
        border: 1px solid silver;
        display: none;
        padding: 1rem 3rem;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: white;
        transition: all 500ms;
        box-shadow: 0 0 3px silver;
    }
    .tv-login input[type="submit"]{
        border: none;
        padding: 0.5rem;
        background: #003399;
        color: white;
        margin-top: 0.5rem;
        float: right;
    }
    
    .btn-close{
        position: absolute;
        top: 0;
        right:0;
        padding: 1rem;
    }
    
    .detail-file{
        /* border: 1px solid silver; */
        padding: 0;
        display: inline-block;
        width: 100%;
    }

    .detail-file>iframe{
    	height: 50vh;
    	margin: 0 !important;
    	border: 1px solid silver;
    }

    .btn-back{
        padding: 5px 20px;
        background: #af2639;
        color: white;
        display: inline-block;
        margin-top: 10px;
        margin-left: 5px;
        border-radius: 3px;
        font-size: 14px;
    }

    .tv-more{
        display: flex;
        height: auto;
        align-items: flex-start;
        margin-top: 10px;
    }

    .tv-more div:nth-last-child(1){
        width: 50%;
        /* float: left; */
        margin-left: 10px;
    }

    .tv-more div:nth-last-child(2){
        width: 50%;
        /* float: left; */
        flex: 1;
    }

    .tv-more ul {
        width: 90%;
        padding: 0;
        margin-bottom: 10px;
    }

    .tv-more ul li {
        list-style: none;
        width: 100%;
        margin-top: 0.1rem;
        margin-left: 0.5rem;
        font-size: 10pt;
    }

    .tv-more ul li a{
        text-decoration: none;
        color: black;
        display: block;
        padding: 0.4rem 0;
        border-bottom: 1px dotted silver;
    }

    .tv-more ul li a:hover{
        color: #ea2320;
    }

    .btn-paging{
        display: flex;
        justify-content: center;
    }

    .btn-paging a{
        width: 20%;
        color: #424242;
        font-weight: bold;
    }
     
    .div-refresh{
        margin-bottom: 0.5rem;
    }
    
    .btn-refresh{
        text-decoration:none;
        color: #757575;
        padding: 0.5rem;
        text-decoration: underline;
    }