//Popover Element
.popover {
  position: relative;
  display: inline-block;
  &--full {
    width: 100%;
  }
  &__list {
    min-width: 200px;
    position: fixed;
    background-color: $white;
    &--opened {
      overflow: auto;
      z-index: 10000;
    }
    &--closed {
      height: 0px;
      overflow: hidden;
    }
    &--right {
      right: 40px;
    }
  }
}