.colorPicker {
  position: relative;
  width: 35px;
  height: 20px;
  border: 1px solid #d4d4d4;
  border-radius: 2px;
  display: inline-block;
  vertical-align: middle;

  &_disabled {
    cursor: not-allowed;
  }

  &__container {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
  }

  &__wrap {
    position: absolute;
    width: 220px;
    z-index: 3;
    right: 0;
  }

  &__cover {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
  }
}
