<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Custom Font */
@font-face {
    font-family: "Poppins";
    font-weight: 100;
    src: url(./font/Poppins/Poppins-Thin.ttf) format("truetype");
    font-style: normal;
  }
  @font-face {
    font-family: "Poppins";
    font-weight: 100;
    src: url(./font/Poppins/Poppins-ThinItalic.ttf) format("truetype");
    font-style: italic;
  }
  @font-face {
    font-family: "Poppins";
    font-weight: 200;
    src: url(./font/Poppins/Poppins-ExtraLight.ttf) format("truetype");
    font-style: normal;
  }
  @font-face {
    font-family: "Poppins";
    font-weight: 200;
    src: url(./font/Poppins/Poppins-ExtraLightItalic.ttf) format("truetype");
    font-style: italic;
  }
  @font-face {
    font-family: "Poppins";
    font-weight: 300;
    src: url(./font/Poppins/Poppins-Light.ttf) format("truetype");
    font-style: normal;
  }
  @font-face {
    font-family: "Poppins";
    font-weight: 300;
    src: url(./font/Poppins/Poppins-LightItalic.ttf) format("truetype");
    font-style: italic;
  }
  @font-face {
    font-family: "Poppins";
    font-weight: 400;
    src: url(./font/Poppins/Poppins-Regular.ttf) format("truetype");
    font-style: normal;
  }
  @font-face {
    font-family: "Poppins";
    font-weight: 400;
    src: url(./font/Poppins/Poppins-Italic.ttfd) format("truetype");
    font-style: italic;
  }
  @font-face {
    font-family: "Poppins";
    font-weight: 500;
    src: url(./font/Poppins/Poppins-Medium.ttf) format("truetype");
    font-style: normal;
  }
  @font-face {
    font-family: "Poppins";
    font-weight: 500;
    src: url(./font/Poppins/Poppins-Medium.ttf) format("truetype");
    font-style: italic;
  }
  @font-face {
    font-family: "Poppins";
    font-weight: 600;
    src: url(./font/Poppins/Poppins-SemiBold.ttf) format("truetype");
    font-style: normal;
  }
  @font-face {
    font-family: "Poppins";
    font-weight: 600;
    src: url(./font/Poppins/Poppins-SemiBoldItalic.ttf) format("truetype");
    font-style: italic;
  }
  @font-face {
    font-family: "Poppins";
    font-weight: 700;
    src: url(./font/Poppins/Poppins-Bold.ttf) format("truetype");
    font-style: normal;
  }
  @font-face {
    font-family: "Poppins";
    font-weight: 700;
    src: url(./font/Poppins/Poppins-BoldItalic.ttf) format("truetype");
    font-style: italic;
  }
  @font-face {
    font-family: "Poppins";
    font-weight: 800;
    src: url(./font/Poppins/Poppins-ExtraBold.ttf) format("truetype");
    font-style: normal;
  }
  @font-face {
    font-family: "Poppins";
    font-weight: 800;
    src: url(./font/Poppins/Poppins-ExtraBoldItalic.ttf) format("truetype");
    font-style: italic;
  }
  @font-face {
    font-family: "Poppins";
    font-weight: 900;
    src: url(./font/Poppins/Poppins-Black.ttf) format("truetype");
    font-style: normal;
  }
  @font-face {
    font-family: "Poppins";
    font-weight: 9 00;
    src: url(./font/Poppins/Poppins-BlackItalic.ttf) format("truetype");
    font-style: italic;
  }
  
  @font-face {
    font-family: "icomoon";
    src: url("font/fonts/icomoon.eot?64fyxk");
    src: url("font/fonts/icomoon.eot?64fyxk#iefix") format("embedded-opentype"),
      url("font/fonts/icomoon.ttf?64fyxk") format("truetype"),
      url("font/fonts/icomoon.woff?64fyxk") format("woff"),
      url("font/fonts/icomoon.svg?64fyxk#icomoon") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block;
  }
  
  [class^="icon-"],
  [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: "icomoon" !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
  
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .icon-time-delivery:before {
    content: "\e900";
  }
  
  /* Custom Font */
  * {
    font-family: "Poppins", sans-serif;
  }
  
  .glass-card {
    position: relative;
    /* width: 280px; */
    height: auto;
    margin: 30px;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    padding: 10px 15px;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
  }
  
  .glass-card.bg-blue {
    background: #7f93e1;
  }
  
  .glass-card.default {
    background: rgba(255, 255, 255, 0.1);
  }
  /* .glass-card .glass-content {
    padding: 20px;
    text-align: center;
    transition: 0.5s;
    opacity: 0;
    transform: translateY(100px);
  } */
  
  .glass-card:hover .glass-content {
    transform: translateY(0px);
    opacity: 1;
  }
  
  /* .glass-card .glass-content h2 {
    position: absolute;
    top: -64px;
    right: 30px;
    font-size: 8em;
    color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
  }
  
  .glass-card .glass-content h3 {
    font-size: 1.8em;
    color: #f57534;
    z-index: 1;
  }
  
  .glass-card .glass-content p {
    font-size: 1em;
    color: #fff;
    font-weight: 300;
  } */
  
  .hide {
    display: none;
  }
  
  body {
    position: relative;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    min-height: 100vh;
    /* background:linear-gradient(#f57b3d,#ef6a25); */
    background-color: azure;
  }
  
  body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#f57534, #4e80eb);
    clip-path: circle(19% at right 70%);
    z-index: 10;
  }
  
  body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#4e80eb, #f57534);
    clip-path: circle(20% at 10% 10%);
    z-index: 10;
  }
  
  header.sticky-header {
    position: sticky;
    top: 0;
    padding: 10px;
    backdrop-filter: blur(5px);
    z-index: 1000;
    background-color: #3333355e;
    height: 6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
  }
  
  header.sticky-header {
    transition: 0.5s;
  }
  
  header.sticky-header p &gt; i {
    transition: 0.5s;
  }
  
  header.sticky-header p &gt; small {
    font-weight: 600;
    font-size: 0.75rem;
    transition: 0.5s;
  }
  
  .logo {
    width: auto;
    height: 4.5rem;
    transition: 0.5s;
  }
  
  .main-content {
    position: relative;
    z-index: 11;
    min-height: calc(100vh - 6rem);
    /* width: 45%; */
  }
  
  /* .animation-bullet-1 {
    display: block;
    width: 20px;
    height: 20px;
    background-color: black;
    border-radius: 50%;
  } */
  
  .animation .animation-truck {
    position: absolute;
    font-size: 2.5rem;
    top: 65%;
    left: 25%;
  }
  
  .animation .animation-track::before,
  .animation .animation-track::after {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    background-color: black;
    border-radius: 50%;
  }
  
  .main-content .animation-track.track-1::before {
    top: 50%;
    left: 50%;
  }
  
  .main-content .animation-track.track-1::after {
    top: 10%;
    left: 50%;
  }
  
  .main-content .animation-track.track-2::before {
    top: 20%;
    left: 50%;
  }
  
  .main-content .animation-track.track-2::after {
    top: 25%;
    left: 50%;
  }
  
  .main-content .animation-track.track-3::before {
    top: 20%;
    left: 10%;
  }
  
  .main-content .animation-track.track-3::after {
    top: 10%;
    left: 10%;
  }
  
  .main-content .animation-track.track-4::before {
    top: 20%;
    left: 20%;
  }
  
  .main-content .animation-track.track-4::after {
    top: 10%;
    left: 25%;
  }
  
  .main-content .animation-track.track-5::before {
    top: 20%;
    left: 30%;
  }
  
  .main-content .animation-track.track-5::after {
    top: 10%;
    left: 35%;
  }
  
  .search-bar {
    position: relative;
    /* width: 35%; */
    width: 100%;
  }
  
  .search-bar input {
    width: 100%;
    padding: 5px 5px;
    border: 1px sold rgba(255, 255, 255, 0.25);
    background: #f0ffff;
    border-radius: 5px;
    outline: none;
    color: black;
    font-size: 1em;
    transition: 0.5s;
  }
  
  .search-bar span {
    position: absolute;
    left: 0;
    padding: 10px 10px;
    pointer-events: none;
    font-size: 0.8em;
    color: rgba(150, 150, 150, 0.459);
    text-transform: uppercase;
    transition: 0.5s;
  }
  
  /* .search-bar input:valid~span, */
  .search-bar input:focus ~ span {
    color: white;
    transform: translateX(10px) translateY(-5px);
    font-size: 0.65em;
    padding: 0 10px;
    background-color: #ef6a25;
    border-left: 1px solid #ef6a25;
    border-right: 1px solid #ef6a25;
  }
  
  /* .search-bar input:valid, */
  .search-bar input:focus {
    border: 1px solid #ef6a25;
    padding: 5px 10px;
  }
  
  .background-slogan {
    font-family: Arial, Helvetica, sans-serif;
    position: absolute;
    font-size: 5rem;
    font-weight: 600;
    transform: rotate(90deg);
    color: rgba(0, 0, 0, 0.1);
    z-index: 100;
    text-align: start;
  }
  
  .first-slogan {
    top: 9.5rem;
    right: 5%;
  }
  
  .second-slogan {
    top: 14rem;
    right: 5%;
  }
  
  footer {
    background-color: #231f20;
    padding: 10px;
    position: relative;
    z-index: 11;
  }
  
  .trace-button {
    transition: 1s;
  }
  
  .tracing-icon i {
    position: relative;
    margin-left: 5px;
    animation: rotating 2s infinite ease;
  }
  
  @keyframes rotating {
    0% {
      transform: translate(0px, 0px);
    }
    25% {
      transform: translate(10px, 10px);
    }
    50% {
      transform: translate(15px, 0px);
    }
    75% {
      transform: translate(10px, -10px);
    }
    100% {
      transform: translate(0px, 0px);
    }
  }
  
  .tracker-no-box {
    display: inline-block;
    position: relative;
    margin-bottom: 0;
    margin: 0px 5px;
    padding: 5px 20px;
    vertical-align: middle;
    border: 5px solid #ef6a25;
  }
  
  .tracker-no-box::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 60%;
    background-color: #727cbf;
    bottom: 0px;
    left: -5px;
  }
  
  .tracker-no-box span::before {
    content: "";
    position: absolute;
    width: 90%;
    height: 5px;
    background-color: #727cbf;
    top: -5px;
    right: 0px;
  }
  
  .tracker-no-box::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 75%;
    background-color: #707ec6;
    top: -5px;
    right: -5px;
  }
  
  .tracker-no-box span::after {
    content: "";
    position: absolute;
    width: 95%;
    height: 5px;
    background-color: #797dbb;
    bottom: -5px;
    left: -5px;
  }
  
  .tracker-no-box span.t-icon {
    margin-right: 5px;
    font-size: 1.5rem;
    color: rgb(87, 85, 85);
  }
  
  .tracker-no-box span.t-number {
    font-size: 1rem;
    font-weight: 600;
    vertical-align: middle;
  }
  
  .sub-header {
    position: relative;
    margin-top: 2rem;
    margin-left: 2rem;
  }
  
  .sub-header-title {
    font-weight: 700;
    font-size: 0.8rem;
    position: absolute;
    top: -1.5rem;
    left: 1rem;
  }
  
  .sd-title,
  .si-title {
    font-weight: 700;
    text-transform: uppercase;
    line-height: 2rem;
    font-size: 0.8rem;
    margin-bottom: 0;
    white-space: nowrap;
    top: 5px;
    color: black;
  }
  .shipment-info {
    margin-top: 3rem;
  }
  .sd-content,
  .si-content {
    line-height: 1px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    margin-top: 8px;
    color: white;
    margin-left: 10px;
  }
  
  .sd-estimated-days {
    font-size: 1.5rem;
    margin: 0px 15px;
    position: relative;
    color: white;
  }
  
  .shipment-detail {
    display: block;
  }
  
  .shipment-detail-item {
    display: inline-block;
  }
  
  .sd-estimated-days &gt; small {
    font-size: 0.8rem;
    position: absolute;
    font-weight: 600;
    line-height: normal;
    white-space: nowrap;
    bottom: -10px;
    left: -3px;
  }
  
  .sd-from,
  .sd-destination,
  .si-recipient-name,
  .si-recipient-phone,
  .si-parcel-weight {
    position: relative;
  }
  
  .history-list {
    list-style-type: none;
    padding-left: 0;
  }
  
  .history-list .history-item {
    display: flex;
    align-items: center;
    margin: 1.5rem 0px;
    position: relative;
  }
  
  .history-list .history-item:not(:last-of-type) .history-checkpoint::before,
  .history-list .history-item:first-of-type &gt; .history-checkpoint::before {
    content: "";
    width: 1px;
    height: 73%;
    position: absolute;
    top: 95%;
    background-color: #ccc;
  }
  /* .history-list .history-item:not(:first-child) .history-checkpoint::after{
    content: "";
    width: 1px;
    height: 73%;
    position: absolute;
    top: 95%;
    background-color: #ccc;
  } */
  /* .history-list .history-item:first-of-type&gt;.history-checkpoint::before{
    content: "";
    width: 1px;
    height: 73%;
    position: absolute;
    top: 95%;
    background-color: #ccc;
  } */
  .history-list .history-item:last-of-type &gt; .history-checkpoint::before {
    content: "";
    width: 1px;
    height: 73%;
    position: absolute;
    top: -71%;
    background-color: #ccc;
  }
  
  .history-list .history-item .history-checkpoint {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: solid 1px rgba(0, 0, 0, 0.5);
    text-align: center;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .history-list .history-item .history-checkpoint &gt; span {
    font-size: 1.1rem;
  }
  
  .history-list .history-item &gt; div {
    margin-left: 10px;
    margin-right: 10px;
  }
  
  .history-list .history-item .history-detail &gt; .detail-desc {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0;
  }
  .history-list .history-item .history-timestamp,
  .history-list .history-item .history-timestamp p,
  .history-list .history-item .history-detail &gt; .detail-location {
    font-size: 0.7rem;
    color: gray;
    margin-bottom: 0;
  }
  
  /* mobile view */
  @media only screen and (max-width: 576px) {
  
    .main-content {
      width: 85%;
      position: relative;
      z-index: 105;
    }
    .tracing-page .main-content{
      width: 95%;
    }
    form {
      margin: 10px 0px;
    }
    .background-slogan{
      color:rgba(0, 0, 0, 0.05);
    }
    .first-slogan {
      top: 8.5rem;
      right: -19%;
    }
  
    .second-slogan {
      top: 13rem;
      right: -22%;
    }
    .sub-header {
      margin: 2rem auto 0px auto;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }
    .sub-header .tracker-no-box {
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .sub-header .tracker-no-box::before {
      background: #667dcd;
    }
    .sub-header .tracker-no-box::after {
      background: linear-gradient(to bottom, #657ed1, #697dcb);
    }
    .tracker-no-box span::before {
      background: linear-gradient(110deg, #6b80d5 50%, #6b80d5 50%);
    }
    .tracker-no-box span::after {
      background: linear-gradient(180deg, #6f7fc1, #6f81cd);
    }
  
    .sub-header .sub-header-title {
      position: absolute;
      top: -1.5rem;
      left: 15%;
    }
    .glass-card {
      margin: 10px;
    }
    /* .shipment-info {
      margin-top: 0.5rem;
    }
    .shipment-detail {
      display: flex;
      flex-wrap: wrap;
    }
  
    .shipment-detail .shipment-detail-item {
      flex: 0 0 100%;
      margin: 0;
    }
    .shipment-detail .shipment-detail-item .sd-title,
    .shipment-info .si-title {
      font-size: 0.7rem;
      line-height: 1rem;
    }
  
    .sub-header .tracker-no-box &gt; .t-number,
    .shipment-info .si-content,
    .shipment-detail .shipment-detail-item .sd-content {
      font-size: 0.8rem !important;
    }
    .shipment-detail .shipment-detail-item:nth-of-type(2) {
      margin: 0rem 0px 1rem 0px;
    }
    .sub-header .tracker-no-box &gt; .t-icon,
    .shipment-detail .shipment-detail-item:nth-of-type(2) .sd-estimated-days {
      font-size: 1rem;
    }
    .history-list .history-item &gt; div:last-of-type,
    .history-list .history-item &gt; div:first-of-type {
      margin-left: 0px;
      margin-right: 0px;
    }
    .history-list .history-item &gt; div:nth-of-type(2) {
      margin-left: 10px;
      margin-right: 10px;
      min-width: 35px;
      background-color: #ffffff;
      position: relative;
      z-index: 15;
    }
    .history-list .history-item &gt; div:first-of-type {
      min-width: 45px;
      max-width: 25%;
    }
  
    .history-list &gt; .history-item &gt; .history-detail &gt; .detail-desc {
      font-size: 0.7rem;
    }
    .history-list &gt; .history-item &gt; .history-detail &gt; .detail-location,
    .history-list .history-item .history-timestamp p {
      font-size: 0.6rem;
    }
    .history-list .history-item .history-checkpoint &gt; span {
      font-size: 0.9rem;
    }
  
    .history-list .history-item:not(:last-of-type) .history-checkpoint::before,
    .history-list .history-item:first-of-type &gt; .history-checkpoint::before {
      height: 60px;
      top: 100%;
      z-index: 10;
    } */
    body::before {
      clip-path: circle(10% at right 95%);
    }
  
    body::after {
      clip-path: circle(30% at 50% 10%);
    }
  }
  
  @media only screen and (max-width: 768px) {
    body::before {
      clip-path: circle(25% at right 95%);
    }
  
    body::after {
      clip-path: circle(30% at 50% 10%);
    }
  
    .main-content {
      width: 65%;
      position: relative;
      z-index: 105;
    }
    .tracing-page .main-content{
      width: 75%;
    }
    .shipment-info {
      margin-top: 0.5rem;
    }
    .shipment-detail {
      display: flex;
      flex-wrap: wrap;
    }
  
    .shipment-detail .shipment-detail-item {
      flex: 0 0 100%;
      margin: 0;
    }
    .shipment-detail .shipment-detail-item .sd-title,
    .shipment-info .si-title {
      font-size: 0.7rem;
      line-height: 1rem;
    }
  
    .sub-header .tracker-no-box &gt; .t-number,
    .shipment-info .si-content,
    .shipment-detail .shipment-detail-item .sd-content {
      font-size: 0.8rem !important;
    }
    .shipment-detail .shipment-detail-item:nth-of-type(2) {
      margin: 0rem 0px 1rem 0px;
    }
    .sub-header .tracker-no-box &gt; .t-icon,
    .shipment-detail .shipment-detail-item:nth-of-type(2) .sd-estimated-days {
      font-size: 1rem;
    }
    .history-list .history-item &gt; div:last-of-type,
    .history-list .history-item &gt; div:first-of-type {
      margin-left: 0px;
      margin-right: 0px;
    }
    .history-list .history-item &gt; div:nth-of-type(2) {
      margin-left: 10px;
      margin-right: 10px;
      min-width: 35px;
      background-color: #ffffff;
      position: relative;
      z-index: 15;
    }
    .history-list .history-item &gt; div:first-of-type {
      min-width: 45px;
      max-width: 25%;
    }
  
    .history-list &gt; .history-item &gt; .history-detail &gt; .detail-desc {
      font-size: 0.7rem;
    }
    .history-list &gt; .history-item &gt; .history-detail &gt; .detail-location,
    .history-list .history-item .history-timestamp p {
      font-size: 0.6rem;
    }
    .history-list .history-item .history-checkpoint &gt; span {
      font-size: 0.9rem;
    }
  
    .history-list .history-item:not(:last-of-type) .history-checkpoint::before,
    .history-list .history-item:first-of-type &gt; .history-checkpoint::before {
      height: 60px;
      top: 100%;
      z-index: 10;
    }
  }
  </pre></body></html>