		body {
  
    font-family: Aptos Regular !important;
}
        .awb-form-section {
            display: flex;
            flex-direction: column;
            justify-content: center;
            width: 100%;
            margin: 10px auto;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 8px;
            background: #f9f9f9;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        }
.awb-form-div{
	padding:30px 0px;
}
        .awb-form-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: space-between;
            width: 100%;
        }
        .awb-form-group {
            display: flex;
            flex-direction: column;
            flex: 1;
            min-width: 150px;
        }
        .awb-form-group label {
            font-weight: bold;
            margin-bottom: 5px;
        }
        .awb-form-group select,
        .awb-form-group input {
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
            width: 100%;
        }
        .awb-form-section button {
            width: 100%;
            margin-top: 18px;
            padding: 10px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .awb-form-section button:hover {
            background-color: #0056b3;
        }
        @media (max-width: 600px) {
            .awb-form-container {
                flex-direction: column;
            }
        }
        #awb_message {
            margin-top: 15px;
            padding: 10px;
            border-radius: 5px;
            display: none;
        }
        #awb_message.error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        #awb_message.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
			#editFormContainer{
		display: flex
;
    flex-direction: column;
    justify-content: center;
    width: 100%;
        margin-bottom: 50px !important;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	}
.edit-awb-form {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
        justify-content: space-between;
    }

    .edit-form-row {
         display: flex
;
    gap: 15px;
    overflow-x: auto;
    }

    .edit-form-group {
           display: flex
;
    flex-direction: column;
    flex: 1;
    min-width: 80px;
    }
.edit-form-group.customer,.edit-form-group.files {
        min-width: 150px !important;
    }

    .edit-form-group input {
        padding: 5px;
       
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    .update-btn, .cancel-btn {
        padding: 8px 12px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 14px;
    }

    .update-btn {
        background-color: #007bff;
        color: white;
    }

    .cancel-btn {
        background-color: #dc3545;
        color: white;
    }

    .update-btn:hover {
        background-color: #0056b3;
    }

    .cancel-btn:hover {
        background-color: #a71d2a;
    }

    @media (max-width: 768px) {
        .edit-form-row {
            flex-direction: column;
            align-items: stretch;
        }

        .edit-form-group input {
            width: 100%;
        }
    }
	/* Enable horizontal scrolling */
#awb_table_container .table-container {
    width: 100%;
    overflow-x: auto; /* Enables scrolling if content overflows */
    white-space: nowrap; /* Prevents row breaking */
  
}

/* Ensure table layout is consistent */


/* Make sure cells do not wrap */
#awb_table_container th, #awb_table_container td {
    white-space: nowrap;
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
}

