/* ---------- COLORS  ---------- */
/* Brand primary: black (replaces former blue #1864F2). */
/* ---------- FONTS  ---------- */
.add-user-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex: 3;
}
@media only screen and (max-width: 920px) {
  .add-user-wrap {
    margin-bottom: 10px;
  }
}
.add-user-wrap__header {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 10px;
}
@media only screen and (max-width: 920px) {
  .add-user-wrap__header {
    flex-wrap: wrap;
  }
}
.add-user-wrap__header .input-wrap:nth-of-type(1),
.add-user-wrap__header .input-wrap:nth-of-type(2) {
  width: 95%;
  max-width: 200px;
}
@media only screen and (max-width: 920px) {
  .add-user-wrap__header .input-wrap:nth-of-type(1),
  .add-user-wrap__header .input-wrap:nth-of-type(2) {
    max-width: 95%;
  }
}
.add-user-wrap__header .input-wrap:nth-of-type(3) {
  width: 100%;
  max-width: 320px;
}
@media only screen and (max-width: 920px) {
  .add-user-wrap__header .input-wrap:nth-of-type(3) {
    max-width: 100%;
  }
}
.add-user-wrap__header .input-wrap {
  margin-right: 6px;
}
@media only screen and (max-width: 920px) {
  .add-user-wrap__header .input-wrap {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.add-user-wrap__header .input-wrap:last-of-type {
  margin-right: 0;
}
.add-user-wrap__header .input-wrap input {
  color: #1b1b1e;
}
.add-user-wrap__header .input-wrap input.signatory-input--placeholder-value {
  color: gray;
}
.add-user-wrap__tags {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 920px) {
  .add-user-wrap__tags {
    flex-direction: column;
    margin-right: 10px;
    align-items: flex-start;
  }
}
.add-user-wrap__tags li {
  margin-right: 26px;
  position: relative;
}
@media only screen and (max-width: 920px) {
  .add-user-wrap__tags li {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 920px) {
  .add-user-wrap__tags li:last-child {
    margin-bottom: 0;
  }
}
.add-user-wrap__tags li:after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../../../images/arrow-forward-icon.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -23px;
  display: none;
}
@media only screen and (max-width: 920px) {
  .add-user-wrap__tags li:after {
    top: 100%;
    right: auto;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}
.add-user-wrap__tags.toggle-on li:after {
  display: block;
}
.add-user-wrap__tags.toggle-on li:last-child:after {
  display: none;
}
.add-user-wrap .bulk-send-wrap {
  display: none;
}
.add-user-wrap.bulk-send-active {
  width: 100%;
}
.add-user-wrap.bulk-send-active .add-user-wrap__header > .input-wrap, .add-user-wrap.bulk-send-active .add-user-wrap__header > .button {
  display: none;
}
.add-user-wrap.bulk-send-active .add-user-wrap__tags, .add-user-wrap.bulk-send-active > .toggle {
  display: none;
}
.add-user-wrap.bulk-send-active .bulk-send-wrap {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 920px) {
  .add-user-wrap.bulk-send-active .bulk-send-wrap {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 820px) {
  .add-user-wrap.bulk-send-active .bulk-send-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
.add-user-wrap.bulk-send-active .bulk-send-wrap .input-wrap {
  min-width: 240px;
  margin-bottom: 0;
}
@media only screen and (max-width: 820px) {
  .add-user-wrap.bulk-send-active .bulk-send-wrap .input-wrap {
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 820px) {
  .add-user-wrap.bulk-send-active .bulk-send-wrap .input-wrap {
    min-width: 100%;
  }
}
.add-user-wrap.bulk-send-active .bulk-send-wrap .button {
  white-space: nowrap;
  margin-right: 10px;
}
.add-user-wrap .toggle {
  white-space: nowrap;
}
.add-user-wrap .button__ghost--primary {
  white-space: nowrap;
}
@media only screen and (max-width: 420px) {
  .add-user-wrap > .toggle {
    flex: 1;
  }
}
@media only screen and (max-width: 420px) {
  .add-user-wrap > .toggle label {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 420px) {
  .add-user-wrap > .toggle label span {
    margin-left: 0;
    width: 100%;
    margin-top: 5px;
  }
}

/* User edit modal: permissions list (also in add-user.css) */
.user-permissions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem 1rem;
}

.user-permission {
  padding-top: 2px;
  padding-bottom: 2px;
  line-height: 1.2;
  cursor: help;
}
.user-permission input[type=checkbox] {
  width: auto;
  height: auto;
  cursor: help;
}

/*# sourceMappingURL=add-user.css.map */
