.box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    margin: 0 -20px;
  }
  
  .dropdown {
    position: static;
    flex: 1;
    margin: 0 10px;
    margin-bottom: 10px;
  }
  .btn{
    width: 100%;
    position: relative;
    overflow: visible;
  }
  .added-div{
    position: absolute;
    bottom: -30px;
    height: 30px;
    left: 0;
    right: 0;
    display: block;
    z-index: 9999999999999;
    display: none;
  }
  .added-div img{
    width: 30px;
    margin-top: 5px;
  }
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 10px;
    /* width: 100%; */
    right: 10px;
    transform: translateY(5px);
    display: none;
    z-index: 9999999;
    padding: 20px 0;
    height: 150px;
  }
  .dropdown-menu li{
    float: left;
    margin-left: 25px;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  /* /* .btn.dropdown-toggle{
      position: relative;
      width: 100%;
      overflow: visible;
  } */
  
  /* .btn.dropdown-toggle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 28px;
    left: 0;
    margin: 0px;
    bottom: -28px;
    background-color: #fff;
    background-image: url(../images/top.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px 30px;
    display: none;
    border: none;
    z-index: 9999;
  }
  
  .dropdown:hover .btn.dropdown-toggle::after {
    display: block;
  } */
