Index: src/main/java/org/example/dormallocationsystem/Domain/Room.java
===================================================================
--- src/main/java/org/example/dormallocationsystem/Domain/Room.java	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ src/main/java/org/example/dormallocationsystem/Domain/Room.java	(revision 017d970f45387f0608648e9d00345d73eef8c090)
@@ -24,5 +24,5 @@
     private Integer capacity;
 
-    @Column(name = "is_reserved")
+    @Column(name = "is_reserved", nullable = false)
     private Boolean isReserved = false;
 }
Index: src/main/java/org/example/dormallocationsystem/Service/IDormDocumentService.java
===================================================================
--- src/main/java/org/example/dormallocationsystem/Service/IDormDocumentService.java	(revision 017d970f45387f0608648e9d00345d73eef8c090)
+++ src/main/java/org/example/dormallocationsystem/Service/IDormDocumentService.java	(revision 017d970f45387f0608648e9d00345d73eef8c090)
@@ -0,0 +1,10 @@
+package org.example.dormallocationsystem.Service;
+
+import org.example.dormallocationsystem.Domain.DormDocument;
+
+public interface IDormDocumentService {
+    boolean areAllDocumentsReviewed(Long studentId);
+    boolean areAllDocumentsApproved(Long studentId);
+    long getUploadedDocumentsCount(Long studentId);
+    DormDocument getDocumentById(Long id);
+}
Index: src/main/java/org/example/dormallocationsystem/Service/IEmployeeService.java
===================================================================
--- src/main/java/org/example/dormallocationsystem/Service/IEmployeeService.java	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ src/main/java/org/example/dormallocationsystem/Service/IEmployeeService.java	(revision 017d970f45387f0608648e9d00345d73eef8c090)
@@ -16,5 +16,3 @@
     void declineDocument(Long documentId, Long employeeId);
     List<Student> getStudentsWithDocuments();
-    boolean areAllDocumentsReviewed(Long studentId);
-    boolean areAllDocumentsApproved(Long studentId);
 }
Index: src/main/java/org/example/dormallocationsystem/Service/IStudentService.java
===================================================================
--- src/main/java/org/example/dormallocationsystem/Service/IStudentService.java	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ src/main/java/org/example/dormallocationsystem/Service/IStudentService.java	(revision 017d970f45387f0608648e9d00345d73eef8c090)
@@ -16,5 +16,4 @@
     boolean applyForRoom(Long studentId, String preferredRoom, String roommateEmail);
     Long getStudentIdByEmail(String email);
-    long getUploadedDocumentsCount(Long studentId);
     Roomrequest getRoomRequestsByStudent(Long studentId);
     List<DormDocument> getDocumentsByStudent(Long studentId);
@@ -23,3 +22,5 @@
 
     boolean identicalRoomRequestByStudents(Roomrequest roomRequestStudent1, Roomrequest roomRequestStudent2);
+    List<Student> getStudentsAddedToRoom();
+    List<Student> getStudentsWithNotReviewedDocs();
 }
Index: src/main/java/org/example/dormallocationsystem/Service/Impl/DormDocumentServiceImpl.java
===================================================================
--- src/main/java/org/example/dormallocationsystem/Service/Impl/DormDocumentServiceImpl.java	(revision 017d970f45387f0608648e9d00345d73eef8c090)
+++ src/main/java/org/example/dormallocationsystem/Service/Impl/DormDocumentServiceImpl.java	(revision 017d970f45387f0608648e9d00345d73eef8c090)
@@ -0,0 +1,43 @@
+package org.example.dormallocationsystem.Service.Impl;
+
+import org.example.dormallocationsystem.Domain.DormDocument;
+import org.example.dormallocationsystem.Domain.DormUser;
+import org.example.dormallocationsystem.Domain.Student;
+import org.example.dormallocationsystem.Repository.DormDocumentRepository;
+import org.example.dormallocationsystem.Repository.DormUserRepository;
+import org.example.dormallocationsystem.Service.IDormDocumentService;
+import org.springframework.stereotype.Service;
+
+import java.util.List;
+import java.util.Optional;
+
+@Service
+public class DormDocumentServiceImpl implements IDormDocumentService {
+    private final DormDocumentRepository dormDocumentRepository;
+
+    public DormDocumentServiceImpl(DormDocumentRepository dormDocumentRepository) {
+        this.dormDocumentRepository = dormDocumentRepository;
+    }
+
+    @Override
+    public boolean areAllDocumentsReviewed(Long studentId) {
+        List<DormDocument> documents = dormDocumentRepository.findByStudentId(studentId);
+        return getUploadedDocumentsCount(studentId) == 5 && documents.stream().noneMatch(dormDocument -> dormDocument.getDStatus().equals("Pending"));
+    }
+
+    @Override
+    public boolean areAllDocumentsApproved(Long studentId) {
+        List<DormDocument> documents = dormDocumentRepository.findByStudentId(studentId);
+        return getUploadedDocumentsCount(studentId) == 5 && documents.stream().allMatch(dormDocument -> dormDocument.getDStatus().equals("Approved"));
+    }
+
+    @Override
+    public long getUploadedDocumentsCount(Long studentId) {
+        return dormDocumentRepository.countByStudentId(studentId);
+    }
+
+    @Override
+    public DormDocument getDocumentById(Long id) {
+        return dormDocumentRepository.findById(id).get();
+    }
+}
Index: src/main/java/org/example/dormallocationsystem/Service/Impl/EmployeeServiceImpl.java
===================================================================
--- src/main/java/org/example/dormallocationsystem/Service/Impl/EmployeeServiceImpl.java	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ src/main/java/org/example/dormallocationsystem/Service/Impl/EmployeeServiceImpl.java	(revision 017d970f45387f0608648e9d00345d73eef8c090)
@@ -3,4 +3,5 @@
 import org.example.dormallocationsystem.Domain.*;
 import org.example.dormallocationsystem.Repository.*;
+import org.example.dormallocationsystem.Service.IDormDocumentService;
 import org.example.dormallocationsystem.Service.IEmployeeService;
 import org.example.dormallocationsystem.Service.IStudentService;
@@ -24,6 +25,7 @@
     private final PasswordEncoder passwordEncoder;
     private final IStudentService studentService;
-
-    public EmployeeServiceImpl(DormUserRepository dormUserRepository, EmployeeRepository employeeRepository, DormDocumentRepository dormDocumentRepository, RoomRepository roomRepository, RoomRequestRepository roomRequestRepository, StudentTookRoomRepository studentTookRoomRepository, StudentRepository studentRepository, BlockRepository blockRepository, PasswordEncoder passwordEncoder, IStudentService studentService ) {
+    private final IDormDocumentService dormDocumentService;
+
+    public EmployeeServiceImpl(DormUserRepository dormUserRepository, EmployeeRepository employeeRepository, DormDocumentRepository dormDocumentRepository, RoomRepository roomRepository, RoomRequestRepository roomRequestRepository, StudentTookRoomRepository studentTookRoomRepository, StudentRepository studentRepository, BlockRepository blockRepository, PasswordEncoder passwordEncoder, IStudentService studentService, IDormDocumentService dormDocumentService) {
         this.dormUserRepository = dormUserRepository;
         this.employeeRepository = employeeRepository;
@@ -36,4 +38,5 @@
         this.passwordEncoder = passwordEncoder;
         this.studentService = studentService;
+        this.dormDocumentService = dormDocumentService;
     }
 
@@ -59,5 +62,4 @@
         Optional<Room> optionalRoom = roomRepository.findById(roomId);
         Optional<Student> optionalStudent = studentRepository.findById(studentId);
-
         if (optionalRoom.isPresent() && optionalStudent.isPresent()) {
             Room room = optionalRoom.get();
@@ -67,6 +69,41 @@
                 if (roomRequestRepository.existsByStudentId(studentId)){
                     Roomrequest roomrequest = roomRequestRepository.findByStudent(student);
-                    boolean allStudentDocsReviewed = areAllDocumentsReviewed(studentId);
-                    boolean allStudentDocsApproved = areAllDocumentsApproved(studentId);
+                    boolean allStudentDocsReviewed = dormDocumentService.areAllDocumentsReviewed(studentId);
+                    boolean allStudentDocsApproved = dormDocumentService.areAllDocumentsApproved(studentId);
+                    if (!roomrequest.getRoomateEmail().isBlank()) {
+                        Optional<Student> roommate = studentRepository.findByDormUser_Email(roomrequest.getRoomateEmail());
+                        if (roommate.isPresent()) {
+                            Optional<Studenttookroom> str = studentTookRoomRepository.findByStudent(roommate.get());
+                            if (roomRequestRepository.existsByStudentId(roommate.get().getId()))
+                            {
+                                Roomrequest roommatesRoomRequest = studentService.getRoomRequestsByStudent(roommate.get().getId());
+                                boolean isIdenticalRoomRequest = studentService.identicalRoomRequestByStudents(roomrequest, roommatesRoomRequest);
+                                boolean allDocsReviewed = dormDocumentService.areAllDocumentsReviewed(roommate.get().getId());
+                                boolean allRoomatesDocsApproved = dormDocumentService.areAllDocumentsApproved(roommate.get().getId());
+                                if (isIdenticalRoomRequest && str.isEmpty() && room.getIsReserved()==null) {
+                                    room.setIsReserved(true);
+                                }
+                                if (isIdenticalRoomRequest && allRoomatesDocsApproved && str.isEmpty()) {
+                                    // TODO: ADD THEM TO THE SAME ROOM INSTANTLY!!!
+                                    roommatesRoomRequest.setStatus("Approved");
+                                    Studenttookroom roommateTookRoom = new Studenttookroom();
+                                    StudenttookroomId roommateTookRoomId = new StudenttookroomId();
+                                    roommateTookRoomId.setStudentId(student.getId());
+                                    roommateTookRoomId.setRoomNum(room.getId().getRoomNumber());
+                                    roommateTookRoomId.setBlockId(room.getId().getBlockId());
+                                    roommateTookRoom.setId(roommateTookRoomId);
+                                    roommateTookRoom.setStudent(roommate.get());
+                                    room.setIsReserved(false);
+                                    room.setIsAvailable(false);
+                                    room.setCapacity(room.getCapacity() - 1);
+                                } else if (!isIdenticalRoomRequest && !allStudentDocsApproved) {
+                                    roommatesRoomRequest.setStatus("Declined");
+                                    room.setIsReserved(false);
+                                }
+                            }
+                        } else {
+                            room.setIsReserved(false);
+                        }
+                    }
                     if (allStudentDocsApproved ) {
                         roomrequest.setStatus("Approved");
@@ -88,39 +125,5 @@
                         studentTookRoomRepository.save(studentTookRoom);
                     }
-                    if (roomrequest.getRoomateEmail() != null) {
-                        Optional<Student> roommate = studentRepository.findByDormUser_Email(roomrequest.getRoomateEmail());
-                        if (roommate.isPresent()) {
-                            Optional<Studenttookroom> str = studentTookRoomRepository.findByStudent(roommate.get());
-                            if (roomRequestRepository.existsByStudentId(roommate.get().getId()))
-                            {
-                                Roomrequest roommatesRoomRequest = studentService.getRoomRequestsByStudent(roommate.get().getId());
-                                boolean isIdenticalRoomRequest = studentService.identicalRoomRequestByStudents(roomrequest, roommatesRoomRequest);
-                                boolean allDocsReviewed = areAllDocumentsReviewed(roommate.get().getId());
-                                boolean allRoomatesDocsApproved = areAllDocumentsApproved(roommate.get().getId());
-                                if (isIdenticalRoomRequest && str.isEmpty() && room.getIsReserved()==null) {
-                                    room.setIsReserved(true);
-                                }
-                                if (isIdenticalRoomRequest && allRoomatesDocsApproved) {
-                                    // TODO: ADD THEM TO THE SAME ROOM INSTANTLY!!!
-                                    roommatesRoomRequest.setStatus("Approved");
-                                    Studenttookroom roommateTookRoom = new Studenttookroom();
-                                    StudenttookroomId roommateTookRoomId = new StudenttookroomId();
-                                    roommateTookRoomId.setStudentId(student.getId());
-                                    roommateTookRoomId.setRoomNum(room.getId().getRoomNumber());
-                                    roommateTookRoomId.setBlockId(room.getId().getBlockId());
-                                    roommateTookRoom.setId(roommateTookRoomId);
-                                    roommateTookRoom.setStudent(roommate.get());
-                                    room.setIsReserved(false);
-                                    room.setIsAvailable(false);
-                                    room.setCapacity(room.getCapacity() - 1);
-                                } else {
-                                    roommatesRoomRequest.setStatus("Declined");
-                                    room.setIsReserved(false);
-                                }
-                            }
-                        } else {
-                            room.setIsReserved(false);
-                        }
-                    }
+                    // TODO: FIX THIS I NEED TO CHECK IF THE ROOMMATE IS ALREADY IN THE ROOM
                 } else {
                     // THIS STUDENT IS WITHOUT ROOM REQUEST SO HE IS ADDED IN A ROOM BY EMPLOYEE CHOICE
@@ -154,15 +157,4 @@
         return false;
     }
-    @Override
-    public boolean areAllDocumentsReviewed(Long studentId) {
-        List<DormDocument> documents = dormDocumentRepository.findByStudentId(studentId);
-        return documents.size() == 5 && documents.stream().noneMatch(dormDocument -> dormDocument.getDStatus().equals("Pending"));
-    }
-
-    @Override
-    public boolean areAllDocumentsApproved(Long studentId) {
-        List<DormDocument> documents = dormDocumentRepository.findByStudentId(studentId);
-        return documents.size() == 5 && documents.stream().allMatch(dormDocument -> dormDocument.getDStatus().equals("Approved"));
-    }
 
     @Override
Index: src/main/java/org/example/dormallocationsystem/Service/Impl/StudentServiceImpl.java
===================================================================
--- src/main/java/org/example/dormallocationsystem/Service/Impl/StudentServiceImpl.java	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ src/main/java/org/example/dormallocationsystem/Service/Impl/StudentServiceImpl.java	(revision 017d970f45387f0608648e9d00345d73eef8c090)
@@ -3,5 +3,8 @@
 import org.example.dormallocationsystem.Domain.*;
 import org.example.dormallocationsystem.Repository.*;
+import org.example.dormallocationsystem.Service.IDormDocumentService;
+import org.example.dormallocationsystem.Service.IEmployeeService;
 import org.example.dormallocationsystem.Service.IStudentService;
+import org.example.dormallocationsystem.Service.IStudentTookRoomService;
 import org.springframework.security.crypto.password.PasswordEncoder;
 import org.springframework.stereotype.Service;
@@ -19,4 +22,5 @@
 import java.util.Objects;
 import java.util.Optional;
+import java.util.stream.Collectors;
 
 @Service
@@ -26,16 +30,20 @@
     private final DormDocumentRepository documentRepository;
     private final RoomRequestRepository roomRequestRepository;
+    private final IStudentTookRoomService studentTookRoomService;
     private final RoomRepository roomRepository;
     private final PasswordEncoder passwordEncoder;
+    private final IDormDocumentService dormDocumentService;
     private static final String UPLOAD_DIR = "uploads/";
 
 
-    public StudentServiceImpl(StudentRepository studentRepository, DormUserRepository dormUserRepository, DormDocumentRepository documentRepository, RoomRequestRepository roomRequestRepository, RoomRepository roomRepository, PasswordEncoder passwordEncoder) {
+    public StudentServiceImpl(StudentRepository studentRepository, DormUserRepository dormUserRepository, DormDocumentRepository documentRepository, RoomRequestRepository roomRequestRepository, IStudentTookRoomService studentTookRoomService, RoomRepository roomRepository, PasswordEncoder passwordEncoder, IDormDocumentService dormDocumentService) {
         this.studentRepository = studentRepository;
         this.dormUserRepository = dormUserRepository;
         this.documentRepository = documentRepository;
         this.roomRequestRepository = roomRequestRepository;
+        this.studentTookRoomService = studentTookRoomService;
         this.roomRepository = roomRepository;
         this.passwordEncoder = passwordEncoder;
+        this.dormDocumentService = dormDocumentService;
     }
 
@@ -90,5 +98,5 @@
 
                 Roomrequest roomRequest = new Roomrequest();
-                roomRequest.setId(roomrequestId); // Set embedded ID
+                roomRequest.setId(roomrequestId);
                 roomRequest.setStudent(student);
                 roomRequest.setRoom(room);
@@ -147,4 +155,18 @@
 
     @Override
+    public List<Student> getStudentsAddedToRoom() {
+        return studentRepository.findAll().stream()
+                .filter(student -> studentTookRoomService.getStudentInRoom(student.getId()) != null)
+                .collect(Collectors.toList());
+    }
+
+    @Override
+    public List<Student> getStudentsWithNotReviewedDocs() {
+        return studentRepository.findAll().stream()
+                .filter(student -> !dormDocumentService.areAllDocumentsReviewed(student.getId()) || studentTookRoomService.getStudentInRoom(student.getId()) == null)
+                .collect(Collectors.toList());
+    }
+
+    @Override
     public Long getStudentIdByEmail(String email) {
         Optional<Student> studentOpt = studentRepository.findByDormUser_Email(email);
@@ -152,8 +174,4 @@
     }
 
-    @Override
-    public long getUploadedDocumentsCount(Long studentId) {
-        return documentRepository.countByStudentId(studentId);
-    }
 
     @Override
Index: src/main/java/org/example/dormallocationsystem/Web/EmployeeController.java
===================================================================
--- src/main/java/org/example/dormallocationsystem/Web/EmployeeController.java	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ src/main/java/org/example/dormallocationsystem/Web/EmployeeController.java	(revision 017d970f45387f0608648e9d00345d73eef8c090)
@@ -5,13 +5,20 @@
 import org.example.dormallocationsystem.Repository.StudentRepository;
 import org.example.dormallocationsystem.Service.*;
+import org.springframework.core.io.Resource;
+import org.springframework.core.io.UrlResource;
+import org.springframework.http.HttpHeaders;
+import org.springframework.http.MediaType;
+import org.springframework.http.ResponseEntity;
 import org.springframework.stereotype.Controller;
 import org.springframework.ui.Model;
 import org.springframework.web.bind.annotation.*;
 
-import java.util.ArrayList;
+import java.nio.file.Files;
+import java.nio.file.Path;
+import java.nio.file.Paths;
+
 import java.util.List;
 import java.util.Map;
 import java.util.Set;
-import java.util.stream.Collectors;
 
 @Controller
@@ -25,6 +32,7 @@
     private final IBlockService blockService;
     private final IStudentTookRoomService studentTookRoomService;
+    private final IDormDocumentService dormDocumentService;
     public EmployeeController(IEmployeeService employeeService,
-                              StudentRepository studentRepository, BlockRepository blockRepository, IRoomRequestService roomRequestService, IRoomService roomService, IStudentService studentService, IBlockService blockService, IStudentTookRoomService studentTookRoomService) {
+                              StudentRepository studentRepository, BlockRepository blockRepository, IRoomRequestService roomRequestService, IRoomService roomService, IStudentService studentService, IBlockService blockService, IStudentTookRoomService studentTookRoomService, IDormDocumentService dormDocumentService) {
         this.employeeService = employeeService;
         this.studentRepository = studentRepository;
@@ -34,4 +42,5 @@
         this.blockService = blockService;
         this.studentTookRoomService = studentTookRoomService;
+        this.dormDocumentService = dormDocumentService;
     }
 
@@ -40,7 +49,9 @@
         // TODO: MAKE IT A SCREEN WITH OPTION TO VIEW THE APPROVED STUDENTS,
         //  STUDENTS THAT NEED TO BE APPROVED,
-        List<Student> studentsWithDocuments = employeeService.getStudentsWithDocuments();
-        model.addAttribute("employeeId", employeeId);
-        model.addAttribute("students", studentsWithDocuments);
+        List<Student> studentsAddedToRoom = studentService.getStudentsAddedToRoom();
+        List<Student> studentsThatNeedToBeReviewed = studentService.getStudentsWithNotReviewedDocs();
+        model.addAttribute("employeeId", employeeId);
+        model.addAttribute("addedToRoomStudents", studentsAddedToRoom);
+        model.addAttribute("studentsToReview", studentsThatNeedToBeReviewed);
          return "employee-dashboard";
     }
@@ -48,11 +59,5 @@
     @GetMapping("/view-student")
     public String viewStudentDetails(@RequestParam Long studentId, @RequestParam Long employeeId, Model model) {
-
-        // MAKE ROOM RESERVED FALSE IF TEKOVEN STUDENT DOKUMENTI SE DECLINED A CIMER E SMESTEN U SOBA
-        // SCENARIO: 2 students same room request 1 student approved doc other declined -> room shoudn't be reserved
-        // SCENARIO: 2 students not equal room request
-        // SCENARIO: 2 students same room request + both students approved doc
-        // SCENARIO: VIEWING STUDENT DETAILS AFTER ADDING TO ROOM
-
+        // TODO: SHOW THE ROOM REQUEST WITH ROOMMATE EMAIL ALSO + INSTANT ADD BUTTON FIX HERE !!!!!
         Student student = studentRepository.findById(studentId).orElse(null);
         DormUser studentDetails = studentService.getUserDetails(studentId);
@@ -67,6 +72,6 @@
                 if (roommateRoomRequest != null) {
                     boolean identicalRoomRequests = studentService.identicalRoomRequestByStudents(studentRoomRequest, roommateRoomRequest);
-                    boolean areAllRoommatesDocsApproved = employeeService.areAllDocumentsApproved(roommate.getId());
-                    boolean areAllRoommateDocsReviewed = employeeService.areAllDocumentsReviewed(roommate.getId());
+                    boolean areAllRoommatesDocsApproved = dormDocumentService.areAllDocumentsApproved(roommate.getId());
+                    boolean areAllRoommateDocsReviewed = dormDocumentService.areAllDocumentsReviewed(roommate.getId());
                     System.out.println(areAllRoommateDocsReviewed);
                     System.out.println(areAllRoommatesDocsApproved);
@@ -76,5 +81,4 @@
                     model.addAttribute("roomRequest", studentRoomRequest);
                     model.addAttribute("identicalRoomRequests", identicalRoomRequests);
-                    model.addAttribute("roommateEmail", roommate.getDormUser().getEmail());
                 }
                 if ( studenttookroom != null ){
@@ -83,9 +87,12 @@
                     model.addAttribute("roommatesBlock", studenttookroom.getId().getBlockId());
                 }
+                model.addAttribute("roommateEmail", roommate.getDormUser().getEmail());
             }
+            System.out.println(studentRoomRequest);
             model.addAttribute("studentRoomRequest", studentRoomRequest);
-        }
-        boolean allDocsReviewed = employeeService.areAllDocumentsReviewed(studentId);
-        boolean allDocsApproved = employeeService.areAllDocumentsApproved(studentId);
+            model.addAttribute("roomRequest", studentRoomRequest);
+        }
+        boolean allDocsReviewed = dormDocumentService.areAllDocumentsReviewed(studentId);
+        boolean allDocsApproved = dormDocumentService.areAllDocumentsApproved(studentId);
         Studenttookroom str = studentTookRoomService.getStudentInRoom(student.getId());
         if ( str != null) {
@@ -132,7 +139,5 @@
         model.addAttribute("studentId", studentId);
         model.addAttribute("employeeId", employeeId);
-        if (studentRoomRequests != null) {
-            model.addAttribute("roomRequest", studentRoomRequests);
-        }
+        model.addAttribute("roomRequest", studentRoomRequests);
         return "room-request";
     }
@@ -187,4 +192,34 @@
     }
 
+    @GetMapping("/download-document")
+    public ResponseEntity<Resource> downloadDocument(@RequestParam Long documentId) {
+        DormDocument document = dormDocumentService.getDocumentById(documentId);
+        if (document == null) {
+            return ResponseEntity.notFound().build();
+        }
+
+        try {
+            Path path = Paths.get(document.getFilePath());
+            Resource resource = new UrlResource(path.toUri());
+
+            if (!resource.exists() || !resource.isReadable()) {
+                return ResponseEntity.notFound().build();
+            }
+
+            String contentType = Files.probeContentType(path);
+            if (contentType == null) contentType = "application/octet-stream";
+
+            return ResponseEntity.ok()
+                    .contentType(MediaType.parseMediaType(contentType))
+                    .header(HttpHeaders.CONTENT_DISPOSITION,
+                            "attachment; filename=\"" + document.getDocumentName() + "\"")
+                    .body(resource);
+
+        } catch (Exception e) {
+            e.printStackTrace();
+            return ResponseEntity.internalServerError().build();
+        }
+    }
+
     @PostMapping("/assign-room")
     public String assignRoomToStudent(@RequestParam Long studentId, @RequestParam Integer roomNumber, @RequestParam String blockId, @RequestParam Long employeeId, Model model) {
Index: src/main/java/org/example/dormallocationsystem/Web/LoginController.java
===================================================================
--- src/main/java/org/example/dormallocationsystem/Web/LoginController.java	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ src/main/java/org/example/dormallocationsystem/Web/LoginController.java	(revision 017d970f45387f0608648e9d00345d73eef8c090)
@@ -5,4 +5,5 @@
 import org.example.dormallocationsystem.Repository.EmployeeRepository;
 import org.example.dormallocationsystem.Repository.StudentRepository;
+import org.example.dormallocationsystem.Service.IDormDocumentService;
 import org.example.dormallocationsystem.Service.IStudentService;
 import org.springframework.security.core.Authentication;
@@ -15,13 +16,13 @@
     private final EmployeeRepository employeeRepository;
     private final DormUserRepository dormUserRepository;
-    private final IStudentService studentService;
+    private final IDormDocumentService dormDocumentService;
 
     public LoginController(StudentRepository studentRepository,
                            EmployeeRepository employeeRepository,
-                           DormUserRepository dormUserRepository, IStudentService studentService) {
+                           DormUserRepository dormUserRepository, IDormDocumentService dormDocumentService) {
         this.studentRepository = studentRepository;
         this.employeeRepository = employeeRepository;
         this.dormUserRepository = dormUserRepository;
-        this.studentService = studentService;
+        this.dormDocumentService = dormDocumentService;
     }
     @GetMapping("/post-login")
@@ -30,5 +31,5 @@
         DormUser dormUser = dormUserRepository.findByEmail(email).orElseThrow();
         if(studentRepository.findById(dormUser.getId()).isPresent()) {
-            long documentCount = studentService.getUploadedDocumentsCount(dormUser.getId());
+            long documentCount = dormDocumentService.getUploadedDocumentsCount(dormUser.getId());
             if( documentCount == 5){
                 return "redirect:/dashboard?studentId=" + dormUser.getId();
Index: src/main/java/org/example/dormallocationsystem/Web/StudentController.java
===================================================================
--- src/main/java/org/example/dormallocationsystem/Web/StudentController.java	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ src/main/java/org/example/dormallocationsystem/Web/StudentController.java	(revision 017d970f45387f0608648e9d00345d73eef8c090)
@@ -14,5 +14,4 @@
 
 import java.util.List;
-import java.util.Optional;
 
 @Controller
@@ -29,9 +28,7 @@
     @GetMapping("/dashboard")
     public String studentDashboard(@RequestParam Long studentId, Model model) {
-        // Fetch room request status
         Roomrequest roomrequest = roomRequestService.findRoomRequestForStudent(studentId);
-        // Fetch document status & comments
         List<DormDocument> documents = studentService.getDocumentsByStudent(studentId);
-
+        // TODO: IMPROVE THE STUDENT DASHBOARD
         model.addAttribute("studentId", studentId);
         model.addAttribute("roomRequest", roomrequest);
@@ -43,4 +40,6 @@
     @GetMapping("/upload-documents")
     public String showUploadDocumentsForm(@RequestParam("studentId") Long studentId, Model model) {
+
+        //TODO: MAKE BUTTONS DISABLED IF DOCS NOT ADDED
         model.addAttribute("studentId", studentId);
         return "upload-documents";
Index: src/main/resources/templates/application-confirmation.html
===================================================================
--- src/main/resources/templates/application-confirmation.html	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ src/main/resources/templates/application-confirmation.html	(revision 017d970f45387f0608648e9d00345d73eef8c090)
@@ -7,49 +7,76 @@
     <style>
         body {
-            font-family: Arial, sans-serif;
-            background-color: #f4f4f9;
+            font-family: "Segoe UI", Arial, sans-serif;
+            background: linear-gradient(90deg, #6a11cb, #ff6ec4);
             margin: 0;
             padding: 20px;
-            text-align: center;
+            display: flex;
+            justify-content: center;
+            align-items: center;
+            height: 100vh;
         }
 
-        h2 {
+        .confirmation-container {
+            background: white;
+            padding: 30px;
+            border-radius: 12px;
+            box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
+            width: 400px;
+            text-align: center;
+            animation: fadeIn 0.5s ease-in-out;
+        }
+
+        @keyframes fadeIn {
+            from { opacity: 0; transform: translateY(20px); }
+            to { opacity: 1; transform: translateY(0); }
+        }
+
+        h1 {
             color: #333;
+            margin-bottom: 20px;
+            font-size: 24px;
         }
 
         p {
-            font-size: 18px;
+            font-size: 16px;
             color: #555;
+            margin: 10px 0;
         }
 
         strong {
-            color: #007BFF;
+            color: #6a11cb;
         }
 
-        .back-link {
+        .back-button {
             display: inline-block;
             margin-top: 20px;
-            padding: 10px 15px;
-            background-color: #007BFF;
+            padding: 12px 20px;
+            font-size: 16px;
+            font-weight: 700;
             color: white;
-            border-radius: 5px;
+            background: linear-gradient(135deg, #6a11cb, #ff6ec4);
+            border: none;
+            border-radius: 8px;
             text-decoration: none;
-            font-weight: bold;
-            transition: background 0.3s;
+            cursor: pointer;
+            box-shadow: 0 4px 6px rgba(0,0,0,0.15);
+            transition: all 0.2s ease;
         }
 
-        .back-link:hover {
-            background-color: #0056b3;
+        .back-button:hover {
+            transform: translateY(-2px);
+            box-shadow: 0 6px 10px rgba(0,0,0,0.2);
         }
     </style>
 </head>
 <body>
-<h2>Room Application Confirmation</h2>
+<div class="confirmation-container">
+<h1>Room Application Confirmation</h1>
 <input type="hidden" th:name="${_csrf.parameterName}" th:value="${_csrf.token}" />
 <p>Your room application has been successfully submitted.</p>
 <p>Preferred Room: <strong th:text="${preferredRoom}"></strong></p>
 <p>Student ID: <strong th:text="${studentId}"></strong></p>
-<a th:href="@{/dashboard(studentId=${studentId})}">Back to Dashboard</a>
-
+<a th:href="@{/dashboard(studentId=${studentId})}" class="back-button">Back to Dashboard</a>
+</div>
 </body>
 </html>
Index: src/main/resources/templates/choose-room.html
===================================================================
--- src/main/resources/templates/choose-room.html	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ src/main/resources/templates/choose-room.html	(revision 017d970f45387f0608648e9d00345d73eef8c090)
@@ -7,6 +7,6 @@
     <style>
         body {
-            font-family: Arial, sans-serif;
-            background-color: #f4f4f9;
+            font-family: "Segoe UI", Arial, sans-serif;
+            background: linear-gradient(135deg, #6a11cb, #ff6ec4);
             margin: 0;
             padding: 20px;
@@ -17,11 +17,21 @@
         }
 
+        a {
+            cursor: pointer;
+        }
+
         .form-container {
             background: white;
-            padding: 25px;
-            border-radius: 8px;
-            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
+            padding: 30px;
+            border-radius: 12px;
+            box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
             width: 400px;
             text-align: center;
+            animation: fadeIn 0.5s ease-in-out;
+        }
+
+        @keyframes fadeIn {
+            from { opacity: 0; transform: translateY(20px); }
+            to { opacity: 1; transform: translateY(0); }
         }
 
@@ -29,4 +39,5 @@
             color: #333;
             margin-bottom: 20px;
+            font-size: 24px;
         }
 
@@ -40,46 +51,60 @@
             font-weight: bold;
             display: block;
-            margin-top: 10px;
+            margin-top: 12px;
             text-align: left;
             width: 100%;
+            color: #333;
         }
 
         input {
             width: 100%;
-            padding: 10px;
-            margin-top: 5px;
-            border: 1px solid #ccc;
-            border-radius: 5px;
+            padding: 12px;
+            margin-top: 6px;
+            border: 1px solid #ddd;
+            border-radius: 8px;
+            font-size: 15px;
+            transition: all 0.3s ease;
+        }
+
+        input:focus {
+            border-color: #6a11cb;
+            box-shadow: 0 0 8px rgba(106, 17, 203, 0.4);
+            outline: none;
         }
 
         button {
+            display: inline-block;
             width: 100%;
             padding: 12px;
-            background-color: #007BFF;
+            margin-top: 18px;
+            font-size: 16px;
+            text-align: center;
             color: white;
+            background: linear-gradient(135deg, #6a11cb, #ff6ec4);
+            border-radius: 8px;
+            cursor: pointer;
+            font-weight: 700;
             border: none;
-            border-radius: 5px;
-            margin-top: 15px;
-            cursor: pointer;
-            font-size: 16px;
-            font-weight: bold;
-            transition: background 0.3s;
+            box-shadow: 0 4px 6px rgba(0,0,0,0.15);
+            transition: all 0.2s ease;
         }
 
         button:hover {
-            background-color: #0056b3;
+            transform: translateY(-2px);
+            box-shadow: 0 6px 10px rgba(0,0,0,0.2);
         }
 
         .back-link {
-            display: block;
-            margin-top: 15px;
+            display: inline-block;
+            margin-top: 18px;
             font-size: 14px;
-            color: #007BFF;
+            color: #6a11cb;
             text-decoration: none;
             font-weight: bold;
+            transition: color 0.2s;
         }
 
         .back-link:hover {
-            text-decoration: underline;
+            color: #ff6ec4;
         }
     </style>
@@ -87,5 +112,5 @@
 <body>
 <div class="form-container">
-    <h2>Room Selection</h2>
+    <h1>Room Selection</h1>
     <form action="/apply-room" method="post">
         <input type="hidden" name="studentId" th:value="${studentId}">
Index: src/main/resources/templates/employee-dashboard.html
===================================================================
--- src/main/resources/templates/employee-dashboard.html	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ src/main/resources/templates/employee-dashboard.html	(revision 017d970f45387f0608648e9d00345d73eef8c090)
@@ -5,57 +5,80 @@
     <style>
         body {
-            font-family: Arial, sans-serif;
-            background-color: #f4f4f9;
+            font-family: "Segoe UI", Arial, sans-serif;
+            background: linear-gradient(90deg, #6a11cb 0%, #ff6ec4 100%);
             margin: 0;
-            padding: 20px;
+            padding: 30px;
+            color: #333;
+            line-height: 1.6;
         }
 
-        h2, h3 {
-            color: #333;
+        h2 {
+            font-size: 28px;
+            font-weight: 700;
+            margin-bottom: 25px;
+            color: #f8f9fa;
+            text-shadow: 0px 2px 6px rgba(0,0,0,0.3);
+            border-bottom: 3px solid #ff6ec4;
+            display: block;
+            padding-bottom: 5px;
+            text-align: center;
+        }
+
+        h3 {
+            font-size: 22px;
+            font-weight: 600;
+            margin: 25px 0 15px;
+            color: white;
         }
 
         table {
             width: 100%;
-            border-collapse: collapse;
+            border-collapse: separate;
+            border-spacing: 0;
+            margin-top: 15px;
+            font-size: 15px;
+            border-radius: 10px;
             background: white;
-            border-radius: 8px;
-            overflow: hidden;
-            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
-        }
-
-        th, td {
-            padding: 12px;
-            text-align: left;
-            border-bottom: 1px solid #ddd;
+            box-shadow: 0px 4px 10px rgba(0,0,0,0.08);
         }
 
         th {
-            background-color: #007BFF;
+            background-color: #6a11cb;
             color: white;
+            font-weight: 600;
+            text-transform: uppercase;
+            padding: 14px 16px;
+            text-align: left;
         }
 
-        tr:nth-child(even) {
-            background-color: #f2f2f2;
+        td {
+            padding: 12px 16px;
+            border-bottom: 1px solid #eee;
         }
 
-        tr:hover {
-            background-color: #ddd;
+        tr:last-child td {
+            border-bottom: none;
+        }
+
+        tr:hover td {
+            background: #fdf0ff;
         }
 
         a {
             text-decoration: none;
-            color: #007BFF;
-            font-weight: bold;
+            color: #6a11cb;
+            font-weight: 600;
             padding: 6px 12px;
             background-color: #ffffff;
-            border: 1px solid #007BFF;
-            border-radius: 4px;
+            border: 1px solid #6a11cb;
+            border-radius: 6px;
             transition: 0.3s;
         }
 
         a:hover {
-            background-color: #007BFF;
+            background: #6a11cb;
             color: white;
         }
+
         .button {
             display: inline-block;
@@ -65,20 +88,30 @@
             text-align: center;
             color: white;
-            background-color: #007bff;
+            background: linear-gradient(28deg, #6a11cb, #ff6ec4);
+            border-radius: 8px;
+            cursor: pointer;
             border: none;
-            border-radius: 5px;
-            cursor: pointer;
             text-decoration: none;
-        }
-        .button:hover {
-            background-color: #0056b3;
-        }
-        .logout {
-            background-color: red;
-        }
-        .logout:hover {
-            background-color: darkred;
+            font-weight: 700;
+            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
+            transition: all 0.2s ease;
         }
 
+        .button:hover {
+            background: linear-gradient(135deg, #5a0eb3, #ff3c9d);
+            transform: translateY(-2px);
+        }
+
+        .logout {
+            background-color: #dc3545;
+        }
+
+        .logout:hover {
+            background-color: #b52b37;
+        }
+
+        .hidden {
+            display: none;
+        }
     </style>
 </head>
@@ -86,20 +119,57 @@
 <body>
 <h2>Employee Dashboard</h2>
+<button class="button" onclick="toggleTables()">Show Reviewed Students</button>
+<div id="studentsToReviewTable">
+    <h3>Students to be Reviewed</h3>
+    <table border="1">
+        <tr>
+            <th>Email</th>
+            <th>Actions</th>
+        </tr>
+        <tr th:each="student : ${studentsToReview}">
+            <td th:text="${student.dormUser.email}"></td>
+            <td>
+                <a th:href="@{/employee/view-student(studentId=${student.id}, employeeId=${employeeId})}">View</a>
+            </td>
+        </tr>
+    </table>
+</div>
 
-<h3>Students with Uploaded Documents</h3>
-<table border="1">
-    <tr>
-        <th>Email</th>
-        <th>Actions</th>
-    </tr>
-    <tr th:each="student : ${students}">
-        <td th:text="${student.dormUser.email}"></td>
-        <td>
-            <a th:href="@{/employee/view-student(studentId=${student.id}, employeeId=${employeeId})}">View</a>
-        </td>
-    </tr>
-</table>
+<div id="reviewedStudentsTable" class="hidden">
+    <h3>Added to room students</h3>
+    <table border="1">
+        <tr>
+            <th>Email</th>
+            <th>Actions</th>
+        </tr>
+        <tr th:each="student : ${addedToRoomStudents}">
+            <td th:text="${student.dormUser.email}"></td>
+            <td>
+                <a th:href="@{/employee/view-student(studentId=${student.id}, employeeId=${employeeId})}">View</a>
+            </td>
+        </tr>
+    </table>
+</div>
 <a href="/login?logout" class="button logout">Logout</a>
+<script>
+    let showingReviewed = false;
+    function toggleTables() {
+        const toReviewTable = document.getElementById("studentsToReviewTable");
+        const reviewedTable = document.getElementById("reviewedStudentsTable");
+        const button = event.target;
 
+        if (showingReviewed) {
+            reviewedTable.classList.add("hidden");
+            toReviewTable.classList.remove("hidden");
+            button.textContent = "Show Reviewed Students";
+            showingReviewed = false;
+        } else {
+            toReviewTable.classList.add("hidden");
+            reviewedTable.classList.remove("hidden");
+            button.textContent = "Show Students to be Reviewed";
+            showingReviewed = true;
+        }
+    }
+</script>
 </body>
 </html>
Index: src/main/resources/templates/employee-register.html
===================================================================
--- src/main/resources/templates/employee-register.html	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ src/main/resources/templates/employee-register.html	(revision 017d970f45387f0608648e9d00345d73eef8c090)
@@ -6,5 +6,5 @@
         body {
             font-family: Arial, sans-serif;
-            background-color: #f4f4f9;
+            background: linear-gradient(90deg, #6a11cb, #ff6ec4);
             margin: 0;
             padding: 20px;
@@ -17,14 +17,15 @@
         .register-container {
             background: white;
-            padding: 25px;
-            border-radius: 8px;
-            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
+            padding: 30px;
+            border-radius: 12px;
+            box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
             width: 550px;
             text-align: center;
         }
 
-        h2 {
+        h1 {
             color: #333;
             margin-bottom: 20px;
+            font-size: 24px;
         }
 
@@ -46,6 +47,13 @@
             padding: 10px;
             border: 1px solid #ccc;
-            border-radius: 5px;
+            border-radius: 6px;
             font-size: 14px;
+            transition: 0.2s ease;
+        }
+
+        input:focus, select:focus {
+            border-color: #6a11cb;
+            outline: none;
+            box-shadow: 0 0 6px rgba(106, 17, 203, 0.4);
         }
 
@@ -54,20 +62,30 @@
         }
 
+        /* 🔥 Gradient 3D Button */
         button {
+            display: inline-block;
             width: 100%;
             padding: 12px;
-            background-color: #007BFF;
-            color: white;
-            border: none;
-            border-radius: 5px;
             margin-top: 20px;
-            cursor: pointer;
             font-size: 16px;
             font-weight: bold;
-            transition: background 0.3s;
+            text-align: center;
+            color: white;
+            background: linear-gradient(135deg, #6a11cb, #ff6ec4);
+            border: none;
+            border-radius: 8px;
+            cursor: pointer;
+            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
+            transition: all 0.2s ease;
         }
 
         button:hover {
-            background-color: #0056b3;
+            transform: translateY(-2px);
+            box-shadow: 0 6px 12px rgba(0,0,0,0.25);
+        }
+
+        button:active {
+            transform: translateY(1px);
+            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
         }
 
@@ -78,13 +96,14 @@
 
         .login-container a {
-            color: #007BFF;
+            color: #6a11cb;
             font-weight: bold;
             text-decoration: none;
-            transition: color 0.3s;
+            transition: color 0.3s, text-shadow 0.3s;
         }
 
         .login-container a:hover {
             text-decoration: underline;
-            color: #0056b3;
+            color: #ff6ec4;
+            text-shadow: 0px 1px 3px rgba(0,0,0,0.15);
         }
     </style>
@@ -93,5 +112,5 @@
 <body>
 <div class="register-container">
-    <h2>Student Registration</h2>
+    <h1>Employee Registration</h1>
 
     <form th:action="@{/employee/register}" method="post">
Index: src/main/resources/templates/login.html
===================================================================
--- src/main/resources/templates/login.html	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ src/main/resources/templates/login.html	(revision 017d970f45387f0608648e9d00345d73eef8c090)
@@ -6,5 +6,5 @@
         body {
             font-family: Arial, sans-serif;
-            background-color: #f4f4f9;
+            background: linear-gradient(90deg, #6a11cb, #ff6ec4);
             margin: 0;
             padding: 20px;
@@ -17,30 +17,48 @@
         .login-container {
             background: white;
-            padding: 25px;
-            border-radius: 8px;
-            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
-            width: 320px;
+            padding: 30px;
+            border-radius: 12px;
+            box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
+            width: 350px;
             text-align: center;
+            animation: fadeIn 0.6s ease-in-out;
         }
 
-        h2 {
+        h1 {
             color: #333;
             margin-bottom: 20px;
         }
 
+        form {
+            display: flex;
+            flex-direction: column;
+            gap: 5px;
+        }
+
+        .form-group {
+            display: flex;
+            flex-direction: column;
+            align-items: center; /* centers the input horizontally */
+        }
+
         label {
-            display: block;
-            margin-top: 12px;
+            align-self: flex-start; /* aligns label to the left */
             font-weight: bold;
-            text-align: left;
+            color: #333;
         }
 
         input {
-            width: 100%;
+            width: 93%; /* input takes 80% of form width and centered */
             padding: 10px;
-            margin-top: 5px;
             border: 1px solid #ccc;
-            border-radius: 5px;
+            border-radius: 8px;
             font-size: 14px;
+            transition: border 0.3s;
+        }
+
+        input:focus {
+            outline: none;
+            border-color: #6a11cb;
+            box-shadow: 0 0 6px rgba(106, 17, 203, 0.3);
         }
 
@@ -48,17 +66,19 @@
             width: 100%;
             padding: 12px;
-            background-color: #007BFF;
-            color: white;
-            border: none;
-            border-radius: 5px;
-            margin-top: 20px;
-            cursor: pointer;
+            margin-top: 10px;
             font-size: 16px;
             font-weight: bold;
-            transition: background 0.3s;
+            color: white;
+            background: linear-gradient(135deg, #6a11cb, #ff6ec4);
+            border: none;
+            border-radius: 8px;
+            cursor: pointer;
+            box-shadow: 0 4px 6px rgba(0,0,0,0.2);
+            transition: all 0.2s ease-in-out;
         }
 
         button:hover {
-            background-color: #0056b3;
+            transform: translateY(-2px);
+            box-shadow: 0 6px 10px rgba(0,0,0,0.3);
         }
 
@@ -69,5 +89,5 @@
 
         .register-container a {
-            color: #007BFF;
+            color: #6a11cb;
             font-weight: bold;
             text-decoration: none;
@@ -77,11 +97,18 @@
         .register-container a:hover {
             text-decoration: underline;
-            color: #0056b3;
+            color: #ff6ec4;
         }
-        .logout{
+
+        .logout {
             color: green;
         }
-        .error{
+
+        .error {
             color: red;
+        }
+
+        @keyframes fadeIn {
+            from { opacity: 0; transform: scale(0.95); }
+            to { opacity: 1; transform: scale(1); }
         }
     </style>
@@ -90,5 +117,5 @@
 <body>
 <div class="login-container">
-    <h2>Log In</h2>
+    <h1>Log In</h1>
 
     <form th:action="@{/do-login}" method="post">
Index: src/main/resources/templates/register.html
===================================================================
--- src/main/resources/templates/register.html	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ src/main/resources/templates/register.html	(revision 017d970f45387f0608648e9d00345d73eef8c090)
@@ -5,6 +5,6 @@
     <style>
         body {
-            font-family: Arial, sans-serif;
-            background-color: #f4f4f9;
+            font-family: "Segoe UI", Arial, sans-serif;
+            background: linear-gradient(90deg, #6a11cb 0%, #ff6ec4 100%);
             margin: 0;
             padding: 20px;
@@ -17,14 +17,15 @@
         .register-container {
             background: white;
-            padding: 25px;
-            border-radius: 8px;
-            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
-            width: 550px;
+            padding: 30px;
+            border-radius: 12px;
+            box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.15);
+            width: 600px;
             text-align: center;
+            animation: fadeIn 0.5s ease-in-out;
         }
 
-        h2 {
+        h1 {
             color: #333;
-            margin-bottom: 20px;
+            margin-bottom: 25px;
         }
 
@@ -32,5 +33,5 @@
             display: grid;
             grid-template-columns: 1fr 1fr;
-            gap: 15px 30px; /* Increased column gap */
+            gap: 18px 30px;
             text-align: left;
         }
@@ -40,4 +41,5 @@
             display: block;
             margin-bottom: 5px;
+            color: #555;
         }
 
@@ -46,10 +48,17 @@
             padding: 10px;
             border: 1px solid #ccc;
-            border-radius: 5px;
+            border-radius: 6px;
             font-size: 14px;
+            transition: border-color 0.3s, box-shadow 0.3s;
+        }
+
+        input:focus, select:focus {
+            border-color: #6a11cb;
+            outline: none;
+            box-shadow: 0 0 6px rgba(106, 17, 203, 0.3);
         }
 
         .full-width {
-            grid-column: span 2; /* Makes element take full width */
+            grid-column: span 2;
         }
 
@@ -57,17 +66,18 @@
             width: 100%;
             padding: 12px;
-            background-color: #007BFF;
+            background: linear-gradient(135deg, #6a11cb, #ff6ec4);
             color: white;
             border: none;
-            border-radius: 5px;
+            border-radius: 6px;
             margin-top: 20px;
             cursor: pointer;
             font-size: 16px;
             font-weight: bold;
-            transition: background 0.3s;
+            transition: transform 0.2s, opacity 0.3s;
         }
 
         button:hover {
-            background-color: #0056b3;
+            transform: scale(1.03);
+            opacity: 0.9;
         }
 
@@ -78,5 +88,5 @@
 
         .login-container a {
-            color: #007BFF;
+            color: #6a11cb;
             font-weight: bold;
             text-decoration: none;
@@ -86,5 +96,10 @@
         .login-container a:hover {
             text-decoration: underline;
-            color: #0056b3;
+            color: #ff6ec4;
+        }
+
+        @keyframes fadeIn {
+            from { opacity: 0; transform: translateY(-10px); }
+            to { opacity: 1; transform: translateY(0); }
         }
     </style>
@@ -93,5 +108,5 @@
 <body>
 <div class="register-container">
-    <h2>Student Registration</h2>
+    <h1>Student Registration</h1>
 
     <form th:action="@{/register}" method="post">
Index: src/main/resources/templates/room-request.html
===================================================================
--- src/main/resources/templates/room-request.html	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ src/main/resources/templates/room-request.html	(revision 017d970f45387f0608648e9d00345d73eef8c090)
@@ -6,12 +6,42 @@
     <style>
         body {
-            font-family: Arial, sans-serif;
-            background-color: #f4f4f9;
+            font-family: "Segoe UI", Arial, sans-serif;
+            background: linear-gradient(90deg, #6a11cb 0%, #ff6ec4 100%);
             margin: 0;
-            padding: 20px;
+            padding: 30px;
+            display: flex;
+            flex-direction: column;
+            align-items: center;
+            min-height: 100vh;
+            color: #333;
         }
 
         h2, h3 {
-            color: #333;
+            text-align: center;
+            color: #fff;
+            margin-bottom: 20px;
+        }
+
+        .container {
+            width: 80%;
+            background: white;
+            padding: 30px;
+            border-radius: 12px;
+            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
+            animation: fadeIn 0.6s ease-in-out;
+        }
+
+        ul {
+            background: #f9f9f9;
+            padding: 15px 20px;
+            border-radius: 10px;
+            margin-bottom: 20px;
+            list-style: none;
+            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
+        }
+
+        ul li {
+            margin-bottom: 8px;
+            font-size: 16px;
         }
 
@@ -19,27 +49,53 @@
             width: 100%;
             border-collapse: collapse;
-            background: white;
-            border-radius: 8px;
+            margin-top: 15px;
+            border-radius: 10px;
             overflow: hidden;
-            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
+            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
+            background: #fff;
         }
 
         th, td {
-            padding: 12px;
+            padding: 12px 15px;
             text-align: left;
-            border-bottom: 1px solid #ddd;
+            border: 1px solid #eee; /* white/light separation between cells */
         }
 
         th {
-            background-color: #007BFF;
+            background-color: #b842c7;
             color: white;
+            font-weight: 600;
+            text-transform: uppercase;
         }
 
-        tr:nth-child(even) {
-            background-color: #f2f2f2;
+        tr:nth-child(even) td {
+            background-color: #f9f9f9;
         }
 
-        tr:hover {
-            background-color: #ddd;
+        tr:hover td {
+            background-color: #e0e0e0;
+        }
+
+        a {
+            display: inline-block;
+            padding: 8px 12px;
+            background: linear-gradient(135deg, #6a11cb, #ff6ec4);
+            color: #fff;
+            text-decoration: none;
+            border-radius: 6px;
+            font-weight: bold;
+            transition: all 0.2s ease;
+            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
+            cursor: pointer;
+        }
+
+        a:hover {
+            transform: translateY(-2px);
+            box-shadow: 0 4px 8px rgba(0,0,0,0.25);
+        }
+
+        @keyframes fadeIn {
+            from { opacity: 0; transform: translateY(10px); }
+            to { opacity: 1; transform: translateY(0); }
         }
     </style>
Index: src/main/resources/templates/room-selection.html
===================================================================
--- src/main/resources/templates/room-selection.html	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ src/main/resources/templates/room-selection.html	(revision 017d970f45387f0608648e9d00345d73eef8c090)
@@ -7,6 +7,80 @@
         <head>
         <title>Room Selection</title>
+    <style>
+        body {
+            font-family: "Segoe UI", Arial, sans-serif;
+            background: linear-gradient(90deg, #6a11cb 0%, #ff6ec4 100%);
+            margin: 0;
+            padding: 30px;
+            display: flex;
+            justify-content: center;
+            align-items: center;
+            min-height: 100vh;
+        }
+
+        .form-container {
+            background: white;
+            padding: 30px;
+            border-radius: 12px;
+            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
+            width: 400px;
+            text-align: center;
+            animation: fadeIn 0.6s ease-in-out;
+        }
+
+        h2 {
+            color: #333;
+            margin-bottom: 20px;
+        }
+
+        form {
+            display: flex;
+            flex-direction: column;
+            align-items: stretch;
+        }
+
+        label {
+            font-weight: bold;
+            margin-top: 10px;
+            margin-bottom: 5px;
+            text-align: left;
+        }
+
+        input[type="text"],
+        input[type="email"] {
+            padding: 10px;
+            border-radius: 6px;
+            border: 1px solid #ccc;
+            margin-bottom: 15px;
+            font-size: 16px;
+        }
+
+        button {
+            padding: 12px;
+            background: linear-gradient(135deg, #6a11cb, #ff6ec4);
+            color: white;
+            border: none;
+            border-radius: 8px;
+            font-weight: bold;
+            font-size: 16px;
+            cursor: pointer;
+            transition: all 0.2s ease;
+            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
+        }
+
+        button:hover {
+            transform: translateY(-2px);
+            box-shadow: 0 6px 12px rgba(0,0,0,0.25);
+        }
+
+        @keyframes fadeIn {
+            from { opacity: 0; transform: translateY(10px); }
+            to { opacity: 1; transform: translateY(0); }
+        }
+    </style>
 </head>
 <body>
+<div class="form-container">
+
 <h2>Select a Room</h2>
 <form action="/apply-room" method="post">
@@ -19,9 +93,5 @@
     <button type="submit">Apply</button>
 </form>
-</body>
-</html>
-</title>
-</head>
-<body>
+</div>
 
 </body>
Index: src/main/resources/templates/student-dashboard.html
===================================================================
--- src/main/resources/templates/student-dashboard.html	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ src/main/resources/templates/student-dashboard.html	(revision 017d970f45387f0608648e9d00345d73eef8c090)
@@ -6,67 +6,100 @@
     <style>
         body {
-            font-family: Arial, sans-serif;
-            margin: 20px;
-            padding: 0;
-            background-color: #f4f4f4;
+            font-family: "Segoe UI", Arial, sans-serif;
+            margin: 0;
+            padding: 30px;
+            background: linear-gradient(90deg, #6a11cb 0%, #ff6ec4 100%);
         }
+
         .container {
             width: 80%;
             margin: auto;
             background: white;
-            padding: 20px;
-            border-radius: 8px;
-            box-shadow: 0px 0px 10px 0px #aaa;
+            padding: 30px;
+            border-radius: 12px;
+            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
+            animation: fadeIn 0.6s ease-in-out;
         }
-        h2 {
+
+        h2, h3 {
             text-align: center;
+            color: #333;
         }
+
         table {
             width: 100%;
             border-collapse: collapse;
-            margin: 20px 0;
+            margin: 25px 0;
+            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
+            border-radius: 10px;
+            overflow: hidden;
         }
+
         th, td {
-            border: 1px solid #ddd;
-            padding: 10px;
+            border: 1px solid #eee;
+            padding: 12px 15px;
             text-align: left;
         }
+
         th {
-            background-color: #007bff;
+            background-color: #b842c7;
             color: white;
+            font-weight: 600;
+            text-transform: uppercase;
+            padding: 14px 16px;
+            text-align: left;
         }
+
+        td {
+            font-size: 15px;
+            color: #333;
+        }
+
         .status-approved {
-            color: green;
+            color: #28a745;
             font-weight: bold;
         }
         .status-pending {
-            color: orange;
+            color: #ff9800;
             font-weight: bold;
         }
         .status-rejected {
-            color: red;
+            color: #e53935;
             font-weight: bold;
         }
+
+        /* Buttons */
         .button {
             display: inline-block;
-            padding: 10px 20px;
-            margin: 10px 0;
+            padding: 12px 25px;
+            margin: 15px 5px 0 0;
             font-size: 16px;
+            font-weight: 700;
             text-align: center;
             color: white;
-            background-color: #007bff;
-            border: none;
-            border-radius: 5px;
+            background: linear-gradient(135deg, #6a11cb, #ff6ec4);
+            border-radius: 8px;
             cursor: pointer;
             text-decoration: none;
+            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
+            transition: all 0.2s ease;
         }
+
         .button:hover {
-            background-color: #0056b3;
+            transform: translateY(-2px);
+            box-shadow: 0 6px 12px rgba(0,0,0,0.25);
         }
+
         .logout {
-            background-color: red;
+            background: linear-gradient(135deg, #e53935, #ff1744);
         }
+
         .logout:hover {
-            background-color: darkred;
+            background: linear-gradient(135deg, #c62828, #d32f2f);
+        }
+
+        @keyframes fadeIn {
+            from { opacity: 0; transform: translateY(10px); }
+            to { opacity: 1; transform: translateY(0); }
         }
     </style>
Index: src/main/resources/templates/student-details.html
===================================================================
--- src/main/resources/templates/student-details.html	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ src/main/resources/templates/student-details.html	(revision 017d970f45387f0608648e9d00345d73eef8c090)
@@ -6,5 +6,5 @@
         body {
             font-family: "Segoe UI", Arial, sans-serif;
-            background: linear-gradient(135deg, #6a11cb 0%, #ff6ec4 100%);
+            background: linear-gradient(90deg, #6a11cb 0%, #ff6ec4 100%);
             margin: 0;
             padding: 30px;
@@ -212,4 +212,12 @@
         }
         .back-link:hover { background-color: #5a6268; }
+        .center-button {
+            text-align: center;
+            margin-top: 20px;
+        }
+        .center-button button {
+            margin: 0 auto;
+            display: inline-block;
+        }
     </style>
 
@@ -246,13 +254,16 @@
     </div>
 
-    <div class="info-card" th:if="${roomRequest != null}">
+    <div class="info-card" th:if="${!roomRequest.roomateEmail.isBlank()}">
         <h4>Roommate Request</h4>
-        <p><b>Roommate Email:</b> <span th:text="${roommateEmail}"></span></p>
-        <p>
-            <b>Has identical room request with current student? </b>
+        <p><b>Roommate Email:</b> <span th:text="${roomRequest.roomateEmail}"></span></p>
+        <p th:if="${identicalRoomRequests != null}">
+            <b>Roommate has identical room request with current student? </b>
             <span th:if="${identicalRoomRequests}" class="badge success">✔️ Yes</span>
             <span th:if="${!identicalRoomRequests}" class="badge error">❌ No</span>
         </p>
-        <p>
+        <p th:if="${roommateEmail == null}">
+            Roommate is currently not registered on the platform!
+        </p>
+        <p th:if="${areAllRoommatesDocsApproved != null && areAllRoommatesDocsReviewed != null}">
             <b>Documents status for requested roommate:</b>
             <span th:if="${!areAllRoommatesDocsReviewed}" class="badge info">Pending</span>
@@ -289,5 +300,8 @@
         <tr th:each="document : ${documentsToValidate}" th:id="'document-' + ${document.id}" th:classappend="${document.getDStatus()=='Approved'} ? 'approved' : (${document.getDStatus() == 'Declined'} ? 'declined' : '')">
             <td>
-                <a th:href="@{/download-document(documentId=${document.id})}" th:text="${document.documentName}">Download</a>
+                <a th:href="@{/employee/download-document(documentId=${document.id})}"
+                   th:text="${document.documentName}" download>
+                    Download
+                </a>
             </td>
             <td>
@@ -333,5 +347,5 @@
         <tr th:each="doc : ${reviewedDocuments}">
             <td>
-                <a th:href="@{/download-document(documentId=${doc.id})}" th:text="${doc.documentName}"></a>
+                <a th:href="@{/employee/download-document(documentId=${doc.id})}" th:text="${doc.documentName}"></a>
             </td>
         </tr>
@@ -344,5 +358,6 @@
         Next
     </a>
-    <form th:if="${studentIsInRoom != null && identicalRoomRequests == Boolean.TRUE}"
+    <div class="center-button">
+        <form th:if="${ studentIsInRoom != null && identicalRoomRequests}"
           th:action="@{/employee/assign-room}"
           th:method="post">
@@ -354,8 +369,10 @@
         <input type="hidden" th:name="${_csrf.parameterName}" th:value="${_csrf.token}" />
 
-        <button type="submit">
+        <button type="submit" th:disabled="${!allDocsApproved}">
             Instant add in the room with the requested roommate
         </button>
     </form>
+    </div>
+
 </div>
 
Index: src/main/resources/templates/upload-documents.html
===================================================================
--- src/main/resources/templates/upload-documents.html	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ src/main/resources/templates/upload-documents.html	(revision 017d970f45387f0608648e9d00345d73eef8c090)
@@ -7,6 +7,6 @@
     <style>
         body {
-            font-family: Arial, sans-serif;
-            background-color: #f4f4f9;
+            font-family: "Segoe UI", Arial, sans-serif;
+            background: linear-gradient(90deg, #6a11cb, #ff6ec4);
             margin: 0;
             padding: 20px;
@@ -18,15 +18,16 @@
 
         .upload-container {
-            background: white;
-            padding: 25px;
-            border-radius: 8px;
-            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
-            width: 400px;
+            background: #fff;
+            padding: 30px;
+            border-radius: 12px;
+            box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
+            width: 420px;
             text-align: center;
         }
 
-        h2 {
+        h1 {
             color: #333;
-            margin-bottom: 20px;
+            margin-bottom: 25px;
+            font-size: 24px;
         }
 
@@ -38,35 +39,42 @@
 
         label {
-            font-weight: bold;
+            font-weight: 600;
             display: block;
-            margin-top: 10px;
+            margin-top: 12px;
             text-align: left;
             width: 100%;
+            color: #444;
         }
 
         input[type="file"] {
             width: 100%;
-            padding: 8px;
+            padding: 10px;
             border: 1px solid #ccc;
-            border-radius: 5px;
-            background: #fff;
+            border-radius: 8px;
+            background: #fafafa;
+            font-size: 14px;
         }
 
-        button {
+        .button {
+            display: inline-block;
             width: 100%;
             padding: 12px;
-            background-color: #007BFF;
+            margin-top: 15px;
+            font-size: 16px;
+            text-align: center;
             color: white;
+            background: linear-gradient(135deg, #6a11cb, #ff6ec4);
+            border-radius: 8px;
+            cursor: pointer;
+            text-decoration: none;
+            font-weight: 700;
             border: none;
-            border-radius: 5px;
-            margin-top: 15px;
-            cursor: pointer;
-            font-size: 16px;
-            font-weight: bold;
-            transition: background 0.3s;
+            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
+            transition: all 0.2s ease;
         }
 
-        button:hover {
-            background-color: #0056b3;
+        .button:hover {
+            transform: translateY(-2px);
+            box-shadow: 0 6px 12px rgba(0,0,0,0.25);
         }
 
@@ -79,5 +87,5 @@
 <body>
 <div class="upload-container">
-    <h2>Upload Documents</h2>
+    <h1>Upload Documents</h1>
     <form action="/upload-documents" method="post" enctype="multipart/form-data">
         <input type="hidden" name="studentId" th:value="${studentId}" />
@@ -99,6 +107,6 @@
         <input type="file" id="file5" name="files" required>
 
-        <button type="submit">Upload Documents</button>
-        <button type="submit" name="next" value="true">Proceed with Room Request</button>
+        <button type="submit" class="button">Upload Documents</button>
+        <button type="submit" name="next" value="true" class="button">Proceed with Room Request</button>
     </form>
 
Index: src/main/resources/templates/view-floors.html
===================================================================
--- src/main/resources/templates/view-floors.html	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ src/main/resources/templates/view-floors.html	(revision 017d970f45387f0608648e9d00345d73eef8c090)
@@ -6,12 +6,42 @@
     <style>
         body {
-            font-family: Arial, sans-serif;
-            background-color: #f4f4f9;
+            font-family: "Segoe UI", Arial, sans-serif;
+            background: linear-gradient(90deg, #6a11cb 0%, #ff6ec4 100%);
             margin: 0;
-            padding: 20px;
+            padding: 30px;
+            display: flex;
+            flex-direction: column;
+            align-items: center;
+            min-height: 100vh;
+            color: #333;
         }
 
         h2, h3 {
-            color: #333;
+            text-align: center;
+            color: #fff;
+            margin-bottom: 20px;
+        }
+
+        .container {
+            width: 80%;
+            background: white;
+            padding: 30px;
+            border-radius: 12px;
+            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
+            animation: fadeIn 0.6s ease-in-out;
+        }
+
+        ul {
+            background: #f9f9f9;
+            padding: 15px 20px;
+            border-radius: 10px;
+            margin-bottom: 20px;
+            list-style: none;
+            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
+        }
+
+        ul li {
+            margin-bottom: 8px;
+            font-size: 16px;
         }
 
@@ -19,27 +49,54 @@
             width: 100%;
             border-collapse: collapse;
-            background: white;
-            border-radius: 8px;
+            margin-top: 15px;
+            border-spacing: 0 8px;
+            border-radius: 10px;
             overflow: hidden;
-            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
+            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
+            background: transparent;
         }
 
         th, td {
-            padding: 12px;
+            padding: 12px 15px;
             text-align: left;
-            border-bottom: 1px solid #ddd;
+            border: 1px solid #ddd;
         }
 
         th {
-            background-color: #007BFF;
+            background-color: #b842c7;
             color: white;
+            font-weight: 600;
+            text-transform: uppercase;
         }
 
-        tr:nth-child(even) {
-            background-color: #f2f2f2;
+        tr:nth-child(even) td {
+            background-color: #f9f9f9;
         }
 
-        tr:hover {
-            background-color: #ddd;
+        tr:hover td {
+            background-color: #e0e0e0;
+        }
+
+        a {
+            display: inline-block;
+            padding: 8px 12px;
+            background: linear-gradient(90deg, #6a11cb, #ff6ec4);
+            color: #fff;
+            text-decoration: none;
+            border-radius: 6px;
+            font-weight: bold;
+            transition: all 0.2s ease;
+            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
+            cursor: pointer;
+        }
+
+        a:hover {
+            transform: translateY(-2px);
+            box-shadow: 0 4px 8px rgba(0,0,0,0.25);
+        }
+
+        @keyframes fadeIn {
+            from { opacity: 0; transform: translateY(10px); }
+            to { opacity: 1; transform: translateY(0); }
         }
     </style>
@@ -55,5 +112,6 @@
     </ul>
 </div>
-<table>
+<div class="container">
+    <table>
     <thead>
     <tr>
@@ -75,4 +133,6 @@
     </tbody>
 </table>
+</div>
+
 </body>
 </html>
Index: src/main/resources/templates/view-rooms.html
===================================================================
--- src/main/resources/templates/view-rooms.html	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ src/main/resources/templates/view-rooms.html	(revision 017d970f45387f0608648e9d00345d73eef8c090)
@@ -5,41 +5,99 @@
     <title>Rooms</title>
     <style>
+        body {
+            font-family: "Segoe UI", Arial, sans-serif;
+            background: linear-gradient(135deg, #6a11cb, #ff6ec4);
+            margin: 0;
+            padding: 20px;
+            display: flex;
+            flex-direction: column;
+            align-items: center;
+            min-height: 100vh;
+        }
+
+        .block-label {
+            font-size: 22px;
+            font-weight: bold;
+            color: #fff;
+            margin: 20px 0;
+            text-align: center;
+        }
+
         table {
             border-collapse: collapse;
-            margin: 20px auto;
         }
+
         td {
+            position: relative;
             width: 80px;
             height: 80px;
             text-align: center;
             vertical-align: middle;
-            border: 1px solid #333;
-            cursor: pointer;
+            border-radius: 8px;
+            margin: 4px;
+            box-shadow: 0 4px 6px rgba(0,0,0,0.15);
+        }
+        .reserved-badge {
+            position: absolute;
+            top: 5px;
+            right: 5px;
+            background: rgba(255, 193, 7, 0.95); /* yellow badge */
+            color: #000;
+            font-size: 11px;
             font-weight: bold;
-            color: #fff;
+            padding: 2px 5px;
+            border-radius: 5px;
+            box-shadow: 0 2px 4px rgba(0,0,0,0.3);
+            z-index: 2;
         }
-        .available {
-            background-color: #4CAF50; /* green */
+        td.available button {
+            background: linear-gradient(135deg, #4CAF50, #2e7d32);
         }
-        .partial {
-            background-color: orange; /* orange */
+
+        td.partial button {
+            background: linear-gradient(135deg, orange, darkorange);
         }
-        .taken {
-            background-color: #f44336; /* red */
+
+        td.taken button {
+            background: linear-gradient(135deg, #f44336, #c62828);
             cursor: not-allowed;
         }
-        .block-label {
-            font-size: 18px;
-            text-align: center;
-            margin: 20px;
-        }
+
         button {
             width: 100%;
             height: 100%;
             border: none;
-            background: transparent;
-            font-weight: bold; font-size: 16px;
-            color: #fff;
+            border-radius: 8px;
+            font-weight: bold;
+            font-size: 16px;
+            color: white;
             cursor: pointer;
+            transition: transform 0.2s, box-shadow 0.2s;
+        }
+
+        button:hover:not(:disabled) {
+            transform: translateY(-3px);
+            box-shadow: 0 6px 10px rgba(0,0,0,0.25);
+        }
+
+        button:disabled {
+            cursor: not-allowed;
+            opacity: 0.7;
+        }
+
+        ul {
+            background: rgba(255,255,255,0.9);
+            padding: 15px 20px;
+            border-radius: 10px;
+            margin-bottom: 20px;
+            list-style: none;
+            width: 80%;
+            text-align: left;
+            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
+        }
+
+        ul li {
+            margin-bottom: 8px;
+            font-size: 16px;
         }
     </style>
@@ -71,5 +129,9 @@
                 <input type="hidden" name="blockId" th:value="${room.getId().getBlockId()}">
                 <input type="hidden" th:name="${_csrf.parameterName}" th:value="${_csrf.token}" />
-                <button th:type="submit" th:text="${room.getId().getRoomNumber()}"></button>
+                <span th:if="${room.isReserved}" class="reserved-badge">Reserved</span>
+                <button th:type="submit"
+                        th:disabled="${room.isReserved && room.id.roomNumber != roomRequest.id.roomNumber}"
+                        th:text="${room.getId().getRoomNumber()}">
+                </button>
             </form>
         </td>
Index: loads/1755804094357_import.svg
===================================================================
--- uploads/1755804094357_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1755804094380_import.svg
===================================================================
--- uploads/1755804094380_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1755804094385_import.svg
===================================================================
--- uploads/1755804094385_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1755804094390_import.svg
===================================================================
--- uploads/1755804094390_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1755804094395_import.svg
===================================================================
--- uploads/1755804094395_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1755811333162_import.svg
===================================================================
--- uploads/1755811333162_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1755811333170_import.svg
===================================================================
--- uploads/1755811333170_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1755811333175_import.svg
===================================================================
--- uploads/1755811333175_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1755811333180_import.svg
===================================================================
--- uploads/1755811333180_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1755811333185_import.svg
===================================================================
--- uploads/1755811333185_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1755811421539_import.svg
===================================================================
--- uploads/1755811421539_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1755811421545_message-question.svg
===================================================================
--- uploads/1755811421545_message-question.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M16.0009 44.6397C15.4215 44.6381 14.8513 44.4939 14.3409 44.2197C13.7835 43.9217 13.3178 43.4775 12.9937 42.9349C12.6695 42.3923 12.4992 41.7718 12.5009 41.1397V38.2997C9.66538 38.0984 7.02403 36.7857 5.15134 34.6471C3.27865 32.5085 2.32611 29.717 2.50089 26.8797V14.8797C2.41165 13.3462 2.64799 11.8111 3.19435 10.3754C3.74071 8.93976 4.58474 7.63597 5.67094 6.54976C6.75715 5.46356 8.06094 4.61953 9.49662 4.07317C10.9323 3.52681 12.4674 3.29048 14.0009 3.37971H34.0009C35.5344 3.29048 37.0695 3.52681 38.5052 4.07317C39.9408 4.61953 41.2446 5.46356 42.3308 6.54976C43.417 7.63597 44.2611 8.93976 44.8074 10.3754C45.3538 11.8111 45.5901 13.3462 45.5009 14.8797V26.8797C45.5901 28.4132 45.3538 29.9483 44.8074 31.384C44.2611 32.8197 43.417 34.1235 42.3308 35.2097C41.2446 36.2959 39.9408 37.1399 38.5052 37.6863C37.0695 38.2326 35.5344 38.4689 34.0009 38.3797H26.4609L17.9409 44.0597C17.3641 44.4371 16.6901 44.6386 16.0009 44.6397ZM14.0009 6.35971C12.8644 6.28092 11.7241 6.44676 10.6571 6.84606C9.59013 7.24536 8.62117 7.86882 7.81558 8.67441C7.01 9.47999 6.38654 10.449 5.98724 11.516C5.58794 12.583 5.4221 13.7232 5.50089 14.8597V26.8597C5.4221 27.9963 5.58794 29.1365 5.98724 30.2035C6.38654 31.2705 7.01 32.2394 7.81558 33.045C8.62117 33.8506 9.59013 34.4741 10.6571 34.8734C11.7241 35.2727 12.8644 35.4385 14.0009 35.3597C14.3979 35.3623 14.7779 35.5212 15.0587 35.8019C15.3394 36.0827 15.4983 36.4627 15.5009 36.8597V41.1197C15.5012 41.2104 15.526 41.2994 15.5726 41.3772C15.6193 41.455 15.6861 41.5188 15.7659 41.5618C15.8458 41.6048 15.9358 41.6254 16.0264 41.6215C16.1171 41.6177 16.205 41.5894 16.2809 41.5397L25.1809 35.6197C25.4297 35.4534 25.7216 35.363 26.0209 35.3597H34.0209C35.1574 35.4385 36.2976 35.2727 37.3646 34.8734C38.4316 34.4741 39.4006 33.8506 40.2062 33.045C41.0118 32.2394 41.6352 31.2705 42.0345 30.2035C42.4338 29.1365 42.5997 27.9963 42.5209 26.8597V14.8597C42.5997 13.7232 42.4338 12.583 42.0345 11.516C41.6352 10.449 41.0118 9.47999 40.2062 8.67441C39.4006 7.86882 38.4316 7.24536 37.3646 6.84606C36.2976 6.44676 35.1574 6.28092 34.0209 6.35971H14.0009Z" fill="#1D79BE"/>
-<path d="M23.9997 24.2207C23.6027 24.2181 23.2227 24.0592 22.9419 23.7785C22.6612 23.4977 22.5023 23.1177 22.4997 22.7207V22.3007C22.5235 21.5048 22.7511 20.7282 23.1608 20.0454C23.5705 19.3626 24.1486 18.7963 24.8397 18.4007C25.5797 17.9007 25.8197 17.5607 25.8197 17.0407C25.8197 16.8017 25.7726 16.565 25.6811 16.3442C25.5897 16.1234 25.4556 15.9228 25.2866 15.7538C25.1176 15.5848 24.917 15.4507 24.6962 15.3592C24.4754 15.2678 24.2387 15.2207 23.9997 15.2207C23.7607 15.2207 23.524 15.2678 23.3032 15.3592C23.0824 15.4507 22.8818 15.5848 22.7128 15.7538C22.5438 15.9228 22.4097 16.1234 22.3182 16.3442C22.2268 16.565 22.1797 16.8017 22.1797 17.0407C22.1771 17.4377 22.0182 17.8177 21.7375 18.0985C21.4567 18.3792 21.0767 18.5381 20.6797 18.5407C20.2827 18.5381 19.9027 18.3792 19.6219 18.0985C19.3412 17.8177 19.1823 17.4377 19.1797 17.0407C19.1797 15.7624 19.6875 14.5364 20.5914 13.6324C21.4954 12.7285 22.7213 12.2207 23.9997 12.2207C25.278 12.2207 26.504 12.7285 27.4079 13.6324C28.3119 14.5364 28.8197 15.7624 28.8197 17.0407C28.7961 17.8239 28.5724 18.588 28.1697 19.2602C27.7671 19.9324 27.1991 20.4903 26.5197 20.8807C25.7397 21.4007 25.4997 21.7407 25.4997 22.3007V22.7207C25.5 22.9178 25.4613 23.1129 25.386 23.295C25.3108 23.4771 25.2003 23.6426 25.0609 23.7819C24.9216 23.9213 24.7561 24.0318 24.574 24.1071C24.3919 24.1823 24.1967 24.221 23.9997 24.2207Z" fill="#1D79BE"/>
-<path d="M24 29.1992C23.7033 29.1992 23.4133 29.1112 23.1666 28.9464C22.92 28.7816 22.7277 28.5473 22.6142 28.2732C22.5006 27.9992 22.4709 27.6976 22.5288 27.4066C22.5867 27.1156 22.7296 26.8483 22.9393 26.6386C23.1491 26.4288 23.4164 26.2859 23.7074 26.228C23.9983 26.1702 24.2999 26.1999 24.574 26.3134C24.8481 26.4269 25.0824 26.6192 25.2472 26.8659C25.412 27.1125 25.5 27.4025 25.5 27.6992C25.5003 27.8963 25.4616 28.0914 25.3864 28.2736C25.3111 28.4557 25.2006 28.6211 25.0612 28.7605C24.9219 28.8998 24.7564 29.0103 24.5743 29.0856C24.3922 29.1609 24.1971 29.1995 24 29.1992Z" fill="#1D79BE"/>
-</svg>
Index: loads/1755811421569_message-question-white.svg
===================================================================
--- uploads/1755811421569_message-question-white.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M6.66696 18.5999C6.42553 18.5992 6.18798 18.5391 5.97529 18.4249C5.74306 18.3007 5.54901 18.1157 5.41395 17.8896C5.27889 17.6635 5.20791 17.4049 5.20862 17.1416V15.9582C4.02716 15.8744 2.9266 15.3274 2.14631 14.4363C1.36602 13.5452 0.96913 12.3821 1.04196 11.1999V6.1999C1.00477 5.56093 1.10325 4.92132 1.3309 4.32312C1.55855 3.72492 1.91023 3.18167 2.36281 2.72909C2.8154 2.2765 3.35864 1.92483 3.95684 1.69717C4.55504 1.46952 5.19465 1.37105 5.83362 1.40823H14.167C14.8059 1.37105 15.4455 1.46952 16.0437 1.69717C16.6419 1.92483 17.1852 2.2765 17.6378 2.72909C18.0904 3.18167 18.442 3.72492 18.6697 4.32312C18.8973 4.92132 18.9958 5.56093 18.9586 6.1999V11.1999C18.9958 11.8389 18.8973 12.4785 18.6697 13.0767C18.442 13.6749 18.0904 14.2181 17.6378 14.6707C17.1852 15.1233 16.6419 15.475 16.0437 15.7026C15.4455 15.9303 14.8059 16.0287 14.167 15.9916H11.0253L7.47529 18.3582C7.23498 18.5155 6.95413 18.5994 6.66696 18.5999ZM5.83362 2.6499C5.36007 2.61707 4.88497 2.68617 4.44039 2.85255C3.99581 3.01892 3.59207 3.2787 3.25641 3.61436C2.92075 3.95002 2.66098 4.35375 2.4946 4.79833C2.32823 5.24292 2.25913 5.71801 2.29196 6.19157V11.1916C2.25913 11.6651 2.32823 12.1402 2.4946 12.5848C2.66098 13.0294 2.92075 13.4331 3.25641 13.7688C3.59207 14.1044 3.99581 14.3642 4.44039 14.5306C4.88497 14.697 5.36007 14.7661 5.83362 14.7332C5.99905 14.7343 6.15738 14.8005 6.27436 14.9175C6.39133 15.0345 6.45753 15.1928 6.45862 15.3582V17.1332C6.45875 17.171 6.46908 17.2081 6.48852 17.2405C6.50795 17.2729 6.53578 17.2995 6.56906 17.3174C6.60234 17.3353 6.63984 17.3439 6.67761 17.3423C6.71537 17.3407 6.752 17.3289 6.78362 17.3082L10.492 14.8416C10.5956 14.7723 10.7172 14.7346 10.842 14.7332H14.1753C14.6488 14.7661 15.1239 14.697 15.5685 14.5306C16.0131 14.3642 16.4168 14.1044 16.7525 13.7688C17.0882 13.4331 17.3479 13.0294 17.5143 12.5848C17.6807 12.1402 17.7498 11.6651 17.717 11.1916V6.19157C17.7498 5.71801 17.6807 5.24292 17.5143 4.79833C17.3479 4.35375 17.0882 3.95002 16.7525 3.61436C16.4168 3.2787 16.0131 3.01892 15.5685 2.85255C15.1239 2.68617 14.6488 2.61707 14.1753 2.6499H5.83362Z" fill="white"/>
-<path d="M9.99979 10.092C9.83437 10.0909 9.67603 10.0247 9.55905 9.90772C9.44208 9.79074 9.37588 9.6324 9.37479 9.46698V9.29198C9.38471 8.96033 9.47956 8.63678 9.65027 8.35227C9.82097 8.06775 10.0618 7.8318 10.3498 7.66698C10.6581 7.45865 10.7581 7.31698 10.7581 7.10031C10.7581 7.00073 10.7385 6.90212 10.7004 6.81011C10.6623 6.71811 10.6064 6.63451 10.536 6.56409C10.4656 6.49367 10.382 6.43781 10.29 6.3997C10.198 6.36159 10.0994 6.34198 9.99979 6.34198C9.9002 6.34198 9.80159 6.36159 9.70959 6.3997C9.61758 6.43781 9.53398 6.49367 9.46357 6.56409C9.39315 6.63451 9.33729 6.71811 9.29918 6.81011C9.26107 6.90212 9.24146 7.00073 9.24146 7.10031C9.24036 7.26574 9.17416 7.42407 9.05719 7.54105C8.94022 7.65802 8.78188 7.72422 8.61646 7.72531C8.45103 7.72422 8.29269 7.65802 8.17572 7.54105C8.05875 7.42407 7.99255 7.26574 7.99146 7.10031C7.99146 6.56767 8.20305 6.05684 8.57968 5.68021C8.95632 5.30357 9.46715 5.09198 9.99979 5.09198C10.5324 5.09198 11.0433 5.30357 11.4199 5.68021C11.7965 6.05684 12.0081 6.56767 12.0081 7.10031C11.9983 7.42665 11.9051 7.74503 11.7373 8.02511C11.5696 8.3052 11.3329 8.53765 11.0498 8.70031C10.7248 8.91698 10.6248 9.05865 10.6248 9.29198V9.46698C10.6249 9.54909 10.6088 9.63041 10.5774 9.70629C10.5461 9.78217 10.5 9.85111 10.442 9.90917C10.3839 9.96723 10.315 10.0133 10.2391 10.0446C10.1632 10.076 10.0819 10.0921 9.99979 10.092Z" fill="white"/>
-<path d="M10 12.1663C9.87639 12.1663 9.75555 12.1297 9.65277 12.061C9.54999 11.9923 9.46988 11.8947 9.42258 11.7805C9.37527 11.6663 9.36289 11.5406 9.38701 11.4194C9.41113 11.2982 9.47065 11.1868 9.55806 11.0994C9.64547 11.012 9.75683 10.9524 9.87807 10.9283C9.99931 10.9042 10.125 10.9166 10.2392 10.9639C10.3534 11.0112 10.451 11.0913 10.5197 11.1941C10.5883 11.2969 10.625 11.4177 10.625 11.5413C10.6251 11.6234 10.609 11.7048 10.5776 11.7806C10.5463 11.8565 10.5002 11.9254 10.4422 11.9835C10.3841 12.0416 10.3152 12.0876 10.2393 12.119C10.1634 12.1503 10.0821 12.1664 10 12.1663Z" fill="white"/>
-</svg>
Index: loads/1755811421583_message-question.svg
===================================================================
--- uploads/1755811421583_message-question.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M16.0009 44.6397C15.4215 44.6381 14.8513 44.4939 14.3409 44.2197C13.7835 43.9217 13.3178 43.4775 12.9937 42.9349C12.6695 42.3923 12.4992 41.7718 12.5009 41.1397V38.2997C9.66538 38.0984 7.02403 36.7857 5.15134 34.6471C3.27865 32.5085 2.32611 29.717 2.50089 26.8797V14.8797C2.41165 13.3462 2.64799 11.8111 3.19435 10.3754C3.74071 8.93976 4.58474 7.63597 5.67094 6.54976C6.75715 5.46356 8.06094 4.61953 9.49662 4.07317C10.9323 3.52681 12.4674 3.29048 14.0009 3.37971H34.0009C35.5344 3.29048 37.0695 3.52681 38.5052 4.07317C39.9408 4.61953 41.2446 5.46356 42.3308 6.54976C43.417 7.63597 44.2611 8.93976 44.8074 10.3754C45.3538 11.8111 45.5901 13.3462 45.5009 14.8797V26.8797C45.5901 28.4132 45.3538 29.9483 44.8074 31.384C44.2611 32.8197 43.417 34.1235 42.3308 35.2097C41.2446 36.2959 39.9408 37.1399 38.5052 37.6863C37.0695 38.2326 35.5344 38.4689 34.0009 38.3797H26.4609L17.9409 44.0597C17.3641 44.4371 16.6901 44.6386 16.0009 44.6397ZM14.0009 6.35971C12.8644 6.28092 11.7241 6.44676 10.6571 6.84606C9.59013 7.24536 8.62117 7.86882 7.81558 8.67441C7.01 9.47999 6.38654 10.449 5.98724 11.516C5.58794 12.583 5.4221 13.7232 5.50089 14.8597V26.8597C5.4221 27.9963 5.58794 29.1365 5.98724 30.2035C6.38654 31.2705 7.01 32.2394 7.81558 33.045C8.62117 33.8506 9.59013 34.4741 10.6571 34.8734C11.7241 35.2727 12.8644 35.4385 14.0009 35.3597C14.3979 35.3623 14.7779 35.5212 15.0587 35.8019C15.3394 36.0827 15.4983 36.4627 15.5009 36.8597V41.1197C15.5012 41.2104 15.526 41.2994 15.5726 41.3772C15.6193 41.455 15.6861 41.5188 15.7659 41.5618C15.8458 41.6048 15.9358 41.6254 16.0264 41.6215C16.1171 41.6177 16.205 41.5894 16.2809 41.5397L25.1809 35.6197C25.4297 35.4534 25.7216 35.363 26.0209 35.3597H34.0209C35.1574 35.4385 36.2976 35.2727 37.3646 34.8734C38.4316 34.4741 39.4006 33.8506 40.2062 33.045C41.0118 32.2394 41.6352 31.2705 42.0345 30.2035C42.4338 29.1365 42.5997 27.9963 42.5209 26.8597V14.8597C42.5997 13.7232 42.4338 12.583 42.0345 11.516C41.6352 10.449 41.0118 9.47999 40.2062 8.67441C39.4006 7.86882 38.4316 7.24536 37.3646 6.84606C36.2976 6.44676 35.1574 6.28092 34.0209 6.35971H14.0009Z" fill="#1D79BE"/>
-<path d="M23.9997 24.2207C23.6027 24.2181 23.2227 24.0592 22.9419 23.7785C22.6612 23.4977 22.5023 23.1177 22.4997 22.7207V22.3007C22.5235 21.5048 22.7511 20.7282 23.1608 20.0454C23.5705 19.3626 24.1486 18.7963 24.8397 18.4007C25.5797 17.9007 25.8197 17.5607 25.8197 17.0407C25.8197 16.8017 25.7726 16.565 25.6811 16.3442C25.5897 16.1234 25.4556 15.9228 25.2866 15.7538C25.1176 15.5848 24.917 15.4507 24.6962 15.3592C24.4754 15.2678 24.2387 15.2207 23.9997 15.2207C23.7607 15.2207 23.524 15.2678 23.3032 15.3592C23.0824 15.4507 22.8818 15.5848 22.7128 15.7538C22.5438 15.9228 22.4097 16.1234 22.3182 16.3442C22.2268 16.565 22.1797 16.8017 22.1797 17.0407C22.1771 17.4377 22.0182 17.8177 21.7375 18.0985C21.4567 18.3792 21.0767 18.5381 20.6797 18.5407C20.2827 18.5381 19.9027 18.3792 19.6219 18.0985C19.3412 17.8177 19.1823 17.4377 19.1797 17.0407C19.1797 15.7624 19.6875 14.5364 20.5914 13.6324C21.4954 12.7285 22.7213 12.2207 23.9997 12.2207C25.278 12.2207 26.504 12.7285 27.4079 13.6324C28.3119 14.5364 28.8197 15.7624 28.8197 17.0407C28.7961 17.8239 28.5724 18.588 28.1697 19.2602C27.7671 19.9324 27.1991 20.4903 26.5197 20.8807C25.7397 21.4007 25.4997 21.7407 25.4997 22.3007V22.7207C25.5 22.9178 25.4613 23.1129 25.386 23.295C25.3108 23.4771 25.2003 23.6426 25.0609 23.7819C24.9216 23.9213 24.7561 24.0318 24.574 24.1071C24.3919 24.1823 24.1967 24.221 23.9997 24.2207Z" fill="#1D79BE"/>
-<path d="M24 29.1992C23.7033 29.1992 23.4133 29.1112 23.1666 28.9464C22.92 28.7816 22.7277 28.5473 22.6142 28.2732C22.5006 27.9992 22.4709 27.6976 22.5288 27.4066C22.5867 27.1156 22.7296 26.8483 22.9393 26.6386C23.1491 26.4288 23.4164 26.2859 23.7074 26.228C23.9983 26.1702 24.2999 26.1999 24.574 26.3134C24.8481 26.4269 25.0824 26.6192 25.2472 26.8659C25.412 27.1125 25.5 27.4025 25.5 27.6992C25.5003 27.8963 25.4616 28.0914 25.3864 28.2736C25.3111 28.4557 25.2006 28.6211 25.0612 28.7605C24.9219 28.8998 24.7564 29.0103 24.5743 29.0856C24.3922 29.1609 24.1971 29.1995 24 29.1992Z" fill="#1D79BE"/>
-</svg>
Index: loads/1755811421588_message-question-white.svg
===================================================================
--- uploads/1755811421588_message-question-white.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M6.66696 18.5999C6.42553 18.5992 6.18798 18.5391 5.97529 18.4249C5.74306 18.3007 5.54901 18.1157 5.41395 17.8896C5.27889 17.6635 5.20791 17.4049 5.20862 17.1416V15.9582C4.02716 15.8744 2.9266 15.3274 2.14631 14.4363C1.36602 13.5452 0.96913 12.3821 1.04196 11.1999V6.1999C1.00477 5.56093 1.10325 4.92132 1.3309 4.32312C1.55855 3.72492 1.91023 3.18167 2.36281 2.72909C2.8154 2.2765 3.35864 1.92483 3.95684 1.69717C4.55504 1.46952 5.19465 1.37105 5.83362 1.40823H14.167C14.8059 1.37105 15.4455 1.46952 16.0437 1.69717C16.6419 1.92483 17.1852 2.2765 17.6378 2.72909C18.0904 3.18167 18.442 3.72492 18.6697 4.32312C18.8973 4.92132 18.9958 5.56093 18.9586 6.1999V11.1999C18.9958 11.8389 18.8973 12.4785 18.6697 13.0767C18.442 13.6749 18.0904 14.2181 17.6378 14.6707C17.1852 15.1233 16.6419 15.475 16.0437 15.7026C15.4455 15.9303 14.8059 16.0287 14.167 15.9916H11.0253L7.47529 18.3582C7.23498 18.5155 6.95413 18.5994 6.66696 18.5999ZM5.83362 2.6499C5.36007 2.61707 4.88497 2.68617 4.44039 2.85255C3.99581 3.01892 3.59207 3.2787 3.25641 3.61436C2.92075 3.95002 2.66098 4.35375 2.4946 4.79833C2.32823 5.24292 2.25913 5.71801 2.29196 6.19157V11.1916C2.25913 11.6651 2.32823 12.1402 2.4946 12.5848C2.66098 13.0294 2.92075 13.4331 3.25641 13.7688C3.59207 14.1044 3.99581 14.3642 4.44039 14.5306C4.88497 14.697 5.36007 14.7661 5.83362 14.7332C5.99905 14.7343 6.15738 14.8005 6.27436 14.9175C6.39133 15.0345 6.45753 15.1928 6.45862 15.3582V17.1332C6.45875 17.171 6.46908 17.2081 6.48852 17.2405C6.50795 17.2729 6.53578 17.2995 6.56906 17.3174C6.60234 17.3353 6.63984 17.3439 6.67761 17.3423C6.71537 17.3407 6.752 17.3289 6.78362 17.3082L10.492 14.8416C10.5956 14.7723 10.7172 14.7346 10.842 14.7332H14.1753C14.6488 14.7661 15.1239 14.697 15.5685 14.5306C16.0131 14.3642 16.4168 14.1044 16.7525 13.7688C17.0882 13.4331 17.3479 13.0294 17.5143 12.5848C17.6807 12.1402 17.7498 11.6651 17.717 11.1916V6.19157C17.7498 5.71801 17.6807 5.24292 17.5143 4.79833C17.3479 4.35375 17.0882 3.95002 16.7525 3.61436C16.4168 3.2787 16.0131 3.01892 15.5685 2.85255C15.1239 2.68617 14.6488 2.61707 14.1753 2.6499H5.83362Z" fill="white"/>
-<path d="M9.99979 10.092C9.83437 10.0909 9.67603 10.0247 9.55905 9.90772C9.44208 9.79074 9.37588 9.6324 9.37479 9.46698V9.29198C9.38471 8.96033 9.47956 8.63678 9.65027 8.35227C9.82097 8.06775 10.0618 7.8318 10.3498 7.66698C10.6581 7.45865 10.7581 7.31698 10.7581 7.10031C10.7581 7.00073 10.7385 6.90212 10.7004 6.81011C10.6623 6.71811 10.6064 6.63451 10.536 6.56409C10.4656 6.49367 10.382 6.43781 10.29 6.3997C10.198 6.36159 10.0994 6.34198 9.99979 6.34198C9.9002 6.34198 9.80159 6.36159 9.70959 6.3997C9.61758 6.43781 9.53398 6.49367 9.46357 6.56409C9.39315 6.63451 9.33729 6.71811 9.29918 6.81011C9.26107 6.90212 9.24146 7.00073 9.24146 7.10031C9.24036 7.26574 9.17416 7.42407 9.05719 7.54105C8.94022 7.65802 8.78188 7.72422 8.61646 7.72531C8.45103 7.72422 8.29269 7.65802 8.17572 7.54105C8.05875 7.42407 7.99255 7.26574 7.99146 7.10031C7.99146 6.56767 8.20305 6.05684 8.57968 5.68021C8.95632 5.30357 9.46715 5.09198 9.99979 5.09198C10.5324 5.09198 11.0433 5.30357 11.4199 5.68021C11.7965 6.05684 12.0081 6.56767 12.0081 7.10031C11.9983 7.42665 11.9051 7.74503 11.7373 8.02511C11.5696 8.3052 11.3329 8.53765 11.0498 8.70031C10.7248 8.91698 10.6248 9.05865 10.6248 9.29198V9.46698C10.6249 9.54909 10.6088 9.63041 10.5774 9.70629C10.5461 9.78217 10.5 9.85111 10.442 9.90917C10.3839 9.96723 10.315 10.0133 10.2391 10.0446C10.1632 10.076 10.0819 10.0921 9.99979 10.092Z" fill="white"/>
-<path d="M10 12.1663C9.87639 12.1663 9.75555 12.1297 9.65277 12.061C9.54999 11.9923 9.46988 11.8947 9.42258 11.7805C9.37527 11.6663 9.36289 11.5406 9.38701 11.4194C9.41113 11.2982 9.47065 11.1868 9.55806 11.0994C9.64547 11.012 9.75683 10.9524 9.87807 10.9283C9.99931 10.9042 10.125 10.9166 10.2392 10.9639C10.3534 11.0112 10.451 11.0913 10.5197 11.1941C10.5883 11.2969 10.625 11.4177 10.625 11.5413C10.6251 11.6234 10.609 11.7048 10.5776 11.7806C10.5463 11.8565 10.5002 11.9254 10.4422 11.9835C10.3841 12.0416 10.3152 12.0876 10.2393 12.119C10.1634 12.1503 10.0821 12.1664 10 12.1663Z" fill="white"/>
-</svg>
Index: loads/1755952509007_import.svg
===================================================================
--- uploads/1755952509007_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1755952519857_message-question.svg
===================================================================
--- uploads/1755952519857_message-question.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M16.0009 44.6397C15.4215 44.6381 14.8513 44.4939 14.3409 44.2197C13.7835 43.9217 13.3178 43.4775 12.9937 42.9349C12.6695 42.3923 12.4992 41.7718 12.5009 41.1397V38.2997C9.66538 38.0984 7.02403 36.7857 5.15134 34.6471C3.27865 32.5085 2.32611 29.717 2.50089 26.8797V14.8797C2.41165 13.3462 2.64799 11.8111 3.19435 10.3754C3.74071 8.93976 4.58474 7.63597 5.67094 6.54976C6.75715 5.46356 8.06094 4.61953 9.49662 4.07317C10.9323 3.52681 12.4674 3.29048 14.0009 3.37971H34.0009C35.5344 3.29048 37.0695 3.52681 38.5052 4.07317C39.9408 4.61953 41.2446 5.46356 42.3308 6.54976C43.417 7.63597 44.2611 8.93976 44.8074 10.3754C45.3538 11.8111 45.5901 13.3462 45.5009 14.8797V26.8797C45.5901 28.4132 45.3538 29.9483 44.8074 31.384C44.2611 32.8197 43.417 34.1235 42.3308 35.2097C41.2446 36.2959 39.9408 37.1399 38.5052 37.6863C37.0695 38.2326 35.5344 38.4689 34.0009 38.3797H26.4609L17.9409 44.0597C17.3641 44.4371 16.6901 44.6386 16.0009 44.6397ZM14.0009 6.35971C12.8644 6.28092 11.7241 6.44676 10.6571 6.84606C9.59013 7.24536 8.62117 7.86882 7.81558 8.67441C7.01 9.47999 6.38654 10.449 5.98724 11.516C5.58794 12.583 5.4221 13.7232 5.50089 14.8597V26.8597C5.4221 27.9963 5.58794 29.1365 5.98724 30.2035C6.38654 31.2705 7.01 32.2394 7.81558 33.045C8.62117 33.8506 9.59013 34.4741 10.6571 34.8734C11.7241 35.2727 12.8644 35.4385 14.0009 35.3597C14.3979 35.3623 14.7779 35.5212 15.0587 35.8019C15.3394 36.0827 15.4983 36.4627 15.5009 36.8597V41.1197C15.5012 41.2104 15.526 41.2994 15.5726 41.3772C15.6193 41.455 15.6861 41.5188 15.7659 41.5618C15.8458 41.6048 15.9358 41.6254 16.0264 41.6215C16.1171 41.6177 16.205 41.5894 16.2809 41.5397L25.1809 35.6197C25.4297 35.4534 25.7216 35.363 26.0209 35.3597H34.0209C35.1574 35.4385 36.2976 35.2727 37.3646 34.8734C38.4316 34.4741 39.4006 33.8506 40.2062 33.045C41.0118 32.2394 41.6352 31.2705 42.0345 30.2035C42.4338 29.1365 42.5997 27.9963 42.5209 26.8597V14.8597C42.5997 13.7232 42.4338 12.583 42.0345 11.516C41.6352 10.449 41.0118 9.47999 40.2062 8.67441C39.4006 7.86882 38.4316 7.24536 37.3646 6.84606C36.2976 6.44676 35.1574 6.28092 34.0209 6.35971H14.0009Z" fill="#1D79BE"/>
-<path d="M23.9997 24.2207C23.6027 24.2181 23.2227 24.0592 22.9419 23.7785C22.6612 23.4977 22.5023 23.1177 22.4997 22.7207V22.3007C22.5235 21.5048 22.7511 20.7282 23.1608 20.0454C23.5705 19.3626 24.1486 18.7963 24.8397 18.4007C25.5797 17.9007 25.8197 17.5607 25.8197 17.0407C25.8197 16.8017 25.7726 16.565 25.6811 16.3442C25.5897 16.1234 25.4556 15.9228 25.2866 15.7538C25.1176 15.5848 24.917 15.4507 24.6962 15.3592C24.4754 15.2678 24.2387 15.2207 23.9997 15.2207C23.7607 15.2207 23.524 15.2678 23.3032 15.3592C23.0824 15.4507 22.8818 15.5848 22.7128 15.7538C22.5438 15.9228 22.4097 16.1234 22.3182 16.3442C22.2268 16.565 22.1797 16.8017 22.1797 17.0407C22.1771 17.4377 22.0182 17.8177 21.7375 18.0985C21.4567 18.3792 21.0767 18.5381 20.6797 18.5407C20.2827 18.5381 19.9027 18.3792 19.6219 18.0985C19.3412 17.8177 19.1823 17.4377 19.1797 17.0407C19.1797 15.7624 19.6875 14.5364 20.5914 13.6324C21.4954 12.7285 22.7213 12.2207 23.9997 12.2207C25.278 12.2207 26.504 12.7285 27.4079 13.6324C28.3119 14.5364 28.8197 15.7624 28.8197 17.0407C28.7961 17.8239 28.5724 18.588 28.1697 19.2602C27.7671 19.9324 27.1991 20.4903 26.5197 20.8807C25.7397 21.4007 25.4997 21.7407 25.4997 22.3007V22.7207C25.5 22.9178 25.4613 23.1129 25.386 23.295C25.3108 23.4771 25.2003 23.6426 25.0609 23.7819C24.9216 23.9213 24.7561 24.0318 24.574 24.1071C24.3919 24.1823 24.1967 24.221 23.9997 24.2207Z" fill="#1D79BE"/>
-<path d="M24 29.1992C23.7033 29.1992 23.4133 29.1112 23.1666 28.9464C22.92 28.7816 22.7277 28.5473 22.6142 28.2732C22.5006 27.9992 22.4709 27.6976 22.5288 27.4066C22.5867 27.1156 22.7296 26.8483 22.9393 26.6386C23.1491 26.4288 23.4164 26.2859 23.7074 26.228C23.9983 26.1702 24.2999 26.1999 24.574 26.3134C24.8481 26.4269 25.0824 26.6192 25.2472 26.8659C25.412 27.1125 25.5 27.4025 25.5 27.6992C25.5003 27.8963 25.4616 28.0914 25.3864 28.2736C25.3111 28.4557 25.2006 28.6211 25.0612 28.7605C24.9219 28.8998 24.7564 29.0103 24.5743 29.0856C24.3922 29.1609 24.1971 29.1995 24 29.1992Z" fill="#1D79BE"/>
-</svg>
Index: loads/1755952530285_message-question-white.svg
===================================================================
--- uploads/1755952530285_message-question-white.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M6.66696 18.5999C6.42553 18.5992 6.18798 18.5391 5.97529 18.4249C5.74306 18.3007 5.54901 18.1157 5.41395 17.8896C5.27889 17.6635 5.20791 17.4049 5.20862 17.1416V15.9582C4.02716 15.8744 2.9266 15.3274 2.14631 14.4363C1.36602 13.5452 0.96913 12.3821 1.04196 11.1999V6.1999C1.00477 5.56093 1.10325 4.92132 1.3309 4.32312C1.55855 3.72492 1.91023 3.18167 2.36281 2.72909C2.8154 2.2765 3.35864 1.92483 3.95684 1.69717C4.55504 1.46952 5.19465 1.37105 5.83362 1.40823H14.167C14.8059 1.37105 15.4455 1.46952 16.0437 1.69717C16.6419 1.92483 17.1852 2.2765 17.6378 2.72909C18.0904 3.18167 18.442 3.72492 18.6697 4.32312C18.8973 4.92132 18.9958 5.56093 18.9586 6.1999V11.1999C18.9958 11.8389 18.8973 12.4785 18.6697 13.0767C18.442 13.6749 18.0904 14.2181 17.6378 14.6707C17.1852 15.1233 16.6419 15.475 16.0437 15.7026C15.4455 15.9303 14.8059 16.0287 14.167 15.9916H11.0253L7.47529 18.3582C7.23498 18.5155 6.95413 18.5994 6.66696 18.5999ZM5.83362 2.6499C5.36007 2.61707 4.88497 2.68617 4.44039 2.85255C3.99581 3.01892 3.59207 3.2787 3.25641 3.61436C2.92075 3.95002 2.66098 4.35375 2.4946 4.79833C2.32823 5.24292 2.25913 5.71801 2.29196 6.19157V11.1916C2.25913 11.6651 2.32823 12.1402 2.4946 12.5848C2.66098 13.0294 2.92075 13.4331 3.25641 13.7688C3.59207 14.1044 3.99581 14.3642 4.44039 14.5306C4.88497 14.697 5.36007 14.7661 5.83362 14.7332C5.99905 14.7343 6.15738 14.8005 6.27436 14.9175C6.39133 15.0345 6.45753 15.1928 6.45862 15.3582V17.1332C6.45875 17.171 6.46908 17.2081 6.48852 17.2405C6.50795 17.2729 6.53578 17.2995 6.56906 17.3174C6.60234 17.3353 6.63984 17.3439 6.67761 17.3423C6.71537 17.3407 6.752 17.3289 6.78362 17.3082L10.492 14.8416C10.5956 14.7723 10.7172 14.7346 10.842 14.7332H14.1753C14.6488 14.7661 15.1239 14.697 15.5685 14.5306C16.0131 14.3642 16.4168 14.1044 16.7525 13.7688C17.0882 13.4331 17.3479 13.0294 17.5143 12.5848C17.6807 12.1402 17.7498 11.6651 17.717 11.1916V6.19157C17.7498 5.71801 17.6807 5.24292 17.5143 4.79833C17.3479 4.35375 17.0882 3.95002 16.7525 3.61436C16.4168 3.2787 16.0131 3.01892 15.5685 2.85255C15.1239 2.68617 14.6488 2.61707 14.1753 2.6499H5.83362Z" fill="white"/>
-<path d="M9.99979 10.092C9.83437 10.0909 9.67603 10.0247 9.55905 9.90772C9.44208 9.79074 9.37588 9.6324 9.37479 9.46698V9.29198C9.38471 8.96033 9.47956 8.63678 9.65027 8.35227C9.82097 8.06775 10.0618 7.8318 10.3498 7.66698C10.6581 7.45865 10.7581 7.31698 10.7581 7.10031C10.7581 7.00073 10.7385 6.90212 10.7004 6.81011C10.6623 6.71811 10.6064 6.63451 10.536 6.56409C10.4656 6.49367 10.382 6.43781 10.29 6.3997C10.198 6.36159 10.0994 6.34198 9.99979 6.34198C9.9002 6.34198 9.80159 6.36159 9.70959 6.3997C9.61758 6.43781 9.53398 6.49367 9.46357 6.56409C9.39315 6.63451 9.33729 6.71811 9.29918 6.81011C9.26107 6.90212 9.24146 7.00073 9.24146 7.10031C9.24036 7.26574 9.17416 7.42407 9.05719 7.54105C8.94022 7.65802 8.78188 7.72422 8.61646 7.72531C8.45103 7.72422 8.29269 7.65802 8.17572 7.54105C8.05875 7.42407 7.99255 7.26574 7.99146 7.10031C7.99146 6.56767 8.20305 6.05684 8.57968 5.68021C8.95632 5.30357 9.46715 5.09198 9.99979 5.09198C10.5324 5.09198 11.0433 5.30357 11.4199 5.68021C11.7965 6.05684 12.0081 6.56767 12.0081 7.10031C11.9983 7.42665 11.9051 7.74503 11.7373 8.02511C11.5696 8.3052 11.3329 8.53765 11.0498 8.70031C10.7248 8.91698 10.6248 9.05865 10.6248 9.29198V9.46698C10.6249 9.54909 10.6088 9.63041 10.5774 9.70629C10.5461 9.78217 10.5 9.85111 10.442 9.90917C10.3839 9.96723 10.315 10.0133 10.2391 10.0446C10.1632 10.076 10.0819 10.0921 9.99979 10.092Z" fill="white"/>
-<path d="M10 12.1663C9.87639 12.1663 9.75555 12.1297 9.65277 12.061C9.54999 11.9923 9.46988 11.8947 9.42258 11.7805C9.37527 11.6663 9.36289 11.5406 9.38701 11.4194C9.41113 11.2982 9.47065 11.1868 9.55806 11.0994C9.64547 11.012 9.75683 10.9524 9.87807 10.9283C9.99931 10.9042 10.125 10.9166 10.2392 10.9639C10.3534 11.0112 10.451 11.0913 10.5197 11.1941C10.5883 11.2969 10.625 11.4177 10.625 11.5413C10.6251 11.6234 10.609 11.7048 10.5776 11.7806C10.5463 11.8565 10.5002 11.9254 10.4422 11.9835C10.3841 12.0416 10.3152 12.0876 10.2393 12.119C10.1634 12.1503 10.0821 12.1664 10 12.1663Z" fill="white"/>
-</svg>
Index: loads/1755952538556_verified-icon.svg
===================================================================
--- uploads/1755952538556_verified-icon.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="43" height="46" viewBox="0 0 43 46" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M18.7619 43.4145C18.1019 43.3535 17.4625 43.1524 16.8865 42.8246C16.3105 42.4968 15.8111 42.0498 15.4217 41.5135L13.6767 39.1187C13.5595 38.9732 13.4223 38.8449 13.2691 38.7378C13.1701 38.6897 13.0664 38.6519 12.9596 38.625L9.40265 37.9182C8.30575 37.7001 7.32545 37.0909 6.64414 36.204C6.5465 36.0793 6.45474 35.9503 6.36884 35.8169C6.33349 35.7721 6.29913 35.7267 6.26576 35.6807C5.60192 34.7847 5.27997 33.6811 5.35795 32.5688L5.65141 28.9497C5.65692 28.8791 5.65628 28.8082 5.64951 28.7378C5.58158 28.5234 5.48162 28.3206 5.35303 28.1362L3.50167 25.7828C3.0714 25.235 2.76949 24.5976 2.6182 23.9177C2.4669 23.2377 2.47007 22.5324 2.62747 21.8539C2.7036 21.216 2.91081 20.6008 3.23609 20.0469C3.56137 19.493 3.99769 19.0123 4.51764 18.6351L6.9256 16.8808C7.05958 16.772 7.1782 16.6454 7.27822 16.5047C7.32722 16.4026 7.36416 16.2951 7.38827 16.1844L8.11856 12.625C8.38951 11.4078 9.13021 10.3468 10.1795 9.67302C11.0981 8.91788 12.2679 8.53718 13.455 8.60699L17.0798 8.87928C17.1703 8.88508 17.2611 8.88181 17.351 8.8695C17.5317 8.80666 17.7025 8.71818 17.8581 8.60679L20.2181 6.77372C20.739 6.3625 21.3416 6.06726 21.9858 5.90776C22.63 5.74826 23.3008 5.72817 23.9533 5.84884C24.6298 5.89835 25.2874 6.09494 25.8801 6.4249C26.4727 6.75486 26.9862 7.21022 27.3847 7.75919L29.1578 10.1952C29.2239 10.2801 29.2985 10.3581 29.3803 10.428L29.6846 10.6411C29.7379 10.6613 29.7925 10.6777 29.8481 10.6902L33.4052 11.3986C34.5599 11.6424 35.5803 12.3123 36.2632 13.2748C36.6832 13.7441 37.0051 14.2926 37.2099 14.8882C37.4147 15.4838 37.4983 16.1143 37.4557 16.7426L37.1621 20.3602C37.1545 20.477 37.1611 20.5943 37.1817 20.7095C37.2429 20.8747 37.326 21.0309 37.4288 21.1739L39.2596 23.512C39.6578 24.0193 39.9464 24.6037 40.1069 25.2283C40.2674 25.8529 40.2965 26.504 40.1921 27.1404C40.156 27.8336 39.9655 28.51 39.6346 29.1201C39.3036 29.7302 38.8406 30.2588 38.2792 30.667L35.8845 32.412C35.7198 32.5454 35.5764 32.7031 35.4593 32.8797C35.4261 32.9595 35.4004 33.0422 35.3826 33.1268L34.6758 36.6837C34.4298 37.8473 33.7513 38.8741 32.7775 39.5567C32.3096 39.9668 31.7651 40.2801 31.1755 40.4785C30.5858 40.6769 29.9627 40.7564 29.3421 40.7125L25.723 40.4191C25.6104 40.4121 25.4974 40.4177 25.3861 40.4358C25.2085 40.496 25.0406 40.5815 24.8875 40.6897L22.5494 42.5205C21.8638 43.058 21.041 43.392 20.1747 43.4846C19.7029 43.5327 19.2266 43.509 18.7619 43.4145Z" fill="#001D58"/>
-<path d="M18.8807 40.6573C18.2119 40.5955 17.5639 40.3917 16.9802 40.0594C16.3964 39.7272 15.8903 39.2742 15.4956 38.7307L13.7272 36.3038C13.6085 36.1562 13.4694 36.0263 13.3142 35.9177C13.2138 35.8689 13.1087 35.8306 13.0005 35.8034L9.39572 35.0871C8.28407 34.866 7.29059 34.2487 6.60013 33.3498C6.50117 33.2234 6.40817 33.0927 6.32112 32.9576C6.2853 32.9122 6.25048 32.8662 6.21665 32.8195C5.54389 31.9115 5.21761 30.7931 5.29664 29.6658L5.59405 25.998C5.59963 25.9265 5.59899 25.8547 5.59213 25.7833C5.52328 25.5661 5.42198 25.3605 5.29166 25.1736L3.41541 22.7886C2.97935 22.2334 2.67339 21.5875 2.52006 20.8984C2.36674 20.2092 2.36995 19.4945 2.52946 18.8068C2.60661 18.1604 2.81661 17.5369 3.14626 16.9756C3.47592 16.4142 3.9181 15.9271 4.44504 15.5448L6.88537 13.767C7.02115 13.6566 7.14136 13.5284 7.24272 13.3858C7.29239 13.2823 7.32982 13.1733 7.35425 13.0612L8.09437 9.45389C8.36895 8.22032 9.11961 7.14511 10.183 6.46223C11.114 5.69694 12.2994 5.31113 13.5025 5.38187L17.176 5.65783C17.2678 5.66371 17.3598 5.66039 17.4509 5.64792C17.634 5.58423 17.8071 5.49456 17.9648 5.38168L20.3565 3.52396C20.8844 3.10721 21.4952 2.80801 22.148 2.64636C22.8008 2.48472 23.4806 2.46436 24.142 2.58665C24.8276 2.63682 25.494 2.83606 26.0946 3.17046C26.6953 3.50485 27.2157 3.96633 27.6195 4.52268L29.4164 6.99147C29.4834 7.07752 29.559 7.15657 29.6419 7.22739L29.9503 7.44329C30.0043 7.46375 30.0597 7.48039 30.116 7.49308L33.721 8.21099C34.8911 8.45811 35.9253 9.137 36.6174 10.1124C37.043 10.588 37.3692 11.144 37.5768 11.7475C37.7843 12.3511 37.869 12.9901 37.8259 13.6269L37.5283 17.2931C37.5206 17.4114 37.5273 17.5303 37.5482 17.647C37.6102 17.8145 37.6944 17.9728 37.7986 18.1177L39.654 20.4873C40.0576 21.0013 40.35 21.5936 40.5127 22.2266C40.6754 22.8596 40.7048 23.5195 40.5991 24.1644C40.5625 24.8669 40.3694 25.5524 40.034 26.1707C39.6986 26.7891 39.2293 27.3247 38.6604 27.7384L36.2335 29.5069C36.0667 29.642 35.9213 29.8019 35.8026 29.9808C35.7689 30.0617 35.7429 30.1455 35.7249 30.2313L35.0086 33.836C34.7592 35.0152 34.0717 36.0558 33.0847 36.7477C32.6106 37.1633 32.0588 37.4808 31.4612 37.6818C30.8637 37.8829 30.2321 37.9635 29.6032 37.919L25.9354 37.6216C25.8213 37.6145 25.7068 37.6202 25.594 37.6386C25.414 37.6995 25.2439 37.7862 25.0888 37.8959L22.7192 39.7512C22.0244 40.296 21.1905 40.6345 20.3126 40.7283C19.8345 40.777 19.3517 40.7531 18.8807 40.6573Z" fill="#1D79BE"/>
-<path d="M19.6853 28.6166C19.2649 28.6602 18.8443 28.5352 18.516 28.269L12.8287 23.6771C12.6653 23.5446 12.5296 23.3813 12.4293 23.1964C12.3291 23.0115 12.2662 22.8087 12.2443 22.5996C12.2001 22.1771 12.3255 21.7544 12.593 21.4244C12.8604 21.0944 13.248 20.8842 13.6704 20.84C14.0929 20.7958 14.5156 20.9212 14.8456 21.1886L19.2763 24.7767L27.4362 14.6801C27.7036 14.3499 28.0913 14.1395 28.5138 14.0951C28.9364 14.0507 29.3593 14.176 29.6895 14.4435C30.0197 14.7109 30.2302 15.0986 30.2745 15.5211C30.3189 15.9437 30.1936 16.3666 29.9262 16.6968L20.7604 28.0309C20.6286 28.1946 20.4657 28.3305 20.2812 28.431C20.0967 28.5315 19.8942 28.5946 19.6853 28.6166Z" fill="white"/>
-</svg>
Index: loads/1755952547457_contact-background.svg
===================================================================
--- uploads/1755952547457_contact-background.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,4 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M3.91855 0H44.0814C45.1207 0 46.1174 0.430407 46.8523 1.19654C47.5872 1.96266 48 3.00176 48 4.08523V43.9148C48 44.9982 47.5872 46.0373 46.8523 46.8035C46.1174 47.5696 45.1207 48 44.0814 48H3.91855C3.40389 48 2.89426 47.8943 2.41878 47.6889C1.9433 47.4836 1.51128 47.1826 1.14739 46.8031C0.783511 46.4237 0.494891 45.9732 0.298019 45.4775C0.101147 44.9817 -0.000120311 44.4504 1.07267e-07 43.9138V4.08523C1.07267e-07 3.00176 0.412847 1.96266 1.14772 1.19654C1.88259 0.430407 2.87929 0 3.91855 0Z" fill="#002165"/>
-<path d="M31.0605 26.3105C31.9864 26.1264 32.9462 26.2208 33.8184 26.582C34.6903 26.9433 35.4356 27.5551 35.96 28.3398C36.4842 29.1246 36.7646 30.0475 36.7646 30.9912C36.7641 31.9525 36.4722 32.8836 35.9404 33.668C35.9664 33.6887 35.9919 33.7107 36.0156 33.7344L37.2236 34.9434C37.3916 35.1139 37.4862 35.3436 37.4863 35.583C37.4862 35.8225 37.3918 36.0531 37.2236 36.2236C37.1401 36.3085 37.0405 36.3768 36.9307 36.4229C36.821 36.4687 36.7029 36.4922 36.584 36.4922C36.465 36.4926 36.3462 36.4694 36.2363 36.4238C36.1267 36.3783 36.027 36.3109 35.9434 36.2266L34.7344 35.0176C34.7104 34.9936 34.688 34.9677 34.667 34.9414C33.8828 35.4727 32.9521 35.7642 31.9912 35.7646C31.0475 35.7646 30.1246 35.4842 29.3398 34.96C28.5552 34.4356 27.9433 33.6902 27.582 32.8184C27.2208 31.9464 27.1265 30.9862 27.3105 30.0605C27.4947 29.1348 27.9488 28.2837 28.6162 27.6162C29.2837 26.9487 30.1347 26.4947 31.0605 26.3105ZM24.5 26.2188C24.7397 26.2204 24.9691 26.3159 25.1387 26.4854C25.3082 26.6549 25.4047 26.8852 25.4062 27.125C25.4045 27.3646 25.3081 27.5942 25.1387 27.7637C24.9692 27.9331 24.7396 28.0296 24.5 28.0312C19.28 28.0312 15.0264 31.4143 15.0264 35.583C15.0247 35.8227 14.9283 36.0522 14.7588 36.2217C14.5892 36.3912 14.3599 36.4877 14.1201 36.4893C13.8804 36.4877 13.651 36.3912 13.4814 36.2217C13.3119 36.0522 13.2156 35.8227 13.2139 35.583C13.2139 30.4234 18.2771 26.2188 24.5 26.2188ZM31.9912 28.0312C31.4058 28.0313 30.8334 28.2051 30.3467 28.5303C29.8601 28.8555 29.4809 29.3178 29.2568 29.8584C29.0329 30.3992 28.9737 30.9952 29.0879 31.5693C29.2022 32.1434 29.4846 32.6711 29.8984 33.085C30.3124 33.4988 30.84 33.7813 31.4141 33.8955C31.9882 34.0097 32.5842 33.9506 33.125 33.7266C33.6655 33.5026 34.1279 33.1232 34.4531 32.6367C34.7783 32.15 34.9521 31.5766 34.9521 30.9912C34.9508 30.2068 34.6386 29.4542 34.084 28.8994C33.5291 28.3445 32.7759 28.0325 31.9912 28.0312ZM23.1445 10.6436C24.4921 10.3756 25.8888 10.5134 27.1582 11.0391C28.4277 11.5649 29.5129 12.4561 30.2764 13.5986C31.0396 14.741 31.4472 16.0841 31.4473 17.458C31.4449 19.2999 30.7126 21.0667 29.4102 22.3691C28.1078 23.6713 26.3417 24.4039 24.5 24.4062C23.1259 24.4062 21.7822 23.9987 20.6396 23.2354C19.4972 22.472 18.607 21.3865 18.0811 20.1172C17.5552 18.8477 17.4176 17.4502 17.6855 16.1025C17.9537 14.755 18.6154 13.5165 19.5869 12.5449C20.5585 11.5734 21.7969 10.9116 23.1445 10.6436ZM24.5 12.3232C23.4843 12.3232 22.491 12.6242 21.6465 13.1885C20.8021 13.7528 20.1435 14.5549 19.7549 15.4932C19.3664 16.4313 19.2648 17.464 19.4629 18.46C19.6611 19.456 20.1501 20.3717 20.8682 21.0898C21.5863 21.8079 22.502 22.297 23.498 22.4951C24.494 22.6932 25.5267 22.5917 26.4648 22.2031C27.4031 21.8145 28.2053 21.1558 28.7695 20.3115C29.3337 19.4671 29.6347 18.4736 29.6348 17.458C29.6318 16.0971 29.0902 14.7924 28.1279 13.8301C27.1656 12.8677 25.861 12.3262 24.5 12.3232Z" fill="white"/>
-</svg>
Index: loads/1755952719934_import.svg
===================================================================
--- uploads/1755952719934_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1755952730665_message-question.svg
===================================================================
--- uploads/1755952730665_message-question.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M16.0009 44.6397C15.4215 44.6381 14.8513 44.4939 14.3409 44.2197C13.7835 43.9217 13.3178 43.4775 12.9937 42.9349C12.6695 42.3923 12.4992 41.7718 12.5009 41.1397V38.2997C9.66538 38.0984 7.02403 36.7857 5.15134 34.6471C3.27865 32.5085 2.32611 29.717 2.50089 26.8797V14.8797C2.41165 13.3462 2.64799 11.8111 3.19435 10.3754C3.74071 8.93976 4.58474 7.63597 5.67094 6.54976C6.75715 5.46356 8.06094 4.61953 9.49662 4.07317C10.9323 3.52681 12.4674 3.29048 14.0009 3.37971H34.0009C35.5344 3.29048 37.0695 3.52681 38.5052 4.07317C39.9408 4.61953 41.2446 5.46356 42.3308 6.54976C43.417 7.63597 44.2611 8.93976 44.8074 10.3754C45.3538 11.8111 45.5901 13.3462 45.5009 14.8797V26.8797C45.5901 28.4132 45.3538 29.9483 44.8074 31.384C44.2611 32.8197 43.417 34.1235 42.3308 35.2097C41.2446 36.2959 39.9408 37.1399 38.5052 37.6863C37.0695 38.2326 35.5344 38.4689 34.0009 38.3797H26.4609L17.9409 44.0597C17.3641 44.4371 16.6901 44.6386 16.0009 44.6397ZM14.0009 6.35971C12.8644 6.28092 11.7241 6.44676 10.6571 6.84606C9.59013 7.24536 8.62117 7.86882 7.81558 8.67441C7.01 9.47999 6.38654 10.449 5.98724 11.516C5.58794 12.583 5.4221 13.7232 5.50089 14.8597V26.8597C5.4221 27.9963 5.58794 29.1365 5.98724 30.2035C6.38654 31.2705 7.01 32.2394 7.81558 33.045C8.62117 33.8506 9.59013 34.4741 10.6571 34.8734C11.7241 35.2727 12.8644 35.4385 14.0009 35.3597C14.3979 35.3623 14.7779 35.5212 15.0587 35.8019C15.3394 36.0827 15.4983 36.4627 15.5009 36.8597V41.1197C15.5012 41.2104 15.526 41.2994 15.5726 41.3772C15.6193 41.455 15.6861 41.5188 15.7659 41.5618C15.8458 41.6048 15.9358 41.6254 16.0264 41.6215C16.1171 41.6177 16.205 41.5894 16.2809 41.5397L25.1809 35.6197C25.4297 35.4534 25.7216 35.363 26.0209 35.3597H34.0209C35.1574 35.4385 36.2976 35.2727 37.3646 34.8734C38.4316 34.4741 39.4006 33.8506 40.2062 33.045C41.0118 32.2394 41.6352 31.2705 42.0345 30.2035C42.4338 29.1365 42.5997 27.9963 42.5209 26.8597V14.8597C42.5997 13.7232 42.4338 12.583 42.0345 11.516C41.6352 10.449 41.0118 9.47999 40.2062 8.67441C39.4006 7.86882 38.4316 7.24536 37.3646 6.84606C36.2976 6.44676 35.1574 6.28092 34.0209 6.35971H14.0009Z" fill="#1D79BE"/>
-<path d="M23.9997 24.2207C23.6027 24.2181 23.2227 24.0592 22.9419 23.7785C22.6612 23.4977 22.5023 23.1177 22.4997 22.7207V22.3007C22.5235 21.5048 22.7511 20.7282 23.1608 20.0454C23.5705 19.3626 24.1486 18.7963 24.8397 18.4007C25.5797 17.9007 25.8197 17.5607 25.8197 17.0407C25.8197 16.8017 25.7726 16.565 25.6811 16.3442C25.5897 16.1234 25.4556 15.9228 25.2866 15.7538C25.1176 15.5848 24.917 15.4507 24.6962 15.3592C24.4754 15.2678 24.2387 15.2207 23.9997 15.2207C23.7607 15.2207 23.524 15.2678 23.3032 15.3592C23.0824 15.4507 22.8818 15.5848 22.7128 15.7538C22.5438 15.9228 22.4097 16.1234 22.3182 16.3442C22.2268 16.565 22.1797 16.8017 22.1797 17.0407C22.1771 17.4377 22.0182 17.8177 21.7375 18.0985C21.4567 18.3792 21.0767 18.5381 20.6797 18.5407C20.2827 18.5381 19.9027 18.3792 19.6219 18.0985C19.3412 17.8177 19.1823 17.4377 19.1797 17.0407C19.1797 15.7624 19.6875 14.5364 20.5914 13.6324C21.4954 12.7285 22.7213 12.2207 23.9997 12.2207C25.278 12.2207 26.504 12.7285 27.4079 13.6324C28.3119 14.5364 28.8197 15.7624 28.8197 17.0407C28.7961 17.8239 28.5724 18.588 28.1697 19.2602C27.7671 19.9324 27.1991 20.4903 26.5197 20.8807C25.7397 21.4007 25.4997 21.7407 25.4997 22.3007V22.7207C25.5 22.9178 25.4613 23.1129 25.386 23.295C25.3108 23.4771 25.2003 23.6426 25.0609 23.7819C24.9216 23.9213 24.7561 24.0318 24.574 24.1071C24.3919 24.1823 24.1967 24.221 23.9997 24.2207Z" fill="#1D79BE"/>
-<path d="M24 29.1992C23.7033 29.1992 23.4133 29.1112 23.1666 28.9464C22.92 28.7816 22.7277 28.5473 22.6142 28.2732C22.5006 27.9992 22.4709 27.6976 22.5288 27.4066C22.5867 27.1156 22.7296 26.8483 22.9393 26.6386C23.1491 26.4288 23.4164 26.2859 23.7074 26.228C23.9983 26.1702 24.2999 26.1999 24.574 26.3134C24.8481 26.4269 25.0824 26.6192 25.2472 26.8659C25.412 27.1125 25.5 27.4025 25.5 27.6992C25.5003 27.8963 25.4616 28.0914 25.3864 28.2736C25.3111 28.4557 25.2006 28.6211 25.0612 28.7605C24.9219 28.8998 24.7564 29.0103 24.5743 29.0856C24.3922 29.1609 24.1971 29.1995 24 29.1992Z" fill="#1D79BE"/>
-</svg>
Index: loads/1755952742338_message-question-white.svg
===================================================================
--- uploads/1755952742338_message-question-white.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M6.66696 18.5999C6.42553 18.5992 6.18798 18.5391 5.97529 18.4249C5.74306 18.3007 5.54901 18.1157 5.41395 17.8896C5.27889 17.6635 5.20791 17.4049 5.20862 17.1416V15.9582C4.02716 15.8744 2.9266 15.3274 2.14631 14.4363C1.36602 13.5452 0.96913 12.3821 1.04196 11.1999V6.1999C1.00477 5.56093 1.10325 4.92132 1.3309 4.32312C1.55855 3.72492 1.91023 3.18167 2.36281 2.72909C2.8154 2.2765 3.35864 1.92483 3.95684 1.69717C4.55504 1.46952 5.19465 1.37105 5.83362 1.40823H14.167C14.8059 1.37105 15.4455 1.46952 16.0437 1.69717C16.6419 1.92483 17.1852 2.2765 17.6378 2.72909C18.0904 3.18167 18.442 3.72492 18.6697 4.32312C18.8973 4.92132 18.9958 5.56093 18.9586 6.1999V11.1999C18.9958 11.8389 18.8973 12.4785 18.6697 13.0767C18.442 13.6749 18.0904 14.2181 17.6378 14.6707C17.1852 15.1233 16.6419 15.475 16.0437 15.7026C15.4455 15.9303 14.8059 16.0287 14.167 15.9916H11.0253L7.47529 18.3582C7.23498 18.5155 6.95413 18.5994 6.66696 18.5999ZM5.83362 2.6499C5.36007 2.61707 4.88497 2.68617 4.44039 2.85255C3.99581 3.01892 3.59207 3.2787 3.25641 3.61436C2.92075 3.95002 2.66098 4.35375 2.4946 4.79833C2.32823 5.24292 2.25913 5.71801 2.29196 6.19157V11.1916C2.25913 11.6651 2.32823 12.1402 2.4946 12.5848C2.66098 13.0294 2.92075 13.4331 3.25641 13.7688C3.59207 14.1044 3.99581 14.3642 4.44039 14.5306C4.88497 14.697 5.36007 14.7661 5.83362 14.7332C5.99905 14.7343 6.15738 14.8005 6.27436 14.9175C6.39133 15.0345 6.45753 15.1928 6.45862 15.3582V17.1332C6.45875 17.171 6.46908 17.2081 6.48852 17.2405C6.50795 17.2729 6.53578 17.2995 6.56906 17.3174C6.60234 17.3353 6.63984 17.3439 6.67761 17.3423C6.71537 17.3407 6.752 17.3289 6.78362 17.3082L10.492 14.8416C10.5956 14.7723 10.7172 14.7346 10.842 14.7332H14.1753C14.6488 14.7661 15.1239 14.697 15.5685 14.5306C16.0131 14.3642 16.4168 14.1044 16.7525 13.7688C17.0882 13.4331 17.3479 13.0294 17.5143 12.5848C17.6807 12.1402 17.7498 11.6651 17.717 11.1916V6.19157C17.7498 5.71801 17.6807 5.24292 17.5143 4.79833C17.3479 4.35375 17.0882 3.95002 16.7525 3.61436C16.4168 3.2787 16.0131 3.01892 15.5685 2.85255C15.1239 2.68617 14.6488 2.61707 14.1753 2.6499H5.83362Z" fill="white"/>
-<path d="M9.99979 10.092C9.83437 10.0909 9.67603 10.0247 9.55905 9.90772C9.44208 9.79074 9.37588 9.6324 9.37479 9.46698V9.29198C9.38471 8.96033 9.47956 8.63678 9.65027 8.35227C9.82097 8.06775 10.0618 7.8318 10.3498 7.66698C10.6581 7.45865 10.7581 7.31698 10.7581 7.10031C10.7581 7.00073 10.7385 6.90212 10.7004 6.81011C10.6623 6.71811 10.6064 6.63451 10.536 6.56409C10.4656 6.49367 10.382 6.43781 10.29 6.3997C10.198 6.36159 10.0994 6.34198 9.99979 6.34198C9.9002 6.34198 9.80159 6.36159 9.70959 6.3997C9.61758 6.43781 9.53398 6.49367 9.46357 6.56409C9.39315 6.63451 9.33729 6.71811 9.29918 6.81011C9.26107 6.90212 9.24146 7.00073 9.24146 7.10031C9.24036 7.26574 9.17416 7.42407 9.05719 7.54105C8.94022 7.65802 8.78188 7.72422 8.61646 7.72531C8.45103 7.72422 8.29269 7.65802 8.17572 7.54105C8.05875 7.42407 7.99255 7.26574 7.99146 7.10031C7.99146 6.56767 8.20305 6.05684 8.57968 5.68021C8.95632 5.30357 9.46715 5.09198 9.99979 5.09198C10.5324 5.09198 11.0433 5.30357 11.4199 5.68021C11.7965 6.05684 12.0081 6.56767 12.0081 7.10031C11.9983 7.42665 11.9051 7.74503 11.7373 8.02511C11.5696 8.3052 11.3329 8.53765 11.0498 8.70031C10.7248 8.91698 10.6248 9.05865 10.6248 9.29198V9.46698C10.6249 9.54909 10.6088 9.63041 10.5774 9.70629C10.5461 9.78217 10.5 9.85111 10.442 9.90917C10.3839 9.96723 10.315 10.0133 10.2391 10.0446C10.1632 10.076 10.0819 10.0921 9.99979 10.092Z" fill="white"/>
-<path d="M10 12.1663C9.87639 12.1663 9.75555 12.1297 9.65277 12.061C9.54999 11.9923 9.46988 11.8947 9.42258 11.7805C9.37527 11.6663 9.36289 11.5406 9.38701 11.4194C9.41113 11.2982 9.47065 11.1868 9.55806 11.0994C9.64547 11.012 9.75683 10.9524 9.87807 10.9283C9.99931 10.9042 10.125 10.9166 10.2392 10.9639C10.3534 11.0112 10.451 11.0913 10.5197 11.1941C10.5883 11.2969 10.625 11.4177 10.625 11.5413C10.6251 11.6234 10.609 11.7048 10.5776 11.7806C10.5463 11.8565 10.5002 11.9254 10.4422 11.9835C10.3841 12.0416 10.3152 12.0876 10.2393 12.119C10.1634 12.1503 10.0821 12.1664 10 12.1663Z" fill="white"/>
-</svg>
Index: loads/1755952751368_verified-icon.svg
===================================================================
--- uploads/1755952751368_verified-icon.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="43" height="46" viewBox="0 0 43 46" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M18.7619 43.4145C18.1019 43.3535 17.4625 43.1524 16.8865 42.8246C16.3105 42.4968 15.8111 42.0498 15.4217 41.5135L13.6767 39.1187C13.5595 38.9732 13.4223 38.8449 13.2691 38.7378C13.1701 38.6897 13.0664 38.6519 12.9596 38.625L9.40265 37.9182C8.30575 37.7001 7.32545 37.0909 6.64414 36.204C6.5465 36.0793 6.45474 35.9503 6.36884 35.8169C6.33349 35.7721 6.29913 35.7267 6.26576 35.6807C5.60192 34.7847 5.27997 33.6811 5.35795 32.5688L5.65141 28.9497C5.65692 28.8791 5.65628 28.8082 5.64951 28.7378C5.58158 28.5234 5.48162 28.3206 5.35303 28.1362L3.50167 25.7828C3.0714 25.235 2.76949 24.5976 2.6182 23.9177C2.4669 23.2377 2.47007 22.5324 2.62747 21.8539C2.7036 21.216 2.91081 20.6008 3.23609 20.0469C3.56137 19.493 3.99769 19.0123 4.51764 18.6351L6.9256 16.8808C7.05958 16.772 7.1782 16.6454 7.27822 16.5047C7.32722 16.4026 7.36416 16.2951 7.38827 16.1844L8.11856 12.625C8.38951 11.4078 9.13021 10.3468 10.1795 9.67302C11.0981 8.91788 12.2679 8.53718 13.455 8.60699L17.0798 8.87928C17.1703 8.88508 17.2611 8.88181 17.351 8.8695C17.5317 8.80666 17.7025 8.71818 17.8581 8.60679L20.2181 6.77372C20.739 6.3625 21.3416 6.06726 21.9858 5.90776C22.63 5.74826 23.3008 5.72817 23.9533 5.84884C24.6298 5.89835 25.2874 6.09494 25.8801 6.4249C26.4727 6.75486 26.9862 7.21022 27.3847 7.75919L29.1578 10.1952C29.2239 10.2801 29.2985 10.3581 29.3803 10.428L29.6846 10.6411C29.7379 10.6613 29.7925 10.6777 29.8481 10.6902L33.4052 11.3986C34.5599 11.6424 35.5803 12.3123 36.2632 13.2748C36.6832 13.7441 37.0051 14.2926 37.2099 14.8882C37.4147 15.4838 37.4983 16.1143 37.4557 16.7426L37.1621 20.3602C37.1545 20.477 37.1611 20.5943 37.1817 20.7095C37.2429 20.8747 37.326 21.0309 37.4288 21.1739L39.2596 23.512C39.6578 24.0193 39.9464 24.6037 40.1069 25.2283C40.2674 25.8529 40.2965 26.504 40.1921 27.1404C40.156 27.8336 39.9655 28.51 39.6346 29.1201C39.3036 29.7302 38.8406 30.2588 38.2792 30.667L35.8845 32.412C35.7198 32.5454 35.5764 32.7031 35.4593 32.8797C35.4261 32.9595 35.4004 33.0422 35.3826 33.1268L34.6758 36.6837C34.4298 37.8473 33.7513 38.8741 32.7775 39.5567C32.3096 39.9668 31.7651 40.2801 31.1755 40.4785C30.5858 40.6769 29.9627 40.7564 29.3421 40.7125L25.723 40.4191C25.6104 40.4121 25.4974 40.4177 25.3861 40.4358C25.2085 40.496 25.0406 40.5815 24.8875 40.6897L22.5494 42.5205C21.8638 43.058 21.041 43.392 20.1747 43.4846C19.7029 43.5327 19.2266 43.509 18.7619 43.4145Z" fill="#001D58"/>
-<path d="M18.8807 40.6573C18.2119 40.5955 17.5639 40.3917 16.9802 40.0594C16.3964 39.7272 15.8903 39.2742 15.4956 38.7307L13.7272 36.3038C13.6085 36.1562 13.4694 36.0263 13.3142 35.9177C13.2138 35.8689 13.1087 35.8306 13.0005 35.8034L9.39572 35.0871C8.28407 34.866 7.29059 34.2487 6.60013 33.3498C6.50117 33.2234 6.40817 33.0927 6.32112 32.9576C6.2853 32.9122 6.25048 32.8662 6.21665 32.8195C5.54389 31.9115 5.21761 30.7931 5.29664 29.6658L5.59405 25.998C5.59963 25.9265 5.59899 25.8547 5.59213 25.7833C5.52328 25.5661 5.42198 25.3605 5.29166 25.1736L3.41541 22.7886C2.97935 22.2334 2.67339 21.5875 2.52006 20.8984C2.36674 20.2092 2.36995 19.4945 2.52946 18.8068C2.60661 18.1604 2.81661 17.5369 3.14626 16.9756C3.47592 16.4142 3.9181 15.9271 4.44504 15.5448L6.88537 13.767C7.02115 13.6566 7.14136 13.5284 7.24272 13.3858C7.29239 13.2823 7.32982 13.1733 7.35425 13.0612L8.09437 9.45389C8.36895 8.22032 9.11961 7.14511 10.183 6.46223C11.114 5.69694 12.2994 5.31113 13.5025 5.38187L17.176 5.65783C17.2678 5.66371 17.3598 5.66039 17.4509 5.64792C17.634 5.58423 17.8071 5.49456 17.9648 5.38168L20.3565 3.52396C20.8844 3.10721 21.4952 2.80801 22.148 2.64636C22.8008 2.48472 23.4806 2.46436 24.142 2.58665C24.8276 2.63682 25.494 2.83606 26.0946 3.17046C26.6953 3.50485 27.2157 3.96633 27.6195 4.52268L29.4164 6.99147C29.4834 7.07752 29.559 7.15657 29.6419 7.22739L29.9503 7.44329C30.0043 7.46375 30.0597 7.48039 30.116 7.49308L33.721 8.21099C34.8911 8.45811 35.9253 9.137 36.6174 10.1124C37.043 10.588 37.3692 11.144 37.5768 11.7475C37.7843 12.3511 37.869 12.9901 37.8259 13.6269L37.5283 17.2931C37.5206 17.4114 37.5273 17.5303 37.5482 17.647C37.6102 17.8145 37.6944 17.9728 37.7986 18.1177L39.654 20.4873C40.0576 21.0013 40.35 21.5936 40.5127 22.2266C40.6754 22.8596 40.7048 23.5195 40.5991 24.1644C40.5625 24.8669 40.3694 25.5524 40.034 26.1707C39.6986 26.7891 39.2293 27.3247 38.6604 27.7384L36.2335 29.5069C36.0667 29.642 35.9213 29.8019 35.8026 29.9808C35.7689 30.0617 35.7429 30.1455 35.7249 30.2313L35.0086 33.836C34.7592 35.0152 34.0717 36.0558 33.0847 36.7477C32.6106 37.1633 32.0588 37.4808 31.4612 37.6818C30.8637 37.8829 30.2321 37.9635 29.6032 37.919L25.9354 37.6216C25.8213 37.6145 25.7068 37.6202 25.594 37.6386C25.414 37.6995 25.2439 37.7862 25.0888 37.8959L22.7192 39.7512C22.0244 40.296 21.1905 40.6345 20.3126 40.7283C19.8345 40.777 19.3517 40.7531 18.8807 40.6573Z" fill="#1D79BE"/>
-<path d="M19.6853 28.6166C19.2649 28.6602 18.8443 28.5352 18.516 28.269L12.8287 23.6771C12.6653 23.5446 12.5296 23.3813 12.4293 23.1964C12.3291 23.0115 12.2662 22.8087 12.2443 22.5996C12.2001 22.1771 12.3255 21.7544 12.593 21.4244C12.8604 21.0944 13.248 20.8842 13.6704 20.84C14.0929 20.7958 14.5156 20.9212 14.8456 21.1886L19.2763 24.7767L27.4362 14.6801C27.7036 14.3499 28.0913 14.1395 28.5138 14.0951C28.9364 14.0507 29.3593 14.176 29.6895 14.4435C30.0197 14.7109 30.2302 15.0986 30.2745 15.5211C30.3189 15.9437 30.1936 16.3666 29.9262 16.6968L20.7604 28.0309C20.6286 28.1946 20.4657 28.3305 20.2812 28.431C20.0967 28.5315 19.8942 28.5946 19.6853 28.6166Z" fill="white"/>
-</svg>
Index: loads/1755952759114_contact-background.svg
===================================================================
--- uploads/1755952759114_contact-background.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,4 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M3.91855 0H44.0814C45.1207 0 46.1174 0.430407 46.8523 1.19654C47.5872 1.96266 48 3.00176 48 4.08523V43.9148C48 44.9982 47.5872 46.0373 46.8523 46.8035C46.1174 47.5696 45.1207 48 44.0814 48H3.91855C3.40389 48 2.89426 47.8943 2.41878 47.6889C1.9433 47.4836 1.51128 47.1826 1.14739 46.8031C0.783511 46.4237 0.494891 45.9732 0.298019 45.4775C0.101147 44.9817 -0.000120311 44.4504 1.07267e-07 43.9138V4.08523C1.07267e-07 3.00176 0.412847 1.96266 1.14772 1.19654C1.88259 0.430407 2.87929 0 3.91855 0Z" fill="#002165"/>
-<path d="M31.0605 26.3105C31.9864 26.1264 32.9462 26.2208 33.8184 26.582C34.6903 26.9433 35.4356 27.5551 35.96 28.3398C36.4842 29.1246 36.7646 30.0475 36.7646 30.9912C36.7641 31.9525 36.4722 32.8836 35.9404 33.668C35.9664 33.6887 35.9919 33.7107 36.0156 33.7344L37.2236 34.9434C37.3916 35.1139 37.4862 35.3436 37.4863 35.583C37.4862 35.8225 37.3918 36.0531 37.2236 36.2236C37.1401 36.3085 37.0405 36.3768 36.9307 36.4229C36.821 36.4687 36.7029 36.4922 36.584 36.4922C36.465 36.4926 36.3462 36.4694 36.2363 36.4238C36.1267 36.3783 36.027 36.3109 35.9434 36.2266L34.7344 35.0176C34.7104 34.9936 34.688 34.9677 34.667 34.9414C33.8828 35.4727 32.9521 35.7642 31.9912 35.7646C31.0475 35.7646 30.1246 35.4842 29.3398 34.96C28.5552 34.4356 27.9433 33.6902 27.582 32.8184C27.2208 31.9464 27.1265 30.9862 27.3105 30.0605C27.4947 29.1348 27.9488 28.2837 28.6162 27.6162C29.2837 26.9487 30.1347 26.4947 31.0605 26.3105ZM24.5 26.2188C24.7397 26.2204 24.9691 26.3159 25.1387 26.4854C25.3082 26.6549 25.4047 26.8852 25.4062 27.125C25.4045 27.3646 25.3081 27.5942 25.1387 27.7637C24.9692 27.9331 24.7396 28.0296 24.5 28.0312C19.28 28.0312 15.0264 31.4143 15.0264 35.583C15.0247 35.8227 14.9283 36.0522 14.7588 36.2217C14.5892 36.3912 14.3599 36.4877 14.1201 36.4893C13.8804 36.4877 13.651 36.3912 13.4814 36.2217C13.3119 36.0522 13.2156 35.8227 13.2139 35.583C13.2139 30.4234 18.2771 26.2188 24.5 26.2188ZM31.9912 28.0312C31.4058 28.0313 30.8334 28.2051 30.3467 28.5303C29.8601 28.8555 29.4809 29.3178 29.2568 29.8584C29.0329 30.3992 28.9737 30.9952 29.0879 31.5693C29.2022 32.1434 29.4846 32.6711 29.8984 33.085C30.3124 33.4988 30.84 33.7813 31.4141 33.8955C31.9882 34.0097 32.5842 33.9506 33.125 33.7266C33.6655 33.5026 34.1279 33.1232 34.4531 32.6367C34.7783 32.15 34.9521 31.5766 34.9521 30.9912C34.9508 30.2068 34.6386 29.4542 34.084 28.8994C33.5291 28.3445 32.7759 28.0325 31.9912 28.0312ZM23.1445 10.6436C24.4921 10.3756 25.8888 10.5134 27.1582 11.0391C28.4277 11.5649 29.5129 12.4561 30.2764 13.5986C31.0396 14.741 31.4472 16.0841 31.4473 17.458C31.4449 19.2999 30.7126 21.0667 29.4102 22.3691C28.1078 23.6713 26.3417 24.4039 24.5 24.4062C23.1259 24.4062 21.7822 23.9987 20.6396 23.2354C19.4972 22.472 18.607 21.3865 18.0811 20.1172C17.5552 18.8477 17.4176 17.4502 17.6855 16.1025C17.9537 14.755 18.6154 13.5165 19.5869 12.5449C20.5585 11.5734 21.7969 10.9116 23.1445 10.6436ZM24.5 12.3232C23.4843 12.3232 22.491 12.6242 21.6465 13.1885C20.8021 13.7528 20.1435 14.5549 19.7549 15.4932C19.3664 16.4313 19.2648 17.464 19.4629 18.46C19.6611 19.456 20.1501 20.3717 20.8682 21.0898C21.5863 21.8079 22.502 22.297 23.498 22.4951C24.494 22.6932 25.5267 22.5917 26.4648 22.2031C27.4031 21.8145 28.2053 21.1558 28.7695 20.3115C29.3337 19.4671 29.6347 18.4736 29.6348 17.458C29.6318 16.0971 29.0902 14.7924 28.1279 13.8301C27.1656 12.8677 25.861 12.3262 24.5 12.3232Z" fill="white"/>
-</svg>
Index: loads/1756320759597_import.svg
===================================================================
--- uploads/1756320759597_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756320759623_message-question.svg
===================================================================
--- uploads/1756320759623_message-question.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M16.0009 44.6397C15.4215 44.6381 14.8513 44.4939 14.3409 44.2197C13.7835 43.9217 13.3178 43.4775 12.9937 42.9349C12.6695 42.3923 12.4992 41.7718 12.5009 41.1397V38.2997C9.66538 38.0984 7.02403 36.7857 5.15134 34.6471C3.27865 32.5085 2.32611 29.717 2.50089 26.8797V14.8797C2.41165 13.3462 2.64799 11.8111 3.19435 10.3754C3.74071 8.93976 4.58474 7.63597 5.67094 6.54976C6.75715 5.46356 8.06094 4.61953 9.49662 4.07317C10.9323 3.52681 12.4674 3.29048 14.0009 3.37971H34.0009C35.5344 3.29048 37.0695 3.52681 38.5052 4.07317C39.9408 4.61953 41.2446 5.46356 42.3308 6.54976C43.417 7.63597 44.2611 8.93976 44.8074 10.3754C45.3538 11.8111 45.5901 13.3462 45.5009 14.8797V26.8797C45.5901 28.4132 45.3538 29.9483 44.8074 31.384C44.2611 32.8197 43.417 34.1235 42.3308 35.2097C41.2446 36.2959 39.9408 37.1399 38.5052 37.6863C37.0695 38.2326 35.5344 38.4689 34.0009 38.3797H26.4609L17.9409 44.0597C17.3641 44.4371 16.6901 44.6386 16.0009 44.6397ZM14.0009 6.35971C12.8644 6.28092 11.7241 6.44676 10.6571 6.84606C9.59013 7.24536 8.62117 7.86882 7.81558 8.67441C7.01 9.47999 6.38654 10.449 5.98724 11.516C5.58794 12.583 5.4221 13.7232 5.50089 14.8597V26.8597C5.4221 27.9963 5.58794 29.1365 5.98724 30.2035C6.38654 31.2705 7.01 32.2394 7.81558 33.045C8.62117 33.8506 9.59013 34.4741 10.6571 34.8734C11.7241 35.2727 12.8644 35.4385 14.0009 35.3597C14.3979 35.3623 14.7779 35.5212 15.0587 35.8019C15.3394 36.0827 15.4983 36.4627 15.5009 36.8597V41.1197C15.5012 41.2104 15.526 41.2994 15.5726 41.3772C15.6193 41.455 15.6861 41.5188 15.7659 41.5618C15.8458 41.6048 15.9358 41.6254 16.0264 41.6215C16.1171 41.6177 16.205 41.5894 16.2809 41.5397L25.1809 35.6197C25.4297 35.4534 25.7216 35.363 26.0209 35.3597H34.0209C35.1574 35.4385 36.2976 35.2727 37.3646 34.8734C38.4316 34.4741 39.4006 33.8506 40.2062 33.045C41.0118 32.2394 41.6352 31.2705 42.0345 30.2035C42.4338 29.1365 42.5997 27.9963 42.5209 26.8597V14.8597C42.5997 13.7232 42.4338 12.583 42.0345 11.516C41.6352 10.449 41.0118 9.47999 40.2062 8.67441C39.4006 7.86882 38.4316 7.24536 37.3646 6.84606C36.2976 6.44676 35.1574 6.28092 34.0209 6.35971H14.0009Z" fill="#1D79BE"/>
-<path d="M23.9997 24.2207C23.6027 24.2181 23.2227 24.0592 22.9419 23.7785C22.6612 23.4977 22.5023 23.1177 22.4997 22.7207V22.3007C22.5235 21.5048 22.7511 20.7282 23.1608 20.0454C23.5705 19.3626 24.1486 18.7963 24.8397 18.4007C25.5797 17.9007 25.8197 17.5607 25.8197 17.0407C25.8197 16.8017 25.7726 16.565 25.6811 16.3442C25.5897 16.1234 25.4556 15.9228 25.2866 15.7538C25.1176 15.5848 24.917 15.4507 24.6962 15.3592C24.4754 15.2678 24.2387 15.2207 23.9997 15.2207C23.7607 15.2207 23.524 15.2678 23.3032 15.3592C23.0824 15.4507 22.8818 15.5848 22.7128 15.7538C22.5438 15.9228 22.4097 16.1234 22.3182 16.3442C22.2268 16.565 22.1797 16.8017 22.1797 17.0407C22.1771 17.4377 22.0182 17.8177 21.7375 18.0985C21.4567 18.3792 21.0767 18.5381 20.6797 18.5407C20.2827 18.5381 19.9027 18.3792 19.6219 18.0985C19.3412 17.8177 19.1823 17.4377 19.1797 17.0407C19.1797 15.7624 19.6875 14.5364 20.5914 13.6324C21.4954 12.7285 22.7213 12.2207 23.9997 12.2207C25.278 12.2207 26.504 12.7285 27.4079 13.6324C28.3119 14.5364 28.8197 15.7624 28.8197 17.0407C28.7961 17.8239 28.5724 18.588 28.1697 19.2602C27.7671 19.9324 27.1991 20.4903 26.5197 20.8807C25.7397 21.4007 25.4997 21.7407 25.4997 22.3007V22.7207C25.5 22.9178 25.4613 23.1129 25.386 23.295C25.3108 23.4771 25.2003 23.6426 25.0609 23.7819C24.9216 23.9213 24.7561 24.0318 24.574 24.1071C24.3919 24.1823 24.1967 24.221 23.9997 24.2207Z" fill="#1D79BE"/>
-<path d="M24 29.1992C23.7033 29.1992 23.4133 29.1112 23.1666 28.9464C22.92 28.7816 22.7277 28.5473 22.6142 28.2732C22.5006 27.9992 22.4709 27.6976 22.5288 27.4066C22.5867 27.1156 22.7296 26.8483 22.9393 26.6386C23.1491 26.4288 23.4164 26.2859 23.7074 26.228C23.9983 26.1702 24.2999 26.1999 24.574 26.3134C24.8481 26.4269 25.0824 26.6192 25.2472 26.8659C25.412 27.1125 25.5 27.4025 25.5 27.6992C25.5003 27.8963 25.4616 28.0914 25.3864 28.2736C25.3111 28.4557 25.2006 28.6211 25.0612 28.7605C24.9219 28.8998 24.7564 29.0103 24.5743 29.0856C24.3922 29.1609 24.1971 29.1995 24 29.1992Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756320759639_message-question-white.svg
===================================================================
--- uploads/1756320759639_message-question-white.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M6.66696 18.5999C6.42553 18.5992 6.18798 18.5391 5.97529 18.4249C5.74306 18.3007 5.54901 18.1157 5.41395 17.8896C5.27889 17.6635 5.20791 17.4049 5.20862 17.1416V15.9582C4.02716 15.8744 2.9266 15.3274 2.14631 14.4363C1.36602 13.5452 0.96913 12.3821 1.04196 11.1999V6.1999C1.00477 5.56093 1.10325 4.92132 1.3309 4.32312C1.55855 3.72492 1.91023 3.18167 2.36281 2.72909C2.8154 2.2765 3.35864 1.92483 3.95684 1.69717C4.55504 1.46952 5.19465 1.37105 5.83362 1.40823H14.167C14.8059 1.37105 15.4455 1.46952 16.0437 1.69717C16.6419 1.92483 17.1852 2.2765 17.6378 2.72909C18.0904 3.18167 18.442 3.72492 18.6697 4.32312C18.8973 4.92132 18.9958 5.56093 18.9586 6.1999V11.1999C18.9958 11.8389 18.8973 12.4785 18.6697 13.0767C18.442 13.6749 18.0904 14.2181 17.6378 14.6707C17.1852 15.1233 16.6419 15.475 16.0437 15.7026C15.4455 15.9303 14.8059 16.0287 14.167 15.9916H11.0253L7.47529 18.3582C7.23498 18.5155 6.95413 18.5994 6.66696 18.5999ZM5.83362 2.6499C5.36007 2.61707 4.88497 2.68617 4.44039 2.85255C3.99581 3.01892 3.59207 3.2787 3.25641 3.61436C2.92075 3.95002 2.66098 4.35375 2.4946 4.79833C2.32823 5.24292 2.25913 5.71801 2.29196 6.19157V11.1916C2.25913 11.6651 2.32823 12.1402 2.4946 12.5848C2.66098 13.0294 2.92075 13.4331 3.25641 13.7688C3.59207 14.1044 3.99581 14.3642 4.44039 14.5306C4.88497 14.697 5.36007 14.7661 5.83362 14.7332C5.99905 14.7343 6.15738 14.8005 6.27436 14.9175C6.39133 15.0345 6.45753 15.1928 6.45862 15.3582V17.1332C6.45875 17.171 6.46908 17.2081 6.48852 17.2405C6.50795 17.2729 6.53578 17.2995 6.56906 17.3174C6.60234 17.3353 6.63984 17.3439 6.67761 17.3423C6.71537 17.3407 6.752 17.3289 6.78362 17.3082L10.492 14.8416C10.5956 14.7723 10.7172 14.7346 10.842 14.7332H14.1753C14.6488 14.7661 15.1239 14.697 15.5685 14.5306C16.0131 14.3642 16.4168 14.1044 16.7525 13.7688C17.0882 13.4331 17.3479 13.0294 17.5143 12.5848C17.6807 12.1402 17.7498 11.6651 17.717 11.1916V6.19157C17.7498 5.71801 17.6807 5.24292 17.5143 4.79833C17.3479 4.35375 17.0882 3.95002 16.7525 3.61436C16.4168 3.2787 16.0131 3.01892 15.5685 2.85255C15.1239 2.68617 14.6488 2.61707 14.1753 2.6499H5.83362Z" fill="white"/>
-<path d="M9.99979 10.092C9.83437 10.0909 9.67603 10.0247 9.55905 9.90772C9.44208 9.79074 9.37588 9.6324 9.37479 9.46698V9.29198C9.38471 8.96033 9.47956 8.63678 9.65027 8.35227C9.82097 8.06775 10.0618 7.8318 10.3498 7.66698C10.6581 7.45865 10.7581 7.31698 10.7581 7.10031C10.7581 7.00073 10.7385 6.90212 10.7004 6.81011C10.6623 6.71811 10.6064 6.63451 10.536 6.56409C10.4656 6.49367 10.382 6.43781 10.29 6.3997C10.198 6.36159 10.0994 6.34198 9.99979 6.34198C9.9002 6.34198 9.80159 6.36159 9.70959 6.3997C9.61758 6.43781 9.53398 6.49367 9.46357 6.56409C9.39315 6.63451 9.33729 6.71811 9.29918 6.81011C9.26107 6.90212 9.24146 7.00073 9.24146 7.10031C9.24036 7.26574 9.17416 7.42407 9.05719 7.54105C8.94022 7.65802 8.78188 7.72422 8.61646 7.72531C8.45103 7.72422 8.29269 7.65802 8.17572 7.54105C8.05875 7.42407 7.99255 7.26574 7.99146 7.10031C7.99146 6.56767 8.20305 6.05684 8.57968 5.68021C8.95632 5.30357 9.46715 5.09198 9.99979 5.09198C10.5324 5.09198 11.0433 5.30357 11.4199 5.68021C11.7965 6.05684 12.0081 6.56767 12.0081 7.10031C11.9983 7.42665 11.9051 7.74503 11.7373 8.02511C11.5696 8.3052 11.3329 8.53765 11.0498 8.70031C10.7248 8.91698 10.6248 9.05865 10.6248 9.29198V9.46698C10.6249 9.54909 10.6088 9.63041 10.5774 9.70629C10.5461 9.78217 10.5 9.85111 10.442 9.90917C10.3839 9.96723 10.315 10.0133 10.2391 10.0446C10.1632 10.076 10.0819 10.0921 9.99979 10.092Z" fill="white"/>
-<path d="M10 12.1663C9.87639 12.1663 9.75555 12.1297 9.65277 12.061C9.54999 11.9923 9.46988 11.8947 9.42258 11.7805C9.37527 11.6663 9.36289 11.5406 9.38701 11.4194C9.41113 11.2982 9.47065 11.1868 9.55806 11.0994C9.64547 11.012 9.75683 10.9524 9.87807 10.9283C9.99931 10.9042 10.125 10.9166 10.2392 10.9639C10.3534 11.0112 10.451 11.0913 10.5197 11.1941C10.5883 11.2969 10.625 11.4177 10.625 11.5413C10.6251 11.6234 10.609 11.7048 10.5776 11.7806C10.5463 11.8565 10.5002 11.9254 10.4422 11.9835C10.3841 12.0416 10.3152 12.0876 10.2393 12.119C10.1634 12.1503 10.0821 12.1664 10 12.1663Z" fill="white"/>
-</svg>
Index: loads/1756320759653_verified-icon.svg
===================================================================
--- uploads/1756320759653_verified-icon.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="43" height="46" viewBox="0 0 43 46" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M18.7619 43.4145C18.1019 43.3535 17.4625 43.1524 16.8865 42.8246C16.3105 42.4968 15.8111 42.0498 15.4217 41.5135L13.6767 39.1187C13.5595 38.9732 13.4223 38.8449 13.2691 38.7378C13.1701 38.6897 13.0664 38.6519 12.9596 38.625L9.40265 37.9182C8.30575 37.7001 7.32545 37.0909 6.64414 36.204C6.5465 36.0793 6.45474 35.9503 6.36884 35.8169C6.33349 35.7721 6.29913 35.7267 6.26576 35.6807C5.60192 34.7847 5.27997 33.6811 5.35795 32.5688L5.65141 28.9497C5.65692 28.8791 5.65628 28.8082 5.64951 28.7378C5.58158 28.5234 5.48162 28.3206 5.35303 28.1362L3.50167 25.7828C3.0714 25.235 2.76949 24.5976 2.6182 23.9177C2.4669 23.2377 2.47007 22.5324 2.62747 21.8539C2.7036 21.216 2.91081 20.6008 3.23609 20.0469C3.56137 19.493 3.99769 19.0123 4.51764 18.6351L6.9256 16.8808C7.05958 16.772 7.1782 16.6454 7.27822 16.5047C7.32722 16.4026 7.36416 16.2951 7.38827 16.1844L8.11856 12.625C8.38951 11.4078 9.13021 10.3468 10.1795 9.67302C11.0981 8.91788 12.2679 8.53718 13.455 8.60699L17.0798 8.87928C17.1703 8.88508 17.2611 8.88181 17.351 8.8695C17.5317 8.80666 17.7025 8.71818 17.8581 8.60679L20.2181 6.77372C20.739 6.3625 21.3416 6.06726 21.9858 5.90776C22.63 5.74826 23.3008 5.72817 23.9533 5.84884C24.6298 5.89835 25.2874 6.09494 25.8801 6.4249C26.4727 6.75486 26.9862 7.21022 27.3847 7.75919L29.1578 10.1952C29.2239 10.2801 29.2985 10.3581 29.3803 10.428L29.6846 10.6411C29.7379 10.6613 29.7925 10.6777 29.8481 10.6902L33.4052 11.3986C34.5599 11.6424 35.5803 12.3123 36.2632 13.2748C36.6832 13.7441 37.0051 14.2926 37.2099 14.8882C37.4147 15.4838 37.4983 16.1143 37.4557 16.7426L37.1621 20.3602C37.1545 20.477 37.1611 20.5943 37.1817 20.7095C37.2429 20.8747 37.326 21.0309 37.4288 21.1739L39.2596 23.512C39.6578 24.0193 39.9464 24.6037 40.1069 25.2283C40.2674 25.8529 40.2965 26.504 40.1921 27.1404C40.156 27.8336 39.9655 28.51 39.6346 29.1201C39.3036 29.7302 38.8406 30.2588 38.2792 30.667L35.8845 32.412C35.7198 32.5454 35.5764 32.7031 35.4593 32.8797C35.4261 32.9595 35.4004 33.0422 35.3826 33.1268L34.6758 36.6837C34.4298 37.8473 33.7513 38.8741 32.7775 39.5567C32.3096 39.9668 31.7651 40.2801 31.1755 40.4785C30.5858 40.6769 29.9627 40.7564 29.3421 40.7125L25.723 40.4191C25.6104 40.4121 25.4974 40.4177 25.3861 40.4358C25.2085 40.496 25.0406 40.5815 24.8875 40.6897L22.5494 42.5205C21.8638 43.058 21.041 43.392 20.1747 43.4846C19.7029 43.5327 19.2266 43.509 18.7619 43.4145Z" fill="#001D58"/>
-<path d="M18.8807 40.6573C18.2119 40.5955 17.5639 40.3917 16.9802 40.0594C16.3964 39.7272 15.8903 39.2742 15.4956 38.7307L13.7272 36.3038C13.6085 36.1562 13.4694 36.0263 13.3142 35.9177C13.2138 35.8689 13.1087 35.8306 13.0005 35.8034L9.39572 35.0871C8.28407 34.866 7.29059 34.2487 6.60013 33.3498C6.50117 33.2234 6.40817 33.0927 6.32112 32.9576C6.2853 32.9122 6.25048 32.8662 6.21665 32.8195C5.54389 31.9115 5.21761 30.7931 5.29664 29.6658L5.59405 25.998C5.59963 25.9265 5.59899 25.8547 5.59213 25.7833C5.52328 25.5661 5.42198 25.3605 5.29166 25.1736L3.41541 22.7886C2.97935 22.2334 2.67339 21.5875 2.52006 20.8984C2.36674 20.2092 2.36995 19.4945 2.52946 18.8068C2.60661 18.1604 2.81661 17.5369 3.14626 16.9756C3.47592 16.4142 3.9181 15.9271 4.44504 15.5448L6.88537 13.767C7.02115 13.6566 7.14136 13.5284 7.24272 13.3858C7.29239 13.2823 7.32982 13.1733 7.35425 13.0612L8.09437 9.45389C8.36895 8.22032 9.11961 7.14511 10.183 6.46223C11.114 5.69694 12.2994 5.31113 13.5025 5.38187L17.176 5.65783C17.2678 5.66371 17.3598 5.66039 17.4509 5.64792C17.634 5.58423 17.8071 5.49456 17.9648 5.38168L20.3565 3.52396C20.8844 3.10721 21.4952 2.80801 22.148 2.64636C22.8008 2.48472 23.4806 2.46436 24.142 2.58665C24.8276 2.63682 25.494 2.83606 26.0946 3.17046C26.6953 3.50485 27.2157 3.96633 27.6195 4.52268L29.4164 6.99147C29.4834 7.07752 29.559 7.15657 29.6419 7.22739L29.9503 7.44329C30.0043 7.46375 30.0597 7.48039 30.116 7.49308L33.721 8.21099C34.8911 8.45811 35.9253 9.137 36.6174 10.1124C37.043 10.588 37.3692 11.144 37.5768 11.7475C37.7843 12.3511 37.869 12.9901 37.8259 13.6269L37.5283 17.2931C37.5206 17.4114 37.5273 17.5303 37.5482 17.647C37.6102 17.8145 37.6944 17.9728 37.7986 18.1177L39.654 20.4873C40.0576 21.0013 40.35 21.5936 40.5127 22.2266C40.6754 22.8596 40.7048 23.5195 40.5991 24.1644C40.5625 24.8669 40.3694 25.5524 40.034 26.1707C39.6986 26.7891 39.2293 27.3247 38.6604 27.7384L36.2335 29.5069C36.0667 29.642 35.9213 29.8019 35.8026 29.9808C35.7689 30.0617 35.7429 30.1455 35.7249 30.2313L35.0086 33.836C34.7592 35.0152 34.0717 36.0558 33.0847 36.7477C32.6106 37.1633 32.0588 37.4808 31.4612 37.6818C30.8637 37.8829 30.2321 37.9635 29.6032 37.919L25.9354 37.6216C25.8213 37.6145 25.7068 37.6202 25.594 37.6386C25.414 37.6995 25.2439 37.7862 25.0888 37.8959L22.7192 39.7512C22.0244 40.296 21.1905 40.6345 20.3126 40.7283C19.8345 40.777 19.3517 40.7531 18.8807 40.6573Z" fill="#1D79BE"/>
-<path d="M19.6853 28.6166C19.2649 28.6602 18.8443 28.5352 18.516 28.269L12.8287 23.6771C12.6653 23.5446 12.5296 23.3813 12.4293 23.1964C12.3291 23.0115 12.2662 22.8087 12.2443 22.5996C12.2001 22.1771 12.3255 21.7544 12.593 21.4244C12.8604 21.0944 13.248 20.8842 13.6704 20.84C14.0929 20.7958 14.5156 20.9212 14.8456 21.1886L19.2763 24.7767L27.4362 14.6801C27.7036 14.3499 28.0913 14.1395 28.5138 14.0951C28.9364 14.0507 29.3593 14.176 29.6895 14.4435C30.0197 14.7109 30.2302 15.0986 30.2745 15.5211C30.3189 15.9437 30.1936 16.3666 29.9262 16.6968L20.7604 28.0309C20.6286 28.1946 20.4657 28.3305 20.2812 28.431C20.0967 28.5315 19.8942 28.5946 19.6853 28.6166Z" fill="white"/>
-</svg>
Index: loads/1756320759667_house-background.svg
===================================================================
--- uploads/1756320759667_house-background.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,4 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M3.91855 0H44.0814C45.1207 0 46.1174 0.430407 46.8523 1.19654C47.5872 1.96266 48 3.00176 48 4.08523V43.9148C48 44.9982 47.5872 46.0373 46.8523 46.8035C46.1174 47.5696 45.1207 48 44.0814 48H3.91855C3.40389 48 2.89426 47.8943 2.41878 47.6889C1.9433 47.4836 1.51128 47.1826 1.14739 46.8031C0.783511 46.4237 0.494891 45.9732 0.298019 45.4775C0.101147 44.9817 -0.000120311 44.4504 1.07267e-07 43.9138V4.08523C1.07267e-07 3.00176 0.412847 1.96266 1.14772 1.19654C1.88259 0.430407 2.87929 0 3.91855 0Z" fill="#002165"/>
-<path d="M24 10.375C24.8156 10.375 25.6088 10.6455 26.2539 11.1445L35.5869 18.3984C36.0242 18.7438 36.3784 19.1829 36.623 19.6836C36.8677 20.1844 36.9964 20.7346 37 21.292V36.333H37.333C37.5976 36.3348 37.8509 36.4409 38.0381 36.6279C38.2252 36.815 38.3312 37.0684 38.333 37.333C38.3313 37.5976 38.2251 37.8509 38.0381 38.0381C37.8509 38.2252 37.5977 38.3313 37.333 38.333H10.666C10.4012 38.3315 10.1473 38.2262 9.95996 38.0391C9.77259 37.8519 9.66679 37.5979 9.66504 37.333C9.66687 37.0684 9.77277 36.815 9.95996 36.6279C10.1473 36.4408 10.4012 36.3345 10.666 36.333H10.9375L11 21.292C10.9993 20.7358 11.127 20.1859 11.3721 19.6865C11.6171 19.1874 11.9738 18.7508 12.4141 18.4111L21.7471 11.1445C22.3921 10.6456 23.1846 10.3751 24 10.375ZM24 12.3857C23.6287 12.3858 23.2677 12.5086 22.9736 12.7354L13.6406 20.002C13.4418 20.1569 13.2808 20.3556 13.1699 20.582C13.0591 20.8083 13.0006 21.0566 13 21.3086L12.9375 36.333H16.333V24.667C16.3344 23.8718 16.6507 23.1092 17.2129 22.5469C17.7752 21.9846 18.5378 21.6684 19.333 21.667H28.666C29.4612 21.6684 30.2238 21.9846 30.7861 22.5469C31.3484 23.1092 31.6646 23.8718 31.666 24.667V36.333H35V21.3086C34.998 21.0549 34.9398 20.8044 34.8291 20.5762C34.7185 20.3481 34.5581 20.1478 34.3604 19.9893L25.0273 12.7354C24.7332 12.5085 24.3715 12.3857 24 12.3857ZM19.333 23.667C19.0682 23.6687 18.8143 23.7738 18.627 23.9609C18.4396 24.1481 18.3341 24.4022 18.332 24.667V36.333H29.666V24.667C29.6639 24.4024 29.5582 24.149 29.3711 23.9619C29.184 23.7748 28.9306 23.6691 28.666 23.667H19.333ZM21.333 28.667C21.5978 28.6687 21.8517 28.7738 22.0391 28.9609C22.2264 29.1481 22.3319 29.4022 22.334 29.667V31.667C22.3318 31.9316 22.2263 32.185 22.0391 32.3721C21.8517 32.5592 21.5978 32.6652 21.333 32.667C21.0684 32.6649 20.815 32.5582 20.6279 32.3711C20.4411 32.1841 20.3352 31.9313 20.333 31.667V29.667C20.3351 29.4025 20.4409 29.149 20.6279 28.9619C20.815 28.7748 21.0684 28.6691 21.333 28.667ZM26 17C26.2648 17.0015 26.5187 17.1069 26.7061 17.2939C26.8935 17.4811 26.9992 17.7351 27.001 18C26.9989 18.2648 26.8924 18.518 26.7051 18.7051C26.5178 18.8921 26.2647 18.9982 26 19H22C21.7354 18.9983 21.4821 18.8921 21.2949 18.7051C21.1078 18.5179 21.0017 18.2647 21 18C21.0014 17.7354 21.1069 17.4821 21.2939 17.2949C21.4812 17.1077 21.7352 17.0014 22 17H26Z" fill="white"/>
-</svg>
Index: loads/1756321246214_import.svg
===================================================================
--- uploads/1756321246214_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756321246221_message-question-white.svg
===================================================================
--- uploads/1756321246221_message-question-white.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M6.66696 18.5999C6.42553 18.5992 6.18798 18.5391 5.97529 18.4249C5.74306 18.3007 5.54901 18.1157 5.41395 17.8896C5.27889 17.6635 5.20791 17.4049 5.20862 17.1416V15.9582C4.02716 15.8744 2.9266 15.3274 2.14631 14.4363C1.36602 13.5452 0.96913 12.3821 1.04196 11.1999V6.1999C1.00477 5.56093 1.10325 4.92132 1.3309 4.32312C1.55855 3.72492 1.91023 3.18167 2.36281 2.72909C2.8154 2.2765 3.35864 1.92483 3.95684 1.69717C4.55504 1.46952 5.19465 1.37105 5.83362 1.40823H14.167C14.8059 1.37105 15.4455 1.46952 16.0437 1.69717C16.6419 1.92483 17.1852 2.2765 17.6378 2.72909C18.0904 3.18167 18.442 3.72492 18.6697 4.32312C18.8973 4.92132 18.9958 5.56093 18.9586 6.1999V11.1999C18.9958 11.8389 18.8973 12.4785 18.6697 13.0767C18.442 13.6749 18.0904 14.2181 17.6378 14.6707C17.1852 15.1233 16.6419 15.475 16.0437 15.7026C15.4455 15.9303 14.8059 16.0287 14.167 15.9916H11.0253L7.47529 18.3582C7.23498 18.5155 6.95413 18.5994 6.66696 18.5999ZM5.83362 2.6499C5.36007 2.61707 4.88497 2.68617 4.44039 2.85255C3.99581 3.01892 3.59207 3.2787 3.25641 3.61436C2.92075 3.95002 2.66098 4.35375 2.4946 4.79833C2.32823 5.24292 2.25913 5.71801 2.29196 6.19157V11.1916C2.25913 11.6651 2.32823 12.1402 2.4946 12.5848C2.66098 13.0294 2.92075 13.4331 3.25641 13.7688C3.59207 14.1044 3.99581 14.3642 4.44039 14.5306C4.88497 14.697 5.36007 14.7661 5.83362 14.7332C5.99905 14.7343 6.15738 14.8005 6.27436 14.9175C6.39133 15.0345 6.45753 15.1928 6.45862 15.3582V17.1332C6.45875 17.171 6.46908 17.2081 6.48852 17.2405C6.50795 17.2729 6.53578 17.2995 6.56906 17.3174C6.60234 17.3353 6.63984 17.3439 6.67761 17.3423C6.71537 17.3407 6.752 17.3289 6.78362 17.3082L10.492 14.8416C10.5956 14.7723 10.7172 14.7346 10.842 14.7332H14.1753C14.6488 14.7661 15.1239 14.697 15.5685 14.5306C16.0131 14.3642 16.4168 14.1044 16.7525 13.7688C17.0882 13.4331 17.3479 13.0294 17.5143 12.5848C17.6807 12.1402 17.7498 11.6651 17.717 11.1916V6.19157C17.7498 5.71801 17.6807 5.24292 17.5143 4.79833C17.3479 4.35375 17.0882 3.95002 16.7525 3.61436C16.4168 3.2787 16.0131 3.01892 15.5685 2.85255C15.1239 2.68617 14.6488 2.61707 14.1753 2.6499H5.83362Z" fill="white"/>
-<path d="M9.99979 10.092C9.83437 10.0909 9.67603 10.0247 9.55905 9.90772C9.44208 9.79074 9.37588 9.6324 9.37479 9.46698V9.29198C9.38471 8.96033 9.47956 8.63678 9.65027 8.35227C9.82097 8.06775 10.0618 7.8318 10.3498 7.66698C10.6581 7.45865 10.7581 7.31698 10.7581 7.10031C10.7581 7.00073 10.7385 6.90212 10.7004 6.81011C10.6623 6.71811 10.6064 6.63451 10.536 6.56409C10.4656 6.49367 10.382 6.43781 10.29 6.3997C10.198 6.36159 10.0994 6.34198 9.99979 6.34198C9.9002 6.34198 9.80159 6.36159 9.70959 6.3997C9.61758 6.43781 9.53398 6.49367 9.46357 6.56409C9.39315 6.63451 9.33729 6.71811 9.29918 6.81011C9.26107 6.90212 9.24146 7.00073 9.24146 7.10031C9.24036 7.26574 9.17416 7.42407 9.05719 7.54105C8.94022 7.65802 8.78188 7.72422 8.61646 7.72531C8.45103 7.72422 8.29269 7.65802 8.17572 7.54105C8.05875 7.42407 7.99255 7.26574 7.99146 7.10031C7.99146 6.56767 8.20305 6.05684 8.57968 5.68021C8.95632 5.30357 9.46715 5.09198 9.99979 5.09198C10.5324 5.09198 11.0433 5.30357 11.4199 5.68021C11.7965 6.05684 12.0081 6.56767 12.0081 7.10031C11.9983 7.42665 11.9051 7.74503 11.7373 8.02511C11.5696 8.3052 11.3329 8.53765 11.0498 8.70031C10.7248 8.91698 10.6248 9.05865 10.6248 9.29198V9.46698C10.6249 9.54909 10.6088 9.63041 10.5774 9.70629C10.5461 9.78217 10.5 9.85111 10.442 9.90917C10.3839 9.96723 10.315 10.0133 10.2391 10.0446C10.1632 10.076 10.0819 10.0921 9.99979 10.092Z" fill="white"/>
-<path d="M10 12.1663C9.87639 12.1663 9.75555 12.1297 9.65277 12.061C9.54999 11.9923 9.46988 11.8947 9.42258 11.7805C9.37527 11.6663 9.36289 11.5406 9.38701 11.4194C9.41113 11.2982 9.47065 11.1868 9.55806 11.0994C9.64547 11.012 9.75683 10.9524 9.87807 10.9283C9.99931 10.9042 10.125 10.9166 10.2392 10.9639C10.3534 11.0112 10.451 11.0913 10.5197 11.1941C10.5883 11.2969 10.625 11.4177 10.625 11.5413C10.6251 11.6234 10.609 11.7048 10.5776 11.7806C10.5463 11.8565 10.5002 11.9254 10.4422 11.9835C10.3841 12.0416 10.3152 12.0876 10.2393 12.119C10.1634 12.1503 10.0821 12.1664 10 12.1663Z" fill="white"/>
-</svg>
Index: loads/1756321246226_message-question.svg
===================================================================
--- uploads/1756321246226_message-question.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M16.0009 44.6397C15.4215 44.6381 14.8513 44.4939 14.3409 44.2197C13.7835 43.9217 13.3178 43.4775 12.9937 42.9349C12.6695 42.3923 12.4992 41.7718 12.5009 41.1397V38.2997C9.66538 38.0984 7.02403 36.7857 5.15134 34.6471C3.27865 32.5085 2.32611 29.717 2.50089 26.8797V14.8797C2.41165 13.3462 2.64799 11.8111 3.19435 10.3754C3.74071 8.93976 4.58474 7.63597 5.67094 6.54976C6.75715 5.46356 8.06094 4.61953 9.49662 4.07317C10.9323 3.52681 12.4674 3.29048 14.0009 3.37971H34.0009C35.5344 3.29048 37.0695 3.52681 38.5052 4.07317C39.9408 4.61953 41.2446 5.46356 42.3308 6.54976C43.417 7.63597 44.2611 8.93976 44.8074 10.3754C45.3538 11.8111 45.5901 13.3462 45.5009 14.8797V26.8797C45.5901 28.4132 45.3538 29.9483 44.8074 31.384C44.2611 32.8197 43.417 34.1235 42.3308 35.2097C41.2446 36.2959 39.9408 37.1399 38.5052 37.6863C37.0695 38.2326 35.5344 38.4689 34.0009 38.3797H26.4609L17.9409 44.0597C17.3641 44.4371 16.6901 44.6386 16.0009 44.6397ZM14.0009 6.35971C12.8644 6.28092 11.7241 6.44676 10.6571 6.84606C9.59013 7.24536 8.62117 7.86882 7.81558 8.67441C7.01 9.47999 6.38654 10.449 5.98724 11.516C5.58794 12.583 5.4221 13.7232 5.50089 14.8597V26.8597C5.4221 27.9963 5.58794 29.1365 5.98724 30.2035C6.38654 31.2705 7.01 32.2394 7.81558 33.045C8.62117 33.8506 9.59013 34.4741 10.6571 34.8734C11.7241 35.2727 12.8644 35.4385 14.0009 35.3597C14.3979 35.3623 14.7779 35.5212 15.0587 35.8019C15.3394 36.0827 15.4983 36.4627 15.5009 36.8597V41.1197C15.5012 41.2104 15.526 41.2994 15.5726 41.3772C15.6193 41.455 15.6861 41.5188 15.7659 41.5618C15.8458 41.6048 15.9358 41.6254 16.0264 41.6215C16.1171 41.6177 16.205 41.5894 16.2809 41.5397L25.1809 35.6197C25.4297 35.4534 25.7216 35.363 26.0209 35.3597H34.0209C35.1574 35.4385 36.2976 35.2727 37.3646 34.8734C38.4316 34.4741 39.4006 33.8506 40.2062 33.045C41.0118 32.2394 41.6352 31.2705 42.0345 30.2035C42.4338 29.1365 42.5997 27.9963 42.5209 26.8597V14.8597C42.5997 13.7232 42.4338 12.583 42.0345 11.516C41.6352 10.449 41.0118 9.47999 40.2062 8.67441C39.4006 7.86882 38.4316 7.24536 37.3646 6.84606C36.2976 6.44676 35.1574 6.28092 34.0209 6.35971H14.0009Z" fill="#1D79BE"/>
-<path d="M23.9997 24.2207C23.6027 24.2181 23.2227 24.0592 22.9419 23.7785C22.6612 23.4977 22.5023 23.1177 22.4997 22.7207V22.3007C22.5235 21.5048 22.7511 20.7282 23.1608 20.0454C23.5705 19.3626 24.1486 18.7963 24.8397 18.4007C25.5797 17.9007 25.8197 17.5607 25.8197 17.0407C25.8197 16.8017 25.7726 16.565 25.6811 16.3442C25.5897 16.1234 25.4556 15.9228 25.2866 15.7538C25.1176 15.5848 24.917 15.4507 24.6962 15.3592C24.4754 15.2678 24.2387 15.2207 23.9997 15.2207C23.7607 15.2207 23.524 15.2678 23.3032 15.3592C23.0824 15.4507 22.8818 15.5848 22.7128 15.7538C22.5438 15.9228 22.4097 16.1234 22.3182 16.3442C22.2268 16.565 22.1797 16.8017 22.1797 17.0407C22.1771 17.4377 22.0182 17.8177 21.7375 18.0985C21.4567 18.3792 21.0767 18.5381 20.6797 18.5407C20.2827 18.5381 19.9027 18.3792 19.6219 18.0985C19.3412 17.8177 19.1823 17.4377 19.1797 17.0407C19.1797 15.7624 19.6875 14.5364 20.5914 13.6324C21.4954 12.7285 22.7213 12.2207 23.9997 12.2207C25.278 12.2207 26.504 12.7285 27.4079 13.6324C28.3119 14.5364 28.8197 15.7624 28.8197 17.0407C28.7961 17.8239 28.5724 18.588 28.1697 19.2602C27.7671 19.9324 27.1991 20.4903 26.5197 20.8807C25.7397 21.4007 25.4997 21.7407 25.4997 22.3007V22.7207C25.5 22.9178 25.4613 23.1129 25.386 23.295C25.3108 23.4771 25.2003 23.6426 25.0609 23.7819C24.9216 23.9213 24.7561 24.0318 24.574 24.1071C24.3919 24.1823 24.1967 24.221 23.9997 24.2207Z" fill="#1D79BE"/>
-<path d="M24 29.1992C23.7033 29.1992 23.4133 29.1112 23.1666 28.9464C22.92 28.7816 22.7277 28.5473 22.6142 28.2732C22.5006 27.9992 22.4709 27.6976 22.5288 27.4066C22.5867 27.1156 22.7296 26.8483 22.9393 26.6386C23.1491 26.4288 23.4164 26.2859 23.7074 26.228C23.9983 26.1702 24.2999 26.1999 24.574 26.3134C24.8481 26.4269 25.0824 26.6192 25.2472 26.8659C25.412 27.1125 25.5 27.4025 25.5 27.6992C25.5003 27.8963 25.4616 28.0914 25.3864 28.2736C25.3111 28.4557 25.2006 28.6211 25.0612 28.7605C24.9219 28.8998 24.7564 29.0103 24.5743 29.0856C24.3922 29.1609 24.1971 29.1995 24 29.1992Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756321246231_message-question.svg
===================================================================
--- uploads/1756321246231_message-question.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M16.0009 44.6397C15.4215 44.6381 14.8513 44.4939 14.3409 44.2197C13.7835 43.9217 13.3178 43.4775 12.9937 42.9349C12.6695 42.3923 12.4992 41.7718 12.5009 41.1397V38.2997C9.66538 38.0984 7.02403 36.7857 5.15134 34.6471C3.27865 32.5085 2.32611 29.717 2.50089 26.8797V14.8797C2.41165 13.3462 2.64799 11.8111 3.19435 10.3754C3.74071 8.93976 4.58474 7.63597 5.67094 6.54976C6.75715 5.46356 8.06094 4.61953 9.49662 4.07317C10.9323 3.52681 12.4674 3.29048 14.0009 3.37971H34.0009C35.5344 3.29048 37.0695 3.52681 38.5052 4.07317C39.9408 4.61953 41.2446 5.46356 42.3308 6.54976C43.417 7.63597 44.2611 8.93976 44.8074 10.3754C45.3538 11.8111 45.5901 13.3462 45.5009 14.8797V26.8797C45.5901 28.4132 45.3538 29.9483 44.8074 31.384C44.2611 32.8197 43.417 34.1235 42.3308 35.2097C41.2446 36.2959 39.9408 37.1399 38.5052 37.6863C37.0695 38.2326 35.5344 38.4689 34.0009 38.3797H26.4609L17.9409 44.0597C17.3641 44.4371 16.6901 44.6386 16.0009 44.6397ZM14.0009 6.35971C12.8644 6.28092 11.7241 6.44676 10.6571 6.84606C9.59013 7.24536 8.62117 7.86882 7.81558 8.67441C7.01 9.47999 6.38654 10.449 5.98724 11.516C5.58794 12.583 5.4221 13.7232 5.50089 14.8597V26.8597C5.4221 27.9963 5.58794 29.1365 5.98724 30.2035C6.38654 31.2705 7.01 32.2394 7.81558 33.045C8.62117 33.8506 9.59013 34.4741 10.6571 34.8734C11.7241 35.2727 12.8644 35.4385 14.0009 35.3597C14.3979 35.3623 14.7779 35.5212 15.0587 35.8019C15.3394 36.0827 15.4983 36.4627 15.5009 36.8597V41.1197C15.5012 41.2104 15.526 41.2994 15.5726 41.3772C15.6193 41.455 15.6861 41.5188 15.7659 41.5618C15.8458 41.6048 15.9358 41.6254 16.0264 41.6215C16.1171 41.6177 16.205 41.5894 16.2809 41.5397L25.1809 35.6197C25.4297 35.4534 25.7216 35.363 26.0209 35.3597H34.0209C35.1574 35.4385 36.2976 35.2727 37.3646 34.8734C38.4316 34.4741 39.4006 33.8506 40.2062 33.045C41.0118 32.2394 41.6352 31.2705 42.0345 30.2035C42.4338 29.1365 42.5997 27.9963 42.5209 26.8597V14.8597C42.5997 13.7232 42.4338 12.583 42.0345 11.516C41.6352 10.449 41.0118 9.47999 40.2062 8.67441C39.4006 7.86882 38.4316 7.24536 37.3646 6.84606C36.2976 6.44676 35.1574 6.28092 34.0209 6.35971H14.0009Z" fill="#1D79BE"/>
-<path d="M23.9997 24.2207C23.6027 24.2181 23.2227 24.0592 22.9419 23.7785C22.6612 23.4977 22.5023 23.1177 22.4997 22.7207V22.3007C22.5235 21.5048 22.7511 20.7282 23.1608 20.0454C23.5705 19.3626 24.1486 18.7963 24.8397 18.4007C25.5797 17.9007 25.8197 17.5607 25.8197 17.0407C25.8197 16.8017 25.7726 16.565 25.6811 16.3442C25.5897 16.1234 25.4556 15.9228 25.2866 15.7538C25.1176 15.5848 24.917 15.4507 24.6962 15.3592C24.4754 15.2678 24.2387 15.2207 23.9997 15.2207C23.7607 15.2207 23.524 15.2678 23.3032 15.3592C23.0824 15.4507 22.8818 15.5848 22.7128 15.7538C22.5438 15.9228 22.4097 16.1234 22.3182 16.3442C22.2268 16.565 22.1797 16.8017 22.1797 17.0407C22.1771 17.4377 22.0182 17.8177 21.7375 18.0985C21.4567 18.3792 21.0767 18.5381 20.6797 18.5407C20.2827 18.5381 19.9027 18.3792 19.6219 18.0985C19.3412 17.8177 19.1823 17.4377 19.1797 17.0407C19.1797 15.7624 19.6875 14.5364 20.5914 13.6324C21.4954 12.7285 22.7213 12.2207 23.9997 12.2207C25.278 12.2207 26.504 12.7285 27.4079 13.6324C28.3119 14.5364 28.8197 15.7624 28.8197 17.0407C28.7961 17.8239 28.5724 18.588 28.1697 19.2602C27.7671 19.9324 27.1991 20.4903 26.5197 20.8807C25.7397 21.4007 25.4997 21.7407 25.4997 22.3007V22.7207C25.5 22.9178 25.4613 23.1129 25.386 23.295C25.3108 23.4771 25.2003 23.6426 25.0609 23.7819C24.9216 23.9213 24.7561 24.0318 24.574 24.1071C24.3919 24.1823 24.1967 24.221 23.9997 24.2207Z" fill="#1D79BE"/>
-<path d="M24 29.1992C23.7033 29.1992 23.4133 29.1112 23.1666 28.9464C22.92 28.7816 22.7277 28.5473 22.6142 28.2732C22.5006 27.9992 22.4709 27.6976 22.5288 27.4066C22.5867 27.1156 22.7296 26.8483 22.9393 26.6386C23.1491 26.4288 23.4164 26.2859 23.7074 26.228C23.9983 26.1702 24.2999 26.1999 24.574 26.3134C24.8481 26.4269 25.0824 26.6192 25.2472 26.8659C25.412 27.1125 25.5 27.4025 25.5 27.6992C25.5003 27.8963 25.4616 28.0914 25.3864 28.2736C25.3111 28.4557 25.2006 28.6211 25.0612 28.7605C24.9219 28.8998 24.7564 29.0103 24.5743 29.0856C24.3922 29.1609 24.1971 29.1995 24 29.1992Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756321246236_import.svg
===================================================================
--- uploads/1756321246236_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756321429270_message-question.svg
===================================================================
--- uploads/1756321429270_message-question.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M16.0009 44.6397C15.4215 44.6381 14.8513 44.4939 14.3409 44.2197C13.7835 43.9217 13.3178 43.4775 12.9937 42.9349C12.6695 42.3923 12.4992 41.7718 12.5009 41.1397V38.2997C9.66538 38.0984 7.02403 36.7857 5.15134 34.6471C3.27865 32.5085 2.32611 29.717 2.50089 26.8797V14.8797C2.41165 13.3462 2.64799 11.8111 3.19435 10.3754C3.74071 8.93976 4.58474 7.63597 5.67094 6.54976C6.75715 5.46356 8.06094 4.61953 9.49662 4.07317C10.9323 3.52681 12.4674 3.29048 14.0009 3.37971H34.0009C35.5344 3.29048 37.0695 3.52681 38.5052 4.07317C39.9408 4.61953 41.2446 5.46356 42.3308 6.54976C43.417 7.63597 44.2611 8.93976 44.8074 10.3754C45.3538 11.8111 45.5901 13.3462 45.5009 14.8797V26.8797C45.5901 28.4132 45.3538 29.9483 44.8074 31.384C44.2611 32.8197 43.417 34.1235 42.3308 35.2097C41.2446 36.2959 39.9408 37.1399 38.5052 37.6863C37.0695 38.2326 35.5344 38.4689 34.0009 38.3797H26.4609L17.9409 44.0597C17.3641 44.4371 16.6901 44.6386 16.0009 44.6397ZM14.0009 6.35971C12.8644 6.28092 11.7241 6.44676 10.6571 6.84606C9.59013 7.24536 8.62117 7.86882 7.81558 8.67441C7.01 9.47999 6.38654 10.449 5.98724 11.516C5.58794 12.583 5.4221 13.7232 5.50089 14.8597V26.8597C5.4221 27.9963 5.58794 29.1365 5.98724 30.2035C6.38654 31.2705 7.01 32.2394 7.81558 33.045C8.62117 33.8506 9.59013 34.4741 10.6571 34.8734C11.7241 35.2727 12.8644 35.4385 14.0009 35.3597C14.3979 35.3623 14.7779 35.5212 15.0587 35.8019C15.3394 36.0827 15.4983 36.4627 15.5009 36.8597V41.1197C15.5012 41.2104 15.526 41.2994 15.5726 41.3772C15.6193 41.455 15.6861 41.5188 15.7659 41.5618C15.8458 41.6048 15.9358 41.6254 16.0264 41.6215C16.1171 41.6177 16.205 41.5894 16.2809 41.5397L25.1809 35.6197C25.4297 35.4534 25.7216 35.363 26.0209 35.3597H34.0209C35.1574 35.4385 36.2976 35.2727 37.3646 34.8734C38.4316 34.4741 39.4006 33.8506 40.2062 33.045C41.0118 32.2394 41.6352 31.2705 42.0345 30.2035C42.4338 29.1365 42.5997 27.9963 42.5209 26.8597V14.8597C42.5997 13.7232 42.4338 12.583 42.0345 11.516C41.6352 10.449 41.0118 9.47999 40.2062 8.67441C39.4006 7.86882 38.4316 7.24536 37.3646 6.84606C36.2976 6.44676 35.1574 6.28092 34.0209 6.35971H14.0009Z" fill="#1D79BE"/>
-<path d="M23.9997 24.2207C23.6027 24.2181 23.2227 24.0592 22.9419 23.7785C22.6612 23.4977 22.5023 23.1177 22.4997 22.7207V22.3007C22.5235 21.5048 22.7511 20.7282 23.1608 20.0454C23.5705 19.3626 24.1486 18.7963 24.8397 18.4007C25.5797 17.9007 25.8197 17.5607 25.8197 17.0407C25.8197 16.8017 25.7726 16.565 25.6811 16.3442C25.5897 16.1234 25.4556 15.9228 25.2866 15.7538C25.1176 15.5848 24.917 15.4507 24.6962 15.3592C24.4754 15.2678 24.2387 15.2207 23.9997 15.2207C23.7607 15.2207 23.524 15.2678 23.3032 15.3592C23.0824 15.4507 22.8818 15.5848 22.7128 15.7538C22.5438 15.9228 22.4097 16.1234 22.3182 16.3442C22.2268 16.565 22.1797 16.8017 22.1797 17.0407C22.1771 17.4377 22.0182 17.8177 21.7375 18.0985C21.4567 18.3792 21.0767 18.5381 20.6797 18.5407C20.2827 18.5381 19.9027 18.3792 19.6219 18.0985C19.3412 17.8177 19.1823 17.4377 19.1797 17.0407C19.1797 15.7624 19.6875 14.5364 20.5914 13.6324C21.4954 12.7285 22.7213 12.2207 23.9997 12.2207C25.278 12.2207 26.504 12.7285 27.4079 13.6324C28.3119 14.5364 28.8197 15.7624 28.8197 17.0407C28.7961 17.8239 28.5724 18.588 28.1697 19.2602C27.7671 19.9324 27.1991 20.4903 26.5197 20.8807C25.7397 21.4007 25.4997 21.7407 25.4997 22.3007V22.7207C25.5 22.9178 25.4613 23.1129 25.386 23.295C25.3108 23.4771 25.2003 23.6426 25.0609 23.7819C24.9216 23.9213 24.7561 24.0318 24.574 24.1071C24.3919 24.1823 24.1967 24.221 23.9997 24.2207Z" fill="#1D79BE"/>
-<path d="M24 29.1992C23.7033 29.1992 23.4133 29.1112 23.1666 28.9464C22.92 28.7816 22.7277 28.5473 22.6142 28.2732C22.5006 27.9992 22.4709 27.6976 22.5288 27.4066C22.5867 27.1156 22.7296 26.8483 22.9393 26.6386C23.1491 26.4288 23.4164 26.2859 23.7074 26.228C23.9983 26.1702 24.2999 26.1999 24.574 26.3134C24.8481 26.4269 25.0824 26.6192 25.2472 26.8659C25.412 27.1125 25.5 27.4025 25.5 27.6992C25.5003 27.8963 25.4616 28.0914 25.3864 28.2736C25.3111 28.4557 25.2006 28.6211 25.0612 28.7605C24.9219 28.8998 24.7564 29.0103 24.5743 29.0856C24.3922 29.1609 24.1971 29.1995 24 29.1992Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756321429275_message-question.svg
===================================================================
--- uploads/1756321429275_message-question.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M16.0009 44.6397C15.4215 44.6381 14.8513 44.4939 14.3409 44.2197C13.7835 43.9217 13.3178 43.4775 12.9937 42.9349C12.6695 42.3923 12.4992 41.7718 12.5009 41.1397V38.2997C9.66538 38.0984 7.02403 36.7857 5.15134 34.6471C3.27865 32.5085 2.32611 29.717 2.50089 26.8797V14.8797C2.41165 13.3462 2.64799 11.8111 3.19435 10.3754C3.74071 8.93976 4.58474 7.63597 5.67094 6.54976C6.75715 5.46356 8.06094 4.61953 9.49662 4.07317C10.9323 3.52681 12.4674 3.29048 14.0009 3.37971H34.0009C35.5344 3.29048 37.0695 3.52681 38.5052 4.07317C39.9408 4.61953 41.2446 5.46356 42.3308 6.54976C43.417 7.63597 44.2611 8.93976 44.8074 10.3754C45.3538 11.8111 45.5901 13.3462 45.5009 14.8797V26.8797C45.5901 28.4132 45.3538 29.9483 44.8074 31.384C44.2611 32.8197 43.417 34.1235 42.3308 35.2097C41.2446 36.2959 39.9408 37.1399 38.5052 37.6863C37.0695 38.2326 35.5344 38.4689 34.0009 38.3797H26.4609L17.9409 44.0597C17.3641 44.4371 16.6901 44.6386 16.0009 44.6397ZM14.0009 6.35971C12.8644 6.28092 11.7241 6.44676 10.6571 6.84606C9.59013 7.24536 8.62117 7.86882 7.81558 8.67441C7.01 9.47999 6.38654 10.449 5.98724 11.516C5.58794 12.583 5.4221 13.7232 5.50089 14.8597V26.8597C5.4221 27.9963 5.58794 29.1365 5.98724 30.2035C6.38654 31.2705 7.01 32.2394 7.81558 33.045C8.62117 33.8506 9.59013 34.4741 10.6571 34.8734C11.7241 35.2727 12.8644 35.4385 14.0009 35.3597C14.3979 35.3623 14.7779 35.5212 15.0587 35.8019C15.3394 36.0827 15.4983 36.4627 15.5009 36.8597V41.1197C15.5012 41.2104 15.526 41.2994 15.5726 41.3772C15.6193 41.455 15.6861 41.5188 15.7659 41.5618C15.8458 41.6048 15.9358 41.6254 16.0264 41.6215C16.1171 41.6177 16.205 41.5894 16.2809 41.5397L25.1809 35.6197C25.4297 35.4534 25.7216 35.363 26.0209 35.3597H34.0209C35.1574 35.4385 36.2976 35.2727 37.3646 34.8734C38.4316 34.4741 39.4006 33.8506 40.2062 33.045C41.0118 32.2394 41.6352 31.2705 42.0345 30.2035C42.4338 29.1365 42.5997 27.9963 42.5209 26.8597V14.8597C42.5997 13.7232 42.4338 12.583 42.0345 11.516C41.6352 10.449 41.0118 9.47999 40.2062 8.67441C39.4006 7.86882 38.4316 7.24536 37.3646 6.84606C36.2976 6.44676 35.1574 6.28092 34.0209 6.35971H14.0009Z" fill="#1D79BE"/>
-<path d="M23.9997 24.2207C23.6027 24.2181 23.2227 24.0592 22.9419 23.7785C22.6612 23.4977 22.5023 23.1177 22.4997 22.7207V22.3007C22.5235 21.5048 22.7511 20.7282 23.1608 20.0454C23.5705 19.3626 24.1486 18.7963 24.8397 18.4007C25.5797 17.9007 25.8197 17.5607 25.8197 17.0407C25.8197 16.8017 25.7726 16.565 25.6811 16.3442C25.5897 16.1234 25.4556 15.9228 25.2866 15.7538C25.1176 15.5848 24.917 15.4507 24.6962 15.3592C24.4754 15.2678 24.2387 15.2207 23.9997 15.2207C23.7607 15.2207 23.524 15.2678 23.3032 15.3592C23.0824 15.4507 22.8818 15.5848 22.7128 15.7538C22.5438 15.9228 22.4097 16.1234 22.3182 16.3442C22.2268 16.565 22.1797 16.8017 22.1797 17.0407C22.1771 17.4377 22.0182 17.8177 21.7375 18.0985C21.4567 18.3792 21.0767 18.5381 20.6797 18.5407C20.2827 18.5381 19.9027 18.3792 19.6219 18.0985C19.3412 17.8177 19.1823 17.4377 19.1797 17.0407C19.1797 15.7624 19.6875 14.5364 20.5914 13.6324C21.4954 12.7285 22.7213 12.2207 23.9997 12.2207C25.278 12.2207 26.504 12.7285 27.4079 13.6324C28.3119 14.5364 28.8197 15.7624 28.8197 17.0407C28.7961 17.8239 28.5724 18.588 28.1697 19.2602C27.7671 19.9324 27.1991 20.4903 26.5197 20.8807C25.7397 21.4007 25.4997 21.7407 25.4997 22.3007V22.7207C25.5 22.9178 25.4613 23.1129 25.386 23.295C25.3108 23.4771 25.2003 23.6426 25.0609 23.7819C24.9216 23.9213 24.7561 24.0318 24.574 24.1071C24.3919 24.1823 24.1967 24.221 23.9997 24.2207Z" fill="#1D79BE"/>
-<path d="M24 29.1992C23.7033 29.1992 23.4133 29.1112 23.1666 28.9464C22.92 28.7816 22.7277 28.5473 22.6142 28.2732C22.5006 27.9992 22.4709 27.6976 22.5288 27.4066C22.5867 27.1156 22.7296 26.8483 22.9393 26.6386C23.1491 26.4288 23.4164 26.2859 23.7074 26.228C23.9983 26.1702 24.2999 26.1999 24.574 26.3134C24.8481 26.4269 25.0824 26.6192 25.2472 26.8659C25.412 27.1125 25.5 27.4025 25.5 27.6992C25.5003 27.8963 25.4616 28.0914 25.3864 28.2736C25.3111 28.4557 25.2006 28.6211 25.0612 28.7605C24.9219 28.8998 24.7564 29.0103 24.5743 29.0856C24.3922 29.1609 24.1971 29.1995 24 29.1992Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756321429279_import.svg
===================================================================
--- uploads/1756321429279_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756321429283_message-question-white.svg
===================================================================
--- uploads/1756321429283_message-question-white.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M6.66696 18.5999C6.42553 18.5992 6.18798 18.5391 5.97529 18.4249C5.74306 18.3007 5.54901 18.1157 5.41395 17.8896C5.27889 17.6635 5.20791 17.4049 5.20862 17.1416V15.9582C4.02716 15.8744 2.9266 15.3274 2.14631 14.4363C1.36602 13.5452 0.96913 12.3821 1.04196 11.1999V6.1999C1.00477 5.56093 1.10325 4.92132 1.3309 4.32312C1.55855 3.72492 1.91023 3.18167 2.36281 2.72909C2.8154 2.2765 3.35864 1.92483 3.95684 1.69717C4.55504 1.46952 5.19465 1.37105 5.83362 1.40823H14.167C14.8059 1.37105 15.4455 1.46952 16.0437 1.69717C16.6419 1.92483 17.1852 2.2765 17.6378 2.72909C18.0904 3.18167 18.442 3.72492 18.6697 4.32312C18.8973 4.92132 18.9958 5.56093 18.9586 6.1999V11.1999C18.9958 11.8389 18.8973 12.4785 18.6697 13.0767C18.442 13.6749 18.0904 14.2181 17.6378 14.6707C17.1852 15.1233 16.6419 15.475 16.0437 15.7026C15.4455 15.9303 14.8059 16.0287 14.167 15.9916H11.0253L7.47529 18.3582C7.23498 18.5155 6.95413 18.5994 6.66696 18.5999ZM5.83362 2.6499C5.36007 2.61707 4.88497 2.68617 4.44039 2.85255C3.99581 3.01892 3.59207 3.2787 3.25641 3.61436C2.92075 3.95002 2.66098 4.35375 2.4946 4.79833C2.32823 5.24292 2.25913 5.71801 2.29196 6.19157V11.1916C2.25913 11.6651 2.32823 12.1402 2.4946 12.5848C2.66098 13.0294 2.92075 13.4331 3.25641 13.7688C3.59207 14.1044 3.99581 14.3642 4.44039 14.5306C4.88497 14.697 5.36007 14.7661 5.83362 14.7332C5.99905 14.7343 6.15738 14.8005 6.27436 14.9175C6.39133 15.0345 6.45753 15.1928 6.45862 15.3582V17.1332C6.45875 17.171 6.46908 17.2081 6.48852 17.2405C6.50795 17.2729 6.53578 17.2995 6.56906 17.3174C6.60234 17.3353 6.63984 17.3439 6.67761 17.3423C6.71537 17.3407 6.752 17.3289 6.78362 17.3082L10.492 14.8416C10.5956 14.7723 10.7172 14.7346 10.842 14.7332H14.1753C14.6488 14.7661 15.1239 14.697 15.5685 14.5306C16.0131 14.3642 16.4168 14.1044 16.7525 13.7688C17.0882 13.4331 17.3479 13.0294 17.5143 12.5848C17.6807 12.1402 17.7498 11.6651 17.717 11.1916V6.19157C17.7498 5.71801 17.6807 5.24292 17.5143 4.79833C17.3479 4.35375 17.0882 3.95002 16.7525 3.61436C16.4168 3.2787 16.0131 3.01892 15.5685 2.85255C15.1239 2.68617 14.6488 2.61707 14.1753 2.6499H5.83362Z" fill="white"/>
-<path d="M9.99979 10.092C9.83437 10.0909 9.67603 10.0247 9.55905 9.90772C9.44208 9.79074 9.37588 9.6324 9.37479 9.46698V9.29198C9.38471 8.96033 9.47956 8.63678 9.65027 8.35227C9.82097 8.06775 10.0618 7.8318 10.3498 7.66698C10.6581 7.45865 10.7581 7.31698 10.7581 7.10031C10.7581 7.00073 10.7385 6.90212 10.7004 6.81011C10.6623 6.71811 10.6064 6.63451 10.536 6.56409C10.4656 6.49367 10.382 6.43781 10.29 6.3997C10.198 6.36159 10.0994 6.34198 9.99979 6.34198C9.9002 6.34198 9.80159 6.36159 9.70959 6.3997C9.61758 6.43781 9.53398 6.49367 9.46357 6.56409C9.39315 6.63451 9.33729 6.71811 9.29918 6.81011C9.26107 6.90212 9.24146 7.00073 9.24146 7.10031C9.24036 7.26574 9.17416 7.42407 9.05719 7.54105C8.94022 7.65802 8.78188 7.72422 8.61646 7.72531C8.45103 7.72422 8.29269 7.65802 8.17572 7.54105C8.05875 7.42407 7.99255 7.26574 7.99146 7.10031C7.99146 6.56767 8.20305 6.05684 8.57968 5.68021C8.95632 5.30357 9.46715 5.09198 9.99979 5.09198C10.5324 5.09198 11.0433 5.30357 11.4199 5.68021C11.7965 6.05684 12.0081 6.56767 12.0081 7.10031C11.9983 7.42665 11.9051 7.74503 11.7373 8.02511C11.5696 8.3052 11.3329 8.53765 11.0498 8.70031C10.7248 8.91698 10.6248 9.05865 10.6248 9.29198V9.46698C10.6249 9.54909 10.6088 9.63041 10.5774 9.70629C10.5461 9.78217 10.5 9.85111 10.442 9.90917C10.3839 9.96723 10.315 10.0133 10.2391 10.0446C10.1632 10.076 10.0819 10.0921 9.99979 10.092Z" fill="white"/>
-<path d="M10 12.1663C9.87639 12.1663 9.75555 12.1297 9.65277 12.061C9.54999 11.9923 9.46988 11.8947 9.42258 11.7805C9.37527 11.6663 9.36289 11.5406 9.38701 11.4194C9.41113 11.2982 9.47065 11.1868 9.55806 11.0994C9.64547 11.012 9.75683 10.9524 9.87807 10.9283C9.99931 10.9042 10.125 10.9166 10.2392 10.9639C10.3534 11.0112 10.451 11.0913 10.5197 11.1941C10.5883 11.2969 10.625 11.4177 10.625 11.5413C10.6251 11.6234 10.609 11.7048 10.5776 11.7806C10.5463 11.8565 10.5002 11.9254 10.4422 11.9835C10.3841 12.0416 10.3152 12.0876 10.2393 12.119C10.1634 12.1503 10.0821 12.1664 10 12.1663Z" fill="white"/>
-</svg>
Index: loads/1756321429288_import.svg
===================================================================
--- uploads/1756321429288_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756321564773_import.svg
===================================================================
--- uploads/1756321564773_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756321564783_message-question-white.svg
===================================================================
--- uploads/1756321564783_message-question-white.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M6.66696 18.5999C6.42553 18.5992 6.18798 18.5391 5.97529 18.4249C5.74306 18.3007 5.54901 18.1157 5.41395 17.8896C5.27889 17.6635 5.20791 17.4049 5.20862 17.1416V15.9582C4.02716 15.8744 2.9266 15.3274 2.14631 14.4363C1.36602 13.5452 0.96913 12.3821 1.04196 11.1999V6.1999C1.00477 5.56093 1.10325 4.92132 1.3309 4.32312C1.55855 3.72492 1.91023 3.18167 2.36281 2.72909C2.8154 2.2765 3.35864 1.92483 3.95684 1.69717C4.55504 1.46952 5.19465 1.37105 5.83362 1.40823H14.167C14.8059 1.37105 15.4455 1.46952 16.0437 1.69717C16.6419 1.92483 17.1852 2.2765 17.6378 2.72909C18.0904 3.18167 18.442 3.72492 18.6697 4.32312C18.8973 4.92132 18.9958 5.56093 18.9586 6.1999V11.1999C18.9958 11.8389 18.8973 12.4785 18.6697 13.0767C18.442 13.6749 18.0904 14.2181 17.6378 14.6707C17.1852 15.1233 16.6419 15.475 16.0437 15.7026C15.4455 15.9303 14.8059 16.0287 14.167 15.9916H11.0253L7.47529 18.3582C7.23498 18.5155 6.95413 18.5994 6.66696 18.5999ZM5.83362 2.6499C5.36007 2.61707 4.88497 2.68617 4.44039 2.85255C3.99581 3.01892 3.59207 3.2787 3.25641 3.61436C2.92075 3.95002 2.66098 4.35375 2.4946 4.79833C2.32823 5.24292 2.25913 5.71801 2.29196 6.19157V11.1916C2.25913 11.6651 2.32823 12.1402 2.4946 12.5848C2.66098 13.0294 2.92075 13.4331 3.25641 13.7688C3.59207 14.1044 3.99581 14.3642 4.44039 14.5306C4.88497 14.697 5.36007 14.7661 5.83362 14.7332C5.99905 14.7343 6.15738 14.8005 6.27436 14.9175C6.39133 15.0345 6.45753 15.1928 6.45862 15.3582V17.1332C6.45875 17.171 6.46908 17.2081 6.48852 17.2405C6.50795 17.2729 6.53578 17.2995 6.56906 17.3174C6.60234 17.3353 6.63984 17.3439 6.67761 17.3423C6.71537 17.3407 6.752 17.3289 6.78362 17.3082L10.492 14.8416C10.5956 14.7723 10.7172 14.7346 10.842 14.7332H14.1753C14.6488 14.7661 15.1239 14.697 15.5685 14.5306C16.0131 14.3642 16.4168 14.1044 16.7525 13.7688C17.0882 13.4331 17.3479 13.0294 17.5143 12.5848C17.6807 12.1402 17.7498 11.6651 17.717 11.1916V6.19157C17.7498 5.71801 17.6807 5.24292 17.5143 4.79833C17.3479 4.35375 17.0882 3.95002 16.7525 3.61436C16.4168 3.2787 16.0131 3.01892 15.5685 2.85255C15.1239 2.68617 14.6488 2.61707 14.1753 2.6499H5.83362Z" fill="white"/>
-<path d="M9.99979 10.092C9.83437 10.0909 9.67603 10.0247 9.55905 9.90772C9.44208 9.79074 9.37588 9.6324 9.37479 9.46698V9.29198C9.38471 8.96033 9.47956 8.63678 9.65027 8.35227C9.82097 8.06775 10.0618 7.8318 10.3498 7.66698C10.6581 7.45865 10.7581 7.31698 10.7581 7.10031C10.7581 7.00073 10.7385 6.90212 10.7004 6.81011C10.6623 6.71811 10.6064 6.63451 10.536 6.56409C10.4656 6.49367 10.382 6.43781 10.29 6.3997C10.198 6.36159 10.0994 6.34198 9.99979 6.34198C9.9002 6.34198 9.80159 6.36159 9.70959 6.3997C9.61758 6.43781 9.53398 6.49367 9.46357 6.56409C9.39315 6.63451 9.33729 6.71811 9.29918 6.81011C9.26107 6.90212 9.24146 7.00073 9.24146 7.10031C9.24036 7.26574 9.17416 7.42407 9.05719 7.54105C8.94022 7.65802 8.78188 7.72422 8.61646 7.72531C8.45103 7.72422 8.29269 7.65802 8.17572 7.54105C8.05875 7.42407 7.99255 7.26574 7.99146 7.10031C7.99146 6.56767 8.20305 6.05684 8.57968 5.68021C8.95632 5.30357 9.46715 5.09198 9.99979 5.09198C10.5324 5.09198 11.0433 5.30357 11.4199 5.68021C11.7965 6.05684 12.0081 6.56767 12.0081 7.10031C11.9983 7.42665 11.9051 7.74503 11.7373 8.02511C11.5696 8.3052 11.3329 8.53765 11.0498 8.70031C10.7248 8.91698 10.6248 9.05865 10.6248 9.29198V9.46698C10.6249 9.54909 10.6088 9.63041 10.5774 9.70629C10.5461 9.78217 10.5 9.85111 10.442 9.90917C10.3839 9.96723 10.315 10.0133 10.2391 10.0446C10.1632 10.076 10.0819 10.0921 9.99979 10.092Z" fill="white"/>
-<path d="M10 12.1663C9.87639 12.1663 9.75555 12.1297 9.65277 12.061C9.54999 11.9923 9.46988 11.8947 9.42258 11.7805C9.37527 11.6663 9.36289 11.5406 9.38701 11.4194C9.41113 11.2982 9.47065 11.1868 9.55806 11.0994C9.64547 11.012 9.75683 10.9524 9.87807 10.9283C9.99931 10.9042 10.125 10.9166 10.2392 10.9639C10.3534 11.0112 10.451 11.0913 10.5197 11.1941C10.5883 11.2969 10.625 11.4177 10.625 11.5413C10.6251 11.6234 10.609 11.7048 10.5776 11.7806C10.5463 11.8565 10.5002 11.9254 10.4422 11.9835C10.3841 12.0416 10.3152 12.0876 10.2393 12.119C10.1634 12.1503 10.0821 12.1664 10 12.1663Z" fill="white"/>
-</svg>
Index: loads/1756321564788_import.svg
===================================================================
--- uploads/1756321564788_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756321564792_message-question.svg
===================================================================
--- uploads/1756321564792_message-question.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M16.0009 44.6397C15.4215 44.6381 14.8513 44.4939 14.3409 44.2197C13.7835 43.9217 13.3178 43.4775 12.9937 42.9349C12.6695 42.3923 12.4992 41.7718 12.5009 41.1397V38.2997C9.66538 38.0984 7.02403 36.7857 5.15134 34.6471C3.27865 32.5085 2.32611 29.717 2.50089 26.8797V14.8797C2.41165 13.3462 2.64799 11.8111 3.19435 10.3754C3.74071 8.93976 4.58474 7.63597 5.67094 6.54976C6.75715 5.46356 8.06094 4.61953 9.49662 4.07317C10.9323 3.52681 12.4674 3.29048 14.0009 3.37971H34.0009C35.5344 3.29048 37.0695 3.52681 38.5052 4.07317C39.9408 4.61953 41.2446 5.46356 42.3308 6.54976C43.417 7.63597 44.2611 8.93976 44.8074 10.3754C45.3538 11.8111 45.5901 13.3462 45.5009 14.8797V26.8797C45.5901 28.4132 45.3538 29.9483 44.8074 31.384C44.2611 32.8197 43.417 34.1235 42.3308 35.2097C41.2446 36.2959 39.9408 37.1399 38.5052 37.6863C37.0695 38.2326 35.5344 38.4689 34.0009 38.3797H26.4609L17.9409 44.0597C17.3641 44.4371 16.6901 44.6386 16.0009 44.6397ZM14.0009 6.35971C12.8644 6.28092 11.7241 6.44676 10.6571 6.84606C9.59013 7.24536 8.62117 7.86882 7.81558 8.67441C7.01 9.47999 6.38654 10.449 5.98724 11.516C5.58794 12.583 5.4221 13.7232 5.50089 14.8597V26.8597C5.4221 27.9963 5.58794 29.1365 5.98724 30.2035C6.38654 31.2705 7.01 32.2394 7.81558 33.045C8.62117 33.8506 9.59013 34.4741 10.6571 34.8734C11.7241 35.2727 12.8644 35.4385 14.0009 35.3597C14.3979 35.3623 14.7779 35.5212 15.0587 35.8019C15.3394 36.0827 15.4983 36.4627 15.5009 36.8597V41.1197C15.5012 41.2104 15.526 41.2994 15.5726 41.3772C15.6193 41.455 15.6861 41.5188 15.7659 41.5618C15.8458 41.6048 15.9358 41.6254 16.0264 41.6215C16.1171 41.6177 16.205 41.5894 16.2809 41.5397L25.1809 35.6197C25.4297 35.4534 25.7216 35.363 26.0209 35.3597H34.0209C35.1574 35.4385 36.2976 35.2727 37.3646 34.8734C38.4316 34.4741 39.4006 33.8506 40.2062 33.045C41.0118 32.2394 41.6352 31.2705 42.0345 30.2035C42.4338 29.1365 42.5997 27.9963 42.5209 26.8597V14.8597C42.5997 13.7232 42.4338 12.583 42.0345 11.516C41.6352 10.449 41.0118 9.47999 40.2062 8.67441C39.4006 7.86882 38.4316 7.24536 37.3646 6.84606C36.2976 6.44676 35.1574 6.28092 34.0209 6.35971H14.0009Z" fill="#1D79BE"/>
-<path d="M23.9997 24.2207C23.6027 24.2181 23.2227 24.0592 22.9419 23.7785C22.6612 23.4977 22.5023 23.1177 22.4997 22.7207V22.3007C22.5235 21.5048 22.7511 20.7282 23.1608 20.0454C23.5705 19.3626 24.1486 18.7963 24.8397 18.4007C25.5797 17.9007 25.8197 17.5607 25.8197 17.0407C25.8197 16.8017 25.7726 16.565 25.6811 16.3442C25.5897 16.1234 25.4556 15.9228 25.2866 15.7538C25.1176 15.5848 24.917 15.4507 24.6962 15.3592C24.4754 15.2678 24.2387 15.2207 23.9997 15.2207C23.7607 15.2207 23.524 15.2678 23.3032 15.3592C23.0824 15.4507 22.8818 15.5848 22.7128 15.7538C22.5438 15.9228 22.4097 16.1234 22.3182 16.3442C22.2268 16.565 22.1797 16.8017 22.1797 17.0407C22.1771 17.4377 22.0182 17.8177 21.7375 18.0985C21.4567 18.3792 21.0767 18.5381 20.6797 18.5407C20.2827 18.5381 19.9027 18.3792 19.6219 18.0985C19.3412 17.8177 19.1823 17.4377 19.1797 17.0407C19.1797 15.7624 19.6875 14.5364 20.5914 13.6324C21.4954 12.7285 22.7213 12.2207 23.9997 12.2207C25.278 12.2207 26.504 12.7285 27.4079 13.6324C28.3119 14.5364 28.8197 15.7624 28.8197 17.0407C28.7961 17.8239 28.5724 18.588 28.1697 19.2602C27.7671 19.9324 27.1991 20.4903 26.5197 20.8807C25.7397 21.4007 25.4997 21.7407 25.4997 22.3007V22.7207C25.5 22.9178 25.4613 23.1129 25.386 23.295C25.3108 23.4771 25.2003 23.6426 25.0609 23.7819C24.9216 23.9213 24.7561 24.0318 24.574 24.1071C24.3919 24.1823 24.1967 24.221 23.9997 24.2207Z" fill="#1D79BE"/>
-<path d="M24 29.1992C23.7033 29.1992 23.4133 29.1112 23.1666 28.9464C22.92 28.7816 22.7277 28.5473 22.6142 28.2732C22.5006 27.9992 22.4709 27.6976 22.5288 27.4066C22.5867 27.1156 22.7296 26.8483 22.9393 26.6386C23.1491 26.4288 23.4164 26.2859 23.7074 26.228C23.9983 26.1702 24.2999 26.1999 24.574 26.3134C24.8481 26.4269 25.0824 26.6192 25.2472 26.8659C25.412 27.1125 25.5 27.4025 25.5 27.6992C25.5003 27.8963 25.4616 28.0914 25.3864 28.2736C25.3111 28.4557 25.2006 28.6211 25.0612 28.7605C24.9219 28.8998 24.7564 29.0103 24.5743 29.0856C24.3922 29.1609 24.1971 29.1995 24 29.1992Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756321564798_message-question.svg
===================================================================
--- uploads/1756321564798_message-question.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M16.0009 44.6397C15.4215 44.6381 14.8513 44.4939 14.3409 44.2197C13.7835 43.9217 13.3178 43.4775 12.9937 42.9349C12.6695 42.3923 12.4992 41.7718 12.5009 41.1397V38.2997C9.66538 38.0984 7.02403 36.7857 5.15134 34.6471C3.27865 32.5085 2.32611 29.717 2.50089 26.8797V14.8797C2.41165 13.3462 2.64799 11.8111 3.19435 10.3754C3.74071 8.93976 4.58474 7.63597 5.67094 6.54976C6.75715 5.46356 8.06094 4.61953 9.49662 4.07317C10.9323 3.52681 12.4674 3.29048 14.0009 3.37971H34.0009C35.5344 3.29048 37.0695 3.52681 38.5052 4.07317C39.9408 4.61953 41.2446 5.46356 42.3308 6.54976C43.417 7.63597 44.2611 8.93976 44.8074 10.3754C45.3538 11.8111 45.5901 13.3462 45.5009 14.8797V26.8797C45.5901 28.4132 45.3538 29.9483 44.8074 31.384C44.2611 32.8197 43.417 34.1235 42.3308 35.2097C41.2446 36.2959 39.9408 37.1399 38.5052 37.6863C37.0695 38.2326 35.5344 38.4689 34.0009 38.3797H26.4609L17.9409 44.0597C17.3641 44.4371 16.6901 44.6386 16.0009 44.6397ZM14.0009 6.35971C12.8644 6.28092 11.7241 6.44676 10.6571 6.84606C9.59013 7.24536 8.62117 7.86882 7.81558 8.67441C7.01 9.47999 6.38654 10.449 5.98724 11.516C5.58794 12.583 5.4221 13.7232 5.50089 14.8597V26.8597C5.4221 27.9963 5.58794 29.1365 5.98724 30.2035C6.38654 31.2705 7.01 32.2394 7.81558 33.045C8.62117 33.8506 9.59013 34.4741 10.6571 34.8734C11.7241 35.2727 12.8644 35.4385 14.0009 35.3597C14.3979 35.3623 14.7779 35.5212 15.0587 35.8019C15.3394 36.0827 15.4983 36.4627 15.5009 36.8597V41.1197C15.5012 41.2104 15.526 41.2994 15.5726 41.3772C15.6193 41.455 15.6861 41.5188 15.7659 41.5618C15.8458 41.6048 15.9358 41.6254 16.0264 41.6215C16.1171 41.6177 16.205 41.5894 16.2809 41.5397L25.1809 35.6197C25.4297 35.4534 25.7216 35.363 26.0209 35.3597H34.0209C35.1574 35.4385 36.2976 35.2727 37.3646 34.8734C38.4316 34.4741 39.4006 33.8506 40.2062 33.045C41.0118 32.2394 41.6352 31.2705 42.0345 30.2035C42.4338 29.1365 42.5997 27.9963 42.5209 26.8597V14.8597C42.5997 13.7232 42.4338 12.583 42.0345 11.516C41.6352 10.449 41.0118 9.47999 40.2062 8.67441C39.4006 7.86882 38.4316 7.24536 37.3646 6.84606C36.2976 6.44676 35.1574 6.28092 34.0209 6.35971H14.0009Z" fill="#1D79BE"/>
-<path d="M23.9997 24.2207C23.6027 24.2181 23.2227 24.0592 22.9419 23.7785C22.6612 23.4977 22.5023 23.1177 22.4997 22.7207V22.3007C22.5235 21.5048 22.7511 20.7282 23.1608 20.0454C23.5705 19.3626 24.1486 18.7963 24.8397 18.4007C25.5797 17.9007 25.8197 17.5607 25.8197 17.0407C25.8197 16.8017 25.7726 16.565 25.6811 16.3442C25.5897 16.1234 25.4556 15.9228 25.2866 15.7538C25.1176 15.5848 24.917 15.4507 24.6962 15.3592C24.4754 15.2678 24.2387 15.2207 23.9997 15.2207C23.7607 15.2207 23.524 15.2678 23.3032 15.3592C23.0824 15.4507 22.8818 15.5848 22.7128 15.7538C22.5438 15.9228 22.4097 16.1234 22.3182 16.3442C22.2268 16.565 22.1797 16.8017 22.1797 17.0407C22.1771 17.4377 22.0182 17.8177 21.7375 18.0985C21.4567 18.3792 21.0767 18.5381 20.6797 18.5407C20.2827 18.5381 19.9027 18.3792 19.6219 18.0985C19.3412 17.8177 19.1823 17.4377 19.1797 17.0407C19.1797 15.7624 19.6875 14.5364 20.5914 13.6324C21.4954 12.7285 22.7213 12.2207 23.9997 12.2207C25.278 12.2207 26.504 12.7285 27.4079 13.6324C28.3119 14.5364 28.8197 15.7624 28.8197 17.0407C28.7961 17.8239 28.5724 18.588 28.1697 19.2602C27.7671 19.9324 27.1991 20.4903 26.5197 20.8807C25.7397 21.4007 25.4997 21.7407 25.4997 22.3007V22.7207C25.5 22.9178 25.4613 23.1129 25.386 23.295C25.3108 23.4771 25.2003 23.6426 25.0609 23.7819C24.9216 23.9213 24.7561 24.0318 24.574 24.1071C24.3919 24.1823 24.1967 24.221 23.9997 24.2207Z" fill="#1D79BE"/>
-<path d="M24 29.1992C23.7033 29.1992 23.4133 29.1112 23.1666 28.9464C22.92 28.7816 22.7277 28.5473 22.6142 28.2732C22.5006 27.9992 22.4709 27.6976 22.5288 27.4066C22.5867 27.1156 22.7296 26.8483 22.9393 26.6386C23.1491 26.4288 23.4164 26.2859 23.7074 26.228C23.9983 26.1702 24.2999 26.1999 24.574 26.3134C24.8481 26.4269 25.0824 26.6192 25.2472 26.8659C25.412 27.1125 25.5 27.4025 25.5 27.6992C25.5003 27.8963 25.4616 28.0914 25.3864 28.2736C25.3111 28.4557 25.2006 28.6211 25.0612 28.7605C24.9219 28.8998 24.7564 29.0103 24.5743 29.0856C24.3922 29.1609 24.1971 29.1995 24 29.1992Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756321975143_import.svg
===================================================================
--- uploads/1756321975143_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756321975151_message-question.svg
===================================================================
--- uploads/1756321975151_message-question.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M16.0009 44.6397C15.4215 44.6381 14.8513 44.4939 14.3409 44.2197C13.7835 43.9217 13.3178 43.4775 12.9937 42.9349C12.6695 42.3923 12.4992 41.7718 12.5009 41.1397V38.2997C9.66538 38.0984 7.02403 36.7857 5.15134 34.6471C3.27865 32.5085 2.32611 29.717 2.50089 26.8797V14.8797C2.41165 13.3462 2.64799 11.8111 3.19435 10.3754C3.74071 8.93976 4.58474 7.63597 5.67094 6.54976C6.75715 5.46356 8.06094 4.61953 9.49662 4.07317C10.9323 3.52681 12.4674 3.29048 14.0009 3.37971H34.0009C35.5344 3.29048 37.0695 3.52681 38.5052 4.07317C39.9408 4.61953 41.2446 5.46356 42.3308 6.54976C43.417 7.63597 44.2611 8.93976 44.8074 10.3754C45.3538 11.8111 45.5901 13.3462 45.5009 14.8797V26.8797C45.5901 28.4132 45.3538 29.9483 44.8074 31.384C44.2611 32.8197 43.417 34.1235 42.3308 35.2097C41.2446 36.2959 39.9408 37.1399 38.5052 37.6863C37.0695 38.2326 35.5344 38.4689 34.0009 38.3797H26.4609L17.9409 44.0597C17.3641 44.4371 16.6901 44.6386 16.0009 44.6397ZM14.0009 6.35971C12.8644 6.28092 11.7241 6.44676 10.6571 6.84606C9.59013 7.24536 8.62117 7.86882 7.81558 8.67441C7.01 9.47999 6.38654 10.449 5.98724 11.516C5.58794 12.583 5.4221 13.7232 5.50089 14.8597V26.8597C5.4221 27.9963 5.58794 29.1365 5.98724 30.2035C6.38654 31.2705 7.01 32.2394 7.81558 33.045C8.62117 33.8506 9.59013 34.4741 10.6571 34.8734C11.7241 35.2727 12.8644 35.4385 14.0009 35.3597C14.3979 35.3623 14.7779 35.5212 15.0587 35.8019C15.3394 36.0827 15.4983 36.4627 15.5009 36.8597V41.1197C15.5012 41.2104 15.526 41.2994 15.5726 41.3772C15.6193 41.455 15.6861 41.5188 15.7659 41.5618C15.8458 41.6048 15.9358 41.6254 16.0264 41.6215C16.1171 41.6177 16.205 41.5894 16.2809 41.5397L25.1809 35.6197C25.4297 35.4534 25.7216 35.363 26.0209 35.3597H34.0209C35.1574 35.4385 36.2976 35.2727 37.3646 34.8734C38.4316 34.4741 39.4006 33.8506 40.2062 33.045C41.0118 32.2394 41.6352 31.2705 42.0345 30.2035C42.4338 29.1365 42.5997 27.9963 42.5209 26.8597V14.8597C42.5997 13.7232 42.4338 12.583 42.0345 11.516C41.6352 10.449 41.0118 9.47999 40.2062 8.67441C39.4006 7.86882 38.4316 7.24536 37.3646 6.84606C36.2976 6.44676 35.1574 6.28092 34.0209 6.35971H14.0009Z" fill="#1D79BE"/>
-<path d="M23.9997 24.2207C23.6027 24.2181 23.2227 24.0592 22.9419 23.7785C22.6612 23.4977 22.5023 23.1177 22.4997 22.7207V22.3007C22.5235 21.5048 22.7511 20.7282 23.1608 20.0454C23.5705 19.3626 24.1486 18.7963 24.8397 18.4007C25.5797 17.9007 25.8197 17.5607 25.8197 17.0407C25.8197 16.8017 25.7726 16.565 25.6811 16.3442C25.5897 16.1234 25.4556 15.9228 25.2866 15.7538C25.1176 15.5848 24.917 15.4507 24.6962 15.3592C24.4754 15.2678 24.2387 15.2207 23.9997 15.2207C23.7607 15.2207 23.524 15.2678 23.3032 15.3592C23.0824 15.4507 22.8818 15.5848 22.7128 15.7538C22.5438 15.9228 22.4097 16.1234 22.3182 16.3442C22.2268 16.565 22.1797 16.8017 22.1797 17.0407C22.1771 17.4377 22.0182 17.8177 21.7375 18.0985C21.4567 18.3792 21.0767 18.5381 20.6797 18.5407C20.2827 18.5381 19.9027 18.3792 19.6219 18.0985C19.3412 17.8177 19.1823 17.4377 19.1797 17.0407C19.1797 15.7624 19.6875 14.5364 20.5914 13.6324C21.4954 12.7285 22.7213 12.2207 23.9997 12.2207C25.278 12.2207 26.504 12.7285 27.4079 13.6324C28.3119 14.5364 28.8197 15.7624 28.8197 17.0407C28.7961 17.8239 28.5724 18.588 28.1697 19.2602C27.7671 19.9324 27.1991 20.4903 26.5197 20.8807C25.7397 21.4007 25.4997 21.7407 25.4997 22.3007V22.7207C25.5 22.9178 25.4613 23.1129 25.386 23.295C25.3108 23.4771 25.2003 23.6426 25.0609 23.7819C24.9216 23.9213 24.7561 24.0318 24.574 24.1071C24.3919 24.1823 24.1967 24.221 23.9997 24.2207Z" fill="#1D79BE"/>
-<path d="M24 29.1992C23.7033 29.1992 23.4133 29.1112 23.1666 28.9464C22.92 28.7816 22.7277 28.5473 22.6142 28.2732C22.5006 27.9992 22.4709 27.6976 22.5288 27.4066C22.5867 27.1156 22.7296 26.8483 22.9393 26.6386C23.1491 26.4288 23.4164 26.2859 23.7074 26.228C23.9983 26.1702 24.2999 26.1999 24.574 26.3134C24.8481 26.4269 25.0824 26.6192 25.2472 26.8659C25.412 27.1125 25.5 27.4025 25.5 27.6992C25.5003 27.8963 25.4616 28.0914 25.3864 28.2736C25.3111 28.4557 25.2006 28.6211 25.0612 28.7605C24.9219 28.8998 24.7564 29.0103 24.5743 29.0856C24.3922 29.1609 24.1971 29.1995 24 29.1992Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756321975157_message-question-white.svg
===================================================================
--- uploads/1756321975157_message-question-white.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M6.66696 18.5999C6.42553 18.5992 6.18798 18.5391 5.97529 18.4249C5.74306 18.3007 5.54901 18.1157 5.41395 17.8896C5.27889 17.6635 5.20791 17.4049 5.20862 17.1416V15.9582C4.02716 15.8744 2.9266 15.3274 2.14631 14.4363C1.36602 13.5452 0.96913 12.3821 1.04196 11.1999V6.1999C1.00477 5.56093 1.10325 4.92132 1.3309 4.32312C1.55855 3.72492 1.91023 3.18167 2.36281 2.72909C2.8154 2.2765 3.35864 1.92483 3.95684 1.69717C4.55504 1.46952 5.19465 1.37105 5.83362 1.40823H14.167C14.8059 1.37105 15.4455 1.46952 16.0437 1.69717C16.6419 1.92483 17.1852 2.2765 17.6378 2.72909C18.0904 3.18167 18.442 3.72492 18.6697 4.32312C18.8973 4.92132 18.9958 5.56093 18.9586 6.1999V11.1999C18.9958 11.8389 18.8973 12.4785 18.6697 13.0767C18.442 13.6749 18.0904 14.2181 17.6378 14.6707C17.1852 15.1233 16.6419 15.475 16.0437 15.7026C15.4455 15.9303 14.8059 16.0287 14.167 15.9916H11.0253L7.47529 18.3582C7.23498 18.5155 6.95413 18.5994 6.66696 18.5999ZM5.83362 2.6499C5.36007 2.61707 4.88497 2.68617 4.44039 2.85255C3.99581 3.01892 3.59207 3.2787 3.25641 3.61436C2.92075 3.95002 2.66098 4.35375 2.4946 4.79833C2.32823 5.24292 2.25913 5.71801 2.29196 6.19157V11.1916C2.25913 11.6651 2.32823 12.1402 2.4946 12.5848C2.66098 13.0294 2.92075 13.4331 3.25641 13.7688C3.59207 14.1044 3.99581 14.3642 4.44039 14.5306C4.88497 14.697 5.36007 14.7661 5.83362 14.7332C5.99905 14.7343 6.15738 14.8005 6.27436 14.9175C6.39133 15.0345 6.45753 15.1928 6.45862 15.3582V17.1332C6.45875 17.171 6.46908 17.2081 6.48852 17.2405C6.50795 17.2729 6.53578 17.2995 6.56906 17.3174C6.60234 17.3353 6.63984 17.3439 6.67761 17.3423C6.71537 17.3407 6.752 17.3289 6.78362 17.3082L10.492 14.8416C10.5956 14.7723 10.7172 14.7346 10.842 14.7332H14.1753C14.6488 14.7661 15.1239 14.697 15.5685 14.5306C16.0131 14.3642 16.4168 14.1044 16.7525 13.7688C17.0882 13.4331 17.3479 13.0294 17.5143 12.5848C17.6807 12.1402 17.7498 11.6651 17.717 11.1916V6.19157C17.7498 5.71801 17.6807 5.24292 17.5143 4.79833C17.3479 4.35375 17.0882 3.95002 16.7525 3.61436C16.4168 3.2787 16.0131 3.01892 15.5685 2.85255C15.1239 2.68617 14.6488 2.61707 14.1753 2.6499H5.83362Z" fill="white"/>
-<path d="M9.99979 10.092C9.83437 10.0909 9.67603 10.0247 9.55905 9.90772C9.44208 9.79074 9.37588 9.6324 9.37479 9.46698V9.29198C9.38471 8.96033 9.47956 8.63678 9.65027 8.35227C9.82097 8.06775 10.0618 7.8318 10.3498 7.66698C10.6581 7.45865 10.7581 7.31698 10.7581 7.10031C10.7581 7.00073 10.7385 6.90212 10.7004 6.81011C10.6623 6.71811 10.6064 6.63451 10.536 6.56409C10.4656 6.49367 10.382 6.43781 10.29 6.3997C10.198 6.36159 10.0994 6.34198 9.99979 6.34198C9.9002 6.34198 9.80159 6.36159 9.70959 6.3997C9.61758 6.43781 9.53398 6.49367 9.46357 6.56409C9.39315 6.63451 9.33729 6.71811 9.29918 6.81011C9.26107 6.90212 9.24146 7.00073 9.24146 7.10031C9.24036 7.26574 9.17416 7.42407 9.05719 7.54105C8.94022 7.65802 8.78188 7.72422 8.61646 7.72531C8.45103 7.72422 8.29269 7.65802 8.17572 7.54105C8.05875 7.42407 7.99255 7.26574 7.99146 7.10031C7.99146 6.56767 8.20305 6.05684 8.57968 5.68021C8.95632 5.30357 9.46715 5.09198 9.99979 5.09198C10.5324 5.09198 11.0433 5.30357 11.4199 5.68021C11.7965 6.05684 12.0081 6.56767 12.0081 7.10031C11.9983 7.42665 11.9051 7.74503 11.7373 8.02511C11.5696 8.3052 11.3329 8.53765 11.0498 8.70031C10.7248 8.91698 10.6248 9.05865 10.6248 9.29198V9.46698C10.6249 9.54909 10.6088 9.63041 10.5774 9.70629C10.5461 9.78217 10.5 9.85111 10.442 9.90917C10.3839 9.96723 10.315 10.0133 10.2391 10.0446C10.1632 10.076 10.0819 10.0921 9.99979 10.092Z" fill="white"/>
-<path d="M10 12.1663C9.87639 12.1663 9.75555 12.1297 9.65277 12.061C9.54999 11.9923 9.46988 11.8947 9.42258 11.7805C9.37527 11.6663 9.36289 11.5406 9.38701 11.4194C9.41113 11.2982 9.47065 11.1868 9.55806 11.0994C9.64547 11.012 9.75683 10.9524 9.87807 10.9283C9.99931 10.9042 10.125 10.9166 10.2392 10.9639C10.3534 11.0112 10.451 11.0913 10.5197 11.1941C10.5883 11.2969 10.625 11.4177 10.625 11.5413C10.6251 11.6234 10.609 11.7048 10.5776 11.7806C10.5463 11.8565 10.5002 11.9254 10.4422 11.9835C10.3841 12.0416 10.3152 12.0876 10.2393 12.119C10.1634 12.1503 10.0821 12.1664 10 12.1663Z" fill="white"/>
-</svg>
Index: loads/1756321975162_message-question-white.svg
===================================================================
--- uploads/1756321975162_message-question-white.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M6.66696 18.5999C6.42553 18.5992 6.18798 18.5391 5.97529 18.4249C5.74306 18.3007 5.54901 18.1157 5.41395 17.8896C5.27889 17.6635 5.20791 17.4049 5.20862 17.1416V15.9582C4.02716 15.8744 2.9266 15.3274 2.14631 14.4363C1.36602 13.5452 0.96913 12.3821 1.04196 11.1999V6.1999C1.00477 5.56093 1.10325 4.92132 1.3309 4.32312C1.55855 3.72492 1.91023 3.18167 2.36281 2.72909C2.8154 2.2765 3.35864 1.92483 3.95684 1.69717C4.55504 1.46952 5.19465 1.37105 5.83362 1.40823H14.167C14.8059 1.37105 15.4455 1.46952 16.0437 1.69717C16.6419 1.92483 17.1852 2.2765 17.6378 2.72909C18.0904 3.18167 18.442 3.72492 18.6697 4.32312C18.8973 4.92132 18.9958 5.56093 18.9586 6.1999V11.1999C18.9958 11.8389 18.8973 12.4785 18.6697 13.0767C18.442 13.6749 18.0904 14.2181 17.6378 14.6707C17.1852 15.1233 16.6419 15.475 16.0437 15.7026C15.4455 15.9303 14.8059 16.0287 14.167 15.9916H11.0253L7.47529 18.3582C7.23498 18.5155 6.95413 18.5994 6.66696 18.5999ZM5.83362 2.6499C5.36007 2.61707 4.88497 2.68617 4.44039 2.85255C3.99581 3.01892 3.59207 3.2787 3.25641 3.61436C2.92075 3.95002 2.66098 4.35375 2.4946 4.79833C2.32823 5.24292 2.25913 5.71801 2.29196 6.19157V11.1916C2.25913 11.6651 2.32823 12.1402 2.4946 12.5848C2.66098 13.0294 2.92075 13.4331 3.25641 13.7688C3.59207 14.1044 3.99581 14.3642 4.44039 14.5306C4.88497 14.697 5.36007 14.7661 5.83362 14.7332C5.99905 14.7343 6.15738 14.8005 6.27436 14.9175C6.39133 15.0345 6.45753 15.1928 6.45862 15.3582V17.1332C6.45875 17.171 6.46908 17.2081 6.48852 17.2405C6.50795 17.2729 6.53578 17.2995 6.56906 17.3174C6.60234 17.3353 6.63984 17.3439 6.67761 17.3423C6.71537 17.3407 6.752 17.3289 6.78362 17.3082L10.492 14.8416C10.5956 14.7723 10.7172 14.7346 10.842 14.7332H14.1753C14.6488 14.7661 15.1239 14.697 15.5685 14.5306C16.0131 14.3642 16.4168 14.1044 16.7525 13.7688C17.0882 13.4331 17.3479 13.0294 17.5143 12.5848C17.6807 12.1402 17.7498 11.6651 17.717 11.1916V6.19157C17.7498 5.71801 17.6807 5.24292 17.5143 4.79833C17.3479 4.35375 17.0882 3.95002 16.7525 3.61436C16.4168 3.2787 16.0131 3.01892 15.5685 2.85255C15.1239 2.68617 14.6488 2.61707 14.1753 2.6499H5.83362Z" fill="white"/>
-<path d="M9.99979 10.092C9.83437 10.0909 9.67603 10.0247 9.55905 9.90772C9.44208 9.79074 9.37588 9.6324 9.37479 9.46698V9.29198C9.38471 8.96033 9.47956 8.63678 9.65027 8.35227C9.82097 8.06775 10.0618 7.8318 10.3498 7.66698C10.6581 7.45865 10.7581 7.31698 10.7581 7.10031C10.7581 7.00073 10.7385 6.90212 10.7004 6.81011C10.6623 6.71811 10.6064 6.63451 10.536 6.56409C10.4656 6.49367 10.382 6.43781 10.29 6.3997C10.198 6.36159 10.0994 6.34198 9.99979 6.34198C9.9002 6.34198 9.80159 6.36159 9.70959 6.3997C9.61758 6.43781 9.53398 6.49367 9.46357 6.56409C9.39315 6.63451 9.33729 6.71811 9.29918 6.81011C9.26107 6.90212 9.24146 7.00073 9.24146 7.10031C9.24036 7.26574 9.17416 7.42407 9.05719 7.54105C8.94022 7.65802 8.78188 7.72422 8.61646 7.72531C8.45103 7.72422 8.29269 7.65802 8.17572 7.54105C8.05875 7.42407 7.99255 7.26574 7.99146 7.10031C7.99146 6.56767 8.20305 6.05684 8.57968 5.68021C8.95632 5.30357 9.46715 5.09198 9.99979 5.09198C10.5324 5.09198 11.0433 5.30357 11.4199 5.68021C11.7965 6.05684 12.0081 6.56767 12.0081 7.10031C11.9983 7.42665 11.9051 7.74503 11.7373 8.02511C11.5696 8.3052 11.3329 8.53765 11.0498 8.70031C10.7248 8.91698 10.6248 9.05865 10.6248 9.29198V9.46698C10.6249 9.54909 10.6088 9.63041 10.5774 9.70629C10.5461 9.78217 10.5 9.85111 10.442 9.90917C10.3839 9.96723 10.315 10.0133 10.2391 10.0446C10.1632 10.076 10.0819 10.0921 9.99979 10.092Z" fill="white"/>
-<path d="M10 12.1663C9.87639 12.1663 9.75555 12.1297 9.65277 12.061C9.54999 11.9923 9.46988 11.8947 9.42258 11.7805C9.37527 11.6663 9.36289 11.5406 9.38701 11.4194C9.41113 11.2982 9.47065 11.1868 9.55806 11.0994C9.64547 11.012 9.75683 10.9524 9.87807 10.9283C9.99931 10.9042 10.125 10.9166 10.2392 10.9639C10.3534 11.0112 10.451 11.0913 10.5197 11.1941C10.5883 11.2969 10.625 11.4177 10.625 11.5413C10.6251 11.6234 10.609 11.7048 10.5776 11.7806C10.5463 11.8565 10.5002 11.9254 10.4422 11.9835C10.3841 12.0416 10.3152 12.0876 10.2393 12.119C10.1634 12.1503 10.0821 12.1664 10 12.1663Z" fill="white"/>
-</svg>
Index: loads/1756321975167_import.svg
===================================================================
--- uploads/1756321975167_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756321979251_import.svg
===================================================================
--- uploads/1756321979251_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756321979257_message-question.svg
===================================================================
--- uploads/1756321979257_message-question.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M16.0009 44.6397C15.4215 44.6381 14.8513 44.4939 14.3409 44.2197C13.7835 43.9217 13.3178 43.4775 12.9937 42.9349C12.6695 42.3923 12.4992 41.7718 12.5009 41.1397V38.2997C9.66538 38.0984 7.02403 36.7857 5.15134 34.6471C3.27865 32.5085 2.32611 29.717 2.50089 26.8797V14.8797C2.41165 13.3462 2.64799 11.8111 3.19435 10.3754C3.74071 8.93976 4.58474 7.63597 5.67094 6.54976C6.75715 5.46356 8.06094 4.61953 9.49662 4.07317C10.9323 3.52681 12.4674 3.29048 14.0009 3.37971H34.0009C35.5344 3.29048 37.0695 3.52681 38.5052 4.07317C39.9408 4.61953 41.2446 5.46356 42.3308 6.54976C43.417 7.63597 44.2611 8.93976 44.8074 10.3754C45.3538 11.8111 45.5901 13.3462 45.5009 14.8797V26.8797C45.5901 28.4132 45.3538 29.9483 44.8074 31.384C44.2611 32.8197 43.417 34.1235 42.3308 35.2097C41.2446 36.2959 39.9408 37.1399 38.5052 37.6863C37.0695 38.2326 35.5344 38.4689 34.0009 38.3797H26.4609L17.9409 44.0597C17.3641 44.4371 16.6901 44.6386 16.0009 44.6397ZM14.0009 6.35971C12.8644 6.28092 11.7241 6.44676 10.6571 6.84606C9.59013 7.24536 8.62117 7.86882 7.81558 8.67441C7.01 9.47999 6.38654 10.449 5.98724 11.516C5.58794 12.583 5.4221 13.7232 5.50089 14.8597V26.8597C5.4221 27.9963 5.58794 29.1365 5.98724 30.2035C6.38654 31.2705 7.01 32.2394 7.81558 33.045C8.62117 33.8506 9.59013 34.4741 10.6571 34.8734C11.7241 35.2727 12.8644 35.4385 14.0009 35.3597C14.3979 35.3623 14.7779 35.5212 15.0587 35.8019C15.3394 36.0827 15.4983 36.4627 15.5009 36.8597V41.1197C15.5012 41.2104 15.526 41.2994 15.5726 41.3772C15.6193 41.455 15.6861 41.5188 15.7659 41.5618C15.8458 41.6048 15.9358 41.6254 16.0264 41.6215C16.1171 41.6177 16.205 41.5894 16.2809 41.5397L25.1809 35.6197C25.4297 35.4534 25.7216 35.363 26.0209 35.3597H34.0209C35.1574 35.4385 36.2976 35.2727 37.3646 34.8734C38.4316 34.4741 39.4006 33.8506 40.2062 33.045C41.0118 32.2394 41.6352 31.2705 42.0345 30.2035C42.4338 29.1365 42.5997 27.9963 42.5209 26.8597V14.8597C42.5997 13.7232 42.4338 12.583 42.0345 11.516C41.6352 10.449 41.0118 9.47999 40.2062 8.67441C39.4006 7.86882 38.4316 7.24536 37.3646 6.84606C36.2976 6.44676 35.1574 6.28092 34.0209 6.35971H14.0009Z" fill="#1D79BE"/>
-<path d="M23.9997 24.2207C23.6027 24.2181 23.2227 24.0592 22.9419 23.7785C22.6612 23.4977 22.5023 23.1177 22.4997 22.7207V22.3007C22.5235 21.5048 22.7511 20.7282 23.1608 20.0454C23.5705 19.3626 24.1486 18.7963 24.8397 18.4007C25.5797 17.9007 25.8197 17.5607 25.8197 17.0407C25.8197 16.8017 25.7726 16.565 25.6811 16.3442C25.5897 16.1234 25.4556 15.9228 25.2866 15.7538C25.1176 15.5848 24.917 15.4507 24.6962 15.3592C24.4754 15.2678 24.2387 15.2207 23.9997 15.2207C23.7607 15.2207 23.524 15.2678 23.3032 15.3592C23.0824 15.4507 22.8818 15.5848 22.7128 15.7538C22.5438 15.9228 22.4097 16.1234 22.3182 16.3442C22.2268 16.565 22.1797 16.8017 22.1797 17.0407C22.1771 17.4377 22.0182 17.8177 21.7375 18.0985C21.4567 18.3792 21.0767 18.5381 20.6797 18.5407C20.2827 18.5381 19.9027 18.3792 19.6219 18.0985C19.3412 17.8177 19.1823 17.4377 19.1797 17.0407C19.1797 15.7624 19.6875 14.5364 20.5914 13.6324C21.4954 12.7285 22.7213 12.2207 23.9997 12.2207C25.278 12.2207 26.504 12.7285 27.4079 13.6324C28.3119 14.5364 28.8197 15.7624 28.8197 17.0407C28.7961 17.8239 28.5724 18.588 28.1697 19.2602C27.7671 19.9324 27.1991 20.4903 26.5197 20.8807C25.7397 21.4007 25.4997 21.7407 25.4997 22.3007V22.7207C25.5 22.9178 25.4613 23.1129 25.386 23.295C25.3108 23.4771 25.2003 23.6426 25.0609 23.7819C24.9216 23.9213 24.7561 24.0318 24.574 24.1071C24.3919 24.1823 24.1967 24.221 23.9997 24.2207Z" fill="#1D79BE"/>
-<path d="M24 29.1992C23.7033 29.1992 23.4133 29.1112 23.1666 28.9464C22.92 28.7816 22.7277 28.5473 22.6142 28.2732C22.5006 27.9992 22.4709 27.6976 22.5288 27.4066C22.5867 27.1156 22.7296 26.8483 22.9393 26.6386C23.1491 26.4288 23.4164 26.2859 23.7074 26.228C23.9983 26.1702 24.2999 26.1999 24.574 26.3134C24.8481 26.4269 25.0824 26.6192 25.2472 26.8659C25.412 27.1125 25.5 27.4025 25.5 27.6992C25.5003 27.8963 25.4616 28.0914 25.3864 28.2736C25.3111 28.4557 25.2006 28.6211 25.0612 28.7605C24.9219 28.8998 24.7564 29.0103 24.5743 29.0856C24.3922 29.1609 24.1971 29.1995 24 29.1992Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756321979261_message-question-white.svg
===================================================================
--- uploads/1756321979261_message-question-white.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M6.66696 18.5999C6.42553 18.5992 6.18798 18.5391 5.97529 18.4249C5.74306 18.3007 5.54901 18.1157 5.41395 17.8896C5.27889 17.6635 5.20791 17.4049 5.20862 17.1416V15.9582C4.02716 15.8744 2.9266 15.3274 2.14631 14.4363C1.36602 13.5452 0.96913 12.3821 1.04196 11.1999V6.1999C1.00477 5.56093 1.10325 4.92132 1.3309 4.32312C1.55855 3.72492 1.91023 3.18167 2.36281 2.72909C2.8154 2.2765 3.35864 1.92483 3.95684 1.69717C4.55504 1.46952 5.19465 1.37105 5.83362 1.40823H14.167C14.8059 1.37105 15.4455 1.46952 16.0437 1.69717C16.6419 1.92483 17.1852 2.2765 17.6378 2.72909C18.0904 3.18167 18.442 3.72492 18.6697 4.32312C18.8973 4.92132 18.9958 5.56093 18.9586 6.1999V11.1999C18.9958 11.8389 18.8973 12.4785 18.6697 13.0767C18.442 13.6749 18.0904 14.2181 17.6378 14.6707C17.1852 15.1233 16.6419 15.475 16.0437 15.7026C15.4455 15.9303 14.8059 16.0287 14.167 15.9916H11.0253L7.47529 18.3582C7.23498 18.5155 6.95413 18.5994 6.66696 18.5999ZM5.83362 2.6499C5.36007 2.61707 4.88497 2.68617 4.44039 2.85255C3.99581 3.01892 3.59207 3.2787 3.25641 3.61436C2.92075 3.95002 2.66098 4.35375 2.4946 4.79833C2.32823 5.24292 2.25913 5.71801 2.29196 6.19157V11.1916C2.25913 11.6651 2.32823 12.1402 2.4946 12.5848C2.66098 13.0294 2.92075 13.4331 3.25641 13.7688C3.59207 14.1044 3.99581 14.3642 4.44039 14.5306C4.88497 14.697 5.36007 14.7661 5.83362 14.7332C5.99905 14.7343 6.15738 14.8005 6.27436 14.9175C6.39133 15.0345 6.45753 15.1928 6.45862 15.3582V17.1332C6.45875 17.171 6.46908 17.2081 6.48852 17.2405C6.50795 17.2729 6.53578 17.2995 6.56906 17.3174C6.60234 17.3353 6.63984 17.3439 6.67761 17.3423C6.71537 17.3407 6.752 17.3289 6.78362 17.3082L10.492 14.8416C10.5956 14.7723 10.7172 14.7346 10.842 14.7332H14.1753C14.6488 14.7661 15.1239 14.697 15.5685 14.5306C16.0131 14.3642 16.4168 14.1044 16.7525 13.7688C17.0882 13.4331 17.3479 13.0294 17.5143 12.5848C17.6807 12.1402 17.7498 11.6651 17.717 11.1916V6.19157C17.7498 5.71801 17.6807 5.24292 17.5143 4.79833C17.3479 4.35375 17.0882 3.95002 16.7525 3.61436C16.4168 3.2787 16.0131 3.01892 15.5685 2.85255C15.1239 2.68617 14.6488 2.61707 14.1753 2.6499H5.83362Z" fill="white"/>
-<path d="M9.99979 10.092C9.83437 10.0909 9.67603 10.0247 9.55905 9.90772C9.44208 9.79074 9.37588 9.6324 9.37479 9.46698V9.29198C9.38471 8.96033 9.47956 8.63678 9.65027 8.35227C9.82097 8.06775 10.0618 7.8318 10.3498 7.66698C10.6581 7.45865 10.7581 7.31698 10.7581 7.10031C10.7581 7.00073 10.7385 6.90212 10.7004 6.81011C10.6623 6.71811 10.6064 6.63451 10.536 6.56409C10.4656 6.49367 10.382 6.43781 10.29 6.3997C10.198 6.36159 10.0994 6.34198 9.99979 6.34198C9.9002 6.34198 9.80159 6.36159 9.70959 6.3997C9.61758 6.43781 9.53398 6.49367 9.46357 6.56409C9.39315 6.63451 9.33729 6.71811 9.29918 6.81011C9.26107 6.90212 9.24146 7.00073 9.24146 7.10031C9.24036 7.26574 9.17416 7.42407 9.05719 7.54105C8.94022 7.65802 8.78188 7.72422 8.61646 7.72531C8.45103 7.72422 8.29269 7.65802 8.17572 7.54105C8.05875 7.42407 7.99255 7.26574 7.99146 7.10031C7.99146 6.56767 8.20305 6.05684 8.57968 5.68021C8.95632 5.30357 9.46715 5.09198 9.99979 5.09198C10.5324 5.09198 11.0433 5.30357 11.4199 5.68021C11.7965 6.05684 12.0081 6.56767 12.0081 7.10031C11.9983 7.42665 11.9051 7.74503 11.7373 8.02511C11.5696 8.3052 11.3329 8.53765 11.0498 8.70031C10.7248 8.91698 10.6248 9.05865 10.6248 9.29198V9.46698C10.6249 9.54909 10.6088 9.63041 10.5774 9.70629C10.5461 9.78217 10.5 9.85111 10.442 9.90917C10.3839 9.96723 10.315 10.0133 10.2391 10.0446C10.1632 10.076 10.0819 10.0921 9.99979 10.092Z" fill="white"/>
-<path d="M10 12.1663C9.87639 12.1663 9.75555 12.1297 9.65277 12.061C9.54999 11.9923 9.46988 11.8947 9.42258 11.7805C9.37527 11.6663 9.36289 11.5406 9.38701 11.4194C9.41113 11.2982 9.47065 11.1868 9.55806 11.0994C9.64547 11.012 9.75683 10.9524 9.87807 10.9283C9.99931 10.9042 10.125 10.9166 10.2392 10.9639C10.3534 11.0112 10.451 11.0913 10.5197 11.1941C10.5883 11.2969 10.625 11.4177 10.625 11.5413C10.6251 11.6234 10.609 11.7048 10.5776 11.7806C10.5463 11.8565 10.5002 11.9254 10.4422 11.9835C10.3841 12.0416 10.3152 12.0876 10.2393 12.119C10.1634 12.1503 10.0821 12.1664 10 12.1663Z" fill="white"/>
-</svg>
Index: loads/1756321979266_message-question-white.svg
===================================================================
--- uploads/1756321979266_message-question-white.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M6.66696 18.5999C6.42553 18.5992 6.18798 18.5391 5.97529 18.4249C5.74306 18.3007 5.54901 18.1157 5.41395 17.8896C5.27889 17.6635 5.20791 17.4049 5.20862 17.1416V15.9582C4.02716 15.8744 2.9266 15.3274 2.14631 14.4363C1.36602 13.5452 0.96913 12.3821 1.04196 11.1999V6.1999C1.00477 5.56093 1.10325 4.92132 1.3309 4.32312C1.55855 3.72492 1.91023 3.18167 2.36281 2.72909C2.8154 2.2765 3.35864 1.92483 3.95684 1.69717C4.55504 1.46952 5.19465 1.37105 5.83362 1.40823H14.167C14.8059 1.37105 15.4455 1.46952 16.0437 1.69717C16.6419 1.92483 17.1852 2.2765 17.6378 2.72909C18.0904 3.18167 18.442 3.72492 18.6697 4.32312C18.8973 4.92132 18.9958 5.56093 18.9586 6.1999V11.1999C18.9958 11.8389 18.8973 12.4785 18.6697 13.0767C18.442 13.6749 18.0904 14.2181 17.6378 14.6707C17.1852 15.1233 16.6419 15.475 16.0437 15.7026C15.4455 15.9303 14.8059 16.0287 14.167 15.9916H11.0253L7.47529 18.3582C7.23498 18.5155 6.95413 18.5994 6.66696 18.5999ZM5.83362 2.6499C5.36007 2.61707 4.88497 2.68617 4.44039 2.85255C3.99581 3.01892 3.59207 3.2787 3.25641 3.61436C2.92075 3.95002 2.66098 4.35375 2.4946 4.79833C2.32823 5.24292 2.25913 5.71801 2.29196 6.19157V11.1916C2.25913 11.6651 2.32823 12.1402 2.4946 12.5848C2.66098 13.0294 2.92075 13.4331 3.25641 13.7688C3.59207 14.1044 3.99581 14.3642 4.44039 14.5306C4.88497 14.697 5.36007 14.7661 5.83362 14.7332C5.99905 14.7343 6.15738 14.8005 6.27436 14.9175C6.39133 15.0345 6.45753 15.1928 6.45862 15.3582V17.1332C6.45875 17.171 6.46908 17.2081 6.48852 17.2405C6.50795 17.2729 6.53578 17.2995 6.56906 17.3174C6.60234 17.3353 6.63984 17.3439 6.67761 17.3423C6.71537 17.3407 6.752 17.3289 6.78362 17.3082L10.492 14.8416C10.5956 14.7723 10.7172 14.7346 10.842 14.7332H14.1753C14.6488 14.7661 15.1239 14.697 15.5685 14.5306C16.0131 14.3642 16.4168 14.1044 16.7525 13.7688C17.0882 13.4331 17.3479 13.0294 17.5143 12.5848C17.6807 12.1402 17.7498 11.6651 17.717 11.1916V6.19157C17.7498 5.71801 17.6807 5.24292 17.5143 4.79833C17.3479 4.35375 17.0882 3.95002 16.7525 3.61436C16.4168 3.2787 16.0131 3.01892 15.5685 2.85255C15.1239 2.68617 14.6488 2.61707 14.1753 2.6499H5.83362Z" fill="white"/>
-<path d="M9.99979 10.092C9.83437 10.0909 9.67603 10.0247 9.55905 9.90772C9.44208 9.79074 9.37588 9.6324 9.37479 9.46698V9.29198C9.38471 8.96033 9.47956 8.63678 9.65027 8.35227C9.82097 8.06775 10.0618 7.8318 10.3498 7.66698C10.6581 7.45865 10.7581 7.31698 10.7581 7.10031C10.7581 7.00073 10.7385 6.90212 10.7004 6.81011C10.6623 6.71811 10.6064 6.63451 10.536 6.56409C10.4656 6.49367 10.382 6.43781 10.29 6.3997C10.198 6.36159 10.0994 6.34198 9.99979 6.34198C9.9002 6.34198 9.80159 6.36159 9.70959 6.3997C9.61758 6.43781 9.53398 6.49367 9.46357 6.56409C9.39315 6.63451 9.33729 6.71811 9.29918 6.81011C9.26107 6.90212 9.24146 7.00073 9.24146 7.10031C9.24036 7.26574 9.17416 7.42407 9.05719 7.54105C8.94022 7.65802 8.78188 7.72422 8.61646 7.72531C8.45103 7.72422 8.29269 7.65802 8.17572 7.54105C8.05875 7.42407 7.99255 7.26574 7.99146 7.10031C7.99146 6.56767 8.20305 6.05684 8.57968 5.68021C8.95632 5.30357 9.46715 5.09198 9.99979 5.09198C10.5324 5.09198 11.0433 5.30357 11.4199 5.68021C11.7965 6.05684 12.0081 6.56767 12.0081 7.10031C11.9983 7.42665 11.9051 7.74503 11.7373 8.02511C11.5696 8.3052 11.3329 8.53765 11.0498 8.70031C10.7248 8.91698 10.6248 9.05865 10.6248 9.29198V9.46698C10.6249 9.54909 10.6088 9.63041 10.5774 9.70629C10.5461 9.78217 10.5 9.85111 10.442 9.90917C10.3839 9.96723 10.315 10.0133 10.2391 10.0446C10.1632 10.076 10.0819 10.0921 9.99979 10.092Z" fill="white"/>
-<path d="M10 12.1663C9.87639 12.1663 9.75555 12.1297 9.65277 12.061C9.54999 11.9923 9.46988 11.8947 9.42258 11.7805C9.37527 11.6663 9.36289 11.5406 9.38701 11.4194C9.41113 11.2982 9.47065 11.1868 9.55806 11.0994C9.64547 11.012 9.75683 10.9524 9.87807 10.9283C9.99931 10.9042 10.125 10.9166 10.2392 10.9639C10.3534 11.0112 10.451 11.0913 10.5197 11.1941C10.5883 11.2969 10.625 11.4177 10.625 11.5413C10.6251 11.6234 10.609 11.7048 10.5776 11.7806C10.5463 11.8565 10.5002 11.9254 10.4422 11.9835C10.3841 12.0416 10.3152 12.0876 10.2393 12.119C10.1634 12.1503 10.0821 12.1664 10 12.1663Z" fill="white"/>
-</svg>
Index: loads/1756321979270_import.svg
===================================================================
--- uploads/1756321979270_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756322389311_import.svg
===================================================================
--- uploads/1756322389311_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756322406779_message-question.svg
===================================================================
--- uploads/1756322406779_message-question.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M16.0009 44.6397C15.4215 44.6381 14.8513 44.4939 14.3409 44.2197C13.7835 43.9217 13.3178 43.4775 12.9937 42.9349C12.6695 42.3923 12.4992 41.7718 12.5009 41.1397V38.2997C9.66538 38.0984 7.02403 36.7857 5.15134 34.6471C3.27865 32.5085 2.32611 29.717 2.50089 26.8797V14.8797C2.41165 13.3462 2.64799 11.8111 3.19435 10.3754C3.74071 8.93976 4.58474 7.63597 5.67094 6.54976C6.75715 5.46356 8.06094 4.61953 9.49662 4.07317C10.9323 3.52681 12.4674 3.29048 14.0009 3.37971H34.0009C35.5344 3.29048 37.0695 3.52681 38.5052 4.07317C39.9408 4.61953 41.2446 5.46356 42.3308 6.54976C43.417 7.63597 44.2611 8.93976 44.8074 10.3754C45.3538 11.8111 45.5901 13.3462 45.5009 14.8797V26.8797C45.5901 28.4132 45.3538 29.9483 44.8074 31.384C44.2611 32.8197 43.417 34.1235 42.3308 35.2097C41.2446 36.2959 39.9408 37.1399 38.5052 37.6863C37.0695 38.2326 35.5344 38.4689 34.0009 38.3797H26.4609L17.9409 44.0597C17.3641 44.4371 16.6901 44.6386 16.0009 44.6397ZM14.0009 6.35971C12.8644 6.28092 11.7241 6.44676 10.6571 6.84606C9.59013 7.24536 8.62117 7.86882 7.81558 8.67441C7.01 9.47999 6.38654 10.449 5.98724 11.516C5.58794 12.583 5.4221 13.7232 5.50089 14.8597V26.8597C5.4221 27.9963 5.58794 29.1365 5.98724 30.2035C6.38654 31.2705 7.01 32.2394 7.81558 33.045C8.62117 33.8506 9.59013 34.4741 10.6571 34.8734C11.7241 35.2727 12.8644 35.4385 14.0009 35.3597C14.3979 35.3623 14.7779 35.5212 15.0587 35.8019C15.3394 36.0827 15.4983 36.4627 15.5009 36.8597V41.1197C15.5012 41.2104 15.526 41.2994 15.5726 41.3772C15.6193 41.455 15.6861 41.5188 15.7659 41.5618C15.8458 41.6048 15.9358 41.6254 16.0264 41.6215C16.1171 41.6177 16.205 41.5894 16.2809 41.5397L25.1809 35.6197C25.4297 35.4534 25.7216 35.363 26.0209 35.3597H34.0209C35.1574 35.4385 36.2976 35.2727 37.3646 34.8734C38.4316 34.4741 39.4006 33.8506 40.2062 33.045C41.0118 32.2394 41.6352 31.2705 42.0345 30.2035C42.4338 29.1365 42.5997 27.9963 42.5209 26.8597V14.8597C42.5997 13.7232 42.4338 12.583 42.0345 11.516C41.6352 10.449 41.0118 9.47999 40.2062 8.67441C39.4006 7.86882 38.4316 7.24536 37.3646 6.84606C36.2976 6.44676 35.1574 6.28092 34.0209 6.35971H14.0009Z" fill="#1D79BE"/>
-<path d="M23.9997 24.2207C23.6027 24.2181 23.2227 24.0592 22.9419 23.7785C22.6612 23.4977 22.5023 23.1177 22.4997 22.7207V22.3007C22.5235 21.5048 22.7511 20.7282 23.1608 20.0454C23.5705 19.3626 24.1486 18.7963 24.8397 18.4007C25.5797 17.9007 25.8197 17.5607 25.8197 17.0407C25.8197 16.8017 25.7726 16.565 25.6811 16.3442C25.5897 16.1234 25.4556 15.9228 25.2866 15.7538C25.1176 15.5848 24.917 15.4507 24.6962 15.3592C24.4754 15.2678 24.2387 15.2207 23.9997 15.2207C23.7607 15.2207 23.524 15.2678 23.3032 15.3592C23.0824 15.4507 22.8818 15.5848 22.7128 15.7538C22.5438 15.9228 22.4097 16.1234 22.3182 16.3442C22.2268 16.565 22.1797 16.8017 22.1797 17.0407C22.1771 17.4377 22.0182 17.8177 21.7375 18.0985C21.4567 18.3792 21.0767 18.5381 20.6797 18.5407C20.2827 18.5381 19.9027 18.3792 19.6219 18.0985C19.3412 17.8177 19.1823 17.4377 19.1797 17.0407C19.1797 15.7624 19.6875 14.5364 20.5914 13.6324C21.4954 12.7285 22.7213 12.2207 23.9997 12.2207C25.278 12.2207 26.504 12.7285 27.4079 13.6324C28.3119 14.5364 28.8197 15.7624 28.8197 17.0407C28.7961 17.8239 28.5724 18.588 28.1697 19.2602C27.7671 19.9324 27.1991 20.4903 26.5197 20.8807C25.7397 21.4007 25.4997 21.7407 25.4997 22.3007V22.7207C25.5 22.9178 25.4613 23.1129 25.386 23.295C25.3108 23.4771 25.2003 23.6426 25.0609 23.7819C24.9216 23.9213 24.7561 24.0318 24.574 24.1071C24.3919 24.1823 24.1967 24.221 23.9997 24.2207Z" fill="#1D79BE"/>
-<path d="M24 29.1992C23.7033 29.1992 23.4133 29.1112 23.1666 28.9464C22.92 28.7816 22.7277 28.5473 22.6142 28.2732C22.5006 27.9992 22.4709 27.6976 22.5288 27.4066C22.5867 27.1156 22.7296 26.8483 22.9393 26.6386C23.1491 26.4288 23.4164 26.2859 23.7074 26.228C23.9983 26.1702 24.2999 26.1999 24.574 26.3134C24.8481 26.4269 25.0824 26.6192 25.2472 26.8659C25.412 27.1125 25.5 27.4025 25.5 27.6992C25.5003 27.8963 25.4616 28.0914 25.3864 28.2736C25.3111 28.4557 25.2006 28.6211 25.0612 28.7605C24.9219 28.8998 24.7564 29.0103 24.5743 29.0856C24.3922 29.1609 24.1971 29.1995 24 29.1992Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756322423315_message-question-white.svg
===================================================================
--- uploads/1756322423315_message-question-white.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M6.66696 18.5999C6.42553 18.5992 6.18798 18.5391 5.97529 18.4249C5.74306 18.3007 5.54901 18.1157 5.41395 17.8896C5.27889 17.6635 5.20791 17.4049 5.20862 17.1416V15.9582C4.02716 15.8744 2.9266 15.3274 2.14631 14.4363C1.36602 13.5452 0.96913 12.3821 1.04196 11.1999V6.1999C1.00477 5.56093 1.10325 4.92132 1.3309 4.32312C1.55855 3.72492 1.91023 3.18167 2.36281 2.72909C2.8154 2.2765 3.35864 1.92483 3.95684 1.69717C4.55504 1.46952 5.19465 1.37105 5.83362 1.40823H14.167C14.8059 1.37105 15.4455 1.46952 16.0437 1.69717C16.6419 1.92483 17.1852 2.2765 17.6378 2.72909C18.0904 3.18167 18.442 3.72492 18.6697 4.32312C18.8973 4.92132 18.9958 5.56093 18.9586 6.1999V11.1999C18.9958 11.8389 18.8973 12.4785 18.6697 13.0767C18.442 13.6749 18.0904 14.2181 17.6378 14.6707C17.1852 15.1233 16.6419 15.475 16.0437 15.7026C15.4455 15.9303 14.8059 16.0287 14.167 15.9916H11.0253L7.47529 18.3582C7.23498 18.5155 6.95413 18.5994 6.66696 18.5999ZM5.83362 2.6499C5.36007 2.61707 4.88497 2.68617 4.44039 2.85255C3.99581 3.01892 3.59207 3.2787 3.25641 3.61436C2.92075 3.95002 2.66098 4.35375 2.4946 4.79833C2.32823 5.24292 2.25913 5.71801 2.29196 6.19157V11.1916C2.25913 11.6651 2.32823 12.1402 2.4946 12.5848C2.66098 13.0294 2.92075 13.4331 3.25641 13.7688C3.59207 14.1044 3.99581 14.3642 4.44039 14.5306C4.88497 14.697 5.36007 14.7661 5.83362 14.7332C5.99905 14.7343 6.15738 14.8005 6.27436 14.9175C6.39133 15.0345 6.45753 15.1928 6.45862 15.3582V17.1332C6.45875 17.171 6.46908 17.2081 6.48852 17.2405C6.50795 17.2729 6.53578 17.2995 6.56906 17.3174C6.60234 17.3353 6.63984 17.3439 6.67761 17.3423C6.71537 17.3407 6.752 17.3289 6.78362 17.3082L10.492 14.8416C10.5956 14.7723 10.7172 14.7346 10.842 14.7332H14.1753C14.6488 14.7661 15.1239 14.697 15.5685 14.5306C16.0131 14.3642 16.4168 14.1044 16.7525 13.7688C17.0882 13.4331 17.3479 13.0294 17.5143 12.5848C17.6807 12.1402 17.7498 11.6651 17.717 11.1916V6.19157C17.7498 5.71801 17.6807 5.24292 17.5143 4.79833C17.3479 4.35375 17.0882 3.95002 16.7525 3.61436C16.4168 3.2787 16.0131 3.01892 15.5685 2.85255C15.1239 2.68617 14.6488 2.61707 14.1753 2.6499H5.83362Z" fill="white"/>
-<path d="M9.99979 10.092C9.83437 10.0909 9.67603 10.0247 9.55905 9.90772C9.44208 9.79074 9.37588 9.6324 9.37479 9.46698V9.29198C9.38471 8.96033 9.47956 8.63678 9.65027 8.35227C9.82097 8.06775 10.0618 7.8318 10.3498 7.66698C10.6581 7.45865 10.7581 7.31698 10.7581 7.10031C10.7581 7.00073 10.7385 6.90212 10.7004 6.81011C10.6623 6.71811 10.6064 6.63451 10.536 6.56409C10.4656 6.49367 10.382 6.43781 10.29 6.3997C10.198 6.36159 10.0994 6.34198 9.99979 6.34198C9.9002 6.34198 9.80159 6.36159 9.70959 6.3997C9.61758 6.43781 9.53398 6.49367 9.46357 6.56409C9.39315 6.63451 9.33729 6.71811 9.29918 6.81011C9.26107 6.90212 9.24146 7.00073 9.24146 7.10031C9.24036 7.26574 9.17416 7.42407 9.05719 7.54105C8.94022 7.65802 8.78188 7.72422 8.61646 7.72531C8.45103 7.72422 8.29269 7.65802 8.17572 7.54105C8.05875 7.42407 7.99255 7.26574 7.99146 7.10031C7.99146 6.56767 8.20305 6.05684 8.57968 5.68021C8.95632 5.30357 9.46715 5.09198 9.99979 5.09198C10.5324 5.09198 11.0433 5.30357 11.4199 5.68021C11.7965 6.05684 12.0081 6.56767 12.0081 7.10031C11.9983 7.42665 11.9051 7.74503 11.7373 8.02511C11.5696 8.3052 11.3329 8.53765 11.0498 8.70031C10.7248 8.91698 10.6248 9.05865 10.6248 9.29198V9.46698C10.6249 9.54909 10.6088 9.63041 10.5774 9.70629C10.5461 9.78217 10.5 9.85111 10.442 9.90917C10.3839 9.96723 10.315 10.0133 10.2391 10.0446C10.1632 10.076 10.0819 10.0921 9.99979 10.092Z" fill="white"/>
-<path d="M10 12.1663C9.87639 12.1663 9.75555 12.1297 9.65277 12.061C9.54999 11.9923 9.46988 11.8947 9.42258 11.7805C9.37527 11.6663 9.36289 11.5406 9.38701 11.4194C9.41113 11.2982 9.47065 11.1868 9.55806 11.0994C9.64547 11.012 9.75683 10.9524 9.87807 10.9283C9.99931 10.9042 10.125 10.9166 10.2392 10.9639C10.3534 11.0112 10.451 11.0913 10.5197 11.1941C10.5883 11.2969 10.625 11.4177 10.625 11.5413C10.6251 11.6234 10.609 11.7048 10.5776 11.7806C10.5463 11.8565 10.5002 11.9254 10.4422 11.9835C10.3841 12.0416 10.3152 12.0876 10.2393 12.119C10.1634 12.1503 10.0821 12.1664 10 12.1663Z" fill="white"/>
-</svg>
Index: loads/1756322430852_message-question.svg
===================================================================
--- uploads/1756322430852_message-question.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M16.0009 44.6397C15.4215 44.6381 14.8513 44.4939 14.3409 44.2197C13.7835 43.9217 13.3178 43.4775 12.9937 42.9349C12.6695 42.3923 12.4992 41.7718 12.5009 41.1397V38.2997C9.66538 38.0984 7.02403 36.7857 5.15134 34.6471C3.27865 32.5085 2.32611 29.717 2.50089 26.8797V14.8797C2.41165 13.3462 2.64799 11.8111 3.19435 10.3754C3.74071 8.93976 4.58474 7.63597 5.67094 6.54976C6.75715 5.46356 8.06094 4.61953 9.49662 4.07317C10.9323 3.52681 12.4674 3.29048 14.0009 3.37971H34.0009C35.5344 3.29048 37.0695 3.52681 38.5052 4.07317C39.9408 4.61953 41.2446 5.46356 42.3308 6.54976C43.417 7.63597 44.2611 8.93976 44.8074 10.3754C45.3538 11.8111 45.5901 13.3462 45.5009 14.8797V26.8797C45.5901 28.4132 45.3538 29.9483 44.8074 31.384C44.2611 32.8197 43.417 34.1235 42.3308 35.2097C41.2446 36.2959 39.9408 37.1399 38.5052 37.6863C37.0695 38.2326 35.5344 38.4689 34.0009 38.3797H26.4609L17.9409 44.0597C17.3641 44.4371 16.6901 44.6386 16.0009 44.6397ZM14.0009 6.35971C12.8644 6.28092 11.7241 6.44676 10.6571 6.84606C9.59013 7.24536 8.62117 7.86882 7.81558 8.67441C7.01 9.47999 6.38654 10.449 5.98724 11.516C5.58794 12.583 5.4221 13.7232 5.50089 14.8597V26.8597C5.4221 27.9963 5.58794 29.1365 5.98724 30.2035C6.38654 31.2705 7.01 32.2394 7.81558 33.045C8.62117 33.8506 9.59013 34.4741 10.6571 34.8734C11.7241 35.2727 12.8644 35.4385 14.0009 35.3597C14.3979 35.3623 14.7779 35.5212 15.0587 35.8019C15.3394 36.0827 15.4983 36.4627 15.5009 36.8597V41.1197C15.5012 41.2104 15.526 41.2994 15.5726 41.3772C15.6193 41.455 15.6861 41.5188 15.7659 41.5618C15.8458 41.6048 15.9358 41.6254 16.0264 41.6215C16.1171 41.6177 16.205 41.5894 16.2809 41.5397L25.1809 35.6197C25.4297 35.4534 25.7216 35.363 26.0209 35.3597H34.0209C35.1574 35.4385 36.2976 35.2727 37.3646 34.8734C38.4316 34.4741 39.4006 33.8506 40.2062 33.045C41.0118 32.2394 41.6352 31.2705 42.0345 30.2035C42.4338 29.1365 42.5997 27.9963 42.5209 26.8597V14.8597C42.5997 13.7232 42.4338 12.583 42.0345 11.516C41.6352 10.449 41.0118 9.47999 40.2062 8.67441C39.4006 7.86882 38.4316 7.24536 37.3646 6.84606C36.2976 6.44676 35.1574 6.28092 34.0209 6.35971H14.0009Z" fill="#1D79BE"/>
-<path d="M23.9997 24.2207C23.6027 24.2181 23.2227 24.0592 22.9419 23.7785C22.6612 23.4977 22.5023 23.1177 22.4997 22.7207V22.3007C22.5235 21.5048 22.7511 20.7282 23.1608 20.0454C23.5705 19.3626 24.1486 18.7963 24.8397 18.4007C25.5797 17.9007 25.8197 17.5607 25.8197 17.0407C25.8197 16.8017 25.7726 16.565 25.6811 16.3442C25.5897 16.1234 25.4556 15.9228 25.2866 15.7538C25.1176 15.5848 24.917 15.4507 24.6962 15.3592C24.4754 15.2678 24.2387 15.2207 23.9997 15.2207C23.7607 15.2207 23.524 15.2678 23.3032 15.3592C23.0824 15.4507 22.8818 15.5848 22.7128 15.7538C22.5438 15.9228 22.4097 16.1234 22.3182 16.3442C22.2268 16.565 22.1797 16.8017 22.1797 17.0407C22.1771 17.4377 22.0182 17.8177 21.7375 18.0985C21.4567 18.3792 21.0767 18.5381 20.6797 18.5407C20.2827 18.5381 19.9027 18.3792 19.6219 18.0985C19.3412 17.8177 19.1823 17.4377 19.1797 17.0407C19.1797 15.7624 19.6875 14.5364 20.5914 13.6324C21.4954 12.7285 22.7213 12.2207 23.9997 12.2207C25.278 12.2207 26.504 12.7285 27.4079 13.6324C28.3119 14.5364 28.8197 15.7624 28.8197 17.0407C28.7961 17.8239 28.5724 18.588 28.1697 19.2602C27.7671 19.9324 27.1991 20.4903 26.5197 20.8807C25.7397 21.4007 25.4997 21.7407 25.4997 22.3007V22.7207C25.5 22.9178 25.4613 23.1129 25.386 23.295C25.3108 23.4771 25.2003 23.6426 25.0609 23.7819C24.9216 23.9213 24.7561 24.0318 24.574 24.1071C24.3919 24.1823 24.1967 24.221 23.9997 24.2207Z" fill="#1D79BE"/>
-<path d="M24 29.1992C23.7033 29.1992 23.4133 29.1112 23.1666 28.9464C22.92 28.7816 22.7277 28.5473 22.6142 28.2732C22.5006 27.9992 22.4709 27.6976 22.5288 27.4066C22.5867 27.1156 22.7296 26.8483 22.9393 26.6386C23.1491 26.4288 23.4164 26.2859 23.7074 26.228C23.9983 26.1702 24.2999 26.1999 24.574 26.3134C24.8481 26.4269 25.0824 26.6192 25.2472 26.8659C25.412 27.1125 25.5 27.4025 25.5 27.6992C25.5003 27.8963 25.4616 28.0914 25.3864 28.2736C25.3111 28.4557 25.2006 28.6211 25.0612 28.7605C24.9219 28.8998 24.7564 29.0103 24.5743 29.0856C24.3922 29.1609 24.1971 29.1995 24 29.1992Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756322438165_import.svg
===================================================================
--- uploads/1756322438165_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756323365801_import.svg
===================================================================
--- uploads/1756323365801_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756323372749_message-question.svg
===================================================================
--- uploads/1756323372749_message-question.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M16.0009 44.6397C15.4215 44.6381 14.8513 44.4939 14.3409 44.2197C13.7835 43.9217 13.3178 43.4775 12.9937 42.9349C12.6695 42.3923 12.4992 41.7718 12.5009 41.1397V38.2997C9.66538 38.0984 7.02403 36.7857 5.15134 34.6471C3.27865 32.5085 2.32611 29.717 2.50089 26.8797V14.8797C2.41165 13.3462 2.64799 11.8111 3.19435 10.3754C3.74071 8.93976 4.58474 7.63597 5.67094 6.54976C6.75715 5.46356 8.06094 4.61953 9.49662 4.07317C10.9323 3.52681 12.4674 3.29048 14.0009 3.37971H34.0009C35.5344 3.29048 37.0695 3.52681 38.5052 4.07317C39.9408 4.61953 41.2446 5.46356 42.3308 6.54976C43.417 7.63597 44.2611 8.93976 44.8074 10.3754C45.3538 11.8111 45.5901 13.3462 45.5009 14.8797V26.8797C45.5901 28.4132 45.3538 29.9483 44.8074 31.384C44.2611 32.8197 43.417 34.1235 42.3308 35.2097C41.2446 36.2959 39.9408 37.1399 38.5052 37.6863C37.0695 38.2326 35.5344 38.4689 34.0009 38.3797H26.4609L17.9409 44.0597C17.3641 44.4371 16.6901 44.6386 16.0009 44.6397ZM14.0009 6.35971C12.8644 6.28092 11.7241 6.44676 10.6571 6.84606C9.59013 7.24536 8.62117 7.86882 7.81558 8.67441C7.01 9.47999 6.38654 10.449 5.98724 11.516C5.58794 12.583 5.4221 13.7232 5.50089 14.8597V26.8597C5.4221 27.9963 5.58794 29.1365 5.98724 30.2035C6.38654 31.2705 7.01 32.2394 7.81558 33.045C8.62117 33.8506 9.59013 34.4741 10.6571 34.8734C11.7241 35.2727 12.8644 35.4385 14.0009 35.3597C14.3979 35.3623 14.7779 35.5212 15.0587 35.8019C15.3394 36.0827 15.4983 36.4627 15.5009 36.8597V41.1197C15.5012 41.2104 15.526 41.2994 15.5726 41.3772C15.6193 41.455 15.6861 41.5188 15.7659 41.5618C15.8458 41.6048 15.9358 41.6254 16.0264 41.6215C16.1171 41.6177 16.205 41.5894 16.2809 41.5397L25.1809 35.6197C25.4297 35.4534 25.7216 35.363 26.0209 35.3597H34.0209C35.1574 35.4385 36.2976 35.2727 37.3646 34.8734C38.4316 34.4741 39.4006 33.8506 40.2062 33.045C41.0118 32.2394 41.6352 31.2705 42.0345 30.2035C42.4338 29.1365 42.5997 27.9963 42.5209 26.8597V14.8597C42.5997 13.7232 42.4338 12.583 42.0345 11.516C41.6352 10.449 41.0118 9.47999 40.2062 8.67441C39.4006 7.86882 38.4316 7.24536 37.3646 6.84606C36.2976 6.44676 35.1574 6.28092 34.0209 6.35971H14.0009Z" fill="#1D79BE"/>
-<path d="M23.9997 24.2207C23.6027 24.2181 23.2227 24.0592 22.9419 23.7785C22.6612 23.4977 22.5023 23.1177 22.4997 22.7207V22.3007C22.5235 21.5048 22.7511 20.7282 23.1608 20.0454C23.5705 19.3626 24.1486 18.7963 24.8397 18.4007C25.5797 17.9007 25.8197 17.5607 25.8197 17.0407C25.8197 16.8017 25.7726 16.565 25.6811 16.3442C25.5897 16.1234 25.4556 15.9228 25.2866 15.7538C25.1176 15.5848 24.917 15.4507 24.6962 15.3592C24.4754 15.2678 24.2387 15.2207 23.9997 15.2207C23.7607 15.2207 23.524 15.2678 23.3032 15.3592C23.0824 15.4507 22.8818 15.5848 22.7128 15.7538C22.5438 15.9228 22.4097 16.1234 22.3182 16.3442C22.2268 16.565 22.1797 16.8017 22.1797 17.0407C22.1771 17.4377 22.0182 17.8177 21.7375 18.0985C21.4567 18.3792 21.0767 18.5381 20.6797 18.5407C20.2827 18.5381 19.9027 18.3792 19.6219 18.0985C19.3412 17.8177 19.1823 17.4377 19.1797 17.0407C19.1797 15.7624 19.6875 14.5364 20.5914 13.6324C21.4954 12.7285 22.7213 12.2207 23.9997 12.2207C25.278 12.2207 26.504 12.7285 27.4079 13.6324C28.3119 14.5364 28.8197 15.7624 28.8197 17.0407C28.7961 17.8239 28.5724 18.588 28.1697 19.2602C27.7671 19.9324 27.1991 20.4903 26.5197 20.8807C25.7397 21.4007 25.4997 21.7407 25.4997 22.3007V22.7207C25.5 22.9178 25.4613 23.1129 25.386 23.295C25.3108 23.4771 25.2003 23.6426 25.0609 23.7819C24.9216 23.9213 24.7561 24.0318 24.574 24.1071C24.3919 24.1823 24.1967 24.221 23.9997 24.2207Z" fill="#1D79BE"/>
-<path d="M24 29.1992C23.7033 29.1992 23.4133 29.1112 23.1666 28.9464C22.92 28.7816 22.7277 28.5473 22.6142 28.2732C22.5006 27.9992 22.4709 27.6976 22.5288 27.4066C22.5867 27.1156 22.7296 26.8483 22.9393 26.6386C23.1491 26.4288 23.4164 26.2859 23.7074 26.228C23.9983 26.1702 24.2999 26.1999 24.574 26.3134C24.8481 26.4269 25.0824 26.6192 25.2472 26.8659C25.412 27.1125 25.5 27.4025 25.5 27.6992C25.5003 27.8963 25.4616 28.0914 25.3864 28.2736C25.3111 28.4557 25.2006 28.6211 25.0612 28.7605C24.9219 28.8998 24.7564 29.0103 24.5743 29.0856C24.3922 29.1609 24.1971 29.1995 24 29.1992Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756323377925_message-question.svg
===================================================================
--- uploads/1756323377925_message-question.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M16.0009 44.6397C15.4215 44.6381 14.8513 44.4939 14.3409 44.2197C13.7835 43.9217 13.3178 43.4775 12.9937 42.9349C12.6695 42.3923 12.4992 41.7718 12.5009 41.1397V38.2997C9.66538 38.0984 7.02403 36.7857 5.15134 34.6471C3.27865 32.5085 2.32611 29.717 2.50089 26.8797V14.8797C2.41165 13.3462 2.64799 11.8111 3.19435 10.3754C3.74071 8.93976 4.58474 7.63597 5.67094 6.54976C6.75715 5.46356 8.06094 4.61953 9.49662 4.07317C10.9323 3.52681 12.4674 3.29048 14.0009 3.37971H34.0009C35.5344 3.29048 37.0695 3.52681 38.5052 4.07317C39.9408 4.61953 41.2446 5.46356 42.3308 6.54976C43.417 7.63597 44.2611 8.93976 44.8074 10.3754C45.3538 11.8111 45.5901 13.3462 45.5009 14.8797V26.8797C45.5901 28.4132 45.3538 29.9483 44.8074 31.384C44.2611 32.8197 43.417 34.1235 42.3308 35.2097C41.2446 36.2959 39.9408 37.1399 38.5052 37.6863C37.0695 38.2326 35.5344 38.4689 34.0009 38.3797H26.4609L17.9409 44.0597C17.3641 44.4371 16.6901 44.6386 16.0009 44.6397ZM14.0009 6.35971C12.8644 6.28092 11.7241 6.44676 10.6571 6.84606C9.59013 7.24536 8.62117 7.86882 7.81558 8.67441C7.01 9.47999 6.38654 10.449 5.98724 11.516C5.58794 12.583 5.4221 13.7232 5.50089 14.8597V26.8597C5.4221 27.9963 5.58794 29.1365 5.98724 30.2035C6.38654 31.2705 7.01 32.2394 7.81558 33.045C8.62117 33.8506 9.59013 34.4741 10.6571 34.8734C11.7241 35.2727 12.8644 35.4385 14.0009 35.3597C14.3979 35.3623 14.7779 35.5212 15.0587 35.8019C15.3394 36.0827 15.4983 36.4627 15.5009 36.8597V41.1197C15.5012 41.2104 15.526 41.2994 15.5726 41.3772C15.6193 41.455 15.6861 41.5188 15.7659 41.5618C15.8458 41.6048 15.9358 41.6254 16.0264 41.6215C16.1171 41.6177 16.205 41.5894 16.2809 41.5397L25.1809 35.6197C25.4297 35.4534 25.7216 35.363 26.0209 35.3597H34.0209C35.1574 35.4385 36.2976 35.2727 37.3646 34.8734C38.4316 34.4741 39.4006 33.8506 40.2062 33.045C41.0118 32.2394 41.6352 31.2705 42.0345 30.2035C42.4338 29.1365 42.5997 27.9963 42.5209 26.8597V14.8597C42.5997 13.7232 42.4338 12.583 42.0345 11.516C41.6352 10.449 41.0118 9.47999 40.2062 8.67441C39.4006 7.86882 38.4316 7.24536 37.3646 6.84606C36.2976 6.44676 35.1574 6.28092 34.0209 6.35971H14.0009Z" fill="#1D79BE"/>
-<path d="M23.9997 24.2207C23.6027 24.2181 23.2227 24.0592 22.9419 23.7785C22.6612 23.4977 22.5023 23.1177 22.4997 22.7207V22.3007C22.5235 21.5048 22.7511 20.7282 23.1608 20.0454C23.5705 19.3626 24.1486 18.7963 24.8397 18.4007C25.5797 17.9007 25.8197 17.5607 25.8197 17.0407C25.8197 16.8017 25.7726 16.565 25.6811 16.3442C25.5897 16.1234 25.4556 15.9228 25.2866 15.7538C25.1176 15.5848 24.917 15.4507 24.6962 15.3592C24.4754 15.2678 24.2387 15.2207 23.9997 15.2207C23.7607 15.2207 23.524 15.2678 23.3032 15.3592C23.0824 15.4507 22.8818 15.5848 22.7128 15.7538C22.5438 15.9228 22.4097 16.1234 22.3182 16.3442C22.2268 16.565 22.1797 16.8017 22.1797 17.0407C22.1771 17.4377 22.0182 17.8177 21.7375 18.0985C21.4567 18.3792 21.0767 18.5381 20.6797 18.5407C20.2827 18.5381 19.9027 18.3792 19.6219 18.0985C19.3412 17.8177 19.1823 17.4377 19.1797 17.0407C19.1797 15.7624 19.6875 14.5364 20.5914 13.6324C21.4954 12.7285 22.7213 12.2207 23.9997 12.2207C25.278 12.2207 26.504 12.7285 27.4079 13.6324C28.3119 14.5364 28.8197 15.7624 28.8197 17.0407C28.7961 17.8239 28.5724 18.588 28.1697 19.2602C27.7671 19.9324 27.1991 20.4903 26.5197 20.8807C25.7397 21.4007 25.4997 21.7407 25.4997 22.3007V22.7207C25.5 22.9178 25.4613 23.1129 25.386 23.295C25.3108 23.4771 25.2003 23.6426 25.0609 23.7819C24.9216 23.9213 24.7561 24.0318 24.574 24.1071C24.3919 24.1823 24.1967 24.221 23.9997 24.2207Z" fill="#1D79BE"/>
-<path d="M24 29.1992C23.7033 29.1992 23.4133 29.1112 23.1666 28.9464C22.92 28.7816 22.7277 28.5473 22.6142 28.2732C22.5006 27.9992 22.4709 27.6976 22.5288 27.4066C22.5867 27.1156 22.7296 26.8483 22.9393 26.6386C23.1491 26.4288 23.4164 26.2859 23.7074 26.228C23.9983 26.1702 24.2999 26.1999 24.574 26.3134C24.8481 26.4269 25.0824 26.6192 25.2472 26.8659C25.412 27.1125 25.5 27.4025 25.5 27.6992C25.5003 27.8963 25.4616 28.0914 25.3864 28.2736C25.3111 28.4557 25.2006 28.6211 25.0612 28.7605C24.9219 28.8998 24.7564 29.0103 24.5743 29.0856C24.3922 29.1609 24.1971 29.1995 24 29.1992Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756323384799_import.svg
===================================================================
--- uploads/1756323384799_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756323390623_message-question-white.svg
===================================================================
--- uploads/1756323390623_message-question-white.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M6.66696 18.5999C6.42553 18.5992 6.18798 18.5391 5.97529 18.4249C5.74306 18.3007 5.54901 18.1157 5.41395 17.8896C5.27889 17.6635 5.20791 17.4049 5.20862 17.1416V15.9582C4.02716 15.8744 2.9266 15.3274 2.14631 14.4363C1.36602 13.5452 0.96913 12.3821 1.04196 11.1999V6.1999C1.00477 5.56093 1.10325 4.92132 1.3309 4.32312C1.55855 3.72492 1.91023 3.18167 2.36281 2.72909C2.8154 2.2765 3.35864 1.92483 3.95684 1.69717C4.55504 1.46952 5.19465 1.37105 5.83362 1.40823H14.167C14.8059 1.37105 15.4455 1.46952 16.0437 1.69717C16.6419 1.92483 17.1852 2.2765 17.6378 2.72909C18.0904 3.18167 18.442 3.72492 18.6697 4.32312C18.8973 4.92132 18.9958 5.56093 18.9586 6.1999V11.1999C18.9958 11.8389 18.8973 12.4785 18.6697 13.0767C18.442 13.6749 18.0904 14.2181 17.6378 14.6707C17.1852 15.1233 16.6419 15.475 16.0437 15.7026C15.4455 15.9303 14.8059 16.0287 14.167 15.9916H11.0253L7.47529 18.3582C7.23498 18.5155 6.95413 18.5994 6.66696 18.5999ZM5.83362 2.6499C5.36007 2.61707 4.88497 2.68617 4.44039 2.85255C3.99581 3.01892 3.59207 3.2787 3.25641 3.61436C2.92075 3.95002 2.66098 4.35375 2.4946 4.79833C2.32823 5.24292 2.25913 5.71801 2.29196 6.19157V11.1916C2.25913 11.6651 2.32823 12.1402 2.4946 12.5848C2.66098 13.0294 2.92075 13.4331 3.25641 13.7688C3.59207 14.1044 3.99581 14.3642 4.44039 14.5306C4.88497 14.697 5.36007 14.7661 5.83362 14.7332C5.99905 14.7343 6.15738 14.8005 6.27436 14.9175C6.39133 15.0345 6.45753 15.1928 6.45862 15.3582V17.1332C6.45875 17.171 6.46908 17.2081 6.48852 17.2405C6.50795 17.2729 6.53578 17.2995 6.56906 17.3174C6.60234 17.3353 6.63984 17.3439 6.67761 17.3423C6.71537 17.3407 6.752 17.3289 6.78362 17.3082L10.492 14.8416C10.5956 14.7723 10.7172 14.7346 10.842 14.7332H14.1753C14.6488 14.7661 15.1239 14.697 15.5685 14.5306C16.0131 14.3642 16.4168 14.1044 16.7525 13.7688C17.0882 13.4331 17.3479 13.0294 17.5143 12.5848C17.6807 12.1402 17.7498 11.6651 17.717 11.1916V6.19157C17.7498 5.71801 17.6807 5.24292 17.5143 4.79833C17.3479 4.35375 17.0882 3.95002 16.7525 3.61436C16.4168 3.2787 16.0131 3.01892 15.5685 2.85255C15.1239 2.68617 14.6488 2.61707 14.1753 2.6499H5.83362Z" fill="white"/>
-<path d="M9.99979 10.092C9.83437 10.0909 9.67603 10.0247 9.55905 9.90772C9.44208 9.79074 9.37588 9.6324 9.37479 9.46698V9.29198C9.38471 8.96033 9.47956 8.63678 9.65027 8.35227C9.82097 8.06775 10.0618 7.8318 10.3498 7.66698C10.6581 7.45865 10.7581 7.31698 10.7581 7.10031C10.7581 7.00073 10.7385 6.90212 10.7004 6.81011C10.6623 6.71811 10.6064 6.63451 10.536 6.56409C10.4656 6.49367 10.382 6.43781 10.29 6.3997C10.198 6.36159 10.0994 6.34198 9.99979 6.34198C9.9002 6.34198 9.80159 6.36159 9.70959 6.3997C9.61758 6.43781 9.53398 6.49367 9.46357 6.56409C9.39315 6.63451 9.33729 6.71811 9.29918 6.81011C9.26107 6.90212 9.24146 7.00073 9.24146 7.10031C9.24036 7.26574 9.17416 7.42407 9.05719 7.54105C8.94022 7.65802 8.78188 7.72422 8.61646 7.72531C8.45103 7.72422 8.29269 7.65802 8.17572 7.54105C8.05875 7.42407 7.99255 7.26574 7.99146 7.10031C7.99146 6.56767 8.20305 6.05684 8.57968 5.68021C8.95632 5.30357 9.46715 5.09198 9.99979 5.09198C10.5324 5.09198 11.0433 5.30357 11.4199 5.68021C11.7965 6.05684 12.0081 6.56767 12.0081 7.10031C11.9983 7.42665 11.9051 7.74503 11.7373 8.02511C11.5696 8.3052 11.3329 8.53765 11.0498 8.70031C10.7248 8.91698 10.6248 9.05865 10.6248 9.29198V9.46698C10.6249 9.54909 10.6088 9.63041 10.5774 9.70629C10.5461 9.78217 10.5 9.85111 10.442 9.90917C10.3839 9.96723 10.315 10.0133 10.2391 10.0446C10.1632 10.076 10.0819 10.0921 9.99979 10.092Z" fill="white"/>
-<path d="M10 12.1663C9.87639 12.1663 9.75555 12.1297 9.65277 12.061C9.54999 11.9923 9.46988 11.8947 9.42258 11.7805C9.37527 11.6663 9.36289 11.5406 9.38701 11.4194C9.41113 11.2982 9.47065 11.1868 9.55806 11.0994C9.64547 11.012 9.75683 10.9524 9.87807 10.9283C9.99931 10.9042 10.125 10.9166 10.2392 10.9639C10.3534 11.0112 10.451 11.0913 10.5197 11.1941C10.5883 11.2969 10.625 11.4177 10.625 11.5413C10.6251 11.6234 10.609 11.7048 10.5776 11.7806C10.5463 11.8565 10.5002 11.9254 10.4422 11.9835C10.3841 12.0416 10.3152 12.0876 10.2393 12.119C10.1634 12.1503 10.0821 12.1664 10 12.1663Z" fill="white"/>
-</svg>
Index: loads/1756331912999_message-question.svg
===================================================================
--- uploads/1756331912999_message-question.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M16.0009 44.6397C15.4215 44.6381 14.8513 44.4939 14.3409 44.2197C13.7835 43.9217 13.3178 43.4775 12.9937 42.9349C12.6695 42.3923 12.4992 41.7718 12.5009 41.1397V38.2997C9.66538 38.0984 7.02403 36.7857 5.15134 34.6471C3.27865 32.5085 2.32611 29.717 2.50089 26.8797V14.8797C2.41165 13.3462 2.64799 11.8111 3.19435 10.3754C3.74071 8.93976 4.58474 7.63597 5.67094 6.54976C6.75715 5.46356 8.06094 4.61953 9.49662 4.07317C10.9323 3.52681 12.4674 3.29048 14.0009 3.37971H34.0009C35.5344 3.29048 37.0695 3.52681 38.5052 4.07317C39.9408 4.61953 41.2446 5.46356 42.3308 6.54976C43.417 7.63597 44.2611 8.93976 44.8074 10.3754C45.3538 11.8111 45.5901 13.3462 45.5009 14.8797V26.8797C45.5901 28.4132 45.3538 29.9483 44.8074 31.384C44.2611 32.8197 43.417 34.1235 42.3308 35.2097C41.2446 36.2959 39.9408 37.1399 38.5052 37.6863C37.0695 38.2326 35.5344 38.4689 34.0009 38.3797H26.4609L17.9409 44.0597C17.3641 44.4371 16.6901 44.6386 16.0009 44.6397ZM14.0009 6.35971C12.8644 6.28092 11.7241 6.44676 10.6571 6.84606C9.59013 7.24536 8.62117 7.86882 7.81558 8.67441C7.01 9.47999 6.38654 10.449 5.98724 11.516C5.58794 12.583 5.4221 13.7232 5.50089 14.8597V26.8597C5.4221 27.9963 5.58794 29.1365 5.98724 30.2035C6.38654 31.2705 7.01 32.2394 7.81558 33.045C8.62117 33.8506 9.59013 34.4741 10.6571 34.8734C11.7241 35.2727 12.8644 35.4385 14.0009 35.3597C14.3979 35.3623 14.7779 35.5212 15.0587 35.8019C15.3394 36.0827 15.4983 36.4627 15.5009 36.8597V41.1197C15.5012 41.2104 15.526 41.2994 15.5726 41.3772C15.6193 41.455 15.6861 41.5188 15.7659 41.5618C15.8458 41.6048 15.9358 41.6254 16.0264 41.6215C16.1171 41.6177 16.205 41.5894 16.2809 41.5397L25.1809 35.6197C25.4297 35.4534 25.7216 35.363 26.0209 35.3597H34.0209C35.1574 35.4385 36.2976 35.2727 37.3646 34.8734C38.4316 34.4741 39.4006 33.8506 40.2062 33.045C41.0118 32.2394 41.6352 31.2705 42.0345 30.2035C42.4338 29.1365 42.5997 27.9963 42.5209 26.8597V14.8597C42.5997 13.7232 42.4338 12.583 42.0345 11.516C41.6352 10.449 41.0118 9.47999 40.2062 8.67441C39.4006 7.86882 38.4316 7.24536 37.3646 6.84606C36.2976 6.44676 35.1574 6.28092 34.0209 6.35971H14.0009Z" fill="#1D79BE"/>
-<path d="M23.9997 24.2207C23.6027 24.2181 23.2227 24.0592 22.9419 23.7785C22.6612 23.4977 22.5023 23.1177 22.4997 22.7207V22.3007C22.5235 21.5048 22.7511 20.7282 23.1608 20.0454C23.5705 19.3626 24.1486 18.7963 24.8397 18.4007C25.5797 17.9007 25.8197 17.5607 25.8197 17.0407C25.8197 16.8017 25.7726 16.565 25.6811 16.3442C25.5897 16.1234 25.4556 15.9228 25.2866 15.7538C25.1176 15.5848 24.917 15.4507 24.6962 15.3592C24.4754 15.2678 24.2387 15.2207 23.9997 15.2207C23.7607 15.2207 23.524 15.2678 23.3032 15.3592C23.0824 15.4507 22.8818 15.5848 22.7128 15.7538C22.5438 15.9228 22.4097 16.1234 22.3182 16.3442C22.2268 16.565 22.1797 16.8017 22.1797 17.0407C22.1771 17.4377 22.0182 17.8177 21.7375 18.0985C21.4567 18.3792 21.0767 18.5381 20.6797 18.5407C20.2827 18.5381 19.9027 18.3792 19.6219 18.0985C19.3412 17.8177 19.1823 17.4377 19.1797 17.0407C19.1797 15.7624 19.6875 14.5364 20.5914 13.6324C21.4954 12.7285 22.7213 12.2207 23.9997 12.2207C25.278 12.2207 26.504 12.7285 27.4079 13.6324C28.3119 14.5364 28.8197 15.7624 28.8197 17.0407C28.7961 17.8239 28.5724 18.588 28.1697 19.2602C27.7671 19.9324 27.1991 20.4903 26.5197 20.8807C25.7397 21.4007 25.4997 21.7407 25.4997 22.3007V22.7207C25.5 22.9178 25.4613 23.1129 25.386 23.295C25.3108 23.4771 25.2003 23.6426 25.0609 23.7819C24.9216 23.9213 24.7561 24.0318 24.574 24.1071C24.3919 24.1823 24.1967 24.221 23.9997 24.2207Z" fill="#1D79BE"/>
-<path d="M24 29.1992C23.7033 29.1992 23.4133 29.1112 23.1666 28.9464C22.92 28.7816 22.7277 28.5473 22.6142 28.2732C22.5006 27.9992 22.4709 27.6976 22.5288 27.4066C22.5867 27.1156 22.7296 26.8483 22.9393 26.6386C23.1491 26.4288 23.4164 26.2859 23.7074 26.228C23.9983 26.1702 24.2999 26.1999 24.574 26.3134C24.8481 26.4269 25.0824 26.6192 25.2472 26.8659C25.412 27.1125 25.5 27.4025 25.5 27.6992C25.5003 27.8963 25.4616 28.0914 25.3864 28.2736C25.3111 28.4557 25.2006 28.6211 25.0612 28.7605C24.9219 28.8998 24.7564 29.0103 24.5743 29.0856C24.3922 29.1609 24.1971 29.1995 24 29.1992Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756331913013_import.svg
===================================================================
--- uploads/1756331913013_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756331913021_message-question-white.svg
===================================================================
--- uploads/1756331913021_message-question-white.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M6.66696 18.5999C6.42553 18.5992 6.18798 18.5391 5.97529 18.4249C5.74306 18.3007 5.54901 18.1157 5.41395 17.8896C5.27889 17.6635 5.20791 17.4049 5.20862 17.1416V15.9582C4.02716 15.8744 2.9266 15.3274 2.14631 14.4363C1.36602 13.5452 0.96913 12.3821 1.04196 11.1999V6.1999C1.00477 5.56093 1.10325 4.92132 1.3309 4.32312C1.55855 3.72492 1.91023 3.18167 2.36281 2.72909C2.8154 2.2765 3.35864 1.92483 3.95684 1.69717C4.55504 1.46952 5.19465 1.37105 5.83362 1.40823H14.167C14.8059 1.37105 15.4455 1.46952 16.0437 1.69717C16.6419 1.92483 17.1852 2.2765 17.6378 2.72909C18.0904 3.18167 18.442 3.72492 18.6697 4.32312C18.8973 4.92132 18.9958 5.56093 18.9586 6.1999V11.1999C18.9958 11.8389 18.8973 12.4785 18.6697 13.0767C18.442 13.6749 18.0904 14.2181 17.6378 14.6707C17.1852 15.1233 16.6419 15.475 16.0437 15.7026C15.4455 15.9303 14.8059 16.0287 14.167 15.9916H11.0253L7.47529 18.3582C7.23498 18.5155 6.95413 18.5994 6.66696 18.5999ZM5.83362 2.6499C5.36007 2.61707 4.88497 2.68617 4.44039 2.85255C3.99581 3.01892 3.59207 3.2787 3.25641 3.61436C2.92075 3.95002 2.66098 4.35375 2.4946 4.79833C2.32823 5.24292 2.25913 5.71801 2.29196 6.19157V11.1916C2.25913 11.6651 2.32823 12.1402 2.4946 12.5848C2.66098 13.0294 2.92075 13.4331 3.25641 13.7688C3.59207 14.1044 3.99581 14.3642 4.44039 14.5306C4.88497 14.697 5.36007 14.7661 5.83362 14.7332C5.99905 14.7343 6.15738 14.8005 6.27436 14.9175C6.39133 15.0345 6.45753 15.1928 6.45862 15.3582V17.1332C6.45875 17.171 6.46908 17.2081 6.48852 17.2405C6.50795 17.2729 6.53578 17.2995 6.56906 17.3174C6.60234 17.3353 6.63984 17.3439 6.67761 17.3423C6.71537 17.3407 6.752 17.3289 6.78362 17.3082L10.492 14.8416C10.5956 14.7723 10.7172 14.7346 10.842 14.7332H14.1753C14.6488 14.7661 15.1239 14.697 15.5685 14.5306C16.0131 14.3642 16.4168 14.1044 16.7525 13.7688C17.0882 13.4331 17.3479 13.0294 17.5143 12.5848C17.6807 12.1402 17.7498 11.6651 17.717 11.1916V6.19157C17.7498 5.71801 17.6807 5.24292 17.5143 4.79833C17.3479 4.35375 17.0882 3.95002 16.7525 3.61436C16.4168 3.2787 16.0131 3.01892 15.5685 2.85255C15.1239 2.68617 14.6488 2.61707 14.1753 2.6499H5.83362Z" fill="white"/>
-<path d="M9.99979 10.092C9.83437 10.0909 9.67603 10.0247 9.55905 9.90772C9.44208 9.79074 9.37588 9.6324 9.37479 9.46698V9.29198C9.38471 8.96033 9.47956 8.63678 9.65027 8.35227C9.82097 8.06775 10.0618 7.8318 10.3498 7.66698C10.6581 7.45865 10.7581 7.31698 10.7581 7.10031C10.7581 7.00073 10.7385 6.90212 10.7004 6.81011C10.6623 6.71811 10.6064 6.63451 10.536 6.56409C10.4656 6.49367 10.382 6.43781 10.29 6.3997C10.198 6.36159 10.0994 6.34198 9.99979 6.34198C9.9002 6.34198 9.80159 6.36159 9.70959 6.3997C9.61758 6.43781 9.53398 6.49367 9.46357 6.56409C9.39315 6.63451 9.33729 6.71811 9.29918 6.81011C9.26107 6.90212 9.24146 7.00073 9.24146 7.10031C9.24036 7.26574 9.17416 7.42407 9.05719 7.54105C8.94022 7.65802 8.78188 7.72422 8.61646 7.72531C8.45103 7.72422 8.29269 7.65802 8.17572 7.54105C8.05875 7.42407 7.99255 7.26574 7.99146 7.10031C7.99146 6.56767 8.20305 6.05684 8.57968 5.68021C8.95632 5.30357 9.46715 5.09198 9.99979 5.09198C10.5324 5.09198 11.0433 5.30357 11.4199 5.68021C11.7965 6.05684 12.0081 6.56767 12.0081 7.10031C11.9983 7.42665 11.9051 7.74503 11.7373 8.02511C11.5696 8.3052 11.3329 8.53765 11.0498 8.70031C10.7248 8.91698 10.6248 9.05865 10.6248 9.29198V9.46698C10.6249 9.54909 10.6088 9.63041 10.5774 9.70629C10.5461 9.78217 10.5 9.85111 10.442 9.90917C10.3839 9.96723 10.315 10.0133 10.2391 10.0446C10.1632 10.076 10.0819 10.0921 9.99979 10.092Z" fill="white"/>
-<path d="M10 12.1663C9.87639 12.1663 9.75555 12.1297 9.65277 12.061C9.54999 11.9923 9.46988 11.8947 9.42258 11.7805C9.37527 11.6663 9.36289 11.5406 9.38701 11.4194C9.41113 11.2982 9.47065 11.1868 9.55806 11.0994C9.64547 11.012 9.75683 10.9524 9.87807 10.9283C9.99931 10.9042 10.125 10.9166 10.2392 10.9639C10.3534 11.0112 10.451 11.0913 10.5197 11.1941C10.5883 11.2969 10.625 11.4177 10.625 11.5413C10.6251 11.6234 10.609 11.7048 10.5776 11.7806C10.5463 11.8565 10.5002 11.9254 10.4422 11.9835C10.3841 12.0416 10.3152 12.0876 10.2393 12.119C10.1634 12.1503 10.0821 12.1664 10 12.1663Z" fill="white"/>
-</svg>
Index: loads/1756331913029_message-question.svg
===================================================================
--- uploads/1756331913029_message-question.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M16.0009 44.6397C15.4215 44.6381 14.8513 44.4939 14.3409 44.2197C13.7835 43.9217 13.3178 43.4775 12.9937 42.9349C12.6695 42.3923 12.4992 41.7718 12.5009 41.1397V38.2997C9.66538 38.0984 7.02403 36.7857 5.15134 34.6471C3.27865 32.5085 2.32611 29.717 2.50089 26.8797V14.8797C2.41165 13.3462 2.64799 11.8111 3.19435 10.3754C3.74071 8.93976 4.58474 7.63597 5.67094 6.54976C6.75715 5.46356 8.06094 4.61953 9.49662 4.07317C10.9323 3.52681 12.4674 3.29048 14.0009 3.37971H34.0009C35.5344 3.29048 37.0695 3.52681 38.5052 4.07317C39.9408 4.61953 41.2446 5.46356 42.3308 6.54976C43.417 7.63597 44.2611 8.93976 44.8074 10.3754C45.3538 11.8111 45.5901 13.3462 45.5009 14.8797V26.8797C45.5901 28.4132 45.3538 29.9483 44.8074 31.384C44.2611 32.8197 43.417 34.1235 42.3308 35.2097C41.2446 36.2959 39.9408 37.1399 38.5052 37.6863C37.0695 38.2326 35.5344 38.4689 34.0009 38.3797H26.4609L17.9409 44.0597C17.3641 44.4371 16.6901 44.6386 16.0009 44.6397ZM14.0009 6.35971C12.8644 6.28092 11.7241 6.44676 10.6571 6.84606C9.59013 7.24536 8.62117 7.86882 7.81558 8.67441C7.01 9.47999 6.38654 10.449 5.98724 11.516C5.58794 12.583 5.4221 13.7232 5.50089 14.8597V26.8597C5.4221 27.9963 5.58794 29.1365 5.98724 30.2035C6.38654 31.2705 7.01 32.2394 7.81558 33.045C8.62117 33.8506 9.59013 34.4741 10.6571 34.8734C11.7241 35.2727 12.8644 35.4385 14.0009 35.3597C14.3979 35.3623 14.7779 35.5212 15.0587 35.8019C15.3394 36.0827 15.4983 36.4627 15.5009 36.8597V41.1197C15.5012 41.2104 15.526 41.2994 15.5726 41.3772C15.6193 41.455 15.6861 41.5188 15.7659 41.5618C15.8458 41.6048 15.9358 41.6254 16.0264 41.6215C16.1171 41.6177 16.205 41.5894 16.2809 41.5397L25.1809 35.6197C25.4297 35.4534 25.7216 35.363 26.0209 35.3597H34.0209C35.1574 35.4385 36.2976 35.2727 37.3646 34.8734C38.4316 34.4741 39.4006 33.8506 40.2062 33.045C41.0118 32.2394 41.6352 31.2705 42.0345 30.2035C42.4338 29.1365 42.5997 27.9963 42.5209 26.8597V14.8597C42.5997 13.7232 42.4338 12.583 42.0345 11.516C41.6352 10.449 41.0118 9.47999 40.2062 8.67441C39.4006 7.86882 38.4316 7.24536 37.3646 6.84606C36.2976 6.44676 35.1574 6.28092 34.0209 6.35971H14.0009Z" fill="#1D79BE"/>
-<path d="M23.9997 24.2207C23.6027 24.2181 23.2227 24.0592 22.9419 23.7785C22.6612 23.4977 22.5023 23.1177 22.4997 22.7207V22.3007C22.5235 21.5048 22.7511 20.7282 23.1608 20.0454C23.5705 19.3626 24.1486 18.7963 24.8397 18.4007C25.5797 17.9007 25.8197 17.5607 25.8197 17.0407C25.8197 16.8017 25.7726 16.565 25.6811 16.3442C25.5897 16.1234 25.4556 15.9228 25.2866 15.7538C25.1176 15.5848 24.917 15.4507 24.6962 15.3592C24.4754 15.2678 24.2387 15.2207 23.9997 15.2207C23.7607 15.2207 23.524 15.2678 23.3032 15.3592C23.0824 15.4507 22.8818 15.5848 22.7128 15.7538C22.5438 15.9228 22.4097 16.1234 22.3182 16.3442C22.2268 16.565 22.1797 16.8017 22.1797 17.0407C22.1771 17.4377 22.0182 17.8177 21.7375 18.0985C21.4567 18.3792 21.0767 18.5381 20.6797 18.5407C20.2827 18.5381 19.9027 18.3792 19.6219 18.0985C19.3412 17.8177 19.1823 17.4377 19.1797 17.0407C19.1797 15.7624 19.6875 14.5364 20.5914 13.6324C21.4954 12.7285 22.7213 12.2207 23.9997 12.2207C25.278 12.2207 26.504 12.7285 27.4079 13.6324C28.3119 14.5364 28.8197 15.7624 28.8197 17.0407C28.7961 17.8239 28.5724 18.588 28.1697 19.2602C27.7671 19.9324 27.1991 20.4903 26.5197 20.8807C25.7397 21.4007 25.4997 21.7407 25.4997 22.3007V22.7207C25.5 22.9178 25.4613 23.1129 25.386 23.295C25.3108 23.4771 25.2003 23.6426 25.0609 23.7819C24.9216 23.9213 24.7561 24.0318 24.574 24.1071C24.3919 24.1823 24.1967 24.221 23.9997 24.2207Z" fill="#1D79BE"/>
-<path d="M24 29.1992C23.7033 29.1992 23.4133 29.1112 23.1666 28.9464C22.92 28.7816 22.7277 28.5473 22.6142 28.2732C22.5006 27.9992 22.4709 27.6976 22.5288 27.4066C22.5867 27.1156 22.7296 26.8483 22.9393 26.6386C23.1491 26.4288 23.4164 26.2859 23.7074 26.228C23.9983 26.1702 24.2999 26.1999 24.574 26.3134C24.8481 26.4269 25.0824 26.6192 25.2472 26.8659C25.412 27.1125 25.5 27.4025 25.5 27.6992C25.5003 27.8963 25.4616 28.0914 25.3864 28.2736C25.3111 28.4557 25.2006 28.6211 25.0612 28.7605C24.9219 28.8998 24.7564 29.0103 24.5743 29.0856C24.3922 29.1609 24.1971 29.1995 24 29.1992Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756331913036_import.svg
===================================================================
--- uploads/1756331913036_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756332424074_import.svg
===================================================================
--- uploads/1756332424074_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756332433046_message-question.svg
===================================================================
--- uploads/1756332433046_message-question.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M16.0009 44.6397C15.4215 44.6381 14.8513 44.4939 14.3409 44.2197C13.7835 43.9217 13.3178 43.4775 12.9937 42.9349C12.6695 42.3923 12.4992 41.7718 12.5009 41.1397V38.2997C9.66538 38.0984 7.02403 36.7857 5.15134 34.6471C3.27865 32.5085 2.32611 29.717 2.50089 26.8797V14.8797C2.41165 13.3462 2.64799 11.8111 3.19435 10.3754C3.74071 8.93976 4.58474 7.63597 5.67094 6.54976C6.75715 5.46356 8.06094 4.61953 9.49662 4.07317C10.9323 3.52681 12.4674 3.29048 14.0009 3.37971H34.0009C35.5344 3.29048 37.0695 3.52681 38.5052 4.07317C39.9408 4.61953 41.2446 5.46356 42.3308 6.54976C43.417 7.63597 44.2611 8.93976 44.8074 10.3754C45.3538 11.8111 45.5901 13.3462 45.5009 14.8797V26.8797C45.5901 28.4132 45.3538 29.9483 44.8074 31.384C44.2611 32.8197 43.417 34.1235 42.3308 35.2097C41.2446 36.2959 39.9408 37.1399 38.5052 37.6863C37.0695 38.2326 35.5344 38.4689 34.0009 38.3797H26.4609L17.9409 44.0597C17.3641 44.4371 16.6901 44.6386 16.0009 44.6397ZM14.0009 6.35971C12.8644 6.28092 11.7241 6.44676 10.6571 6.84606C9.59013 7.24536 8.62117 7.86882 7.81558 8.67441C7.01 9.47999 6.38654 10.449 5.98724 11.516C5.58794 12.583 5.4221 13.7232 5.50089 14.8597V26.8597C5.4221 27.9963 5.58794 29.1365 5.98724 30.2035C6.38654 31.2705 7.01 32.2394 7.81558 33.045C8.62117 33.8506 9.59013 34.4741 10.6571 34.8734C11.7241 35.2727 12.8644 35.4385 14.0009 35.3597C14.3979 35.3623 14.7779 35.5212 15.0587 35.8019C15.3394 36.0827 15.4983 36.4627 15.5009 36.8597V41.1197C15.5012 41.2104 15.526 41.2994 15.5726 41.3772C15.6193 41.455 15.6861 41.5188 15.7659 41.5618C15.8458 41.6048 15.9358 41.6254 16.0264 41.6215C16.1171 41.6177 16.205 41.5894 16.2809 41.5397L25.1809 35.6197C25.4297 35.4534 25.7216 35.363 26.0209 35.3597H34.0209C35.1574 35.4385 36.2976 35.2727 37.3646 34.8734C38.4316 34.4741 39.4006 33.8506 40.2062 33.045C41.0118 32.2394 41.6352 31.2705 42.0345 30.2035C42.4338 29.1365 42.5997 27.9963 42.5209 26.8597V14.8597C42.5997 13.7232 42.4338 12.583 42.0345 11.516C41.6352 10.449 41.0118 9.47999 40.2062 8.67441C39.4006 7.86882 38.4316 7.24536 37.3646 6.84606C36.2976 6.44676 35.1574 6.28092 34.0209 6.35971H14.0009Z" fill="#1D79BE"/>
-<path d="M23.9997 24.2207C23.6027 24.2181 23.2227 24.0592 22.9419 23.7785C22.6612 23.4977 22.5023 23.1177 22.4997 22.7207V22.3007C22.5235 21.5048 22.7511 20.7282 23.1608 20.0454C23.5705 19.3626 24.1486 18.7963 24.8397 18.4007C25.5797 17.9007 25.8197 17.5607 25.8197 17.0407C25.8197 16.8017 25.7726 16.565 25.6811 16.3442C25.5897 16.1234 25.4556 15.9228 25.2866 15.7538C25.1176 15.5848 24.917 15.4507 24.6962 15.3592C24.4754 15.2678 24.2387 15.2207 23.9997 15.2207C23.7607 15.2207 23.524 15.2678 23.3032 15.3592C23.0824 15.4507 22.8818 15.5848 22.7128 15.7538C22.5438 15.9228 22.4097 16.1234 22.3182 16.3442C22.2268 16.565 22.1797 16.8017 22.1797 17.0407C22.1771 17.4377 22.0182 17.8177 21.7375 18.0985C21.4567 18.3792 21.0767 18.5381 20.6797 18.5407C20.2827 18.5381 19.9027 18.3792 19.6219 18.0985C19.3412 17.8177 19.1823 17.4377 19.1797 17.0407C19.1797 15.7624 19.6875 14.5364 20.5914 13.6324C21.4954 12.7285 22.7213 12.2207 23.9997 12.2207C25.278 12.2207 26.504 12.7285 27.4079 13.6324C28.3119 14.5364 28.8197 15.7624 28.8197 17.0407C28.7961 17.8239 28.5724 18.588 28.1697 19.2602C27.7671 19.9324 27.1991 20.4903 26.5197 20.8807C25.7397 21.4007 25.4997 21.7407 25.4997 22.3007V22.7207C25.5 22.9178 25.4613 23.1129 25.386 23.295C25.3108 23.4771 25.2003 23.6426 25.0609 23.7819C24.9216 23.9213 24.7561 24.0318 24.574 24.1071C24.3919 24.1823 24.1967 24.221 23.9997 24.2207Z" fill="#1D79BE"/>
-<path d="M24 29.1992C23.7033 29.1992 23.4133 29.1112 23.1666 28.9464C22.92 28.7816 22.7277 28.5473 22.6142 28.2732C22.5006 27.9992 22.4709 27.6976 22.5288 27.4066C22.5867 27.1156 22.7296 26.8483 22.9393 26.6386C23.1491 26.4288 23.4164 26.2859 23.7074 26.228C23.9983 26.1702 24.2999 26.1999 24.574 26.3134C24.8481 26.4269 25.0824 26.6192 25.2472 26.8659C25.412 27.1125 25.5 27.4025 25.5 27.6992C25.5003 27.8963 25.4616 28.0914 25.3864 28.2736C25.3111 28.4557 25.2006 28.6211 25.0612 28.7605C24.9219 28.8998 24.7564 29.0103 24.5743 29.0856C24.3922 29.1609 24.1971 29.1995 24 29.1992Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756332442244_message-question-white.svg
===================================================================
--- uploads/1756332442244_message-question-white.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M6.66696 18.5999C6.42553 18.5992 6.18798 18.5391 5.97529 18.4249C5.74306 18.3007 5.54901 18.1157 5.41395 17.8896C5.27889 17.6635 5.20791 17.4049 5.20862 17.1416V15.9582C4.02716 15.8744 2.9266 15.3274 2.14631 14.4363C1.36602 13.5452 0.96913 12.3821 1.04196 11.1999V6.1999C1.00477 5.56093 1.10325 4.92132 1.3309 4.32312C1.55855 3.72492 1.91023 3.18167 2.36281 2.72909C2.8154 2.2765 3.35864 1.92483 3.95684 1.69717C4.55504 1.46952 5.19465 1.37105 5.83362 1.40823H14.167C14.8059 1.37105 15.4455 1.46952 16.0437 1.69717C16.6419 1.92483 17.1852 2.2765 17.6378 2.72909C18.0904 3.18167 18.442 3.72492 18.6697 4.32312C18.8973 4.92132 18.9958 5.56093 18.9586 6.1999V11.1999C18.9958 11.8389 18.8973 12.4785 18.6697 13.0767C18.442 13.6749 18.0904 14.2181 17.6378 14.6707C17.1852 15.1233 16.6419 15.475 16.0437 15.7026C15.4455 15.9303 14.8059 16.0287 14.167 15.9916H11.0253L7.47529 18.3582C7.23498 18.5155 6.95413 18.5994 6.66696 18.5999ZM5.83362 2.6499C5.36007 2.61707 4.88497 2.68617 4.44039 2.85255C3.99581 3.01892 3.59207 3.2787 3.25641 3.61436C2.92075 3.95002 2.66098 4.35375 2.4946 4.79833C2.32823 5.24292 2.25913 5.71801 2.29196 6.19157V11.1916C2.25913 11.6651 2.32823 12.1402 2.4946 12.5848C2.66098 13.0294 2.92075 13.4331 3.25641 13.7688C3.59207 14.1044 3.99581 14.3642 4.44039 14.5306C4.88497 14.697 5.36007 14.7661 5.83362 14.7332C5.99905 14.7343 6.15738 14.8005 6.27436 14.9175C6.39133 15.0345 6.45753 15.1928 6.45862 15.3582V17.1332C6.45875 17.171 6.46908 17.2081 6.48852 17.2405C6.50795 17.2729 6.53578 17.2995 6.56906 17.3174C6.60234 17.3353 6.63984 17.3439 6.67761 17.3423C6.71537 17.3407 6.752 17.3289 6.78362 17.3082L10.492 14.8416C10.5956 14.7723 10.7172 14.7346 10.842 14.7332H14.1753C14.6488 14.7661 15.1239 14.697 15.5685 14.5306C16.0131 14.3642 16.4168 14.1044 16.7525 13.7688C17.0882 13.4331 17.3479 13.0294 17.5143 12.5848C17.6807 12.1402 17.7498 11.6651 17.717 11.1916V6.19157C17.7498 5.71801 17.6807 5.24292 17.5143 4.79833C17.3479 4.35375 17.0882 3.95002 16.7525 3.61436C16.4168 3.2787 16.0131 3.01892 15.5685 2.85255C15.1239 2.68617 14.6488 2.61707 14.1753 2.6499H5.83362Z" fill="white"/>
-<path d="M9.99979 10.092C9.83437 10.0909 9.67603 10.0247 9.55905 9.90772C9.44208 9.79074 9.37588 9.6324 9.37479 9.46698V9.29198C9.38471 8.96033 9.47956 8.63678 9.65027 8.35227C9.82097 8.06775 10.0618 7.8318 10.3498 7.66698C10.6581 7.45865 10.7581 7.31698 10.7581 7.10031C10.7581 7.00073 10.7385 6.90212 10.7004 6.81011C10.6623 6.71811 10.6064 6.63451 10.536 6.56409C10.4656 6.49367 10.382 6.43781 10.29 6.3997C10.198 6.36159 10.0994 6.34198 9.99979 6.34198C9.9002 6.34198 9.80159 6.36159 9.70959 6.3997C9.61758 6.43781 9.53398 6.49367 9.46357 6.56409C9.39315 6.63451 9.33729 6.71811 9.29918 6.81011C9.26107 6.90212 9.24146 7.00073 9.24146 7.10031C9.24036 7.26574 9.17416 7.42407 9.05719 7.54105C8.94022 7.65802 8.78188 7.72422 8.61646 7.72531C8.45103 7.72422 8.29269 7.65802 8.17572 7.54105C8.05875 7.42407 7.99255 7.26574 7.99146 7.10031C7.99146 6.56767 8.20305 6.05684 8.57968 5.68021C8.95632 5.30357 9.46715 5.09198 9.99979 5.09198C10.5324 5.09198 11.0433 5.30357 11.4199 5.68021C11.7965 6.05684 12.0081 6.56767 12.0081 7.10031C11.9983 7.42665 11.9051 7.74503 11.7373 8.02511C11.5696 8.3052 11.3329 8.53765 11.0498 8.70031C10.7248 8.91698 10.6248 9.05865 10.6248 9.29198V9.46698C10.6249 9.54909 10.6088 9.63041 10.5774 9.70629C10.5461 9.78217 10.5 9.85111 10.442 9.90917C10.3839 9.96723 10.315 10.0133 10.2391 10.0446C10.1632 10.076 10.0819 10.0921 9.99979 10.092Z" fill="white"/>
-<path d="M10 12.1663C9.87639 12.1663 9.75555 12.1297 9.65277 12.061C9.54999 11.9923 9.46988 11.8947 9.42258 11.7805C9.37527 11.6663 9.36289 11.5406 9.38701 11.4194C9.41113 11.2982 9.47065 11.1868 9.55806 11.0994C9.64547 11.012 9.75683 10.9524 9.87807 10.9283C9.99931 10.9042 10.125 10.9166 10.2392 10.9639C10.3534 11.0112 10.451 11.0913 10.5197 11.1941C10.5883 11.2969 10.625 11.4177 10.625 11.5413C10.6251 11.6234 10.609 11.7048 10.5776 11.7806C10.5463 11.8565 10.5002 11.9254 10.4422 11.9835C10.3841 12.0416 10.3152 12.0876 10.2393 12.119C10.1634 12.1503 10.0821 12.1664 10 12.1663Z" fill="white"/>
-</svg>
Index: loads/1756332447690_import.svg
===================================================================
--- uploads/1756332447690_import.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.5999 21.906C27.4028 21.9067 27.2076 21.8681 27.0256 21.7926C26.8436 21.7171 26.6785 21.606 26.5399 21.466C26.2609 21.1837 26.1045 20.8028 26.1045 20.406C26.1045 20.0091 26.2609 19.6283 26.5399 19.346L42.9399 2.94598C43.2242 2.68102 43.6003 2.53677 43.9889 2.54363C44.3775 2.55049 44.7483 2.70791 45.0231 2.98274C45.298 3.25756 45.4554 3.62833 45.4622 4.01693C45.4691 4.40554 45.3249 4.78163 45.0599 5.06598L28.6599 21.466C28.5208 21.6054 28.3556 21.716 28.1737 21.7915C27.9918 21.867 27.7968 21.9059 27.5999 21.906Z" fill="#1D79BE"/>
-<path d="M35.66 23.5H26C25.603 23.4973 25.223 23.3385 24.9422 23.0577C24.6615 22.777 24.5026 22.397 24.5 22V12.34C24.5026 11.943 24.6615 11.5629 24.9422 11.2822C25.223 11.0015 25.603 10.8426 26 10.84C26.397 10.8426 26.777 11.0015 27.0578 11.2822C27.3385 11.5629 27.4974 11.943 27.5 12.34V20.5H35.66C36.0578 20.5 36.4394 20.658 36.7207 20.9393C37.002 21.2206 37.16 21.6021 37.16 22C37.16 22.3978 37.002 22.7793 36.7207 23.0606C36.4394 23.3419 36.0578 23.5 35.66 23.5Z" fill="#1D79BE"/>
-<path d="M30 45.5H18C7.14 45.5 2.5 40.86 2.5 30V18C2.5 7.14 7.14 2.5 18 2.5H22C22.397 2.50262 22.777 2.6615 23.0578 2.94224C23.3385 3.22297 23.4974 3.60298 23.5 4C23.4974 4.39702 23.3385 4.77703 23.0578 5.05776C22.777 5.3385 22.397 5.49738 22 5.5H18C8.78 5.5 5.5 8.78 5.5 18V30C5.5 39.22 8.78 42.5 18 42.5H30C39.22 42.5 42.5 39.22 42.5 30V26C42.5 25.6022 42.658 25.2206 42.9393 24.9393C43.2206 24.658 43.6022 24.5 44 24.5C44.3978 24.5 44.7794 24.658 45.0607 24.9393C45.342 25.2206 45.5 25.6022 45.5 26V30C45.5 40.86 40.86 45.5 30 45.5Z" fill="#1D79BE"/>
-</svg>
Index: loads/1756332451352_message-question-white.svg
===================================================================
--- uploads/1756332451352_message-question-white.svg	(revision 09ec8f8b4a1f9327f6691ec13404018058480576)
+++ 	(revision )
@@ -1,5 +1,0 @@
-<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M6.66696 18.5999C6.42553 18.5992 6.18798 18.5391 5.97529 18.4249C5.74306 18.3007 5.54901 18.1157 5.41395 17.8896C5.27889 17.6635 5.20791 17.4049 5.20862 17.1416V15.9582C4.02716 15.8744 2.9266 15.3274 2.14631 14.4363C1.36602 13.5452 0.96913 12.3821 1.04196 11.1999V6.1999C1.00477 5.56093 1.10325 4.92132 1.3309 4.32312C1.55855 3.72492 1.91023 3.18167 2.36281 2.72909C2.8154 2.2765 3.35864 1.92483 3.95684 1.69717C4.55504 1.46952 5.19465 1.37105 5.83362 1.40823H14.167C14.8059 1.37105 15.4455 1.46952 16.0437 1.69717C16.6419 1.92483 17.1852 2.2765 17.6378 2.72909C18.0904 3.18167 18.442 3.72492 18.6697 4.32312C18.8973 4.92132 18.9958 5.56093 18.9586 6.1999V11.1999C18.9958 11.8389 18.8973 12.4785 18.6697 13.0767C18.442 13.6749 18.0904 14.2181 17.6378 14.6707C17.1852 15.1233 16.6419 15.475 16.0437 15.7026C15.4455 15.9303 14.8059 16.0287 14.167 15.9916H11.0253L7.47529 18.3582C7.23498 18.5155 6.95413 18.5994 6.66696 18.5999ZM5.83362 2.6499C5.36007 2.61707 4.88497 2.68617 4.44039 2.85255C3.99581 3.01892 3.59207 3.2787 3.25641 3.61436C2.92075 3.95002 2.66098 4.35375 2.4946 4.79833C2.32823 5.24292 2.25913 5.71801 2.29196 6.19157V11.1916C2.25913 11.6651 2.32823 12.1402 2.4946 12.5848C2.66098 13.0294 2.92075 13.4331 3.25641 13.7688C3.59207 14.1044 3.99581 14.3642 4.44039 14.5306C4.88497 14.697 5.36007 14.7661 5.83362 14.7332C5.99905 14.7343 6.15738 14.8005 6.27436 14.9175C6.39133 15.0345 6.45753 15.1928 6.45862 15.3582V17.1332C6.45875 17.171 6.46908 17.2081 6.48852 17.2405C6.50795 17.2729 6.53578 17.2995 6.56906 17.3174C6.60234 17.3353 6.63984 17.3439 6.67761 17.3423C6.71537 17.3407 6.752 17.3289 6.78362 17.3082L10.492 14.8416C10.5956 14.7723 10.7172 14.7346 10.842 14.7332H14.1753C14.6488 14.7661 15.1239 14.697 15.5685 14.5306C16.0131 14.3642 16.4168 14.1044 16.7525 13.7688C17.0882 13.4331 17.3479 13.0294 17.5143 12.5848C17.6807 12.1402 17.7498 11.6651 17.717 11.1916V6.19157C17.7498 5.71801 17.6807 5.24292 17.5143 4.79833C17.3479 4.35375 17.0882 3.95002 16.7525 3.61436C16.4168 3.2787 16.0131 3.01892 15.5685 2.85255C15.1239 2.68617 14.6488 2.61707 14.1753 2.6499H5.83362Z" fill="white"/>
-<path d="M9.99979 10.092C9.83437 10.0909 9.67603 10.0247 9.55905 9.90772C9.44208 9.79074 9.37588 9.6324 9.37479 9.46698V9.29198C9.38471 8.96033 9.47956 8.63678 9.65027 8.35227C9.82097 8.06775 10.0618 7.8318 10.3498 7.66698C10.6581 7.45865 10.7581 7.31698 10.7581 7.10031C10.7581 7.00073 10.7385 6.90212 10.7004 6.81011C10.6623 6.71811 10.6064 6.63451 10.536 6.56409C10.4656 6.49367 10.382 6.43781 10.29 6.3997C10.198 6.36159 10.0994 6.34198 9.99979 6.34198C9.9002 6.34198 9.80159 6.36159 9.70959 6.3997C9.61758 6.43781 9.53398 6.49367 9.46357 6.56409C9.39315 6.63451 9.33729 6.71811 9.29918 6.81011C9.26107 6.90212 9.24146 7.00073 9.24146 7.10031C9.24036 7.26574 9.17416 7.42407 9.05719 7.54105C8.94022 7.65802 8.78188 7.72422 8.61646 7.72531C8.45103 7.72422 8.29269 7.65802 8.17572 7.54105C8.05875 7.42407 7.99255 7.26574 7.99146 7.10031C7.99146 6.56767 8.20305 6.05684 8.57968 5.68021C8.95632 5.30357 9.46715 5.09198 9.99979 5.09198C10.5324 5.09198 11.0433 5.30357 11.4199 5.68021C11.7965 6.05684 12.0081 6.56767 12.0081 7.10031C11.9983 7.42665 11.9051 7.74503 11.7373 8.02511C11.5696 8.3052 11.3329 8.53765 11.0498 8.70031C10.7248 8.91698 10.6248 9.05865 10.6248 9.29198V9.46698C10.6249 9.54909 10.6088 9.63041 10.5774 9.70629C10.5461 9.78217 10.5 9.85111 10.442 9.90917C10.3839 9.96723 10.315 10.0133 10.2391 10.0446C10.1632 10.076 10.0819 10.0921 9.99979 10.092Z" fill="white"/>
-<path d="M10 12.1663C9.87639 12.1663 9.75555 12.1297 9.65277 12.061C9.54999 11.9923 9.46988 11.8947 9.42258 11.7805C9.37527 11.6663 9.36289 11.5406 9.38701 11.4194C9.41113 11.2982 9.47065 11.1868 9.55806 11.0994C9.64547 11.012 9.75683 10.9524 9.87807 10.9283C9.99931 10.9042 10.125 10.9166 10.2392 10.9639C10.3534 11.0112 10.451 11.0913 10.5197 11.1941C10.5883 11.2969 10.625 11.4177 10.625 11.5413C10.6251 11.6234 10.609 11.7048 10.5776 11.7806C10.5463 11.8565 10.5002 11.9254 10.4422 11.9835C10.3841 12.0416 10.3152 12.0876 10.2393 12.119C10.1634 12.1503 10.0821 12.1664 10 12.1663Z" fill="white"/>
-</svg>
