
.header {
    background-color: #4D148C;
    display: flex;
    height: 40px
  }
  
  .headerIcon {
    height: 23px;
    cursor:pointer;
    color: white
  }
  
  .headerText {
    /* font-family: $fedEx-style; */
    position: relative;
    color: white;
    align-items: center;
    display: flex;
    left: 21px;
    font-size: 16px;
    top: -3px;
  }
   
  .overlay {
      height: 100%;
      width: 0;
      position: fixed;
      z-index: 1000;
      top: 40px;
      right: 0;
      background-color: whitesmoke;
      opacity: 0.9;
      transition: all 0.5s ease;
      width: 20%;
      display: grid;
      grid-area: overlay;
      grid-template-areas: "close"
                  "navigate";
      grid-template-rows: 5% 95%;
      box-shadow: 0px 4px 8px 1px rgba(0.3, 0.3, 0.3, 0.3) ;
  
  }
  
  .overlay div a:hover, .overlay div a:focus {
    color: #f1f1f1;
  }
  
  .dropdown-list {
    background-color: whitesmoke;
    position: absolute;
    right: 14px;
    top: 39px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px 1px rgba(0.3, 0.3, 0.3, 0.3);
    z-index: 1001;
  }
  
  .dropdown-list ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
  }
  
  .dropdown-list ul li a {
    padding: 10px 25px;
    display: block;
  }
  
  .marginRight {
    margin-right: 10px;
  }
  
  .refreshIcon {
    color: white;
    font-size: 26px;
    cursor: pointer;
  }
  
    
    @media only screen and  (max-width:767px){
      .header {
        height: 30px
      }
      .overlay {
        top: 30px
      }
     .headerText {
        position: relative;
        color: white;
        align-items: center;
        display: flex;
        left: -7px;
        font-size: 12px;
        top: -2px;
    }  
    }
    
    @media only screen and ((min-width: 768px) and (max-width: 1499px)){
    .logoImg {
      width: 75px;
    }  
    .headerText {
      position: absolute;
      left: 81px;
      font-size: 16px;
      top: 7px;
    }
    .margin {
      margin-left: 11px;
      margin-right: -319px;
    }
    }
    
    @media only screen and ((min-width: 1500px) and (max-width: 2200px)){
    
    .logoImg {
      width: 75px;
    }  
    .headerText {
      position: absolute;
      left: 81px;
      font-size: 17px;
      top: 7px;
    }
    
    }
    
    @media only screen and ((min-width: 2201px) and (max-width: 4000px)){
    
    .logoImg {
      width: 100px;
    }  
    .header {
      height: 57px;
    }
    .headerText {
      position: absolute;
      left: 107px;
      font-size: 23px;
      top: 12px;
    }
    .headerIcon {
        top: 13px;
        height: 28px;
        cursor: pointer;
    }
    .refreshIcon {
      font-size: 32px
    }
    .overlay {
      top: 57px;
    }
    
    }
    