html {
    box-sizing: border-box;

}

*, *:before, *:after {
    box-sizing: inherit;
}

code {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
}

.internal-page-header {
    background: #fff;
    padding: 30px;
    font-size: 2em;
    background: #f7f7f7;
    font-weight: normal;
}

.internal-page-content {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.15);
    border-radius: 0 0 5px 5px;
}

.user-search {
    padding-left: 30px;
    padding-bottom: 30px;
    background: #f7f7f7;
}

.user-search__input {
    padding-top: 15px;
    max-width: 400px;
}

.user-form--loading {
    pointer-events: none;
    opacity: .5;
}

.user-form__header {
    margin-bottom: 30px;
}

.user-form__inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.user-form__input {
    margin: 0!important; /* fighting some dumb specificity */
    flex-grow: 1;
    flex-basis: calc(50% - 16px);
    max-width: 100%;
}

.user-form__checkboxes {
    margin: 16px 0 24px;
    flex-basis: 100%;
}

.user-form__checkbox {
    display: inline-flex;
    font-size: 12px;
    margin-bottom: 8px;
    margin-right: 16px;
}

.user-form .react-autosuggest__container {
    position: relative;
}

.user-form .react-autosuggest__suggestions-container--open {
    color: #444444;
    padding: 0;
    margin-top: -2px;
    border-radius: 0;
    border: 0;
    border: 2px solid #FFB22A;
    box-shadow: none;
}

.user-form .react-autosuggest__suggestion--highlighted {
    border: none;
    margin: 0;
    padding-left: 20px;
}

.user-form__submit-wrap {
    margin-top: 20px;
    margin-bottom: 8px;
    text-align: center;
}

.user-form__submit {
    display: inline-block;
    margin: 0 auto;
    width: 200px;
    font-size: 16px;
    font-weight: bold;
    height: 48px;
}

.created-user {
    padding-top: 30px;
    margin-top: 40px;
    border-top: 2px solid #f7f7f7;
}

.profile-autosuggest {
    padding: 5px;
    line-height: 1.5;
}

.profile-autosuggest__name {
    margin-bottom: 5px;
}

.profile-autosuggest__bio {
    font-size: 14px;
    font-style: italic;
}

.user {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ececec;
}

.user--last:not(.user--active) {
    /* last-child stuff does not play nice w/ virtualized lists */
    padding: 0;
    border: 0;
    margin: 0;
}

.user:hover, .user--active {
    will-change: transform;
}
.user--active {
    background: #fff;
    margin: -60px -60px -30px -60px;
    z-index: 1;
    position: relative;
    border: 0;
    padding: 60px;
    border-radius: 5px;
    overflow: hidden;
    animation: woosh .175s cubic-bezier(0, 0, .2, 1.35) forwards;
    box-shadow:
        0 5px 25px rgba(0,0,0,.1),
        0 35px 40px -25px rgba(0,0,0,.35);
}

@keyframes woosh {
    0% {
        transform: scale(.9);
    }
    100% {
        transform: scale(1);
    }
}

.user__meta-badges {
    list-style-type: none;
    padding: 0;
    margin: 0 0 0 5px;
    display: inline-block;
}

.user__meta-badge {
    display: inline-block;
    vertical-align: middle;
    color: #888;
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 0 5px;
    margin-right: 5px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .03em;
}

.user--active .user__meta-badge {
    color: #ec5b51;
    background: #fff4ea;
    border-color: #ee5a4c;
}

.user__profile {
    display: flex;
    flex-grow: 1;
}

.user__avatar {
    height: 96px;
    width: 96px;
    border-radius: 4px;
    flex-shrink: 0;
    margin-right: 24px;
}

.user__details {
    margin: auto 0;
}

