.modalWrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1099999999999;
}

.tooltip {
  opacity: 0;
  position: absolute;
  z-index: 2;
  filter: drop-shadow(rgba(0, 0, 0, 0.5) 0px 0px 1px);
  transition: 0.1s ease-in-out;
  transform: translate3d(0, 4px, 0);

  &Active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  &Arrow {
    &Top {
      position: absolute;
      left: 50%;
      margin-left: -6px;
      border: 6px solid;
      border-top-color: white;
      border-right-color: transparent !important;
      border-bottom-color: transparent !important;
      border-left-color: transparent !important;
      top: 100%;
      margin-top: 0;
    }

    &Bottom {
      position: absolute;
      left: 50%;
      margin-left: -6px;
      border: 6px solid;
      border-top-color: transparent !important;
      border-right-color: transparent !important;
      border-bottom-color: white;
      border-left-color: transparent !important;
      margin-top: -12px;
      top: 0;
    }
  }

  &Cross {
    right: 0;
    padding: 14px;
    position: absolute;
  }

  &Content {
    max-width: 320px;
    min-width: 320px;
    max-height: 254px;
    border-radius: 3px;
    padding: 8px 0;
    color: black;
    background-color: white;
    overflow-y: auto;
    overflow-x: hidden;
    &.bottom {
      margin-top: -8px;
    }

    &NoneOption {
      display: flex;
      line-height: 24px;
      padding: 8px 16px;
      &Icon {
        margin-right: 16px;
      }
      span {
        font-size: 14px;
        color: #DA251C;
      }
      &:hover {
        background-color: rgb(241, 240, 240);
      }
    }
    &Item {
      display: flex;
      font-size: 14px;
      line-height: 24px;
      padding: 8px 16px;
      img {
        margin-right: 16px;
      }
      &:hover {
        background-color: rgb(241, 240, 240);
      }
    }
  }
}