input {
    background: none;
}

.fileupload__content * {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    box-sizing: border-box;
}

.fileupload__content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.upload-progress {
    display: flex;
    width: 100%;
    /* max-width: 650px; */
    min-width: 150px;
    height: 15px;
    outline: 1px solid blue;
}
.uploadProgress {
    width: 0;
    background: red;
}

.tg-0lax img{
    width: 100px;
    height: 150px;
    object-fit: contain;
}

.upload-file-progress {
    display: flex;
    width: 100%;
    height: 15px;
    outline: 1px solid blue;
}


.uploadFileProgress {
    width: 0;
    background: red;
}



table#changeFileTable th {
    /* word-break: unset; */
    width: 1px;
    word-break: normal;
}
table#changeFileTable td {
    word-break: unset;
    width: 1px;
    /* white-space: nowrap; */
 }
#changeFileTable {
	border: 1px solid #eee;
	table-layout: fixed;
	width: 100%;
    margin-top: 20px;
	margin-bottom: 20px;
}
#changeFileTable th {
	font-weight: bold;
	padding: 5px;
	background: #efefef;
	border: 1px solid #dddddd;
}
#changeFileTable td{
	padding: 5px 10px;
	border: 1px solid #eee;
	text-align: left;
}
#changeFileTable tbody tr:nth-child(odd){
	background: #fff;
}
#changeFileTable tbody tr:nth-child(even){
	background: #F7F7F7;
}
#changeFileTable thead {
    font-size: 16px;
}
#changeFileTable tbody {
    font-size: 14px;
}

#metaListTable {
	border: 1px solid #eee;
	table-layout: fixed;
	width: 100%;
	margin-bottom: 20px;
}
#metaListTable th {
	font-weight: bold;
	padding: 5px;
	background: #efefef;
	border: 1px solid #dddddd;
}
#metaListTable td{
	padding: 5px 10px;
	border: 1px solid #eee;
	text-align: left;
}
#metaListTable tbody tr:nth-child(odd){
	background: #fff;
}
#metaListTable tbody tr:nth-child(even){
	background: #F7F7F7;
}


.coincidence  {
    position: relative;
}
.coincidence_info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #000;
    color: #fff;
}



.col-lg-7 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin: 15px;
}

#labelUpload {
    display: flex;
    padding: 5px 10px;
    cursor: pointer;
    border: 1px solid rgb(0, 99, 25);
    background: rgb(4, 109, 0);
    height: 100%;
    color: #fff;
}


#submitUpload {
    display: flex;
    padding: 5px 10px;
    cursor: pointer;
    border: 1px solid rgb(0, 99, 25);
    background: rgb(4, 109, 0);
    color: #fff;
}


.action-image__inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;

}
.button-action {
    cursor: pointer;
    padding: 5px 10px;
}

.cancel-image {
    background: #bf0000;
    color: #fff;
}


.disabled {
    cursor:not-allowed !important;
    background: rgb(145, 145, 145);
}


/* META MODAL */

.meta-modal {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.meta-modal__info {
    position: relative;
    display: flex;
    flex-direction: column;
    /* min-width: 420px; */
    max-width: 800px;
    height: auto;
    background: #fff;
    border-radius: 2%;
    padding: 8px;
    font-size: 12px;
    z-index: 5555;
}

.meta-modal__close {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;

    top: -30px;
    right: 10px;

    border-radius: 50%;
    width: 30px;
    height: 30px;
    background: rgb(15, 85, 21);
    color: #fff;
    cursor: pointer
}
.meta-modal__close:hover {
    background: rgb(7, 122, 17);
}


/* ACTION MODAL */

.modal {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 100vh;
    height: 100%;
    background: rgba(61, 61, 61, 0.4);
}
.modal_inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 360px;
    min-height: 400px;
    padding: 15px;
    border-radius: 5%;
    background: #fff;
}
.modal_title p {
    text-align: center;
    font-size: 12px;
}
.modal_action {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5px;
    font-size: 12px;
}

.modal_action__btn {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    font-size: 12px;
}

.modal_action label {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;

}
.modal_action button {
    text-align: center;
    padding: 10px 5px;
    font-size: 12px;
}
.modal_action button {
    text-align: center;
    padding: 10px 5px;
    font-size: 12px;
}
.modal_image-preview {
    display: flex;
    flex-direction: row;
    gap: 15px;
}
.modal_image-preview img{
    display: flex;
    max-width: 165px;
}