.header {
    background:linear-gradient(198deg, #00e5a0 0%, #2ded5c 100%);
    color: #fff;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    z-index: 100;
    box-shadow: var(--shadow-md);
  }
  
  .header-back {
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
  }
  
  .header-back:active {
    transform: scale(0.9);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  }
  
  .header-back svg {
    width: 20px;
    height: 20px;
    stroke-width: 3;
  }
  
  .header-title {
    font-size: 16px!important;
    font-weight:700!important;
  }