/* new */
* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
}

.custom-dropdown {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.dropdown-toggle {
  background: #fff;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-menu {
  display: none;
  position: absolute;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
}

.courier-item {
  display: flex;
  align-items: center;
  padding: 8px;
  cursor: pointer;
}

.courier-item:hover {
  background: #f0f0f0;
}

.courier-logo {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 50%;
}
.gray_color1 {
  color: #e5e5eb;
}

.gray_color2 {
  color: #7a7583;
}

.bottom_orange {
  border-bottom: 2px solid #0047ab;
}

.bottom_red {
  border-bottom: 2px solid #ff4c51;
}

.bottom_blue {
  border-bottom: 2px solid #0047ab;
}

.bottom_black {
  border-bottom: 2px solid #000;
}

.color_orange {
  color: #0047ab;
}

.color_red {
  color: #ff4c51;
}

.color_blue {
  color: #0047ab;
}

.color_black {
  color: #000;
}

.bg_orange_light {
  background: #b6d3fd;
}
.bg_gree_light {
  background: #00cd001c;
}
.color_gree {
  color: #00cd00;
}

.bg_red_light {
  background-color: #ffe5e6;
}

.bg_blue_light {
  background-color: #d3f0ff;
}

.bg_black_light {
  background-color: #b3b3b3;
}

.bg_gray {
  background-color: #f4f5fa;
}

.small_text {
  font-size: 16px;
}

.hide_element {
  display: none;
}

.block_show {
  display: block;
}

.flex_show {
  display: flex;
}

.btn-warning {
  background-color: #0047ab !important;
  border: 0 !important;
}

.form-control {
  height: 7vh !important;
}
.form-control:focus {
  box-shadow: none !important;
  outline: 1px solid #e5e5eb !important;
  border: 0 !important;
}

.hide_sidebar {
  transform: translateX(-50rem);
}
@media (min-width: 770px) {
  .hide_sidebar {
    transform: translateX(0);
  }
}
.copied-tooltip {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: black;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}

.copied-tooltip.show {
  opacity: 1;
  visibility: visible;
}

.ctext:hover {
  color: #0047ab !important;
}
.mobile_menu_drawer {
  z-index: 5;
  background-image: radial-gradient(
    circle,
    #0047ab,
    #0047ab,
    #0047ab,
    #7ed1fa,
    #099be4
  );
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: fixed;
  right: 1rem;
  bottom: 5rem;
}
@media (min-width: 770px) {
  .mobile_menu_drawer {
    display: none !important;
  }
}

@media (min-width: 770px) {
  .close_sidebar {
    display: none !important;
  }
}

.mock_fs {
  font-size: 11px;
}
@media (min-width: 770px) {
  .mock_fs {
    font-size: 13px;
  }
}

.color_brand {
  color: #0047ab;
}

.text-danger {
  color: red !important;
}

.text-success {
  color: green !important;
}

.pointer {
  cursor: pointer;
}

.success:after {
  width: 20px;
  height: 20px;
  border-radius: 15px;
  top: -2px;
  left: -1px;
  position: relative;
  background-color: #d1d3d1;
  content: "";
  display: inline-block;
  visibility: visible;
  border: 2px solid white;
}
.success:checked:after {
  width: 20px;
  height: 20px;
  border-radius: 15px;
  top: -2px;
  left: -1px;
  position: relative;
  background-color: #1aff1a;
  content: "";
  display: inline-block;
  visibility: visible;
  border: 2px solid white;
}

.pending:after {
  width: 20px;
  height: 20px;
  border-radius: 15px;
  top: -2px;
  left: -1px;
  position: relative;
  background-color: #d1d3d1;
  content: "";
  display: inline-block;
  visibility: visible;
  border: 2px solid white;
}
.pending:checked:after {
  width: 20px;
  height: 20px;
  border-radius: 15px;
  top: -2px;
  left: -1px;
  position: relative;
  background-color: #0047ab;
  content: "";
  display: inline-block;
  visibility: visible;
  border: 2px solid white;
}

.cancled:after {
  width: 20px;
  height: 20px;
  border-radius: 15px;
  top: -2px;
  left: -1px;
  position: relative;
  background-color: #d1d3d1;
  content: "";
  display: inline-block;
  visibility: visible;
  border: 2px solid white;
}
.cancled:checked:after {
  width: 20px;
  height: 20px;
  border-radius: 15px;
  top: -2px;
  left: -1px;
  position: relative;
  background-color: red;
  content: "";
  display: inline-block;
  visibility: visible;
  border: 2px solid white;
}

.text-responsive {
  font-size: 10px;
}
@media (min-width: 1024px) {
  .text-responsive {
    font-size: 13px;
  }
}

.btn-light:hover {
  background: transparent !important;
  outline: none !important;
  border: 1px solid #fff;
  color: #fff;
}

.btn-warning-subtle {
  background-color: #c0d9fd !important;
  color: #0047ab !important;
  border: 0 !important;
}
.btn-warning-subtle:hover {
  color: #c0d9fd !important;
  background-color: #0047ab !important;
}

.text-warning {
  color: #0047ab !important;
}

.dark_blue_bg {
  background-color: #40404a;
}

.darker_blue_bg {
  background-color: #343343;
}

.orange_bg {
  background-color: #0047ab;
}

.border_orange {
  border: 2px solid #0047ab;
}

.color_dark_blue {
  color: #40404a;
}

.color_darker_blue {
  color: #343343;
}

.hide_drop {
  transform: translateY(-30rem);
}
@media (min-width: 770px) {
  .hide_drop {
    transform: translateY(0);
  }
}

.accent1 {
  font-weight: bold;
}

.active_page {
  color: #0047ab;
}

.w {
  width: 90%;
}
@media (min-width: 770px) {
  .w {
    background: #000;
    width: 80%;
  }
}

.layout {
  width: 100%;
  padding-bottom: 3rem;
  background-color: #f4f5fa;
  min-height: 100vh;
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 770px) {
  .layout {
    display: grid;
    grid: "sidebar body" 100%/20% 80%;
  }
}
@media (min-width: 1024px) {
  .layout {
    grid: "sidebar body" 100%/22% 78%;
  }
}
.layout .sidebar {
  width: 90%;
  grid-area: sidebar;
  position: fixed;
  background-color: #f4f5fa;
  z-index: 5;
}
@media (min-width: 640px) {
  .layout .sidebar {
    width: 40%;
  }
}
@media (min-width: 770px) {
  .layout .sidebar {
    width: 20%;
  }
}
@media (min-width: 1024px) {
  .layout .sidebar {
    width: 22%;
  }
}
.layout .body {
  width: 100%;
  position: relative;
  grid-area: body;
}

.sidebar {
  position: relative;
  height: 100vh;
  transition: transform 0.5s ease-in-out;
}
.sidebar .navigations .navigation {
  width: 95%;
  font-size: 16px;
  border-radius: 0px 100px 100px 0px;
}
.sidebar .footer {
  position: absolute;
  width: 100%;
  bottom: 2rem;
}
.sidebar .footer .profile_preview {
  background-color: #e5e5eb;
}
@media (min-width: 770px) {
  .sidebar .footer .profile_preview {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .sidebar .footer .profile_preview {
    display: flex !important;
  }
}
.sidebar .footer .profile_preview img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.sidebar .footer .profile_preview small .name {
  color: #7a7583;
  font-size: 13px;
}
.sidebar .footer .profile_preview small .email {
  color: #7a7583;
  font-size: 13px;
}

.active_nav {
  background-color: #e5e5eb;
  color: #000;
}

.unactive_nav {
  color: #7a7583;
}

.body_container {
  width: 100%;
  position: relative;
}
.body_container .body_header {
  width: 100%;
  border-radius: 0 0 10px 10px;
}
.body_container .body_header .search_bar {
  position: relative;
  height: 6vh;
}
@media (min-width: 770px) {
  .body_container .body_header .search_bar {
    width: 30%;
    height: 6vh;
  }
}
.body_container .body_header .search_bar input {
  background-color: #e5e5eb;
  width: 100%;
  height: 100%;
  border: 0;
  padding-left: 1.5rem;
}
.body_container .body_header .search_bar input:focus {
  outline: 0;
}
.body_container .body_header .search_bar i {
  position: absolute;
  bottom: 30%;
  left: 3px;
}
.body_container .body_header .main_header .profile_menu {
  position: relative;
}
.body_container .body_header .main_header .profile_menu img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  cursor: pointer;
  display: block;
}
.body_container .body_header .main_header .profile_menu ul {
  position: absolute;
  right: 0;
  width: 15rem;
}
.body_container .body_header .main_header .profile_menu ul .line {
  background-color: #e5e5eb;
  height: 1px;
  width: 100%;
}
.body_container .body_header .main_header .profile_menu ul .logOut {
  width: 100%;
  background-color: #0047ab;
}

.menu_list:hover {
  background-color: #f4f5fa;
}

.metrics {
  width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  display: grid;
  gap: 1rem;
}
.metrics .metric_card {
  height: -moz-fit-content;
  height: fit-content;
}

.chart_container {
  width: 100%;
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
}
.chart_container .chart_income {
  width: 100%;
}

.income_orders {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .income_orders {
    justify-content: space-between;
    flex-direction: row;
    gap: 1rem;
  }
}
.income_orders .income_card {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 1024px) {
  .income_orders .income_card {
    width: 90%;
  }
}
.income_orders .order_class {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 1024px) {
  .income_orders .order_class {
    width: 90%;
  }
}

.add_location_modal {
  width: 100%;
}
@media (min-width: 770px) {
  .add_location_modal {
    width: 70%;
  }
}
.add_location_modal form {
  height: 65vh;
  width: 100%;
}
@media (min-width: 770px) {
  .add_location_modal form {
    height: 50vh;
  }
}

@media (min-width: 770px) {
  .location {
    display: flex;
    gap: 1rem;
  }
}
.location .display_location {
  width: 70%;
  overflow-y: auto;
}

@media (min-width: 770px) {
  .location .display_location {
    height: 50vh;
  }
}
.location .display_location::-webkit-scrollbar {
  width: 1px;
  height: 1px;
}
.location .display_location::-webkit-scrollbar-thumb {
  background-color: #0047ab !important;
}
.location .display_location .timeline-container .tl .place {
  border-left: 2px solid #e5e5eb;
  padding: 0 0 50px 30px;
  position: relative;
  height: 80px;
}
.location .display_location .timeline-container .tl .place .item_icon {
  color: #000;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  left: -15px;
  content: " ";
}
.location .display_location .timeline-container .tl .place .entity .price {
  color: #7a7583;
}
.location
  .display_location
  .timeline-container
  .tl
  .place
  .menu_actions
  .container_actions {
  text-align: right;
}
.location
  .display_location
  .timeline-container
  .tl
  .place
  .menu_actions
  .location_action_btn {
  cursor: pointer;
}
.location
  .display_location
  .timeline-container
  .tl
  .place
  .menu_actions
  .location_action_list {
  width: 140px;
  z-index: 10;
  position: absolute;
  right: 0;
}
.location
  .display_location
  .timeline-container
  .tl
  .place
  .menu_actions
  .location_action_list
  li {
  cursor: pointer;
}
.location
  .display_location
  .timeline-container
  .tl
  .place
  .menu_actions
  .location_action_list
  li:hover {
  background-color: #e5e5eb;
}
.location
  .display_location
  .timeline-container
  .tl
  .place
  .menu_actions
  .location_action_list
  .edit {
  color: #00cd00;
}
.location
  .display_location
  .timeline-container
  .tl
  .place
  .menu_actions
  .location_action_list
  .del {
  color: #ff3333;
}

.edit_location_modal {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.edit_location_modal .location_form {
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 770px) {
  .edit_location_modal .location_form {
    width: 40%;
  }
}
.edit_location_modal .location_form .close_edit_modal {
  cursor: pointer;
}

/* .timeline-container {
    font-family: "Roboto", sans-serif;
    width: 50%;
    // margin: auto;
    display: block;
    position: relative;

    ul.tl {
      margin: 20px 0;
      padding: 0;
      display: inline-block;

      li {
        list-style: none;
        margin: auto;
        min-height: 50px;
        border-left: 1px solid #86D6FF;
        padding: 0 0 50px 30px;
        position: relative;
        display: flex;
        flex-direction: row;

        &.dashed {
          border-left: 1px dashed #86D6FF;
        }

        &:last-child {
          border-left: 0;
        }

        .item-icon {
          position: absolute;
          left: -18px;
          top: -5px;
          content: " ";
          border: 8px solid rgba(255, 255, 255, 0.74);
          border-radius: 500%;
          background: #258CC7;
          height: 20px;
          width: 20px;
        }

        &:hover::before {
          border-color: #258CC7;
          transition: all 1000ms ease-in-out;
        }

        .item-text {
          display: flex;
          flex-direction: column;
          flex-grow: 1;
        }

        // .item-title {}

        .item-detail {
          color: rgba(0, 0, 0, 0.5);
          font-size: 12px;
        }

        .item-timestamp {
          color: #8D8D8D;
          font-size: 12px;
          text-align: right;
          padding-left: 20px;
        }
      }
    }
  } */
@media (min-width: 770px) {
  .profile {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  .profile {
    flex-direction: row;
  }
}
@media (min-width: 770px) and (min-width: 770px) {
  .profile .layer_infromation {
    width: 100%;
  }
}
@media (min-width: 770px) and (min-width: 1024px) {
  .profile .layer_infromation {
    width: 38%;
  }
}
.profile .layer_infromation .profile_card {
  width: 100%;
}
.profile .layer_infromation .profile_card .backdrop {
  width: 100%;
}
.profile .layer_infromation .profile_card .backdrop img {
  width: 100%;
  height: 15vh;
  -o-object-fit: cover;
  object-fit: cover;
}
.profile .layer_infromation .profile_card .meta_head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -3rem;
}
.profile .layer_infromation .profile_card .meta_head img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  border: 3px solid #fff;
}
.profile .layer_infromation .profile_card .meta_head .dotter {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #e5e5eb;
}
.profile .layer_infromation .profile_card .meta_head button {
  background-color: #0047ab;
  width: 90%;
}
.profile .registered_admins {
  height: 50vh;
  overflow: auto;
}
.profile .registered_admins::-webkit-scrollbar {
  width: 1px;
  height: 1px;
}
.profile .registered_admins::-webkit-scrollbar-thumb {
  background-color: #0047ab;
}
@media (min-width: 770px) {
  .profile .registered_admins {
    height: 50vh;
  }
}
.profile .registered_admins .list_admins .admin:hover {
  background-color: #e5e5eb;
}
.profile .registered_admins .list_admins .admin img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.profile .registered_admins .list_admins .admin i {
  color: red;
  cursor: pointer;
}
.profile .account_actions {
  width: 100%;
}
@media (min-width: 770px) {
  .profile .account_actions {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .profile .account_actions {
    width: 60%;
  }
}
.profile .account_actions .change_pwd {
  width: 100%;
}
.profile .account_actions .btn_placeholder {
  width: 100%;
  display: flex;
  justify-content: right;
}
.profile .account_actions .btn_placeholder button {
  background-color: #0047ab;
}

.trucks {
  position: relative !important;
}
.trucks header .list_header_action {
  width: 30%;
}
.trucks header .list_header_action select {
  width: 70%;
  background-color: #e5e5eb;
  border: none;
}
.trucks header .list_header_action select:focus {
  outline: 0;
}
.trucks header .list_header_action button {
  font-size: 20px;
}
.trucks .trucks_list {
  height: 50vh;
  overflow: auto;
  min-height: -moz-fit-content;
  min-height: fit-content;
}
.trucks .trucks_list .truck {
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  border: 2px solid #f4f5fa;
}
@media (min-width: 770px) {
  .trucks .trucks_list .truck {
    display: flex;
  }
}
.trucks .trucks_list .truck .truck_image_canvas {
  width: 100%;
  height: 30%;
  position: relative;
}
@media (min-width: 770px) {
  .trucks .trucks_list .truck .truck_image_canvas {
    width: 30%;
    height: 30%;
  }
}
@media (min-width: 1024px) {
  .trucks .trucks_list .truck .truck_image_canvas {
    width: 20%;
    height: 30%;
  }
}
.trucks .trucks_list .truck .truck_image_canvas .truck_slide {
  width: 100%;
  height: 100%;
}
.trucks .trucks_list .truck .truck_image_canvas .overlay_dimension {
  position: absolute;
  right: 0;
  z-index: 5;
}
.trucks .trucks_list .truck .truck_image_canvas img {
  width: 100%;
  height: 100%;
}
@media (min-width: 770px) {
  .trucks .trucks_list .truck .meta_details {
    display: flex;
  }
}
.trucks
  .trucks_list
  .truck
  .meta_details
  .main_description
  .truck_action
  .delete {
  color: red;
  background-color: #ffe6e6;
}
.trucks
  .trucks_list
  .truck
  .meta_details
  .main_description
  .truck_action
  .edit {
  color: green;
  background-color: #e6ffe6;
}

.select_status:focus {
  outline: 0;
}

/* modala */
.add_truck_madal {
  background-color: rgba(0, 0, 0, 0.2862745098);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  justify-content: center;
  height: 100vh;
}
.add_truck_madal form {
  height: -moz-fit-content;
  height: fit-content;
  width: 95%;
}
@media (min-width: 770px) {
  .add_truck_madal form {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .add_truck_madal form {
    width: 35%;
  }
}
.add_truck_madal form input::-moz-placeholder {
  color: #7a7583;
}
.add_truck_madal form input::placeholder {
  color: #7a7583;
}

.registered_patners .partners_card {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
@media (min-width: 770px) {
  .registered_patners .partners_card {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
.registered_patners .partners_card .patner figure {
  width: 50px;
  height: 50px;
}
.registered_patners .partners_card .patner figure img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.registered_patners .partners_card .patner .amount_card {
  background-color: #0047ab;
}

.view_patner .backdrop {
  width: 100%;
  height: 30vh;
}
.view_patner .backdrop img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.view_patner .meta_head .meta_image {
  width: 60px;
  height: 60px;
}
.view_patner .meta_head .meta_image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.view_patner .meta_details {
  width: 100%;
}
.view_patner .meta_head {
  /* From https://css.glass */
  width: 96%;
  background: rgba(255, 255, 255, 0.44);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8.2px);
  -webkit-backdrop-filter: blur(8.2px);
  margin-top: -3rem;
}

@media (min-width: 770px) {
  .patner_activity {
    display: flex;
    gap: 1rem;
  }
}
.transaction_history {
  height: 50vh;
  overflow: auto;
}
.transaction_history::-webkit-scrollbar {
  width: 1px;
  height: 1px;
}
.transaction_history::-webkit-scrollbar-thumb {
  background-color: #0047ab;
}
.scrollEvent::-webkit-scrollbar {
  width: 1px !important;
  height: 1px !important;
}
.scrollEvent::-webkit-scrollbar-thumb {
  background-color: #0047ab !important;
}
@media (min-width: 770px) {
  .patner_activity .transaction_history {
    width: 50%;
  }
}
.patner_activity .transaction_history .list_container {
  width: 100%;
}
.patner_activity .transaction_history .list_container li i {
  padding: 0.8rem;
  border-radius: 50%;
}
.patner_activity .transaction_history .list_container li .transaction_detail {
  border-bottom: 2px solid #e5e5eb;
  width: 95%;
}
.patner_activity .withdrawal_request {
  height: 50vh;
  overflow: auto;
}
.patner_activity .withdrawal_request::-webkit-scrollbar {
  width: 1px;
  height: 1px;
}
.patner_activity .withdrawal_request::-webkit-scrollbar-thumb {
  background-color: #0047ab;
}
@media (min-width: 770px) {
  .patner_activity .withdrawal_request {
    width: 50%;
  }
}
.patner_activity .withdrawal_request .list_container {
  width: 100%;
}
.patner_activity .withdrawal_request .list_container li i {
  padding: 0.8rem;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 50%;
}

.notification .note img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.orders {
  width: 100%;
  overflow-x: auto;
}
.orders::-webkit-scrollbar {
  width: 1px;
  height: 1px;
}
@media (min-width: 770px) {
  .orders::-webkit-scrollbar {
    width: 1px;
    height: 5px;
  }
}
.orders::-webkit-scrollbar-thumb {
  background-color: #0047ab;
}
.orders .table_section {
  width: 70rem;
}
@media (min-width: 770px) {
  .orders .table_section {
    width: 80rem;
  }
}

.trucks_order_list {
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1rem;
  display: grid;
}
.trucks_order_list li {
  border: 2px solid #f4f5fa;
}
.trucks_order_list li .truck_image_canvas {
  position: relative;
}
.trucks_order_list li .truck_image_canvas .overlay_dimension {
  position: absolute;
  right: 0;
  z-index: 5;
}
.trucks_order_list li .meta_details button {
  display: flex;
  justify-content: center;
  color: #0047ab;
  background-color: #c0d9fd;
  width: 100%;
}
.trucks_order_list li .meta_details button:hover {
  background-color: #0047ab;
  color: #c0d9fd;
}

.my_account .transactions {
  width: 100%;
}
@media (min-width: 770px) {
  .my_account .transactions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }
}
.my_account .transactions .amount {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  background-image: radial-gradient(
    circle,
    #0454c4,
    #0654c0,
    #064fb6,
    rgb(4, 76, 177),
    #0047ab,
    #0047ab,
    #0047ab,
    #0047ab,
    #0047ab,
    #0047ab,
    #0047ab,
    #0047ab
  );
  /* background-image: radial-gradient(circle, #fba23d, #fba237, #fca231, #fca329, #fca321, #fca01b, #fd9d14, #fd9a0b, #fe9308, #fe8d07, #ff8607, #ff7f08); */
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 770px) {
  .my_account .transactions .amount {
    width: 45%;
  }
}
.my_account .transactions .amount button {
  border-radius: 100px !important;
}
.my_account .transactions .transaction_history {
  height: 70vh;
  overflow: auto;
}
.my_account .transactions .transaction_history::-webkit-scrollbar {
  width: 1px;
  height: 1px;
}
.my_account .transactions .transaction_history::-webkit-scrollbar-thumb {
  background-color: #0047ab;
}
@media (min-width: 770px) {
  .my_account .transactions .transaction_history {
    height: 50vh;
    width: 55%;
  }
}
.my_account .transactions .transaction_history .list_container {
  width: 100%;
}
.my_account .transactions .transaction_history .list_container li i {
  padding: 0.8rem;
  border-radius: 50%;
}
.my_account
  .transactions
  .transaction_history
  .list_container
  li
  .transaction_detail {
  border-bottom: 2px solid #e5e5eb;
  width: 95%;
}

.deposit_modal {
  background-color: rgba(0, 0, 0, 0.2392156863);
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.deposit_modal form {
  width: 95%;
}
@media (min-width: 640px) {
  .deposit_modal form {
    width: 50%;
  }
}
@media (min-width: 770px) {
  .deposit_modal form {
    width: 40%;
  }
}

.withdraw_modal {
  background-color: rgba(0, 0, 0, 0.2392156863);
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.withdraw_modal form {
  width: 95%;
}
@media (min-width: 640px) {
  .withdraw_modal form {
    width: 60%;
  }
}
@media (min-width: 770px) {
  .withdraw_modal form {
    width: 70%;
  }
}
@media (min-width: 1024px) {
  .withdraw_modal form {
    width: 50%;
  }
}
@media (min-width: 770px) {
  .withdraw_modal form .form {
    display: flex;
  }
}
.withdraw_modal form .form article {
  width: 100%;
}
@media (min-width: 770px) {
  .withdraw_modal form .form article {
    width: 50%;
  }
}
.withdraw_modal form .form .form-group {
  width: 100%;
}
@media (min-width: 770px) {
  .withdraw_modal form .form .form-group {
    width: 50%;
  }
}

.verification {
  width: 100%;
}
@media (min-width: 770px) {
  .verification {
    display: flex;
  }
}
@media (min-width: 770px) {
  .verification .figure {
    min-height: 100vh;
    width: 40%;
    border-radius: 0px 32px 32px 0px;
  }
}
@media (min-width: 770px) {
  .verification .figure .overlay_mirage {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.34);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 0px 32px 32px 0px;
  }
}
.verification .figure img {
  margin-top: 13rem;
  margin-right: -10rem;
}
.verification form {
  width: 100%;
}

.light_orange {
  background-color: #0047ab;
}

.sign_in {
  overflow: hidden;
  width: 100%;
  height: 100vh;
  position: relative;
}
@media (min-width: 770px) {
  .sign_in .content_sign {
    width: 90%;
    display: flex;
  }
}
.sign_in .content_sign .cta {
  display: none;
  width: 50%;
}
@media (min-width: 770px) {
  .sign_in .content_sign .cta {
    display: block;
  }
}
.sign_in .content_sign form {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 770px) {
  .sign_in .content_sign form {
    width: 40%;
  }
}
.sign_in .content_sign form .form-group {
  position: relative;
}
.sign_in .content_sign form .form-group input {
  padding-left: 2rem;
}
.sign_in .content_sign form .form-group .icon {
  position: absolute;
  top: 30%;
  left: 0.5rem;
}
.sign_in .content_sign form .form-group .icon2 {
  position: absolute;
  top: 30%;
  right: 0.5rem;
  cursor: pointer;
}
.sign_in .content_sign form button {
  height: 6vh;
}

.illustration_img img {
  width: 50%;
}

.orange_ring {
  position: absolute;
  top: -12rem;
  right: -25rem;
  width: 40rem;
  z-index: -1;
}
@media (min-width: 770px) {
  .orange_ring {
    top: -8rem;
    width: 55%;
    right: -17rem;
  }
}

.blue_ring {
  position: absolute;
  bottom: -9rem;
  left: -13rem;
  width: 20rem;
  z-index: -1;
}
@media (min-width: 770px) {
  .blue_ring {
    bottom: -9rem;
    left: -9rem;
    width: 20%;
    z-index: -1;
  }
}

.homePage {
  width: 100%;
}
.homePage .btn {
  border-radius: 0 !important;
}
.homePage .banner {
  width: 100%;
  height: 80vh;
}
@media (min-width: 770px) {
  .homePage .banner {
    height: 100vh;
  }
}
.homePage .banner .backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: inherit;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -2;
}
.homePage .banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: inherit;
  background-color: rgba(0, 0, 0, 0.616);
  -o-object-fit: contain;
  object-fit: contain;
  z-index: -1;
}
@media (min-width: 640px) {
  .homePage .banner .overlay {
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.homePage .banner header {
  display: block;
  width: 95%;
  position: relative;
}
@media (min-width: 770px) {
  .homePage .banner header {
    display: flex;
    justify-content: space-between;
    /* position: relative; */
    align-items: center;
    width: 80%;
  }
}
.homePage .banner header nav {
  background-color: white;
  width: 100%;
  position: absolute;
  top: 4rem;
  left: 0;
  transition: transform 0.5s ease-in-out;
  box-shadow: 0 0 8px rgb(0, 0, 0);
}
@media (min-width: 770px) {
  .homePage .banner header nav {
    display: flex;
    box-shadow: none;
    width: 50%;
    position: static;
    background: none;
  }
}
.homePage .banner header nav a {
  margin-top: 1rem;
  padding: 0rem 1rem 0rem;
}
@media (min-width: 770px) {
  .homePage .banner header nav a {
    padding: 0;
    margin-top: 0;
  }
}
.homePage .banner header nav .button {
  margin: 1rem 1rem 0.5rem;
}
@media (min-width: 770px) {
  .homePage .banner header nav .button {
    margin: 0;
  }
}
.homePage .banner header nav .separator {
  width: 100%;
  height: 1px;
  display: block;
  margin: 1rem 0 0;
  background: #f1f1f1;
}
@media (min-width: 770px) {
  .homePage .banner header nav .separator {
    display: none;
  }
}
.homePage .banner header .mb_head {
  width: 100%;
}
.homePage .banner header .mb_head img {
  width: 100px;
}
@media (min-width: 770px) {
  .homePage .banner header .mb_head {
    width: 20%;
  }
}
@media (min-width: 770px) {
  .homePage .banner header .menu {
    display: none;
  }
}
.homePage .features {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 17rem;
}
@media (min-width: 770px) {
  .homePage .features {
    margin-top: 0rem;
  }
}
@media (min-width: 770px) {
  .homePage .features section {
    display: flex;
  }
}
.homePage .features .description {
  width: 100%;
}
@media (min-width: 770px) {
  .homePage .features .description {
    width: 50%;
  }
}
.homePage .features .description span {
  width: 95%;
}
@media (min-width: 770px) {
  .homePage .features .description span {
    width: 70%;
  }
}
.homePage .features .description .article .article_header .liner {
  width: 10%;
  height: 3px;
  background-color: rgb(102, 87, 87);
}
.homePage .features figure {
  width: 100%;
}
@media (min-width: 770px) {
  .homePage .features figure {
    width: 50%;
  }
}
.homePage .features figure img {
  width: 100%;
}
@media (min-width: 770px) {
  .homePage .features figure img {
    width: 80%;
  }
}
.homePage .services {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 13rem;
}
@media (min-width: 770px) {
  .homePage .services {
    margin-top: 0;
  }
}
.homePage .services .backdrop {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: -1;
}
@media (min-width: 770px) {
  .homePage .services .backdrop {
    height: 50vh;
  }
}
.homePage .services .backdrop img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100vh;
}
@media (min-width: 770px) {
  .homePage .services .backdrop img {
    height: 50vh;
  }
}
.homePage .services .backdrop .overlay {
  background-color: rgba(0, 0, 0, 0.418);
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
@media (min-width: 770px) {
  .homePage .services .backdrop .overlay {
    height: 50vh;
  }
}
.homePage .keyNotes {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100vh;
  margin-top: 10rem;
}
@media (min-width: 770px) {
  .homePage .keyNotes {
    flex-direction: row;
    height: 50vh;
  }
}
.homePage .keyNotes .clients {
  background-image: url("/img/banner1.jpg");
  background-size: cover;
  position: relative;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
  height: 100%;
}
@media (min-width: 770px) {
  .homePage .keyNotes .clients {
    -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    width: 100%;
  }
}
.homePage .keyNotes .clients .overlay {
  background-color: rgba(0, 0, 0, 0.466);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.homePage .keyNotes .clients li i {
  font-size: 8px;
  color: #0047ab;
  font-weight: 900;
}
.homePage .keyNotes .patners {
  background-image: url("/img/banner1.jpg");
  background-size: cover;
  -webkit-clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
  position: relative;
  height: 100%;
}
@media (min-width: 770px) {
  .homePage .keyNotes .patners {
    width: 100%;
    -webkit-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  }
}
.homePage .keyNotes .patners .overlay {
  background-color: rgba(0, 0, 0, 0.466);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.homePage .keyNotes .patners li i {
  font-size: 8px;
  color: #0047ab;
  font-weight: 900;
}
.homePage .contacts {
  background-color: rgb(238, 238, 238);
  height: 50vh;
}
.homePage .contacts .vrt {
  color: #0047ab;
}
.homePage .stats {
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
}
@media (min-width: 770px) {
  .homePage .stats {
    height: 50vh;
  }
}
.homePage .stats .grider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  width: 100%;
  gap: 4rem;
}
@media (min-width: 770px) {
  .homePage .stats .grider {
    width: 80%;
    gap: 0;
  }
}
.homePage .stats .grider .edges {
  width: 130px;
  height: 130px;
  border-radius: 50%;
}
.homePage .stats .grider .edges div {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
.homePage .home_footer {
  display: flex;
  justify-content: center;
  position: relative;
  background-color: #40404a;
  /* background-color: red; */
  height: 100vh;
  /* height: -moz-fit-content; */
  /* height: fit-content; */
}
@media (min-width: 770px) {
  .homePage .home_footer {
    height: 60vh;
  }
}
.homePage .home_footer .foot {
  display: grid;
  gap: 1rem;
  width: 100%;
  height: 100%;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
@media (min-width: 770px) {
  .homePage .home_footer .foot {
    width: 80%;
  }
}
.homePage .home_footer .foot header h3 {
  color: #0047ab;
}
.homePage .home_footer .foot header .liner {
  width: 10%;
  height: 3px;
  background-color: white;
}
.homePage .home_footer .foot .media .gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.5rem;
}
.homePage .home_footer .foot .media .gallery div {
  position: relative;
}
.homePage .home_footer .foot .media .gallery div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.homePage .home_footer .foot .media .gallery div .overlay {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(52, 51, 67, 0.849);
}
.homePage .home_footer .foot .media .gallery div .overlay i {
  cursor: pointer;
  border: 2px solid #0047ab;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.homePage .home_footer .lincense {
  background-color: #0047ab;
  width: 100%;
  position: absolute;
  bottom: 0;
  font-size: 12px;
}

.tab_container {
  width: 100%;
}
.tab_container .tabs {
  width: 95%;
  background-color: red;
  color: #000;
  display: flex;
  flex-direction: column;
  margin-top: -20rem;
}
@media (min-width: 640px) {
  .tab_container .tabs {
    margin-top: -25rem;
    width: 60%;
  }
}
@media (min-width: 770px) {
  .tab_container .tabs {
    flex-direction: row;
    width: 80%;
    margin-top: -15rem;
  }
}
.tab_container .tabs i {
  font-size: 3rem;
}
.tab_container .tabs .tab_head .underliner {
  background-color: white;
  width: 10%;
  height: 3px;
}
.tab_container .tab_1 {
  width: 100%;
  background-color: #0047ab;
}
.tab_container .tab_2 {
  width: 100%;
  background-color: #fff;
}
.tab_container .tab_3 {
  background-color: #0047ab;
  width: 100%;
}

.home_height {
  height: 100vh;
}

.service_mg {
  margin-top: -30rem;
}
@media (min-width: 770px) {
  .service_mg {
    margin-top: -15rem;
  }
}

.contents {
  width: 95%;
}
@media (min-width: 770px) {
  .contents {
    width: 80%;
  }
}
.contents header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contents header span {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contents header span h2 {
  color: #0047ab;
}
.contents header span .liner {
  width: 10%;
  height: 3px;
  background-color: #fff;
}
.contents header span .liner_2 {
  width: 10%;
  height: 3px;
  background-color: #40404a;
}
.contents header p {
  width: 95%;
}
@media (min-width: 770px) {
  .contents header p {
    width: 70%;
  }
}
.contents .service_grid {
  display: grid;
  gap: 8px;
}
@media (min-width: 640px) {
  .contents .service_grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  }
}
.contents .service_grid .service_tile i {
  font-size: 3rem;
}
.contents .service_grid .service_tile .tab_head .underliner {
  width: 10%;
  height: 3px;
  background-color: grey;
}

.services_page {
  margin-top: -27rem;
}

.order_height {
  height: 50vh !important;
  background-size: cover;
  background-repeat: no-repeat;
}

.order_cat {
  min-height: -moz-fit-content;
  min-height: fit-content;
}
.order_cat header {
  width: -moz-fit-content;
  width: fit-content;
}
.order_cat header h2 {
  color: #40404a;
}
.order_cat header .liner {
  width: 10%;
  height: 3px;
  background-color: #343343;
}
.order_cat .order_opt_container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 770px) {
  .order_cat .order_opt_container {
    justify-content: center;
    flex-direction: row;
    gap: 4rem;
  }
}
.order_cat .order_opt_container .opt-1 {
  box-shadow: 0 0 1px 0 #0047ab;
}
.order_cat .order_opt_container .opt-1 .icon {
  background-color: #b6d3fd;
  border-radius: 50%;
  width: 70px;
  height: 70px;
}
.order_cat .order_opt_container .opt-1 .icon i {
  color: #0047ab;
}
.order_cat .order_opt_container .opt-1 a {
  color: #0047ab;
  background-color: #b6d3fd;
  border: 0 !important;
}
.order_cat .order_opt_container .opt_2 {
  box-shadow: 0 0 1px 0 #40404a;
}
.order_cat .order_opt_container .opt_2 .icon {
  background-color: #9694ae;
  border-radius: 50%;
  width: 70px;
  height: 70px;
}
.order_cat .order_opt_container .opt_2 .icon i {
  color: #343343;
}
.order_cat .order_opt_container .opt_2 a {
  color: #40404a;
  background-color: #b2b1c4;
  border: 0 !important;
}
@media (min-width: 770px) {
  .order_cat .order_opt_container .order_opt {
    width: 30%;
  }
}

.how_it_works .instructions {
  height: 70vh;
  width: 100%;
}
.how_it_works .instructions .info_card {
  height: 70vh;
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.how_it_works .instructions .info_card article {
  height: 90%;
  width: 100%;
  display: flex !important;
  align-items: center;
  position: relative;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.how_it_works .instructions .info_card article .lustrate {
  width: 80px;
  height: 80px;
  background-color: rgba(7, 97, 224, 0.527);
  border-radius: 50%;
}
.how_it_works .instructions .info_card article .lustrate i {
  width: 60px;
  height: 60px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.how_it_works .instructions .info_card article .overlay {
  background: rgba(0, 0, 0, 0.589);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.how_it_works .instructions .info_card article img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  filter: contrast(1.2);
  z-index: -2;
}
.how_it_works .instructions .info_card .v1 {
  background-color: #0047ab;
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
.how_it_works .instructions .info_card .v2 {
  background-color: rgba(7, 97, 224, 0.527);
  width: 45px;
  height: 45px;
  border-radius: 50%;
}
.how_it_works .instructions .info_card .v2 .v2_inner {
  height: 35px;
  width: 35px;
  display: block;
  border-radius: 50%;
  background-color: #0047ab;
}
.how_it_works .instructions .info_card .count h3 {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.tab_contianer {
  width: 96%;
  margin-bottom: 5rem;
}
@media (min-width: 770px) {
  .tab_contianer {
    width: 50%;
  }
}
.tab_contianer nav {
  background-color: #40404a;
  height: 9vh;
  padding-left: 0.5rem;
  padding-top: 1rem;
  display: flex;
}
@media (min-width: 770px) {
  .tab_contianer nav {
    height: 7vh;
  }
}
.tab_contianer nav .tab {
  height: 100%;
  display: flex;
  align-items: center;
  color: #c0c0c9;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.tab_contianer nav .active_tab {
  background-color: #fff;
  color: #000000;
  border-top: 2px solid #0047ab;
}
.tab_contianer main {
  padding: 0.5rem 0.5rem 0.5rem;
}
.tab_contianer main .content {
  display: none;
}
.tab_contianer main .content .timeline {
  width: 100%;
}
.tab_contianer main .content .timeline .steps {
  position: relative;
}
.tab_contianer main .content .timeline .steps .line {
  background-color: #40404a;
  width: 100%;
  height: 2px;
}
.tab_contianer main .content .timeline .steps .meta_info {
  display: flex;
  justify-content: space-around;
  position: absolute;
  width: 100%;
  top: -1.2rem;
}
.tab_contianer main .content .timeline .steps .meta_info .num {
  background-color: #fff;
  border: 3px solid #0047ab;
  color: #0047ab;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
}
.tab_contianer main .content .timeline .steps .meta_info .active_step {
  color: #fff;
  background-color: #0047ab;
}
.tab_contianer main .active_content {
  display: block;
}
.add_btn {
  cursor: pointer;
  height: 6vh;
  width: 35px;
  background-color: #ebe9e9;
}
.clear-all {
  cursor: pointer;
}
/* .custom-upload-btn {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
}
.custom-upload-btn:hover {
  background-color: #0056b3;
} */

.proof {
  background: #ebe9e9;
  padding: 15px;
}
.top_alert {
  top: 10%;
}
.item_row {
  background-color: #ebe9e9;
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  padding: 3px 8px;
  cursor: pointer;
  /* justify-content: center; */
  align-items: center;
  /* border-radius: 10px; */
}
.items_cs_fs {
  font-size: 14px;
}
.bg_input {
  background-color: #ebe9e9;
  width: 100%;
  height: 6vh;
  border: none;
  padding: 1px 5px 1px;
}
.bg_input:focus {
  outline: none;
}
@media (min-width: 770px) {
  .bg_input {
    height: 6.5vh;
  }
  .add_btn {
    height: 6.5vh;
    width: 40px;
  }
}

.bg_area {
  background-color: #ebe9e9;
  width: 100%;
  height: 13vh;
  border: none;
  padding: 1px 5px 1px;
  border-radius: 5px;
}
.bg_area:focus {
  outline: none;
}
@media (min-width: 770px) {
  .bg_area {
    height: 13vh;
  }
}

.mini_place {
  font-size: 14px;
  color: red;
}

.hid {
  display: none;
}

/* .form-groups2{
  display:none;
} */
.puts {
  position: relative;
}
.puts i {
  top: 30%;
  right: 1rem;
  position: absolute;
  color: #b8adad;
}

.usp {
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  margin-top: 17rem;
  padding: 1rem;
}
@media (min-width: 770px) {
  .usp {
    justify-content: center;
    margin-top: 0rem;
  }
}
.usp .article_header .liner {
  width: 10%;
  height: 3px;
  background-color: rgb(102, 87, 87);
}
.usp article {
  width: 100%;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
@media (min-width: 770px) {
  .usp article {
    width: 80%;
    gap: 3rem;
    flex-direction: row;
  }
}
.usp article .meta_description {
  width: 100%;
}
.usp article figure {
  width: 100%;
  height: 60vh;
}
@media (min-width: 770px) {
  .usp article figure {
    height: 50vh;
    width: 80%;
  }
}
.usp article figure img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.contact_form {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 770px) {
  .contact_form {
    height: 70vh;
  }
}
.contact_form .wrapper_ui {
  width: 100%;
  padding: 0.5rem;
}
@media (min-width: 770px) {
  .contact_form .wrapper_ui {
    width: 70%;
  }
}
@media (min-width: 770px) {
  .contact_form .wrapper_ui .form_container {
    display: flex;
    gap: 3rem;
  }
}
.contact_form .wrapper_ui .form_container article {
  width: 100%;
  background-size: cover;
  position: relative;
}
.contact_form .wrapper_ui .form_container article img {
  position: absolute;
  top: 0;
  z-index: -2;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.contact_form .wrapper_ui .form_container article .overlay {
  position: absolute;
  top: 0;
  z-index: -1;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(64, 64, 74, 0.9333333333);
}
.contact_form .wrapper_ui .form_container form {
  width: 100%;
}
.contact_form .wrapper_ui .form_container form input {
  height: 7vh;
  border: 1px solid #40404a;
}
.contact_form .wrapper_ui .form_container form textarea {
  height: 9vh;
  border: 1px solid #40404a;
}

.get_Rate {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 770px) {
  .get_Rate .rate_wrapper {
    width: 80%;
    display: flex;
    gap: 5rem;
  }
}
@media (min-width: 1024px) {
  .get_Rate .rate_wrapper {
    width: 70%;
  }
}
.get_Rate .rate_wrapper .rate_viewer {
  position: relative;
}
@media (min-width: 770px) {
  .get_Rate .rate_wrapper .rate_viewer {
    height: 40%;
  }
}
.get_Rate .rate_wrapper .rate_viewer img {
  position: absolute;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.get_Rate .rate_wrapper .rate_viewer .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(64, 64, 74, 0.87);
}

.order_modal,
.order_modal2 {
  overflow-y: auto;
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(64, 64, 74, 0.815);
  display: flex;
  justify-content: center;
  align-items: center;
}
.order_modal .card_modal,
.order_modal2 .card_modal {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  width: 95%;
  height: 80vh;
  overflow-y: auto;
}
@media (min-width: 770px) {
  .order_modal .card_modal,
  .order_modal2 .card_modal {
    display: flex;
    height: -moz-fit-content;
    height: fit-content;
    width: 70%;
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .order_modal .card_modal,
  .order_modal2 .card_modal {
    width: 50%;
  }
}
.order_modal .card_modal2,
.order_modal2 .card_modal2 {
  width: 98%;
  position: relative;
}
@media (min-width: 770px) {
  .order_modal .card_modal2,
  .order_modal2 .card_modal2 {
    width: 40%;
  }
}
@media (min-width: 1024px) {
  .order_modal .card_modal2,
  .order_modal2 .card_modal2 {
    width: 30%;
  }
}
.order_modal .card_modal2 .cancel_modal2,
.order_modal2 .card_modal2 .cancel_modal2 {
  position: absolute;
  cursor: pointer;
  top: 1rem;
  right: 1rem;
}
@media (min-width: 770px) {
  .order_modal .card_modal2 .cancel_modal2,
  .order_modal2 .card_modal2 .cancel_modal2 {
    right: 2rem;
  }
}
.order_modal .cancel_modal,
.order_modal2 .cancel_modal {
  position: absolute;
  cursor: pointer;
  top: 1rem;
  right: 1rem;
}
@media (min-width: 770px) {
  .order_modal .cancel_modal,
  .order_modal2 .cancel_modal {
    right: 2rem;
  }
}

.alert_info {
  color: red;
}

.log_alert {
  color: red;
}

.input_tracking_id_btn {
  background-color: #0047ab;
  width: 50px;
  height: 50px;
  position: fixed;
  z-index: 6 !important;
  position: fixed;
  bottom: 3rem;
  right: 2rem;
  font-size: larger;
  color: #fff;
}

.trackingId_modal {
  background-color: rgba(52, 51, 67, 0.897);
  position: fixed;
  z-index: 7;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.trackingId_modal .id_card {
  width: 95%;
}
@media (min-width: 770px) {
  .trackingId_modal .id_card {
    width: 30%;
  }
}

.input_tracking_id_btn,
.tracking_close {
  cursor: pointer;
}

.none {
  display: none;
}

.media_modal {
  background-color: rgba(52, 51, 67, 0.897);
  position: fixed;
  z-index: 7;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.media_modal .media_canvas {
  width: 98%;
  height: 90vh;
}
@media (min-width: 770px) {
  .media_modal .media_canvas {
    width: 50%;
    height: 50vh;
  }
}
.media_modal .media_canvas div {
  height: inherit;
}
.media_modal .media_canvas div video {
  height: inherit;
  width: 100%;
}
.media_modal .media_canvas .video_bg {
  position: relative;
}
.media_modal .media_canvas .video_bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.media_modal .media_canvas .video_bg .overlay {
  background-color: rgba(52, 51, 67, 0.945);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.media_modal .media_canvas .video_bg .cancel_modal_video {
  position: absolute;
  cursor: pointer;
  top: 1rem;
  right: 2rem;
}
/*** Youtube Video ***/
.video {
  position: relative;
  height: 100%;
  min-height: 500px;
  background-image: url("../img/how2.jpg ");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.video .btn-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 200px;
  height: 200px;
  background-color: #47b2e4 !important;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: #f1f1f1;
  border-radius: 50%;
  transition: all 200ms;
}

.video .btn-play img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #000 !important;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal {
  z-index: 99999;
}

#videoModal .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

#videoModal .modal-body {
  position: relative;
  padding: 0px;
}

#videoModal .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

.tracking_info {
  min-height: 100vh;
}
.tracking_info .track_card {
  width: 98%;
  margin-top: 4rem;
  margin-bottom: 3rem;
}
@media (min-width: 770px) {
  .tracking_info .track_card {
    margin-top: 0;
    margin-bottom: 0;
    width: 50%;
  }
}
.tracking_info .track_card header {
  border-bottom: 2px solid #f4f5fa;
}
.tracking_info .track_card header .status {
  background-color: #e9e9ec;
  border: 3px solid #a5a5b1;
  color: #40404a;
  border-radius: 100px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 3px 6px 3px;
}
.tracking_info .track_card .meta {
  border-bottom: 2px solid #f4f5fa;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 770px) {
  .tracking_info .track_card .meta {
    gap: 0;
    flex-direction: row;
  }
}
.tracking_info .track_card .meta .meta_help {
  line-height: 4px;
}
.tracking_info .track_card .meta_package {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  border-bottom: 2px solid #f4f5fa;
  gap: 1rem;
}
@media (min-width: 770px) {
  .tracking_info .track_card .meta_package {
    gap: 0;
  }
}
.tracking_info .track_card .meta_history .meta_card {
  border-left: 1px solid #7a7583;
  margin-left: 1rem;
}
.tracking_info .track_card .meta_history .meta_card li {
  margin-left: -0.65rem;
}
.tracking_info .track_card .meta_history .meta_card li .stamp {
  width: 20px;
  height: 20px;
  position: relative;
  border-radius: 50%;
  border: 1px solid #7a7583;
}
.tracking_info .track_card .meta_history .meta_card li .stamp div {
  width: 70%;
  height: 70%;
  border-radius: 50%;
}

.done {
  background-color: green;
}

.on {
  background-color: #7a7583;
}
/* 
clip-path: polygon(0 0, 50% 0, 100% 100%, 0% 100%);
clip-path: polygon(50% 0, 100% 0, 100% 100%, 0% 100%);
*/ /*# sourceMappingURL=main.css.map */

/* Login Styling */
/* Wrapper for input and icon */
.btn-transit {
  background-color: #ff9900;
  color: #fff !important;
}
.btn-transit:hover {
  background-color: #fc9e1bb2;
  color: #fff !important;
}
.tab_contianer2 nav {
  background-color: #40404a;
  height: 9vh;
  padding-left: 0.5rem;
  padding-top: 1rem;
  display: flex;
}

@media (min-width: 770px) {
  .tab_contianer2 nav {
    height: 7vh;
  }
}

.tab_contianer2 nav .tab {
  height: 100%;
  display: flex;
  align-items: center;
  color: #c0c0c9;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.tab_contianer2 nav .active_tab {
  background-color: #fff;
  color: #000000;
  border-top: 2px solid #0047ab;
}

.tab_contianer2 main {
  padding: 0.5rem 0.5rem 0.5rem;
}

.tab_contianer2 main .content {
  display: none;
}

.tab_contianer2 main .content .timeline {
  width: 100%;
}

.tab_contianer2 main .content .timeline .steps {
  position: relative;
}

.tab_contianer2 main .content .timeline .steps .line {
  background-color: #40404a;
  width: 100%;
  height: 2px;
}

.tab_contianer2 main .content .timeline .steps .meta_info {
  display: flex;
  justify-content: space-around;
  position: absolute;
  width: 100%;
  top: -1.2rem;
}

.tab_contianer2 main .content .timeline .steps .meta_info .num {
  background-color: #fff;
  border: 3px solid #0047ab;
  color: #0047ab;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
}

.tab_contianer2 main .content .timeline .steps .meta_info .active_step {
  color: #fff;
  background-color: #0047ab;
}

.tab_contianer2 main .active_content {
  display: block;
}
.btn-outline-warning {
  background-color: #fff !important;
  border: 1px solid #0047ab !important;
  color: #0047ab;
}
.btn-outline-warning:hover {
  background-color: #0047ab !important;
  color: #fff;
}
.logo {
  width: 15% !important;
}
.input-wrapper {
  position: relative;
}

.errorDiv {
  color: red;
  font-size: 12px;
}
/* Container for profile image and icon */
.profile-container {
  position: relative;
  display: inline-block;
  /* Ensures the container fits the image size */
}

/* Profile image styling */
.profile_img {
  width: 150px;
  /* Set the desired width */
  height: 150px;
  /* Set the desired height */
  border-radius: 50%;
  /* Make the image circular */
  object-fit: cover;
  /* Ensure the image covers the entire container */
}

/* Camera icon styling */
.camera-icon {
  position: absolute;
  bottom: 10px;
  /* Adjust to position the icon closer or further from the bottom */
  right: 10px;
  /* Adjust to position the icon closer or further from the right */
  background-color: #fff;
  /* Optional: white background to make icon stand out */
  padding: 5px;
  border-radius: 50%;
  /* Make the icon circular */
  font-size: 18px;
  /* Adjust the size of the icon */
  color: #333;
  /* Change the icon color */
  cursor: pointer;
  /* Indicate it's clickable */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  /* Optional: add a shadow effect */
}
.login-bg {
  background-image: url(/img/pt.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 992px) {
  .login-bg {
    background-size: cover;
    height: 100vh;
  }
}
.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 60%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.375rem;
}

.badge-success {
  background-color: #28a74644;
  color: rgb(4, 170, 4);
}
.btn-bg-success {
  background-color: #28a74644;
  color: rgb(4, 170, 4);
}
.btn-bg-success:hover {
  background-color: #28a7466c;
  color: rgb(4, 170, 4);
}
.badge-warning {
  background-color: #ffc107;
  color: black;
}

.badge-danger {
  background-color: #ffe5e6;
  color: red;
}
.btn-bg-danger {
  background-color: #ffe5e6;
  color: red;
}
.btn-bg-danger:hover {
  background-color: #f5bbbc;
  color: red;
}

/* Mobile View Adjustment */
@media (max-width: 768px) {
  .transaction_detail {
    flex-direction: column;
    align-items: start;
  }

  .transaction_detail .text-end {
    align-items: start;
  }

  .badge {
    margin-bottom: 0.5rem;
    /* Spacing between badge and text */
  }
}

.position-absolute {
  position: absolute;
}

.top-0 {
  top: 0;
}

.start-100 {
  left: 100%;
}

.translate-middle {
  transform: translate(-50%, -50%);
}
.bg-login {
  color: white !important;
  background-color: orange;
  width: 100%;
}
.bg-login:hover {
  color: white !important;
  background-color: rgba(255, 166, 0, 0.699);
  width: 100%;
}
#suggestions {
  max-height: 150px;
  /* Set maximum height for the suggestions */
  overflow-y: auto;
  /* Enable vertical scrolling */
  border: 1px solid #ccc;
  /* Optional: add border */
  background-color: white;
  /* Optional: background color */
  position: absolute;
  /* Optional: make suggestions appear below the input */
  z-index: 1000;
  /* Optional: ensure suggestions appear above other content */
}

#suggestions div {
  padding: 8px;
  /* Space around suggestion items */
  cursor: pointer;
  /* Change cursor to pointer on hover */
}

#suggestions div:hover {
  background-color: #f0f0f0;
  /* Highlight on hover */
}
button.loading {
  cursor: not-allowed;
  opacity: 0.8;
}

button.loading::after {
  content: "⏳"; /* Simple spinner icon */
  margin-left: 8px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.tracking-status-received {
  background-color: #ff9800;
  /* Darker orange for Received */
  border: 3px solid #ff9800;
  color: #fff;
  border-radius: 100px;
  height: fit-content;
  padding: 3px 6px;
}

.tracking-status-on-transit {
  background-color: #2196f3;
  /* Blue for On Transit */
  border: 3px solid #2196f3;
  color: #fff;
  border-radius: 100px;
  height: fit-content;
  padding: 3px 6px;
}

.tracking-status-delivered {
  background-color: #4caf50;
  /* Green for Delivered */
  border: 3px solid #4caf50;
  color: #fff;
  border-radius: 100px;
  height: fit-content;
  padding: 3px 6px;
}

.tracking-status-failed {
  background-color: #f44336;
  /* Red for Failed */
  border: 3px solid #f44336;
  color: #fff;
  border-radius: 100px;
  height: fit-content;
  padding: 3px 6px;
}

/* Balance Sheet Style Start */
#invoice {
  padding: 0px;
}

.invoice {
  position: relative;
  background-color: #fff;
  min-height: 680px;
  padding: 15px;
}

.invoice header {
  padding: 10px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #0047ab;
}

.invoice .company-details {
  text-align: right;
}

.invoice .company-details .name {
  margin-top: 0;
  margin-bottom: 0;
}

.invoice .contacts {
  margin-bottom: 20px;
}

.invoice .invoice-to {
  text-align: left;
}

.invoice .invoice-to .to {
  margin-top: 0;
  margin-bottom: 0;
}

.invoice .invoice-details {
  text-align: right;
}

.invoice .invoice-details .invoice-id {
  margin-top: 0;
  color: #0047ab;
}

.invoice main {
  padding-bottom: 50px;
}

.invoice main .thanks {
  margin-top: -100px;
  font-size: 2em;
  margin-bottom: 50px;
}

.invoice main .notices {
  padding-left: 6px;
  border-left: 6px solid #0047ab;
  background: #e7f2ff;
  padding: 10px;
}

.invoice main .notices .notice {
  font-size: 1.2em;
}

.invoice table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 20px;
}

.invoice table td,
.invoice table th {
  padding: 15px;
  background: #eee;
  border-bottom: 1px solid #fff;
}

.invoice table th {
  white-space: nowrap;
  font-weight: 400;
  font-size: 16px;
}

.invoice table td h3 {
  margin: 0;
  font-weight: 400;
  color: #0047ab;
  font-size: 1.2em;
}

.invoice table .qty,
.invoice table .total,
.invoice table .unit {
  text-align: right;
  font-size: 1.2em;
}

.invoice table .no {
  color: #fff;
  font-size: 1.6em;
  background: #0047ab;
}

.invoice table .unit {
  background: #ddd;
}

.invoice table .total {
  background: #0047ab;
  color: #fff;
}

.invoice table tbody tr:last-child td {
  border: none;
}

.invoice table tfoot td {
  background: 0 0;
  border-bottom: none;
  white-space: nowrap;
  text-align: right;
  padding: 10px 20px;
  font-size: 1.2em;
  border-top: 1px solid #aaa;
}

.invoice table tfoot tr:first-child td {
  border-top: none;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 0px solid rgba(0, 0, 0, 0);
  border-radius: 0.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 6px 0 rgb(218 218 253 / 65%),
    0 2px 6px 0 rgb(206 206 238 / 54%);
}

.invoice table tfoot tr:last-child td {
  color: #0047ab;
  font-size: 1.4em;
  border-top: 1px solid #0047ab;
}

.invoice table tfoot tr td:first-child {
  border: none;
}

.invoice footer {
  width: 100%;
  text-align: center;
  color: #777;
  border-top: 1px solid #aaa;
  padding: 8px 0;
}

@media print {
  .invoice {
    font-size: 11px !important;
    overflow: hidden !important;
  }

  .invoice footer {
    position: absolute;
    bottom: 10px;
    page-break-after: always;
  }

  .invoice > div:last-child {
    page-break-before: always;
  }
}

.invoice main .notices {
  padding-left: 6px;
  border-left: 6px solid #0047ab;
  background: #e7f2ff;
  padding: 10px;
}

/* Balnce Sheet Styles end */

/* Couriers Styles */
/* Courier Options Container Styling */
.courier-options-container {
  max-height: 900px;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 30px;
  background-color: #f8f9fa;
  margin-bottom: 5% !important;
  margin-top: 15% !important;
}

/* Custom scrollbar styling */
.courier-options-container::-webkit-scrollbar {
  width: 8px;
}

.courier-options-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.courier-options-container::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

.courier-options-container::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.courier-options-list {
  border: 2px solid #dee2e6;
  border-radius: 12px;
  padding: 16px;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
  gap: 10;
}

.courier-option {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.courier-option:hover {
  border-color: #0047ab;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
}

.courier-option.selected {
  border-color: #0047ab;
  background-color: #f8f9ff;
}

.courier-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.courier-details {
  display: flex;
  align-items: center;
  gap: 10px;
}

.courier-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.courier-name {
  font-weight: 600;
  font-size: 16px;
}

.zone-info {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

.price-info {
  text-align: right;
}

.price-main {
  font-size: 18px;
  font-weight: bold;
  color: #0047ab !important;
}

.price-original {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

.weight-info {
  font-size: 11px;
  color: #999;
  margin-top: 5px;
  text-align: center;
  padding-top: 8px;
  border-top: 1px solid #f0f0f0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .courier-options-container {
    max-height: 300px;
    padding: 10px;
  }

  .courier-option {
    padding: 12px;
    min-height: 120px;
  }

  .courier-logo {
    width: 32px;
    height: 32px;
  }

  .courier-name {
    font-size: 13px;
  }

  .price-main {
    font-size: 14px;
  }

  .weight-info {
    font-size: 11px;
    padding: 6px;
  }
}

@media (max-width: 576px) {
  .courier-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .price-info {
    text-align: left;
    min-width: auto;
  }
}

.timing-info {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 8px 0;
  font-size: 11px;
  color: #0047ab;
}

.pickup-time,
.delivery-time {
  flex: 1;
  text-align: center;
  background-color: #e6eefb; /* Light blue background */
  padding: 4px 6px;
  border-radius: 4px;
  font-weight: 500;
}

@media (max-width: 576px) {
  .timing-info {
    flex-direction: column;
    gap: 4px;
  }
}

/* Quotation Styling */
/* .bg_input1 {
  background-color: #0047AB !important;
  color: white;
} */

.modal-dialog {
  max-width: 400px;
}

.btn-brand {
  background-color: #0047ab;
  border-color: #0047ab;
  color: white;
}

.btn-brand:hover {
  background-color: #003380;
  border-color: #003380;
  color: white;
}

.text-brand {
  color: #0047ab;
}

.fw-semibold {
  font-weight: 600;
}







.card_modal1,
.order_modal2 .card_modal1 {
  width: 98%;
  position: relative;
}
@media (min-width: 770px) {
   .card_modal1,
  .order_modal2 .card_modal1 {
    width: 40%;
  }
}
@media (min-width: 1024px) {
   .card_modal1,
  .order_modal2 .card_modal1 {
    width: 30%;
  }
}





.mymy {
  overflow-y: auto;
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(64, 64, 74, 0.815);
  display: flex;
  justify-content: center;
  align-items: center;
}
.mymy .card_modal {
  background-color: #E3E2E9;
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  width: 95%;
  height: 80vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 640px) {
  .mymy .card_modal {
    width: 50%;
  }
}
@media (min-width: 770px) {
  .mymy .card_modal {
    height: -moz-fit-content;
    height: fit-content;
    width: 70%;
    gap: 1rem;
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .mymy .card_modal {
    width: 50%;
  }
}
.mymy .cancel_modal {
  position: absolute;
  cursor: pointer;
  top: 1rem;
  right: 1rem;
}
@media (min-width: 770px) {
  .mymy .cancel_modal {
    right: 2rem;
  }
}

.alert_info {
  color: red;
}

.log_alert {
  color: red;
}

.flex_sum {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 15px;
  line-height: 3px;
}

.ln_h {
  line-height: 5px;
}

.fs_fif {
  font-size: 15px;
}