/* Style for Action buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.action-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid #d9534f;
    border-radius: 5px;
    color: #d9534f;
    font-size: 16px;
    transition: 0.3s ease;
}

.action-buttons a:hover {
    background: #d9534f;
    color: white;
}
		#awb_response input{
			padding: 5px;
       min-width: 80px;
    text-align: center;
		}
		#awb_response{
			width: 100%;
    overflow-x: auto;
    white-space: nowrap;
		}
		#awb_response table{
			overflow-x: auto;
		}
		
.suggestions-box {
    position: relative;
    background: white;
   box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    max-height: 150px;
    
    width: 250px;
	
    border-radius: 6px;
}

.suggestion-item {
      padding: 10px 20px;
    cursor: pointer;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}
	.customer_namebox{
		position:relative;
	}
    padding: 5px 10px;
    margin-left: 10px;
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}
.clear-btn:hover {
    background: #e63b3b;
}
.hidden-input {
    display: none;
}

.upload-icon {
    display: inline-block;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.upload-icon:hover {
    background-color: #0056b3;
}

.custom-upload {
    display: flex;
    align-items: center;
    gap: 10px;
}
.table-scroll-wrapper {
  position: relative;
  margin-top: 10px;
}

.table-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  height: 16px;
    margin-top: -15px;
}

.table-scroll > div {
  height: 1px;
}

.table-container {
  overflow-x: auto;
}

.table-container table {
  width: max-content;
  min-width: 100%;
}

		body {
  
    font-family: Aptos Regular !important;
}
     .awb-filter-form {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 20px;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 8px;
        background: #f9f9f9;
    }

    .filter-group {
        display: flex;
        flex-direction: column;
    }

    .filter-group label {
        font-weight: bold;
        margin-bottom: 5px;
    }

    .filter-group input,
    .filter-group select {
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 5px;
        min-width: 180px;
        font-size: 14px;
    }

    .awb-list {
        margin-top: 20px;
    }

    .awb-download-docs {
        display: block;
        align-items: end;
        width: 100%;
        text-align: right;
        
    }
    
    .flight-route {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 15px;
        position: relative;
    }

    .airport {
        text-align: center;
        padding: 0 15px;
		
    }

    .airport strong {
        font-size: 30px;
    }

    .airport span {
        font-size: 14px;
        color: #666;
    }

    .flight-path {
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
		    gap: 25px;
    }

    .line {
        border-top: 2px solid black;
        width: 40%;
    }

    .plane-icon {
        position: absolute;
        top: -12.8px;
        font-size: 20px;
    }

    .flight-number {
        position: absolute;
        top: 15px;
        font-size: 14px;
        font-weight: bold;
    }
		 .awb-details {
        display: flex;
        flex-wrap: wrap;
        margin-top: 15px;
    }

    .awb-column {
        flex: 1;
        padding: 10px;
    }

    .awb-column strong {
       display: inline-block;
    min-width: 90px !important;
    font-weight: bold;
    }
		.awb-download-button a{
			padding: 10px;
    border-radius: 4px;
    background: hsla(206, 100%, 73.3%, 1);
    color: #fff;
			font-size:12px;
		}
		.awb-download-button{
			padding: 20px 0px;
		}
		.reset-button {
			margin-top: 20px;
        padding: 8px 15px !important;
        background: #ff6b6b;
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 14px;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .reset-button:hover {
        background: #e63946;
    }
		.numInputWrapper{
			    position: absolute !important;
    top: 8px !important;
    right: 12px !important;
    width: 8ch !important;
		}
		.numInputWrapper span.arrowUp,.numInputWrapper span.arrowDown  {
			opacity: 1;}

    /* Destination Multi-Select Dropdown */
    .destination-container {
        position: relative;
        width: 200px;
    }

    .destination-box {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        border: 1px solid #ccc;
        border-radius: 5px;
        padding: 10px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 10;
    }

    .destination-container.open .destination-box {
        display: block;
    }

    .destination-box ul {
        list-style: none;
        margin: 0;
        padding: 0;
        max-height: 150px;
        overflow-y: auto;
    }

    .destination-box label {
        display: flex;
        align-items: center;
        padding: 5px;
        cursor: pointer;
    }

    .destination-box input {
        margin-right: 8px;
    }

    .destination-button {
		    overflow: hidden;
        width: 100%;
        text-align: left;
        padding: 8px !important;
               color: #434960 !important;
    background: #fff !important;
        border: 1px solid #ccc;
        border-radius: 5px;
        cursor: pointer;
        font-size: 14px;
    }
		.filter-group .destination-box input{
		min-width:unset;	
		}
		#exportCSV{
			background: #000;
			    color: white;
    padding: 10px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s;
		}
		#exportCSV:hover{
			color: #fff;
    background: #ff0000;
		}
		.suggestions-box{
			background: white;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    max-height: 150px;
    width: 250px;
    position: relative;
   
    border-radius: 6px;
		}
		.suggestion-item {
    padding: 10px 20px;
}
		.button-green {
     
    background: #ff0000;
   color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    margin-top: 15px;
    transition: background-color 0.3s;
}
.button-green:hover { 
  color: white;
	    background: #000;
}
		@media (max-width: 767px) {
			.awb-details {
				display: block;
			}
		}
		
	.awb-list > div {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.awb-list > div.awb-show {
  opacity: 1;
  transform: translateY(0);
}
.awb_card {
    padding: 10px;
    border-radius: 12px;
    margin: 40px 0px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
		.awb-extra-button{
			margin-bottom:30px;
		}

.awb-details {
   
	   padding: 10px;
}

.awb-item {
	display:flex;
    flex: 1 1 30%;
}
.awb-item strong {
	        min-width: 90px;
	
}
.form-group .choices{
	width:100% !important;
}

th.sortable { cursor: pointer; user-select: none; }
th.sortable.asc .sort-indicator::after { content: "▲"; }
th.sortable.desc .sort-indicator::after { content: "▼"; }


/* Mobile view */
@media (max-width: 768px) {
    .awb-details {
        flex-direction: column;
        gap: 8px;
		padding: 20px 10px;
    }
    .awb-item {
        flex: 1 1 100%;
    }
}

		
/***** booking page css ******/
	.booking-page .container {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.booking-page .tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    border-radius: 8px 8px 0 0;
}
.booking-page .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 12px 24px;
    transition: 0.3s;
    font-size: 16px;
    border-radius: 8px 8px 0 0;
}
.booking-page .tab button:hover {
    background-color: #ddd;
}
.booking-page .tab button.active {
    background-color: #fff;
    font-weight: bold;
}
.booking-page .tabcontent {
    display: none;
    padding: 0px;
  
    border-radius: 0 0 8px 8px;
    background-color: white;
}
.booking-page .form-group {
    margin-bottom: 20px;
}
.booking-page .form-group label {
    display: inline-block;
       min-width: 150px;
    font-weight: bold;
    
}
.booking-page .form-group input,
.booking-page .form-group select,
.booking-page .form-group textarea {
    padding: 10px;
   
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
}
.booking-page .radio-group {
    margin-bottom: 25px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
}
.booking-page .radio-group label {
    margin-right: 20px;
    font-weight: normal;
}
.booking-page .radio-group input[type="radio"] {
    margin-right: 5px;
}
.booking-page .checkbox-group {
    margin: 25px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
}
.booking-page .checkbox-group div {
    margin: 8px 0;
}
.booking-page .send-btn {
    background-color: #ff0000;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    margin-top: 15px;
    transition: background-color 0.3s;
}
.booking-page .send-btn:hover {
    background-color: #cc0000;
}
.booking-page .inline-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom:20px;
}
.booking-page .inline-fields .form-group {
    margin-bottom: 0;
    flex: 1;
    min-width: 250px;
	display:flex;
	    align-items: center;
}
.booking-page .hidden {
    display: none;
}
.booking-page #airFields,
.booking-page #seaFields {
    transition: all 0.3s ease;
}
.booking-page .file-upload {
    margin-top: 10px;
}
.booking-page .file-upload input[type="file"] {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: white;
}
.booking-page .box-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.booking-page .box-row input {
    margin-right: 10px;
}
.booking-page .box-row button {
    padding: 6px 10px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 6px;
    background-color: #0073aa;
    color: #fff;
    transition: background-color 0.3s;
}
.booking-page .box-row button:hover {
    background-color: #005a8c;
}
.booking-page .box-dimensions1{
    display: flex;
}
.radio-tab-group {
       display: flex
;
    justify-content: space-around;
    background: #cacdce;
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid #cccccc7a;
    overflow: hidden;
    padding: 0px 0;
    margin: 25px 0px;
	overflow-x: auto;
}

