.popup-container {
  position: inherit;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.popup-body {
  position: absolute;
  left: 30%;
  right: 30%;
  bottom: 30%;
  top: 30%;
  text-align: center;
  margin: auto;
  border-radius: 15px;
  border-color: black;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  color: #FF766E;
}

.drop-down-menu-container {
  position:relative;
  width:200px;

  //box-shadow:0px 8px 10px rgba(0, 0, 0, 0.11999999731779099);
  //background-color:rgba(255, 255, 255, 1);
  //width:135px;
  //height:112px;
  //border-radius: 4px;
  ////position:absolute;
  //position: relative;
  //border: var(--outgoing-background);
}

.drop-down-menu2-container {
  width: 135px;
  min-width: 135px;
  max-width: 135px;
  //
  position: fixed;
  z-index: 100;
  //
  //
  //display: flex;
  //flex-direction: column;

  display: inline-flex;
  padding: 8px 0px;
  flex-direction: column;
  align-items: flex-end;
  //
  //display: flex;
  //flex-direction: column;
  //justify-content: flex-end;

  border-radius: 4px;
  //background-color: #FF766E;
  //background: #49CF77;
  background: var(--dropdown-background, #FFF);
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.04), 0px 3px 14px 0px rgba(0, 0, 0, 0.08), 0px 8px 10px 0px rgba(0, 0, 0, 0.12);

  //border: 3px solid green;

  &--divider{

    display: flex;
    padding: 4px 8px 4px 16px;
    justify-content: flex-end;
    align-items: center;
    align-self: stretch;


    width: 111px;
    height: 3px;

    flex-shrink: 0;
    color: var(--divider);
  }
}
