.macro-dropdown {
    position: relative;
    display: inline-block;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    input{
      cursor: pointer;
    }
  }
  .macro-dropdown > a {
    text-decoration: none;
  }

  .macro-dropdown > button{
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    background-color: white;
    border: 1px solid #ccc;
    padding: 6px 20px 6px 10px;
    border-radius: 4px;
    display: inline-block;
    color: black;
  }
  .macro-dropdown > button{
    margin: 0 2px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border-radius: 4px;
    background-color: #1d1d77;
    border-color: #1d1d77;
    color: #fff;
  }
  .navigatioin-section.macro-dropdown > a, .filter-section.macro-dropdown > a{
    padding: 0;
    border: none;
    background-color: transparent;
  }
  .macro-dropdown[disabled]{
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65;
  }
  /* .macro-dropdown > a:before, */
  .macro-dropdown > button:before {
    position: absolute;
    right: 7px;
    top: 14px;
    content: " ";
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 7px solid #908a8a;
  }
  
  .macro-dropdown input[type="checkbox"] {
    position: absolute;
    display: block;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    margin: 0px;
    opacity: 0;
  }
  
  .macro-dropdown input[type="checkbox"]:checked {
    position: fixed;
    z-index: +0;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    cursor: auto;
  }
  
  .macro-dropdown ul {
    position: absolute;
    z-index: 1;
    top: 18px;
    border: 1px solid #ccc;
    border-radius: 3px;
    left: -50px;
    list-style: none;
    padding: 4px 0px;
    display: none;
    background-color: white;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.175);
  }
  .macro-dropdown.macro-drop-up input[type="checkbox"]:checked + ul ,
  .macro-dropdown input[type="checkbox"]:checked + ul {
    display: block;
  }

  .macro-dropdown.macro-drop-up ul{
    top: initial;
    left: initial;
    right: 0;
    bottom: 100%;
  }
  
  .macro-dropdown ul li {
    display: block;
    padding: 6px 20px;
    white-space: nowrap;
    width: 100%;
  }
  
  .macro-dropdown ul li:hover {
    background-color: #f5f5f5;
    cursor: pointer;
  }
  
  .macro-dropdown ul li a {
    text-decoration: none;
    display: block;
    color: black;
  }
  
  .macro-dropdown .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
    font-size: 1px;
    padding: 0;
  }
  .macro-icon {
  background: url("../views/macro.svg") center/100% no-repeat;
  display: inline-block;
  width: 25px;
  height: 25px;
}

.menu-container{
  position: relative;
  cursor: pointer;
  .menu-heading{
    display: flex;
    justify-content: start;
    align-items: center;
    width: fit-content;
    padding: 5px 1.4rem;
    background-color: #FFF;
    .heading-icon{
      width: 14px;
      height: 14px
    }
    .heading-txt{
      font-size: 1rem;
      font-weight: 500;
      padding-left: 13px;
      color: #070f63;
    }
  }
  .menu-position-right{
    right: -8.7rem;
  }
  .menu-position-left{
    left: -8.7rem;
  }
  .menu-list{
    list-style: none;
    display: none;
    position: absolute;
    padding: 0;
    top: 1.5rem;
    border: 1px solid #ccc;
    .menu-list-item{
      display: flex;
      justify-content: start;
      width: 8.5rem;
      align-items: center;
      background: #fff;
      font-size: 0.9rem;
      font-weight: 600;
      padding: 5px 1rem;
      text-align: center;
      border-bottom: 1px solid #ccc;
      .item-txt{
        padding-left: 0.6rem;
      }
      .item-icon{
        width:10px;
        height: 10px;
      }
    }
  }
}
.location-arrow{
  background-image: url('./location-arrow.svg');
}
.caret-right{
  background-image: url('./more-actions.svg');
}
.menu-container:hover .menu-list{
  display: block;
}
.menu-list-item:hover{
  background: #f6f6f6 !important;
}