.user__header {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

.user__subhead {
    color: #999;
    font-size: 16px;
    white-space: nowrap;
    margin-bottom: 8px;
}

.user__work {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: 12px;
}

.user__email {
    font-size: 14px;
}

.user__top-section {
    display: flex;
    justify-content: space-between;
}

.user__menu {
    flex-grow: 0;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.user__id {
    font-size: 14px;
    color: #999;
    margin-bottom: 4px;
    white-space: nowrap;
}

.user__email-builder {
    margin-top: 20px;
    display: flex;
}

.user__email-edit,
.user__email-preview {
    flex-basis: 50%;
    display: block;
}

.user__email-edit {
    resize: none;
    font-size: 12px;
    margin-right: 20px;
    padding: 10px;
    border: 1px solid #ececec;
    background: #f7f7f7;
    outline: none;
}

.user__email-edit .textarea-primary {
    height: 120px;
}

.user__email-edit .floating-input-wrap {
    margin-bottom: 16px;
}

.user__email-preview {
    display: flex;
}

.user__preview-iframe {
    width: 100%;
}

.user__email-actions {
    background: #f7f7f7;
    margin: -60px;
    margin-top: 30px;
    padding: 20px 30px;
    text-align: right;
}

.user__email-action {
    margin-left: 10px;
}

.user__flash-message {
    font-size: 14px;
    background: #f7f7f7;
    padding: 10px;
    margin-top: 20px;
    display: block;
}

.signupsteps {
    margin:10px 0;
}

.signupsteps span {
    color: #999;
    padding: 1px 5px 3px;
    margin: 2px;
    border:1px solid #999;
}

.signupsteps .active {
    color: green;
    font-weight: bold;
    border-color: green;
}

.email-playground {
    width: 100%;
    margin-top: 4px;
    height: calc(100vh - 64px); /*60px is header height atm*/
}

.horizon__action {
    display: inline-flex;
    align-items: center;
    margin-bottom: 24px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    margin-right: 8px;
}

.horizon__form {
    border-radius: 4px;
    margin-bottom: 24px;
}

.horizon__inputs {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.horizon__input {
    margin-right: 16px;
}

.horizon__input--query {
    flex-grow: 1;
}

.horizon__input--lease {
    margin-top: 20px;
    flex-basis: 100px;
    margin-right: 0;
}

.horizon__input--num {
    flex-basis: 80px;
}

.horizon__query-preview {
    color: #999;
    font-size: 18px;
    font-style: italic;
}

.horizon__results {
    font-size: 14px;
    width: 100%;
}

.horizon__results a:visited {
    color: #609;
}

.horizon__results tr:nth-of-type(2n) {
    background: #f7f7f7;
}

.horizon__result {
    padding: 6px;
}

.horizon__scheme {
    color: #666;
    text-align: left;
    position: relative;
    padding: 6px;
}

.horizon__scheme .tooltip {
    white-space: nowrap;
}

.horizon__scheme--numHearts,
.horizon__scheme--numConnections,
.horizon__scheme--numMarkers {
    box-sizing: content-box;
    padding-right: 0;
    min-width: 32px;
    height: 32px;
}

.horizon__result--numHearts,
.horizon__result--numConnections,
.horizon__result--numMarkers {
    padding-right: 0;
    text-align: center;
}

.horizon__scheme--linkedinSearch {
    padding-right: 32px;
}

.horizon__scheme--numMarkers,
.horizon__result--numMarkers {
    padding-right: 32px;
}

.horizon__result--googleSearch a,
.horizon__result--bingSearch a,
.horizon__result--bingSearch2 a,
.horizon__result--linkedinSearch a {
    height: 28px;
    width: 28px;
    border: 2px solid currentColor;
    text-align: center;
    line-height: 24px;
    border-radius: 50%;
    display: inline-block;
    font-weight: bold;
}

.report-select-controls .Select-boxy {
    margin-right: 8px;
}

.report {
    width: 480px;
    margin: 32px auto;
}

.report__logo {
    display: block;
    margin: 32px auto;
}

.report__title {
    font-size: 16px;
    text-align: center;
    margin-bottom: 24px;
    font-weight: bold;
}

.report__sub-title {
    text-align: center;
    font-weight: bold;
    font-size: 14px;

}

.report__content {
    background: #FFF;
    border: 1px solid #ccc;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.15);
    padding: 24px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.report__data {
    text-align: center;
    font-size: 14px;
    margin: 16px 0;
}

.report__data-item {
    padding: 4px 0;
}

.report__user {
    background: #f7f7f7;
    margin: 0 -24px;
    padding: 16px;
}

.report__user + .report__user {
    padding-top: 0;
}

.report__user-avatar {
    display: block;
    height: 36px;
    width: 36px;
    border: 2px solid #FFB22A;
    border-radius: 50%;
    margin: 0 auto 4px;
}

.report__user-name {
    text-align: center;
    font-weight: bold;
    margin-bottom: 4px;
    font-size: 14px;
}

.report__user-tagline {
    font-size: 12px;
    text-align: center;
}

.report__license-info {
    font-size: 12px;
    margin: 24px 0 0;
    padding: 0 24px;
    list-style: none;
    text-align: center;
}

.report__license-info > li:not(:last-child) {
    margin-bottom: 12px;
}

.report__signup-chunk:not(:last-child) {
    margin-bottom: 32px;
}

.report__signup-header {
    font-size: 14px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.report__signup-header__count {
    font-weight: normal;
}

.report__signup-list {
    margin: 0;
    padding: 16px;
    list-style: none;
    font-size: 12px;
    border: 1px solid #FFB22A;
    border-radius: 2px;
}

.report__signup-item:not(:last-child) {
    margin-bottom: 8px;
}

.report__signup-item__name {
    font-weight: bold;
}

.report__signup-item__email {
    color: #666;
}

.internal-demo-icon {
    border: 1px solid #ddd;
    margin-bottom: 24px;
}

.sales-dash-wrap {
    padding: 16px;
    background: #fff;
}

.sales-dash {
    display: block;
    overflow-x: auto;
}

.min-max-input-wrap {
    width: 100px;
}

.min-max-input-wrap input {
    display: inline-block;
    width: 50%;
}

.sales-dash th {
    text-align: left;
    vertical-align: top;
    padding: 4px;
    white-space: nowrap;
}

.sales-dash td {
    white-space: nowrap;
    padding: 4px;
}

.sales-dash tr > *:nth-child(1) {
    position: sticky;
    left: 0;
    box-shadow: 1px 0 0 #ccc;
}

.sales-dash tr  > *{
    background: #fff;
}

.sales-dash tr:nth-child(2n) > * {
    background: #eff2f4;
}

.i-project {
    margin:10px 0;
    border: 1px solid gray;
    border-radius: 10px;
    padding: 10px 20px;
}

.i-project-row {
    display: flex;
    margin: 10px 0;
}

.i-project-row.title-row {
    justify-content: space-between;
}

.i-project-state, .i-project-ats-state, .i-project-posting {
    display: inline-block;
    padding: 2px 5px;
    border:1px solid gray;
    border-radius: 5px;
    margin:0;
    vertical-align: top;
}

.i-project-state.deleted,
.i-project-state.rejected,
.i-project-ats-state.closed,
.i-project-ats-state.missing,
.i-project-posting.false {
    color: red;
    border-color: red;
    background-color: lightpink;
}

.i-project-state.user {
    color: brown;
    border-color: brown;
    background-color: yellow;
}

.i-project-state.approved, .i-project-ats-state.open, .i-project-posting.true {
    color: green;
    border-color: green;
    background-color: lightgreen;
}

.i-project-title {
    margin-bottom: 20px;
}

.i-project-field {
    background-color: #eee;
    padding: 16px 6px 6px 6px;
    border-radius: 5px;
    position:relative;
    margin: 0 5px;
    min-width: 100px;
}

.i-project-field .label {
    position: absolute;
    top: 3px;
    left: 6px;
    font-size: 11px;
    font-variant: small-caps;
}

.i-project-suggestions .profile-header-secondary-actions,
.i-project-suggestions .card-footer-suggestion-actions,
.i-project-suggestions .profile-header-actions {
    display: none;
}
.i-project-users {
    display: flex;
}

.i-project-userlist {
    margin-left: 10px;
    display: flex;
    align-items: baseline;
}

.i-project-userlist h4 {
    margin-top: 20px;
    font-size: 13px;
    color: #aaa;
}

.profile-update-avatar-wrap {
    margin-left: 15px;
}

.i-project-admin-row {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
}
.i-project-admin-row > * {
    margin-right: 10px;
}
.i-project-action {
    cursor: pointer;
}

.workspaces-tabs {
    list-style: none;
    display: flex;
    padding: 0;
    font-size: 18px;
}

.workspaces-tabs a {
    padding: 10px;
    border: 1px solid silver;
    border-radius: 10px 10px 0 0;
    border-bottom: 0;
    color: silver;
}
.workspaces-tabs a + a {
    margin-left: 10px;
}
.workspaces-tabs a.active {
    border-color: black;
    color: black;
}

.admin-project-list {
    border-collapse: separate;
    border-spacing: 0 5px;
}

.admin-project-list th {
    padding: 5px 20px 0 0;
    text-align: left;
    cursor: pointer;
}

.admin-project-list tr:nth-child(even) {
    background-color: #eee;
}

.i-project-filters {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
}

.i-project-filter {
    border:1px solid gray;
    border-radius: 10px;
    background-color: white;
    padding: 10px;
    cursor: pointer;
}

.i-project-filter + .i-project-filter {
    margin-left: 10px;
}

.i-project-filter.active {
    background-color: lightyellow;
}

.workspaces-create .react-autosuggest__container {
    position: relative;
}

.workspace-edit-form label {
    display: block;
    font-weight: bold;
}

.workspace-edit-form h2 {
    margin: 32px 0 24px;
    font-weight: bold;
}

.workspace-edit-form input {
    min-width: 300px;
}

.workspace-edit-form-radio label {
    display: inline;
    font-weight: normal;
    margin-right: 16px;
}

.workspace-edit-form-radio input {
    min-width: 0;
    margin-right: 4px;
}


.workspace-edit-form legend {
    font-weight: bold;
}

.workspace-edit-form p {
    margin: 8px 0;
}

.workspace-edit-block {
    margin: 24px 0;
}

.logo-upload-company h3 {
    font-weight: bold;
    margin-bottom: 16px;
}

.logo-upload-company {
    border: 1px solid #ccc;
    margin: 16px 0;
    padding: 16px;
}

.logo-upload-drop {
    border: 2px dashed black;
    margin: 16px 0;
    padding: 8px;
    height: 160px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" fill="rgba(0,0,0,0.05)"><rect x="200" width="200" height="200"/><rect y="200" width="200" height="200"/></svg>');
    background-size: 30px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-upload-section img,
.logo-upload-modal img {
    max-width: 160px;
    max-height: 80px;
    width: auto;
    height: auto;
}

.logo-upload-image-manual-section {
    flex-grow: 1;
}

.logo-upload-company-images {
    display: flex;
}


.logo-upload-image-manual {
    flex-basis: 50%;
    flex-shrink: 0;
}

.logo-upload-modal {
    background: #eee;
}

.logo-upload-modal-dark {
    background: #111;
}

.logo-upload-modal-dark * {
    color: #eee;
}

.admin-sequence-logs {
    width: 100%;
    border-collapse: separate;
}

.admin-sequence-logs td {
    vertical-align: top;
    padding: 5px;
}

.admin-sequence-logs .name {
    width: 300px;
    min-width: 300px;
}

.admin-sequence-logs .date {
    width: 100px;
    min-width: 100px;
}

.admin-sequence-logs .json {
    width: auto;
    overflow: auto;
}

.admin-sequence-logs tr.day-header {
    background-color: gray;
    color: whitesmoke;
    font-weight: bold;
    border-bottom: 2px solid black;
    border-spacing: 5px;
}

.admin-sequence-logs .notifications {
    background-color: lightyellow;
}

.admin-sequence-logs .sequencemail.sent {
    background-color: palegreen;
    font-weight: bold;
}

.admin-sequence-logs .sequencemail.received {
    background-color: lavenderblush;
    font-weight: bold;
}

.admin-sequence-logs .addToSequence {
    background-color: gold;
}

.admin-sequence-logs .sequenceStepSent {
    background-color: lightcyan;
}

.admin-sequence-logs .deleted {
    background-color: pink;
    color: purple;
}

.admin-sequence-logs .sequenceCandidateReply {
    background-color: purple;
    color: white;
    font-weight: bold;
}

.horizon-info-box {
    border: 2px solid;
    padding: 20px;
    margin: 20px 0;
}

.horizon-info-box-good {
    border-color: green;
    color: green;
    background: rgba(0, 255, 0, 0.1);
}

.horizon-info-box-bad {
    border-color: red;
    color: red;
    background: rgba(255, 0, 0, 0.1);
}

.logo-upload-company-header {
    display: flex;
    gap: 12px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 16px;
    margin-bottom: 16px;
    align-items: center;
}

.logo-upload-dark-mode-preview img {
    filter: brightness(0) invert(1);
}

.logo-upload-image-li {
    background: #ccc;
    height: 64px;
    width: 64px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
}

.logo-upload-image-li img {
    width: 100%;
    height: 100%;
    display: block;
}

.logo-upload-company-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 2px;
}

.logo-upload-main {
    display: flex;
}

.logo-upload-section {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 50%;
    padding: 16px;
}

.logo-upload-section-dark {
    background: #222;
    color: #cbd1d5;
}

.logo-upload-section-dark .logo-upload-drop {
    border-color: #444;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" fill="rgba(255,255,255,0.05)"><rect x="200" width="200" height="200"/><rect y="200" width="200" height="200"/></svg>');
}

.logo-upload-drop-active, .logo-upload-drop:hover {
    border-color: #ffb22a!important;
}

.cname-table {
    border:1px solid gray;
    border-collapse: collapse;
}

.cname-table td {
    border: 1px solid gray;
    min-height: 30px;
    padding: 2px;
}

.global-notifications ~ .container.page-container {
    padding-top: 50px;
}
