.tracking_code{
    border:none;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap:10px;
}
.tracking_code .tracking_code_search_input{
    width: 100%;
    height: 40px;
    border:1px solid black !important;
    border-radius: 0px;
    outline:none;
    text-indent: 10px;
    padding:0 !important;
}

.tracking_code .icon-cargo-form{
    width: 30px;
    height: auto;
}

.tracking_code .tracking_code_search_button{
    background-color: #FFD41C;
    color:#000744;
    border:none;
    padding:10px 30px;
    font-size:18px;
    font-weight: bold;
    cursor: pointer;
    height: 100%;
    transition:0.1s all ease-in;
}

.tracking_code .tracking_code_search_button:hover{
    background-color: #000744;
    color:#FFD41C;
}

.tracking_code .tracking_code_text{
    width: 65%;
    margin:0;
}
.modal table,
.modal table tr,
.modal table tr td,
.modal table tr th{
    border:none !important;
}

.modal{
    position:fixed;
    top:0;
    left: 0;
    background-color: #0032653b;
    width: 100%;
    height: 100vh;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999999999;
}

.modal .modal-diagol{
    background-color: #fff;
    width: 75%;
    padding:25px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap:20px;
}

.modal .modal-diagol .modal-body{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap:30px;
}

.modal .modal-diagol .modal-body .body-left{
    border:none;
    height: auto;
    width: 100%;
}

.modal .modal-diagol .modal-body .body-left .cargo-details{
    border:none;
    width: 100%;
    height: auto;
    border-collapse: collapse;
}

.modal .modal-diagol .modal-body .body-left .cargo-details .label{
    font-weight: bold;
    font-size:13px !important;
    padding:8px 0;
    
}

.modal .modal-diagol .modal-body .body-left .cargo-details .value{
    font-size: 13px;
    font-weight: normal;
    padding-right: 20px;
    text-align: right;
}

.modal .modal-diagol .modal-body .body-left .cargo-details .mini-header{
    background-color: #003265;
    color:white;
    padding:5px;
    border-radius: 4px;
    font-size:15px;
    font-weight: bold;
}

.modal .modal-diagol .modal-body .body-right{
    border:none;
    height: auto;
    display: flex ;
    flex-direction: column;
    gap:20px;
    width: 100%;
}

.modal .modal-diagol .modal-body .body-right .table-one,
.modal .modal-diagol .modal-body .body-right .table-two{
    border:1.2px solid #003265;
    padding: none;
    margin: none;
    height: auto;
    border-collapse: collapse;
}

.modal .modal-diagol .modal-body .body-right .table-one tr th,
.modal .modal-diagol .modal-body .body-right .table-two tr th{
    text-align: left;
    padding:12px;
    background-color: #003265;
    color:white;
}

.modal .modal-diagol .modal-body .body-right .table-one tr td,
.modal .modal-diagol .modal-body .body-right .table-two tr td{
    padding: 12px ;
}
.modal .modal-diagol .modal-body .body-right .table-two tr td.label{
    font-weight: bold;
    font-size:13px;
}
.modal .modal-diagol .modal-body .body-right .table-two tr td.value{
    text-align: right;
}



.modal .modal-diagol .modal-header{
    background-color: #003265;
    color:white;
    font-weight: bold;
    padding:10px;
    border-radius: 4px;
}

.modal .modal-diagol .modal-footer{
    border:none;
    text-align: right;
    height: auto;
}

.modal .modal-diagol .modal-footer button{
    background-color: #003265;
    color:white;
    cursor: pointer;
    border:2px solid #003265;
    padding: 10px 30px;
    font-size:16px;
    font-weight: bold;
    border-radius: 8px;
    transition:0.1s all ease-in;
}

.modal .modal-diagol .modal-footer button:hover{
    background-color: transparent;
    color:#003265;
}

@media only screen and (max-width: 569px) {
    .modal{
        height: 100%;
        width: 100%;    
        overflow: auto;
    }
    .modal .modal-diagol{
        width: 90%;
        padding:8px;
        margin-top:460px;
        margin-bottom:120px;
        border-radius: 10px;
    }
    .modal .modal-diagol .modal-body {
        flex-direction: column;
    }
	.tracking_code {
		flex-direction:column !important;	
		width:100%;
	}
	.tracking_code .tracking_code_text{
		text-align: center;
    	width: 100%;
	}
}

@media only screen and (min-width: 569.5px) and (max-width: 768px){
    .modal .modal-diagol{
        width: 90%;
        padding:12px;
    }
    .modal .modal-diagol .modal-body {
        flex-direction: column;
    }
}

@media only screen and (min-width: 768.5px) and (max-width: 1024px){
    .modal .modal-diagol{
        width: 90%;
    }
}