.radio-tab-group input[type="radio"] {
    display: none;
}

.radio-tab-group label {
   flex: 1;
    text-align: center;
    padding: 12px 40px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    transition: 0.3s;
    border-bottom: 3px solid transparent;
    display: flex
;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    color: #444;
    white-space: nowrap;
}

.radio-tab-group label .icon {
    font-size: 18px;
}

.radio-tab-group input[type="radio"]:checked + label {
    font-weight: bold;
    color: #800032; /* Maroon tone */
    border-bottom: 3px solid #800032;
    background-color: #f9f9f9;
}

	/* Container for each set of dimensions */
.booking-page .dimensions-container {
    margin-bottom: 10px;
	gap:5px;
}

/* One row of Boxes × L × W × H + buttons */
.booking-page .dimension-row {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
    
}

/* Inputs for box and dimensions */
.booking-page .dimension-row input[type="number"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

/* Multiplication symbol X */
.booking-page .dimension-row span {
    font-weight: bold;
    font-size: 8px;
    color: #666;
}

/* Add / Remove buttons */
.booking-page .dimension-row button {
    padding: 6px 12px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    background-color: #0073aa;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.booking-page .dimension-row button:hover {
    background-color: #005a8c;
}
@media (max-width:768px){
	.airport {
		max-width: 135px;}
	.user-booking-table-wrapper{
		    overflow-x: scroll;
	}
	.booking-page .inline-fields .form-group{
		display:inline-block !important;
	}
}
.VolumeWeightfield{
	    display: inline-block;
    width: 100%;
}
.services-container {
              display: grid
;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
        }
.booking-page .form-group .services-container label{
	font-weight:500;
}
        .service-option {
            display: flex;
            align-items: center;
        }

        .service-option input[type="checkbox"] {
            margin-right: 8px;
            accent-color: var(--primary-color);
			    height: 30px;
    width: 30px;
        }
.calculated-value{
	display:none;
}
select.disabled, input.disabled {
    background-color: #f1f1f1;
    pointer-events: none;
    opacity: 0.6;
}
.dimensions-container button{
padding: 5px 12px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    font-weight: bold !important;
    font-size: 16px !important;
    transition: background-color 0.3s !important;
    background-color: #0073aa !important;
    color: #fff !important;
	    border: 1px solid #0073aa;
}
.remove-dimension-btn{
	margin: 0px !important;
}
.hidden {
    display: none;
}

.booking-page .form-message {
    padding: 12px 16px;
    margin-bottom: 15px;
    font-weight: 500;
    border-radius: 6px;
    font-family: "Poppins", sans-serif;
}

.booking-page .form-message.success , .booking-page .success{
    background-color: #e0f8ec;
    color: #207f4c;
    border: 1px solid #b7ebcd;
	    margin: 20px 0px;
}

.booking-page .form-message.error {
    background-color: #ffe8e8;
    color: #c0392b;
    border: 1px solid #f5c2c2;
} 
.user-booking-table th, .user-booking-table td {
    text-align: center;
    vertical-align: middle;
}
.user-booking-table th {
    font-weight: bold;
}
#bookingEditModal{
	overflow-y: scroll;
    height: 80vh;
	top:12%;
}
button{
	background-color: #ff0000;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    margin-top: 15px;
    transition: background-color 0.3s;
}
.um-form .um-field-label label {
    color: #fff;
    font-size: 15px !important;
    line-height: 22px !important;
    font-weight: 600;
    font-family: Aptos Regular;
    letter-spacing: 0.04em;
    text-transform: capitalize;
}
.um-form .um-field-checkbox-option, .um-form .um-field-radio-option {
	
    margin: 0px 0px 0px 36px;
    line-height: 24px;
    color: #fff !important;
    display: block;
}
.um-form .um-field-checkbox:hover i, .um-form .um-field-radio:hover i , .um-form .um-field-checkbox-state i, .um-form .um-field-radio-state i {
    color: #fff !important;
}
.um-form a.um-link-alt {
   color: #fff !important;
}
.um .um-form input.um-form-field, .um .um-form .um-button{
	border-radius:35px !important;
}
button[type="button"]{
	    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
   
    transition: background-color 0.3s;
}
button.update-btn,.cancel-btn {
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s;
	    height: 45px;
    margin-top: 5px;
}
.loader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  border-radius: 8px;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 5px solid #ccc;
  border-top-color: #0a4f8a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.choices__inner {
    background-color: #fff !important;
    border-radius: 8px !important;
   padding-bottom: inherit !important;
}
button#destinationButton {
    padding: 0.4rem 1rem !important;
    border-radius: 4px;
}
button#resetFilters {
    padding: 0.4em 1em !important;
}
/***** booking page css ******/
	
