@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
}
a {
  text-decoration: none;
}
:root {
    --primary: #3498db;
}
.hover-zoom {
    transition: .2s;
}
.hover-zoom:hover {
    transform: scale(1.05);
}
.cursor-pointer {
    cursor: pointer;
}
.root {
    padding: 3rem 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.3);
  }
  
  figure {
    display: flex;
  }
  figure img {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    border: 1px solid #0d6efd;
    margin-right: 1.5rem;
  }
  figure figcaption {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
  figure figcaption h4 {
    font-size: 1.4rem;
    font-weight: 500;
  }
  figure figcaption h6 {
    font-size: 1rem;
    font-weight: 300;
  }
  figure figcaption h2 {
    font-size: 1.6rem;
    font-weight: 500;
  }
  
  .order-track {
    margin-top: 2rem;
    padding: 0 1rem;
    border-top: 1px dashed #2c3e50;
    padding-top: 2.5rem;
    display: flex;
    flex-direction: column;
  }
  .order-track-step {
    display: flex;
    height: 7rem;
  }
  .order-track-step:last-child {
    overflow: hidden;
    height: 4rem;
  }
  .order-track-step:last-child .order-track-status span:last-of-type {
    display: none;
  }
  .order-track-status {
    margin-right: 1.5rem;
    position: relative;
  }
  .order-track-status-dot {
    display: block;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: #0d6efd;
  }
  .order-track-status-line {
    display: block;
    margin: 0 auto;
    width: 2px;
    height: 7rem;
    background: #0d6efd;
  }
  .order-track-text-stat {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 3px;
  }
  .order-track-text-sub {
    font-size: 1rem;
    font-weight: 300;
  }
  
  .order-track {
    transition: all 0.3s height 0.3s;
    transform-origin: top center;
  }

.mobonly {
  display: none;
}

@media screen and (max-width: 500px) {
  .comonly {
      display: none !important;
  }
  .mob-title {
    font-size: 1.2rem;
    margin-left: 10px !important;
  }
  .mob-logo  {
    width: 40px !important;
    height: 40px;
  }
  .mobonly {
    display: block;
  }
  .mob-traking {
    width: 100% !important;
  }
  .mob-price {
    flex-direction: column;
    align-items: flex-start !important;
  }
  .mob-mt-3 {
    margin-top: 10px;
  }
  .mob-mb-0 {
    margin-bottom: 0 !important;
  }
}