.text-right{
	text-align:right;
}
.emp_export{
	margin-bottom: 20px;
    padding: 20px 0px;
    display: flex
;
    align-items: center;
    width: 100%;
    justify-content: end;
    gap: 20px;
}
.emp_export h5{
	margin:0px !important;
}
.emp_export button{
	    background: #000;
    color: white;
    padding: 10px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s;
}
	.awb-documents-form {
  background: #f9fafc;
  border: 1px solid #e2e6ef;
  border-radius: 10px;
  padding: 15px;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.awb-documents-form .awb-form-group {
  background: #ffffff;
  border: 1px solid #e0e4ec;
  border-radius: 8px;
  padding: 18px 20px;

  transition: box-shadow 0.2s ease;
}

.awb-documents-form .awb-form-group:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.awb-documents-form .awb-form-group > label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: #1f2937;
  margin-bottom: 10px;
}

.awb-documents-form .add-form-group.files {
  background: #f6f8fc;
  border: 1px dashed #c7d2e0;
  border-radius: 8px;
  padding: 14px 16px;
}

.awb-documents-form .custom-upload {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.awb-documents-form .upload-icon {
	    margin: 0px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0073aa;
  color: #fff;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease;
}

.awb-documents-form .upload-icon:hover {
  background: #005f8d;
}

.awb-documents-form .custom-upload a[target="_blank"] {
  flex-wrap: nowrap;
    display: inline-flex !important;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #0073aa;
  background: #eef5ff;
  border: 1px solid #d4e3fa;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.2s ease;
	    padding: 4px 6px;
}

.awb-documents-form .custom-upload a[target="_blank"]:hover {
  background: #dceaff;
  border-color: #b8d3ff;
}

.awb-documents-form .clear-btn {
  background: #ffe9e9;
  color: #b31b1b;
  border: 1px solid #e4b3b3;
  border-radius: 6px;
  font-weight: 600;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
	margin-top: 0px;
}

.awb-documents-form .clear-btn:hover {
  background: #ffd4d4;
  color: #9f0000;
}

.awb-documents-form .hidden-input {
  display: none !important;
}

/* Responsive layout for small screens */
@media (max-width: 767px) {
  .awb-documents-form .custom-upload {
    flex-direction: column;
    align-items: flex-start;
  }
  .awb-documents-form .upload-icon,
  .awb-documents-form .clear-btn,
  .awb-documents-form .custom-upload a[target="_blank"] {
    width: 100%;
    justify-content: center;
  }
}	
		