@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap);.dropdown {
    display: inline-block;
}

.dropdown__content {
    display: none;
    position: absolute;
}

.dropdown--active .dropdown__content {
    display: block;
}@keyframes react-loading-skeleton {
    100% {
        transform: translateX(100%);
    }
}

.react-loading-skeleton {
    --base-color: #ebebeb;
    --highlight-color: #f5f5f5;
    --animation-duration: 1.5s;
    --animation-direction: normal;
    --pseudo-element-display: block; /* Enable animation */

    background-color: var(--base-color);

    width: 100%;
    border-radius: 0.25rem;
    display: inline-flex;
    line-height: 1;

    position: relative;
    overflow: hidden;
    z-index: 1; /* Necessary for overflow: hidden to work correctly in Safari */
}

.react-loading-skeleton::after {
    content: ' ';
    display: var(--pseudo-element-display);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-repeat: no-repeat;
    background-image: linear-gradient(
        90deg,
        var(--base-color),
        var(--highlight-color),
        var(--base-color)
    );
    transform: translateX(-100%);

    animation-name: react-loading-skeleton;
    animation-direction: var(--animation-direction);
    animation-duration: var(--animation-duration);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
/*!
 * Quill Editor v1.3.7
 * https://quilljs.com/
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0px;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
  pointer-events: none;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol,
.ql-editor ul {
  padding-left: 1.5em;
}
.ql-editor ol > li,
.ql-editor ul > li {
  list-style-type: none;
}
.ql-editor ul > li::before {
  content: '\2022';
}
.ql-editor ul[data-checked=true],
.ql-editor ul[data-checked=false] {
  pointer-events: none;
}
.ql-editor ul[data-checked=true] > li *,
.ql-editor ul[data-checked=false] > li * {
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before,
.ql-editor ul[data-checked=false] > li::before {
  color: #777;
  cursor: pointer;
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before {
  content: '\2611';
}
.ql-editor ul[data-checked=false] > li::before {
  content: '\2610';
}
.ql-editor li::before {
  display: inline-block;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li:not(.ql-direction-rtl)::before {
  margin-left: -1.5em;
  margin-right: 0.3em;
  text-align: right;
}
.ql-editor li.ql-direction-rtl::before {
  margin-left: 0.3em;
  margin-right: -1.5em;
}
.ql-editor ol li:not(.ql-direction-rtl),
.ql-editor ul li:not(.ql-direction-rtl) {
  padding-left: 1.5em;
}
.ql-editor ol li.ql-direction-rtl,
.ql-editor ul li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor ol li {
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  counter-increment: list-0;
}
.ql-editor ol li:before {
  content: counter(list-0, decimal) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor ol li.ql-indent-1:before {
  content: counter(list-1, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor ol li.ql-indent-2:before {
  content: counter(list-2, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-2 {
  counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor ol li.ql-indent-3:before {
  content: counter(list-3, decimal) '. ';
}
.ql-editor ol li.ql-indent-3 {
  counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor ol li.ql-indent-4:before {
  content: counter(list-4, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-4 {
  counter-reset: list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor ol li.ql-indent-5:before {
  content: counter(list-5, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-5 {
  counter-reset: list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor ol li.ql-indent-6:before {
  content: counter(list-6, decimal) '. ';
}
.ql-editor ol li.ql-indent-6 {
  counter-reset: list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor ol li.ql-indent-7:before {
  content: counter(list-7, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-7 {
  counter-reset: list-8 list-9;
}
.ql-editor ol li.ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor ol li.ql-indent-8:before {
  content: counter(list-8, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-8 {
  counter-reset: list-9;
}
.ql-editor ol li.ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor ol li.ql-indent-9:before {
  content: counter(list-9, decimal) '. ';
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}
.ql-editor .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}
.ql-editor .ql-size-small {
  font-size: 0.75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor.ql-blank::before {
  color: rgba(0,0,0,0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
.ql-snow.ql-toolbar:after,
.ql-snow .ql-toolbar:after {
  clear: both;
  content: '';
  display: table;
}
.ql-snow.ql-toolbar button,
.ql-snow .ql-toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 24px;
  padding: 3px 5px;
  width: 28px;
}
.ql-snow.ql-toolbar button svg,
.ql-snow .ql-toolbar button svg {
  float: left;
  height: 100%;
}
.ql-snow.ql-toolbar button:active:hover,
.ql-snow .ql-toolbar button:active:hover {
  outline: none;
}
.ql-snow.ql-toolbar input.ql-image[type=file],
.ql-snow .ql-toolbar input.ql-image[type=file] {
  display: none;
}
.ql-snow.ql-toolbar button:hover,
.ql-snow .ql-toolbar button:hover,
.ql-snow.ql-toolbar button:focus,
.ql-snow .ql-toolbar button:focus,
.ql-snow.ql-toolbar button.ql-active,
.ql-snow .ql-toolbar button.ql-active,
.ql-snow.ql-toolbar .ql-picker-label:hover,
.ql-snow .ql-toolbar .ql-picker-label:hover,
.ql-snow.ql-toolbar .ql-picker-label.ql-active,
.ql-snow .ql-toolbar .ql-picker-label.ql-active,
.ql-snow.ql-toolbar .ql-picker-item:hover,
.ql-snow .ql-toolbar .ql-picker-item:hover,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected {
  color: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-fill,
.ql-snow .ql-toolbar button:hover .ql-fill,
.ql-snow.ql-toolbar button:focus .ql-fill,
.ql-snow .ql-toolbar button:focus .ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
  fill: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-stroke,
.ql-snow .ql-toolbar button:hover .ql-stroke,
.ql-snow.ql-toolbar button:focus .ql-stroke,
.ql-snow .ql-toolbar button:focus .ql-stroke,
.ql-snow.ql-toolbar button.ql-active .ql-stroke,
.ql-snow .ql-toolbar button.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow.ql-toolbar button:hover .ql-stroke-miter,
.ql-snow .ql-toolbar button:hover .ql-stroke-miter,
.ql-snow.ql-toolbar button:focus .ql-stroke-miter,
.ql-snow .ql-toolbar button:focus .ql-stroke-miter,
.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
  stroke: #06c;
}
@media (pointer: coarse) {
  .ql-snow.ql-toolbar button:hover:not(.ql-active),
  .ql-snow .ql-toolbar button:hover:not(.ql-active) {
    color: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
    fill: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
    stroke: #444;
  }
}
.ql-snow {
  box-sizing: border-box;
}
.ql-snow * {
  box-sizing: border-box;
}
.ql-snow .ql-hidden {
  display: none;
}
.ql-snow .ql-out-bottom,
.ql-snow .ql-out-top {
  visibility: hidden;
}
.ql-snow .ql-tooltip {
  position: absolute;
  transform: translateY(10px);
}
.ql-snow .ql-tooltip a {
  cursor: pointer;
  text-decoration: none;
}
.ql-snow .ql-tooltip.ql-flip {
  transform: translateY(-10px);
}
.ql-snow .ql-formats {
  display: inline-block;
  vertical-align: middle;
}
.ql-snow .ql-formats:after {
  clear: both;
  content: '';
  display: table;
}
.ql-snow .ql-stroke {
  fill: none;
  stroke: #444;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.ql-snow .ql-stroke-miter {
  fill: none;
  stroke: #444;
  stroke-miterlimit: 10;
  stroke-width: 2;
}
.ql-snow .ql-fill,
.ql-snow .ql-stroke.ql-fill {
  fill: #444;
}
.ql-snow .ql-empty {
  fill: none;
}
.ql-snow .ql-even {
  fill-rule: evenodd;
}
.ql-snow .ql-thin,
.ql-snow .ql-stroke.ql-thin {
  stroke-width: 1;
}
.ql-snow .ql-transparent {
  opacity: 0.4;
}
.ql-snow .ql-direction svg:last-child {
  display: none;
}
.ql-snow .ql-direction.ql-active svg:last-child {
  display: inline;
}
.ql-snow .ql-direction.ql-active svg:first-child {
  display: none;
}
.ql-snow .ql-editor h1 {
  font-size: 2em;
}
.ql-snow .ql-editor h2 {
  font-size: 1.5em;
}
.ql-snow .ql-editor h3 {
  font-size: 1.17em;
}
.ql-snow .ql-editor h4 {
  font-size: 1em;
}
.ql-snow .ql-editor h5 {
  font-size: 0.83em;
}
.ql-snow .ql-editor h6 {
  font-size: 0.67em;
}
.ql-snow .ql-editor a {
  text-decoration: underline;
}
.ql-snow .ql-editor blockquote {
  border-left: 4px solid #ccc;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}
.ql-snow .ql-editor code,
.ql-snow .ql-editor pre {
  background-color: #f0f0f0;
  border-radius: 3px;
}
.ql-snow .ql-editor pre {
  white-space: pre-wrap;
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 5px 10px;
}
.ql-snow .ql-editor code {
  font-size: 85%;
  padding: 2px 4px;
}
.ql-snow .ql-editor pre.ql-syntax {
  background-color: #23241f;
  color: #f8f8f2;
  overflow: visible;
}
.ql-snow .ql-editor img {
  max-width: 100%;
}
.ql-snow .ql-picker {
  color: #444;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: 500;
  height: 24px;
  position: relative;
  vertical-align: middle;
}
.ql-snow .ql-picker-label {
  cursor: pointer;
  display: inline-block;
  height: 100%;
  padding-left: 8px;
  padding-right: 2px;
  position: relative;
  width: 100%;
}
.ql-snow .ql-picker-label::before {
  display: inline-block;
  line-height: 22px;
}
.ql-snow .ql-picker-options {
  background-color: #fff;
  display: none;
  min-width: 100%;
  padding: 4px 8px;
  position: absolute;
  white-space: nowrap;
}
.ql-snow .ql-picker-options .ql-picker-item {
  cursor: pointer;
  display: block;
  padding-bottom: 5px;
  padding-top: 5px;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  color: #ccc;
  z-index: 2;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
  fill: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
  stroke: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  display: block;
  margin-top: -1px;
  top: 100%;
  z-index: 1;
}
.ql-snow .ql-color-picker,
.ql-snow .ql-icon-picker {
  width: 28px;
}
.ql-snow .ql-color-picker .ql-picker-label,
.ql-snow .ql-icon-picker .ql-picker-label {
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-label svg,
.ql-snow .ql-icon-picker .ql-picker-label svg {
  right: 4px;
}
.ql-snow .ql-icon-picker .ql-picker-options {
  padding: 4px 0px;
}
.ql-snow .ql-icon-picker .ql-picker-item {
  height: 24px;
  width: 24px;
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-options {
  padding: 3px 5px;
  width: 152px;
}
.ql-snow .ql-color-picker .ql-picker-item {
  border: 1px solid transparent;
  float: left;
  height: 16px;
  margin: 2px;
  padding: 0px;
  width: 16px;
}
.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
  position: absolute;
  margin-top: -9px;
  right: 0;
  top: 50%;
  width: 18px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=''])::before {
  content: attr(data-label);
}
.ql-snow .ql-picker.ql-header {
  width: 98px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label::before,
.ql-snow .ql-picker.ql-header .ql-picker-item::before {
  content: 'Normal';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  content: 'Heading 1';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  content: 'Heading 2';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  content: 'Heading 3';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  content: 'Heading 4';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  content: 'Heading 5';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  content: 'Heading 6';
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  font-size: 2em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  font-size: 1.5em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  font-size: 1.17em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  font-size: 1em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  font-size: 0.83em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  font-size: 0.67em;
}
.ql-snow .ql-picker.ql-font {
  width: 108px;
}
.ql-snow .ql-picker.ql-font .ql-picker-label::before,
.ql-snow .ql-picker.ql-font .ql-picker-item::before {
  content: 'Sans Serif';
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  content: 'Serif';
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  content: 'Monospace';
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  font-family: Georgia, Times New Roman, serif;
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  font-family: Monaco, Courier New, monospace;
}
.ql-snow .ql-picker.ql-size {
  width: 98px;
}
.ql-snow .ql-picker.ql-size .ql-picker-label::before,
.ql-snow .ql-picker.ql-size .ql-picker-item::before {
  content: 'Normal';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  content: 'Small';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  content: 'Large';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  content: 'Huge';
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  font-size: 10px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  font-size: 18px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  font-size: 32px;
}
.ql-snow .ql-color-picker.ql-background .ql-picker-item {
  background-color: #fff;
}
.ql-snow .ql-color-picker.ql-color .ql-picker-item {
  background-color: #000;
}
.ql-toolbar.ql-snow {
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  padding: 8px;
}
.ql-toolbar.ql-snow .ql-formats {
  margin-right: 15px;
}
.ql-toolbar.ql-snow .ql-picker-label {
  border: 1px solid transparent;
}
.ql-toolbar.ql-snow .ql-picker-options {
  border: 1px solid transparent;
  box-shadow: rgba(0,0,0,0.2) 0 2px 8px;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
  border-color: #000;
}
.ql-toolbar.ql-snow + .ql-container.ql-snow {
  border-top: 0px;
}
.ql-snow .ql-tooltip {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 5px #ddd;
  color: #444;
  padding: 5px 12px;
  white-space: nowrap;
}
.ql-snow .ql-tooltip::before {
  content: "Visit URL:";
  line-height: 26px;
  margin-right: 8px;
}
.ql-snow .ql-tooltip input[type=text] {
  display: none;
  border: 1px solid #ccc;
  font-size: 13px;
  height: 26px;
  margin: 0px;
  padding: 3px 5px;
  width: 170px;
}
.ql-snow .ql-tooltip a.ql-preview {
  display: inline-block;
  max-width: 200px;
  overflow-x: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}
.ql-snow .ql-tooltip a.ql-action::after {
  border-right: 1px solid #ccc;
  content: 'Edit';
  margin-left: 16px;
  padding-right: 8px;
}
.ql-snow .ql-tooltip a.ql-remove::before {
  content: 'Remove';
  margin-left: 8px;
}
.ql-snow .ql-tooltip a {
  line-height: 26px;
}
.ql-snow .ql-tooltip.ql-editing a.ql-preview,
.ql-snow .ql-tooltip.ql-editing a.ql-remove {
  display: none;
}
.ql-snow .ql-tooltip.ql-editing input[type=text] {
  display: inline-block;
}
.ql-snow .ql-tooltip.ql-editing a.ql-action::after {
  border-right: 0px;
  content: 'Save';
  padding-right: 0px;
}
.ql-snow .ql-tooltip[data-mode=link]::before {
  content: "Enter link:";
}
.ql-snow .ql-tooltip[data-mode=formula]::before {
  content: "Enter formula:";
}
.ql-snow .ql-tooltip[data-mode=video]::before {
  content: "Enter video:";
}
.ql-snow a {
  color: #06c;
}
.ql-container.ql-snow {
  border: 1px solid #ccc;
}
.ReactCrop {
  position: relative;
  display: inline-block;
  cursor: crosshair;
  overflow: hidden;
  max-width: 100%;
}
.ReactCrop:focus {
  outline: none;
}
.ReactCrop--disabled, .ReactCrop--locked {
  cursor: inherit;
}
.ReactCrop__image {
  display: block;
  max-width: 100%;
  touch-action: none;
}
.ReactCrop__crop-selection {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(0, 0, 0);
  box-sizing: border-box;
  cursor: move;
  box-shadow: 0 0 0 9999em rgba(0, 0, 0, 0.5);
  touch-action: none;
  border: 1px solid;
  border-image-source: url("data:image/gif;base64,R0lGODlhCgAKAJECAAAAAP///////wAAACH/C05FVFNDQVBFMi4wAwEAAAAh/wtYTVAgRGF0YVhNUDw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OEI5RDc5MTFDNkE2MTFFM0JCMDZEODI2QTI4MzJBOTIiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OEI5RDc5MTBDNkE2MTFFM0JCMDZEODI2QTI4MzJBOTIiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuZGlkOjAyODAxMTc0MDcyMDY4MTE4MDgzQzNDMjA5MzREQ0ZDIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjAyODAxMTc0MDcyMDY4MTE4MDgzQzNDMjA5MzREQ0ZDIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Af/+/fz7+vn49/b19PPy8fDv7u3s6+rp6Ofm5eTj4uHg397d3Nva2djX1tXU09LR0M/OzczLysnIx8bFxMPCwcC/vr28u7q5uLe2tbSzsrGwr66trKuqqainpqWko6KhoJ+enZybmpmYl5aVlJOSkZCPjo2Mi4qJiIeGhYSDgoGAf359fHt6eXh3dnV0c3JxcG9ubWxramloZ2ZlZGNiYWBfXl1cW1pZWFdWVVRTUlFQT05NTEtKSUhHRkVEQ0JBQD8+PTw7Ojk4NzY1NDMyMTAvLi0sKyopKCcmJSQjIiEgHx4dHBsaGRgXFhUUExIREA8ODQwLCgkIBwYFBAMCAQAAIfkEBQoAAgAsAAAAAAoACgAAAhWEERkn7W3ei7KlagMWF/dKgYeyGAUAIfkEBQoAAgAsAAAAAAoACgAAAg+UYwLJ7RnQm7QmsCyVKhUAIfkEBQoAAgAsAAAAAAoACgAAAhCUYgLJHdiinNSAVfOEKoUCACH5BAUKAAIALAAAAAAKAAoAAAIRVISAdusPo3RAzYtjaMIaUQAAIfkEBQoAAgAsAAAAAAoACgAAAg+MDiem7Q8bSLFaG5il6xQAIfkEBQoAAgAsAAAAAAoACgAAAg+UYRLJ7QnQm7SmsCyVKhUAIfkEBQoAAgAsAAAAAAoACgAAAhCUYBLJDdiinNSEVfOEKoECACH5BAUKAAIALAAAAAAKAAoAAAIRFISBdusPo3RBzYsjaMIaUQAAOw==");
  border-image-slice: 1;
  border-image-repeat: repeat;
}
.ReactCrop--disabled .ReactCrop__crop-selection {
  cursor: inherit;
}
.ReactCrop--circular-crop .ReactCrop__crop-selection {
  border-radius: 50%;
  box-shadow: 0px 0px 1px 1px white, 0 0 0 9999em rgba(0, 0, 0, 0.5);
}
.ReactCrop--invisible-crop .ReactCrop__crop-selection {
  display: none;
}
.ReactCrop__rule-of-thirds-vt::before, .ReactCrop__rule-of-thirds-vt::after, .ReactCrop__rule-of-thirds-hz::before, .ReactCrop__rule-of-thirds-hz::after {
  content: "";
  display: block;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.4);
}
.ReactCrop__rule-of-thirds-vt::before, .ReactCrop__rule-of-thirds-vt::after {
  width: 1px;
  height: 100%;
}
.ReactCrop__rule-of-thirds-vt::before {
  left: 33.3333%;
  left: calc(100% / 3);
}
.ReactCrop__rule-of-thirds-vt::after {
  left: 66.6666%;
  left: calc(100% / 3 * 2);
}
.ReactCrop__rule-of-thirds-hz::before, .ReactCrop__rule-of-thirds-hz::after {
  width: 100%;
  height: 1px;
}
.ReactCrop__rule-of-thirds-hz::before {
  top: 33.3333%;
  top: calc(100% / 3);
}
.ReactCrop__rule-of-thirds-hz::after {
  top: 66.6666%;
  top: calc(100% / 3 * 2);
}
.ReactCrop__drag-handle {
  position: absolute;
}
.ReactCrop__drag-handle::after {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-sizing: border-box;
  outline: 1px solid transparent;
}
.ReactCrop .ord-nw {
  top: 0;
  left: 0;
  margin-top: -5px;
  margin-left: -5px;
  cursor: nw-resize;
}
.ReactCrop .ord-nw::after {
  top: 0;
  left: 0;
}
.ReactCrop .ord-n {
  top: 0;
  left: 50%;
  margin-top: -5px;
  margin-left: -5px;
  cursor: n-resize;
}
.ReactCrop .ord-n::after {
  top: 0;
}
.ReactCrop .ord-ne {
  top: 0;
  right: 0;
  margin-top: -5px;
  margin-right: -5px;
  cursor: ne-resize;
}
.ReactCrop .ord-ne::after {
  top: 0;
  right: 0;
}
.ReactCrop .ord-e {
  top: 50%;
  right: 0;
  margin-top: -5px;
  margin-right: -5px;
  cursor: e-resize;
}
.ReactCrop .ord-e::after {
  right: 0;
}
.ReactCrop .ord-se {
  bottom: 0;
  right: 0;
  margin-bottom: -5px;
  margin-right: -5px;
  cursor: se-resize;
}
.ReactCrop .ord-se::after {
  bottom: 0;
  right: 0;
}
.ReactCrop .ord-s {
  bottom: 0;
  left: 50%;
  margin-bottom: -5px;
  margin-left: -5px;
  cursor: s-resize;
}
.ReactCrop .ord-s::after {
  bottom: 0;
}
.ReactCrop .ord-sw {
  bottom: 0;
  left: 0;
  margin-bottom: -5px;
  margin-left: -5px;
  cursor: sw-resize;
}
.ReactCrop .ord-sw::after {
  bottom: 0;
  left: 0;
}
.ReactCrop .ord-w {
  top: 50%;
  left: 0;
  margin-top: -5px;
  margin-left: -5px;
  cursor: w-resize;
}
.ReactCrop .ord-w::after {
  left: 0;
}
.ReactCrop__disabled .ReactCrop__drag-handle {
  cursor: inherit;
}
.ReactCrop__drag-bar {
  position: absolute;
}
.ReactCrop__drag-bar.ord-n {
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  margin-top: -3px;
}
.ReactCrop__drag-bar.ord-e {
  right: 0;
  top: 0;
  width: 6px;
  height: 100%;
  margin-right: -3px;
}
.ReactCrop__drag-bar.ord-s {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  margin-bottom: -3px;
}
.ReactCrop__drag-bar.ord-w {
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  margin-left: -3px;
}
.ReactCrop--new-crop .ReactCrop__drag-bar, .ReactCrop--new-crop .ReactCrop__drag-handle, .ReactCrop--fixed-aspect .ReactCrop__drag-bar {
  display: none;
}
.ReactCrop--fixed-aspect .ReactCrop__drag-handle.ord-n, .ReactCrop--fixed-aspect .ReactCrop__drag-handle.ord-e, .ReactCrop--fixed-aspect .ReactCrop__drag-handle.ord-s, .ReactCrop--fixed-aspect .ReactCrop__drag-handle.ord-w {
  display: none;
}
@media (pointer: coarse) {
  .ReactCrop .ord-n,
.ReactCrop .ord-e,
.ReactCrop .ord-s,
.ReactCrop .ord-w {
    display: none;
  }
  .ReactCrop__drag-handle {
    width: 24px;
    height: 24px;
  }
}
@charset "UTF-8";
.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow, .react-datepicker__navigation-icon::before {
  border-color: #ccc;
  border-style: solid;
  border-width: 3px 3px 0 0;
  content: "";
  display: block;
  height: 9px;
  position: absolute;
  top: 6px;
  width: 9px;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle {
  margin-left: -4px;
  position: absolute;
  width: 0;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::after, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::after {
  box-sizing: content-box;
  position: absolute;
  border: 8px solid transparent;
  height: 0;
  width: 1px;
  content: "";
  z-index: -1;
  border-width: 8px;
  left: -8px;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before {
  border-bottom-color: #aeaeae;
}

.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle {
  top: 0;
  margin-top: -8px;
}
.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::after {
  border-top: none;
  border-bottom-color: #f0f0f0;
}
.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::after {
  top: 0;
}
.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before {
  top: -1px;
  border-bottom-color: #aeaeae;
}

.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle {
  bottom: 0;
  margin-bottom: -8px;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::after {
  border-bottom: none;
  border-top-color: #fff;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::after {
  bottom: 0;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before {
  bottom: -1px;
  border-top-color: #aeaeae;
}

.react-datepicker-wrapper {
  display: inline-block;
  padding: 0;
  border: 0;
}

.react-datepicker {
  font-family: "Helvetica Neue", helvetica, arial, sans-serif;
  font-size: 0.8rem;
  background-color: #fff;
  color: #000;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  display: inline-block;
  position: relative;
}

.react-datepicker--time-only .react-datepicker__triangle {
  left: 35px;
}
.react-datepicker--time-only .react-datepicker__time-container {
  border-left: 0;
}
.react-datepicker--time-only .react-datepicker__time,
.react-datepicker--time-only .react-datepicker__time-box {
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.react-datepicker__triangle {
  position: absolute;
  left: 50px;
}

.react-datepicker-popper {
  z-index: 1;
}
.react-datepicker-popper[data-placement^=bottom] {
  padding-top: 10px;
}
.react-datepicker-popper[data-placement=bottom-end] .react-datepicker__triangle, .react-datepicker-popper[data-placement=top-end] .react-datepicker__triangle {
  left: auto;
  right: 50px;
}
.react-datepicker-popper[data-placement^=top] {
  padding-bottom: 10px;
}
.react-datepicker-popper[data-placement^=right] {
  padding-left: 8px;
}
.react-datepicker-popper[data-placement^=right] .react-datepicker__triangle {
  left: auto;
  right: 42px;
}
.react-datepicker-popper[data-placement^=left] {
  padding-right: 8px;
}
.react-datepicker-popper[data-placement^=left] .react-datepicker__triangle {
  left: 42px;
  right: auto;
}

.react-datepicker__header {
  text-align: center;
  background-color: #f0f0f0;
  border-bottom: 1px solid #aeaeae;
  border-top-left-radius: 0.3rem;
  padding: 8px 0;
  position: relative;
}
.react-datepicker__header--time {
  padding-bottom: 8px;
  padding-left: 5px;
  padding-right: 5px;
}
.react-datepicker__header--time:not(.react-datepicker__header--time--only) {
  border-top-left-radius: 0;
}
.react-datepicker__header:not(.react-datepicker__header--has-time-select) {
  border-top-right-radius: 0.3rem;
}

.react-datepicker__year-dropdown-container--select,
.react-datepicker__month-dropdown-container--select,
.react-datepicker__month-year-dropdown-container--select,
.react-datepicker__year-dropdown-container--scroll,
.react-datepicker__month-dropdown-container--scroll,
.react-datepicker__month-year-dropdown-container--scroll {
  display: inline-block;
  margin: 0 15px;
}

.react-datepicker__current-month,
.react-datepicker-time__header,
.react-datepicker-year-header {
  margin-top: 0;
  color: #000;
  font-weight: bold;
  font-size: 0.944rem;
}

.react-datepicker-time__header {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.react-datepicker__navigation {
  align-items: center;
  background: none;
  display: flex;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 2px;
  padding: 0;
  border: none;
  z-index: 1;
  height: 32px;
  width: 32px;
  text-indent: -999em;
  overflow: hidden;
}
.react-datepicker__navigation--previous {
  left: 2px;
}
.react-datepicker__navigation--next {
  right: 2px;
}
.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button) {
  right: 85px;
}
.react-datepicker__navigation--years {
  position: relative;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.react-datepicker__navigation--years-previous {
  top: 4px;
}
.react-datepicker__navigation--years-upcoming {
  top: -4px;
}
.react-datepicker__navigation:hover *::before {
  border-color: #a6a6a6;
}

.react-datepicker__navigation-icon {
  position: relative;
  top: -1px;
  font-size: 20px;
  width: 0;
}
.react-datepicker__navigation-icon--next {
  left: -2px;
}
.react-datepicker__navigation-icon--next::before {
  transform: rotate(45deg);
  left: -7px;
}
.react-datepicker__navigation-icon--previous {
  right: -2px;
}
.react-datepicker__navigation-icon--previous::before {
  transform: rotate(225deg);
  right: -7px;
}

.react-datepicker__month-container {
  float: left;
}

.react-datepicker__year {
  margin: 0.4rem;
  text-align: center;
}
.react-datepicker__year-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 180px;
}
.react-datepicker__year .react-datepicker__year-text {
  display: inline-block;
  width: 4rem;
  margin: 2px;
}

.react-datepicker__month {
  margin: 0.4rem;
  text-align: center;
}
.react-datepicker__month .react-datepicker__month-text,
.react-datepicker__month .react-datepicker__quarter-text {
  display: inline-block;
  width: 4rem;
  margin: 2px;
}

.react-datepicker__input-time-container {
  clear: both;
  width: 100%;
  float: left;
  margin: 5px 0 10px 15px;
  text-align: left;
}
.react-datepicker__input-time-container .react-datepicker-time__caption {
  display: inline-block;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container {
  display: inline-block;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input {
  display: inline-block;
  margin-left: 10px;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input {
  width: auto;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-inner-spin-button,
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time] {
  -moz-appearance: textfield;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter {
  margin-left: 5px;
  display: inline-block;
}

.react-datepicker__time-container {
  float: right;
  border-left: 1px solid #aeaeae;
  width: 85px;
}
.react-datepicker__time-container--with-today-button {
  display: inline;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  position: absolute;
  right: -87px;
  top: 0;
}
.react-datepicker__time-container .react-datepicker__time {
  position: relative;
  background: white;
  border-bottom-right-radius: 0.3rem;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box {
  width: 85px;
  overflow-x: hidden;
  margin: 0 auto;
  text-align: center;
  border-bottom-right-radius: 0.3rem;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list {
  list-style: none;
  margin: 0;
  height: calc(195px + 1.7rem / 2);
  overflow-y: scroll;
  padding-right: 0;
  padding-left: 0;
  width: 100%;
  box-sizing: content-box;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item {
  height: 30px;
  padding: 5px 10px;
  white-space: nowrap;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover {
  cursor: pointer;
  background-color: #f0f0f0;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected {
  background-color: #216ba5;
  color: white;
  font-weight: bold;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover {
  background-color: #216ba5;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled {
  color: #ccc;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover {
  cursor: default;
  background-color: transparent;
}

.react-datepicker__week-number {
  color: #ccc;
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem;
}
.react-datepicker__week-number.react-datepicker__week-number--clickable {
  cursor: pointer;
}
.react-datepicker__week-number.react-datepicker__week-number--clickable:not(.react-datepicker__week-number--selected,
.react-datepicker__week-number--keyboard-selected):hover {
  border-radius: 0.3rem;
  background-color: #f0f0f0;
}
.react-datepicker__week-number--selected {
  border-radius: 0.3rem;
  background-color: #216ba5;
  color: #fff;
}
.react-datepicker__week-number--selected:hover {
  background-color: #1d5d90;
}
.react-datepicker__week-number--keyboard-selected {
  border-radius: 0.3rem;
  background-color: #2a87d0;
  color: #fff;
}
.react-datepicker__week-number--keyboard-selected:hover {
  background-color: #1d5d90;
}

.react-datepicker__day-names {
  white-space: nowrap;
  margin-bottom: -8px;
}

.react-datepicker__week {
  white-space: nowrap;
}

.react-datepicker__day-name,
.react-datepicker__day,
.react-datepicker__time-name {
  color: #000;
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem;
}

.react-datepicker__day,
.react-datepicker__month-text,
.react-datepicker__quarter-text,
.react-datepicker__year-text {
  cursor: pointer;
}
.react-datepicker__day:hover,
.react-datepicker__month-text:hover,
.react-datepicker__quarter-text:hover,
.react-datepicker__year-text:hover {
  border-radius: 0.3rem;
  background-color: #f0f0f0;
}
.react-datepicker__day--today,
.react-datepicker__month-text--today,
.react-datepicker__quarter-text--today,
.react-datepicker__year-text--today {
  font-weight: bold;
}
.react-datepicker__day--highlighted,
.react-datepicker__month-text--highlighted,
.react-datepicker__quarter-text--highlighted,
.react-datepicker__year-text--highlighted {
  border-radius: 0.3rem;
  background-color: #3dcc4a;
  color: #fff;
}
.react-datepicker__day--highlighted:hover,
.react-datepicker__month-text--highlighted:hover,
.react-datepicker__quarter-text--highlighted:hover,
.react-datepicker__year-text--highlighted:hover {
  background-color: #32be3f;
}
.react-datepicker__day--highlighted-custom-1,
.react-datepicker__month-text--highlighted-custom-1,
.react-datepicker__quarter-text--highlighted-custom-1,
.react-datepicker__year-text--highlighted-custom-1 {
  color: magenta;
}
.react-datepicker__day--highlighted-custom-2,
.react-datepicker__month-text--highlighted-custom-2,
.react-datepicker__quarter-text--highlighted-custom-2,
.react-datepicker__year-text--highlighted-custom-2 {
  color: green;
}
.react-datepicker__day--holidays,
.react-datepicker__month-text--holidays,
.react-datepicker__quarter-text--holidays,
.react-datepicker__year-text--holidays {
  position: relative;
  border-radius: 0.3rem;
  background-color: #ff6803;
  color: #fff;
}
.react-datepicker__day--holidays .holiday-overlay,
.react-datepicker__month-text--holidays .holiday-overlay,
.react-datepicker__quarter-text--holidays .holiday-overlay,
.react-datepicker__year-text--holidays .holiday-overlay {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 4px;
  border-radius: 4px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s ease-in-out;
}
.react-datepicker__day--holidays:hover,
.react-datepicker__month-text--holidays:hover,
.react-datepicker__quarter-text--holidays:hover,
.react-datepicker__year-text--holidays:hover {
  background-color: #cf5300;
}
.react-datepicker__day--holidays:hover .holiday-overlay,
.react-datepicker__month-text--holidays:hover .holiday-overlay,
.react-datepicker__quarter-text--holidays:hover .holiday-overlay,
.react-datepicker__year-text--holidays:hover .holiday-overlay {
  visibility: visible;
  opacity: 1;
}
.react-datepicker__day--selected, .react-datepicker__day--in-selecting-range, .react-datepicker__day--in-range,
.react-datepicker__month-text--selected,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--selected,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--selected,
.react-datepicker__year-text--in-selecting-range,
.react-datepicker__year-text--in-range {
  border-radius: 0.3rem;
  background-color: #216ba5;
  color: #fff;
}
.react-datepicker__day--selected:hover, .react-datepicker__day--in-selecting-range:hover, .react-datepicker__day--in-range:hover,
.react-datepicker__month-text--selected:hover,
.react-datepicker__month-text--in-selecting-range:hover,
.react-datepicker__month-text--in-range:hover,
.react-datepicker__quarter-text--selected:hover,
.react-datepicker__quarter-text--in-selecting-range:hover,
.react-datepicker__quarter-text--in-range:hover,
.react-datepicker__year-text--selected:hover,
.react-datepicker__year-text--in-selecting-range:hover,
.react-datepicker__year-text--in-range:hover {
  background-color: #1d5d90;
}
.react-datepicker__day--keyboard-selected,
.react-datepicker__month-text--keyboard-selected,
.react-datepicker__quarter-text--keyboard-selected,
.react-datepicker__year-text--keyboard-selected {
  border-radius: 0.3rem;
  background-color: #bad9f1;
  color: rgb(0, 0, 0);
}
.react-datepicker__day--keyboard-selected:hover,
.react-datepicker__month-text--keyboard-selected:hover,
.react-datepicker__quarter-text--keyboard-selected:hover,
.react-datepicker__year-text--keyboard-selected:hover {
  background-color: #1d5d90;
}
.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range),
.react-datepicker__month-text--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range),
.react-datepicker__quarter-text--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range),
.react-datepicker__year-text--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range) {
  background-color: rgba(33, 107, 165, 0.5);
}
.react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range), .react-datepicker__year--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range) {
  background-color: #f0f0f0;
  color: #000;
}
.react-datepicker__day--disabled,
.react-datepicker__month-text--disabled,
.react-datepicker__quarter-text--disabled,
.react-datepicker__year-text--disabled {
  cursor: default;
  color: #ccc;
}
.react-datepicker__day--disabled:hover,
.react-datepicker__month-text--disabled:hover,
.react-datepicker__quarter-text--disabled:hover,
.react-datepicker__year-text--disabled:hover {
  background-color: transparent;
}

.react-datepicker__input-container {
  position: relative;
  display: inline-block;
  width: 100%;
}
.react-datepicker__input-container .react-datepicker__calendar-icon {
  position: absolute;
  padding: 0.5rem;
  box-sizing: content-box;
}

.react-datepicker__view-calendar-icon input {
  padding: 6px 10px 5px 25px;
}

.react-datepicker__year-read-view,
.react-datepicker__month-read-view,
.react-datepicker__month-year-read-view {
  border: 1px solid transparent;
  border-radius: 0.3rem;
  position: relative;
}
.react-datepicker__year-read-view:hover,
.react-datepicker__month-read-view:hover,
.react-datepicker__month-year-read-view:hover {
  cursor: pointer;
}
.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow {
  border-top-color: #b3b3b3;
}
.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
  transform: rotate(135deg);
  right: -16px;
  top: 0;
}

.react-datepicker__year-dropdown,
.react-datepicker__month-dropdown,
.react-datepicker__month-year-dropdown {
  background-color: #f0f0f0;
  position: absolute;
  width: 50%;
  left: 25%;
  top: 30px;
  z-index: 1;
  text-align: center;
  border-radius: 0.3rem;
  border: 1px solid #aeaeae;
}
.react-datepicker__year-dropdown:hover,
.react-datepicker__month-dropdown:hover,
.react-datepicker__month-year-dropdown:hover {
  cursor: pointer;
}
.react-datepicker__year-dropdown--scrollable,
.react-datepicker__month-dropdown--scrollable,
.react-datepicker__month-year-dropdown--scrollable {
  height: 150px;
  overflow-y: scroll;
}

.react-datepicker__year-option,
.react-datepicker__month-option,
.react-datepicker__month-year-option {
  line-height: 20px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.react-datepicker__year-option:first-of-type,
.react-datepicker__month-option:first-of-type,
.react-datepicker__month-year-option:first-of-type {
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.react-datepicker__year-option:last-of-type,
.react-datepicker__month-option:last-of-type,
.react-datepicker__month-year-option:last-of-type {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.react-datepicker__year-option:hover,
.react-datepicker__month-option:hover,
.react-datepicker__month-year-option:hover {
  background-color: #ccc;
}
.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming {
  border-bottom-color: #b3b3b3;
}
.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous {
  border-top-color: #b3b3b3;
}
.react-datepicker__year-option--selected,
.react-datepicker__month-option--selected,
.react-datepicker__month-year-option--selected {
  position: absolute;
  left: 15px;
}

.react-datepicker__close-icon {
  cursor: pointer;
  background-color: transparent;
  border: 0;
  outline: 0;
  padding: 0 6px 0 0;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}
.react-datepicker__close-icon::after {
  cursor: pointer;
  background-color: #216ba5;
  color: #fff;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  padding: 2px;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  content: "\D7";
}
.react-datepicker__close-icon--disabled {
  cursor: default;
}
.react-datepicker__close-icon--disabled::after {
  cursor: default;
  background-color: #ccc;
}

.react-datepicker__today-button {
  background: #f0f0f0;
  border-top: 1px solid #aeaeae;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  clear: left;
}

.react-datepicker__portal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  z-index: 2147483647;
}
.react-datepicker__portal .react-datepicker__day-name,
.react-datepicker__portal .react-datepicker__day,
.react-datepicker__portal .react-datepicker__time-name {
  width: 3rem;
  line-height: 3rem;
}
@media (max-width: 400px), (max-height: 550px) {
  .react-datepicker__portal .react-datepicker__day-name,
  .react-datepicker__portal .react-datepicker__day,
  .react-datepicker__portal .react-datepicker__time-name {
    width: 2rem;
    line-height: 2rem;
  }
}
.react-datepicker__portal .react-datepicker__current-month,
.react-datepicker__portal .react-datepicker-time__header {
  font-size: 1.44rem;
}

.react-datepicker__children-container {
  width: 13.8rem;
  margin: 0.4rem;
  padding-right: 0.2rem;
  padding-left: 0.2rem;
  height: auto;
}

.react-datepicker__aria-live {
  position: absolute;
  clip-path: circle(0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  width: 1px;
  white-space: nowrap;
}

.react-datepicker__calendar-icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}
.react-tel-input{font-family:'Roboto',sans-serif;font-size:15px;position:relative;width:100%}.react-tel-input :disabled{cursor:not-allowed}.react-tel-input .flag{width:25px;height:20px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZgAAAGACAMAAACnYISRAAADAFBMVEUAAAAxQ5cSO5wAOJP////OESYBAAAANJgAJ33SDzT80Rb/AADKAADzKDgEfj3bFRr/zgDoDi4JhQHuHCYAak0AlEIAaDt1qtv/3wAAN4rdKBAAN6lFjdwBMnwOrS3cIyADh1EAVqVLsdjCKC/44BUBeV0BcsIEm0oEKov84kLVBgcAH6UCrcoAZsPpKjv+yAABAHYAoVtysuEAZQAetTrfIA7VKCQBKGXoAxLiCxcAc89ZgbwdRIoLSqn7+fgCki+kMTYAAJcAAK0Almy/CS/+6AYiSaYAUMPiPShkz//vKi0MHIy1Bwb9mgQiXjn88u8AmQADUpP/xyIxjyyHxuMAot7p6Ob9uAs5XbXUIT352gHFCx4jnkQMsF83lQT2PzNwGT06dMQAjMPhFyf1gQPdG0c1qDQAcijw9fjrhoivGyfFICYAAM0Bf/7hZmk9dir65OWNJCrTrjnwsSwmQILmVgUAoeHUOkn2zM3fOwh9mcj/eQDRyc7+mTL//wAHaajh6vPxsbKpstft8e8EOLhJcLQCmbTW4O0AAP/789j51tgfHRDphSjivAztj5XkcxHd3Nn821q2t7jyvcCUlZPuxwuTy6fsoKTqS00CcGlIZaLQHR7pYCSip6QTOIbozhy0yOSKvHblcn3xVmCOpyKGg4ZDNwXaUmGtWxZeCA8ZnQJYVFSdx+iQpMfIgozTqVK/pRTA4M40UmvVrBECVj0yWpeQi1LEPi/Psqx2iqlqvHywnztjnNl0dnJIk0746Lt+CRNhaWCBfsGo27jGYVfU7N+za2uPVj5taTLcRiOUgRcmqr/H0eVwrafOxBVmVwljcawxBAjmypK6nGYzNDJaRC+aDBrg1bhETEeDbAxQs5q9toe74fX86ZVDs2HA17iwjgx5xZbHyU91ukbGdB3tvnnOViLSihZRuICCMxAyHnWquxxVX4YohdFvlUWXWn1OeofpwUrliHQaOVYscBxonhhwk3M2lnmJLU9mMnChv1o4g6QRPyIzsqcmCFcOjBeew94WAAAABHRSTlMA/f5+Mw0WEQAAUx1JREFUeNrsnAlMI1UYx0fzCoKgKBKMwSsYb0EJbjDEkSgS41WPDdatxjOkQFJgJSkhVbvbIIEC4gKCB3LstliBFiW7gNDAChYlaoUqSGC9VlQQLzyiiTF+rzOdu0wvvDK/zs61pDD8+L/vvccLhIKCgoKCwo7xwrnATYZzMaczEERKyuy5FAjRJ7MpKQShrzLV6C5NUNcY9eWIgQgI8nMyEMTHF0hCBORkETJfj4jwPh4hXdoVPNJ0+P4rPoqKYCvCe+o68PukSQKf+NzknJt7Ex842JGTnMwV81ZKStkurphdZSkpbxGExlGMSBCzr7hWs6NiNLD9q8UgtJvrZTdCjJieV3uO9zw7/WxPzyc94Yt5oCM58WDyAwdzeGJwPk7JY8XknYIzRH8CEIOAnRNTU615p6a6WzOoCVUM9amIgFwjSehivjXBofZbv5Zva+HSlEaLOT49/XpPD3g5Ph2EmAmukgm/mJuTOx7IKa5PvrkjORkxgJhz03FE/GJwgNLPBTEJHBBC6kkzGXUx1YO5+wtqCjQ1mv2awUE5MWItOyImAeB8/Vdc2A1H3QTlZUIHF90XXkGLKXp2GsIy3QNyng02MRMTqRP0GS2mNzlnHyrOOZjBF8PYQIhxJBTzzv4lqxUNRltMTS7ebxZcC/vc3OiKQZKEIQZskJSNKy4cgBMyFW75E9MDr+NFxzFBiZkYyErNytqdNTDBacqSk3Oa0EEoMfymjGm/EGJaNbopUydcinwcMx8ZrzSad6TGHHYe2QyixlzPAQHUmdzXQxZnFO8jIxHDtl/fQquGD1cwYljuoI9StRDjF9M9AF6yBnYPdHPEAIngRSiGqfgIMf0AEKOpLd4HYkhU7NDU3bWyMu6t/hWhUIozRl7MtS6n03l4p8QUP1KOUPk+pA5STAIDI4at+JgB6jpQMmTETKxmpQ50d69mZa0yNQZJEvh+ud5YA2J0NaYq/TN33dX6qKH7yIGoizl82OUEvIevlRcj1iIv5pEm2NV3ZNRHKAb3kalSIxZjbJYQk8NsXDFZ3QO67qxVMiurOzVcMYjDM3c90/rozP6xH6IuBmvBeF2HdyQxjxRHV0yaWEzhBx+Y+WJABpccVkzqaurqQJapNhVO/GJO5yDflInElD/eonv3tegnxknj3aGmLEMNpTKKTdlucWIOHEAM8jUGKozJlAU1JpAY+eLPcuzYj/VrpM70Q7SLPxuZTTkxt/FAAD7KFv/ejqaWKBX/NHpIs32NeUISv5is1YEJXP1Xs5juMuIh311GHCYP/Vw22tI8vT/aYoBNJ8ZaEKaYne8us4MXdkgDYlSSbCtmwmeme/fubuxFusbIDzARB3J87/iR1aUF0w6IudbqtG66CkISw6rZ+QEmZ/DCDmnCEUMzkeUfYU5IN2XyUzIsOzpX5joCPbJ/kRjB83IGL5whTThiJvDGAKdiMfKTmH+jmOc3C8IQA/w9k5gkM3h5ktMPCEOMEOnEyE/7Iw7/hmn/f0oMLirCaf9IxbAQCgoKCgoKCgoKCgoK/x8CDawuo9hDE0fBDKzu4EMQMRS30jD352MkmOevW4tlCDRwCzydjmhO9YFoAr5PQFIlIYgrxfz54CJBZEgS+LlyJfkHxWgZGxYLc6rlr1v7T4n5s0KrLcViEoUbIPFcuYyYwdDFkM3NowgwmlEhyYi5PhpiVIv0/3hsNg99uqjir1sTi9GqShZVqsUSlfbfJebPB0u02r59ahAjaUbiuXTVtJgx/VhoYshC40y+1gEnDq3D3YJQoU/M9f7EnHlmRGJUdp8Wy9Dc3JDFp8aOv0EJHGI3KysHxyorNxkxU4tT81OwLU5FQcwLuyIWw1oxtJc3r7gpMYIXwH8uXlM2qE/u6AwtMaOj7pl8AzKn5wPNqHeUn5iurpDEJKSXanlitFBmLDHDjfHxjcNwAg2ZSAykdG2SRCQrxh4zNT8/FWOPhpgX459+IWIxUFi02vTe+iX3+rodixERUIxGRyWmI8TEmI2k2ZHvIPtAi6pKNzpj5NYY+HW81+kUiUF8WDGlIyMjhlKuGNyY2bAXbMYGDRnc4q9bizWp19bqF9QmrhgMR8z1knB/ot9/nz3ninn77V2PPS0rBjGo1dznoqz4Cot+H0kWrgOz5kC1WfBcsdWUGarGdIZYYwrTSTK9xOELTHphk8FB15jr8dbl3WpoaHC2BS1mpnRrq3SGIwawWzxz8T7mPBa7CuCvW4s11W+1lDdURSbmhBOkxdxzj+qFtl1Bi5lcWJjkiaELS7uaBEbdWIwxkBjBc8Wi6gh6ZWYDMuYvpvsaMvfoqKGd2yvb63WCGe9ekHJvMGJGtka29LBjxWA0FzJoVBj+urVYU1XV2kLLWrhi2LDAmVDMrpERlarhxWDFqBf27l1Qs89FFZamctKHudA8u77ubg5uPV4sRW5YYs4557oPy8ryaeJUFT+fA1CJAdqcDQ17Q0iMoSl9aya9ycAXk8eKyaO/QbFcTHVra5OTdayYRbsdKtO83b4oL4YNC3sGX4+fTz30DhOMmMceWwsoZmEJodl1IwosJlaC8MQAH8bFlWAteWUl+RXX+cX41HR5n24YbvB2BStGu6XX6/u2tFwxwO9+L7+rpMSMmUy1xlrTGCtmanHePj8PBzkxbFTouAjF2Bo9MZZGCyNGvilbC9iUqdecS5PjK0hOTEGBSEy8JNuKAco+zK+4uywOpEB8uIkBMRixmBg+bI0xNPXq2w38GgNUIR9VKkkxZ1PWzuYkZgr3yqbYxNwmCUGwUcH/xGJgWDu3POehr8Iq/gBV/FtI0ukcH19YIgP3yuBpTqwGToxGYiAzoOScsvwy2LGJwezpAjWNXXuCFnPrSF/fyK0iMQYSAaSBFSM2czZngKnFfblFOMqICdhdZgPz6aefztnoq0i7y+2Ta87xpTosRnIgQz1XNfIXfXwRfmKuq6j4ENx8WHH3OT9/WHEKmxjIDAwv29pgiBm8GIxQDNCLgF6VpBjgpDvvPEkwJWO3431kYgCLx2OJ8XgiFcM0aS243DBTMtx/ibQYzTsIvaPxe0HVYScGwpKCd9QpkxjhyP/eCMQALQi1qKTFSM+VabURi2GxRUEMp9xQYgIl5sTu7hM5iQlfjBjJubLIxNyrVt8bihggUjFiojiJyU6RsUdaTMGJJ3Kqf7TFAFEUA+j1qv+DGJlp/xC7ywoKCgoKCgoKCgoKCv89zqdIiotLOp+FIB6WhCBOGHz+xMrhtiQuF19MECdR3EVDXxLEGZIwA71LaBIpCOJmSeT+7oC6RS8YeMK9PhWPvnL88efRxPMI9P789WAJDARxgSQEcbUkBJEiCUH89NTlEmwr5il4MRu8KDEXn/S8Kbey8d8mpryqVyAGaOfeakJIRozOaEZq8xJAqum/a8FfD8YTsydcMYcOccXExDwZohgxl/vEXHzCfsgMNpOJX/8SMe3CxHxshtv1BhWNoQouzV9vI6bQ2OlqRiveccC7hFpdRiNC/PVgXDGTx5655AKwE6qYoveSkt4r4oqJ+SlUMZcLXgAWw89MsGL6Z/tv3zkxLfp7BWKys1+F+2QvTMeXt/TpSbh4NTt7GzEHXK7WNfXouA/y2IrVZS2E90+QxPd5yTqfncavQhBzKHN4bu6rzEOsGMDyVGSJocXwMyMWMzwsFtOfAd/1jP6/rykDMdmfkYgD+Vn2dmLIVhAzutTsda6seFcKFzqtLpdRKGbWaHTnGY2zlBgA2/GOgJ09e4IRU9R4T//GlVdu9N/TWMSKAZ4LXsxpNB3FB09jwWL4mRGKWX5s2fPYskDMR4kUH4Ui5oEHuGJukCRwU5YNfPwmAkbdWNCbH2dvL8Z61NrZeqB6LG0M1uDt7+xsdR01CtaDJbgRKllEyA1izH4x5TMz5eq6Y8dww7YncKcALNz3TWZm/8bGxp8bV/ZnZn5zHyMGsP14CRcQk0QDYjgwYg6WH8wQiHmJyYyUGJvHBptAzEgihSEUMQ0NwYupl2jKMGa/GDNcbCsGNbtcVmtrdWcarL/7dczaaj3aSQrWgyW4zaN5FY5CLMbykauzuZBEjnTAgUgdAjvPcMXMvdXFE/NLY2bmY2NjY4NjmxtXDiVlNv7CigHGBWLiJGHEtDSddlpvfQdXDDczYjHDtuVl27BATKKf4MW8GA+8KC8mcFOG0SEanawY8gB46fz++zesm7//bm1tdbU2C9eDJbhrj/z67g/vYDExmPk8q9vocJAO9cw+hGHFdH3x3a9fdLFi7h7KzMxMmtsANsfGKmeT4HLobu7vh8IQU97BTwybGYnib4Hfo98Vvpir/BTFxxcxF+E1ZViMDtyQZkQKxZzGA7+P8ai1dWlXRkZe6aUJ3k+g9iMkrDFux8tvfeSaocUAU3ZYR/2bdcbdhwRi2l5+/deX2zhi3sNiZq/EZv6sHPNmAu8VccTMRdyU8TIjFuOxWDx3hd2UgZiLfK+rjh86dJy6CEJMS8CmzD0DjVme2SwrRgd5WZp8w+V6f/PopnHyQKfLKCGm9chsq0/MnMdmgRWh9rx5WINYYq842mosZMUAX8y99QW/KWuDjGzQ7M3MbOM2ZZbxS7iEVfxfuoWbGXGvbHkZdtLFvz/4xFyUfdVV99GnWMxZkvjFkOqqXuniPzqKULODhOIvIwZitYRQrabmIY2mGqHCQtIsErP++mzngdmP10HMjTde0DU0t25f31Va+rZ93o6/uR8cZcXgroB08ccIi/8fTwXdK7tfEhADZniZEYkZGpLvLssnhoI6pcW8INrO2rYpe13cXQ4shlpsSaIBzebhNB2cqpGoKQMztrvvttn8UzIgZ7hk5O2Rkil27cApkoAYzC/QXb6S6i5DXFgxMMSMhhgmNFRmgh5gwj6ExOAXLzEvSJhhmzKDSMw0Z4DZix1Ny4kh66BrZaypLsRHJBYD3Orx3MrOleEa/yXw1dCyzSIvBvgm86vZ2a9wXFgxMIqJhhiwAi9eZiKfkpFPDNYQODGovKpJMCXzJn9Kph4uzR9vKwaAJf2fA0M/1iFWzKX+TXoSMz4eogPhee/TZZuMGKAIfpAb+VMyTwY1JXOtrBhshtrRmWmLXIx8YrAVcWgCN2U4Iu1x7J24dgQIxCQLxOi83iV1XZ15xTnKiJEExIjAdmTFiCcxcXmJSmJ4QGbeyX0tumLEyBd/ca8MZOkF0/5QNeQSQzIVKXQxGFkx4mn/y6UgFBQUFBQUFBQUFBT+Yu9cYNqo4zhOliuVDqc4HRPFB3uolUydoSbSNCQqqWRaxyYCTlDBpECsnWO8skU6hgsEAddJK+1QHgZfcw8UeehEk40hY0EUUaaiUzRzjo3pdLqY+Pvfo3f/u//1+kDjkvvccW0vGdB+9v3//v8/91C58NhARP6Endr6dlhqo3HkTyy6GEEJoHfIX4j7SSmtL8EfsuLj4/ftiweigHgOycDt+5sQdREI4r1R8hkoltsY8OPHLvIREXEVi/hYg2UMGhYdg/xA+FIiMDAnIiOmziwvxr5wBSz28MXkHMk+kUMUMyLWUmdAYt7Ys+cNqRiil2uDFYMfPyYSk5kZipiNG+dQzPQs2nrNfsTUrkiDRZqYKxniV1dXVFSvjmdf+hFz5GxOzhGCmJGRl0aScS1IMFjo6lJKDHh5HnkJSsxd8IUfPyYSU1ERnJik8o1JcXENDUlJmJhbxEvAYmbHMjIax8bOmP2JscMNM91pdhkx8dXbpxDV8VIxBQWYmBdOXIaJyelgxJw8pjt2EtMCBNaUfQ9akBdMDAXIiwEtCHxODBOTbKUoa3IQYsrj8vNhE5e0sSGAxFBEcDHTGRnWjDKH2xxgYvTsyouJb56aam2daZ3aC2ZEYtrnz2/HErP442wQk3Mi+6WOHCTmLNuUHTv2l0iLp07wBpAYwRsQt2PPg5dgxAAkMc2jo81sYjIpKjOYxGx8aPHih1A7BmIUEhOgmDFro+uMqx6Jkf8HcI9ZWGSaMuP2qYnumZlDPVN7jSIxloXw0Vgswhrz7ZGcy3KyF4MQltdzkJiTT14t0qLTyYvBvTwPeQlODBMZ7PgxaMp6m1tamnsZMRWAPzEGAyYGknLPPdCWwZOkABKjISIUM7thtrFq4ozTipoy+dOuy+imrIwspnqqp253a/fg8Z6pakxMe3tu7vz5ubnt7aJe2YnFHXQ7loO2Zzvo4i/R0npSUQxfXzAxlA+FxGDHj13UjNICW1pMKqz+xDQ0iMQ0wPdPwss/iCFEJiAxE1UZYxNWp/NMgdufGEgMIJeYiqmqiZ6J6aM9VVMVuJj5LGIx2YtpJR1nueJP0AIVR0kMX1+CF4Migx8/dtFoCxLTMhpAd3koXadLH8KKf3lSUjnKC5T/8BMzXTnhzMiospnj4syBitHDKhZjgis2wpXwTCIxCzkxCy1SMRxnkRiSFiRmDQcS43sBYvD6IitGqSm7SIBQjIGIIDFDOt0QubsMWngxVxJRFjPRaDObXY1uN+TFb40pc7cvbHfLNmUHGptGRpoaM0RNmT2X8ZJrJzRlHDlIjFSLghi8voSQGIIYvilTFuNtaPCSxDRA6Q9fzGxGY5Ujzn3GZXWwYmKJ+Ir/Azhc8d/b1AS35f69SVL8LblMXihcDF78kRiJFmUxeH0JuvjDgotBWUHFH3JDi4kTrbgYA6zkkX/4YqYnGgt6bBCZOHOZ0wwod5fJYuKrG6c2HW7cROguu1z19S4XJRIj7S7jWpTFiOuLshjlxICZd0ZH34H2TDkxNCGL8d9dnnbU28wOl5lHeYBJFgNm9jIDTMLI3+n0O1d2lhlgErQAguKJxAiKJ1ZfQksMrPIjcCYk7IbLTAhiooj4FVNng6SY7U7WSTiJATNGNCVjjA9GDNaU4VqUxUjqCxDClIy8GBJzKEZ+SsbLqLC5zTzKk5giMXM3u4xrURbjm7cMUQygIIaNSbmBe4j7T8QMmUkoTvv/a2JwLcpiOC9hiPl/JkZFRUVFRUVFRUVFReVC49yNJOQu4Cw/IDJedwUB+bmgXiuFoXTB6m0rScAAlgYNXIVERCxi0ekiIymKexURcQcHBWg4sBOOsN9nMZGIiDuJyA+0B2Te15JDa66RAmI0d/8sJ+ZKemWfwMqK6SWKuVm77Ip1C/jliv0z6/yJaXnncFBiKOubF7SYaKIZ+rT9lENEMRrNOaIYTgcs/ApiKky7aBd3cCuCvrT8i1csEKp5eoYkxlJjYsS0GHcFJYaitoUips5bWGhzBi5mPAVOCnSZ5l5M9OdyYpCbp6RigCwnJcJPYpp3jV7UjMXlDloMcOV1vJqZjo6OdVIxY9M1bGKA0aqgxEBoghaz/u689evzCtcHKGZRIfO61C4Sk9318eD4x3uywxATvUpOTBoQNbhGIgawWSRiWD78UKCGqTHvNFc2G4VaGDHAVSg0VzB2OtL7hWIsH9RYaqY3T5soToyxxQjNWRBi2NAkrLz3vXthG4iY9YXjUUuWaMaLUgITA15Sxu12V2epWMxzLxzak/1cOGLAzCckMRd7N3u9m3NjYqDc4GJKS1FoSGLAyr59sMWLf8thaks825jxNYbBuK4/HYwgP/3p/bwYS00+0DDG1xhjvBFCU2GihCjecJQPjYIYHWIDTOAaTp3K0kRFbdAhFMSMg5f7ocZYLK5aXMwLHTMjIzMdL/jERBKRv3VWNEIvbpqQmM3eGG9uGmzZcsOLqa/XiCsNIwassFu8V7ZlV4W0+LN0z6bP7u+H1Kzp55uymum6zbSYWZNPDJhBbporAxZTW8uGhgf2E2HFeMcL87Le2FealzI+JL5a7Kbeg9spDlYM1JfxBQuctTY7JU5M/+ntI6f7swMWY/qgpuYDEy4GcKBT32stAjG5m2GFrw0xXLlhxdhMzCnxWPeM/gFff00hhM8YMS2wQFhETdnWj7aCmNn9M2vWwGZmZg3fXZ5uyEfUjY1ZfGLii1teRGaMWwIU48jNdXChURYTiShKKcrL+ujt9XlFS4rE/6NHXjn1u1gMfAqLFiywR2naaiVi3v/jm/eDEGPZPT2924KLQdRTHrvLJRDjrQMx3piLN6fFsEC5oRPTSVGdGpKYDz6gEMJn+DgG75VdlboVzDzdP7Pu6XS2zvgSk9+AvAhvV0gHphg2xesv4fGbGPYPblV9fJFUErNEE5X10b7xvKJCiZidg2/IiKnVaAp8xf96htX9506fPte/mn0ZiJixMZKYAhDjdArFQFrqvDFpG3xinhi9mhZTUF9fIG3KNETkB5g3g5StydCUpafvn+1nvPDFH240Og39ZJEYFJh9RZcEKMZUW2uhL9VzDY98jaEQtvGUvLxzl3+WVzhuoxACMY2bNjWSm7Iye5udwsQA3d2vvtrdfX3gYsYAqRgXJL/TbhI2ZRsurttcF+PdcDFj5VTy1VczYrLQmuWghMiLuYcIiIGGbGsmXWRmu7khjU+MdZuVAkwHqkQ15lEP6PDQC0LhdAU8LspiyqDqF716CG60qnGK3xcF3MEhKv4mKP4iMatXDx5avZoXQ0nBxdfALW8DKv5QYLze3PRcpAWs0Mh2l2VrjLyYTMYLwA5phImpGmk6YDIdaBqpxBJTnEJrYfEoi4G4YCh1l1OWjGuK3i0cL2S7ywpiCN3l630YjbBRFBNJhO0u/yY9xgFseCExdeCldBSUYGIgLiIUawypV3YVKv7wxQ9p+O7y3qaRAwdGmvZSgsS0fME2YxpwoqGfyZ9HQoiLshg0kGEHmMpiyAPMhURCErPq9suIYkBNGiosAvxNyfCjS9hy+BWz9SrYoEdGj3GBcEqmam9l5d4qSiCm+ByY4BoxvXximNMVCHFRFgPUDcGUjGORghjplMzci/mceFSQr7Bg+JvEBJjRJWwDErO1IhUZ4dFe528Ss7jwEga9qMYQAgNiCHEBgp3EVBYDUMDcizl+mZwYsCJGedqfs6IshsSL8m/gTzCBoVD8IS4XtBjwQhTDFxZMjIqKioqKioqKioqKyoXHw0RggEZE/ngzigauu+PnPpIJPvD9wu+zkgj3/ZenpS2nEOJpeYoll0H+wtqdlqpqLYKCH56qBTJdHhc78PR6hRtAMJCcD5BmkWMAxVl55dlonH9dDH4dMF4Mvv+/FGMzlFG7hGIqbIZa7gMdGsI2cy/G7nC0lZa2ORz2sMW8CJeef/ZFqZhiNItWrCQGvw4YLwbfj4uJZZe1a9nnQYoxc2LuwhdGDOSjgNqWyolJ3W5oM1mr0Qe6/yUdxkv7uQ9UIxSjEX2g9y1del/AYizuFY7oaOcKtyVcMc+WlAwPl5Q8u2jR5UIxNxd3a41GbXfxzUpiogUkJJ+iSU7A92u178WePHnyaiwxb1ZWsn/cjw1GjFkhMdp520tL7dZkRkx1gcdBHU7Vog902XUnhF5OXLeM/UDhg+XFwAtRYpYuDaIpW6J3rlpVpl8iSp7DlpVlc2BibiECYlgvf5dM9sHmWSwxfFSKgxLTW75xqCE/7hWxmHnvNb68JXb5PCwxVivzHAglMUTo3z+5zeOktiAxW8ARVQG7aDHLlkFofHGBlzKJCUOMPWXA+dprzoEUvCmrj6Kpl4h5rqvrOZGYpYhjJSWJw5OTw4klJcfoHawYyAsDZMavGPw6YAm97rqhIbe7NwHfr01d/rLFsu1kqjAxqCkDkJtQaoyOCPP7Z/Z42kxIjKGAqszU8mJQaBqGhhpQXACFGkMUo/PR1SW9ybbbU7TC41lR5HELv48jisUhEvPQT6+++tML6AmsQjGTw32Tra2tfZN9w5O8GGLxjyeCXwcsYWTH7522vp1rE/D92nnLz58+fXo5X2PepI0Ab3LFfzkDiBFCEGOG1Y8YCsEXOBZazDokYxBdf2yQO1dc/uCQGMR9aANiAOawMOHP/fJL6c+t1+vzAL2+XijGxomxicR0/XD8rd1dXFoe4sUkPjjZ1zc83Nc3+WCiUMyHRs6I8UO/YvDrgCXE9vR0dh7tATHYfu28l3d0d+94eR6XmLWV1rX0o7VyLSsmjUjwidFHk6DFHDkCMn5E1x/7MUAxSwWIxHwbCXwrFlOg10d//nm0Xl8gFJPFicnCxUBgxne89QMI4eDFJE7+NTz812RiyGIShPRGAU880ZsgTl7sjk8/HVnJFv9YTkxsKGLM/sUQvehpMXt+ggasCF1/rChcMcCeyMg9OomYgU+iIyOjPxnwiYkC7BSLnTPEitn9w/HBH3Y/RGrKhoehLaMf6B1Bj2NwMe/1lHV2jh19TyJmdOfOna+MMmKAcJoypEapKeMKHN6U0XVlEF1/LISm7D6xmC8Byc+1DQysOn581cCAjRcjKC0OoRigH9WYfnLxn2ydhFVU/I2BF/8EjJcpW+fSowkSMb29Bw/u6OVrTCjFH0/MY0TY4l9JFRiQGFObp0dS/A2G0Iu//MBc76N8I/+cEdNGsbRhYsjdZTPN+ZLJxETomJWcZ14H310GGyu5FfiqvbQpQSKm+egrmzbtPPgLlxiuuwwPwY/8FcVUUPbS0i1IzBbK6WlLDrK7HK6Y/HxcDN9Pro/i8DPANHNmShITS8CLUAyADTAVE3OvoMz0JkjFGHegu4G/b+QSww0wQ0uM2a+Y1MOUw1NQnYrEaJOt4Gj7vHAHmLiYy8UrLmZjOS4G0eaw2x2Ql0DFAAfPP554/iD3KvgpGU7LvZge+Vq1EoFNyQSbGLffxFRbTW2G7alaRow2dRtV4HFlhj0lQ04MOAHEYvCmTISyGCJhFv+VgYjhG7DQBpj+E0PVGmww1mfFALuoMoNt7maXkQ52AdCjSExc/v9QTECJwZnrGuOCfGh5MUB1laVz7maXF5HAxZQHIEZFRUVFRUVFRUVFReXCQ0PEt1/HchdDRMS6HBIREbcCFHWrCPHxYzf++uuNzEByLQPFwr6EE3mI8L+neBr/je8euUGK3IWp5a8BcwkROCGLiOJBF8+wKN7A5waGf9g7E6ioqjCOj3WB5BRBtlmRLWa2YZ0COkEvKi1acE4bBtppgWqgDmJp0EQlTEYMm7KHmAgicJByKFYFJRZXUBIUEReMgMrMRK00q+++fbkzbwbEljO/ebz3Zk7pzPv5v9+9dx7vIZb3GGwScxctZsoztohRnD/WOeykIuZRAhbEdCTGmIbusiTG0/P/LeY6eICY+z5UE4NEKM4fu6Cr00oxj/z88yNWiHEodaxCuqYhs2I8I2L9rRPjCT/V1X5+9Rt/q4ZnvJgn8AKwu7aKmTa2YhjwB3vYJjEXipg6f/7Uzs6Jle5WiBnXunp16zgrxDjsclwFF0EzZO0nivE8hrT+nlYnpv70S2UnGxuPsp5Gn5hpY52Yu9jEwKeYQxKDeO4UIRXjNL/Wu7Fi/o6JVoj5efXQUNPP1ohxmN2RePCWfVrUAuVGJgaaschobY7nVZ5WiqmubW1ubm1ttdSUPXFOEoOIWEgMgC9vQSWsTxCuDmNOjOz8Mafbbisre+gJiRidoYVSivk9v2nOUFP+7+piMKWO8PX6kvUUgnIjEuOZcyzHP5JKD4uOPsaJQZjVqxEg7AnvPzLHqC2k0ov5z8WauA0hSocQ16iZPW6CGP2yZfrR1JgniFhIDPAThRAV2JS1WCSG3JTJzh+rmD+urHHcn6t8BTEtTQl7s1oUYn7u7a3r6+39WSwmPNycGNycJTtjN7jcCGIikDY9NhYas2iU7SkS09uLAGFPOKDGMJoUQQwLQidPghjASjFtVVVtWMy0MRYjJAZYhxDS9dUtRGpiZOePNVYMd3dXHE70FsQcMCXsXmFSiGnt3ZaWtq23VSRmV0fHLrIYYHap4xZnzD663LBi/LXR2mM5hceiI7Nz+MQIYSEcUG1kQWFkTlikUkxcWlqcLWJ26vU7z3VisBiKioyklImRIf1CbGJZ99ETJ2prE/8UxJhWBO7+tsUaMQ4dHbC6WYJFMWCmMFKbnpOTHuvv6SkXA2EhiZkUGz3JmOLPvz6eBR3e+NthxD1TF5O294or9i4TEoOInOXE/KSDwODrfRlsE1PR2Fl7ZGWut1gMdeTA3iOUsil7rNd0sqdH3JTNDg+fTRaD07TqS3lTBkDNP5YSG5aOwjytrDHa2IKI9IiwdIUY05FNm46YrBezrO2KK9pADDAyMYiI5cTQTVjg4sWBqr8ZJRVT1thV37bC171e1JQhymAgFf/TbbWnjxYpij9ZzAbH7aTijxuzyEiUHRlthH3LNWYqS3lYQXpEytfsM5GYAyZYBDHXESH0yqbBYyRi5hKxmJjfPBVoNF8TkYoZ7u7qOtqTVlTkrd5dbu7raTvU/KiKGMvdZSAWRRr9o6lo1e7yVI6M9KXRRVMFMVJsFwOMqRghMYc9PSeJHrBgMXcSkYrx7uwcHr78cEWZuxUDzJ+XLGkepyZGbYDpnxKbAsPL6GPqYmSQxfybE/O8l6fnBMkDzKg0ZRxde7q7uzq7vp9qzZRMK0zJqIlRnZLxBKBBgz2bxPyHEgORYSYxb/T0pHPCbyaoNWUCw4PdTk7ug11WT2Kqi1GfxMR6/kExEJhzkhhCgbG2KQMnXd4w9Q+rkUz7k8V0WzXt/x9MjB07duzYsWPHjh07duz81zA38HEjotG8T8T8F0FziGg0E2mQlxeaKEKjuYwBsdzIoNGEuGUjhoQExBDrEaLRBAevfEbGieBgc/edtPVC1uaPw4NE+OOwlF4tXcofh5VPk4ABppjXlmeucsT8e8RMVRNTEBLC3LJj/S+/rEcAFRESUqDRbAkObpd6+TE4+CC8n/COf1KM10D/QOrggBd/HJ450a4q5kfnNYmOnJiPiJxbMVMZNVMticH58IiGV7IHFuDsRMPTWHxAt2cGLz8hisvy4MztjvT7KR2BmE52QxAzYYL1YiAtqcmDA6LjgP/FWBbzWrvzHkfHxH9ezFReDN5XSww+gSUkJAWhlIEBvA4JyYlkDmjiGlFztjI4+Ev4bMz72WVBjDEiKirCqExMo+O8eY6NiQoxj+MrZjxuhRgiIAY4kWlBzLfOyauKutN4MYhHp1M0ZUFBbh4FzW5uk2BnhGKyiFisMdeRxdA2CiOjBwaitYUhIWHCAd3DN2ftwcFbHAH2/czuMCcmezpNtkJMd2lEQWm3oinzD8XXcgn158VcyOPlJeyLjsPAoCwxDQdaVjSZm8Sc8yO+LFA3onBWE7+UiFm3TiEmpPXzmL2LPdy8Pm/m3pDgMT/fQPhqmX6NovjXKQ4UGYkoDtuLP0Js+5VuNNIb8QFdlRwcfAL/iwzmi6cDQxhF/E7eOJ3FKH//2icLCp7Uymvt46GuAYBr6OMyMVFwO7gU2NwqF5OaCQyKxDToAhtMz6yQvx++6m+Ht52GdMs64WvyWSIxep+XX/bRy99QVLNbkK7g3uLP75WLMZTHxZUvVIhpMSEdSGsyyT8wlZ6dna48QRDEiFERg7S44odBcLTSf+mJB4ODf4SqD8WTFxNVEETfO4kkppgTU8y9/iTLrl3Fxbs2cM+445A3a1ZqXl7qrGl5UjFesXBry3S4J5yXTMxAZqazc2bmgCDmAFqBM91gIohZ6QztL3yKxM5l8FGck5aKxOQ/r9M9v1ouJsTt3uLduyM+L3CTi8mP27EjLl/2gcFISxbE1dTXp5OJiQ6LzQ4T3WbQi4iKGCA7BMhW1obtwQAUT0FMAVXsAARlE8QEcWKC5GJKS6OiNpTKxExIhcDk5QUETAudIBGTYgwriI4OC4tO4cUEOcwGkpbj78eWJ+En8BKI0aGGZ5qwmhVyMXPanbc4snTCiYt5IFImJl/ZXY7S7U43HIiySgxlyurr68lCLUM9PS0yMUZ8V0ejdWKuk4iJkoiJdTMjJhPEbBeLCWK8RCObxHSURkSUdsjF5Lnm5UFc8lxT5WIiI6OjIyON2ZwYo9aYEhEWrU1Yv2QJ3F46OiwiBV5ixRzAYjZJajA3eGGjvsd5Fu5iy5uydUoxe2vc3DyiQtysacpaerKaAKoFNnIxyJiTY0Sjacr4wQs9pJGJYZuyg4IY/i5wtjVlpRuqITHKpizAP/hK/wB5U1YQnY6Jji7gxCyqXLS6N9+nMlefv02fW+mzune1T+UiUVPmJ+0c0YMXrjeWuMY5yQGjVvyBqJhiur4oir9BWfwNvCikLP74zM2zUfxjETOkkRf/lfSQP1la/Oe5SFEv/jW7IgqerFEW/+CA0NCAYFnxL46ONhqZn2JWTHm+Pte3Up8f51PpuyguX1+Jn5TTxb+loeWZk2/Ieq0weOF6Y5D6aZuZ11W6y4yZmuYQkZhLiJgfOYcRGYkYfvDCDmmk3eUTXHd5j0hMl4sM893luzlwr+w490TUXYaaIe8uL42NzYYlm94sZcXo4xYaFubry7cZDPHl+nx4Eqcv57rLGxXDieRVfG9si3OAMFOgPsC8t7nZTS7mL97IX2pibiUiEzMVP9TGMZHc4IUf0ggDzB9FA8w1/ACz20WOqOYVBwUVG5FCzOt3NzfDisX2AWauT+5TkBKfRZWVEBmfyqfg4YObMqBhkfKiQ458b+xL51RemLoYIMpNJuYvWPgHXo1IDKhgxMCWwcliYtL5wYswpMFiVsHgRTYls4oWEz7ThSSGCIghYvuUTPy2hfHb4hfiBfa4J7SYoy8rEKaCYPCy2YFnBJOYl7AqmB9YzlJi1ObK2MGLgJaZxORH/YAw+gcxfpe7jF6M7ZOYE919c/WLfN0nVvr4VMKTRfQTXGNOv2xWDDN4cRidGAK2i7G9xuA+soxsN/K0/0o87f89aPgnxMCHgIu2TQS4Nd5oNL+CBrNimMGLWIwdO3bs2LFjx44dO3bs/Pe4noj5gdgfD5Mwf1/L24mYP0dgAhGN5jEiGs0FRDSaWUQ0Gm+W6RLMXczH/J9zERGNxo+IRnMvEY3mRiIqYhYvRhywz83m3kQQY/6+lrevWDHmYqa6XzBVIearr957b1aJ3zwBvxJGzPz5/wUxFi4kQDWWpVGIhkora+Sn2b9SijF/X8vbT50aazHuw93Dw7DhH4KYwX6RmP5BRkxtLayQgHAxH/HyT4uZQIQ+0Bnd3WUGhLRwsHVl3Y1pjBggUREa+X0tnc7b+3QGm5g6zsaZM1vPhpjeXpmYsoN79hzsJiZmnhi/eVhMLj5ZJNe2xDyNl6fZzViJCQ8niSkMC8uRiVncXdYdg4wR9PcWMfXd3YtZMcClamJ8j6+qkIkZWnGq7gwvxpsHWhYecYKzmnSIQyxGp5OJ2fTW2rVryvjIyMSUwOJXUlKC1dCJqUSo8tw3ZY5ERGLe+P77N5RiUlB2LAqTitGllRUhY9Ds6dNnBxlRUVmajhMDICny65I5jas/fPg8pilbweblFNxvs26rXMz8eITi5xPEmF64q48oBiGZmIotwHwziQElg4MHB2HDianV62uVTRniickQ/4O4lIjZEqAuJsNgyFCKeeNGr85OL9hIxeQYjTmFxmghM2zx16EI8OIwfXYx0kFelGLI1yUDL5sHBgZ+p8XU1bGBaYdTGU+dkYsBL2BGKaZl6IX9QwsJYnpjYnplxR/+R1hziSGIKcGbElbMfFiUiUE8GY2LpWIulz/MizH/Ou9lcZmjY71jolRMuJ/fvD/+mOfnFy4Vk1KA12FhUjGA7jdo+F/64Ycboc6QxJCvSwZiBlLzNv8sSsyZnp5DIGbFmTqpmEpEU6kQ0/QC0KdTitEVFenk3eWp4k6ZTAxIOXiwP2DWrH5WDMaimE6DWMzlZ1eMAZR0xhjKZGI6v/oD+KpTLgaF4RVBzPyXwl+C73p+VxXjJOGRZRnlGXqRmLpTZ+oOtZ/qGWrfapUYw9ALL9z1AkRGIQZ1diKRGAciksTM+jIZysI0Woz6ATV0OhaJxRC8nHUxQNcf8+b90SWvMTmosDCnkJI3ZYE6lOvtDnjvQLpAW8SMqz3adrRI1JRtrTtzpmeo50xPnXVNWROIgbbMpBDTG7N9e0yvDWIOzmJhmjIhJeTE4EOWmKZSY0bblBXJmzIAJ0ZZ/MNSEJVSQCj+8Z95g5fP4mXFf4ODFJmYw0nLahuv+KJKVPzPAD1ntvZYWfxbTC03v6AzmCi5GF2Vs3OVzhYx/YPJgyUB/YPWidFl1NcXxSAW8+OMd4iMvPjP+6qz86t5suIP5ISFvajoLjeWxaD4XF/f3HgUU9Qo6i7vcrAspn7nztraop07peOYoTNDdVZ3lymTqa+F0CvTwkVJk7XWiwFKBufNGwQxFpuyy4iMgRgMQUxXFzRnXW9YN8BsbMQDTJ0ODzDLipbxkQQvZDEC44oycs+TDTC3njkz6gFm7y3OwC29toiB+v99Caz8zCdm7MXMISL8+fPo1aimZDrCHVTEjOGUzBJnmiVqYshTMv9iMaOfxOyY7aAm5lxNYqqLgZzIJjERkf+YGNIHKHUAbBED/CNiSPyXEmPHjh07duzYsWPHjh07/zXMDdAeYghm4S98/RYR9WnwFyWQB6SfbdRoXGfMmLHgVmDajBnT8HYBvOCq0bzA4MzCv89pRPh7jt3Awt9z7CYicAV2IhqNr29lbXx8ua+vL0LCvkZzORHz59chREVSiEZynC8mchbF6BEBvWUxeifMRLxgKvpT4TfQAmbMuPJdEBI6Y0YAbN69Em/PnZjTRUVFGbUiMUBuHCcG71sSY/78OoQiayLHVswbCrCYiXqCl4mWxcSDEvpBLxtTU0EMRMQVzMAGkkN7cYWNJTGu3IPfsU7MkSNKMS8XJX33zcmdSTt9xGLy43J5MbDPivmKfYj3zJ9fR0XGpMVEahkx45nHGImpHpCI4c1otbwXy2LyUT6tBFZ0XBgxQMAMV89bPWfMgJUrjo1lMZyMJUu4XVbMVVfRYrbCQyHmuiM3NTTcdOQ6qZh1rV+k1e7I9Un74rtrRGIqy3H7hRC3L03M8ePixFwoQiwmsiYtI63GeBYTcyUsSjHVb9zY318NG14MZ2bf5Mn7WC8Wxfjkw6v5PkxoIC5A0npGDIQGygtmGsRFRQzP+vWypiwvz0Jirrvp119hJRHz0zc72+6ozMiovGPdzrSfeDG52+Lzc7EYYV9IzOVz16yZSz8hidn68enTH2/FYrTGGPCiTMxUItaISV7zZbJCzI2D1f0DA/3VgzfyYjgzk4ODJ3Ne1BODvbBxSfoGIRDDEAp2FtAbFTGv8VCUsE+LCQjAYraSxEBU2hYa2iA4IjF3lK89OmXKh2lp10+542irnhOzY9vCuPxtWAy3LyRmLvx8+SW7A8jOrwMxFd0gRlpjwAjDqMQkby8p2Z4pF1P9FpgBL29Vi8UIdYb1Yk2NgZ9NqcA3FMJiXANCF1yFXbiyvbKrFoQGuKqI2V9XV9eEUBNs9svFgBqFGIjKpVkIZV0KO6LEZHzx08vX+AQG+kCF2ZnGiRm3I36hIR+L4fZZMV+BFK4pgx0cGfn5dVtvP93AidEatawYPjKjEHPll10gJlkp5q2SqvqNb8nEgJkUByAFvNBY0SubOL8EtHynZbvXM2hm4dqPq/8s5rmamBbE0sKLuQrb9jfXlLX1YDE9bQ+LxXxdM2VKPgLiQEwNIwYR4RKTOZdNTiazlZ5fJxEjgL2oJwYREYs50rBJkRjISlVV1dq3+oUaw5thvMjFyC+EwIYF7o0Jx++LBAQsLH9eEJNqtZh7sIkmRNMkNGWbnVNTMxfgwMAiF2OidC1gUUeZxGJqY16Z8mEcQs9+OGVK2g41MTgha5KP0/U/eQ2XGCcJH3/cePfDSjFciXGAz0tEXUxw5p49W7YoxNw40L/2SNXaflHxF8xgL6pi2E4yjksS1qKLW0T3XlxnsU3ZNKEpm2WpKePM8F7uYcVkzgoAMeTEtOkQMuATTdrEYir2rrtjSvzixdum3LFu2Q5rBphzp2WunDt35bRpODkEMRtLvn99e6tMDBeY8aMSAxdm2RJM6JVV969d2z9QJSn+7niFAPqJihjaSxnuitG9s/OcMCMv/gcQYKJ3OTFJWAy5xvyaZTK1tZlMWb+KxZzeuw2iUlQE5SWmBhxZGmCyHbET02hOMKMZhZgd4d8f/34HOTGA7WJUxzHQI4MCUy1PjCBGvSnDcaG7YvH6R5hWjRfzrtBdfldFjAcLhbKzEcU9Y8QkgRishSCmra3n11972toEMZjy3XEfHs3IODolf3e52gATYHrLycl0f5mUGDDzcyt4IdUYcDMGYgAYx0BcRiOmDHfFoLCI5mVsHGAKYiIiCz08CiMjBDGT/CfBgqUQBphgJgsAL9KRf1tNTBEQ8w14URlgsmN+FiExSpRi+PJv7iZ0lsW8adOUDMadF+MOi2Uxn21M/c4AhYUNi5CYd+VTMu9aIaZQ2GCsmJLpgdAo58r0GUUZsPjArtoAU1DDjy+tFIPDglcjEGPrJKbtiano/yKOKSy8GkA6iRlqxSSmhxSCmK22zS4fLSrKpXdUB5jyxFgthovMv1LMzlooLAqYaf9Uca8M95tdbRcz+ml/lQGmEpvEqDRlduzYsWPHjh07duz8xzlfY+dfiZPTWKoZT0T8y5wdHcI+/+vViIUfKF0t4lUejea3T0loNO5SPotD6UH4772aiEazgIhG40JDIRaKec4P3BALP3C7g4hGE06Eu2YM8vZGF4lgxPz22XkKNRcQYc83u+oq+nyzK3nMnoemLqZ0A1A6cjHj/cyJqQA4L7kLqbDxwEjFIKClBQHnUsyrQb9PHGeVGPZ8s9BQ+nwzQQzhPDQf68RsKO0ohWWDSMzl8CCLqUpeU4+3iAf/+dMriGIqqjIzq1gzehRZDH9rUDQrxql7C3w91+0kE/OueFGI6cs652JeBTVO58vEuCseWAwC4iqG4xAgiCGchxaht0YMSJkeEjIb5FiRmCpX0FJ/WJYYoIwoJtPVNZMW47sNxQbBfxah1TFiPls5efL2VZMnr/xMlpgB/MPtvCsVY2poCLRSzH1nTQzgNx/aM/XEXHhV6K0Va9Z03xr67oWCGOJ5aIIYFwliMRs6ds0OD5+9q2ODFYnJ/PLqqw8nJx+WJWa81/gCCkkRi1mkowpwXLJRywv0n+MEXiavaofVSiermzKqbk6D6ZwnJjsW1Pz22Tj1xFx4a+qF3mvWel8YepWamOcjpGL6AutEYhyIsJeJwmKo3TsXy8QkM2KkiZm+ISA8XH4PV6Ep+6wcGaPgb4wyoqybL6MPRAko2ZK46iBsSvgDgTgijx3TIg5BTEtDQ0OdQV0M4tAmJGhVrwFjWUxhLELpBa/iUnO+WmIQENc9vI3UlAnnoekZMxIxWajPxSoxl+MFocU7v99oIDZlksR4lW7fsyfPa3qHRAxf/CvjUcp4oIAyDF12GSPmIC0mcQ1sDirF5C1YkEQQk9Ww/zqXLHUxgpfFuwUzqr+tAGLEsImJpVD0q5jpP0B7ZkEMe75ZaCp9vpkgRn4eWoRe2ZQZ0HUu1ieGCty9c1NVDEUq/tLElGw6vDcJ/shSuRhMLaWlq34sMt11GScGG1meuGo5bNYoxFALAEopZsilwcVliLJaTII2K45KUBfjTUSoMb87cfjSap4mwp5vdutS+nwzQYzsPDRARYxqYqjdacvql+0WiRGQ1pgNVXv37iKIEQYv44sjqT6woi4Gk7RgwTFlYqi+hjlzrhsyWC/mwIo+k3bUYsCMUPotibmSiJkv1mxvyoQaE3hgWcaBQKEpe5UETkx1gFdo9XhlUyYMXlLg/ElsRdyUtTsmtpObMio2llKKCaybc10DlH/rxaynqPWjbcoIZi6g8a30vUDMKMSAmcA6W2qMYfdug6j4IyJcdzxcWfyFwQtqupn1IhT/PYmr9kiK/7VE+JF/U4MLBL4hy/rinyAt/r5EVHplxbHpBdiMXExlXHz5uFGLIXeXXyNCJ0bcXVZPDEDqLosGL3WX8dD3Hr5sJbRh2/dAi7byspsZ1MS0NLjQYuoMI+suj0yMhxHBPy5sRiYmdyGKz+U7zraJ0auM/MHCM4rHa2xiJGLUE5NEeEOiwctlMjHYzHa4jyrvRV0MaurL+rXOFNiCzqWYQhy5AmlrBjogMfm6OFFi3G0Qo4/Qq4kBD3OkCy3mclsT4zWL9IZEgxe5GDBzPBGuTHkcvFgrBsjKgtU5FfMqm5jxIjMXMGZyKy8414kBLzYlxn8a8Q0JgxeFGAGbxDQ1WS3mPn59n1jMOGGBH2tqTDquMePFZviQjLr4K1CvMbaIyQsmvyFu8DI6Mcpp/3OamPGMFTdRa8apGKUYOyMHxIj53f6F5r8FJxl2M3bs2LFjx44dO/8/4Ld5Jk2CHwu325AMPC9mQCzsU/Oz0aWzQ4iv6+8nnqZkMwhztxyNJpCI+fO4fphu5v07khD94pLswt03EDF/fBBgMATG/PySGFpMDgBHeozEOHbsEptZyr2uXe/zD4gxfz2xq8/7jfj+HUrHXAxA1SjFTCrMzo6YRBQTHz96MdKbzWxO4l5P2IfiXz7nYhTncbl7X8CIgb+cEBr8uUrVxXi4XQSPx91GLmbx5woxXinpYTlEMfnXXJM/ejFAB9eceSU9nSd+Q/nPn00xx49bIeZCEe7DTt4V3k7e7lgMcH8+kkF/rlILYuae6B+YREhM26Hlh9pGl5iLIwrNNWU//WR9YhDH+s8/X6+4BRTdnC1Nfftp58mpwhvSUuiK+8+amIYVtB0bxAzP9B6uGnbfNMyIAXx0BDHYDFnMzKqyTZs9+v0nTGAiw4s5dSXmkC2J+U3RlHlcfHEUlH8O4UBT8fE6m8V890V18y/fScUk1ifim2jkOT892dn5aS/2DSUk7NuXkKDzOUtijhuwk5OGZyyJkZ7HNTxzuGzTzO4trJjnn1eEhj2gKWauvrS83yOn2aN/zSRZYlZcybBCEIN4AhcjHkuJIWJ78efy0uxXXd3cvF4qZlki3A4oZKnD5qedN+fxYpYACQhte/6siMkKpGNzQEWM+DwuuEnzlvojw91sU6bXXy2vNCCGMUMUM3e5f+y2bekemwcgMuIaM5kVE0wQU/P5sRqlmJixFrOvubl1Y3Pzd4IYng10a7Z582ZGjHbfElfXJfu0KGHf6kfOghhToBXFX3oel/umk0dPnp45jMXQrRiOL3TP5GKAMJKYlStLalavrhkYGJzwuDgxbVdytCnEBLaezGgNHIWYOwSQgKqYb1p/A1rFYrq7wUpjvaMjPaTxIoiJjXJgGY0Y9IxYTBAR6Vz98MynTp+6r6K7m07M8whBdsliIhBRzJHqz+PiavxBDFNkrBNz8p8QE/eI3+HDfo+Ui8QUFbFimCGNl7wpMxbDC6MXswI12SrGvfupI6d+dd/ENGV6wExTVkyRm7Jnqo/F94ZtfntAVmOWm2/KqJrWVpuaskskKMUYjepiMD6PAIsoWVOW6MhQ6gBIir+2wEHEaIq/DmXh8t9w3GoxU8u6T5yYOzzMjGMewcv9cYTiH+4ihy3+Px4ZKCwceGu5PwxlIDO8mD6LxT+QVPxHKia9uDjdKjFU3KLnyykkE9PJisF9AEl3OSXIQcyoussGhEwHTA2qiRFwH557YubwRCfL3eXwy82Jmbty00b/zYM4MG4ToPbLusunRN3lq4kQu8vqYu4TJSYqCgEjG2CCF4ENIZwY0B3lIGV0A8wVB0xZUGisFzN12HuuewU38qfjohTzxkwXshhg5twTgwNe4OUiUPO4eIB56tApKDBqYkaemPtYMZTRSI1YTGKM2EypQwgzJSMUl9GLEVATo0BtSga8KJBOyUBYIDEXcYkRsCUxI60xwAjFCCVGaM7wJGbBeId/kxhzk5jdLubEXMqLgfKCtSjFjD4xS8dMDIkNGg0uLv8mMeam/btcSJBml0cohjztb8eOHTt27NixY8eOHTv/PS5guIWF/8WcSUTM/4LSc0Q0mgeIaDSPKjm63Jm7sHbFEoYkLwYY6Jn5BaunaOCGFE+JoS+UPcEjx0OGhftUEjH/+j1EzP/3Lgy3sIQwaDTXELFCjBe9DoHlLItZvfpR/MNz/Vpn57WcmJ2Ml/e9eDGvd9kq5vGU9ELazEXsAkjPK/uXi3GHB0lMCDyimpOavVgt8Nx6MVt7erZaFrNu3aP0z/3049HKdufMTTNZMb68F0HM6zOn2yRmQpg2Z0JBIRgRmTF/n0oElJ8+7fMvEmMhMV5fJCUlRYETL3jYlJgz7e1neDFz9g/N2b9/qG///jl1Q3NYMdK8nHR2bp87kxNzUvAiiAEztoh53JidUzDBI4zODPvwMH99MATkXv/U9WdPjMFgm5h164iJIYupHuzv9xpJjelpb+/hxQyZTEN1WZi6pqY6XgzOCxOXD6EZWzkTYMR89gv28ouXVAyYCbdJTOwEaMlyQAiXF6WY2lOnDh2q5cTs8Hn2ZZKYsMLC6MLCMNvEBO7du9iimEkTJknErF5tVWLmY+CUF1jmC2g0nxCx3JTtb2rqq+vry+qDddOQssZA1V++aaYgpl7mpTgaxGBcTEiK5abMoyCnoPBxWgqrR359sMkftP84YzIWcz2wg0Lx10vQaO4HCj0KUJhH4f0CVtSk3W+trSGKOXQIVqDl7/bOB6aNKo7jaB5VqiFVQI0G/6CYmJnNzThdBidGXfxLdWInxhj/Rcs0pTiNldQIwz/pakvXtRaRjgmCM8CGVGAbwpx2jrG5KUMREWXMqWS4jIlMnUZ/76735x2v16P1T8zuc+2VqwS3fvL9/d67Pe7kiSkroyWGLiZgObrmpjXqxZCIpWw/iIG7goEYsEP2GMhMh17fClJEMWPYy02iFoRADMeHiEC4c6xhHgHf/OdiJJmRXx9sDH9MY7yY9pVftUSMPE+IqQqgQBUWcxHe1Igxe/q7ugbfeYci5sCBmaXs7HXrvkLoq3XrFqhLjN1WFygywRc5eItXDCQGatgWaDFb9m/ZwieGp/1Jvb4vXypmgvMiahHEAPupYgwyM9GHy+T1wRqCzSubCzgxQHWwHZTg7SK8F8Tg9X7ueqzkTtguUiHm1Tc6jh/veMNrlov5LSM1NeM3tpRJE1PAIIApUJkYu6nIHSgT8pKjIMZAhROTkQHPyOt94jwmN1LGXMX5hJh94GWnqIUQs19tYhCVGbdDHGpZWdqCxfAhoSYmLQ2lpdVjLZg7lcQ8xHLpaz1HHjz+8eHXnueOJYkZS00dYxOTRpSy9xjw8p7aHhMIFLmL7GJi4hNDHy6LkxcQIorhJpc7BS2kmP0qe4xaMUf2bpsY+IQTwyEkBna8mA2//pr76691nJQ7lUsZSGHFZB/OTj/c9vylcEiKOQBwzZ8Ug4D31PaYcE1doCpM9JjTqMQlJjcyeZGJ6QAvUi3mD7dcGBHzu05GomKWdD//2vElhBhK838Ru7joRaL5X0qFSwzYyG6bvqsY7rDNHT4Ue7jcbF6wwNysIjEIU/50OaqpQSLxivk6wg9fC2LEyQspBiaXNaKWd/Yf4/6NneIlcTFgZvFi8AJi0qhE3g+/mPtimHyfLkZIzPPHvQ2+4PHn2UOqmAvSSDHcLnZiEIu7LmCxqhKTT4UXc19EzP79GbwYcfKC+V0QMw1eOC2mV3+4UFj8QHhJVAxJLDFA1YYq4v1YiQFADt4pJOaCuGb+SCRRMfRSJk5eyMRM1oAWtn4Rq1Kwl/9MDEnsxFyKN0ELEN8pmcz/Qow4eYG4SL7/SM1btkj9IsSAl/+JGIBXopyYNF7MjxIlP/7XiYHJC/X7X7Hx9YsU87vufyWGII7EaGhoaGhoaGhoaGho/P94jArcNyXKhK43yoWpc6lE/4Wme6hEX/d1K4c+QjIHe7sT7rrcKFOC5ELf6VKi//r86VSiX+D6uZvo6+7S0/M7P8rrzE+X/X+voUJOhE8XUBCTezJdTErvPymGXPeVqJjCv0dMzjqKGN3SV6KJCe/YEc5Pz85WLQaMRF5uw1sMMbm5V1PFYDN0MS+QWzxiyHVfiYpZ8w8mRqdrXFoTJTGd4WdAzDHYaGIWLYouhuM2LAZR4RKQSRWDzSSemHOoyJYXbQ6y+OISU+dGRXArFIOUaH9fBTE5WMRKQUlTEy9G51yxooYmJi8v7+J8sPLux8dmiqm3GY22elGM4INIjKIY4GQnTQyYSVzMbTzvl4Q7hQOZmI3LVixb9v33k3GJecaKrM+oFoMEjEYkAGJ2r5Ukpa3VJSQGzISW4lYjF7Nj/fod+ekQmQ9nJqYIL7cpZ9w0MWRiUgQWLhS/Zj/odniWMrRbW1UaZEjvIeYwxl7JKIj5fOCnboRsvBrZuq+Nz7lXuNZ/uzG+UrbKZkuRiVG+TyXGwSIRI6XXYOgSxQCtS3GrkZcySAyIOQaBkYupR/XXFK1aZYUXpR5DiqmslInp7jhyJPekG8hanCKaCYX4vSgGvHg8DkYuZvt28VUUs7xz3Nk2MRD0mDzh2/I+uhjEEOu+IDFHVyz7PqSUGCQgF1NoSbEUynpMTDEOxrh1xMg4aGJ+ajUQYprgOQq37KuRiVleUrI8yqjMVn6NG5VbrchGEUNPzM55BsO8nVIxR548p3ZJbu6SX0gxgpnRxsZRbi8V4/Ft2hR0yMS888MP7/Cvgpjl69eP6waavhgY8Aa9KBz+bjmIIdd9dRjmfdf5/e37lBMj0l5mNpfl0IbL6sWgkRFGJoYrZk1+A9AqiBmwewZ0uiEws6KGEFOyY0cJXcwiY/011jVz09Yg4xnkcFkhMTcZDDelzEaMwek0cHtCzPRv09MmeWKOHSNfQUzJxC+Pvw9itg18EQx6mfBtJdW/gJhTpLQZ5v1c7DdsUymmtD2z9OXq9tL4xWAjDvxkJGKqd58KdBg4MmOKyYPEKIm5ZZEghuyp9B5TU1lZM6tSNi8U8vN7UYxxeHp6WF7KmO3bzfwrL+bzX0ug8zudA86gxwOlDL8hF5O5dM/55x/SZ6oU054Dq/fW5bRjMQYqKsTgi3WRYjCZrQbgXnj2UkoZrcfQS1kASllAWspAg7hRE7OQfSTe/B3f2I2zaP5w41KftPmfQrDt0PnXHuqOMY8RKS0rKzNDYOIVAzhWX3bZ6hnN/6eQgceVGav5f5YPD7qYelR1jXuVFTd/SmLUzmOA7GtJZj9c1lGRDpfffjsPXqhiwMyePeBFrZjNOS+/nLOZJkb9cNkBSN7n24tIX6zhMpSyvChiIC/uqvoAE7hGMTGxxNyZCi5SuYcoBrwkLEb9zdSeajtFvZic0urqUq75v0kl+t/3SiqcmF6Xy+Vn4cy0gRjWC32C2bnhu+jnyupXMcQEk5qYGKdkXgMfghfuS8VTMvJzMopi7qECYiioF1Ods7aaE5NOEPuUDF1MXKdkwhv3hSlieNLSYKecGEUxEBeW1D+5B3uoeBLzhSW5BP+6GKAUCtnfLqbDQNKkfBLzu87wd1QxIoqJURYDXijEOO3/34sB/k4xcZ32h0uCdyYqRkNDQ0NDQ0NDQ0ND4//HIipwwWrUrdM1oKJkAnLd19kCSUnXiZwmMvOaK4f0o048wXyCSvQJ6XVSTuOJfu7rJUxz1kskSZhzIojfDFyK0UuYj8G/YFU7WauXM9vrnincJ/SGFAoKYpIDaBs+I1+XLIVc9zVDzMmxxDxaq9+rA+IQs1LcZGLMFSYzVUzzLthl7SpISEzt6PpWvRzyc0hEjKvx/VmKSS5nmnS6ILIkSyDXfUWsDI9FxHyw8gNlMW/qQ434tGxrHGIkXq4jTtebNg0PD5oQOk8CK2ZXM+sla1dCYvb0Thx2wXEt/8AoXPfMuNWBWBz9RoTB70QX0+jq+/Tz6GKqYIFAoIoUk7yGgZtYeZm3iB90ugRWy4Kzh4c5MR/s3r37AwUxj+7R9+mARn9tdDE3UlFITMVgV2tr16YKQoyQGOwlS70YQYAoxt+7rdcv+uL+o2yZVVtxflN+cTsrxuHyT/aDHGbSPwJSHCOTfteIVMzCheS9D/pcjVDP6GIglUUPL3p4LikmxUaYoYtpGQsu4ErZnJbdaHfLnKhiDtT62TLWpx/bFYcYiRdCjGm4FRiuoPWYgl0xegzDyMUc0OOdtMeEWl16KRQx+cWPNUxNHeFK2Va/y2UAKavPWQ1f3wtHBxmpmMpKUowOQuN8nyqmCiEL6+NhiRig0FYByw3sRvH2O+S6L1zFWiaDoCd2YqDrtzpxGQvp37j77uhinuUJ7xu2CAdkYohSVsGJMamr6aQYY38/Q4rZM38PuxPE8BmcswSYwx+Rn8PJ+cU9psOcGDODBmtd/nv3be7r7dvsu9fg8vebiT/PihUyMWxoPl1OEWNDtoiQenAjiAEzq0wDOqfEDLnuC4uRNv8PSik9RihjQzpgr7/2y7vViLGgbhMSzCgkpmITLmWD8lKGqJBiKgY3bjzoIMR8PX8+dvI13l0viAEti1l4NeTnAGKm7b1TbVhMQXNBweCY696OqzHbLnFNfoMKvuLF7IRLWer1sNspiGkcamRDo5MSEWNERZyXubZVc0Ux2IzV5NQ5PVbeDLnu62yOliA/KpsTbVR2QO9q1AGj+rHL71Ylxmpqshut/JHSqMw0ODwMLSYOMSZ7/8HJEboYMjH3PLgYvyx+8B7umPwcTk6f6vAUF7NiXs7K2t7T0+8KbcA86RrLKmCysBiOmqV6YGmNmJjRvaNcaPwGEUGMmyoGeMbqATMmayH/g86ewYKxybOjX5hBmLywxVS/hb/A3CVUxFGZh2n4LOxRMypDZpPZjEjUiWEc/ZtMjIpSNmfxg3PY13sW82JOkXBy8VQPmuYSg7KymMNXvuror3O73XUHt8LYw3wzLwZYiL1A+xcT08eKGSLExCpl2IzR7tQNmFYVysXgOsY1/5YWJTHi5GVIX/vH3WrFNCFvsLwp9jyG4YlDjGPk4CZPhbz5H4CHnihlc94DL5yhB0tFMSLbpnpM08UTrJiCAuSd6ilb/SSI2VjLZGV9hbIIMcBCYlTGljKwI0Fs/kW05s+ZYeyw6tBsS6GKWcCOypTEiJMX/W+gRKUYMBP0NqmY+Z9HRV3zZwYDmzyMfLg8f750uMxVMuGew0vuoYjpCHWnn5XdEWLFQHoreq5809W/b8O+Qbh3vBkiLY7KoJbt3AmVTBTDxaXRmZohQRwuo8DcRXOriOEyz1uMF+7Ly6xJoZSy4DDeK4kRJy/Q9WVi9PCQbEC04XL0BJRSYZNKQT5ctlpnzGMOzZ9/SCKGLlhWyia6Ovq6up4SZv6eb7o8/aHW1snmr/tlo8TKhZCaSkIMxMX5bgYBMcEsl08w5WZIMS2QGHjEEiOZvNxNiAETJMpiTqMy+wtWx57533cf7NhSJohJEZ8pFDGUUzLmVwddfld/1uVlMYbvbFx+z5CheEpGxIKCuOiXS8UM17awcYklRjJ5IcVw6OVinqUi+/kxS1kiYg5BYIjEYB3sTvgythjAsXorWrcAxRCD4/JYRlxigDrkg/tYowAWI46RgdhixMkLKYaXIpYyZTGIyj+RGIAUg03wfqilLLGTmBCXOMUARahBp+tGbqLHqBMjTl5IMTwJJeZfEEPw94v5PTWDJkZDQ0NDQ0NDQ0NDQ+P/h3jJD3Licyom5yS8J95PphJ9YpWd/SqyWm6SkZR0JpWkJN/U/RSSTjwUxXyyeFZiqorKq8otR91uS5HF4ubFZB/bjsqVxey9/8z7zzzz/vtBDLJPaWLkYlK4LSIms30tXK2jdK16MUctlqPlRwPuNW5ruSXAiekBM0RoaGKGvl1fObT+271YDKo4rImhJyaFE7O2JQfsVK9NrJQtezObCA29lN0PaoYgNNzPCYYMMpJOPIjEkKUMyKmeRSnzeL3I0+DzeoNBD/J6PayYoWUhIjR0MXfcAdUMYNdlbQ3YRzUxRGIKbQjZCkUxmWvXwl5VMsCLz9vtsV996xVXXHG119Pg9Znw+7rGkBAakejNH6GR28+1mne8fpWUpBMPxIPF2Apt8BDFtLScql5Mg93X4PVecevExFNX2L3dPnsDK0anY0NDIhMDv1gN3/fII4/Az3Ef9d8Oo4gNy09wMclSIC4QGlFMdfUsxPi8dp/Xc/Wtn2y+9Wq7N2i3ByNi2NCoFlP07DL97c+WI1icI5J04kEXQ7yvVowvaPd5HigBHrD77EGfLy4x6KAr5JqEynjCi0nhN76UxS0GN/7xxvHx8c+9XtDki6uUYTGhgyiolTIeofkritFRYYVV2KH/L3eOjztLvD47jMqE5n8hvfnTxZSPjIwMas0fgiJuHPGKgdoV9JaMj5eM5/mCcCQbLpdV3yqgJAbYPTrvhB8uszPK1zkn/D4lLjFMENx4PB67HXZgJchgMUJcVoKPmGK0CaYAsVwK7+NPTBCGy/agNwgPO75vKpsYIi4xxWinZMjEPA46CDdxiQHACAb8MAzXS4i4xBSjncSkNv/Eegx9tEbEJaYY7bS/hoaGhobGP8xff9MS7Xw+B5wAAAAASUVORK5CYII=);background-repeat:no-repeat}.react-tel-input .ad{background-position:-48px -24px}.react-tel-input .ae{background-position:-72px -24px}.react-tel-input .af{background-position:-96px -24px}.react-tel-input .ag{background-position:-120px -24px}.react-tel-input .ai{background-position:-144px -24px}.react-tel-input .al{background-position:-168px -24px}.react-tel-input .am{background-position:-192px -24px}.react-tel-input .an{background-position:-216px -24px}.react-tel-input .ao{background-position:-240px -24px}.react-tel-input .aq{background-position:-264px -24px}.react-tel-input .ar{background-position:-288px -24px}.react-tel-input .as{background-position:-312px -24px}.react-tel-input .at{background-position:-336px -24px}.react-tel-input .au{background-position:-360px -24px}.react-tel-input .aw{background-position:-384px -24px}.react-tel-input .ax{background-position:0 -48px}.react-tel-input .az{background-position:-24px -48px}.react-tel-input .ba{background-position:-48px -48px}.react-tel-input .bb{background-position:-72px -48px}.react-tel-input .bd{background-position:-96px -48px}.react-tel-input .be{background-position:-120px -48px}.react-tel-input .bf{background-position:-144px -48px}.react-tel-input .bg{background-position:-168px -48px}.react-tel-input .bh{background-position:-192px -48px}.react-tel-input .bi{background-position:-216px -48px}.react-tel-input .bj{background-position:-240px -48px}.react-tel-input .bl{background-position:-264px -48px}.react-tel-input .bm{background-position:-288px -48px}.react-tel-input .bn{background-position:-312px -48px}.react-tel-input .bo{background-position:-336px -48px}.react-tel-input .br{background-position:-360px -48px}.react-tel-input .bs{background-position:-384px -48px}.react-tel-input .bt{background-position:0 -72px}.react-tel-input .bw{background-position:-24px -72px}.react-tel-input .by{background-position:-48px -72px}.react-tel-input .bz{background-position:-72px -72px}.react-tel-input .ca{background-position:-96px -72px}.react-tel-input .cc{background-position:-120px -72px}.react-tel-input .cd{background-position:-144px -72px}.react-tel-input .cf{background-position:-168px -72px}.react-tel-input .cg{background-position:-192px -72px}.react-tel-input .ch{background-position:-216px -72px}.react-tel-input .ci{background-position:-240px -72px}.react-tel-input .ck{background-position:-264px -72px}.react-tel-input .cl{background-position:-288px -72px}.react-tel-input .cm{background-position:-312px -72px}.react-tel-input .cn{background-position:-336px -72px}.react-tel-input .co{background-position:-360px -72px}.react-tel-input .cr{background-position:-384px -72px}.react-tel-input .cu{background-position:0 -96px}.react-tel-input .cv{background-position:-24px -96px}.react-tel-input .cw{background-position:-48px -96px}.react-tel-input .cx{background-position:-72px -96px}.react-tel-input .cy{background-position:-96px -96px}.react-tel-input .cz{background-position:-120px -96px}.react-tel-input .de{background-position:-144px -96px}.react-tel-input .dj{background-position:-168px -96px}.react-tel-input .dk{background-position:-192px -96px}.react-tel-input .dm{background-position:-216px -96px}.react-tel-input .do{background-position:-240px -96px}.react-tel-input .dz{background-position:-264px -96px}.react-tel-input .ec{background-position:-288px -96px}.react-tel-input .ee{background-position:-312px -96px}.react-tel-input .eg{background-position:-336px -96px}.react-tel-input .eh{background-position:-360px -96px}.react-tel-input .er{background-position:-384px -96px}.react-tel-input .es{background-position:0 -120px}.react-tel-input .et{background-position:-24px -120px}.react-tel-input .eu{background-position:-48px -120px}.react-tel-input .fi{background-position:-72px -120px}.react-tel-input .fj{background-position:-96px -120px}.react-tel-input .fk{background-position:-120px -120px}.react-tel-input .fm{background-position:-144px -120px}.react-tel-input .fo{background-position:-168px -120px}.react-tel-input .fr{background-position:-192px -120px}.react-tel-input .ga{background-position:-216px -120px}.react-tel-input .gb{background-position:-240px -120px}.react-tel-input .gd{background-position:-264px -120px}.react-tel-input .ge{background-position:-288px -120px}.react-tel-input .gg{background-position:-312px -120px}.react-tel-input .gh{background-position:-336px -120px}.react-tel-input .gi{background-position:-360px -120px}.react-tel-input .gl{background-position:-384px -120px}.react-tel-input .gm{background-position:0 -144px}.react-tel-input .gn{background-position:-24px -144px}.react-tel-input .gq{background-position:-48px -144px}.react-tel-input .gr{background-position:-72px -144px}.react-tel-input .gs{background-position:-96px -144px}.react-tel-input .gt{background-position:-120px -144px}.react-tel-input .gu{background-position:-144px -144px}.react-tel-input .gw{background-position:-168px -144px}.react-tel-input .gy{background-position:-192px -144px}.react-tel-input .hk{background-position:-216px -144px}.react-tel-input .hn{background-position:-240px -144px}.react-tel-input .hr{background-position:-264px -144px}.react-tel-input .ht{background-position:-288px -144px}.react-tel-input .hu{background-position:-312px -144px}.react-tel-input .ic{background-position:-336px -144px}.react-tel-input .id{background-position:-360px -144px}.react-tel-input .ie{background-position:-384px -144px}.react-tel-input .il{background-position:0 -168px}.react-tel-input .im{background-position:-24px -168px}.react-tel-input .in{background-position:-48px -168px}.react-tel-input .iq{background-position:-72px -168px}.react-tel-input .ir{background-position:-96px -168px}.react-tel-input .is{background-position:-120px -168px}.react-tel-input .it{background-position:-144px -168px}.react-tel-input .je{background-position:-168px -168px}.react-tel-input .jm{background-position:-192px -168px}.react-tel-input .jo{background-position:-216px -168px}.react-tel-input .jp{background-position:-240px -168px}.react-tel-input .ke{background-position:-264px -168px}.react-tel-input .kg{background-position:-288px -168px}.react-tel-input .kh{background-position:-312px -168px}.react-tel-input .ki{background-position:-336px -168px}.react-tel-input .xk{background-position:-144px 0}.react-tel-input .km{background-position:-360px -168px}.react-tel-input .kn{background-position:-384px -168px}.react-tel-input .kp{background-position:0 -192px}.react-tel-input .kr{background-position:-24px -192px}.react-tel-input .kw{background-position:-48px -192px}.react-tel-input .ky{background-position:-72px -192px}.react-tel-input .kz{background-position:-96px -192px}.react-tel-input .la{background-position:-120px -192px}.react-tel-input .lb{background-position:-144px -192px}.react-tel-input .lc{background-position:-168px -192px}.react-tel-input .li{background-position:-192px -192px}.react-tel-input .lk{background-position:-216px -192px}.react-tel-input .lr{background-position:-240px -192px}.react-tel-input .ls{background-position:-264px -192px}.react-tel-input .lt{background-position:-288px -192px}.react-tel-input .lu{background-position:-312px -192px}.react-tel-input .lv{background-position:-336px -192px}.react-tel-input .ly{background-position:-360px -192px}.react-tel-input .ma{background-position:-384px -192px}.react-tel-input .mc{background-position:0 -216px}.react-tel-input .md{background-position:-24px -216px}.react-tel-input .me{background-position:-48px -216px}.react-tel-input .mf{background-position:-72px -216px}.react-tel-input .mg{background-position:-96px -216px}.react-tel-input .mh{background-position:-120px -216px}.react-tel-input .mk{background-position:-144px -216px}.react-tel-input .ml{background-position:-168px -216px}.react-tel-input .mm{background-position:-192px -216px}.react-tel-input .mn{background-position:-216px -216px}.react-tel-input .mo{background-position:-240px -216px}.react-tel-input .mp{background-position:-264px -216px}.react-tel-input .mq{background-position:-288px -216px}.react-tel-input .mr{background-position:-312px -216px}.react-tel-input .ms{background-position:-336px -216px}.react-tel-input .mt{background-position:-360px -216px}.react-tel-input .mu{background-position:-384px -216px}.react-tel-input .mv{background-position:0 -240px}.react-tel-input .mw{background-position:-24px -240px}.react-tel-input .mx{background-position:-48px -240px}.react-tel-input .my{background-position:-72px -240px}.react-tel-input .mz{background-position:-96px -240px}.react-tel-input .na{background-position:-120px -240px}.react-tel-input .nc{background-position:-144px -240px}.react-tel-input .ne{background-position:-168px -240px}.react-tel-input .nf{background-position:-192px -240px}.react-tel-input .ng{background-position:-216px -240px}.react-tel-input .ni{background-position:-240px -240px}.react-tel-input .nl{background-position:-264px -240px}.react-tel-input .no{background-position:-288px -240px}.react-tel-input .np{background-position:-312px -240px}.react-tel-input .nr{background-position:-336px -240px}.react-tel-input .nu{background-position:-360px -240px}.react-tel-input .nz{background-position:-384px -240px}.react-tel-input .om{background-position:0 -264px}.react-tel-input .pa{background-position:-24px -264px}.react-tel-input .pe{background-position:-48px -264px}.react-tel-input .pf{background-position:-72px -264px}.react-tel-input .pg{background-position:-96px -264px}.react-tel-input .ph{background-position:-120px -264px}.react-tel-input .pk{background-position:-192px -264px}.react-tel-input .pl{background-position:-216px -264px}.react-tel-input .pn{background-position:-240px -264px}.react-tel-input .pr{background-position:-264px -264px}.react-tel-input .ps{background-position:-288px -264px}.react-tel-input .pt{background-position:-312px -264px}.react-tel-input .pw{background-position:-336px -264px}.react-tel-input .py{background-position:-360px -264px}.react-tel-input .qa{background-position:-384px -264px}.react-tel-input .ro{background-position:0 -288px}.react-tel-input .rs{background-position:-24px -288px}.react-tel-input .ru{background-position:-48px -288px}.react-tel-input .rw{background-position:-72px -288px}.react-tel-input .sa{background-position:-96px -288px}.react-tel-input .sb{background-position:-120px -288px}.react-tel-input .sc{background-position:-144px -288px}.react-tel-input .sd{background-position:-168px -288px}.react-tel-input .se{background-position:-192px -288px}.react-tel-input .sg{background-position:-216px -288px}.react-tel-input .sh{background-position:-240px -288px}.react-tel-input .si{background-position:-264px -288px}.react-tel-input .sk{background-position:-288px -288px}.react-tel-input .sl{background-position:-312px -288px}.react-tel-input .sm{background-position:-336px -288px}.react-tel-input .sn{background-position:-360px -288px}.react-tel-input .so{background-position:-384px -288px}.react-tel-input .sr{background-position:0 -312px}.react-tel-input .ss{background-position:-24px -312px}.react-tel-input .st{background-position:-48px -312px}.react-tel-input .sv{background-position:-72px -312px}.react-tel-input .sy{background-position:-96px -312px}.react-tel-input .sz{background-position:-120px -312px}.react-tel-input .tc{background-position:-144px -312px}.react-tel-input .td{background-position:-168px -312px}.react-tel-input .tf{background-position:-192px -312px}.react-tel-input .tg{background-position:-216px -312px}.react-tel-input .th{background-position:-240px -312px}.react-tel-input .tj{background-position:-264px -312px}.react-tel-input .tk{background-position:-288px -312px}.react-tel-input .tl{background-position:-312px -312px}.react-tel-input .tm{background-position:-336px -312px}.react-tel-input .tn{background-position:-360px -312px}.react-tel-input .to{background-position:-384px -312px}.react-tel-input .tr{background-position:0 -336px}.react-tel-input .tt{background-position:-24px -336px}.react-tel-input .tv{background-position:-48px -336px}.react-tel-input .tw{background-position:-72px -336px}.react-tel-input .tz{background-position:-96px -336px}.react-tel-input .ua{background-position:-120px -336px}.react-tel-input .ug{background-position:-144px -336px}.react-tel-input .us{background-position:-168px -336px}.react-tel-input .uy{background-position:-192px -336px}.react-tel-input .uz{background-position:-216px -336px}.react-tel-input .va{background-position:-240px -336px}.react-tel-input .vc{background-position:-264px -336px}.react-tel-input .ve{background-position:-288px -336px}.react-tel-input .vg{background-position:-312px -336px}.react-tel-input .vi{background-position:-336px -336px}.react-tel-input .vn{background-position:-360px -336px}.react-tel-input .vu{background-position:-384px -336px}.react-tel-input .wf{background-position:0 -360px}.react-tel-input .ws{background-position:-24px -360px}.react-tel-input .ye{background-position:-48px -360px}.react-tel-input .za{background-position:-96px -360px}.react-tel-input .zm{background-position:-120px -360px}.react-tel-input .zw{background-position:-144px -360px}.react-tel-input *{box-sizing:border-box;-moz-box-sizing:border-box}.react-tel-input .hide{display:none}.react-tel-input .v-hide{visibility:hidden}.react-tel-input .form-control{font-size:16px;background:#FFFFFF;border:1px solid #CACACA;border-radius:5px;width:300px;outline:none;padding:18.5px 14px 18.5px 58px;transition:box-shadow ease .25s,border-color ease .25s}.react-tel-input .form-control:hover{border-color:#000}.react-tel-input .form-control:focus{border-color:#1976d2;box-shadow:0 0 0 1px #1976d2}.react-tel-input .form-control:focus+div:before{color:#1976d2}.react-tel-input .form-control.invalid-number{border:1px solid #f44336}.react-tel-input .form-control.invalid-number:focus{box-shadow:0 0 0 1px #f44336}.react-tel-input .form-control.invalid-number+div:before{content:'Error';display:none;color:#f44336;width:27px}.react-tel-input .flag-dropdown{position:absolute;top:0;bottom:0;padding:0;border-radius:3px 0 0 3px}.react-tel-input .flag-dropdown:hover,.react-tel-input .flag-dropdown:focus{cursor:pointer}.react-tel-input .flag-dropdown.open{z-index:2}.react-tel-input input[disabled]+.flag-dropdown:hover{cursor:default;border-color:#CACACA}.react-tel-input input[disabled]+.flag-dropdown:hover .selected-flag{background-color:transparent}.react-tel-input .selected-flag{outline:none;position:relative;width:52px;height:100%;padding:0 0 0 11px;border-radius:3px 0 0 3px}.react-tel-input .selected-flag:focus .arrow{border-left-width:4px;border-right-width:4px;border-top:5px solid #1976d2}.react-tel-input .selected-flag .flag{position:absolute;top:50%;margin-top:-12px}.react-tel-input .selected-flag .arrow{position:relative;top:50%;margin-top:-1px;left:29px;width:0;height:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:4px solid #555}.react-tel-input .selected-flag .arrow.up{border-top:none;border-bottom:4px solid #555}.react-tel-input .country-list{outline:none;z-index:1;list-style:none;position:absolute;padding:0;margin:10px 0 10px -1px;box-shadow:1px 2px 18px rgba(0,0,0,0.25);background-color:white;width:300px;max-height:220px;overflow-y:scroll;border-radius:7px}.react-tel-input .country-list .flag{display:inline-block;position:absolute;left:13px;top:8px}.react-tel-input .country-list .divider{padding-bottom:5px;margin-bottom:5px;border-bottom:1px solid #ccc}.react-tel-input .country-list .country{position:relative;padding:12px 9px 13px 46px}.react-tel-input .country-list .country .dial-code{color:#6b6b6b}.react-tel-input .country-list .country:hover{background-color:#f1f1f1}.react-tel-input .country-list .country.highlight{background-color:#f1f1f1}.react-tel-input .country-list .flag{margin-right:7px;margin-top:2px}.react-tel-input .country-list .country-name{margin-right:6px}.react-tel-input .country-list .search{z-index:2;position:sticky;top:0;background-color:#fff;padding:10px 0 6px 10px}.react-tel-input .country-list .search-emoji{display:none;font-size:15px}.react-tel-input .country-list .search-box{border:1px solid #cacaca;border-radius:3px;font-size:15px;line-height:15px;margin-left:6px;padding:3px 8px 5px;outline:none}.react-tel-input .country-list .search-box:hover{border-color:#505050}.react-tel-input .country-list .no-entries-message{padding:7px 10px 11px;opacity:.7}.react-tel-input .invalid-number-message{position:absolute;z-index:1;font-size:13px;left:25px;top:-7px;background:#fff;padding:0 5px;color:#de0000}.react-tel-input .special-label{position:absolute;z-index:1;top:-7px;left:25px;display:block;background:white;padding:0 5px;font-size:13px;white-space:nowrap}.react-tel-input{font-family:'Roboto',sans-serif;font-size:15px;position:relative;width:100%}.react-tel-input :disabled{cursor:not-allowed}.react-tel-input .flag{width:16px;height:11px;background-image:url(data:image/png;base64,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)}.react-tel-input .ad{background-position:-16px 0}.react-tel-input .ae{background-position:-32px 0}.react-tel-input .af{background-position:-48px 0}.react-tel-input .ag{background-position:-64px 0}.react-tel-input .ai{background-position:-80px 0}.react-tel-input .al{background-position:-96px 0}.react-tel-input .am{background-position:-112px 0}.react-tel-input .ao{background-position:-128px 0}.react-tel-input .ar{background-position:-144px 0}.react-tel-input .as{background-position:-160px 0}.react-tel-input .at{background-position:-176px 0}.react-tel-input .au{background-position:-192px 0}.react-tel-input .aw{background-position:-208px 0}.react-tel-input .az{background-position:-224px 0}.react-tel-input .ba{background-position:-240px 0}.react-tel-input .bb{background-position:0 -11px}.react-tel-input .bd{background-position:-16px -11px}.react-tel-input .be{background-position:-32px -11px}.react-tel-input .bf{background-position:-48px -11px}.react-tel-input .bg{background-position:-64px -11px}.react-tel-input .bh{background-position:-80px -11px}.react-tel-input .bi{background-position:-96px -11px}.react-tel-input .bj{background-position:-112px -11px}.react-tel-input .bm{background-position:-128px -11px}.react-tel-input .bn{background-position:-144px -11px}.react-tel-input .bo{background-position:-160px -11px}.react-tel-input .br{background-position:-176px -11px}.react-tel-input .bs{background-position:-192px -11px}.react-tel-input .bt{background-position:-208px -11px}.react-tel-input .bw{background-position:-224px -11px}.react-tel-input .by{background-position:-240px -11px}.react-tel-input .bz{background-position:0 -22px}.react-tel-input .ca{background-position:-16px -22px}.react-tel-input .cd{background-position:-32px -22px}.react-tel-input .cf{background-position:-48px -22px}.react-tel-input .cg{background-position:-64px -22px}.react-tel-input .ch{background-position:-80px -22px}.react-tel-input .ci{background-position:-96px -22px}.react-tel-input .ck{background-position:-112px -22px}.react-tel-input .cl{background-position:-128px -22px}.react-tel-input .cm{background-position:-144px -22px}.react-tel-input .cn{background-position:-160px -22px}.react-tel-input .co{background-position:-176px -22px}.react-tel-input .cr{background-position:-192px -22px}.react-tel-input .cu{background-position:-208px -22px}.react-tel-input .cv{background-position:-224px -22px}.react-tel-input .cw{background-position:-240px -22px}.react-tel-input .cy{background-position:0 -33px}.react-tel-input .cz{background-position:-16px -33px}.react-tel-input .de{background-position:-32px -33px}.react-tel-input .dj{background-position:-48px -33px}.react-tel-input .dk{background-position:-64px -33px}.react-tel-input .dm{background-position:-80px -33px}.react-tel-input .do{background-position:-96px -33px}.react-tel-input .dz{background-position:-112px -33px}.react-tel-input .ec{background-position:-128px -33px}.react-tel-input .ee{background-position:-144px -33px}.react-tel-input .eg{background-position:-160px -33px}.react-tel-input .er{background-position:-176px -33px}.react-tel-input .es{background-position:-192px -33px}.react-tel-input .et{background-position:-208px -33px}.react-tel-input .fi{background-position:-224px -33px}.react-tel-input .fj{background-position:-240px -33px}.react-tel-input .fk{background-position:0 -44px}.react-tel-input .fm{background-position:-16px -44px}.react-tel-input .fo{background-position:-32px -44px}.react-tel-input .fr,.react-tel-input .bl,.react-tel-input .mf{background-position:-48px -44px}.react-tel-input .ga{background-position:-64px -44px}.react-tel-input .gb{background-position:-80px -44px}.react-tel-input .gd{background-position:-96px -44px}.react-tel-input .ge{background-position:-112px -44px}.react-tel-input .gf{background-position:-128px -44px}.react-tel-input .gh{background-position:-144px -44px}.react-tel-input .gi{background-position:-160px -44px}.react-tel-input .gl{background-position:-176px -44px}.react-tel-input .gm{background-position:-192px -44px}.react-tel-input .gn{background-position:-208px -44px}.react-tel-input .gp{background-position:-224px -44px}.react-tel-input .gq{background-position:-240px -44px}.react-tel-input .gr{background-position:0 -55px}.react-tel-input .gt{background-position:-16px -55px}.react-tel-input .gu{background-position:-32px -55px}.react-tel-input .gw{background-position:-48px -55px}.react-tel-input .gy{background-position:-64px -55px}.react-tel-input .hk{background-position:-80px -55px}.react-tel-input .hn{background-position:-96px -55px}.react-tel-input .hr{background-position:-112px -55px}.react-tel-input .ht{background-position:-128px -55px}.react-tel-input .hu{background-position:-144px -55px}.react-tel-input .id{background-position:-160px -55px}.react-tel-input .ie{background-position:-176px -55px}.react-tel-input .il{background-position:-192px -55px}.react-tel-input .in{background-position:-208px -55px}.react-tel-input .io{background-position:-224px -55px}.react-tel-input .iq{background-position:-240px -55px}.react-tel-input .ir{background-position:0 -66px}.react-tel-input .is{background-position:-16px -66px}.react-tel-input .it{background-position:-32px -66px}.react-tel-input .je{background-position:-144px -154px}.react-tel-input .jm{background-position:-48px -66px}.react-tel-input .jo{background-position:-64px -66px}.react-tel-input .jp{background-position:-80px -66px}.react-tel-input .ke{background-position:-96px -66px}.react-tel-input .kg{background-position:-112px -66px}.react-tel-input .kh{background-position:-128px -66px}.react-tel-input .ki{background-position:-144px -66px}.react-tel-input .xk{background-position:-128px -154px}.react-tel-input .km{background-position:-160px -66px}.react-tel-input .kn{background-position:-176px -66px}.react-tel-input .kp{background-position:-192px -66px}.react-tel-input .kr{background-position:-208px -66px}.react-tel-input .kw{background-position:-224px -66px}.react-tel-input .ky{background-position:-240px -66px}.react-tel-input .kz{background-position:0 -77px}.react-tel-input .la{background-position:-16px -77px}.react-tel-input .lb{background-position:-32px -77px}.react-tel-input .lc{background-position:-48px -77px}.react-tel-input .li{background-position:-64px -77px}.react-tel-input .lk{background-position:-80px -77px}.react-tel-input .lr{background-position:-96px -77px}.react-tel-input .ls{background-position:-112px -77px}.react-tel-input .lt{background-position:-128px -77px}.react-tel-input .lu{background-position:-144px -77px}.react-tel-input .lv{background-position:-160px -77px}.react-tel-input .ly{background-position:-176px -77px}.react-tel-input .ma{background-position:-192px -77px}.react-tel-input .mc{background-position:-208px -77px}.react-tel-input .md{background-position:-224px -77px}.react-tel-input .me{background-position:-112px -154px;height:12px}.react-tel-input .mg{background-position:0 -88px}.react-tel-input .mh{background-position:-16px -88px}.react-tel-input .mk{background-position:-32px -88px}.react-tel-input .ml{background-position:-48px -88px}.react-tel-input .mm{background-position:-64px -88px}.react-tel-input .mn{background-position:-80px -88px}.react-tel-input .mo{background-position:-96px -88px}.react-tel-input .mp{background-position:-112px -88px}.react-tel-input .mq{background-position:-128px -88px}.react-tel-input .mr{background-position:-144px -88px}.react-tel-input .ms{background-position:-160px -88px}.react-tel-input .mt{background-position:-176px -88px}.react-tel-input .mu{background-position:-192px -88px}.react-tel-input .mv{background-position:-208px -88px}.react-tel-input .mw{background-position:-224px -88px}.react-tel-input .mx{background-position:-240px -88px}.react-tel-input .my{background-position:0 -99px}.react-tel-input .mz{background-position:-16px -99px}.react-tel-input .na{background-position:-32px -99px}.react-tel-input .nc{background-position:-48px -99px}.react-tel-input .ne{background-position:-64px -99px}.react-tel-input .nf{background-position:-80px -99px}.react-tel-input .ng{background-position:-96px -99px}.react-tel-input .ni{background-position:-112px -99px}.react-tel-input .nl,.react-tel-input .bq{background-position:-128px -99px}.react-tel-input .no{background-position:-144px -99px}.react-tel-input .np{background-position:-160px -99px}.react-tel-input .nr{background-position:-176px -99px}.react-tel-input .nu{background-position:-192px -99px}.react-tel-input .nz{background-position:-208px -99px}.react-tel-input .om{background-position:-224px -99px}.react-tel-input .pa{background-position:-240px -99px}.react-tel-input .pe{background-position:0 -110px}.react-tel-input .pf{background-position:-16px -110px}.react-tel-input .pg{background-position:-32px -110px}.react-tel-input .ph{background-position:-48px -110px}.react-tel-input .pk{background-position:-64px -110px}.react-tel-input .pl{background-position:-80px -110px}.react-tel-input .pm{background-position:-96px -110px}.react-tel-input .pr{background-position:-112px -110px}.react-tel-input .ps{background-position:-128px -110px}.react-tel-input .pt{background-position:-144px -110px}.react-tel-input .pw{background-position:-160px -110px}.react-tel-input .py{background-position:-176px -110px}.react-tel-input .qa{background-position:-192px -110px}.react-tel-input .re{background-position:-208px -110px}.react-tel-input .ro{background-position:-224px -110px}.react-tel-input .rs{background-position:-240px -110px}.react-tel-input .ru{background-position:0 -121px}.react-tel-input .rw{background-position:-16px -121px}.react-tel-input .sa{background-position:-32px -121px}.react-tel-input .sb{background-position:-48px -121px}.react-tel-input .sc{background-position:-64px -121px}.react-tel-input .sd{background-position:-80px -121px}.react-tel-input .se{background-position:-96px -121px}.react-tel-input .sg{background-position:-112px -121px}.react-tel-input .sh{background-position:-128px -121px}.react-tel-input .si{background-position:-144px -121px}.react-tel-input .sk{background-position:-160px -121px}.react-tel-input .sl{background-position:-176px -121px}.react-tel-input .sm{background-position:-192px -121px}.react-tel-input .sn{background-position:-208px -121px}.react-tel-input .so{background-position:-224px -121px}.react-tel-input .sr{background-position:-240px -121px}.react-tel-input .ss{background-position:0 -132px}.react-tel-input .st{background-position:-16px -132px}.react-tel-input .sv{background-position:-32px -132px}.react-tel-input .sx{background-position:-48px -132px}.react-tel-input .sy{background-position:-64px -132px}.react-tel-input .sz{background-position:-80px -132px}.react-tel-input .tc{background-position:-96px -132px}.react-tel-input .td{background-position:-112px -132px}.react-tel-input .tg{background-position:-128px -132px}.react-tel-input .th{background-position:-144px -132px}.react-tel-input .tj{background-position:-160px -132px}.react-tel-input .tk{background-position:-176px -132px}.react-tel-input .tl{background-position:-192px -132px}.react-tel-input .tm{background-position:-208px -132px}.react-tel-input .tn{background-position:-224px -132px}.react-tel-input .to{background-position:-240px -132px}.react-tel-input .tr{background-position:0 -143px}.react-tel-input .tt{background-position:-16px -143px}.react-tel-input .tv{background-position:-32px -143px}.react-tel-input .tw{background-position:-48px -143px}.react-tel-input .tz{background-position:-64px -143px}.react-tel-input .ua{background-position:-80px -143px}.react-tel-input .ug{background-position:-96px -143px}.react-tel-input .us{background-position:-112px -143px}.react-tel-input .uy{background-position:-128px -143px}.react-tel-input .uz{background-position:-144px -143px}.react-tel-input .va{background-position:-160px -143px}.react-tel-input .vc{background-position:-176px -143px}.react-tel-input .ve{background-position:-192px -143px}.react-tel-input .vg{background-position:-208px -143px}.react-tel-input .vi{background-position:-224px -143px}.react-tel-input .vn{background-position:-240px -143px}.react-tel-input .vu{background-position:0 -154px}.react-tel-input .wf{background-position:-16px -154px}.react-tel-input .ws{background-position:-32px -154px}.react-tel-input .ye{background-position:-48px -154px}.react-tel-input .za{background-position:-64px -154px}.react-tel-input .zm{background-position:-80px -154px}.react-tel-input .zw{background-position:-96px -154px}.react-tel-input *{box-sizing:border-box;-moz-box-sizing:border-box}.react-tel-input .hide{display:none}.react-tel-input .v-hide{visibility:hidden}.react-tel-input .form-control{position:relative;font-size:14px;letter-spacing:.01rem;margin-top:0 !important;margin-bottom:0 !important;padding-left:48px;margin-left:0;background:#FFFFFF;border:1px solid #CACACA;border-radius:5px;line-height:25px;height:35px;width:300px;outline:none}.react-tel-input .form-control.invalid-number{border:1px solid #d79f9f;background-color:#FAF0F0;border-left-color:#cacaca}.react-tel-input .form-control.invalid-number:focus{border:1px solid #d79f9f;border-left-color:#cacaca;background-color:#FAF0F0}.react-tel-input .flag-dropdown{position:absolute;top:0;bottom:0;padding:0;background-color:#f5f5f5;border:1px solid #cacaca;border-radius:3px 0 0 3px}.react-tel-input .flag-dropdown:hover,.react-tel-input .flag-dropdown:focus{cursor:pointer}.react-tel-input .flag-dropdown.invalid-number{border-color:#d79f9f}.react-tel-input .flag-dropdown.open{z-index:2;background:#fff;border-radius:3px 0 0 0}.react-tel-input .flag-dropdown.open .selected-flag{background:#fff;border-radius:3px 0 0 0}.react-tel-input input[disabled]+.flag-dropdown:hover{cursor:default}.react-tel-input input[disabled]+.flag-dropdown:hover .selected-flag{background-color:transparent}.react-tel-input .selected-flag{outline:none;position:relative;width:38px;height:100%;padding:0 0 0 8px;border-radius:3px 0 0 3px}.react-tel-input .selected-flag:hover,.react-tel-input .selected-flag:focus{background-color:#fff}.react-tel-input .selected-flag .flag{position:absolute;top:50%;margin-top:-5px}.react-tel-input .selected-flag .arrow{position:relative;top:50%;margin-top:-2px;left:20px;width:0;height:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:4px solid #555}.react-tel-input .selected-flag .arrow.up{border-top:none;border-bottom:4px solid #555}.react-tel-input .country-list{outline:none;z-index:1;list-style:none;position:absolute;padding:0;margin:10px 0 10px -1px;box-shadow:1px 2px 10px rgba(0,0,0,0.35);background-color:white;width:300px;max-height:200px;overflow-y:scroll;border-radius:0 0 3px 3px}.react-tel-input .country-list .flag{display:inline-block}.react-tel-input .country-list .divider{padding-bottom:5px;margin-bottom:5px;border-bottom:1px solid #ccc}.react-tel-input .country-list .country{padding:7px 9px}.react-tel-input .country-list .country .dial-code{color:#6b6b6b}.react-tel-input .country-list .country:hover{background-color:#f1f1f1}.react-tel-input .country-list .country.highlight{background-color:#f1f1f1}.react-tel-input .country-list .flag{margin-right:7px;margin-top:2px}.react-tel-input .country-list .country-name{margin-right:6px}.react-tel-input .country-list .search{position:sticky;top:0;background-color:#fff;padding:10px 0 6px 10px}.react-tel-input .country-list .search-emoji{font-size:15px}.react-tel-input .country-list .search-box{border:1px solid #cacaca;border-radius:3px;font-size:15px;line-height:15px;margin-left:6px;padding:3px 8px 5px;outline:none}.react-tel-input .country-list .no-entries-message{padding:7px 10px 11px;opacity:.7}.react-tel-input .invalid-number-message{position:absolute;z-index:1;font-size:13px;left:46px;top:-8px;background:#fff;padding:0 2px;color:#de0000}.react-tel-input .special-label{display:none;position:absolute;z-index:1;font-size:13px;left:46px;top:-8px;background:#fff;padding:0 2px;white-space:nowrap}#slack_blocks_to_jsx .pointer-events-none{pointer-events:none}#slack_blocks_to_jsx .visible{visibility:visible}#slack_blocks_to_jsx .absolute{position:absolute}#slack_blocks_to_jsx .relative{position:relative}#slack_blocks_to_jsx .-left-3{left:-.75rem}#slack_blocks_to_jsx .-right-\[5px\]{right:-5px}#slack_blocks_to_jsx .-top-\[5px\]{top:-5px}#slack_blocks_to_jsx .left-2{left:.5rem}#slack_blocks_to_jsx .right-0{right:0}#slack_blocks_to_jsx .right-1{right:.25rem}#slack_blocks_to_jsx .top-0{top:0}#slack_blocks_to_jsx .top-1\/2{top:50%}#slack_blocks_to_jsx .top-2{top:.5rem}#slack_blocks_to_jsx .top-\[24px\]{top:24px}#slack_blocks_to_jsx .z-10{z-index:10}#slack_blocks_to_jsx .z-20{z-index:20}#slack_blocks_to_jsx .z-\[10\]{z-index:10}#slack_blocks_to_jsx .my-1{margin-bottom:.25rem;margin-top:.25rem}#slack_blocks_to_jsx .my-2{margin-bottom:.5rem;margin-top:.5rem}#slack_blocks_to_jsx .mb-1{margin-bottom:.25rem}#slack_blocks_to_jsx .mb-2{margin-bottom:.5rem}#slack_blocks_to_jsx .mb-\[5px\]{margin-bottom:5px}#slack_blocks_to_jsx .ml-2{margin-left:.5rem}#slack_blocks_to_jsx .mr-1{margin-right:.25rem}#slack_blocks_to_jsx .mr-2{margin-right:.5rem}#slack_blocks_to_jsx .mt-1{margin-top:.25rem}#slack_blocks_to_jsx .mt-2{margin-top:.5rem}#slack_blocks_to_jsx .block{display:block}#slack_blocks_to_jsx .inline-block{display:inline-block}#slack_blocks_to_jsx .inline{display:inline}#slack_blocks_to_jsx .flex{display:flex}#slack_blocks_to_jsx .table{display:table}#slack_blocks_to_jsx .grid{display:grid}#slack_blocks_to_jsx .aspect-video{aspect-ratio:16/9}#slack_blocks_to_jsx .h-1\.5{height:.375rem}#slack_blocks_to_jsx .h-2{height:.5rem}#slack_blocks_to_jsx .h-3{height:.75rem}#slack_blocks_to_jsx .h-5{height:1.25rem}#slack_blocks_to_jsx .h-7{height:1.75rem}#slack_blocks_to_jsx .h-9{height:2.25rem}#slack_blocks_to_jsx .h-\[10px\]{height:10px}#slack_blocks_to_jsx .h-\[14px\]{height:14px}#slack_blocks_to_jsx .h-\[15px\]{height:15px}#slack_blocks_to_jsx .h-\[20px\]{height:20px}#slack_blocks_to_jsx .h-\[22px\]{height:22px}#slack_blocks_to_jsx .h-\[28px\]{height:28px}#slack_blocks_to_jsx .h-\[88px\]{height:88px}#slack_blocks_to_jsx .h-\[9px\]{height:9px}#slack_blocks_to_jsx .h-full{height:100%}#slack_blocks_to_jsx .max-h-\[240px\]{max-height:240px}#slack_blocks_to_jsx .min-h-\[28px\]{min-height:28px}#slack_blocks_to_jsx .w-1{width:.25rem}#slack_blocks_to_jsx .w-1\.5{width:.375rem}#slack_blocks_to_jsx .w-3{width:.75rem}#slack_blocks_to_jsx .w-5{width:1.25rem}#slack_blocks_to_jsx .w-9{width:2.25rem}#slack_blocks_to_jsx .w-\[10px\]{width:10px}#slack_blocks_to_jsx .w-\[15px\]{width:15px}#slack_blocks_to_jsx .w-\[190px\]{width:190px}#slack_blocks_to_jsx .w-\[20px\]{width:20px}#slack_blocks_to_jsx .w-\[22px\]{width:22px}#slack_blocks_to_jsx .w-\[27px\]{width:27px}#slack_blocks_to_jsx .w-\[322px\]{width:322px}#slack_blocks_to_jsx .w-\[88px\]{width:88px}#slack_blocks_to_jsx .w-\[9px\]{width:9px}#slack_blocks_to_jsx .w-full{width:100%}#slack_blocks_to_jsx .min-w-\[56px\]{min-width:56px}#slack_blocks_to_jsx .max-w-\[322px\]{max-width:322px}#slack_blocks_to_jsx .max-w-\[360px\]{max-width:360px}#slack_blocks_to_jsx .max-w-\[600px\]{max-width:600px}#slack_blocks_to_jsx .max-w-max{max-width:-moz-max-content;max-width:max-content}#slack_blocks_to_jsx .shrink-0{flex-shrink:0}#slack_blocks_to_jsx .grow{flex-grow:1}#slack_blocks_to_jsx .-translate-y-1\/2{--tw-translate-y:-50%}#slack_blocks_to_jsx .-translate-y-1\/2,#slack_blocks_to_jsx .transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}#slack_blocks_to_jsx .cursor-pointer{cursor:pointer}#slack_blocks_to_jsx .select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}#slack_blocks_to_jsx .list-none{list-style-type:none}#slack_blocks_to_jsx .flex-col{flex-direction:column}#slack_blocks_to_jsx .flex-wrap{flex-wrap:wrap}#slack_blocks_to_jsx .items-center{align-items:center}#slack_blocks_to_jsx .items-baseline{align-items:baseline}#slack_blocks_to_jsx .justify-center{justify-content:center}#slack_blocks_to_jsx .justify-between{justify-content:space-between}#slack_blocks_to_jsx .gap-1{gap:.25rem}#slack_blocks_to_jsx .gap-2{gap:.5rem}#slack_blocks_to_jsx .gap-3{gap:.75rem}#slack_blocks_to_jsx .gap-\[5px\]{gap:5px}#slack_blocks_to_jsx .self-stretch{align-self:stretch}#slack_blocks_to_jsx .overflow-auto{overflow:auto}#slack_blocks_to_jsx .overflow-hidden{overflow:hidden}#slack_blocks_to_jsx .truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#slack_blocks_to_jsx .text-ellipsis{text-overflow:ellipsis}#slack_blocks_to_jsx .whitespace-nowrap{white-space:nowrap}#slack_blocks_to_jsx .whitespace-pre-wrap{white-space:pre-wrap}#slack_blocks_to_jsx .break-words{overflow-wrap:break-word}#slack_blocks_to_jsx .break-all{word-break:break-all}#slack_blocks_to_jsx .rounded{border-radius:.25rem}#slack_blocks_to_jsx .rounded-\[1\.5px\]{border-radius:1.5px}#slack_blocks_to_jsx .rounded-\[2px\]{border-radius:2px}#slack_blocks_to_jsx .rounded-\[6px\]{border-radius:6px}#slack_blocks_to_jsx .rounded-full{border-radius:9999px}#slack_blocks_to_jsx .rounded-lg{border-radius:.5rem}#slack_blocks_to_jsx .rounded-md{border-radius:.375rem}#slack_blocks_to_jsx .rounded-sm{border-radius:.125rem}#slack_blocks_to_jsx .border{border-width:1px}#slack_blocks_to_jsx .border-\[1\.5px\]{border-width:1.5px}#slack_blocks_to_jsx .border-b{border-bottom-width:1px}#slack_blocks_to_jsx .border-b-0{border-bottom-width:0}#slack_blocks_to_jsx .border-r{border-right-width:1px}#slack_blocks_to_jsx .border-solid{border-style:solid}#slack_blocks_to_jsx .border-none{border-style:none}#slack_blocks_to_jsx .border-black-primary\.3{border-color:rgba(29,28,29,.3)}#slack_blocks_to_jsx .border-black-secondary{--tw-border-opacity:1;border-color:rgb(97 96 97/var(--tw-border-opacity,1))}#slack_blocks_to_jsx .border-current{border-color:currentColor}#slack_blocks_to_jsx .border-gray-200{--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1))}#slack_blocks_to_jsx .border-gray-300{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity,1))}#slack_blocks_to_jsx .border-gray-primary{--tw-border-opacity:1;border-color:rgb(221 221 221/var(--tw-border-opacity,1))}#slack_blocks_to_jsx .bg-black-primary\/\[0\.13\]{background-color:rgba(29,28,29,.13)}#slack_blocks_to_jsx .bg-current{background-color:currentColor}#slack_blocks_to_jsx .bg-gray-100{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity,1))}#slack_blocks_to_jsx .bg-gray-300{--tw-bg-opacity:1;background-color:rgb(209 213 219/var(--tw-bg-opacity,1))}#slack_blocks_to_jsx .bg-gray-primary{--tw-bg-opacity:1;background-color:rgb(221 221 221/var(--tw-bg-opacity,1))}#slack_blocks_to_jsx .bg-gray-secondary{--tw-bg-opacity:1;background-color:rgb(246 246 246/var(--tw-bg-opacity,1))}#slack_blocks_to_jsx .bg-green-primary{--tw-bg-opacity:1;background-color:rgb(0 122 90/var(--tw-bg-opacity,1))}#slack_blocks_to_jsx .bg-green-secondary{--tw-bg-opacity:1;background-color:rgb(32 162 113/var(--tw-bg-opacity,1))}#slack_blocks_to_jsx .bg-red-primary{--tw-bg-opacity:1;background-color:rgb(224 30 90/var(--tw-bg-opacity,1))}#slack_blocks_to_jsx .bg-white-secondary{--tw-bg-opacity:1;background-color:rgb(248 248 248/var(--tw-bg-opacity,1))}#slack_blocks_to_jsx .object-cover{-o-object-fit:cover;object-fit:cover}#slack_blocks_to_jsx .p-2{padding:.5rem}#slack_blocks_to_jsx .px-2{padding-left:.5rem;padding-right:.5rem}#slack_blocks_to_jsx .px-3{padding-left:.75rem;padding-right:.75rem}#slack_blocks_to_jsx .px-6{padding-left:1.5rem;padding-right:1.5rem}#slack_blocks_to_jsx .px-\[3px\]{padding-left:3px;padding-right:3px}#slack_blocks_to_jsx .py-1{padding-bottom:.25rem;padding-top:.25rem}#slack_blocks_to_jsx .py-2{padding-bottom:.5rem;padding-top:.5rem}#slack_blocks_to_jsx .py-3{padding-bottom:.75rem;padding-top:.75rem}#slack_blocks_to_jsx .py-\[1px\]{padding-bottom:1px;padding-top:1px}#slack_blocks_to_jsx .pb-\[1px\]{padding-bottom:1px}#slack_blocks_to_jsx .pr-3{padding-right:.75rem}#slack_blocks_to_jsx .pr-7{padding-right:1.75rem}#slack_blocks_to_jsx .pt-0{padding-top:0}#slack_blocks_to_jsx .text-left{text-align:left}#slack_blocks_to_jsx .text-center{text-align:center}#slack_blocks_to_jsx .text-right{text-align:right}#slack_blocks_to_jsx .text-\[10px\]{font-size:10px}#slack_blocks_to_jsx .text-\[15px\]{font-size:15px}#slack_blocks_to_jsx .text-\[8px\]{font-size:8px}#slack_blocks_to_jsx .text-base{font-size:15px;line-height:1.46668}#slack_blocks_to_jsx .text-header{font-size:18px;line-height:1.33334}#slack_blocks_to_jsx .text-small{font-size:13px;line-height:1.38461538}#slack_blocks_to_jsx .text-xs{font-size:.75rem;line-height:1rem}#slack_blocks_to_jsx .font-black{font-weight:900}#slack_blocks_to_jsx .font-bold{font-weight:700}#slack_blocks_to_jsx .font-normal{font-weight:400}#slack_blocks_to_jsx .font-semibold{font-weight:600}#slack_blocks_to_jsx .uppercase{text-transform:uppercase}#slack_blocks_to_jsx .italic{font-style:italic}#slack_blocks_to_jsx .ordinal{--tw-ordinal:ordinal;font-variant-numeric:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)}#slack_blocks_to_jsx .leading-\[1\.50001\]{line-height:1.50001}#slack_blocks_to_jsx .leading-\[12\.5px\]{line-height:12.5px}#slack_blocks_to_jsx .leading-\[17\.6px\]{line-height:17.6px}#slack_blocks_to_jsx .leading-\[8px\]{line-height:8px}#slack_blocks_to_jsx .text-black-primary{--tw-text-opacity:1;color:rgb(29 28 29/var(--tw-text-opacity,1))}#slack_blocks_to_jsx .text-black-primary\.3{color:rgba(29,28,29,.3)}#slack_blocks_to_jsx .text-black-primary\/\[0\.7\]{color:rgba(29,28,29,.7)}#slack_blocks_to_jsx .text-black-secondary{--tw-text-opacity:1;color:rgb(97 96 97/var(--tw-text-opacity,1))}#slack_blocks_to_jsx .text-blue-500{--tw-text-opacity:1;color:rgb(59 130 246/var(--tw-text-opacity,1))}#slack_blocks_to_jsx .text-blue-primary{--tw-text-opacity:1;color:rgb(18 100 163/var(--tw-text-opacity,1))}#slack_blocks_to_jsx .text-white-primary{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}#slack_blocks_to_jsx .underline{text-decoration-line:underline}#slack_blocks_to_jsx .line-through{text-decoration-line:line-through}#slack_blocks_to_jsx .underline-offset-4{text-underline-offset:4px}#slack_blocks_to_jsx .shadow-custom_shadow-1{--tw-shadow-color:rgba(29,28,29,.13) 0px 0px 0px 1px,rgba(0,0,0,.12) 0px 5px 10px 0px;--tw-shadow:var(--tw-shadow-colored)}#slack_blocks_to_jsx .outline{outline-style:solid}#slack_blocks_to_jsx .ring{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}#slack_blocks_to_jsx .filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.slack_blocks_to_jsx.styles_enabled{font-family:Open Sans,sans-serif!important;white-space:pre-wrap!important}.slack_blocks_to_jsx.styles_enabled *,.slack_blocks_to_jsx.styles_enabled :after,.slack_blocks_to_jsx.styles_enabled :before{border:0 solid #e5e7eb;box-sizing:border-box}.slack_blocks_to_jsx.styles_enabled :after,.slack_blocks_to_jsx.styles_enabled :before{--tw-content:""}.slack_blocks_to_jsx.styles_enabled :host,.slack_blocks_to_jsx.styles_enabled html{line-height:1.5;-webkit-text-size-adjust:100%;font-feature-settings:normal;font-variation-settings:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent}.slack_blocks_to_jsx.styles_enabled body{line-height:inherit;margin:0}.slack_blocks_to_jsx.styles_enabled hr{border-top-width:1px;color:inherit;height:0}.slack_blocks_to_jsx.styles_enabled abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.slack_blocks_to_jsx.styles_enabled h1,.slack_blocks_to_jsx.styles_enabled h2,.slack_blocks_to_jsx.styles_enabled h3,.slack_blocks_to_jsx.styles_enabled h4,.slack_blocks_to_jsx.styles_enabled h5,.slack_blocks_to_jsx.styles_enabled h6{font-size:inherit;font-weight:inherit}.slack_blocks_to_jsx.styles_enabled a{color:inherit;text-decoration:inherit}.slack_blocks_to_jsx.styles_enabled b,.slack_blocks_to_jsx.styles_enabled strong{font-weight:bolder}.slack_blocks_to_jsx.styles_enabled code,.slack_blocks_to_jsx.styles_enabled kbd,.slack_blocks_to_jsx.styles_enabled pre,.slack_blocks_to_jsx.styles_enabled samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-size:1em;font-variation-settings:normal}.slack_blocks_to_jsx.styles_enabled small{font-size:80%}.slack_blocks_to_jsx.styles_enabled sub,.slack_blocks_to_jsx.styles_enabled sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}.slack_blocks_to_jsx.styles_enabled sub{bottom:-.25em}.slack_blocks_to_jsx.styles_enabled sup{top:-.5em}.slack_blocks_to_jsx.styles_enabled table{border-collapse:collapse;border-color:inherit;text-indent:0}.slack_blocks_to_jsx.styles_enabled button,.slack_blocks_to_jsx.styles_enabled input,.slack_blocks_to_jsx.styles_enabled optgroup,.slack_blocks_to_jsx.styles_enabled select,.slack_blocks_to_jsx.styles_enabled textarea{color:inherit;font-family:inherit;font-feature-settings:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;line-height:inherit;margin:0;padding:0}.slack_blocks_to_jsx.styles_enabled button,.slack_blocks_to_jsx.styles_enabled select{text-transform:none}.slack_blocks_to_jsx.styles_enabled [type=button],.slack_blocks_to_jsx.styles_enabled [type=reset],.slack_blocks_to_jsx.styles_enabled [type=submit],.slack_blocks_to_jsx.styles_enabled button{-webkit-appearance:button;background-color:initial;background-image:none}.slack_blocks_to_jsx.styles_enabled :-moz-focusring{outline:auto}.slack_blocks_to_jsx.styles_enabled :-moz-ui-invalid{box-shadow:none}.slack_blocks_to_jsx.styles_enabled progress{vertical-align:initial}.slack_blocks_to_jsx.styles_enabled ::-webkit-inner-spin-button,.slack_blocks_to_jsx.styles_enabled ::-webkit-outer-spin-button{height:auto}.slack_blocks_to_jsx.styles_enabled [type=search]{-webkit-appearance:textfield;outline-offset:-2px}.slack_blocks_to_jsx.styles_enabled ::-webkit-search-decoration{-webkit-appearance:none}.slack_blocks_to_jsx.styles_enabled ::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}.slack_blocks_to_jsx.styles_enabled summary{display:list-item}.slack_blocks_to_jsx.styles_enabled blockquote,.slack_blocks_to_jsx.styles_enabled dd,.slack_blocks_to_jsx.styles_enabled dl,.slack_blocks_to_jsx.styles_enabled fieldset,.slack_blocks_to_jsx.styles_enabled figure,.slack_blocks_to_jsx.styles_enabled h1,.slack_blocks_to_jsx.styles_enabled h2,.slack_blocks_to_jsx.styles_enabled h3,.slack_blocks_to_jsx.styles_enabled h4,.slack_blocks_to_jsx.styles_enabled h5,.slack_blocks_to_jsx.styles_enabled h6,.slack_blocks_to_jsx.styles_enabled hr,.slack_blocks_to_jsx.styles_enabled p,.slack_blocks_to_jsx.styles_enabled pre{margin:0}.slack_blocks_to_jsx.styles_enabled fieldset,.slack_blocks_to_jsx.styles_enabled legend{padding:0}.slack_blocks_to_jsx.styles_enabled menu,.slack_blocks_to_jsx.styles_enabled ol,.slack_blocks_to_jsx.styles_enabled ul{list-style:none;margin:0;padding:0}.slack_blocks_to_jsx.styles_enabled dialog{padding:0}.slack_blocks_to_jsx.styles_enabled textarea{resize:vertical}.slack_blocks_to_jsx.styles_enabled input::-moz-placeholder,.slack_blocks_to_jsx.styles_enabled textarea::-moz-placeholder{color:#9ca3af;opacity:1}.slack_blocks_to_jsx.styles_enabled input::placeholder,.slack_blocks_to_jsx.styles_enabled textarea::placeholder{color:#9ca3af;opacity:1}.slack_blocks_to_jsx.styles_enabled [role=button],.slack_blocks_to_jsx.styles_enabled button{cursor:pointer}.slack_blocks_to_jsx.styles_enabled :disabled{cursor:default}.slack_blocks_to_jsx.styles_enabled audio,.slack_blocks_to_jsx.styles_enabled canvas,.slack_blocks_to_jsx.styles_enabled embed,.slack_blocks_to_jsx.styles_enabled iframe,.slack_blocks_to_jsx.styles_enabled img,.slack_blocks_to_jsx.styles_enabled object,.slack_blocks_to_jsx.styles_enabled svg,.slack_blocks_to_jsx.styles_enabled video{display:block;vertical-align:middle}.slack_blocks_to_jsx.styles_enabled img,.slack_blocks_to_jsx.styles_enabled video{height:auto;max-width:100%}.slack_blocks_to_jsx.styles_enabled [hidden]{display:none}.slack_blocks_to_jsx.styles_enabled *,.slack_blocks_to_jsx.styles_enabled ::backdrop,.slack_blocks_to_jsx.styles_enabled :after,.slack_blocks_to_jsx.styles_enabled :before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#3b82f680;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.slack_blocks_to_jsx.styles_enabled .slack_code_inline{display:inline-block;padding-left:.25rem;padding-right:.25rem;--tw-text-opacity:1;color:rgb(224 30 90/var(--tw-text-opacity,1))}.slack_blocks_to_jsx.styles_enabled .slack_code,.slack_blocks_to_jsx.styles_enabled .slack_code_inline{background-color:rgba(29,28,29,.04);border-color:rgba(29,28,29,.13);border-radius:3px;border-width:1px;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:.75rem;line-height:1rem;overflow-wrap:break-word;white-space:pre-wrap}.slack_blocks_to_jsx.styles_enabled .slack_code{display:block;margin-bottom:.25rem;margin-top:.25rem;padding:.5rem;width:100%}.slack_blocks_to_jsx.styles_enabled .slack_inline_code{background-color:rgba(29,28,29,.04);border-color:rgba(29,28,29,.13);border-radius:3px;border-width:1px;display:inline-block;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:.75rem;line-height:1rem;overflow-wrap:break-word;padding:.125rem 3px 1px;white-space:pre-wrap;--tw-text-opacity:1;color:rgb(224 30 90/var(--tw-text-opacity,1))}.slack_blocks_to_jsx.styles_enabled .slack_bold,.slack_blocks_to_jsx.styles_enabled .slack_bold code{font-weight:600}.slack_blocks_to_jsx.styles_enabled .slack_blockquote{display:block}.slack_blocks_to_jsx.styles_enabled .slack_inline_blockquote{display:inline-block}.slack_blocks_to_jsx.styles_enabled blockquote{padding-left:16px;position:relative}.slack_blocks_to_jsx.styles_enabled blockquote:before{background:#ddd;border-radius:8px;bottom:0;content:"";display:block;left:0;position:absolute;top:0;width:4px}.slack_blocks_to_jsx.styles_enabled .slack_channel,.slack_blocks_to_jsx.styles_enabled .slack_user,.slack_blocks_to_jsx.styles_enabled .slack_user_group{background:rgba(29,155,209,.1);color:#1264a3;-webkit-user-select:none;-moz-user-select:none;user-select:none}.slack_blocks_to_jsx.styles_enabled .slack_broadcast{background:rgba(255,198,0,.18);color:#1d1c1d;font-weight:600}.slack_blocks_to_jsx.styles_enabled .slack_blocks_to_jsx__line_break,.slack_blocks_to_jsx.styles_enabled .slack_blocks_to_jsx__line_break_not_first{display:block}.slack_blocks_to_jsx.styles_enabled .slack_link{color:#1264a3}.slack_blocks_to_jsx.styles_disabled>*{all:unset!important}#slack_blocks_to_jsx .last\:border-r-0:last-child{border-right-width:0}#slack_blocks_to_jsx .hover\:bg-blue-primary:hover{--tw-bg-opacity:1;background-color:rgb(18 100 163/var(--tw-bg-opacity,1))}#slack_blocks_to_jsx .hover\:text-white-primary:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}#slack_blocks_to_jsx .hover\:underline:hover{text-decoration-line:underline}#slack_blocks_to_jsx .focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}#slack_blocks_to_jsx :is(.group:hover .group-hover\:border-white-primary){--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity,1))}#slack_blocks_to_jsx :is(.group:hover .group-hover\:bg-blue-primary){--tw-bg-opacity:1;background-color:rgb(18 100 163/var(--tw-bg-opacity,1))}#slack_blocks_to_jsx :is(.group:hover .group-hover\:text-white-primary){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url(/bundles/fontawesome-webfont.eot);
  src: url(/bundles/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'), url(/bundles/fontawesome-webfont.woff2) format('woff2'), url(/bundles/fontawesome-webfont.woff) format('woff'), url(/bundles/fontawesome-webfont.ttf) format('truetype'), url(/bundles/912ec66d7572ff821749319396470bde.svg#fontawesomeregular) format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\F000";
}
.fa-music:before {
  content: "\F001";
}
.fa-search:before {
  content: "\F002";
}
.fa-envelope-o:before {
  content: "\F003";
}
.fa-heart:before {
  content: "\F004";
}
.fa-star:before {
  content: "\F005";
}
.fa-star-o:before {
  content: "\F006";
}
.fa-user:before {
  content: "\F007";
}
.fa-film:before {
  content: "\F008";
}
.fa-th-large:before {
  content: "\F009";
}
.fa-th:before {
  content: "\F00A";
}
.fa-th-list:before {
  content: "\F00B";
}
.fa-check:before {
  content: "\F00C";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\F00D";
}
.fa-search-plus:before {
  content: "\F00E";
}
.fa-search-minus:before {
  content: "\F010";
}
.fa-power-off:before {
  content: "\F011";
}
.fa-signal:before {
  content: "\F012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\F013";
}
.fa-trash-o:before {
  content: "\F014";
}
.fa-home:before {
  content: "\F015";
}
.fa-file-o:before {
  content: "\F016";
}
.fa-clock-o:before {
  content: "\F017";
}
.fa-road:before {
  content: "\F018";
}
.fa-download:before {
  content: "\F019";
}
.fa-arrow-circle-o-down:before {
  content: "\F01A";
}
.fa-arrow-circle-o-up:before {
  content: "\F01B";
}
.fa-inbox:before {
  content: "\F01C";
}
.fa-play-circle-o:before {
  content: "\F01D";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\F01E";
}
.fa-refresh:before {
  content: "\F021";
}
.fa-list-alt:before {
  content: "\F022";
}
.fa-lock:before {
  content: "\F023";
}
.fa-flag:before {
  content: "\F024";
}
.fa-headphones:before {
  content: "\F025";
}
.fa-volume-off:before {
  content: "\F026";
}
.fa-volume-down:before {
  content: "\F027";
}
.fa-volume-up:before {
  content: "\F028";
}
.fa-qrcode:before {
  content: "\F029";
}
.fa-barcode:before {
  content: "\F02A";
}
.fa-tag:before {
  content: "\F02B";
}
.fa-tags:before {
  content: "\F02C";
}
.fa-book:before {
  content: "\F02D";
}
.fa-bookmark:before {
  content: "\F02E";
}
.fa-print:before {
  content: "\F02F";
}
.fa-camera:before {
  content: "\F030";
}
.fa-font:before {
  content: "\F031";
}
.fa-bold:before {
  content: "\F032";
}
.fa-italic:before {
  content: "\F033";
}
.fa-text-height:before {
  content: "\F034";
}
.fa-text-width:before {
  content: "\F035";
}
.fa-align-left:before {
  content: "\F036";
}
.fa-align-center:before {
  content: "\F037";
}
.fa-align-right:before {
  content: "\F038";
}
.fa-align-justify:before {
  content: "\F039";
}
.fa-list:before {
  content: "\F03A";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\F03B";
}
.fa-indent:before {
  content: "\F03C";
}
.fa-video-camera:before {
  content: "\F03D";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\F03E";
}
.fa-pencil:before {
  content: "\F040";
}
.fa-map-marker:before {
  content: "\F041";
}
.fa-adjust:before {
  content: "\F042";
}
.fa-tint:before {
  content: "\F043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\F044";
}
.fa-share-square-o:before {
  content: "\F045";
}
.fa-check-square-o:before {
  content: "\F046";
}
.fa-arrows:before {
  content: "\F047";
}
.fa-step-backward:before {
  content: "\F048";
}
.fa-fast-backward:before {
  content: "\F049";
}
.fa-backward:before {
  content: "\F04A";
}
.fa-play:before {
  content: "\F04B";
}
.fa-pause:before {
  content: "\F04C";
}
.fa-stop:before {
  content: "\F04D";
}
.fa-forward:before {
  content: "\F04E";
}
.fa-fast-forward:before {
  content: "\F050";
}
.fa-step-forward:before {
  content: "\F051";
}
.fa-eject:before {
  content: "\F052";
}
.fa-chevron-left:before {
  content: "\F053";
}
.fa-chevron-right:before {
  content: "\F054";
}
.fa-plus-circle:before {
  content: "\F055";
}
.fa-minus-circle:before {
  content: "\F056";
}
.fa-times-circle:before {
  content: "\F057";
}
.fa-check-circle:before {
  content: "\F058";
}
.fa-question-circle:before {
  content: "\F059";
}
.fa-info-circle:before {
  content: "\F05A";
}
.fa-crosshairs:before {
  content: "\F05B";
}
.fa-times-circle-o:before {
  content: "\F05C";
}
.fa-check-circle-o:before {
  content: "\F05D";
}
.fa-ban:before {
  content: "\F05E";
}
.fa-arrow-left:before {
  content: "\F060";
}
.fa-arrow-right:before {
  content: "\F061";
}
.fa-arrow-up:before {
  content: "\F062";
}
.fa-arrow-down:before {
  content: "\F063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\F064";
}
.fa-expand:before {
  content: "\F065";
}
.fa-compress:before {
  content: "\F066";
}
.fa-plus:before {
  content: "\F067";
}
.fa-minus:before {
  content: "\F068";
}
.fa-asterisk:before {
  content: "\F069";
}
.fa-exclamation-circle:before {
  content: "\F06A";
}
.fa-gift:before {
  content: "\F06B";
}
.fa-leaf:before {
  content: "\F06C";
}
.fa-fire:before {
  content: "\F06D";
}
.fa-eye:before {
  content: "\F06E";
}
.fa-eye-slash:before {
  content: "\F070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\F071";
}
.fa-plane:before {
  content: "\F072";
}
.fa-calendar:before {
  content: "\F073";
}
.fa-random:before {
  content: "\F074";
}
.fa-comment:before {
  content: "\F075";
}
.fa-magnet:before {
  content: "\F076";
}
.fa-chevron-up:before {
  content: "\F077";
}
.fa-chevron-down:before {
  content: "\F078";
}
.fa-retweet:before {
  content: "\F079";
}
.fa-shopping-cart:before {
  content: "\F07A";
}
.fa-folder:before {
  content: "\F07B";
}
.fa-folder-open:before {
  content: "\F07C";
}
.fa-arrows-v:before {
  content: "\F07D";
}
.fa-arrows-h:before {
  content: "\F07E";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\F080";
}
.fa-twitter-square:before {
  content: "\F081";
}
.fa-facebook-square:before {
  content: "\F082";
}
.fa-camera-retro:before {
  content: "\F083";
}
.fa-key:before {
  content: "\F084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\F085";
}
.fa-comments:before {
  content: "\F086";
}
.fa-thumbs-o-up:before {
  content: "\F087";
}
.fa-thumbs-o-down:before {
  content: "\F088";
}
.fa-star-half:before {
  content: "\F089";
}
.fa-heart-o:before {
  content: "\F08A";
}
.fa-sign-out:before {
  content: "\F08B";
}
.fa-linkedin-square:before {
  content: "\F08C";
}
.fa-thumb-tack:before {
  content: "\F08D";
}
.fa-external-link:before {
  content: "\F08E";
}
.fa-sign-in:before {
  content: "\F090";
}
.fa-trophy:before {
  content: "\F091";
}
.fa-github-square:before {
  content: "\F092";
}
.fa-upload:before {
  content: "\F093";
}
.fa-lemon-o:before {
  content: "\F094";
}
.fa-phone:before {
  content: "\F095";
}
.fa-square-o:before {
  content: "\F096";
}
.fa-bookmark-o:before {
  content: "\F097";
}
.fa-phone-square:before {
  content: "\F098";
}
.fa-twitter:before {
  content: "\F099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\F09A";
}
.fa-github:before {
  content: "\F09B";
}
.fa-unlock:before {
  content: "\F09C";
}
.fa-credit-card:before {
  content: "\F09D";
}
.fa-feed:before,
.fa-rss:before {
  content: "\F09E";
}
.fa-hdd-o:before {
  content: "\F0A0";
}
.fa-bullhorn:before {
  content: "\F0A1";
}
.fa-bell:before {
  content: "\F0F3";
}
.fa-certificate:before {
  content: "\F0A3";
}
.fa-hand-o-right:before {
  content: "\F0A4";
}
.fa-hand-o-left:before {
  content: "\F0A5";
}
.fa-hand-o-up:before {
  content: "\F0A6";
}
.fa-hand-o-down:before {
  content: "\F0A7";
}
.fa-arrow-circle-left:before {
  content: "\F0A8";
}
.fa-arrow-circle-right:before {
  content: "\F0A9";
}
.fa-arrow-circle-up:before {
  content: "\F0AA";
}
.fa-arrow-circle-down:before {
  content: "\F0AB";
}
.fa-globe:before {
  content: "\F0AC";
}
.fa-wrench:before {
  content: "\F0AD";
}
.fa-tasks:before {
  content: "\F0AE";
}
.fa-filter:before {
  content: "\F0B0";
}
.fa-briefcase:before {
  content: "\F0B1";
}
.fa-arrows-alt:before {
  content: "\F0B2";
}
.fa-group:before,
.fa-users:before {
  content: "\F0C0";
}
.fa-chain:before,
.fa-link:before {
  content: "\F0C1";
}
.fa-cloud:before {
  content: "\F0C2";
}
.fa-flask:before {
  content: "\F0C3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\F0C4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\F0C5";
}
.fa-paperclip:before {
  content: "\F0C6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\F0C7";
}
.fa-square:before {
  content: "\F0C8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\F0C9";
}
.fa-list-ul:before {
  content: "\F0CA";
}
.fa-list-ol:before {
  content: "\F0CB";
}
.fa-strikethrough:before {
  content: "\F0CC";
}
.fa-underline:before {
  content: "\F0CD";
}
.fa-table:before {
  content: "\F0CE";
}
.fa-magic:before {
  content: "\F0D0";
}
.fa-truck:before {
  content: "\F0D1";
}
.fa-pinterest:before {
  content: "\F0D2";
}
.fa-pinterest-square:before {
  content: "\F0D3";
}
.fa-google-plus-square:before {
  content: "\F0D4";
}
.fa-google-plus:before {
  content: "\F0D5";
}
.fa-money:before {
  content: "\F0D6";
}
.fa-caret-down:before {
  content: "\F0D7";
}
.fa-caret-up:before {
  content: "\F0D8";
}
.fa-caret-left:before {
  content: "\F0D9";
}
.fa-caret-right:before {
  content: "\F0DA";
}
.fa-columns:before {
  content: "\F0DB";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\F0DC";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\F0DD";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\F0DE";
}
.fa-envelope:before {
  content: "\F0E0";
}
.fa-linkedin:before {
  content: "\F0E1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\F0E2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\F0E3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\F0E4";
}
.fa-comment-o:before {
  content: "\F0E5";
}
.fa-comments-o:before {
  content: "\F0E6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\F0E7";
}
.fa-sitemap:before {
  content: "\F0E8";
}
.fa-umbrella:before {
  content: "\F0E9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\F0EA";
}
.fa-lightbulb-o:before {
  content: "\F0EB";
}
.fa-exchange:before {
  content: "\F0EC";
}
.fa-cloud-download:before {
  content: "\F0ED";
}
.fa-cloud-upload:before {
  content: "\F0EE";
}
.fa-user-md:before {
  content: "\F0F0";
}
.fa-stethoscope:before {
  content: "\F0F1";
}
.fa-suitcase:before {
  content: "\F0F2";
}
.fa-bell-o:before {
  content: "\F0A2";
}
.fa-coffee:before {
  content: "\F0F4";
}
.fa-cutlery:before {
  content: "\F0F5";
}
.fa-file-text-o:before {
  content: "\F0F6";
}
.fa-building-o:before {
  content: "\F0F7";
}
.fa-hospital-o:before {
  content: "\F0F8";
}
.fa-ambulance:before {
  content: "\F0F9";
}
.fa-medkit:before {
  content: "\F0FA";
}
.fa-fighter-jet:before {
  content: "\F0FB";
}
.fa-beer:before {
  content: "\F0FC";
}
.fa-h-square:before {
  content: "\F0FD";
}
.fa-plus-square:before {
  content: "\F0FE";
}
.fa-angle-double-left:before {
  content: "\F100";
}
.fa-angle-double-right:before {
  content: "\F101";
}
.fa-angle-double-up:before {
  content: "\F102";
}
.fa-angle-double-down:before {
  content: "\F103";
}
.fa-angle-left:before {
  content: "\F104";
}
.fa-angle-right:before {
  content: "\F105";
}
.fa-angle-up:before {
  content: "\F106";
}
.fa-angle-down:before {
  content: "\F107";
}
.fa-desktop:before {
  content: "\F108";
}
.fa-laptop:before {
  content: "\F109";
}
.fa-tablet:before {
  content: "\F10A";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\F10B";
}
.fa-circle-o:before {
  content: "\F10C";
}
.fa-quote-left:before {
  content: "\F10D";
}
.fa-quote-right:before {
  content: "\F10E";
}
.fa-spinner:before {
  content: "\F110";
}
.fa-circle:before {
  content: "\F111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\F112";
}
.fa-github-alt:before {
  content: "\F113";
}
.fa-folder-o:before {
  content: "\F114";
}
.fa-folder-open-o:before {
  content: "\F115";
}
.fa-smile-o:before {
  content: "\F118";
}
.fa-frown-o:before {
  content: "\F119";
}
.fa-meh-o:before {
  content: "\F11A";
}
.fa-gamepad:before {
  content: "\F11B";
}
.fa-keyboard-o:before {
  content: "\F11C";
}
.fa-flag-o:before {
  content: "\F11D";
}
.fa-flag-checkered:before {
  content: "\F11E";
}
.fa-terminal:before {
  content: "\F120";
}
.fa-code:before {
  content: "\F121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\F122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\F123";
}
.fa-location-arrow:before {
  content: "\F124";
}
.fa-crop:before {
  content: "\F125";
}
.fa-code-fork:before {
  content: "\F126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\F127";
}
.fa-question:before {
  content: "\F128";
}
.fa-info:before {
  content: "\F129";
}
.fa-exclamation:before {
  content: "\F12A";
}
.fa-superscript:before {
  content: "\F12B";
}
.fa-subscript:before {
  content: "\F12C";
}
.fa-eraser:before {
  content: "\F12D";
}
.fa-puzzle-piece:before {
  content: "\F12E";
}
.fa-microphone:before {
  content: "\F130";
}
.fa-microphone-slash:before {
  content: "\F131";
}
.fa-shield:before {
  content: "\F132";
}
.fa-calendar-o:before {
  content: "\F133";
}
.fa-fire-extinguisher:before {
  content: "\F134";
}
.fa-rocket:before {
  content: "\F135";
}
.fa-maxcdn:before {
  content: "\F136";
}
.fa-chevron-circle-left:before {
  content: "\F137";
}
.fa-chevron-circle-right:before {
  content: "\F138";
}
.fa-chevron-circle-up:before {
  content: "\F139";
}
.fa-chevron-circle-down:before {
  content: "\F13A";
}
.fa-html5:before {
  content: "\F13B";
}
.fa-css3:before {
  content: "\F13C";
}
.fa-anchor:before {
  content: "\F13D";
}
.fa-unlock-alt:before {
  content: "\F13E";
}
.fa-bullseye:before {
  content: "\F140";
}
.fa-ellipsis-h:before {
  content: "\F141";
}
.fa-ellipsis-v:before {
  content: "\F142";
}
.fa-rss-square:before {
  content: "\F143";
}
.fa-play-circle:before {
  content: "\F144";
}
.fa-ticket:before {
  content: "\F145";
}
.fa-minus-square:before {
  content: "\F146";
}
.fa-minus-square-o:before {
  content: "\F147";
}
.fa-level-up:before {
  content: "\F148";
}
.fa-level-down:before {
  content: "\F149";
}
.fa-check-square:before {
  content: "\F14A";
}
.fa-pencil-square:before {
  content: "\F14B";
}
.fa-external-link-square:before {
  content: "\F14C";
}
.fa-share-square:before {
  content: "\F14D";
}
.fa-compass:before {
  content: "\F14E";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\F150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\F151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\F152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\F153";
}
.fa-gbp:before {
  content: "\F154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\F155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\F156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\F157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\F158";
}
.fa-won:before,
.fa-krw:before {
  content: "\F159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\F15A";
}
.fa-file:before {
  content: "\F15B";
}
.fa-file-text:before {
  content: "\F15C";
}
.fa-sort-alpha-asc:before {
  content: "\F15D";
}
.fa-sort-alpha-desc:before {
  content: "\F15E";
}
.fa-sort-amount-asc:before {
  content: "\F160";
}
.fa-sort-amount-desc:before {
  content: "\F161";
}
.fa-sort-numeric-asc:before {
  content: "\F162";
}
.fa-sort-numeric-desc:before {
  content: "\F163";
}
.fa-thumbs-up:before {
  content: "\F164";
}
.fa-thumbs-down:before {
  content: "\F165";
}
.fa-youtube-square:before {
  content: "\F166";
}
.fa-youtube:before {
  content: "\F167";
}
.fa-xing:before {
  content: "\F168";
}
.fa-xing-square:before {
  content: "\F169";
}
.fa-youtube-play:before {
  content: "\F16A";
}
.fa-dropbox:before {
  content: "\F16B";
}
.fa-stack-overflow:before {
  content: "\F16C";
}
.fa-instagram:before {
  content: "\F16D";
}
.fa-flickr:before {
  content: "\F16E";
}
.fa-adn:before {
  content: "\F170";
}
.fa-bitbucket:before {
  content: "\F171";
}
.fa-bitbucket-square:before {
  content: "\F172";
}
.fa-tumblr:before {
  content: "\F173";
}
.fa-tumblr-square:before {
  content: "\F174";
}
.fa-long-arrow-down:before {
  content: "\F175";
}
.fa-long-arrow-up:before {
  content: "\F176";
}
.fa-long-arrow-left:before {
  content: "\F177";
}
.fa-long-arrow-right:before {
  content: "\F178";
}
.fa-apple:before {
  content: "\F179";
}
.fa-windows:before {
  content: "\F17A";
}
.fa-android:before {
  content: "\F17B";
}
.fa-linux:before {
  content: "\F17C";
}
.fa-dribbble:before {
  content: "\F17D";
}
.fa-skype:before {
  content: "\F17E";
}
.fa-foursquare:before {
  content: "\F180";
}
.fa-trello:before {
  content: "\F181";
}
.fa-female:before {
  content: "\F182";
}
.fa-male:before {
  content: "\F183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\F184";
}
.fa-sun-o:before {
  content: "\F185";
}
.fa-moon-o:before {
  content: "\F186";
}
.fa-archive:before {
  content: "\F187";
}
.fa-bug:before {
  content: "\F188";
}
.fa-vk:before {
  content: "\F189";
}
.fa-weibo:before {
  content: "\F18A";
}
.fa-renren:before {
  content: "\F18B";
}
.fa-pagelines:before {
  content: "\F18C";
}
.fa-stack-exchange:before {
  content: "\F18D";
}
.fa-arrow-circle-o-right:before {
  content: "\F18E";
}
.fa-arrow-circle-o-left:before {
  content: "\F190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\F191";
}
.fa-dot-circle-o:before {
  content: "\F192";
}
.fa-wheelchair:before {
  content: "\F193";
}
.fa-vimeo-square:before {
  content: "\F194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\F195";
}
.fa-plus-square-o:before {
  content: "\F196";
}
.fa-space-shuttle:before {
  content: "\F197";
}
.fa-slack:before {
  content: "\F198";
}
.fa-envelope-square:before {
  content: "\F199";
}
.fa-wordpress:before {
  content: "\F19A";
}
.fa-openid:before {
  content: "\F19B";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\F19C";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\F19D";
}
.fa-yahoo:before {
  content: "\F19E";
}
.fa-google:before {
  content: "\F1A0";
}
.fa-reddit:before {
  content: "\F1A1";
}
.fa-reddit-square:before {
  content: "\F1A2";
}
.fa-stumbleupon-circle:before {
  content: "\F1A3";
}
.fa-stumbleupon:before {
  content: "\F1A4";
}
.fa-delicious:before {
  content: "\F1A5";
}
.fa-digg:before {
  content: "\F1A6";
}
.fa-pied-piper-pp:before {
  content: "\F1A7";
}
.fa-pied-piper-alt:before {
  content: "\F1A8";
}
.fa-drupal:before {
  content: "\F1A9";
}
.fa-joomla:before {
  content: "\F1AA";
}
.fa-language:before {
  content: "\F1AB";
}
.fa-fax:before {
  content: "\F1AC";
}
.fa-building:before {
  content: "\F1AD";
}
.fa-child:before {
  content: "\F1AE";
}
.fa-paw:before {
  content: "\F1B0";
}
.fa-spoon:before {
  content: "\F1B1";
}
.fa-cube:before {
  content: "\F1B2";
}
.fa-cubes:before {
  content: "\F1B3";
}
.fa-behance:before {
  content: "\F1B4";
}
.fa-behance-square:before {
  content: "\F1B5";
}
.fa-steam:before {
  content: "\F1B6";
}
.fa-steam-square:before {
  content: "\F1B7";
}
.fa-recycle:before {
  content: "\F1B8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\F1B9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\F1BA";
}
.fa-tree:before {
  content: "\F1BB";
}
.fa-spotify:before {
  content: "\F1BC";
}
.fa-deviantart:before {
  content: "\F1BD";
}
.fa-soundcloud:before {
  content: "\F1BE";
}
.fa-database:before {
  content: "\F1C0";
}
.fa-file-pdf-o:before {
  content: "\F1C1";
}
.fa-file-word-o:before {
  content: "\F1C2";
}
.fa-file-excel-o:before {
  content: "\F1C3";
}
.fa-file-powerpoint-o:before {
  content: "\F1C4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\F1C5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\F1C6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\F1C7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\F1C8";
}
.fa-file-code-o:before {
  content: "\F1C9";
}
.fa-vine:before {
  content: "\F1CA";
}
.fa-codepen:before {
  content: "\F1CB";
}
.fa-jsfiddle:before {
  content: "\F1CC";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\F1CD";
}
.fa-circle-o-notch:before {
  content: "\F1CE";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\F1D0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\F1D1";
}
.fa-git-square:before {
  content: "\F1D2";
}
.fa-git:before {
  content: "\F1D3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\F1D4";
}
.fa-tencent-weibo:before {
  content: "\F1D5";
}
.fa-qq:before {
  content: "\F1D6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\F1D7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\F1D8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\F1D9";
}
.fa-history:before {
  content: "\F1DA";
}
.fa-circle-thin:before {
  content: "\F1DB";
}
.fa-header:before {
  content: "\F1DC";
}
.fa-paragraph:before {
  content: "\F1DD";
}
.fa-sliders:before {
  content: "\F1DE";
}
.fa-share-alt:before {
  content: "\F1E0";
}
.fa-share-alt-square:before {
  content: "\F1E1";
}
.fa-bomb:before {
  content: "\F1E2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\F1E3";
}
.fa-tty:before {
  content: "\F1E4";
}
.fa-binoculars:before {
  content: "\F1E5";
}
.fa-plug:before {
  content: "\F1E6";
}
.fa-slideshare:before {
  content: "\F1E7";
}
.fa-twitch:before {
  content: "\F1E8";
}
.fa-yelp:before {
  content: "\F1E9";
}
.fa-newspaper-o:before {
  content: "\F1EA";
}
.fa-wifi:before {
  content: "\F1EB";
}
.fa-calculator:before {
  content: "\F1EC";
}
.fa-paypal:before {
  content: "\F1ED";
}
.fa-google-wallet:before {
  content: "\F1EE";
}
.fa-cc-visa:before {
  content: "\F1F0";
}
.fa-cc-mastercard:before {
  content: "\F1F1";
}
.fa-cc-discover:before {
  content: "\F1F2";
}
.fa-cc-amex:before {
  content: "\F1F3";
}
.fa-cc-paypal:before {
  content: "\F1F4";
}
.fa-cc-stripe:before {
  content: "\F1F5";
}
.fa-bell-slash:before {
  content: "\F1F6";
}
.fa-bell-slash-o:before {
  content: "\F1F7";
}
.fa-trash:before {
  content: "\F1F8";
}
.fa-copyright:before {
  content: "\F1F9";
}
.fa-at:before {
  content: "\F1FA";
}
.fa-eyedropper:before {
  content: "\F1FB";
}
.fa-paint-brush:before {
  content: "\F1FC";
}
.fa-birthday-cake:before {
  content: "\F1FD";
}
.fa-area-chart:before {
  content: "\F1FE";
}
.fa-pie-chart:before {
  content: "\F200";
}
.fa-line-chart:before {
  content: "\F201";
}
.fa-lastfm:before {
  content: "\F202";
}
.fa-lastfm-square:before {
  content: "\F203";
}
.fa-toggle-off:before {
  content: "\F204";
}
.fa-toggle-on:before {
  content: "\F205";
}
.fa-bicycle:before {
  content: "\F206";
}
.fa-bus:before {
  content: "\F207";
}
.fa-ioxhost:before {
  content: "\F208";
}
.fa-angellist:before {
  content: "\F209";
}
.fa-cc:before {
  content: "\F20A";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\F20B";
}
.fa-meanpath:before {
  content: "\F20C";
}
.fa-buysellads:before {
  content: "\F20D";
}
.fa-connectdevelop:before {
  content: "\F20E";
}
.fa-dashcube:before {
  content: "\F210";
}
.fa-forumbee:before {
  content: "\F211";
}
.fa-leanpub:before {
  content: "\F212";
}
.fa-sellsy:before {
  content: "\F213";
}
.fa-shirtsinbulk:before {
  content: "\F214";
}
.fa-simplybuilt:before {
  content: "\F215";
}
.fa-skyatlas:before {
  content: "\F216";
}
.fa-cart-plus:before {
  content: "\F217";
}
.fa-cart-arrow-down:before {
  content: "\F218";
}
.fa-diamond:before {
  content: "\F219";
}
.fa-ship:before {
  content: "\F21A";
}
.fa-user-secret:before {
  content: "\F21B";
}
.fa-motorcycle:before {
  content: "\F21C";
}
.fa-street-view:before {
  content: "\F21D";
}
.fa-heartbeat:before {
  content: "\F21E";
}
.fa-venus:before {
  content: "\F221";
}
.fa-mars:before {
  content: "\F222";
}
.fa-mercury:before {
  content: "\F223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\F224";
}
.fa-transgender-alt:before {
  content: "\F225";
}
.fa-venus-double:before {
  content: "\F226";
}
.fa-mars-double:before {
  content: "\F227";
}
.fa-venus-mars:before {
  content: "\F228";
}
.fa-mars-stroke:before {
  content: "\F229";
}
.fa-mars-stroke-v:before {
  content: "\F22A";
}
.fa-mars-stroke-h:before {
  content: "\F22B";
}
.fa-neuter:before {
  content: "\F22C";
}
.fa-genderless:before {
  content: "\F22D";
}
.fa-facebook-official:before {
  content: "\F230";
}
.fa-pinterest-p:before {
  content: "\F231";
}
.fa-whatsapp:before {
  content: "\F232";
}
.fa-server:before {
  content: "\F233";
}
.fa-user-plus:before {
  content: "\F234";
}
.fa-user-times:before {
  content: "\F235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\F236";
}
.fa-viacoin:before {
  content: "\F237";
}
.fa-train:before {
  content: "\F238";
}
.fa-subway:before {
  content: "\F239";
}
.fa-medium:before {
  content: "\F23A";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\F23B";
}
.fa-optin-monster:before {
  content: "\F23C";
}
.fa-opencart:before {
  content: "\F23D";
}
.fa-expeditedssl:before {
  content: "\F23E";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\F240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\F241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\F242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\F243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\F244";
}
.fa-mouse-pointer:before {
  content: "\F245";
}
.fa-i-cursor:before {
  content: "\F246";
}
.fa-object-group:before {
  content: "\F247";
}
.fa-object-ungroup:before {
  content: "\F248";
}
.fa-sticky-note:before {
  content: "\F249";
}
.fa-sticky-note-o:before {
  content: "\F24A";
}
.fa-cc-jcb:before {
  content: "\F24B";
}
.fa-cc-diners-club:before {
  content: "\F24C";
}
.fa-clone:before {
  content: "\F24D";
}
.fa-balance-scale:before {
  content: "\F24E";
}
.fa-hourglass-o:before {
  content: "\F250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\F251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\F252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\F253";
}
.fa-hourglass:before {
  content: "\F254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\F255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\F256";
}
.fa-hand-scissors-o:before {
  content: "\F257";
}
.fa-hand-lizard-o:before {
  content: "\F258";
}
.fa-hand-spock-o:before {
  content: "\F259";
}
.fa-hand-pointer-o:before {
  content: "\F25A";
}
.fa-hand-peace-o:before {
  content: "\F25B";
}
.fa-trademark:before {
  content: "\F25C";
}
.fa-registered:before {
  content: "\F25D";
}
.fa-creative-commons:before {
  content: "\F25E";
}
.fa-gg:before {
  content: "\F260";
}
.fa-gg-circle:before {
  content: "\F261";
}
.fa-tripadvisor:before {
  content: "\F262";
}
.fa-odnoklassniki:before {
  content: "\F263";
}
.fa-odnoklassniki-square:before {
  content: "\F264";
}
.fa-get-pocket:before {
  content: "\F265";
}
.fa-wikipedia-w:before {
  content: "\F266";
}
.fa-safari:before {
  content: "\F267";
}
.fa-chrome:before {
  content: "\F268";
}
.fa-firefox:before {
  content: "\F269";
}
.fa-opera:before {
  content: "\F26A";
}
.fa-internet-explorer:before {
  content: "\F26B";
}
.fa-tv:before,
.fa-television:before {
  content: "\F26C";
}
.fa-contao:before {
  content: "\F26D";
}
.fa-500px:before {
  content: "\F26E";
}
.fa-amazon:before {
  content: "\F270";
}
.fa-calendar-plus-o:before {
  content: "\F271";
}
.fa-calendar-minus-o:before {
  content: "\F272";
}
.fa-calendar-times-o:before {
  content: "\F273";
}
.fa-calendar-check-o:before {
  content: "\F274";
}
.fa-industry:before {
  content: "\F275";
}
.fa-map-pin:before {
  content: "\F276";
}
.fa-map-signs:before {
  content: "\F277";
}
.fa-map-o:before {
  content: "\F278";
}
.fa-map:before {
  content: "\F279";
}
.fa-commenting:before {
  content: "\F27A";
}
.fa-commenting-o:before {
  content: "\F27B";
}
.fa-houzz:before {
  content: "\F27C";
}
.fa-vimeo:before {
  content: "\F27D";
}
.fa-black-tie:before {
  content: "\F27E";
}
.fa-fonticons:before {
  content: "\F280";
}
.fa-reddit-alien:before {
  content: "\F281";
}
.fa-edge:before {
  content: "\F282";
}
.fa-credit-card-alt:before {
  content: "\F283";
}
.fa-codiepie:before {
  content: "\F284";
}
.fa-modx:before {
  content: "\F285";
}
.fa-fort-awesome:before {
  content: "\F286";
}
.fa-usb:before {
  content: "\F287";
}
.fa-product-hunt:before {
  content: "\F288";
}
.fa-mixcloud:before {
  content: "\F289";
}
.fa-scribd:before {
  content: "\F28A";
}
.fa-pause-circle:before {
  content: "\F28B";
}
.fa-pause-circle-o:before {
  content: "\F28C";
}
.fa-stop-circle:before {
  content: "\F28D";
}
.fa-stop-circle-o:before {
  content: "\F28E";
}
.fa-shopping-bag:before {
  content: "\F290";
}
.fa-shopping-basket:before {
  content: "\F291";
}
.fa-hashtag:before {
  content: "\F292";
}
.fa-bluetooth:before {
  content: "\F293";
}
.fa-bluetooth-b:before {
  content: "\F294";
}
.fa-percent:before {
  content: "\F295";
}
.fa-gitlab:before {
  content: "\F296";
}
.fa-wpbeginner:before {
  content: "\F297";
}
.fa-wpforms:before {
  content: "\F298";
}
.fa-envira:before {
  content: "\F299";
}
.fa-universal-access:before {
  content: "\F29A";
}
.fa-wheelchair-alt:before {
  content: "\F29B";
}
.fa-question-circle-o:before {
  content: "\F29C";
}
.fa-blind:before {
  content: "\F29D";
}
.fa-audio-description:before {
  content: "\F29E";
}
.fa-volume-control-phone:before {
  content: "\F2A0";
}
.fa-braille:before {
  content: "\F2A1";
}
.fa-assistive-listening-systems:before {
  content: "\F2A2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\F2A3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\F2A4";
}
.fa-glide:before {
  content: "\F2A5";
}
.fa-glide-g:before {
  content: "\F2A6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\F2A7";
}
.fa-low-vision:before {
  content: "\F2A8";
}
.fa-viadeo:before {
  content: "\F2A9";
}
.fa-viadeo-square:before {
  content: "\F2AA";
}
.fa-snapchat:before {
  content: "\F2AB";
}
.fa-snapchat-ghost:before {
  content: "\F2AC";
}
.fa-snapchat-square:before {
  content: "\F2AD";
}
.fa-pied-piper:before {
  content: "\F2AE";
}
.fa-first-order:before {
  content: "\F2B0";
}
.fa-yoast:before {
  content: "\F2B1";
}
.fa-themeisle:before {
  content: "\F2B2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\F2B3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\F2B4";
}
.fa-handshake-o:before {
  content: "\F2B5";
}
.fa-envelope-open:before {
  content: "\F2B6";
}
.fa-envelope-open-o:before {
  content: "\F2B7";
}
.fa-linode:before {
  content: "\F2B8";
}
.fa-address-book:before {
  content: "\F2B9";
}
.fa-address-book-o:before {
  content: "\F2BA";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\F2BB";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\F2BC";
}
.fa-user-circle:before {
  content: "\F2BD";
}
.fa-user-circle-o:before {
  content: "\F2BE";
}
.fa-user-o:before {
  content: "\F2C0";
}
.fa-id-badge:before {
  content: "\F2C1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\F2C2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\F2C3";
}
.fa-quora:before {
  content: "\F2C4";
}
.fa-free-code-camp:before {
  content: "\F2C5";
}
.fa-telegram:before {
  content: "\F2C6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\F2C7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\F2C8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\F2C9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\F2CA";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\F2CB";
}
.fa-shower:before {
  content: "\F2CC";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\F2CD";
}
.fa-podcast:before {
  content: "\F2CE";
}
.fa-window-maximize:before {
  content: "\F2D0";
}
.fa-window-minimize:before {
  content: "\F2D1";
}
.fa-window-restore:before {
  content: "\F2D2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\F2D3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\F2D4";
}
.fa-bandcamp:before {
  content: "\F2D5";
}
.fa-grav:before {
  content: "\F2D6";
}
.fa-etsy:before {
  content: "\F2D7";
}
.fa-imdb:before {
  content: "\F2D8";
}
.fa-ravelry:before {
  content: "\F2D9";
}
.fa-eercast:before {
  content: "\F2DA";
}
.fa-microchip:before {
  content: "\F2DB";
}
.fa-snowflake-o:before {
  content: "\F2DC";
}
.fa-superpowers:before {
  content: "\F2DD";
}
.fa-wpexplorer:before {
  content: "\F2DE";
}
.fa-meetup:before {
  content: "\F2E0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
@layer tailwind-base, antd;
@layer tailwind-base {
  /* ! tailwindcss v3.2.7 | MIT License | https://tailwindcss.com *//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
*/

html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}
  *, ::before, ::after{
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ; }
  ::backdrop{
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ; } }

.\!container{
  width: 100% !important; }

.container{
  width: 100%; }

@media (min-width: 640px){
  .\!container{
    max-width: 640px !important; }
  .container{
    max-width: 640px; } }

@media (min-width: 768px){
  .\!container{
    max-width: 768px !important; }
  .container{
    max-width: 768px; } }

@media (min-width: 1024px){
  .\!container{
    max-width: 1024px !important; }
  .container{
    max-width: 1024px; } }

@media (min-width: 1280px){
  .\!container{
    max-width: 1280px !important; }
  .container{
    max-width: 1280px; } }

@media (min-width: 1536px){
  .\!container{
    max-width: 1536px !important; }
  .container{
    max-width: 1536px; } }
.visible{
  visibility: visible; }
.invisible{
  visibility: hidden; }
.collapse{
  visibility: collapse; }
.static{
  position: static; }
.fixed{
  position: fixed; }
.absolute{
  position: absolute; }
.relative{
  position: relative; }
.sticky{
  position: sticky; }
.inset-0{
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px; }
.bottom-0{
  bottom: 0px; }
.bottom-full{
  bottom: 100%; }
.left-0{
  left: 0px; }
.left-1\/2{
  left: 50%; }
.right-0{
  right: 0px; }
.right-4{
  right: 1rem; }
.top-0{
  top: 0px; }
.top-1\/2{
  top: 50%; }
.top-1\/4{
  top: 25%; }
.top-4{
  top: 1rem; }
.top-full{
  top: 100%; }
.z-10{
  z-index: 10; }
.z-\[100\]{
  z-index: 100; }
.z-\[60\]{
  z-index: 60; }
.m-0{
  margin: 0px; }
.m-6{
  margin: 1.5rem; }
.mx-auto{
  margin-left: auto;
  margin-right: auto; }
.\!mb-0{
  margin-bottom: 0px !important; }
.\!mb-2{
  margin-bottom: 0.5rem !important; }
.-mb-px{
  margin-bottom: -1px; }
.mb-0{
  margin-bottom: 0px; }
.mb-0\.5{
  margin-bottom: 0.125rem; }
.mb-1{
  margin-bottom: 0.25rem; }
.mb-2{
  margin-bottom: 0.5rem; }
.mb-3{
  margin-bottom: 0.75rem; }
.mb-4{
  margin-bottom: 1rem; }
.mb-5{
  margin-bottom: 1.25rem; }
.mb-6{
  margin-bottom: 1.5rem; }
.mb-7{
  margin-bottom: 1.75rem; }
.mb-8{
  margin-bottom: 2rem; }
.mb-\[14px\]{
  margin-bottom: 14px; }
.mb-\[3px\]{
  margin-bottom: 3px; }
.mb-\[5px\]{
  margin-bottom: 5px; }
.ml-2{
  margin-left: 0.5rem; }
.ml-4{
  margin-left: 1rem; }
.ml-5{
  margin-left: 1.25rem; }
.ml-auto{
  margin-left: auto; }
.mr-1{
  margin-right: 0.25rem; }
.mr-2{
  margin-right: 0.5rem; }
.mr-3{
  margin-right: 0.75rem; }
.mt-0{
  margin-top: 0px; }
.mt-0\.5{
  margin-top: 0.125rem; }
.mt-1{
  margin-top: 0.25rem; }
.mt-12{
  margin-top: 3rem; }
.mt-2{
  margin-top: 0.5rem; }
.mt-3{
  margin-top: 0.75rem; }
.mt-4{
  margin-top: 1rem; }
.mt-6{
  margin-top: 1.5rem; }
.mt-8{
  margin-top: 2rem; }
.mt-\[2px\]{
  margin-top: 2px; }
.mt-\[6px\]{
  margin-top: 6px; }
.block{
  display: block; }
.inline-block{
  display: inline-block; }
.inline{
  display: inline; }
.flex{
  display: flex; }
.inline-flex{
  display: inline-flex; }
.table{
  display: table; }
.table-cell{
  display: table-cell; }
.flow-root{
  display: flow-root; }
.grid{
  display: grid; }
.contents{
  display: contents; }
.list-item{
  display: list-item; }
.hidden{
  display: none; }
.h-0{
  height: 0px; }
.h-0\.5{
  height: 0.125rem; }
.h-1{
  height: 0.25rem; }
.h-1\.5{
  height: 0.375rem; }
.h-10{
  height: 2.5rem; }
.h-12{
  height: 3rem; }
.h-16{
  height: 4rem; }
.h-3{
  height: 0.75rem; }
.h-3\.5{
  height: 0.875rem; }
.h-4{
  height: 1rem; }
.h-5{
  height: 1.25rem; }
.h-6{
  height: 1.5rem; }
.h-7{
  height: 1.75rem; }
.h-8{
  height: 2rem; }
.h-9{
  height: 2.25rem; }
.h-\[18px\]{
  height: 18px; }
.h-\[calc\(90vh-4rem\)\]{
  height: calc(90vh - 4rem); }
.h-full{
  height: 100%; }
.max-h-\[60vh\]{
  max-height: 60vh; }
.max-h-\[80vh\]{
  max-height: 80vh; }
.min-h-full{
  min-height: 100%; }
.min-h-screen{
  min-height: 100vh; }
.w-1{
  width: 0.25rem; }
.w-1\.5{
  width: 0.375rem; }
.w-10{
  width: 2.5rem; }
.w-12{
  width: 3rem; }
.w-16{
  width: 4rem; }
.w-3{
  width: 0.75rem; }
.w-3\.5{
  width: 0.875rem; }
.w-4{
  width: 1rem; }
.w-48{
  width: 12rem; }
.w-5{
  width: 1.25rem; }
.w-6{
  width: 1.5rem; }
.w-7{
  width: 1.75rem; }
.w-8{
  width: 2rem; }
.w-9{
  width: 2.25rem; }
.w-96{
  width: 24rem; }
.w-\[18px\]{
  width: 18px; }
.w-auto{
  width: auto; }
.w-fit{
  width: -moz-fit-content;
  width: fit-content; }
.w-full{
  width: 100%; }
.min-w-0{
  min-width: 0px; }
.min-w-\[200px\]{
  min-width: 200px; }
.min-w-\[250px\]{
  min-width: 250px; }
.min-w-\[40px\]{
  min-width: 40px; }
.min-w-\[64px\]{
  min-width: 64px; }
.max-w-2xl{
  max-width: 42rem; }
.max-w-3xl{
  max-width: 48rem; }
.max-w-\[200px\]{
  max-width: 200px; }
.max-w-\[280px\]{
  max-width: 280px; }
.max-w-\[80px\]{
  max-width: 80px; }
.flex-1{
  flex: 1 1 0%; }
.flex-none{
  flex: none; }
.flex-shrink{
  flex-shrink: 1; }
.flex-shrink-0{
  flex-shrink: 0; }
.shrink{
  flex-shrink: 1; }
.shrink-0{
  flex-shrink: 0; }
.flex-grow{
  flex-grow: 1; }
.grow{
  flex-grow: 1; }
.border-collapse{
  border-collapse: collapse; }
.-translate-x-1\/2{
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.-translate-x-full{
  --tw-translate-x: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.-translate-y-1\/2{
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.translate-x-0{
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.translate-x-full{
  --tw-translate-x: 100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.-rotate-12{
  --tw-rotate: -12deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
@keyframes spin{
  to{
    transform: rotate(360deg); } }
.animate-spin{
  animation: spin 1s linear infinite; }
.cursor-pointer{
  cursor: pointer; }
.resize{
  resize: both; }
.scroll-mt-40{
  scroll-margin-top: 10rem; }
.list-none{
  list-style-type: none; }
.columns-2{
  -moz-columns: 2;
       columns: 2; }
.columns-3{
  -moz-columns: 3;
       columns: 3; }
.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr)); }
.flex-row{
  flex-direction: row; }
.flex-col{
  flex-direction: column; }
.flex-wrap{
  flex-wrap: wrap; }
.items-start{
  align-items: flex-start; }
.items-center{
  align-items: center; }
.justify-end{
  justify-content: flex-end; }
.justify-center{
  justify-content: center; }
.justify-between{
  justify-content: space-between; }
.gap-0{
  gap: 0px; }
.gap-0\.5{
  gap: 0.125rem; }
.gap-1{
  gap: 0.25rem; }
.gap-1\.5{
  gap: 0.375rem; }
.gap-2{
  gap: 0.5rem; }
.gap-3{
  gap: 0.75rem; }
.gap-3\.5{
  gap: 0.875rem; }
.gap-4{
  gap: 1rem; }
.gap-5{
  gap: 1.25rem; }
.gap-6{
  gap: 1.5rem; }
.gap-8{
  gap: 2rem; }
.gap-\[5px\]{
  gap: 5px; }
.gap-\[6px\]{
  gap: 6px; }
.gap-\[7px\]{
  gap: 7px; }
.space-x-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); }
.space-x-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); }
.space-y-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); }
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); }
.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); }
.space-y-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); }
.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse)); }
.space-y-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); }
.space-y-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse)); }
.justify-self-center{
  justify-self: center; }
.overflow-hidden{
  overflow: hidden; }
.overflow-x-auto{
  overflow-x: auto; }
.overflow-y-auto{
  overflow-y: auto; }
.overflow-x-hidden{
  overflow-x: hidden; }
.overflow-x-clip{
  overflow-x: clip; }
.scroll-smooth{
  scroll-behavior: smooth; }
.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }
.text-ellipsis{
  text-overflow: ellipsis; }
.whitespace-normal{
  white-space: normal; }
.whitespace-nowrap{
  white-space: nowrap; }
.whitespace-pre-wrap{
  white-space: pre-wrap; }
.break-words{
  overflow-wrap: break-word; }
.rounded{
  border-radius: 0.25rem; }
.rounded-2xl{
  border-radius: 1rem; }
.rounded-\[10px\]{
  border-radius: 10px; }
.rounded-\[20px\]{
  border-radius: 20px; }
.rounded-full{
  border-radius: 9999px; }
.rounded-lg{
  border-radius: 0.5rem; }
.rounded-md{
  border-radius: 0.375rem; }
.rounded-xl{
  border-radius: 0.75rem; }
.rounded-l-lg{
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem; }
.rounded-r-lg{
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem; }
.rounded-bl-lg{
  border-bottom-left-radius: 0.5rem; }
.rounded-br-lg{
  border-bottom-right-radius: 0.5rem; }
.rounded-tl-lg{
  border-top-left-radius: 0.5rem; }
.rounded-tr-lg{
  border-top-right-radius: 0.5rem; }
.border{
  border-width: 1px; }
.border-2{
  border-width: 2px; }
.border-4{
  border-width: 4px; }
.border-b{
  border-bottom-width: 1px; }
.border-b-0{
  border-bottom-width: 0px; }
.border-l-0{
  border-left-width: 0px; }
.border-r-0{
  border-right-width: 0px; }
.border-t{
  border-top-width: 1px; }
.border-t-0{
  border-top-width: 0px; }
.border-solid{
  border-style: solid; }
.border-none{
  border-style: none; }
.border-\[\#3431AC\]{
  --tw-border-opacity: 1;
  border-color: rgb(52 49 172 / var(--tw-border-opacity)); }
.border-\[\#E5E7EB\]{
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity)); }
.border-blue-100{
  --tw-border-opacity: 1;
  border-color: rgb(219 234 254 / var(--tw-border-opacity)); }
.border-gray-100{
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity)); }
.border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity)); }
.border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity)); }
.border-gray-400{
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity)); }
.border-indigo-100{
  --tw-border-opacity: 1;
  border-color: rgb(224 231 255 / var(--tw-border-opacity)); }
.border-indigo-200{
  --tw-border-opacity: 1;
  border-color: rgb(199 210 254 / var(--tw-border-opacity)); }
.border-indigo-500{
  --tw-border-opacity: 1;
  border-color: rgb(99 102 241 / var(--tw-border-opacity)); }
.border-purple-100{
  --tw-border-opacity: 1;
  border-color: rgb(243 232 255 / var(--tw-border-opacity)); }
.border-red-200{
  --tw-border-opacity: 1;
  border-color: rgb(254 202 202 / var(--tw-border-opacity)); }
.border-transparent{
  border-color: transparent; }
.border-t-gray-900{
  --tw-border-opacity: 1;
  border-top-color: rgb(17 24 39 / var(--tw-border-opacity)); }
.bg-\[\#5046E5\]{
  --tw-bg-opacity: 1;
  background-color: rgb(80 70 229 / var(--tw-bg-opacity)); }
.bg-\[\#E5E7EB\]{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity)); }
.bg-\[\#EEF0FF\]{
  --tw-bg-opacity: 1;
  background-color: rgb(238 240 255 / var(--tw-bg-opacity)); }
.bg-\[\#F9FAFB\]{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity)); }
.bg-amber-500{
  --tw-bg-opacity: 1;
  background-color: rgb(245 158 11 / var(--tw-bg-opacity)); }
.bg-blue-100{
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity)); }
.bg-blue-50{
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity)); }
.bg-blue-600{
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity)); }
.bg-emerald-50{
  --tw-bg-opacity: 1;
  background-color: rgb(236 253 245 / var(--tw-bg-opacity)); }
.bg-emerald-500{
  --tw-bg-opacity: 1;
  background-color: rgb(16 185 129 / var(--tw-bg-opacity)); }
.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity)); }
.bg-gray-200{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity)); }
.bg-gray-400{
  --tw-bg-opacity: 1;
  background-color: rgb(156 163 175 / var(--tw-bg-opacity)); }
.bg-gray-50{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity)); }
.bg-gray-900{
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity)); }
.bg-indigo-100{
  --tw-bg-opacity: 1;
  background-color: rgb(224 231 255 / var(--tw-bg-opacity)); }
.bg-indigo-200{
  --tw-bg-opacity: 1;
  background-color: rgb(199 210 254 / var(--tw-bg-opacity)); }
.bg-indigo-50{
  --tw-bg-opacity: 1;
  background-color: rgb(238 242 255 / var(--tw-bg-opacity)); }
.bg-indigo-500{
  --tw-bg-opacity: 1;
  background-color: rgb(99 102 241 / var(--tw-bg-opacity)); }
.bg-purple-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 232 255 / var(--tw-bg-opacity)); }
.bg-purple-50{
  --tw-bg-opacity: 1;
  background-color: rgb(250 245 255 / var(--tw-bg-opacity)); }
.bg-red-100{
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity)); }
.bg-red-50{
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity)); }
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity)); }
.bg-white\/60{
  background-color: rgb(255 255 255 / 0.6); }
.bg-yellow-100{
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / var(--tw-bg-opacity)); }
.bg-opacity-50{
  --tw-bg-opacity: 0.5; }
.bg-gradient-to-br{
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-r{
  background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-\[\#3431AC\]{
  --tw-gradient-from: #3431AC;
  --tw-gradient-to: rgb(52 49 172 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-amber-500{
  --tw-gradient-from: #f59e0b;
  --tw-gradient-to: rgb(245 158 11 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-blue-50{
  --tw-gradient-from: #eff6ff;
  --tw-gradient-to: rgb(239 246 255 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-blue-500{
  --tw-gradient-from: #3b82f6;
  --tw-gradient-to: rgb(59 130 246 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-blue-600{
  --tw-gradient-from: #2563eb;
  --tw-gradient-to: rgb(37 99 235 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-gray-500{
  --tw-gradient-from: #6b7280;
  --tw-gradient-to: rgb(107 114 128 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-indigo-100{
  --tw-gradient-from: #e0e7ff;
  --tw-gradient-to: rgb(224 231 255 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-indigo-400{
  --tw-gradient-from: #818cf8;
  --tw-gradient-to: rgb(129 140 248 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-indigo-50{
  --tw-gradient-from: #eef2ff;
  --tw-gradient-to: rgb(238 242 255 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-indigo-50\/50{
  --tw-gradient-from: rgb(238 242 255 / 0.5);
  --tw-gradient-to: rgb(238 242 255 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-indigo-500{
  --tw-gradient-from: #6366f1;
  --tw-gradient-to: rgb(99 102 241 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-pink-500{
  --tw-gradient-from: #ec4899;
  --tw-gradient-to: rgb(236 72 153 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-purple-50{
  --tw-gradient-from: #faf5ff;
  --tw-gradient-to: rgb(250 245 255 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-purple-500{
  --tw-gradient-from: #a855f7;
  --tw-gradient-to: rgb(168 85 247 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-purple-600{
  --tw-gradient-from: #9333ea;
  --tw-gradient-to: rgb(147 51 234 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-indigo-50{
  --tw-gradient-to: rgb(238 242 255 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to); }
.via-white{
  --tw-gradient-to: rgb(255 255 255 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to); }
.to-amber-600{
  --tw-gradient-to: #d97706; }
.to-blue-50{
  --tw-gradient-to: #eff6ff; }
.to-blue-600{
  --tw-gradient-to: #2563eb; }
.to-gray-600{
  --tw-gradient-to: #4b5563; }
.to-indigo-50{
  --tw-gradient-to: #eef2ff; }
.to-indigo-600{
  --tw-gradient-to: #4f46e5; }
.to-pink-600{
  --tw-gradient-to: #db2777; }
.to-purple-600{
  --tw-gradient-to: #9333ea; }
.to-violet-400{
  --tw-gradient-to: #a78bfa; }
.to-violet-50{
  --tw-gradient-to: #f5f3ff; }
.to-violet-50\/50{
  --tw-gradient-to: rgb(245 243 255 / 0.5); }
.to-violet-600{
  --tw-gradient-to: #7c3aed; }
.to-white{
  --tw-gradient-to: #fff; }
.object-contain{
  -o-object-fit: contain;
     object-fit: contain; }
.object-cover{
  -o-object-fit: cover;
     object-fit: cover; }
.p-0{
  padding: 0px; }
.p-1{
  padding: 0.25rem; }
.p-1\.5{
  padding: 0.375rem; }
.p-2{
  padding: 0.5rem; }
.p-3{
  padding: 0.75rem; }
.p-4{
  padding: 1rem; }
.p-5{
  padding: 1.25rem; }
.p-6{
  padding: 1.5rem; }
.p-8{
  padding: 2rem; }
.px-1{
  padding-left: 0.25rem;
  padding-right: 0.25rem; }
.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem; }
.px-2\.5{
  padding-left: 0.625rem;
  padding-right: 0.625rem; }
.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem; }
.px-4{
  padding-left: 1rem;
  padding-right: 1rem; }
.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem; }
.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem; }
.px-8{
  padding-left: 2rem;
  padding-right: 2rem; }
.px-\[14px\]{
  padding-left: 14px;
  padding-right: 14px; }
.px-\[18px\]{
  padding-left: 18px;
  padding-right: 18px; }
.py-0{
  padding-top: 0px;
  padding-bottom: 0px; }
.py-0\.5{
  padding-top: 0.125rem;
  padding-bottom: 0.125rem; }
.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem; }
.py-1\.5{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem; }
.py-12{
  padding-top: 3rem;
  padding-bottom: 3rem; }
.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem; }
.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem; }
.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem; }
.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem; }
.py-7{
  padding-top: 1.75rem;
  padding-bottom: 1.75rem; }
.py-\[14px\]{
  padding-top: 14px;
  padding-bottom: 14px; }
.py-\[2px\]{
  padding-top: 2px;
  padding-bottom: 2px; }
.py-\[5\.5px\]{
  padding-top: 5.5px;
  padding-bottom: 5.5px; }
.py-\[7px\]{
  padding-top: 7px;
  padding-bottom: 7px; }
.pb-10{
  padding-bottom: 2.5rem; }
.pb-12{
  padding-bottom: 3rem; }
.pb-24{
  padding-bottom: 6rem; }
.pb-3{
  padding-bottom: 0.75rem; }
.pb-4{
  padding-bottom: 1rem; }
.pb-6{
  padding-bottom: 1.5rem; }
.pl-4{
  padding-left: 1rem; }
.pr-1{
  padding-right: 0.25rem; }
.pr-4{
  padding-right: 1rem; }
.pt-2{
  padding-top: 0.5rem; }
.pt-3{
  padding-top: 0.75rem; }
.pt-5{
  padding-top: 1.25rem; }
.pt-6{
  padding-top: 1.5rem; }
.text-left{
  text-align: left; }
.text-center{
  text-align: center; }
.text-right{
  text-align: right; }
.font-mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }
.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem; }
.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem; }
.text-\[11px\]{
  font-size: 11px; }
.text-\[13px\]{
  font-size: 13px; }
.text-\[15px\]{
  font-size: 15px; }
.text-\[17px\]{
  font-size: 17px; }
.text-base{
  font-size: 1rem;
  line-height: 1.5rem; }
.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem; }
.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem; }
.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem; }
.text-xs{
  font-size: 0.75rem;
  line-height: 1rem; }
.font-bold{
  font-weight: 700; }
.font-medium{
  font-weight: 500; }
.font-normal{
  font-weight: 400; }
.font-semibold{
  font-weight: 600; }
.uppercase{
  text-transform: uppercase; }
.lowercase{
  text-transform: lowercase; }
.capitalize{
  text-transform: capitalize; }
.italic{
  font-style: italic; }
.leading-\[1\.5\]{
  line-height: 1.5; }
.leading-relaxed{
  line-height: 1.625; }
.leading-tight{
  line-height: 1.25; }
.\!text-\[\#3431AC\]{
  --tw-text-opacity: 1 !important;
  color: rgb(52 49 172 / var(--tw-text-opacity)) !important; }
.text-\[\#1F2937\]{
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity)); }
.text-\[\#3431AC\]{
  --tw-text-opacity: 1;
  color: rgb(52 49 172 / var(--tw-text-opacity)); }
.text-\[\#374151\]{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity)); }
.text-\[\#5046E5\]{
  --tw-text-opacity: 1;
  color: rgb(80 70 229 / var(--tw-text-opacity)); }
.text-\[\#6B7280\]{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity)); }
.text-\[\#9CA3AF\]{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity)); }
.text-amber-100{
  --tw-text-opacity: 1;
  color: rgb(254 243 199 / var(--tw-text-opacity)); }
.text-amber-200{
  --tw-text-opacity: 1;
  color: rgb(253 230 138 / var(--tw-text-opacity)); }
.text-amber-500{
  --tw-text-opacity: 1;
  color: rgb(245 158 11 / var(--tw-text-opacity)); }
.text-black{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity)); }
.text-blue-100{
  --tw-text-opacity: 1;
  color: rgb(219 234 254 / var(--tw-text-opacity)); }
.text-blue-200{
  --tw-text-opacity: 1;
  color: rgb(191 219 254 / var(--tw-text-opacity)); }
.text-blue-500{
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity)); }
.text-blue-600{
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity)); }
.text-blue-700{
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity)); }
.text-blue-800{
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / var(--tw-text-opacity)); }
.text-emerald-500{
  --tw-text-opacity: 1;
  color: rgb(16 185 129 / var(--tw-text-opacity)); }
.text-emerald-700{
  --tw-text-opacity: 1;
  color: rgb(4 120 87 / var(--tw-text-opacity)); }
.text-gray-100{
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity)); }
.text-gray-200{
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity)); }
.text-gray-400{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity)); }
.text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity)); }
.text-gray-600{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity)); }
.text-gray-700{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity)); }
.text-gray-800{
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity)); }
.text-gray-900{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity)); }
.text-indigo-100{
  --tw-text-opacity: 1;
  color: rgb(224 231 255 / var(--tw-text-opacity)); }
.text-indigo-200{
  --tw-text-opacity: 1;
  color: rgb(199 210 254 / var(--tw-text-opacity)); }
.text-indigo-500{
  --tw-text-opacity: 1;
  color: rgb(99 102 241 / var(--tw-text-opacity)); }
.text-indigo-800{
  --tw-text-opacity: 1;
  color: rgb(55 48 163 / var(--tw-text-opacity)); }
.text-indigo-900{
  --tw-text-opacity: 1;
  color: rgb(49 46 129 / var(--tw-text-opacity)); }
.text-pink-100{
  --tw-text-opacity: 1;
  color: rgb(252 231 243 / var(--tw-text-opacity)); }
.text-pink-200{
  --tw-text-opacity: 1;
  color: rgb(251 207 232 / var(--tw-text-opacity)); }
.text-purple-100{
  --tw-text-opacity: 1;
  color: rgb(243 232 255 / var(--tw-text-opacity)); }
.text-purple-200{
  --tw-text-opacity: 1;
  color: rgb(233 213 255 / var(--tw-text-opacity)); }
.text-purple-500{
  --tw-text-opacity: 1;
  color: rgb(168 85 247 / var(--tw-text-opacity)); }
.text-purple-600{
  --tw-text-opacity: 1;
  color: rgb(147 51 234 / var(--tw-text-opacity)); }
.text-purple-700{
  --tw-text-opacity: 1;
  color: rgb(126 34 206 / var(--tw-text-opacity)); }
.text-purple-800{
  --tw-text-opacity: 1;
  color: rgb(107 33 168 / var(--tw-text-opacity)); }
.text-red-500{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity)); }
.text-red-600{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity)); }
.text-red-700{
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity)); }
.text-red-800{
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity)); }
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity)); }
.text-yellow-800{
  --tw-text-opacity: 1;
  color: rgb(133 77 14 / var(--tw-text-opacity)); }
.underline{
  text-decoration-line: underline; }
.line-through{
  text-decoration-line: line-through; }
.no-underline{
  text-decoration-line: none; }
.antialiased{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
.opacity-0{
  opacity: 0; }
.opacity-10{
  opacity: 0.1; }
.shadow{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); }
.shadow-2xl{
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); }
.shadow-\[0_0_0_3px_rgba\(522c 49\2c 172\2c 0\.1\)\]{
  --tw-shadow: 0 0 0 3px rgba(52,49,172,0.1);
  --tw-shadow-colored: 0 0 0 3px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); }
.shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); }
.shadow-sm{
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); }
.outline{
  outline-style: solid; }
.blur{
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); }
.drop-shadow{
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); }
.grayscale{
  --tw-grayscale: grayscale(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); }
.invert{
  --tw-invert: invert(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); }
.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); }
.backdrop-filter{
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
          backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); }
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms; }
.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms; }
.transition-colors{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms; }
.transition-opacity{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms; }
.transition-transform{
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms; }
.duration-150{
  transition-duration: 150ms; }
.duration-200{
  transition-duration: 200ms; }
.duration-300{
  transition-duration: 300ms; }
.duration-500{
  transition-duration: 500ms; }
.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
body {
  color: #727272;
  font-family: Roboto, 'Open Sans', sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

* {
  box-sizing: border-box; }
  *:focus {
    outline: none; }

input:invalid {
  box-shadow: none; }

html,
body,
#root,
.routes-wrapper {
  height: 100%; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block; }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0; }

ul {
  list-style: inside;
  padding: 0;
  margin: 0; }

button {
  border: none;
  -webkit-appearance: none;
  background-color: transparent;
  font-size: 14px; }

blockquote,
q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none; }

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #e8e8e8;
  margin: 10px 0;
  padding: 0; }

.input {
  vertical-align: middle;
  border: none;
  border-bottom: 1px solid #e8e8e8;
  padding: 9px 7px;
  font-size: 14px;
  font-weight: bold;
  color: #727272; }
  .input::-moz-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    opacity: 0.3; }
  .input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    opacity: 0.3; }
  .input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    opacity: 0.3; }
  .input::-ms-input-placeholder {
    /* Microsoft Edge */
    opacity: 0.3; }

textarea {
  height: 75px; }

input {
  font-family: Roboto, 'Open Sans', sans-serif; }

.btn {
  line-height: 20px;
  padding: 10px 30px;
  text-align: center;
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
  min-width: 140px;
  border-radius: 4px;
  -webkit-appearance: none;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease-in-out;
  box-sizing: border-box;
  font-family: Roboto, 'Open Sans', sans-serif; }
  .btn-small {
    padding: 5px 25px;
    border-radius: 25px;
    min-width: 0;
    min-height: 30px;
    font-size: 13px; }
  .btn-primary {
    background-color: #3431AC;
    color: #FFFFFF;
    box-shadow: 0px 2px 4px rgba(147, 157, 177, 0.3); }
  .btn-outline-primary {
    background-color: transparent;
    color: #3431AC;
    border: 1px solid #3431AC; }
  .btn-second {
    background-color: #FFFFFF;
    color: #3431AC;
    font-size: 14px;
    font-weight: bold; }
  .btn-secondary {
    background-color: #d5dbda;
    color: #7d8d8a;
    font-size: 14px;
    font-weight: bold; }
  .btn-text {
    color: #3431AC;
    font-size: 14px;
    font-weight: bold; }
  .btn-outline {
    color: #3431AC;
    border: 1px solid #3431AC;
    font-size: 14px;
    font-weight: bold; }
  .btn-grey {
    margin-left: 15px;
    background-color: #EAF0F2;
    color: #7d8d8a;
    font-size: 14px;
    font-weight: bold; }
  .btn-back {
    background-color: #d5dbda;
    color: #7d8d8a;
    min-width: 120px;
    font-size: 14px; }
  .btn-add {
    margin-right: 15px;
    padding-left: 5px;
    background-color: #f5f7f8;
    color: #18332f;
    font-size: 13px; }
    .btn-add span {
      vertical-align: middle; }
  .btn .plus {
    background-color: #3431AC;
    color: #ffffff;
    display: inline-block;
    height: 22px;
    width: 22px;
    font-size: 21px;
    line-height: 18px;
    font-weight: bold;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px; }
  .btn:hoverprimary {
    background-color: #28da7b; }
  .btn:hover.btn-secondary {
    background-color: #e3e7e6; }
  .btn:hover.btn-text {
    background-color: #e3e7e6; }
  .btn:hover.btn-back {
    background-color: #e3e7e6; }
  .btn[disabled] {
    background-color: #ebebeb;
    cursor: not-allowed; }
    .btn[disabled]:hover {
      background-color: #ebebeb; }

h1 {
  font-size: 32px;
  font-weight: bold; }

h4 {
  font-size: 14px;
  font-weight: bold; }

.custom-checkbox {
  /* CHECKBOX */ }
  .custom-checkbox [type="checkbox"]:not(:checked),
  .custom-checkbox [type="checkbox"]:checked {
    position: absolute;
    left: -9999px; }
  .custom-checkbox [type="checkbox"]:not(:checked) + label,
  .custom-checkbox [type="checkbox"]:checked + label {
    position: relative;
    padding-left: 52px;
    padding-top: 24px;
    cursor: pointer;
    display: block; }
  .custom-checkbox [type="checkbox"]:not(:checked) + label:before,
  .custom-checkbox [type="checkbox"]:checked + label:before,
  .custom-checkbox [type="checkbox"]:not(:checked) + label:after,
  .custom-checkbox [type="checkbox"]:checked + label:after {
    content: '';
    position: absolute;
    height: 25px;
    transition: all .5s ease; }
  .custom-checkbox [type="checkbox"]:not(:checked) + label:before,
  .custom-checkbox [type="checkbox"]:checked + label:before {
    left: 0;
    top: 0;
    width: 50px;
    background: #dddddd;
    border-radius: 26px;
    z-index: 0; }
  .custom-checkbox [type="checkbox"]:not(:checked) + label:after,
  .custom-checkbox [type="checkbox"]:checked + label:after {
    left: 0;
    top: 0;
    border-radius: 50%;
    width: 24px;
    background-color: #18332f;
    box-shadow: 0 2px 4px 0 rgba(49, 76, 89, 0.5);
    border: solid 1px #ffffff;
    content: 'NO';
    color: #fff;
    font-size: 7px;
    font-weight: bold;
    text-align: center;
    line-height: 24px;
    height: 24px;
    box-sizing: border-box; }
  .custom-checkbox [type="checkbox"]:checked + label:before {
    background-color: #90e3b7; }
  .custom-checkbox [type="checkbox"]:checked + label:after {
    left: 26px;
    content: 'YES';
    background-color: #3431AC; }

div.__react_component_tooltip.type-dark {
  background-color: #18332f;
  font-family: Roboto;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
  padding: 15px 21px; }

.badge {
  box-sizing: border-box;
  display: inline-block;
  background-color: #2c3e50;
  color: #3B7392;
  border-radius: 3rem;
  text-align: center;
  font-size: 12px;
  padding: 0.4rem;
  margin: 0.2rem;
  line-height: inherit; }

.badge--line {
  background-color: transparent;
  color: #95a5a6;
  box-shadow: 0 0 0 1px #95a5a6; }

.badge--info {
  background-color: #E1F1FF; }

.badge--warning {
  background-color: #f1c40f; }

.badge--danger {
  background-color: #e74c3c; }

.badge--success {
  background-color: #3431AC; }

.badge--small {
  font-size: 1.2rem;
  padding: .1rem .65rem .2rem; }

.badge--smaller {
  font-size: .7rem;
  padding: .05rem .4rem .15rem; }

.ml-5 {
  padding-left: 40px !important; }

.DatePicker__calendarContainer {
  z-index: 1; }

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

/* ── Global Ant Design table overrides ─────────────────────── */
.ant-table {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e7eb; }

.ant-table-thead > tr > th {
  background: #f9fafb !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  color: #6b7280 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #e5e7eb !important;
  padding: 12px 16px !important;
  text-align: left !important; }

.ant-table-tbody > tr > td {
  border-bottom: 1px solid #f0f1f5 !important;
  padding: 12px 16px !important;
  font-size: 13px !important;
  color: #374151 !important;
  text-align: left !important; }

.ant-table-tbody > tr:last-child > td {
  border-bottom: none !important; }

.ant-table-tbody > tr:hover > td {
  background: #f9fafb !important; }

.hover\:scale-\[1\.02\]:hover{
  --tw-scale-x: 1.02;
  --tw-scale-y: 1.02;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }

.hover\:border-blue-300:hover{
  --tw-border-opacity: 1;
  border-color: rgb(147 197 253 / var(--tw-border-opacity)); }

.hover\:border-blue-500:hover{
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity)); }

.hover\:border-gray-200:hover{
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity)); }

.hover\:border-gray-300:hover{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity)); }

.hover\:border-gray-400:hover{
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity)); }

.hover\:border-indigo-200:hover{
  --tw-border-opacity: 1;
  border-color: rgb(199 210 254 / var(--tw-border-opacity)); }

.hover\:bg-\[\#5B52EF\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(91 82 239 / var(--tw-bg-opacity)); }

.hover\:bg-blue-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(191 219 254 / var(--tw-bg-opacity)); }

.hover\:bg-blue-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity)); }

.hover\:bg-emerald-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(5 150 105 / var(--tw-bg-opacity)); }

.hover\:bg-gray-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity)); }

.hover\:bg-gray-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity)); }

.hover\:bg-gray-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity)); }

.hover\:bg-indigo-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(238 242 255 / var(--tw-bg-opacity)); }

.hover\:bg-red-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(254 202 202 / var(--tw-bg-opacity)); }

.hover\:bg-red-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity)); }

.hover\:from-blue-700:hover{
  --tw-gradient-from: #1d4ed8;
  --tw-gradient-to: rgb(29 78 216 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }

.hover\:from-indigo-500:hover{
  --tw-gradient-from: #6366f1;
  --tw-gradient-to: rgb(99 102 241 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }

.hover\:from-indigo-800:hover{
  --tw-gradient-from: #3730a3;
  --tw-gradient-to: rgb(55 48 163 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }

.hover\:from-purple-700:hover{
  --tw-gradient-from: #7e22ce;
  --tw-gradient-to: rgb(126 34 206 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }

.hover\:to-blue-700:hover{
  --tw-gradient-to: #1d4ed8; }

.hover\:to-indigo-700:hover{
  --tw-gradient-to: #4338ca; }

.hover\:to-violet-500:hover{
  --tw-gradient-to: #8b5cf6; }

.hover\:to-violet-700:hover{
  --tw-gradient-to: #6d28d9; }

.hover\:text-blue-700:hover{
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity)); }

.hover\:text-blue-800:hover{
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / var(--tw-text-opacity)); }

.hover\:text-gray-500:hover{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity)); }

.hover\:text-gray-600:hover{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity)); }

.hover\:text-gray-700:hover{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity)); }

.hover\:text-gray-800:hover{
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity)); }

.hover\:text-gray-900:hover{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity)); }

.hover\:text-indigo-500:hover{
  --tw-text-opacity: 1;
  color: rgb(99 102 241 / var(--tw-text-opacity)); }

.hover\:text-red-700:hover{
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity)); }

.hover\:opacity-90:hover{
  opacity: 0.9; }

.hover\:shadow-\[0_0_0_3px_rgba\(522c 49\2c 172\2c 0\.2\)\]:hover{
  --tw-shadow: 0 0 0 3px rgba(52,49,172,0.2);
  --tw-shadow-colored: 0 0 0 3px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); }

.hover\:shadow-\[0_1px_3px_rgba\(02c 0\2c 0\2c 0\.1\)\]:hover{
  --tw-shadow: 0 1px 3px rgba(0,0,0,0.1);
  --tw-shadow-colored: 0 1px 3px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); }

.hover\:shadow-\[0_4px_14px_rgba\(162c 185\2c 129\2c 0\.35\)\]:hover{
  --tw-shadow: 0 4px 14px rgba(16,185,129,0.35);
  --tw-shadow-colored: 0 4px 14px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); }

.focus\:border-blue-500:focus{
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity)); }

.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px; }

.focus\:ring-2:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); }

.focus\:ring-blue-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity)); }

.focus\:ring-red-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity)); }

.focus\:ring-offset-2:focus{
  --tw-ring-offset-width: 2px; }

.active\:bg-\[\#3B35C4\]:active{
  --tw-bg-opacity: 1;
  background-color: rgb(59 53 196 / var(--tw-bg-opacity)); }

.disabled\:cursor-not-allowed:disabled{
  cursor: not-allowed; }

.disabled\:opacity-50:disabled{
  opacity: 0.5; }

.group:hover .group-hover\:visible{
  visibility: visible; }

.group:hover .group-hover\:translate-x-1{
  --tw-translate-x: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }

.group:hover .group-hover\:opacity-100{
  opacity: 1; }

.group:hover .group-hover\:opacity-20{
  opacity: 0.2; }

@media (min-width: 640px){
  .sm\:h-3{
    height: 0.75rem; }
  .sm\:h-3\.5{
    height: 0.875rem; }
  .sm\:h-4{
    height: 1rem; }
  .sm\:w-3{
    width: 0.75rem; }
  .sm\:w-3\.5{
    width: 0.875rem; }
  .sm\:w-4{
    width: 1rem; }
  .sm\:w-\[250px\]{
    width: 250px; }
  .sm\:gap-1{
    gap: 0.25rem; }
  .sm\:gap-1\.5{
    gap: 0.375rem; }
  .sm\:gap-2{
    gap: 0.5rem; }
  .sm\:space-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); }
  .sm\:p-1{
    padding: 0.25rem; }
  .sm\:p-1\.5{
    padding: 0.375rem; }
  .sm\:p-4{
    padding: 1rem; }
  .sm\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem; }
  .sm\:text-base{
    font-size: 1rem;
    line-height: 1.5rem; }
  .sm\:text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem; } }

@media (min-width: 768px){
  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr)); } }

@media (min-width: 1100px){
  .min-\[1100px\]\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr)); } }
/**
* Rangeslider
*/
.rangeslider {
  margin: 20px 0;
  position: relative;
  background: #e6e6e6;
  -ms-touch-action: none;
  touch-action: none;
}
.rangeslider,
.rangeslider .rangeslider__fill {
  display: block;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
}
.rangeslider .rangeslider__handle {
  background: #fff;
  border: 1px solid #ccc;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), 0 -1px 3px rgba(0, 0, 0, 0.4);
}
.rangeslider .rangeslider__handle .rangeslider__active {
  opacity: 1;
}
.rangeslider .rangeslider__handle-tooltip {
  width: 40px;
  height: 40px;
  text-align: center;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  font-weight: normal;
  font-size: 14px;
  transition: all 100ms ease-in;
  border-radius: 4px;
  display: inline-block;
  color: white;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
}
.rangeslider .rangeslider__handle-tooltip span {
  margin-top: 12px;
  display: inline-block;
  line-height: 100%;
}
.rangeslider .rangeslider__handle-tooltip:after {
  content: ' ';
  position: absolute;
  width: 0;
  height: 0;
}
/**
* Rangeslider - Horizontal slider
*/
.rangeslider-horizontal {
  height: 12px;
  border-radius: 10px;
}
.rangeslider-horizontal .rangeslider__fill {
  height: 100%;
  background-color: #7cb342;
  border-radius: 10px;
  top: 0;
}
.rangeslider-horizontal .rangeslider__handle {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.rangeslider-horizontal .rangeslider__handle:after {
  content: ' ';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 6px;
  left: 6px;
  border-radius: 50%;
  background-color: #dadada;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) inset, 0 -1px 3px rgba(0, 0, 0, 0.4) inset;
}
.rangeslider-horizontal .rangeslider__handle-tooltip {
  top: -55px;
}
.rangeslider-horizontal .rangeslider__handle-tooltip:after {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid rgba(0, 0, 0, 0.8);
  left: 50%;
  bottom: -8px;
  transform: translate3d(-50%, 0, 0);
}
/**
* Rangeslider - Vertical slider
*/
.rangeslider-vertical {
  margin: 20px auto;
  height: 150px;
  max-width: 10px;
  background-color: transparent;
}
.rangeslider-vertical .rangeslider__fill,
.rangeslider-vertical .rangeslider__handle {
  position: absolute;
}
.rangeslider-vertical .rangeslider__fill {
  width: 100%;
  background-color: #7cb342;
  box-shadow: none;
  bottom: 0;
}
.rangeslider-vertical .rangeslider__handle {
  width: 30px;
  height: 10px;
  left: -10px;
  box-shadow: none;
}
.rangeslider-vertical .rangeslider__handle-tooltip {
  left: -100%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.rangeslider-vertical .rangeslider__handle-tooltip:after {
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid rgba(0, 0, 0, 0.8);
  left: 100%;
  top: 12px;
}
/**
* Rangeslider - Reverse
*/
.rangeslider-reverse.rangeslider-horizontal .rangeslider__fill {
  right: 0;
}
.rangeslider-reverse.rangeslider-vertical .rangeslider__fill {
  top: 0;
  bottom: inherit;
}
/**
* Rangeslider - Labels
*/
.rangeslider__labels {
  position: relative;
}
.rangeslider-vertical .rangeslider__labels {
  position: relative;
  list-style-type: none;
  margin: 0 0 0 24px;
  padding: 0;
  text-align: left;
  width: 250px;
  height: 100%;
  left: 10px;
}
.rangeslider-vertical .rangeslider__labels .rangeslider__label-item {
  position: absolute;
  transform: translate3d(0, -50%, 0);
}
.rangeslider-vertical .rangeslider__labels .rangeslider__label-item::before {
  content: '';
  width: 10px;
  height: 2px;
  background: black;
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.rangeslider__labels .rangeslider__label-item {
  position: absolute;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  top: 10px;
  transform: translate3d(-50%, 0, 0);
}
.rangeslider {
  background-color: #d4d4d4;
  box-shadow: none;
  height: 4px;
  border-radius: 2.5px; }

.rangeslider-horizontal .rangeslider__fill {
  background-color: #3431AC;
  box-shadow: none; }

.rangeslider-horizontal .rangeslider__handle {
  height: 15px;
  width: 15px;
  background-color: #3431AC;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15);
  border: solid 2px #06572c; }
  .rangeslider-horizontal .rangeslider__handle:after {
    display: none; }
  .rangeslider-horizontal .rangeslider__handle .rangeslider__handle-label {
    font-size: 14px;
    top: 18px;
    position: absolute;
    transform: translateX(-50%);
    left: 50%; }

.rangeslider-horizontal.disabled .rangeslider__handle {
  background-color: #B8B8B9;
  box-shadow: none; }

.rangeslider-horizontal.disabled .rangeslider__fill {
  background-color: #B8B8B9; }
.modal-container {
  background: #fff;
  border-radius: 16px;
  overflow: visible;
  width: 520px; }

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #f0f1f3;
  background: #fafbfc;
  border-radius: 16px 16px 0 0 !important; }
  .modal-header .heading {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0; }
  .modal-header .close-icon {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #9ca3af;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    font-size: 0;
    line-height: 0;
    top: 0; }
    .modal-header .close-icon:hover {
      color: #374151;
      background: #f3f4f6; }

.modal-body {
  padding: 20px 24px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #374151; }
  .modal-body .modal-text {
    display: block;
    margin-bottom: 8px;
    color: #374151; }
    .modal-body .modal-text:last-child {
      margin-bottom: 0; }
  .modal-body b {
    font-weight: 600;
    color: #1a1a2e; }

.modal-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-top: 1px solid #f0f1f3;
  background: #fafbfc;
  border-radius: 0 0 16px 16px !important; }
  .modal-footer .btn-primary {
    padding: 9px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    background: #3431ac;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.15s ease; }
    .modal-footer .btn-primary:hover {
      background: #2a279a; }
    .modal-footer .btn-primary:disabled {
      background: #d1d5db;
      color: #9ca3af;
      cursor: not-allowed; }
  .modal-footer .btn-outline-primary {
    padding: 9px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    background: #fff;
    color: #374151;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.15s ease; }
    .modal-footer .btn-outline-primary:hover {
      background: #f9fafb;
      border-color: #d1d5db; }
  .modal-footer .btn-danger {
    padding: 9px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    background: #dc2626;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.15s ease; }
    .modal-footer .btn-danger:hover {
      background: #b91c1c; }
    .modal-footer .btn-danger:disabled {
      background: #d1d5db;
      color: #9ca3af;
      cursor: not-allowed; }
.ant-modal .ant-modal-content {
  border-radius: 16px;
  overflow: visible;
  padding: 0;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

.ant-modal .ant-modal-header {
  background: #fafbfc;
  border-bottom: 1px solid #f0f1f3;
  padding: 20px 24px;
  margin: 0;
  border-radius: 16px 16px 0 0; }
  .ant-modal .ant-modal-header .ant-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e; }

.ant-modal .ant-modal-close {
  top: 20px;
  right: 24px;
  color: #9ca3af;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease; }
  .ant-modal .ant-modal-close:hover {
    color: #374151;
    background: #f3f4f6; }

.ant-modal .ant-modal-body {
  padding: 24px; }

.ant-modal .ant-modal-footer {
  background: #fafbfc;
  border-top: 1px solid #f0f1f3;
  padding: 16px 24px;
  margin: 0;
  border-radius: 0 0 16px 16px; }
  .ant-modal .ant-modal-footer .ant-btn {
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    height: 38px;
    padding: 0 24px;
    transition: all 0.15s ease; }
  .ant-modal .ant-modal-footer .ant-btn-primary {
    background: #3431ac;
    border-color: #3431ac; }
    .ant-modal .ant-modal-footer .ant-btn-primary:hover {
      background: #2a279a;
      border-color: #2a279a; }
  .ant-modal .ant-modal-footer .ant-btn-default {
    border-color: #e5e7eb;
    color: #374151; }
    .ant-modal .ant-modal-footer .ant-btn-default:hover {
      border-color: #d1d5db;
      color: #374151;
      background: #f9fafb; }
.MuiDialog-paper {
  border-radius: 16px !important;
  overflow: visible; }

.MuiDialogTitle-root {
  background: #fafbfc;
  border-bottom: 1px solid #f0f1f3;
  padding: 20px 24px !important;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  border-radius: 16px 16px 0 0; }

.MuiDialogContent-root {
  padding: 24px !important;
  font-size: 14px;
  line-height: 1.6;
  color: #374151; }

.MuiDialogActions-root {
  background: #fafbfc;
  border-top: 1px solid #f0f1f3;
  padding: 16px 24px !important;
  gap: 10px;
  border-radius: 0 0 16px 16px; }
  .MuiDialogActions-root .MuiButton-root {
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 24px;
    text-transform: none;
    transition: all 0.15s ease; }
  .MuiDialogActions-root .MuiButton-textPrimary {
    background: #3431ac;
    color: #fff; }
    .MuiDialogActions-root .MuiButton-textPrimary:hover {
      background: #2a279a; }
  .MuiDialogActions-root .MuiButton-containedSecondary {
    background: #dc2626;
    color: #fff; }
    .MuiDialogActions-root .MuiButton-containedSecondary:hover {
      background: #b91c1c; }
  .MuiDialogActions-root .MuiButton-text:not(.MuiButton-textPrimary) {
    background: #fff;
    color: #374151;
    border: 1px solid #e5e7eb; }
    .MuiDialogActions-root .MuiButton-text:not(.MuiButton-textPrimary):hover {
      background: #f9fafb;
      border-color: #d1d5db; }
.loading-component {
  width: 100%;
  height: 100%;
  padding: 12px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000; }
  .loading-component.loading-in-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F7F7F799; }
  .loading-component_loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 14px;
    max-width: 54px;
    padding: 0;
    margin: 0; }

@keyframes loading {
  0% {
    width: 10px;
    height: 10px;
    opacity: 0.4;
    margin: 0 4px; }
  25% {
    width: 13px;
    height: 13px;
    opacity: 0.7;
    margin: 0 3px; }
  50% {
    width: 14px;
    height: 14px;
    opacity: 1;
    margin: 0 2px; }
  75% {
    width: 13px;
    height: 13px;
    opacity: 0.7;
    margin: 0 3px; }
  100% {
    width: 10px;
    height: 10px;
    opacity: 0.4;
    margin: 0 4px; } }
  .loading-component_circle {
    width: 10px;
    height: 10px;
    opacity: 0.4;
    border-radius: 50%;
    background-color: #666666;
    margin: 0 4px; }
  .loading-component_circle-white {
    width: 10px;
    height: 10px;
    opacity: 0.4;
    border-radius: 50%;
    background-color: #fff;
    margin: 0 4px; }
  .loading-component #loading-circle-first {
    animation: loading 0.6s linear 0s infinite; }
  .loading-component #loading-circle-second {
    animation: loading 0.6s linear 0.2s infinite; }
  .loading-component #loading-circle-last {
    animation: loading 0.6s linear 0.4s infinite; }
.notification {
  padding: 13px 20px;
  border-radius: 5px; }
  .notification.success {
    background-color: #3431AC;
    color: #ffffff; }
    .notification.success > button {
      color: #ffffff;
      opacity: 1; }
  .notification.error {
    background-color: #D85147;
    color: #ffffff; }
    .notification.error > button {
      color: #ffffff;
      opacity: 1; }
  .notification > button {
    align-self: center; }
  .notification-body {
    display: flex;
    align-items: center;
    white-space: pre-wrap; }
    .notification-body img {
      display: block;
      margin-right: 30px; }
/**
 * React Select
 * ============
 * Created by Jed Watson and Joss Mackison for KeystoneJS, http://www.keystonejs.com/
 * https://twitter.com/jedwatson https://twitter.com/jossmackison https://twitter.com/keystonejs
 * MIT License: https://github.com/JedWatson/react-select
*/
@keyframes Select-animation-spin {
  to {
    transform: rotate(1turn); } }

.Select {
  position: relative; }
  .Select input::-webkit-contacts-auto-fill-button,
  .Select input::-webkit-credentials-auto-fill-button {
    display: none !important; }
  .Select input::-ms-clear {
    display: none !important; }
  .Select input::-ms-reveal {
    display: none !important; }
  .Select,
  .Select div,
  .Select input,
  .Select span {
    box-sizing: border-box; }
  .Select.is-disabled .Select-arrow-zone {
    cursor: default;
    pointer-events: none; }
  .Select.is-disabled > .Select-control {
    background-color: #f9f9f9; }
    .Select.is-disabled > .Select-control:hover {
      box-shadow: none; }
  .Select.is-searchable.is-open > .Select-control {
    cursor: text; }
  .Select.is-searchable.is-focused:not(.is-open) > .Select-control {
    cursor: text; }
  .Select.is-open > .Select-control {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background: #fff;
    border-color: #b3b3b3 #ccc #d9d9d9; }
    .Select.is-open > .Select-control .Select-arrow {
      top: -2px;
      border-color: transparent transparent #999;
      border-width: 0 5px 5px; }
  .Select.is-focused > .Select-control {
    background: #fff; }
  .Select.is-focused:not(.is-open) > .Select-control {
    border-color: #08c #0099e6 #0099e6;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 5px -1px fade(#08c, 50%); }
  .Select.has-value.is-clearable.Select--single > .Select-control .Select-value {
    padding-right: 42px; }
  .Select.has-value.Select--single > .Select-control .Select-value .Select-value-label,
  .Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value .Select-value-label {
    color: #333; }
  .Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label,
  .Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label {
    cursor: pointer;
    text-decoration: none; }
    .Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:hover, .Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:focus,
    .Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:hover,
    .Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:focus {
      color: #08c;
      outline: none;
      text-decoration: underline; }
    .Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:focus,
    .Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:focus {
      background: #fff; }
  .Select.has-value.is-pseudo-focused .Select-input {
    opacity: 0; }
  .Select.is-open .Select-arrow,
  .Select .Select-arrow-zone:hover > .Select-arrow {
    border-top-color: #666; }
  .Select.Select--rtl {
    direction: rtl;
    text-align: right; }

.Select-control {
  background-color: #fff;
  border-color: #d9d9d9 #ccc #b3b3b3;
  border-radius: 0;
  border: 1px solid #ccc;
  color: #333;
  cursor: default;
  display: table;
  border-spacing: 0;
  border-collapse: separate;
  height: 36px;
  outline: none;
  overflow: hidden;
  position: relative;
  width: 100%; }
  .Select-control:hover {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06); }
  .Select-control .Select-input:focus {
    outline: none;
    background: #fff; }

.Select-placeholder,
.Select--single > .Select-control .Select-value {
  bottom: 0;
  color: #aaa;
  left: 0;
  line-height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  right: 0;
  top: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.Select-input {
  height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle; }
  .Select-input > input {
    width: 100%;
    background: none transparent;
    border: 0 none;
    box-shadow: none;
    cursor: default;
    display: inline-block;
    font-family: inherit;
    font-size: inherit;
    margin: 0;
    outline: none;
    line-height: 17px;
    /* For IE 8 compatibility */
    padding: 8px 0 12px;
    /* For IE 8 compatibility */
    -webkit-appearance: none; }
    .is-focused .Select-input > input {
      cursor: text; }

.Select-control:not(.is-searchable) > .Select-input {
  outline: none; }

.Select-loading-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 16px; }

.Select-loading {
  animation: Select-animation-spin 400ms infinite linear;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-right-color: #333;
  display: inline-block;
  position: relative;
  vertical-align: middle; }

.Select-clear-zone {
  animation: Select-animation-fadeIn 200ms;
  color: #999;
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 17px; }
  .Select-clear-zone:hover {
    color: #D0021B; }

.Select-clear {
  display: inline-block;
  font-size: 18px;
  line-height: 1; }

.Select--multi .Select-clear-zone {
  width: 17px; }

.Select--multi .Select-multi-value-wrapper {
  display: inline-block; }

.Select .Select-aria-only {
  position: absolute;
  display: inline-block;
  height: 1px;
  width: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  float: left; }

.Select-arrow-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 25px;
  padding-right: 5px; }
  .Select--rtl .Select-arrow-zone {
    padding-right: 0;
    padding-left: 5px; }

.Select-arrow {
  border-color: #999 transparent transparent;
  border-style: solid;
  border-width: 5px 5px 2.5px;
  display: inline-block;
  height: 0;
  width: 0;
  position: relative; }

@keyframes Select-animation-fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.Select-menu-outer {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top-color: #e6e6e6;
  box-shadow: 0 2px 15px 0 rgba(196, 206, 220, 0.5);
  box-sizing: border-box;
  margin-top: -1px;
  max-height: 200px;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 1000;
  -webkit-overflow-scrolling: touch; }

.Select-menu {
  max-height: 198px;
  overflow-y: auto; }

.Select-option {
  box-sizing: border-box;
  background-color: #fff;
  color: #666666;
  cursor: pointer;
  display: block;
  padding: 8px 10px; }
  .Select-option:last-child {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }
  .Select-option.is-selected {
    background-color: #f5faff;
    color: #333; }
  .Select-option.is-focused {
    background-color: #f2f9fc;
    color: #333; }
  .Select-option.is-disabled {
    color: #cccccc;
    cursor: default; }

.Select-noresults {
  box-sizing: border-box;
  color: #999999;
  cursor: default;
  display: block;
  padding: 8px 10px; }

.Select--multi .Select-input {
  vertical-align: middle;
  margin-left: 10px;
  padding: 0; }

.Select--multi.Select--rtl .Select-input {
  margin-left: 0;
  margin-right: 10px; }

.Select--multi.has-value .Select-input {
  margin-left: 5px; }

.Select--multi .Select-value {
  background-color: #f2f9fc;
  border-radius: 2px;
  border: 1px solid #c9e6f2;
  color: #08c;
  display: inline-block;
  font-size: 0.9em;
  margin-left: 5px;
  margin-top: 5px;
  vertical-align: top; }

.Select--multi .Select-value-icon,
.Select--multi .Select-value-label {
  display: inline-block;
  vertical-align: middle; }

.Select--multi .Select-value-label {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
  cursor: default;
  padding: 2px 5px; }

.Select--multi a.Select-value-label {
  color: #08c;
  cursor: pointer;
  text-decoration: none; }
  .Select--multi a.Select-value-label:hover {
    text-decoration: underline; }

.Select--multi .Select-value-icon {
  cursor: pointer;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  border-right: 1px solid #c9e6f2;
  padding: 1px 5px 3px; }
  .Select--multi .Select-value-icon:hover, .Select--multi .Select-value-icon:focus {
    background-color: #ddeff7;
    color: #0077b3; }
  .Select--multi .Select-value-icon:active {
    background-color: #c9e6f2; }

.Select--multi.Select--rtl .Select-value {
  margin-left: 0;
  margin-right: 5px; }

.Select--multi.Select--rtl .Select-value-icon {
  border-right: none;
  border-left: 1px solid #c9e6f2; }

.Select--multi.is-disabled .Select-value {
  background-color: #fcfcfc;
  border: 1px solid #e3e3e3;
  color: #333; }

.Select--multi.is-disabled .Select-value-icon {
  cursor: not-allowed;
  border-right: 1px solid #e3e3e3; }
  .Select--multi.is-disabled .Select-value-icon:hover, .Select--multi.is-disabled .Select-value-icon:focus, .Select--multi.is-disabled .Select-value-icon:active {
    background-color: #fcfcfc; }

@keyframes Select-animation-spin {
  to {
    transform: rotate(1turn); } }

.Select {
  font-size: 14px; }
  .Select.is-disabled > .Select-control {
    opacity: 0.4;
    background: none; }
  .Select .Select-clear-zone {
    display: none; }
  .Select .Select-arrow {
    border: none;
    font: normal normal normal 16px/1 FontAwesome;
    color: #3431AC;
    text-align: center;
    display: inline; }
    .Select .Select-arrow:after {
      content: '\F107'; }
  .Select.is-open .Select-arrow:after {
    content: '\F106'; }
  .Select input {
    width: 100%; }

.rounded > .Select-control {
  border-radius: 17px; }
  .rounded > .Select-control .Select-value {
    padding: 0 20px; }
  .rounded > .Select-control div.Select-input {
    padding: 0 20px; }
  .rounded > .Select-control .Select-arrow-zone {
    padding-right: 20px; }
  .rounded > .Select-control .Select-placeholder {
    padding: 0 20px; }

.rounded > .Select-menu-outer {
  border-radius: 0 0 17px 17px; }
  .rounded > .Select-menu-outer .Select-option {
    padding: 8px 20px; }
    .rounded > .Select-menu-outer .Select-option:last-child {
      border-radius: 0 0 17px 17px; }

.light > .Select-control {
  border-width: 0 0 1px 0; }
  .light > .Select-control .Select-value .Select-value-label {
    color: #000;
    font-weight: 400;
    font-size: 14px; }
  .light > .Select-control .Select-placeholder {
    opacity: 0.6;
    font-size: 14px;
    color: #959595;
    font-weight: normal; }

.light > .Select-menu-outer {
  border: none; }
  .light > .Select-menu-outer .Select-option:last-child {
    border: none; }

.multi > .Select-control {
  border-width: 0 !important; }
  .multi > .Select-control:hover {
    box-shadow: none; }
  .multi > .Select-control > .Select-multi-value-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1%; }
    .multi > .Select-control > .Select-multi-value-wrapper > .Select-placeholder {
      top: 8px; }
    .multi > .Select-control > .Select-multi-value-wrapper > .Select-input {
      width: 100%;
      order: 0;
      margin: 0;
      border: 1px solid #ccc;
      border-radius: 4px; }
      .multi > .Select-control > .Select-multi-value-wrapper > .Select-input input {
        margin: 0;
        padding: 0 10px;
        background: transparent;
        line-height: 36px; }
    .multi > .Select-control > .Select-multi-value-wrapper > .Select-value {
      order: 1;
      margin-left: 0;
      margin-right: 5px;
      position: relative;
      border: 1px solid #3431ac;
      border-radius: 25px;
      background-color: #3431ac05;
      padding: 7px 36px 7px 14px; }
      .multi > .Select-control > .Select-multi-value-wrapper > .Select-value .Select-value-label {
        padding: 0;
        font-size: 13px;
        color: #3431ac !important;
        line-height: 16px;
        max-width: 40ch;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden; }
      .multi > .Select-control > .Select-multi-value-wrapper > .Select-value .Select-value-icon {
        position: absolute;
        width: 20px;
        height: 20px;
        background-color: #3431AC;
        top: 7px;
        right: 8px;
        color: #fff;
        font-weight: bold;
        text-align: center;
        border-radius: 10px;
        padding: 0;
        border: none;
        line-height: 20px;
        font-size: 14px; }
  .multi > .Select-control > .Select-arrow-zone {
    display: none; }
  .multi > .Select-control.is-focused:not(.is-open) > .Select-control {
    border: none;
    box-shadow: none; }

.multi .Select-menu-outer {
  top: 48px; }

.multi > .Select-menu-outer {
  border: none; }
  .multi > .Select-menu-outer .Select-option:last-child {
    border: none; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.dashboard-base {
  height: 100%;
  display: flex;
  align-items: stretch; }
  .dashboard-base .dashboard-content {
    flex: 1 1 auto;
    height: 100%;
    overflow: auto;
    background-color: #F8F9FC; }
    @media (max-width: 1200px) {
      .dashboard-base .dashboard-content {
        padding-top: 40px; }
        .dashboard-base .dashboard-content:before {
          content: '';
          position: fixed;
          top: 0;
          left: 0;
          height: 40px;
          width: 100%;
          background-color: #3431AC;
          z-index: 100; } }
    @media (max-width: 540px) {
      .dashboard-base .dashboard-content {
        padding-top: 0; }
        .dashboard-base .dashboard-content::before {
          content: unset; } }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.app-search-field {
  position: relative;
  width: 100%; }

.app-search-field__icon {
  position: absolute;
  left: 12px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none; }

.app-search-field__input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px 10px 40px !important;
  border-radius: 8px !important;
  border: 1.5px solid #e5e7eb;
  font-size: 14px;
  color: #374151;
  background: #fff;
  outline: none;
  font-family: inherit;
  transition: border-color 150ms ease, box-shadow 150ms ease; }
  .app-search-field__input::-moz-placeholder {
    color: #9ca3af; }
  .app-search-field__input::placeholder {
    color: #9ca3af; }
  .app-search-field__input:focus {
    border-color: #5046e5;
    box-shadow: 0 0 0 3px rgba(80, 70, 229, 0.12); }
  .app-search-field__input:disabled {
    opacity: 0.5;
    cursor: not-allowed; }
.selectedRowBackground {
  background: #eef2ff; }

.dropDownIcon {
  cursor: pointer;
  padding-left: 20px; }

.reward-used-in-parent {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 19px;
  margin-left: 25px; }

.reward-used-in-Icon {
  height: 20px; }

.table-wrapper .table-container > table > thead > tr {
  border-bottom: 1px solid #e5e7eb; }

.table-wrapper .table-container > table > tbody > tr {
  border-bottom: 1px solid #f0f1f5;
  transition: background-color 0.15s ease; }
  .table-wrapper .table-container > table > tbody > tr:last-child {
    border-bottom: none; }
  .table-wrapper .table-container > table > tbody > tr:hover {
    background-color: #f9fafb; }
.Preivew__Button .preview-button-containor {
  text-decoration: underline; }

.ReferredJobPostBody__container .center-title-icons {
  display: flex; }
  .ReferredJobPostBody__container .center-title-icons div {
    margin-right: .3rem; }

.ReferredJobPostBody__container .show-more {
  color: rgba(11, 149, 224, 0.905);
  font-size: 1rem;
  cursor: pointer; }

.ReferredJobPostBody__container .show-org-overview {
  height: auto;
  overflow: auto; }

.ReferredJobPostBody__container .hide-org-overview {
  height: 110px;
  overflow: hidden; }

.ReferredJobPostBody__container .remove-org-padding {
  padding-bottom: 0px !important; }

.ReferredJobPostBody__container .btn-apply-preview {
  padding: 0px 20px;
  width: 100px;
  height: 40px;
  background: #3431AC;
  border: 1px solid #3431AC;
  box-shadow: 0px 2px 4px rgba(147, 157, 177, 0.3);
  border-radius: 4px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: .3rem;
  font-style: normal;
  font-weight: 500;
  font-size: 14px; }

.ReferredJobPostBody__container .btn-refer-preview {
  width: 100px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #3431AC;
  color: #3431AC;
  display: flex;
  justify-content: center;
  align-items: center;
  font-style: normal;
  font-weight: 500;
  font-size: 14px; }
  .ReferredJobPostBody__container .btn-refer-preview .refer-margin {
    margin-left: .2rem; }
.location-select-container {
  margin-top: 0 !important;
  position: relative;
  z-index: 3; }
  .location-select-container .loading {
    border: 0.5px solid #c2c2c2;
    border-radius: 4px;
    margin-top: 10px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    background-color: #ffffff;
    z-index: 2; }
  .location-select-container .loading-text {
    font-size: 15px;
    color: #999999; }
  .location-select-container .suggestions-cont {
    border: 1px solid #c2c2c2;
    border-radius: 4px;
    margin-top: 10px;
    position: absolute;
    width: 100%;
    background-color: #ffffff;
    z-index: 2; }
  .location-select-container .suggestion-item {
    cursor: pointer;
    padding: 7px 0px;
    background-color: #ffffff;
    padding: 8px 10px;
    font-size: 14px;
    border-radius: 4px; }
  .location-select-container .suggestion-item--active {
    background-color: #deebff; }
  .location-select-container .MuiInputLabel-root {
    color: #c2c2c2 !important;
    font-size: 14px; }

.filtered-job-item {
  cursor: pointer;
  padding: 7px 0px;
  background-color: #ffffff;
  padding: 8px 10px;
  font-size: 14px;
  border-radius: 4px; }
  .filtered-job-item:hover {
    background-color: #deebff; }
.redux-select-container {
  position: relative; }
  .redux-select-container .Select--single.is-focused .Select-control {
    border: 2px solid #3431ac !important; }
  .redux-select-container .Select--single.is-focused.multi .Select-input {
    border: 2px solid #3431ac !important; }
  .redux-select-container .Select--multi.is-focused.multi .Select-input {
    border: 2px solid #3431ac !important; }
  .redux-select-container .select-label {
    position: absolute;
    top: -7px;
    left: 8px;
    z-index: 1;
    background: #fff;
    color: #969696;
    font-size: 12px;
    padding: 0px 6px; }
    .redux-select-container .select-label.focused {
      color: #3431ac; }
  .redux-select-container .disabled {
    position: absolute;
    height: 80px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100; }
  .redux-select-container .Select-multi-value-wrapper {
    margin-top: 0 !important; }
    .redux-select-container .Select-multi-value-wrapper .Select-placeholder {
      top: 0px !important; }

/* Multi: hide values in control, show pills below (Skills / ReduxFormAsyncSelectLatest pattern) */
.redux-select-container--chips-below {
  /*
   * Use flex on the control so the value wrapper shares space with the arrow. With display:table,
   * a flex child for the wrapper plus a table-cell arrow often collapses the arrow (still display:none
   * from global `.multi` until we override below).
   */
  /* Global utils/react-select.scss hides the arrow for all `.multi`; show it here like single-select fields */ }
  .redux-select-container--chips-below .Select.Select--multi > .Select-control {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    width: 100% !important; }
  .redux-select-container--chips-below .Select.Select--multi > .Select-control > .Select-arrow-zone {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    width: 36px !important;
    min-width: 36px !important;
    padding-right: 5px !important;
    padding-bottom: 0 !important; }
  .redux-select-container--chips-below .Select--multi > .Select-control > .Select-multi-value-wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    margin: 0 !important;
    flex: 1 1 auto !important;
    min-width: 0 !important; }
  .redux-select-container--chips-below .Select--multi > .Select-control > .Select-multi-value-wrapper > .Select-input {
    border: none !important;
    width: auto !important;
    flex: 1 1 auto !important;
    min-width: 60px !important;
    margin: 0 0 0 12px !important;
    padding: 0 4px 0 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important; }
  .redux-select-container--chips-below .Select--multi > .Select-control > .Select-multi-value-wrapper > .Select-input > input {
    padding: 6px 0 !important;
    line-height: 22px !important; }
  .redux-select-container--chips-below .Select--multi > .Select-control > .Select-multi-value-wrapper > .Select-placeholder {
    position: relative !important;
    top: 0 !important;
    color: #959595 !important;
    line-height: 38px !important;
    margin: 0 !important;
    padding-left: 12px !important; }
  .redux-select-container--chips-below .Select-multi-value-wrapper.redux-select-chips-below {
    display: flex;
    flex-wrap: wrap;
    margin-top: 6px !important;
    gap: 6px 8px; }
    .redux-select-container--chips-below .Select-multi-value-wrapper.redux-select-chips-below .Select-value {
      position: relative;
      margin: 0;
      border: 1px solid #3431ac;
      border-radius: 25px;
      background-color: rgba(52, 49, 172, 0.04);
      display: inline-flex;
      align-items: center;
      font-size: 0.9em;
      padding: 7px 36px 7px 14px;
      max-width: 100%; }
    .redux-select-container--chips-below .Select-multi-value-wrapper.redux-select-chips-below .Select-value-label {
      padding: 0;
      font-size: 13px;
      color: #3431ac;
      line-height: 16px;
      max-width: 40ch;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
    .redux-select-container--chips-below .Select-multi-value-wrapper.redux-select-chips-below .Select-value-icon {
      position: absolute;
      width: 20px;
      height: 20px;
      background-color: #3431ac;
      top: 50%;
      right: 8px;
      margin-top: -10px;
      color: #fff;
      font-weight: bold;
      text-align: center;
      border-radius: 10px;
      padding: 0;
      border: none;
      font-size: 14px;
      cursor: pointer;
      line-height: 20px; }
.redux-select-latest-container {
  position: relative;
  z-index: 2; }
  .redux-select-latest-container.no-z-index {
    z-index: unset; }
  .redux-select-latest-container--outlined .redux-select-latest-container__placeholder-inner {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 22px; }
  .redux-select-latest-container--outlined .redux-select-latest-container__search-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    color: #9ca3af;
    flex-shrink: 0; }
  .redux-select-latest-container--outlined .skills-placeholder-text {
    position: static !important;
    top: auto !important;
    padding-top: 0 !important;
    line-height: 22px !important;
    color: #959595 !important; }
  .redux-select-latest-container .select-label {
    position: absolute;
    top: -7px;
    left: 8px;
    z-index: 1;
    background: #fff;
    color: #969696;
    font-size: 12px;
    padding: 0px 6px; }
    .redux-select-latest-container .select-label.focused {
      color: #3431ac; }
    .redux-select-latest-container .select-label--outlined {
      color: #6b7280; }
      .redux-select-latest-container .select-label--outlined.focused {
        color: #3431ac; }
  .redux-select-latest-container .select-job-label.focused {
    color: rgba(128, 128, 128, 0.54) !important; }
  .redux-select-latest-container .CustomOption__container {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer; }
    .redux-select-latest-container .CustomOption__container .job-drop-down {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      list-style: none;
      text-decoration: none;
      border: none; }
      .redux-select-latest-container .CustomOption__container .job-drop-down div {
        font-weight: 400;
        font-size: 14px; }
    .redux-select-latest-container .CustomOption__container .option-checkbox {
      width: 20px;
      height: 20px;
      background: transparent; }
      .redux-select-latest-container .CustomOption__container .option-checkbox .MuiSvgIcon-fontSizeSmall {
        font-size: 16px; }
  .redux-select-latest-container .Select-multi-value-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 6px !important;
    gap: 6px 8px; }
    .redux-select-latest-container .Select-multi-value-wrapper .Select-value {
      position: relative !important;
      margin: 0 !important;
      border: 1px solid #3431ac !important;
      border-radius: 25px !important;
      background-color: rgba(52, 49, 172, 0.04) !important;
      display: inline-flex !important;
      align-items: center !important;
      font-size: 0.9em !important;
      padding: 7px 36px 7px 14px !important;
      max-width: 100%; }
    .redux-select-latest-container .Select-multi-value-wrapper .Select-value-label {
      padding: 0 !important;
      font-size: 13px !important;
      color: #3431ac !important;
      line-height: 16px !important;
      max-width: 40ch;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
    .redux-select-latest-container .Select-multi-value-wrapper .Select-value-icon {
      position: absolute !important;
      width: 20px !important;
      height: 20px !important;
      background-color: #3431ac !important;
      top: 50% !important;
      right: 8px !important;
      margin-top: -10px !important;
      color: #fff !important;
      font-weight: bold !important;
      text-align: center !important;
      border-radius: 10px !important;
      padding: 0 !important;
      border: none !important;
      font-size: 14px !important;
      cursor: pointer !important;
      line-height: 20px !important; }
  .redux-select-latest-container .skills-placeholder-text {
    font-size: 14px !important;
    color: rgba(128, 128, 128, 0.54); }
  .redux-select-latest-container__placeholder-inner {
    display: flex;
    align-items: center;
    gap: 6px; }
    .redux-select-latest-container__placeholder-inner svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      vertical-align: middle;
      color: rgba(128, 128, 128, 0.54); }
  .redux-select-latest-container .custom-opportunity-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.details-background {
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative; }
  .details-background .logo {
    position: absolute;
    bottom: -60px;
    left: 40px;
    z-index: 1;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); }
    @media (max-width: 540px) {
      .details-background .logo {
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); } }
    .details-background .logo img {
      display: block;
      border-radius: 10px;
      max-height: 160px;
      max-width: 160px; }

.details-info {
  padding: 60px 40px 25px;
  position: relative; }
  .details-info .func-buttons-container {
    position: absolute;
    top: -25px;
    right: 40px;
    z-index: 5; }
    @media (max-width: 540px) {
      .details-info .func-buttons-container {
        right: auto;
        left: 50%;
        transform: translateX(-50%); } }
    .details-info .func-buttons-container .btn {
      min-width: 140px;
      margin-left: 20px; }
  .details-info .dashboard-sides-container {
    display: flex; }
    .details-info .dashboard-sides-container .left-side {
      width: 61.2%;
      margin-right: 0;
      flex: 0 0 auto; }
    .details-info .dashboard-sides-container .right-side {
      width: calc(38.8% - 30px);
      flex: 0 0 auto; }
    @media (max-width: 960px) {
      .details-info .dashboard-sides-container {
        display: block; }
        .details-info .dashboard-sides-container .left-side,
        .details-info .dashboard-sides-container .right-side {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; } }
  .details-info .sides-container {
    display: flex;
    max-width: 1000px;
    margin: auto; }
    .details-info .sides-container .left-side {
      width: 71.2%;
      margin-right: 0;
      flex: 0 0 auto; }
    .details-info .sides-container .right-side {
      width: calc(38.8% - 30px);
      flex: 0 0 auto; }
    @media (max-width: 960px) {
      .details-info .sides-container {
        display: block; }
        .details-info .sides-container .left-side,
        .details-info .sides-container .right-side {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; } }
  .details-info .sides-container-reverse {
    display: flex; }
    .details-info .sides-container-reverse .left-side {
      width: 20%;
      flex: 0 0 auto;
      padding-top: 36px; }
    .details-info .sides-container-reverse .right-side {
      width: 60%;
      flex: 0 0 auto; }
    @media (max-width: 960px) {
      .details-info .sides-container-reverse {
        display: block; }
        .details-info .sides-container-reverse .right-side {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; }
        .details-info .sides-container-reverse .left-side {
          display: none; } }
  .details-info .main-container {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0px 2px 4px rgba(147, 157, 177, 0.25); }
    .details-info .main-container .title-default-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px; }
    .details-info .main-container .main-container-title {
      font-size: 20px;
      color: #444444;
      font-weight: 700;
      margin-bottom: 24px;
      padding-left: 10px; }
    .details-info .main-container .basic-info:last-child {
      margin-bottom: 0; }
    .details-info .main-container .list .Select-control {
      border-width: 1px;
      border-radius: 4px; }
  .details-info .actions-container {
    margin-top: 20px;
    display: flex;
    justify-content: space-between; }
    .details-info .actions-container button.btn-primary {
      margin-left: 20px; }
  @media (max-width: 540px) {
    .details-info {
      padding: 60px 20px 15px; } }

.perks input {
  width: 100%;
  margin-bottom: 20px; }

.perks ul {
  list-style: none; }
  .perks ul li {
    border-radius: 25px;
    display: inline-block;
    margin: 0 20px 10px 0;
    background-color: #f5f7f8;
    font-size: 13px;
    font-weight: bold;
    color: #18332f; }
    .perks ul li.edit {
      padding: 5px 5px 5px 20px; }
      .perks ul li.edit .close {
        background-color: #3431AC;
        color: #ffffff;
        display: inline-block;
        height: 22px;
        width: 22px;
        font-size: 16px;
        line-height: 21px;
        font-weight: bold;
        text-align: center;
        border-radius: 50%;
        margin-left: 10px;
        cursor: pointer; }

.youtube iframe {
  width: 100%; }

.referal-activity {
  height: 430px;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  background-color: #ffffff; }
  @media screen and (max-width: 768px) {
    .referal-activity {
      width: 95%; } }
  .referal-activity .no-metric-to-show {
    font-style: normal;
    padding-left: 25px;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    display: flex;
    align-items: center;
    color: #444444; }
  .referal-activity .loader-grid {
    display: grid;
    grid-template-columns: 10% 65% 25%;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e8e8e8; }
  .referal-activity h2 {
    border-bottom: none; }
  .referal-activity .subtitle {
    font-size: 14px;
    line-height: 16px;
    color: rgba(0, 0, 0, 0.3); }
  .referal-activity p {
    color: #444444;
    font-size: 16px; }
  .referal-activity .dashboard-widget-head {
    padding: 10px 15px; }

.chart-style {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  row-gap: 15px;
  position: relative;
  padding: 10px 15px; }
  .chart-style .rounded-loader {
    position: absolute;
    border-radius: 50%;
    background: white;
    width: 180px;
    height: 180px;
    z-index: 2;
    top: 18.5%;
    left: 22.5%;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center; }
    .chart-style .rounded-loader .data-bar {
      color: #959595;
      font-size: 24px;
      font-weight: 300; }
    @media screen and (max-width: 768px) {
      .chart-style .rounded-loader {
        width: 94px;
        height: 94px;
        top: 26%;
        left: 15%; } }
  .chart-style .doughnut-center {
    right: 35%;
    top: 28%;
    position: absolute;
    width: 30%; }
    @media screen and (max-width: 768px) {
      .chart-style .doughnut-center {
        top: 32%; } }
    .chart-style .doughnut-center .doughnut-data {
      display: flex;
      justify-content: space-around;
      align-items: center; }
      .chart-style .doughnut-center .doughnut-data .data-bar {
        color: #959595;
        font-size: 24px;
        font-weight: 300; }
      .chart-style .doughnut-center .doughnut-data .data-count {
        font-style: normal;
        font-weight: 900;
        font-size: 28px;
        text-align: center;
        margin: 0; }
        @media screen and (max-width: 768px) {
          .chart-style .doughnut-center .doughnut-data .data-count {
            font-size: 14px; } }
      .chart-style .doughnut-center .doughnut-data .data-percent {
        color: #444444;
        font-size: 14px;
        font-weight: 400; }
    .chart-style .doughnut-center .data-field-name {
      font-style: normal;
      font-weight: 700;
      text-align: center;
      font-size: 14px;
      color: #444444; }
      @media screen and (max-width: 768px) {
        .chart-style .doughnut-center .data-field-name {
          font-size: 10px; } }
  .chart-style .dot {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    display: inline-block; }
  .chart-style .doughnut-container .no-data-available {
    width: 50%;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 20px; }
  .chart-style .doughnut-container canvas.doughnut {
    width: 220px !important; }
  .chart-style .doughnut-labels {
    display: flex;
    justify-content: space-evenly;
    width: 100%; }
    .chart-style .doughnut-labels .labels button {
      cursor: pointer; }
    .chart-style .doughnut-labels .labels h4 {
      color: #959595;
      font-size: 14px;
      font-weight: 600; }
      @media screen and (max-width: 768px) {
        .chart-style .doughnut-labels .labels h4 {
          font-size: 10px; } }

.dashboard-widget {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 4px;
  background-color: #ffffff;
  max-width: 315px; }
  @media screen and (max-width: 768px) {
    .dashboard-widget {
      width: 95%; } }
  .dashboard-widget .loader-grid {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #f2f2f2;
    display: flex;
    justify-content: space-between; }
  .dashboard-widget .loader-button {
    display: flex;
    justify-content: center;
    border: none; }
  .dashboard-widget .subtitle {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 8px;
    color: rgba(0, 0, 0, 0.3); }
  .dashboard-widget p {
    color: #444444;
    font-size: 16px; }
  .dashboard-widget .view-more {
    display: flex;
    justify-content: center;
    padding: 10px 0; }
    .dashboard-widget .view-more button {
      font-size: 11px;
      font-weight: 400;
      cursor: pointer;
      color: #3431AC; }

.dashboard-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 10px;
       column-gap: 10px; }
  .dashboard-widget-head h2 {
    display: flex;
    align-items: center;
    gap: 8px; }
    .dashboard-widget-head h2 span {
      font-size: 20px;
      color: #444444;
      font-weight: 700; }
  @media screen and (max-width: 768px) {
    .dashboard-widget-head h2 {
      width: 90%;
      display: flex; }
      .dashboard-widget-head h2 span {
        padding-top: 10px;
        font-size: 14px; } }

.leaderboard-widget {
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: none;
  padding: 10px 15px;
  width: 90%;
  margin-right: 30px;
  margin-top: 20px;
  display: inline-block; }
  .leaderboard-widget h4 {
    font-size: 20px;
    font-weight: bold; }
  .leaderboard-widget .row {
    padding-bottom: 10px;
    margin-bottom: 10px; }
    .leaderboard-widget .row:last-of-type {
      margin: 0; }
    .leaderboard-widget .row > div {
      flex: inherit; }
      .leaderboard-widget .row > div > input:not([type='checkbox']),
      .leaderboard-widget .row > div select,
      .leaderboard-widget .row > div textarea {
        width: 100%; }
      .leaderboard-widget .row > div.inline {
        display: flex;
        align-items: center;
        justify-content: space-between; }
        .leaderboard-widget .row > div.inline h4 {
          margin: 0; }
  .leaderboard-widget .subtitle {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 8px;
    color: rgba(0, 0, 0, 0.3); }
  .leaderboard-widget .no-metric-to-show {
    font-style: normal;
    font-weight: 400;
    margin-top: 0px;
    font-size: 14px;
    line-height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #444444;
    text-align: center; }
  .leaderboard-widget .loader-separator {
    display: flex;
    justify-content: center;
    -moz-column-gap: 3px;
         column-gap: 3px; }
  .leaderboard-widget .loader-grid {
    display: grid;
    grid-template-columns: 1fr 5fr 1fr;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #f2f2f2;
    align-items: center;
    justify-content: center;
    gap: 15px; }
    .leaderboard-widget .loader-grid .user-loader {
      display: flex;
      flex-direction: column;
      row-gap: 5px;
      padding-top: 5px; }
  .leaderboard-widget p {
    color: #444444;
    font-size: 16px; }
  .leaderboard-widget .view-more {
    display: flex;
    justify-content: center;
    padding: 10px 0; }
    .leaderboard-widget .view-more button {
      font-size: 11px;
      font-weight: 400;
      cursor: pointer;
      color: #3431AC; }

.leaderboard-widget-content,
.leaderboard-widget-expand {
  padding-top: 20px; }
  .leaderboard-widget-content .row,
  .leaderboard-widget-expand .row {
    border-bottom: 1px solid #ebf0f3;
    display: flex; }
    .leaderboard-widget-content .row .center-count,
    .leaderboard-widget-expand .row .center-count {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 0.3rem; }
    .leaderboard-widget-content .row .card-count,
    .leaderboard-widget-expand .row .card-count {
      color: #22c76f;
      width: 10%;
      margin: 0.5rem; }
    .leaderboard-widget-content .row .card-count-first,
    .leaderboard-widget-expand .row .card-count-first {
      width: 40px;
      height: 45px;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      background-image: url(/bundles/68d5bc0beb42933f19ad1d8321713677.png);
      margin: 0px; }
    .leaderboard-widget-content .row .member-info,
    .leaderboard-widget-expand .row .member-info {
      display: flex;
      align-items: center;
      width: 85%; }
      .leaderboard-widget-content .row .member-info .avatar,
      .leaderboard-widget-expand .row .member-info .avatar {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 16px;
        position: relative; }
        .leaderboard-widget-content .row .member-info .avatar img,
        .leaderboard-widget-expand .row .member-info .avatar img {
          border-radius: 50%;
          width: 40px;
          border-color: black; }
        .leaderboard-widget-content .row .member-info .avatar .winner-overlay,
        .leaderboard-widget-expand .row .member-info .avatar .winner-overlay {
          position: absolute;
          right: -8%;
          top: 56%;
          width: 20px !important;
          height: 20px !important; }
          @media screen and (max-width: 768px) {
            .leaderboard-widget-content .row .member-info .avatar .winner-overlay,
            .leaderboard-widget-expand .row .member-info .avatar .winner-overlay {
              right: -8%; } }
          .leaderboard-widget-content .row .member-info .avatar .winner-overlay img,
          .leaderboard-widget-expand .row .member-info .avatar .winner-overlay img {
            max-width: 100%;
            display: block;
            border-radius: 50%;
            width: 100%; }
      .leaderboard-widget-content .row .member-info .member-content,
      .leaderboard-widget-expand .row .member-info .member-content {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 100%; }
        .leaderboard-widget-content .row .member-info .member-content .member-name,
        .leaderboard-widget-expand .row .member-info .member-content .member-name {
          font-size: 12px;
          font-weight: 700;
          color: #444444;
          width: calc(100% - 45px);
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis; }
        .leaderboard-widget-content .row .member-info .member-content .member-note,
        .leaderboard-widget-expand .row .member-info .member-content .member-note {
          font-size: 12px;
          font-weight: 400;
          color: #959595; }
  .leaderboard-widget-content.two-columns,
  .leaderboard-widget-expand.two-columns {
    display: flex; }
    .leaderboard-widget-content.two-columns .column,
    .leaderboard-widget-expand.two-columns .column {
      width: calc(50% - 15px);
      margin-right: 30px; }
      .leaderboard-widget-content.two-columns .column:last-of-type,
      .leaderboard-widget-expand.two-columns .column:last-of-type {
        margin: 0; }

.leaderboard-widget-expand {
  height: 720px;
  margin: auto;
  overflow-y: auto; }

.dashboard-widget-content,
.dashboard-widget-expand {
  padding-top: 20px; }
  .dashboard-widget-content .row,
  .dashboard-widget-expand .row {
    padding: 8px 10px 8px 0;
    border-bottom: 1px solid #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px; }
    .dashboard-widget-content .row h4,
    .dashboard-widget-expand .row h4 {
      font-size: 14px;
      font-weight: 500;
      color: #959595;
      margin: 0;
      width: 90%;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
    .dashboard-widget-content .row .card-count,
    .dashboard-widget-expand .row .card-count {
      color: #444444;
      font-size: 20px;
      font-weight: 900; }
  .dashboard-widget-content .row-fixed:last-child,
  .dashboard-widget-expand .row-fixed:last-child {
    border-bottom: none; }
  .dashboard-widget-content .row-change:first-child,
  .dashboard-widget-expand .row-change:first-child {
    border-top: 1px solid #f2f2f2; }
  .dashboard-widget-content .row-change h4,
  .dashboard-widget-expand .row-change h4 {
    color: #444444;
    font-weight: 700; }
  .dashboard-widget-content.two-columns,
  .dashboard-widget-expand.two-columns {
    display: flex; }
    .dashboard-widget-content.two-columns .column,
    .dashboard-widget-expand.two-columns .column {
      width: calc(50% - 15px);
      margin-right: 30px; }
      .dashboard-widget-content.two-columns .column:last-of-type,
      .dashboard-widget-expand.two-columns .column:last-of-type {
        margin: 0; }
  .dashboard-widget-content .no-data,
  .dashboard-widget-expand .no-data {
    text-align: center;
    height: 100px; }

.dashboard-widget-expand {
  height: 250px;
  margin: auto;
  overflow-y: auto; }

.sides-container .left-side {
  display: flex; }
  @media screen and (max-width: 768px) {
    .sides-container .left-side {
      flex-direction: column;
      row-gap: 20px; } }

.sides-container .flex-container {
  display: flex;
  flex-direction: column;
  row-gap: 20px; }
  .sides-container .flex-container > * {
    margin-right: 30px; }
  .sides-container .flex-container .referral-data-counts {
    display: flex;
    color: #444444;
    gap: 10px; }
    .sides-container .flex-container .referral-data-counts > * {
      background-color: #ffffff;
      flex: auto;
      padding: 10px 15px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      border-radius: 4px; }
    .sides-container .flex-container .referral-data-counts h2 {
      font-size: 20px; }
    .sides-container .flex-container .referral-data-counts p {
      font-size: 28px;
      font-weight: 900;
      margin: 0; }
    .sides-container .flex-container .referral-data-counts .hired-count {
      color: #3431AC; }
  .sides-container .flex-container .referral-data-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 8px 15px;
    gap: 20px;
    border-radius: 4px; }
    .sides-container .flex-container .referral-data-section .pipeline-stats {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #959595; }
      .sides-container .flex-container .referral-data-section .pipeline-stats div {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 7px; }
      .sides-container .flex-container .referral-data-section .pipeline-stats > div + div {
        margin-left: 16px;
        padding-left: 16px;
        border-left: 1px solid #959595; }
      .sides-container .flex-container .referral-data-section .pipeline-stats h4 {
        font-size: 14px;
        font-weight: 500; }
      .sides-container .flex-container .referral-data-section .pipeline-stats span {
        font-size: 20px;
        font-weight: 900; }
    .sides-container .flex-container .referral-data-section .referral-percent {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 400;
      font-size: 12px;
      color: #959595;
      gap: 5px; }
      .sides-container .flex-container .referral-data-section .referral-percent .progress-bar {
        flex: 1 1 auto;
        background-color: #d3dae6;
        border-radius: 3px;
        height: 8px; }
        .sides-container .flex-container .referral-data-section .referral-percent .progress-bar .progress {
          height: 8px;
          border-radius: 3px;
          background-color: rgba(80, 90, 108, 0.5);
          display: block; }
      .sides-container .flex-container .referral-data-section .referral-percent .bar-loading {
        background-color: #f2f2f2; }
        .sides-container .flex-container .referral-data-section .referral-percent .bar-loading .pro-load {
          background-color: rgba(205, 205, 205, 0.5);
          width: 68%; }
  .sides-container .flex-container .referral-data-pipeline .pipeline-content {
    color: #444444;
    display: flex;
    align-items: center; }
    .sides-container .flex-container .referral-data-pipeline .pipeline-content h3 {
      font-size: 14px;
      font-weight: 700;
      flex: 2 1 auto; }
    .sides-container .flex-container .referral-data-pipeline .pipeline-content span {
      flex: 1 1 auto;
      color: #3431AC;
      font-size: 28px;
      font-weight: 900; }
  .sides-container .flex-container .referral-data-pipeline canvas.referral-graph {
    height: 50px !important; }

.sides-container .right-side {
  color: #000000;
  padding: 8px 0px; }
  .sides-container .right-side h2 {
    font-size: 20px;
    font-weight: 700;
    color: #18332f; }
  .sides-container .right-side .quick-link-item {
    display: flex;
    flex-direction: column;
    margin-top: 16px; }
    .sides-container .right-side .quick-link-item .link-title {
      display: flex;
      align-items: center;
      margin-bottom: 2px;
      width: 90%; }
      .sides-container .right-side .quick-link-item .link-title .link-img {
        width: 24px;
        min-width: 24px;
        height: 24px;
        overflow: hidden;
        margin-right: 10px;
        border: 0.5px solid rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2px; }
        .sides-container .right-side .quick-link-item .link-title .link-img .company-logo {
          width: 100%;
          height: 100%; }
      .sides-container .right-side .quick-link-item .link-title .link-label {
        font-size: 12px;
        font-weight: 500;
        text-transform: uppercase;
        color: rgba(0, 0, 0, 0.8);
        width: 100%;
        display: flex;
        align-items: center; }
        .sides-container .right-side .quick-link-item .link-title .link-label .link-controls {
          flex: 1;
          display: flex;
          justify-content: flex-end;
          align-items: center; }
        .sides-container .right-side .quick-link-item .link-title .link-label .profile-infotip {
          margin-top: 4px; }
    .sides-container .right-side .quick-link-item .input-with-button {
      display: flex;
      width: 90%;
      align-items: center; }
      .sides-container .right-side .quick-link-item .input-with-button .md-input-outlined {
        position: relative;
        display: inline-block;
        padding-top: 6px;
        font-size: 16px;
        line-height: 1.5;
        width: 100%;
        flex: 1; }
      .sides-container .right-side .quick-link-item .input-with-button input {
        background: #ffffff;
        -webkit-appearance: none;
        box-sizing: border-box;
        margin: 0;
        border: solid 1px;
        border-radius: 4px;
        padding: 8px 10px 8px;
        width: 100%;
        min-height: 40px;
        box-shadow: none;
        font-family: inherit;
        font-size: 14px;
        line-height: 14px;
        caret-color: #000000;
        resize: none;
        outline: none;
        border-color: #ffffff;
        letter-spacing: 0.15px;
        color: #959595; }
      .sides-container .right-side .quick-link-item .input-with-button .right-btn {
        -webkit-tap-highlight-color: transparent;
        font: inherit;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 500;
        font-size: 14px;
        line-height: 16px;
        height: 40px;
        cursor: pointer;
        background: #ffffff;
        border: 1px solid #3431AC;
        box-sizing: border-box;
        border-radius: 4px;
        color: #3431AC;
        margin: 6px 0 0 0;
        width: 40px;
        padding: 0; }

.details-info .no-metrics {
  display: flex;
  max-width: 1000px;
  margin: auto;
  font-size: 14px;
  font-weight: 400;
  color: #444444; }

.tooltip {
  display: inline-block;
  align-self: flex-start; }
  .tooltip img {
    vertical-align: top; }

.tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  font-size: 10px;
  background-color: #565656;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  opacity: 0.8;
  border-radius: 5%;
  /* Position the tooltip */
  position: absolute;
  z-index: 1; }
  @media screen and (max-width: 768px) {
    .tooltip .tooltiptext {
      left: -100px;
      top: -10px; } }

.tooltip:hover .tooltiptext {
  visibility: visible;
  color: #fff; }

.padding-bottom-0 {
  padding-bottom: 0; }

.rounded-img {
  width: 40px;
  height: 40px; }

.retool-container {
  width: 100%;
  height: 100%; }
  .retool-container iframe {
    width: 100%;
    height: 100%;
    border: none; }
.main-wrapper {
  width: 100%;
  height: auto;
  background-color: #f7f7f9; }

.left-job-description {
  margin: 20px 0; }

.left-job-requirements {
  margin: 20px 0; }

.left-job-educations {
  margin: 20px 0; }

.header-container {
  width: 100%;
  height: 50px;
  background-color: #ffffff;
  display: flex;
  flex-direction: row;
  padding: 5px 10px 10px 5px;
  border-bottom-width: 1;
  border-bottom-color: #ccc;
  box-shadow: 0px 2px 7px rgba(116, 113, 113, 0.417499); }
  .header-container .header-wrapper {
    width: 100%; }
    .header-container .header-wrapper .logo {
      margin-left: 10px;
      border: 1px solid #ebf0f3;
      box-sizing: border-box;
      border-radius: 3px;
      width: 40px;
      height: 40px;
      float: left; }
    .header-container .header-wrapper .name-container {
      float: left;
      padding: 12px;
      font-weight: 500;
      font-size: 14px;
      line-height: 16px;
      color: #9b9b9b; }
    .header-container .header-wrapper .buttons-container {
      float: right;
      padding-right: 15%; }
      .header-container .header-wrapper .buttons-container .login-button {
        padding: 10px 30px;
        margin-right: 10px;
        background-color: #ffffff;
        font-weight: bold;
        letter-spacing: 0.2px;
        border: 1px solid #ebf0f3;
        color: #9b9b9b;
        box-shadow: none; }
      .header-container .header-wrapper .buttons-container .signup-button {
        padding: 10px 30px;
        background-color: #ffffff;
        font-weight: bold;
        letter-spacing: 0.2px;
        border: 1px solid #ebf0f3;
        color: #3431AC;
        box-shadow: none; }
      .header-container .header-wrapper .buttons-container button:hover {
        cursor: pointer; }

.main-body-container {
  width: 69.4%;
  margin: 3% 15% 0% 15%;
  border-radius: 5px;
  background-color: #ffffff;
  padding: 30px 50px 30px 50px; }

hr {
  width: 97%;
  margin: 0 auto; }

.main-header-container {
  width: 100%;
  display: flex;
  margin-bottom: 50px; }
  .main-header-container .big-logo {
    border: 1px solid #ebf0f3;
    box-sizing: border-box;
    border-radius: 3px;
    width: 73.12px;
    height: 73.12px;
    float: left;
    margin-right: 10px; }
  .main-header-container .left-wrapper {
    float: left;
    width: 100%; }
    .main-header-container .left-wrapper .job-data-container {
      line-height: 25px;
      margin-left: 8px; }
      .main-header-container .left-wrapper .job-data-container .job-title {
        font-weight: bold;
        font-size: 20px;
        line-height: 30px;
        color: #000000; }
      .main-header-container .left-wrapper .job-data-container .organization-name {
        font-size: 16px;
        line-height: 19px;
        color: #18332f;
        mix-blend-mode: normal;
        opacity: 0.6; }
      .main-header-container .left-wrapper .job-data-container .job-location {
        font-size: 16px;
        line-height: 25px;
        color: #000000; }
  .main-header-container .right-wrapper {
    width: 42%; }
    .main-header-container .right-wrapper .interested-button {
      background-color: #3431AC;
      font-weight: 500;
      font-size: 14px;
      line-height: 16px;
      text-align: center; }
    .main-header-container .right-wrapper .applied-button {
      box-shadow: none;
      background-color: #ffffff;
      font-weight: 500;
      font-size: 14px;
      line-height: 16px;
      text-align: center;
      color: #3431AC;
      border: 1px solid #d1d8dc; }
    .main-header-container .right-wrapper .no-thanks-button {
      margin-left: 10px;
      font-weight: 500;
      font-size: 14px;
      line-height: 16px;
      text-align: center;
      color: #ff4a00;
      background-color: #ffffff;
      box-shadow: none;
      border: 1px solid #d1d8dc; }

.main-job-description-body-container {
  width: 100%;
  display: flex;
  margin-top: 40px; }
  .main-job-description-body-container .referred-job-list {
    list-style: initial;
    display: block;
    list-style-type: disc;
    margin-top: 1em;
    margin-bottom: 1 em;
    padding-left: 20px; }
  .main-job-description-body-container .web-left-description {
    width: 60%; }
  .main-job-description-body-container .mobile-left-description {
    display: none; }
  .main-job-description-body-container .left-description {
    width: 100%;
    color: #808080; }
  .main-job-description-body-container .left-description-heading {
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px; }
  .main-job-description-body-container .left-requirements-heading {
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px; }
  .main-job-description-body-container .left-requirements-wrapper {
    width: 100%;
    color: #18331f; }
  .main-job-description-body-container .left-educations-heading {
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px; }
  .main-job-description-body-container .left-educations-wrapper {
    width: 100%;
    color: #18331f; }
  .main-job-description-body-container .left-description-wrapper {
    width: 100%;
    padding: 15px;
    color: #18331f; }
  .main-job-description-body-container .right-description-wrapper {
    margin-left: 30px;
    float: left;
    width: 30%;
    flex-direction: column; }
    .main-job-description-body-container .right-description-wrapper .referrer-details-container {
      width: 100%;
      flex-direction: row;
      display: flex; }
      .main-job-description-body-container .right-description-wrapper .referrer-details-container .referrer-personal-details {
        float: left;
        margin-left: 15px; }
        .main-job-description-body-container .right-description-wrapper .referrer-details-container .referrer-personal-details .referrer-name {
          font-weight: bold;
          font-size: 14px;
          line-height: 20px;
          color: #18332f; }
        .main-job-description-body-container .right-description-wrapper .referrer-details-container .referrer-personal-details .referrer-title {
          font-size: 14px;
          line-height: 20px;
          color: #000000; }
        .main-job-description-body-container .right-description-wrapper .referrer-details-container .referrer-personal-details .referred-on {
          font-size: 11px;
          line-height: 20px;
          color: #000000; }
    .main-job-description-body-container .right-description-wrapper .message-container {
      background: #f5f5f5;
      border-radius: 4px;
      padding: 15px;
      margin: 10px 0px 10px 0px; }
      .main-job-description-body-container .right-description-wrapper .message-container .message {
        font-weight: normal;
        font-size: 14px;
        line-height: 16px;
        color: #000000; }
    .main-job-description-body-container .right-description-wrapper .people-referred-container .referred-text {
      padding: 10px;
      font-size: 14px;
      color: #18332f;
      position: relative;
      top: 2px; }
    .main-job-description-body-container .right-description-wrapper .people-referred-container .first-referrer-logo {
      position: relative;
      z-index: 3; }
    .main-job-description-body-container .right-description-wrapper .people-referred-container .second-referrer-logo {
      z-index: 2;
      position: relative;
      left: -10px; }
    .main-job-description-body-container .right-description-wrapper .people-referred-container .third-referrer-logo {
      z-index: 1;
      position: relative;
      left: -20px; }
    .main-job-description-body-container .right-description-wrapper .elements-main-wrapper {
      width: 100%; }
      .main-job-description-body-container .right-description-wrapper .elements-main-wrapper .main-row {
        flex-direction: row;
        display: flex; }
      .main-job-description-body-container .right-description-wrapper .elements-main-wrapper .one-element-container {
        padding: 8px 20px 20px 0px;
        width: 50%; }
      .main-job-description-body-container .right-description-wrapper .elements-main-wrapper .one-element-heading {
        font-weight: bold;
        font-size: 14px;
        line-height: 20px;
        text-transform: uppercase;
        color: #808080; }
      .main-job-description-body-container .right-description-wrapper .elements-main-wrapper .one-element-text {
        margin-top: 15px;
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        color: #000000;
        mix-blend-mode: normal; }
      .main-job-description-body-container .right-description-wrapper .elements-main-wrapper .skills-container {
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
        display: flex;
        margin: 10px 0px 20px 0px; }
        .main-job-description-body-container .right-description-wrapper .elements-main-wrapper .skills-container .skill-tag {
          width: auto;
          height: auto;
          padding: 8px;
          margin: 5px 8px 0px 0px;
          background: #f2f2f2;
          border-radius: 4px; }
          .main-job-description-body-container .right-description-wrapper .elements-main-wrapper .skills-container .skill-tag .skill-tag-text {
            font-size: 12px;
            line-height: 14px;
            text-align: center;
            color: #000000; }
    .main-job-description-body-container .right-description-wrapper .rewards-container {
      margin-top: 20px;
      background: #fafafa;
      border: 1px solid #cccccc;
      border-radius: 4px;
      width: 100%;
      flex-direction: row;
      text-align: center;
      display: flex;
      position: relative; }
      .main-job-description-body-container .right-description-wrapper .rewards-container .fa-info-circle {
        position: absolute;
        right: 8px;
        top: 4px; }
      .main-job-description-body-container .right-description-wrapper .rewards-container .rewards-inner-wrapper {
        width: 50%;
        margin: 0 auto;
        padding: 20px 0px 20px 0px; }
        .main-job-description-body-container .right-description-wrapper .rewards-container .rewards-inner-wrapper .rewards-amount {
          font-weight: 500;
          text-align: center;
          font-size: 16px;
          line-height: 20px;
          color: #18332f; }
          .main-job-description-body-container .right-description-wrapper .rewards-container .rewards-inner-wrapper .rewards-amount .rewards-heading {
            font-weight: 500;
            font-size: 12px;
            line-height: 14px;
            text-align: center;
            color: #808080; }

.referrer-logo {
  width: 40px;
  height: 40px;
  border-radius: 15px;
  border: 1px solid #ebf0f3;
  float: left; }

.footer {
  background-color: white;
  padding: 35px 0;
  width: 100%; }

.logo-mobile {
  display: none; }

.logo-web {
  display: block; }

.logo-container {
  width: 60%;
  padding-left: 20px;
  float: left; }
  .logo-container .logo {
    width: 100%;
    color: #22c76f; }
    .logo-container .logo img {
      height: 20px;
      width: 80px; }
  .logo-container .copyright {
    width: 100%;
    margin-top: 10px;
    padding: 0 5px 10px;
    color: black;
    font-weight: 400; }

.footer-links {
  width: 40%;
  float: left;
  padding-top: 10px;
  padding-right: 50px; }
  .footer-links .footer-link {
    float: right;
    padding: 0 20px;
    text-decoration: none;
    color: black; }
    .footer-links .footer-link b {
      font-weight: 500; }

.applyjob-drawer-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 20px 0px;
  max-width: 375px;
  width: 360px;
  height: 100%; }
  .applyjob-drawer-container .btn-group {
    display: flex;
    justify-content: space-between;
    padding: 20px 0px; }
    .applyjob-drawer-container .btn-group .btn-skip {
      color: #3431AC;
      border: 0.5px solid #f1f1f1;
      border-radius: 4px; }
    .applyjob-drawer-container .btn-group .btn-refer {
      color: #3431AC;
      border: 1px solid #3431AC;
      border-radius: 4px;
      font-weight: 600;
      font-size: 14px;
      line-height: 16px;
      width: 145px; }
  .applyjob-drawer-container.grey {
    background-color: #f9f9f9;
    overflow: auto; }
  .applyjob-drawer-container .drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px; }
    .applyjob-drawer-container .drawer-header .org-name {
      font-weight: 700;
      font-size: 24px;
      line-height: 28px;
      color: #000000; }
  .applyjob-drawer-container .drawer-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 0.5px solid #cccccc;
    border-radius: 5px;
    padding: 12px 13px 15px;
    margin-bottom: 5px; }
    .applyjob-drawer-container .drawer-card .card-logo {
      height: 40px;
      width: 40px;
      margin-right: 8px;
      background: #ffffff;
      border: 0.5px solid #cccccc;
      border-radius: 4px; }
    .applyjob-drawer-container .drawer-card .card-details {
      color: #18332f;
      max-width: 100%; }
      .applyjob-drawer-container .drawer-card .card-details .first-title {
        font-weight: 700;
        font-size: 14px;
        line-height: 16px;
        margin-bottom: 2px; }
      .applyjob-drawer-container .drawer-card .card-details .other-info {
        font-weight: 400;
        font-size: 12px;
        line-height: 14px;
        mix-blend-mode: normal;
        opacity: 0.6;
        margin-bottom: 2px; }
      .applyjob-drawer-container .drawer-card .card-details .wrap-text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 90%; }
  .applyjob-drawer-container .info-message {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.2px;
    color: #3431AC; }
  .applyjob-drawer-container .terms-label {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    margin-bottom: 3px; }
  .applyjob-drawer-container .text-input {
    margin-top: 15px; }

.applyjob-drawer-container-hidden {
  display: none; }

.success-screen-container {
  background-image: url(/bundles/8d73a73752f384738795d838dca9c83b.svg);
  height: 100%;
  width: 100%;
  max-width: 375px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  .success-screen-container .check-mark-container {
    width: 100%;
    height: 25%; }
    .success-screen-container .check-mark-container img {
      display: block;
      margin: 25% auto 0% auto;
      width: 23%;
      background-color: #ffffff;
      border-radius: 80px; }
  .success-screen-container .text-container {
    width: 100%;
    height: 20%; }
    .success-screen-container .text-container .congrats-text {
      font-weight: bold;
      font-size: 24px;
      text-align: center;
      color: #ffffff; }
    .success-screen-container .text-container .application-text {
      font-size: 14px;
      line-height: 16px;
      text-align: center;
      color: #ffffff;
      margin-top: 20px; }
    .success-screen-container .text-container .info-text {
      font-size: 14px;
      line-height: 16px;
      text-align: center;
      color: #ffffff;
      padding: 5%; }
  .success-screen-container .action-buttons-container {
    text-align: center; }
    .success-screen-container .action-buttons-container .login {
      width: 80%; }
    .success-screen-container .action-buttons-container .resend-button {
      margin-top: 20px;
      width: 80%;
      background-color: #ffffff;
      color: #3431AC; }

.success-screen-container-hidden {
  display: none; }

.no-thanks-drawer-container {
  padding: 5%;
  width: 100%;
  height: 100%; }
  .no-thanks-drawer-container .no-thanks-drawer-header {
    display: flow-root;
    width: 100%; }
    .no-thanks-drawer-container .no-thanks-drawer-header .no-thanks-drawer-header-title {
      width: 100%;
      float: left;
      font-weight: bold;
      font-size: 24px;
      line-height: 28px; }
    .no-thanks-drawer-container .no-thanks-drawer-header .no-thanks-drawer-header-title-sure {
      width: 100%;
      float: left;
      font-weight: bold;
      font-size: 24px;
      line-height: 28px;
      color: #ea5506; }
    .no-thanks-drawer-container .no-thanks-drawer-header .nothanks-drawer-closeIcon {
      float: right;
      cursor: pointer;
      padding: 5px;
      margin-top: -28px; }
  .no-thanks-drawer-container .no-thanks-drawer-body {
    width: 100%;
    margin-top: 10px; }
    .no-thanks-drawer-container .no-thanks-drawer-body .no-thanks-drawer-body-main-text {
      font-weight: 500;
      font-size: 15px;
      line-height: 14px; }
    .no-thanks-drawer-container .no-thanks-drawer-body .login {
      margin-top: 30px;
      width: 100%;
      font-weight: 500;
      font-size: 14px;
      line-height: 20px; }
    .no-thanks-drawer-container .no-thanks-drawer-body .mismatch-heading {
      font-weight: bold;
      font-size: 20px;
      padding: 20px 20px;
      text-align: center; }
    .no-thanks-drawer-container .no-thanks-drawer-body .feedback-text {
      font-size: 14px;
      line-height: 20px; }
    .no-thanks-drawer-container .no-thanks-drawer-body .you-sure-text {
      font-weight: 500;
      font-size: 14px;
      line-height: 20px; }
    .no-thanks-drawer-container .no-thanks-drawer-body .sure-buttons-container {
      width: 80%;
      margin: 25px 0px 25px 0px; }
      .no-thanks-drawer-container .no-thanks-drawer-body .sure-buttons-container .yes {
        background: rgba(155, 155, 155, 0.12);
        border-radius: 4px;
        font-weight: 500;
        font-size: 14px;
        text-align: center;
        letter-spacing: 0.2px;
        color: #aaaaaa; }
      .no-thanks-drawer-container .no-thanks-drawer-body .sure-buttons-container .yes-container {
        display: inline-block; }
      .no-thanks-drawer-container .no-thanks-drawer-body .sure-buttons-container .yes-container-underlined {
        display: inline-block;
        height: 70px;
        border-bottom: 3px solid #3431AC; }
      .no-thanks-drawer-container .no-thanks-drawer-body .sure-buttons-container .yes-underlined {
        background: rgba(155, 155, 155, 0.12);
        border-radius: 4px;
        font-weight: 500;
        font-size: 14px;
        text-align: center;
        letter-spacing: 0.2px;
        color: #aaaaaa; }
      .no-thanks-drawer-container .no-thanks-drawer-body .sure-buttons-container .no {
        border-radius: 4px;
        font-weight: 500;
        font-size: 14px;
        text-align: center;
        margin-left: 10px;
        letter-spacing: 0.2px; }

@media only screen and (min-width: 540px) and (max-width: 1200px) {
  .logo-container {
    width: 50%; }
  .footer-links {
    width: 50%; } }

@media only screen and (max-width: 540px) {
  .footer {
    margin-top: 0;
    padding: 0; }
  .logo-mobile {
    display: block; }
  .logo-web {
    display: none; }
  .logo-container {
    text-align: center;
    width: 100%;
    padding-left: 7px; }
    .logo-container .logo {
      display: none; }
    .logo-container .copyright {
      vertical-align: bottom;
      color: #808080; }
  .footer-links {
    width: 90%;
    margin-left: 5%; }
    .footer-links .footer-link {
      color: #808080;
      padding: 20px 20px;
      width: 25%; } }

.main-referred-organization-body-container {
  width: 69.4%;
  margin: 0% 15% 3% 15%;
  border-radius: 5px;
  background-color: #bbbbbb;
  padding: 30px 50px 30px 50px; }

.main-organization-description-body-container {
  width: 100%;
  display: flex;
  margin-top: 40px; }
  .main-organization-description-body-container .referred-job-list {
    list-style: initial;
    display: block;
    list-style-type: disc;
    margin-top: 1em;
    margin-bottom: 1 em;
    padding-left: 20px; }
  .main-organization-description-body-container .organization-description-mobile {
    display: none; }
  .main-organization-description-body-container .organization-description-web {
    display: inherit;
    width: 50%; }
  .main-organization-description-body-container .left-organization-description {
    width: 50%;
    color: #808080; }
  .main-organization-description-body-container .left-description-heading {
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    margin: 20px 0; }
  .main-organization-description-body-container .left-perks-heading {
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    margin: 20px 0; }
  .main-organization-description-body-container .left-perks-wrapper {
    width: 100%;
    color: #808080; }
  .main-organization-description-body-container .left-educations-heading {
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase; }
  .main-organization-description-body-container .left-educations-wrapper {
    width: 100%;
    color: #808080; }
  .main-organization-description-body-container .left-description-wrapper {
    width: 100%;
    padding: 15px;
    color: #808080; }
  .main-organization-description-body-container .organization-right-description-wrapper {
    margin-left: 15px;
    float: left;
    width: 100%; }
  .main-organization-description-body-container .right-side-organization-location {
    display: inline-block;
    width: 40%; }
  .main-organization-description-body-container .right-side-organization-location-details {
    color: #000000;
    padding-right: 5%;
    font-weight: 500; }
  .main-organization-description-body-container .right-side-organization-status-details {
    color: #000000;
    vertical-align: top;
    font-weight: 500; }
  .main-organization-description-body-container .right-side-organization-status {
    display: inline-block;
    width: 30%; }
  .main-organization-description-body-container .right-side-organization-website {
    display: inline-block;
    vertical-align: top;
    width: 30%; }
  .main-organization-description-body-container .right-side-headings {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 15px;
    letter-spacing: 1px; }
  .main-organization-description-body-container .right-side-website-link {
    color: #3479ca;
    font-weight: 500;
    font-size: 15px; }
  .main-organization-description-body-container .right-side-organization-logos {
    margin-top: 5px; }
  .main-organization-description-body-container .youtube iframe {
    width: 95%;
    margin-bottom: 15px; }

.organization-main-header-container {
  width: 100%;
  display: flex; }
  .organization-main-header-container .organization-big-logo {
    border: 1px solid #ebf0f3;
    box-sizing: border-box;
    border-radius: 3px;
    width: 73.12px;
    height: 73.12px;
    float: left;
    margin-right: 10px; }
  .organization-main-header-container .organization-left-wrapper {
    float: left;
    width: 100%; }
    .organization-main-header-container .organization-left-wrapper .organization-job-data-container {
      width: 40%;
      line-height: 25px;
      margin-left: 8px; }
      .organization-main-header-container .organization-left-wrapper .organization-job-data-container .organization-job-title {
        font-weight: bold;
        font-size: 17px;
        line-height: 30px;
        color: #000000; }
      .organization-main-header-container .organization-left-wrapper .organization-job-data-container .organization-organization-organization-name {
        font-size: 15px;
        line-height: 19px;
        color: #18332f;
        mix-blend-mode: normal;
        opacity: 0.6; }
      .organization-main-header-container .organization-left-wrapper .organization-job-data-container .organization-job-location {
        font-size: 15px;
        line-height: 25px; }
  .organization-main-header-container .organization-right-wrapper {
    float: right;
    width: 19%; }
    .organization-main-header-container .organization-right-wrapper .organization-interested-button {
      font-weight: 500;
      background: transparent;
      color: #a3a3a3;
      border: 1px solid #a3a3a3;
      font-size: 14px;
      line-height: 16px;
      text-align: center;
      margin: 30px 0; }

.MuiDrawer-paper {
  width: 27%; }

.MuiTextField-root {
  width: 100%;
  margin-top: 20px !important; }

.fileUpload {
  width: '100%';
  padding: 5;
  width: 'fit-content';
  border-radius: 5;
  margin-top: 10;
  border-width: 1;
  border-color: '#22c76e'; }

.custom-file-upload {
  display: inline-flex;
  padding: 17px 20px;
  cursor: pointer;
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  color: #3431AC;
  float: right;
  background: #f5f7f9;
  border: 1px dashed #d1d8dc;
  border-radius: 4px; }

.custom-file-upload-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100px; }

.uploadResumeLogo {
  vertical-align: bottom; }

.drawerCloseIcon {
  float: right;
  padding-top: 5px; }

.links-div {
  margin-top: 10px; }

.file-upload-main-div {
  display: flow-root;
  margin-top: 3%; }

.file-upload-text {
  float: left;
  font-size: 14px; }

.attach-resume-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.2px;
  color: #454847;
  mix-blend-mode: normal;
  margin-bottom: 3px;
  margin-top: 5px; }

.file-options-text {
  font-size: 14px;
  line-height: 16px;
  color: #aaaaaa;
  mix-blend-mode: normal; }

.linkBtn {
  cursor: pointer;
  color: #aaaaaa;
  font-weight: normal;
  font-size: 14px;
  border-bottom: 1px dotted #aaaaaa;
  padding: 0px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0px; }
  .linkBtn:hover {
    color: #3431AC;
    border-bottom: 1px solid #3431AC; }

.remove-location {
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px; }
  .remove-location .remove-btn-cont {
    display: flex;
    width: 100%;
    justify-content: flex-end; }
  .remove-location .linkBtn {
    border-bottom: 1px solid #aaaaaa;
    width: -moz-fit-content;
    width: fit-content; }

.add-location-btn .linkBtn {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #3431AC;
  border-bottom: 1px dotted #3431AC; }
  .add-location-btn .linkBtn:hover {
    color: #3431AC;
    border-bottom: 1px solid #3431AC; }

.linkIconImage {
  padding-right: 10px; }

.link-button-main {
  margin-top: 5%; }

.checkedBox-div {
  margin-top: 50%; }

@media screen and (max-width: 600px) {
  .main-header-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px; }
    .main-header-container .big-logo {
      border: 1px solid #ebf0f3;
      box-sizing: border-box;
      border-radius: 3px;
      width: 60px;
      height: 60px;
      float: left;
      margin-right: 10px; }
    .main-header-container .left-wrapper {
      float: none;
      width: 100%; }
      .main-header-container .left-wrapper .job-data-container {
        width: 100%;
        margin-left: 0px; }
        .main-header-container .left-wrapper .job-data-container .job-title {
          font-weight: bold;
          font-size: 16px;
          line-height: 20px;
          color: #18332f; }
        .main-header-container .left-wrapper .job-data-container .organization-name {
          font-size: 14px;
          color: #18332f;
          line-height: 20px;
          mix-blend-mode: normal;
          opacity: 0.6; }
        .main-header-container .left-wrapper .job-data-container .job-location {
          font-size: 14px;
          line-height: 20px;
          color: #000000;
          mix-blend-mode: normal; }
    .main-header-container .right-wrapper {
      width: 100%;
      padding-top: 20px;
      display: flex;
      align-items: center;
      justify-content: center; }
      .main-header-container .right-wrapper .interested-button {
        background-color: #3431AC;
        font-weight: 500;
        font-size: 14px;
        line-height: 16px;
        text-align: center; }
      .main-header-container .right-wrapper .applied-button {
        box-shadow: none;
        background-color: #ffffff;
        font-weight: 500;
        font-size: 14px;
        line-height: 16px;
        text-align: center;
        color: #3431AC;
        border: 1px solid #d1d8dc; }
      .main-header-container .right-wrapper .no-thanks-button {
        margin-left: 10px;
        font-weight: 500;
        font-size: 14px;
        line-height: 16px;
        text-align: center;
        color: #ff4a00;
        background-color: #ffffff;
        box-shadow: none;
        border: 1px solid #d1d8dc; }
  .main-body-container {
    width: 100%;
    margin: 0%;
    background-color: #ffffff;
    padding: 30px 20px 30px 20px; }
  .header-container {
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    padding: 5px 10px 10px 5px;
    border-bottom: 1px solid #ccc;
    box-shadow: 0px 2px 7px rgba(116, 113, 113, 0.417499);
    align-items: center; }
    .header-container .header-wrapper .logo {
      display: none; }
    .header-container .header-wrapper .name-container {
      font-weight: bold;
      font-size: 14px;
      line-height: 16px;
      color: #000000; }
    .header-container .header-wrapper .buttons-container {
      float: right;
      padding-right: 15%;
      display: none; }
      .header-container .header-wrapper .buttons-container .login-button {
        padding: 10px 30px;
        margin-right: 10px;
        background-color: #ffffff;
        font-weight: bold;
        letter-spacing: 0.2px;
        border: 1px solid #ebf0f3;
        color: #9b9b9b;
        box-shadow: none; }
      .header-container .header-wrapper .buttons-container .signup-button {
        padding: 10px 30px;
        font-weight: bold;
        letter-spacing: 0.2px;
        border: 1px solid #ebf0f3;
        color: #3431AC;
        box-shadow: none; }
  .main-job-description-body-container {
    width: 100%;
    display: flex;
    margin-top: 40px; }
    .main-job-description-body-container .referred-job-list {
      list-style: initial;
      display: block;
      list-style-type: disc;
      margin-top: 1em;
      margin-bottom: 1 em;
      padding-left: 20px; }
    .main-job-description-body-container .web-left-description {
      display: none; }
    .main-job-description-body-container .mobile-left-description {
      display: unset; }
    .main-job-description-body-container .left-description {
      width: 100%;
      color: #808080; }
    .main-job-description-body-container .left-description-heading {
      font-weight: bold;
      font-size: 15px;
      text-transform: uppercase; }
    .main-job-description-body-container .left-requirements-heading {
      font-weight: bold;
      font-size: 15px;
      text-transform: uppercase; }
    .main-job-description-body-container .left-requirements-wrapper {
      width: 100%;
      color: #18331f; }
    .main-job-description-body-container .left-educations-heading {
      font-weight: bold;
      font-size: 15px;
      text-transform: uppercase; }
    .main-job-description-body-container .left-educations-wrapper {
      width: 100%;
      color: #18331f; }
    .main-job-description-body-container .organization-left-description-wrapper {
      width: 100%;
      padding: 15px;
      color: #18331f; }
    .main-job-description-body-container .right-description-wrapper {
      margin-left: 0px;
      float: unset;
      width: 100%;
      flex-direction: column; }
      .main-job-description-body-container .right-description-wrapper .referrer-details-container {
        width: 100%;
        flex-direction: row;
        display: flex; }
        .main-job-description-body-container .right-description-wrapper .referrer-details-container .referrer-personal-details {
          float: left;
          margin-left: 15px; }
          .main-job-description-body-container .right-description-wrapper .referrer-details-container .referrer-personal-details .referrer-name {
            font-weight: bold;
            font-size: 14px;
            line-height: 20px;
            color: #18332f; }
          .main-job-description-body-container .right-description-wrapper .referrer-details-container .referrer-personal-details .referrer-title {
            font-size: 14px;
            line-height: 20px;
            color: #000000; }
          .main-job-description-body-container .right-description-wrapper .referrer-details-container .referrer-personal-details .referred-on {
            font-size: 11px;
            line-height: 20px;
            color: #000000; }
      .main-job-description-body-container .right-description-wrapper .message-container {
        background: #f5f5f5;
        border-radius: 4px;
        padding: 15px;
        margin: 10px 0px 10px 0px; }
        .main-job-description-body-container .right-description-wrapper .message-container .message {
          font-weight: normal;
          font-size: 14px;
          line-height: 16px;
          color: #000000; }
      .main-job-description-body-container .right-description-wrapper .people-referred-container .referred-text {
        padding: 10px;
        font-size: 14px;
        color: #18332f; }
      .main-job-description-body-container .right-description-wrapper .elements-main-wrapper {
        width: 100%; }
        .main-job-description-body-container .right-description-wrapper .elements-main-wrapper .main-row {
          flex-direction: row;
          display: flex; }
        .main-job-description-body-container .right-description-wrapper .elements-main-wrapper .one-element-container {
          padding: 8px 20px 20px 0px;
          width: 50%; }
        .main-job-description-body-container .right-description-wrapper .elements-main-wrapper .one-element-heading {
          font-weight: bold;
          font-size: 14px;
          line-height: 20px;
          text-transform: uppercase;
          color: #808080; }
        .main-job-description-body-container .right-description-wrapper .elements-main-wrapper .one-element-text {
          margin-top: 15px;
          font-weight: 500;
          font-size: 14px;
          line-height: 20px;
          color: #000000;
          mix-blend-mode: normal; }
        .main-job-description-body-container .right-description-wrapper .elements-main-wrapper .skills-container {
          flex-direction: row;
          align-items: flex-start;
          flex-wrap: wrap;
          display: flex;
          margin: 10px 0px 20px 0px; }
          .main-job-description-body-container .right-description-wrapper .elements-main-wrapper .skills-container .skill-tag {
            width: auto;
            height: auto;
            padding: 8px;
            margin: 5px 8px 0px 0px;
            background: #f2f2f2;
            border-radius: 4px; }
            .main-job-description-body-container .right-description-wrapper .elements-main-wrapper .skills-container .skill-tag .skill-tag-text {
              font-size: 12px;
              line-height: 14px;
              text-align: center;
              color: #000000; }
      .main-job-description-body-container .right-description-wrapper .rewards-container {
        margin-top: 20px;
        background: #fafafa;
        border: 1px solid #cccccc;
        border-radius: 4px;
        width: 100%;
        flex-direction: row;
        text-align: center;
        position: relative;
        display: flex; }
        .main-job-description-body-container .right-description-wrapper .rewards-container .fa-info-circle {
          position: absolute;
          right: 8px;
          top: 4px; }
        .main-job-description-body-container .right-description-wrapper .rewards-container .rewards-inner-wrapper {
          width: 50%;
          margin: 0 auto;
          padding: 20px 0px 20px 0px; }
          .main-job-description-body-container .right-description-wrapper .rewards-container .rewards-inner-wrapper .rewards-amount {
            font-weight: 500;
            text-align: center;
            font-size: 16px;
            line-height: 20px;
            color: #18332f; }
            .main-job-description-body-container .right-description-wrapper .rewards-container .rewards-inner-wrapper .rewards-amount .rewards-heading {
              font-weight: 500;
              font-size: 12px;
              line-height: 14px;
              text-align: center;
              color: #808080; }
  .referrer-logo {
    width: 40px;
    height: 40px;
    border-radius: 15px;
    border: 1px solid #ebf0f3;
    float: left; }
  .main-referred-organization-body-container {
    width: 100%;
    margin: 0;
    border-radius: 5px;
    background-color: #bbbbbb;
    padding: 1px 25px; }
  .main-organization-description-body-container {
    width: 100%;
    display: block;
    margin-top: 40px; }
    .main-organization-description-body-container .organization-description-mobile {
      display: block; }
    .main-organization-description-body-container .organization-description-web {
      display: none; }
    .main-organization-description-body-container .referred-job-list {
      list-style: initial;
      display: block;
      list-style-type: disc;
      margin-top: 1em;
      margin-bottom: 1 em;
      padding-left: 20px; }
    .main-organization-description-body-container .left-organization-description {
      width: 100%;
      color: #808080;
      vertical-align: bottom; }
    .main-organization-description-body-container .left-description-heading {
      font-weight: bold;
      font-size: 15px;
      text-transform: uppercase; }
    .main-organization-description-body-container .left-perks-heading {
      font-weight: bold;
      font-size: 15px;
      text-transform: uppercase; }
    .main-organization-description-body-container .left-perks-wrapper {
      width: 100%;
      color: #808080; }
    .main-organization-description-body-container .left-educations-heading {
      font-weight: bold;
      font-size: 15px;
      text-transform: uppercase; }
    .main-organization-description-body-container .left-educations-wrapper {
      width: 100%;
      color: #808080; }
    .main-organization-description-body-container .organization-left-description-wrapper {
      width: 100%;
      padding: 15px;
      color: #808080; }
    .main-organization-description-body-container .organization-right-description-wrapper {
      margin: 30px 0;
      width: 100%; }
    .main-organization-description-body-container .right-side-organization-location {
      display: inline-block;
      width: 40%; }
    .main-organization-description-body-container .right-side-organization-location-details {
      color: #000000;
      padding-right: 5%;
      font-weight: 500; }
    .main-organization-description-body-container .right-side-organization-status-details {
      color: #000000;
      vertical-align: top;
      font-weight: 500; }
    .main-organization-description-body-container .right-side-organization-status {
      display: inline-block;
      width: 30%; }
    .main-organization-description-body-container .right-side-organization-website {
      display: inline-block;
      vertical-align: top;
      width: 30%; }
    .main-organization-description-body-container .right-side-headings {
      margin-bottom: 10px;
      font-weight: bold;
      font-size: 15px;
      letter-spacing: 1px; }
    .main-organization-description-body-container .right-side-website-link {
      color: #3479ca;
      font-weight: 500;
      font-size: 15px; }
    .main-organization-description-body-container .right-side-organization-logos {
      margin-top: 5px; }
    .main-organization-description-body-container .youtube iframe {
      width: 95%;
      margin-bottom: 15px; }
  #organization-body-hr {
    display: none; }
  .organization-main-header-container {
    width: 100%;
    display: block; }
    .organization-main-header-container .organization-big-logo {
      border: 1px solid #ebf0f3;
      box-sizing: border-box;
      border-radius: 3px;
      width: 73.12px;
      height: 73.12px;
      float: left;
      margin-right: 10px; }
    .organization-main-header-container .organization-left-wrapper {
      float: left;
      width: 100%; }
      .organization-main-header-container .organization-left-wrapper .organization-job-data-container {
        line-height: 25px;
        margin-left: 8px;
        float: left; }
        .organization-main-header-container .organization-left-wrapper .organization-job-data-container .organization-job-title {
          font-weight: bold;
          font-size: 17px;
          line-height: 30px;
          color: #000000; }
        .organization-main-header-container .organization-left-wrapper .organization-job-data-container .organization-organization-organization-name {
          font-size: 15px;
          line-height: 19px;
          color: #18332f;
          mix-blend-mode: normal;
          opacity: 0.6; }
        .organization-main-header-container .organization-left-wrapper .organization-job-data-container .organization-job-location {
          font-size: 15px;
          line-height: 25px; }
    .organization-main-header-container .organization-right-wrapper {
      float: right;
      width: 70%; }
  .MuiDrawer-paper {
    width: 100%; }
  .no-thanks-drawer-container .no-thanks-drawer-body .sure-buttons-container {
    width: 100%; } }

.external-link {
  color: black;
  font-weight: 600; }
.ExpandableRow__container {
  background: #FFFFFF;
  box-shadow: 0px 2px 4px rgba(147, 157, 177, 0.25);
  border-radius: 0px 0px 4px 4px;
  margin: 0px 2px; }
  .ExpandableRow__container hr {
    max-width: 575px;
    margin-left: 20px;
    margin-top: 0;
    margin-bottom: 0; }
  .ExpandableRow__container .single-installment {
    height: 59px;
    display: flex;
    align-items: center; }
    .ExpandableRow__container .single-installment .installment-details {
      margin-left: 64px; }
      .ExpandableRow__container .single-installment .installment-details .installment-detail-head {
        font-weight: 700;
        font-size: 12px;
        line-height: 14px;
        text-transform: uppercase;
        color: #959595;
        display: flex;
        align-items: center; }
        .ExpandableRow__container .single-installment .installment-details .installment-detail-head svg {
          font-size: 12px;
          margin-right: 5px; }
      .ExpandableRow__container .single-installment .installment-details .actual-details {
        font-weight: 500;
        font-size: 12px;
        line-height: 16px;
        margin-top: 8px; }
        .ExpandableRow__container .single-installment .installment-details .actual-details .experiential_reward-amount {
          color: #3431AC; }
        .ExpandableRow__container .single-installment .installment-details .actual-details .experiential_reward-slash {
          margin-left: 5px;
          margin-right: 5px;
          color: #959595; }
        .ExpandableRow__container .single-installment .installment-details .actual-details .experiential_reward-name {
          color: #af40c2; }
.RewardTemplate__container {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 13px;
  justify-content: space-between;
  margin: 10px 0px 0px 0px; }
  .RewardTemplate__container .dropdown-wrapper {
    width: 52px;
    display: flex;
    justify-content: center;
    cursor: pointer;
    width: 9%; }
    .RewardTemplate__container .dropdown-wrapper .dropdown-icon {
      color: #959595; }
  .RewardTemplate__container .reward-data {
    display: flex;
    flex-direction: column;
    width: 81%; }
    .RewardTemplate__container .reward-data .heading {
      font-weight: 500;
      font-size: 14px;
      line-height: 18px; }
      .RewardTemplate__container .reward-data .heading .reward-title {
        color: #af40c2; }
      .RewardTemplate__container .reward-data .heading .reward-amount {
        color: #3431AC; }
      .RewardTemplate__container .reward-data .heading .reward-slash {
        margin-left: 5px;
        margin-right: 5px;
        color: #959595; }
  .RewardTemplate__container .legend-title {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.4px;
    color: #6b7280;
    background: white;
    padding: 0px 6px;
    margin-left: -2px;
    width: -moz-max-content;
    width: max-content; }
  .RewardTemplate__container .time-details {
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #959595;
    display: flex;
    align-items: center;
    margin-top: 8px; }
    .RewardTemplate__container .time-details svg {
      font-size: 12px;
      margin-right: 5px; }
  .RewardTemplate__container .expanded-data {
    border: 1p solid #3431AC; }
  .RewardTemplate__container .cross-wrapper {
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    background: none; }
    .RewardTemplate__container .cross-wrapper .cross-icon {
      color: #9ca3af;
      height: 20px;
      width: 20px;
      transition: color 0.15s ease; }
      .RewardTemplate__container .cross-wrapper .cross-icon:hover {
        color: #6b7280; }
.ManageManualReferrals__container .CustomOption__container {
  display: flex;
  align-items: center;
  cursor: pointer; }
  .ManageManualReferrals__container .CustomOption__container .option-checkbox {
    width: 30px;
    height: 25px;
    background: transparent; }

.ManageManualReferrals__container .icon-search {
  color: #9ca3af;
  font-size: 20px !important; }
.openings-dropdown {
  width: -moz-fit-content;
  width: fit-content;
  float: right;
  padding-left: 0 !important;
  margin-left: 18px; }

.automation-modal-content .automation-modal-text {
  font-size: 14px;
  font-weight: 400;
  color: black; }

.automation-modal-content .text-grey {
  color: #959595; }

.dropdown-padding ul li {
  padding-left: 10px !important;
  padding-right: 10px !important; }

.openings-section-seperator {
  margin-top: 30px; }

.column-info {
  display: flex;
  align-items: center; }
  .column-info svg {
    color: #969696;
    height: 20px; }
.back-btn-cont {
  display: flex;
  gap: 11px;
  align-items: center;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content; }
  .back-btn-cont .text {
    font-size: 14px;
    color: #444444;
    margin: 0; }
.outside-wrapper {
  display: flex;
  align-items: center;
  justify-content: center; }

.outside-container-column {
  display: flex;
  flex-direction: column;
  margin: 2em 17em 0em 17em; }

.outside-container {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  align-items: flex-start;
  border-radius: 4px;
  box-shadow: 4px 4px 4px 0px rgba(147, 157, 177, 0.1); }

.outside-heading {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 1em 2em 0em 3.5em;
  color: #333333;
  font-size: 20px;
  font-style: normal;
  font-weight: 700; }

.disabled-export-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 700px; }

.disabled-export-prompt {
  background-color: #ffffff;
  margin: 2em;
  text-align: center;
  border-radius: 4px 4px 4px 4px;
  box-shadow: 0px 2px 4px 0px rgba(147, 157, 177, 0.1);
  width: 580px; }

.disabled-export-heading {
  background: #f4f5f8;
  color: #333333;
  padding: 10px 1px 10px 1px;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  width: 580px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px; }

.disabled-export-description {
  padding: 1em 4em 1em 4em;
  color: #444;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal; }

.disabled-export-link {
  color: #007bff;
  text-decoration: none; }

.disabled-export-link:hover {
  text-decoration: underline; }

.back-button {
  padding-bottom: 2em; }

.download-off-icon {
  padding: 2em 0em 2em 0em;
  align-items: center;
  justify-content: center;
  display: flex; }

.text-size {
  width: 500px;
  margin-left: 40px; }
#long-menu .MuiPaper-root {
  max-height: 250px !important; }

#long-menu div ul {
  padding: 0px !important; }
  #long-menu div ul li {
    font-size: 12px;
    font-weight: 400;
    line-height: 300.5%;
    color: rgba(25, 25, 25, 0.6);
    padding: 0 30px 0 18px;
    border-bottom: 1px solid #E2E2E2;
    white-space: nowrap;
    cursor: pointer;
    width: 100%;
    justify-content: start; }
    #long-menu div ul li a {
      color: rgba(25, 25, 25, 0.6) !important;
      text-decoration: none !important; }
  #long-menu div ul li:last-child {
    border-bottom: none !important; }
.pagination-cont {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  color: #343741;
  font-size: 13px;
  padding: 8px 16px;
  background: #fff;
  min-height: 44px;
  box-sizing: border-box; }
  .pagination-cont .MuiTextField-root {
    margin-top: 0px !important; }
  .pagination-cont .right-controls {
    margin-left: 10px; }

.MuiMenu-list {
  display: flex !important;
  flex-direction: column !important; }
.detele-template-modal {
  background: #fff;
  border-radius: 16px;
  overflow: visible;
  width: 520px;
  padding-bottom: 0px !important; }
  .detele-template-modal .topContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    margin: 0;
    border-bottom: 1px solid #f0f1f3;
    background: #fafbfc;
    border-radius: 16px 16px 0 0; }
    .detele-template-modal .topContent h1 {
      font-size: 18px;
      font-weight: 600;
      color: #1a1a2e;
      margin: 0;
      display: inline-block; }
    .detele-template-modal .topContent img {
      cursor: pointer; }
  .detele-template-modal .modal-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #9ca3af;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease; }
    .detele-template-modal .modal-close-btn:hover {
      color: #374151;
      background: #f3f4f6; }
  .detele-template-modal .text-place {
    padding: 24px;
    margin: 0;
    color: #374151;
    font-size: 14px;
    line-height: 1.6; }
    .detele-template-modal .text-place p {
      color: #374151;
      margin: 0 0 8px; }
    .detele-template-modal .text-place ul {
      margin-left: 16px; }
    .detele-template-modal .text-place li {
      color: #374151;
      list-style: disc; }
  .detele-template-modal .buttonsArea {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    border-top: 1px solid #f0f1f3;
    background: #fafbfc;
    border-radius: 0 0 16px 16px; }
    .detele-template-modal .buttonsArea .cancel-btn {
      padding: 9px 24px;
      font-size: 14px;
      font-weight: 500;
      border-radius: 8px;
      background: #fff;
      color: #374151;
      border: 1px solid #e5e7eb;
      cursor: pointer;
      transition: all 0.15s ease; }
      .detele-template-modal .buttonsArea .cancel-btn:hover {
        background: #f9fafb;
        border-color: #d1d5db; }
    .detele-template-modal .buttonsArea .delete-btn {
      padding: 9px 24px;
      font-size: 14px;
      font-weight: 500;
      border-radius: 8px;
      background: #3431ac;
      color: #fff;
      border: none;
      margin-left: 0;
      cursor: pointer;
      transition: all 0.15s ease; }
      .detele-template-modal .buttonsArea .delete-btn:hover {
        background: #2a279a; }
      .detele-template-modal .buttonsArea .delete-btn:disabled {
        background: #d1d5db;
        color: #9ca3af;
        cursor: not-allowed; }
      .detele-template-modal .buttonsArea .delete-btn.btn-danger {
        background: #dc2626; }
        .detele-template-modal .buttonsArea .delete-btn.btn-danger:hover {
          background: #b91c1c; }

.keep-replace-reward-modal__question {
  text-align: center;
  margin-bottom: 16px; }

.keep-replace-reward-modal__options {
  list-style: none;
  margin-left: 0;
  padding: 0; }

.checkboxCheckParent {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 8px; }
  .checkboxCheckParent > span {
    padding: 0px !important; }
  .checkboxCheckParent label {
    cursor: pointer; }

.removeRewardsTempletesIconParent > svg {
  height: 30px !important; }

.deleteRewardTempleteParent > svg {
  height: 14px !important; }
@keyframes skeleton-shimmer {
  0% {
    background-position: -400px 0; }
  100% {
    background-position: 400px 0; } }

.table-skeleton-container {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden; }

.table-skeleton {
  width: 100%;
  border-collapse: collapse;
  pointer-events: none; }
  .table-skeleton th, .table-skeleton td {
    padding: 12px 16px;
    text-align: left;
    vertical-align: middle; }
  .table-skeleton thead {
    background: #f9fafb;
    box-shadow: inset 0 -1px 0 #e5e7eb; }
  .table-skeleton tbody tr {
    border-bottom: 1px solid #f0f1f5;
    min-height: 52px; }
    .table-skeleton tbody tr:last-child {
      border-bottom: none; }
  .table-skeleton .skeleton-bar {
    display: inline-block;
    border-radius: 4px;
    background: linear-gradient(90deg, #eee 25%, #f7f7f7 50%, #eee 75%);
    background-size: 800px 100%;
    animation: skeleton-shimmer 1.5s infinite ease-in-out; }
  .table-skeleton .skeleton-header {
    height: 12px;
    width: 70%;
    max-width: 90px; }
  .table-skeleton .skeleton-cell-wide {
    height: 14px;
    width: 80%;
    max-width: 160px; }
  .table-skeleton .skeleton-cell-medium {
    height: 14px;
    width: 65%;
    max-width: 120px; }
  .table-skeleton .skeleton-cell-narrow {
    height: 14px;
    width: 50%;
    max-width: 80px; }
  .table-skeleton .skeleton-cell-badge {
    height: 24px;
    width: 70px;
    border-radius: 12px; }
.ReactTable__container {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow-x: auto;
  overflow-y: visible;
  -ms-overflow-style: auto;
  scrollbar-width: thin; }
  .ReactTable__container::-webkit-scrollbar {
    height: 6px; }
  .ReactTable__container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 3px; }
  .ReactTable__container table {
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 13px;
    color: #374151;
    width: 100%; }
    .ReactTable__container table thead {
      background: #f9fafb;
      box-shadow: inset 0 -1px 0 #e5e7eb; }
      .ReactTable__container table thead th {
        padding: 12px 16px;
        font-size: 12px;
        font-weight: 600;
        color: #6b7280;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        text-align: left;
        vertical-align: middle;
        white-space: nowrap;
        position: relative;
        -webkit-user-select: none;
           -moz-user-select: none;
                user-select: none; }
    .ReactTable__container table tbody tr {
      border-bottom: 1px solid #f0f1f5;
      transition: background-color 0.15s ease;
      cursor: pointer; }
      .ReactTable__container table tbody tr:last-child {
        border-bottom: none; }
      .ReactTable__container table tbody tr:hover {
        background-color: #f9fafb; }
        .ReactTable__container table tbody tr:hover .Select-control {
          background-color: transparent; }
      .ReactTable__container table tbody tr.selected {
        background-color: #eef2ff; }
        .ReactTable__container table tbody tr.selected .Select-control {
          background-color: transparent; }
    .ReactTable__container table tbody td {
      padding: 12px 16px;
      font-size: 13px;
      font-weight: 500;
      color: #374151;
      text-align: left;
      justify-content: flex-start;
      vertical-align: middle; }
      .ReactTable__container table tbody td .Select,
      .ReactTable__container table tbody td .Select-control,
      .ReactTable__container table tbody td .Select-value,
      .ReactTable__container table tbody td .Select-value-label,
      .ReactTable__container table tbody td .Select-placeholder,
      .ReactTable__container table tbody td .Select-input,
      .ReactTable__container table tbody td .Select-input input {
        font-weight: normal; }
  .ReactTable__container thead th {
    cursor: default;
    padding: 0;
    text-align: left;
    justify-content: flex-start; }
    .ReactTable__container thead th:hover {
      cursor: ew-resize; }
  .ReactTable__container tr {
    align-items: center; }
  .ReactTable__container .header-containor,
  .ReactTable__container .header-containor.header-height,
  .ReactTable__container .header-containor.member-table-header {
    padding: 12px 16px;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    min-height: 44px;
    display: flex;
    align-items: center; }
  .ReactTable__container .th {
    position: relative; }
    .ReactTable__container .th .header-text-center {
      display: flex;
      justify-content: flex-start;
      align-items: center; }
      .ReactTable__container .th .header-text-center .header-content {
        display: flex;
        align-items: center;
        cursor: pointer;
        gap: 2px; }
        .ReactTable__container .th .header-text-center .header-content .sorting-icons {
          font-size: 1rem;
          margin-left: 2px;
          vertical-align: middle; }
  .ReactTable__container .th,
  .ReactTable__container td {
    margin: 0;
    padding: 0;
    border-right: 0;
    position: relative;
    box-sizing: border-box; }
    .ReactTable__container .th .resizer,
    .ReactTable__container td .resizer {
      display: inline-block;
      width: 1px;
      height: 60%;
      position: absolute;
      right: 0;
      top: 20%;
      background: rgba(0, 0, 0, 0.12);
      touch-action: none;
      z-index: 1;
      transition: background-color 0.15s ease, width 0.15s ease; }
      .ReactTable__container .th .resizer.isResizing,
      .ReactTable__container td .resizer.isResizing {
        background: #3431AC;
        width: 2px; }
    .ReactTable__container .th .resizer1,
    .ReactTable__container td .resizer1 {
      display: inline-block;
      width: 16px;
      height: 100%;
      position: absolute;
      right: -8px;
      top: 0;
      touch-action: none;
      z-index: 2;
      cursor: col-resize; }
  .ReactTable__container tbody tr {
    min-height: 52px;
    align-items: center; }
  .ReactTable__container tbody td {
    padding: 12px 16px;
    text-align: left !important;
    justify-content: flex-start; }
    .ReactTable__container tbody td > * {
      text-align: left; }
  .ReactTable__container td.select {
    overflow: visible; }
    .ReactTable__container td.select .Select {
      width: 100%;
      cursor: pointer; }
    .ReactTable__container td.select .Select-control {
      background-color: transparent !important;
      border: none;
      cursor: pointer; }
    .ReactTable__container td.select .Select-menu-outer {
      z-index: 9999;
      position: absolute; }
    .ReactTable__container td.select .label-div {
      cursor: pointer; }
  .ReactTable__container .select-check-box {
    padding: 0; }
    .ReactTable__container .select-check-box .MuiSvgIcon-root {
      width: 20px;
      height: 20px; }
  .ReactTable__container .selected {
    background-color: #eef2ff; }
  .ReactTable__container .external_job_id {
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden; }
  .ReactTable__container .job-drop-down-width {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 48px !important;
    width: 48px !important;
    max-width: 48px !important;
    min-width: 48px !important;
    padding: 0; }
  .ReactTable__container .table-last-col {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .ReactTable__container .table-last-col .table-last-col-width {
      flex: 1;
      min-width: 0; }
    .ReactTable__container .table-last-col .reward-table-last-col-width {
      flex: 1;
      min-width: 0; }
  .ReactTable__container .status {
    text-align: start;
    display: flex;
    justify-content: flex-start;
    padding-left: 0; }
  .ReactTable__container .drop-down-width {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 48px !important;
    width: 48px !important;
    max-width: 48px !important;
    min-width: 48px !important;
    padding: 0 !important; }
  .ReactTable__container .word-wrap {
    word-break: break-all;
    padding-right: 10px;
    display: inline-block;
    margin: 0; }
  .ReactTable__container .dept-id-text {
    margin: 0; }
  .ReactTable__container .lable-size {
    width: 70%; }
.confirm-modal__icon {
  display: flex;
  justify-content: center;
  padding: 24px 24px 0; }

.confirm-modal__text {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #374151;
  padding: 16px 24px 24px 24px;
  line-height: 1.6; }

.confirm-modal__content {
  max-height: 180px;
  overflow: auto;
  padding: 16px 24px; }
.single-pill {
  height: 30px;
  display: flex;
  align-items: center;
  margin-top: 12px;
  margin-left: 0;
  margin-right: 5px;
  border: 1px solid #3431AC;
  border-radius: 25px;
  background-color: #3431AC05;
  padding: 7px 11px 7px 11px; }
  .single-pill .label {
    font-size: 14px;
    font-weight: bold;
    color: #3431AC;
    line-height: 16px; }
  .single-pill .cross {
    margin-left: 8px;
    color: #3431AC;
    font-size: 16px;
    cursor: pointer; }
@keyframes skeleton-shimmer {
  0% {
    background-position: -200% 0; }
  100% {
    background-position: 200% 0; } }

.sk-container {
  max-width: 720px !important;
  width: 100%;
  margin: 0 auto; }

.sk {
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
  border-radius: 6px;
  display: block; }

.sk-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px 28px; }

.sk-section {
  margin-bottom: 32px; }

.sk-section-title {
  height: 14px;
  width: 140px;
  margin-bottom: 20px; }

.sk-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #f3f4f6; }
  .sk-row:last-child {
    border-bottom: none; }

.sk-row-label {
  height: 14px;
  width: 45%;
  max-width: 260px; }

.sk-row-field {
  height: 36px;
  width: 200px;
  border-radius: 8px; }

.sk-line {
  height: 12px;
  margin-bottom: 10px; }
  .sk-line--sm {
    width: 80px; }
  .sk-line--md {
    width: 160px; }
  .sk-line--lg {
    width: 280px; }
  .sk-line--xl {
    width: 400px; }
  .sk-line--full {
    width: 100%; }
  .sk-line--title {
    height: 18px;
    width: 200px;
    margin-bottom: 12px; }
  .sk-line--heading {
    height: 22px;
    width: 240px;
    margin-bottom: 16px; }

.sk-circle {
  border-radius: 50%; }
  .sk-circle--sm {
    width: 32px;
    height: 32px; }
  .sk-circle--md {
    width: 48px;
    height: 48px; }
  .sk-circle--lg {
    width: 64px;
    height: 64px; }

.sk-badge {
  height: 24px;
  width: 72px;
  border-radius: 12px; }

.sk-btn {
  height: 40px;
  width: 140px;
  border-radius: 8px; }

.sk-switch {
  height: 20px;
  width: 40px;
  border-radius: 10px; }

.sk-input {
  height: 40px;
  width: 100%;
  border-radius: 8px; }

.sk-avatar-group {
  display: flex;
  gap: 12px;
  align-items: center; }

.sk-flex {
  display: flex;
  align-items: center;
  gap: 12px; }

.sk-flex-col {
  display: flex;
  flex-direction: column; }

.sk-grid {
  display: grid;
  gap: 16px; }
  .sk-grid--2 {
    grid-template-columns: repeat(2, 1fr); }
  .sk-grid--3 {
    grid-template-columns: repeat(3, 1fr); }
  .sk-grid--4 {
    grid-template-columns: repeat(4, 1fr); }

.sk-integration-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px; }

.sk-table {
  width: 100%; }
  .sk-table__header {
    display: flex;
    gap: 16px;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 4px; }
  .sk-table__row {
    display: flex;
    gap: 16px;
    padding: 14px 16px;
    border-bottom: 1px solid #f3f4f6; }
  .sk-table__cell {
    flex: 1; }

.sk-banner {
  height: 160px;
  width: 100%;
  border-radius: 0;
  margin-bottom: 16px; }

.sk-divider {
  height: 1px;
  width: 100%;
  background: #f3f4f6;
  margin: 16px 0; }

.sk-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6; }
  .sk-toggle-row:last-child {
    border-bottom: none; }

.sk-notification-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #f3f4f6;
  gap: 24px; }
  .sk-notification-row:last-child {
    border-bottom: none; }
  .sk-notification-row__left {
    flex: 1; }
  .sk-notification-row__right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px; }
@charset "UTF-8";
@keyframes audit-skeleton-shimmer {
  0% {
    background-position: -200% 0; }
  100% {
    background-position: 200% 0; } }

.email-audit-log {
  padding: 24px;
  max-width: 100%;
  /* ── Header ─────────────────────────────────────── */
  /* ── Filters — single compact row ───────────────── */
  /* ── Table ──────────────────────────────────────── */
  /* ── Skeleton loading ─────────────────────────────── */
  /* ── Empty state ────────────────────────────────── */
  /* ── Pagination ─────────────────────────────────── */ }
  .email-audit-log__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px; }
  .email-audit-log__header-left {
    display: flex;
    align-items: flex-start;
    gap: 12px; }
  .email-audit-log__back-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    color: #444444;
    margin-top: 2px;
    transition: background-color 0.2s ease; }
    .email-audit-log__back-link:hover {
      background-color: #f1f1f1;
      color: #3431ac; }
  .email-audit-log__title {
    font-size: 20px;
    font-weight: 600;
    color: #343741;
    margin: 0;
    line-height: 1.3; }
  .email-audit-log__subtitle {
    font-size: 13px;
    color: #959595;
    margin: 2px 0 0 0; }
  .email-audit-log__count {
    padding-top: 4px; }
  .email-audit-log__filters {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: nowrap;
    /* Strip outer wrapper margin so all controls share the same baseline */
    /* Normalize all MUI inputs (TextField + Select) to identical sizing */ }
    .email-audit-log__filters .MuiFormControl-root {
      margin: 0 !important; }
    .email-audit-log__filters .MuiInputBase-root {
      height: 36px;
      font-size: 13px;
      box-sizing: border-box;
      margin: 0 !important; }
    .email-audit-log__filters .MuiOutlinedInput-notchedOutline {
      top: 0; }
      .email-audit-log__filters .MuiOutlinedInput-notchedOutline legend {
        display: none; }
    .email-audit-log__filters .MuiOutlinedInput-input,
    .email-audit-log__filters .MuiSelect-select.MuiSelect-outlined {
      padding: 6px 12px;
      font-size: 13px;
      display: flex;
      align-items: center;
      box-sizing: border-box;
      height: 36px; }
    .email-audit-log__filters .MuiSelect-select.MuiSelect-outlined {
      padding-right: 32px; }
  .email-audit-log__clear-filters {
    background: none;
    border: none;
    color: #3431ac;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 4px;
    white-space: nowrap;
    transition: background-color 0.2s ease; }
    .email-audit-log__clear-filters:hover {
      background-color: rgba(52, 49, 172, 0.08); }
  .email-audit-log__active-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px; }
    .email-audit-log__active-filters .MuiChip-root {
      font-size: 12px;
      height: 26px; }
  .email-audit-log__table-wrapper {
    position: relative;
    min-height: 200px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    overflow-x: auto; }
  .email-audit-log__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px; }
    .email-audit-log__table thead {
      background-color: #f9fafb;
      border-bottom: 1px solid #e5e7eb; }
      .email-audit-log__table thead th {
        padding: 12px 16px;
        text-align: left;
        font-weight: 600;
        color: #6b7280;
        white-space: nowrap;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.05em; }
    .email-audit-log__table tbody tr {
      border-bottom: 1px solid #f0f1f5;
      transition: background-color 0.15s ease;
      background-color: #fff; }
      .email-audit-log__table tbody tr:last-child {
        border-bottom: none; }
      .email-audit-log__table tbody tr:hover {
        background-color: #f9fafb;
        cursor: pointer; }
    .email-audit-log__table tbody td {
      padding: 12px 16px;
      color: #374151;
      vertical-align: middle; }
    .email-audit-log__table .col-date {
      min-width: 140px;
      white-space: nowrap; }
    .email-audit-log__table .col-recipient,
    .email-audit-log__table .col-from {
      max-width: 220px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .email-audit-log__table .col-type {
      min-width: 140px; }
    .email-audit-log__table .col-subject {
      max-width: 360px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .email-audit-log__type-badge {
    display: inline-block;
    background-color: #f0eefa;
    color: #3431ac;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap; }
  .email-audit-log__skeleton-row td {
    padding: 10px 12px; }
  .email-audit-log__skeleton-row:hover {
    background-color: transparent !important; }
  .email-audit-log__skeleton-bar {
    display: block;
    height: 14px;
    border-radius: 4px;
    background: linear-gradient(90deg, #eaeaea 25%, #f5f5f5 50%, #eaeaea 75%);
    background-size: 200% 100%;
    animation: audit-skeleton-shimmer 1.5s ease-in-out infinite; }
  .email-audit-log__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: #959595; }
    .email-audit-log__empty p {
      margin: 0;
      font-size: 14px; }
  .email-audit-log__empty-hint {
    margin-top: 8px !important;
    font-size: 13px !important;
    color: #b0b0b0; }
  .email-audit-log__pagination {
    margin-top: 8px; }
@charset "UTF-8";
/* ================================================================
   Org Metrics Dashboard
   ================================================================ */
.org-metrics-dashboard {
  padding: 24px;
  min-height: 100vh;
  margin: 0 auto; }

/* ---- Top Bar ---- */
.org-metrics-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px; }
  .org-metrics-topbar__title {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin: 0; }
  .org-metrics-topbar__controls {
    display: flex;
    align-items: center;
    gap: 12px; }

/* ---- Date Range Picker ---- */
.org-metrics-date-range {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px 12px; }
  .org-metrics-date-range__input {
    border: none;
    outline: none;
    font-size: 13px;
    color: #4a5568;
    width: 110px;
    background: transparent;
    text-align: center;
    cursor: pointer; }
    .org-metrics-date-range__input:focus {
      color: #1a365d; }
  .org-metrics-date-range__separator {
    color: #a0aec0;
    font-size: 14px; }

/* ---- Date Picker – green theme for range selection ---- */
.org-metrics-date-range .react-datepicker__day--in-range, .org-metrics-date-range .react-datepicker__day--in-selecting-range {
  background-color: #e8e7f5 !important;
  color: #1e1b5e !important;
  border-radius: 0; }
  .org-metrics-date-range .react-datepicker__day--in-range:hover, .org-metrics-date-range .react-datepicker__day--in-selecting-range:hover {
    background-color: #c4c1e8 !important;
    color: #1e1b5e !important; }

.org-metrics-date-range .react-datepicker__day--range-start, .org-metrics-date-range .react-datepicker__day--range-end, .org-metrics-date-range .react-datepicker__day--selected {
  background: linear-gradient(135deg, #3431AC 0%, #2a2889 100%) !important;
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(52, 49, 172, 0.35); }
  .org-metrics-date-range .react-datepicker__day--range-start:hover, .org-metrics-date-range .react-datepicker__day--range-end:hover, .org-metrics-date-range .react-datepicker__day--selected:hover {
    background: linear-gradient(135deg, #2a2889 0%, #1e1b5e 100%) !important;
    color: #fff !important; }

.org-metrics-date-range .react-datepicker__day--range-start {
  border-radius: 10px 0 0 10px; }
  .org-metrics-date-range .react-datepicker__day--range-start.react-datepicker__day--range-end {
    border-radius: 10px; }

.org-metrics-date-range .react-datepicker__day--range-end {
  border-radius: 0 10px 10px 0; }

.org-metrics-date-range .react-datepicker__day--keyboard-selected {
  background-color: #e8e7f5 !important;
  color: #3431AC !important; }

/* ---- Grid Layout ---- */
.org-metrics-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 20px; }
  .org-metrics-grid--2col {
    grid-template-columns: 1fr 1fr; }
    @media screen and (max-width: 1024px) {
      .org-metrics-grid--2col {
        grid-template-columns: 1fr; } }

/* ---- Card ---- */
.org-metrics-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: box-shadow 0.2s ease; }
  .org-metrics-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }
  .org-metrics-card--full-height {
    display: flex;
    flex-direction: column;
    height: 100%; }
  .org-metrics-card__header {
    padding: 16px 20px 12px;
    border-bottom: 1px solid #f0f0f0; }
  .org-metrics-card__title {
    font-size: 15px;
    font-weight: 600;
    color: #1a202c;
    margin: 0; }
  .org-metrics-card__body {
    padding: 16px 20px 20px;
    flex: 1; }

/* ---- Right Panel (Quick Links + All Time + Pipeline) ---- */
.org-metrics-right-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  padding: 20px;
  transition: box-shadow 0.2s ease; }
  .org-metrics-right-panel:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }

/* ---- Card Stack ---- */
.org-metrics-card-stack {
  display: flex;
  flex-direction: column;
  gap: 0; }
  .org-metrics-card-stack .org-metrics-card {
    border-radius: 12px 12px 0 0; }
    .org-metrics-card-stack .org-metrics-card:last-child {
      border-radius: 0 0 12px 12px; }
    .org-metrics-card-stack .org-metrics-card:only-child {
      border-radius: 12px; }
  .org-metrics-card-stack .org-metrics-origin-section {
    background: #ffffff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    padding: 0 20px 20px; }

/* ---- Section (within cards) ---- */
.org-metrics-section__title {
  font-size: 14px;
  font-weight: 600;
  color: #2d3748;
  margin: 0 0 12px 0; }

/* ---- Stats ---- */
.org-metrics-stats-row {
  display: flex;
  gap: 30px;
  margin-bottom: 16px;
  margin-left: 2px; }
  .org-metrics-stats-row--wrap {
    flex-wrap: wrap; }

.org-metrics-stats-grid--2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px; }

.org-metrics-stat {
  flex: 1;
  min-width: 0; }
  .org-metrics-stat--small {
    flex: 0 0 auto; }
  .org-metrics-stat__label {
    font-size: 12px;
    font-weight: 500;
    color: #718096;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .org-metrics-stat__icon {
    font-size: 14px; }
  .org-metrics-stat__row {
    display: flex;
    align-items: center;
    gap: 8px; }
  .org-metrics-stat__value {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.2; }
    .org-metrics-stat__value--danger {
      color: #c53030; }
    .org-metrics-stat__value--success {
      color: #3431AC; }
  .org-metrics-stat--small .org-metrics-stat__value {
    font-size: 18px; }
  .org-metrics-stat__badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background: #d8d6ed;
    color: #1e1b5e;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap; }
  .org-metrics-stat__subtext {
    font-size: 11px;
    color: #a0aec0;
    margin-top: 2px; }

/* ---- Chart Container ---- */
.org-metrics-chart-container {
  position: relative;
  width: 100%; }

.org-metrics-charts-side-by-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px; }
  @media screen and (max-width: 768px) {
    .org-metrics-charts-side-by-side {
      grid-template-columns: 1fr; } }

.org-metrics-referrals-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px; }
  @media screen and (max-width: 768px) {
    .org-metrics-referrals-split {
      grid-template-columns: 1fr; } }

.org-metrics-referrals-column {
  min-width: 0; }
  .org-metrics-referrals-column .org-metrics-stats-row {
    margin-bottom: 12px; }

/* ---- Quick Links ---- */
.org-metrics-quick-links__title {
  font-size: 14px;
  font-weight: 600;
  color: #2d3748;
  margin: 0 0 12px; }

.org-metrics-quick-links__item {
  margin-bottom: 10px; }

.org-metrics-quick-links__label {
  font-size: 12px;
  font-weight: 500;
  color: #718096;
  display: block;
  margin-bottom: 4px; }

.org-metrics-quick-links__url-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 6px 10px; }

.org-metrics-quick-links__url {
  flex: 1;
  font-size: 12px;
  color: #2b6cb0;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }
  .org-metrics-quick-links__url:hover {
    text-decoration: underline; }

.org-metrics-quick-links__copy-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 28px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: #718096;
  font-size: 16px;
  line-height: 1; }
  .org-metrics-quick-links__copy-btn:hover {
    color: #2d3748;
    background: #edf2f7; }

.org-metrics-copy-btn {
  background: none;
  border: none;
  padding: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  opacity: 0.6;
  transition: opacity 0.15s; }
  .org-metrics-copy-btn:hover {
    opacity: 1; }

/* ---- Features Grid ---- */
.org-metrics-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px; }

.org-metrics-feature-card {
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color 0.2s, box-shadow 0.2s; }
  .org-metrics-feature-card:hover {
    border-color: #bee3f8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); }
  .org-metrics-feature-card__icon {
    font-size: 22px;
    margin-bottom: 6px; }
  .org-metrics-feature-card__title {
    font-size: 13px;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 4px; }
  .org-metrics-feature-card__desc {
    font-size: 11px;
    color: #718096;
    line-height: 1.45;
    margin: 0 0 8px; }
  .org-metrics-feature-card__link {
    font-size: 11px;
    font-weight: 600;
    color: #2b6cb0;
    text-decoration: none; }
    .org-metrics-feature-card__link:hover {
      text-decoration: underline; }

/* ---- Tables ---- */
.org-metrics-table .ant-table {
  font-size: 13px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e7eb; }

.org-metrics-table .ant-table-thead > tr > th {
  background: #f9fafb;
  font-weight: 600;
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #e5e7eb;
  padding: 12px 16px; }

.org-metrics-table .ant-table-tbody > tr > td {
  border-bottom: 1px solid #f0f1f5;
  padding: 12px 16px;
  font-size: 13px;
  color: #374151; }

.org-metrics-table .ant-table-tbody > tr:last-child > td {
  border-bottom: none; }

.org-metrics-table .ant-table-tbody > tr:hover > td {
  background: #f9fafb; }

.org-metrics-table__job-title {
  font-weight: 500;
  color: #1f2937; }

/* ---- Leaderboard ---- */
.org-metrics-leaderboard-card {
  margin-bottom: 24px; }
  .org-metrics-leaderboard-card .org-metrics-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px; }

.org-metrics-leaderboard__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap; }
  .org-metrics-leaderboard__actions .app-search-field {
    width: 220px;
    flex: 0 0 auto;
    height: 24px; }
  .org-metrics-leaderboard__actions .app-search-field__input {
    height: 24px;
    padding: 0 8px 0 28px !important;
    font-size: 13px;
    line-height: 20px;
    border-radius: 6px !important; }
  .org-metrics-leaderboard__actions .app-search-field__icon {
    left: 8px;
    width: 14px;
    height: 14px; }

.org-metrics-leaderboard__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px; }

.org-metrics-leaderboard__name {
  font-weight: 600;
  color: #2d3748; }

.org-metrics-leaderboard__pct {
  font-size: 11px;
  color: #a0aec0; }

/* ---- Error / Empty States ---- */
.org-metrics-error-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  text-align: center; }
  .org-metrics-error-state p {
    font-size: 13px;
    color: #718096;
    margin: 0 0 12px; }

.org-metrics-retry-btn {
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #2b6cb0;
  background: #ebf8ff;
  border: 1px solid #bee3f8;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s; }
  .org-metrics-retry-btn:hover {
    background: #bee3f8;
    border-color: #90cdf4; }

.org-metrics-card--error .org-metrics-card__body {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center; }

.org-metrics-empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  font-size: 13px;
  color: #a0aec0; }

/* ---- Responsive ---- */
@media screen and (max-width: 768px) {
  .org-metrics-dashboard {
    padding: 16px; }
  .org-metrics-topbar {
    flex-direction: column;
    align-items: flex-start; }
    .org-metrics-topbar__title {
      font-size: 20px; }
  .org-metrics-stats-row {
    flex-wrap: wrap; }
  .org-metrics-stat__value {
    font-size: 18px; }
  .org-metrics-leaderboard__actions {
    width: 100%; }
    .org-metrics-leaderboard__actions .ant-input-search {
      width: 100% !important; } }
.referral__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  padding: 0px 30px;
  background: #fff; }
  .referral__footer .left-side {
    display: flex;
    flex-direction: column;
    margin-top: 13px; }
    .referral__footer .left-side img {
      width: 50px; }
  .referral__footer .footer-text {
    font-size: 13px;
    margin: 5px 0px 13px; }
  .referral__footer .footer__links {
    display: flex;
    list-style: none; }
    .referral__footer .footer__links .list__item {
      margin-right: 40px; }
      .referral__footer .footer__links .list__item a {
        font-weight: 500;
        font-size: 13px;
        line-height: 15px;
        text-align: right;
        color: rgba(0, 0, 0, 0.5);
        text-decoration: none; }

@media (max-width: 480px) {
  .referral__footer {
    flex-wrap: wrap; }
    .referral__footer .footer__links {
      flex-wrap: wrap;
      margin-bottom: 10px; } }
.header {
  position: fixed;
  width: 100%;
  height: 60px;
  background-color: #fff;
  box-shadow: 0px 2px 4px rgba(147, 157, 177, 0.1);
  display: flex;
  justify-content: space-between;
  padding: 0px 27px;
  z-index: 100; }
  .header .left-side {
    display: flex;
    justify-content: center;
    align-items: center; }
    .header .left-side .company-logo {
      display: flex;
      align-items: center;
      font-weight: 500;
      font-size: 14px;
      line-height: 16px;
      color: #9B9B9B; }
      .header .left-side .company-logo img {
        margin-right: 13px;
        height: 30px;
        width: 30px;
        vertical-align: bottom; }
  .header .right-side {
    place-self: center; }
    .header .right-side .signup-btn {
      margin-right: 10px;
      border: 1px solid #f4f4f4; }

@media (max-width: 480px) {
  .header .right-side > .menu-options {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    position: absolute;
    right: 20px;
    top: 50px;
    height: 100px;
    width: 140px;
    box-shadow: 0px 2px 4px rgba(147, 157, 177, 0.25);
    border-radius: 0px 0px 4px 4px; }
    .header .right-side > .menu-options button {
      width: 100%;
      margin: 0; } }
.phone-container {
  margin-top: 20px; }
  .phone-container .special-label {
    left: 10px;
    font-size: 12px; }

.is-focus .special-label {
  color: #3431AC; }

.is-invalid .special-label {
  color: #f44336; }

.phone-input {
  width: 100% !important;
  height: 36px; }
  .phone-input:focus {
    border: 2px solid #3431AC !important;
    box-shadow: 0 0 0 0px !important; }

.react-tel-input .form-control.invalid-number:focus {
  border: 2px solid #f44336 !important; }

.react-phone-input-cont {
  position: relative; }
  .react-phone-input-cont .phone-icon {
    position: absolute;
    right: 15px;
    top: calc(100% - 28px); }
.FormikAsyncSelect__dropdown-icon {
  margin-right: 14px;
  margin-top: 3px; }

.FormikAsyncSelect__no-result-MenuItem {
  background-color: #fff !important; }
  .FormikAsyncSelect__no-result-MenuItem:hover {
    background-color: #fff  !important; }
  .FormikAsyncSelect__no-result-MenuItem .no-result-found {
    height: 190px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: auto; }
    .FormikAsyncSelect__no-result-MenuItem .no-result-found .circle {
      height: 63px;
      width: 63px;
      border: 1px solid #959595;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.referral-templates-list {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column; }
  .referral-templates-list .newBonusBtn {
    font-size: 16px; }
  .referral-templates-list .memberIconImage {
    display: inline-block;
    vertical-align: bottom;
    padding-right: 15px; }
  .referral-templates-list .table-container {
    height: auto;
    background: #fff;
    overflow: hidden; }
    .referral-templates-list .table-container .table-actions {
      position: relative; }
      .referral-templates-list .table-container .table-actions .dropdown__trigger {
        display: flex;
        width: 20px;
        height: 20px;
        justify-content: center;
        align-items: center;
        cursor: pointer; }
      .referral-templates-list .table-container .table-actions .dropdown__content {
        background-color: #ffffff;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        z-index: 1111111;
        width: 160px; }
        .referral-templates-list .table-container .table-actions .dropdown__content ul {
          list-style-type: none; }
        .referral-templates-list .table-container .table-actions .dropdown__content li {
          font-size: 13px;
          font-weight: 400;
          line-height: 2.4;
          color: #374151;
          padding: 0 18px;
          border-bottom: 1px solid #f0f1f5;
          white-space: nowrap;
          cursor: pointer;
          transition: background-color 0.15s ease; }
          .referral-templates-list .table-container .table-actions .dropdown__content li:hover {
            background-color: #f9fafb; }
          .referral-templates-list .table-container .table-actions .dropdown__content li:last-of-type {
            border: none; }
    .referral-templates-list .table-container .table-checkbox {
      position: absolute;
      opacity: 0;
      margin: 0;
      width: 18px;
      height: 18px; }
      .referral-templates-list .table-container .table-checkbox + label {
        position: relative;
        cursor: pointer;
        padding: 0; }
      .referral-templates-list .table-container .table-checkbox + label:before {
        content: '';
        display: inline-block;
        vertical-align: text-top;
        width: 18px;
        height: 18px;
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 4px;
        transition: background-color 0.15s ease, border-color 0.15s ease; }
      .referral-templates-list .table-container .table-checkbox:checked + label:before {
        background: #3431AC;
        border-color: #3431AC; }
      .referral-templates-list .table-container .table-checkbox:checked + label:after {
        content: '';
        position: absolute;
        left: 5px;
        top: 9px;
        background: white;
        width: 2px;
        height: 2px;
        box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
        transform: rotate(45deg); }
    .referral-templates-list .table-container .sort-icon {
      display: inline-block;
      vertical-align: middle;
      font-size: 10px;
      margin-left: 10px;
      color: #3431AC; }
      .referral-templates-list .table-container .sort-icon.up {
        transform: rotate(180deg); }
    .referral-templates-list .table-container .order-position {
      display: inline-block;
      padding: 3px 5px;
      font-size: 10px;
      color: #3431AC; }
    .referral-templates-list .table-container .status {
      text-transform: capitalize; }
      .referral-templates-list .table-container .status.active {
        color: #2a2889; }
      .referral-templates-list .table-container .status.invite {
        color: #ffa722; }
    .referral-templates-list .table-container .select .Select-control .Select-value .Select-value-label {
      color: #c2c2c2 !important;
      font-weight: normal; }
    .referral-templates-list .table-container .select .Select-control .Select-arrow {
      color: #959595; }
  .referral-templates-list .loading-in-main {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    top: 0;
    left: 0; }
  .referral-templates-list .table-container table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 13px;
    color: #374151; }
    .referral-templates-list .table-container table thead {
      background: #f9fafb;
      box-shadow: inset 0 -1px 0 #e5e7eb; }
      .referral-templates-list .table-container table thead th {
        padding: 12px 16px;
        font-size: 12px;
        font-weight: 600;
        color: #6b7280;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        text-align: left;
        vertical-align: middle;
        white-space: nowrap;
        position: relative;
        -webkit-user-select: none;
           -moz-user-select: none;
                user-select: none; }
    .referral-templates-list .table-container table tbody tr {
      border-bottom: 1px solid #f0f1f5;
      transition: background-color 0.15s ease;
      cursor: pointer; }
      .referral-templates-list .table-container table tbody tr:last-child {
        border-bottom: none; }
      .referral-templates-list .table-container table tbody tr:hover {
        background-color: #f9fafb; }
        .referral-templates-list .table-container table tbody tr:hover .Select-control {
          background-color: transparent; }
      .referral-templates-list .table-container table tbody tr.selected {
        background-color: #eef2ff; }
        .referral-templates-list .table-container table tbody tr.selected .Select-control {
          background-color: transparent; }
    .referral-templates-list .table-container table tbody td {
      padding: 12px 16px;
      font-size: 13px;
      font-weight: 500;
      color: #374151;
      text-align: left;
      justify-content: flex-start;
      vertical-align: middle; }
      .referral-templates-list .table-container table tbody td .Select,
      .referral-templates-list .table-container table tbody td .Select-control,
      .referral-templates-list .table-container table tbody td .Select-value,
      .referral-templates-list .table-container table tbody td .Select-value-label,
      .referral-templates-list .table-container table tbody td .Select-placeholder,
      .referral-templates-list .table-container table tbody td .Select-input,
      .referral-templates-list .table-container table tbody td .Select-input input {
        font-weight: normal; }
  .referral-templates-list .header .header-functionality .btn {
    padding: 15px 15px;
    min-width: 135px !important;
    font-weight: bold;
    border-radius: 5px; }
  .referral-templates-list .inActiveBtn {
    border: 1px solid #bfbfbf;
    color: #bfbfbf;
    background-color: #fff; }
  .referral-templates-list .activeBtn {
    border: 1px solid #cccccc;
    color: #3431AC;
    background-color: #fff; }
  .referral-templates-list .delBtn {
    border: 1px solid #bfbfbf;
    color: #e74c3c;
    background-color: #fff; }
  .referral-templates-list .sorting:after {
    content: "";
    display: inline-block;
    width: 9px;
    height: 6px;
    margin-left: 13px; }
  .referral-templates-list .sorting.sort-asc:after {
    background-image: url(/bundles/8d97f712c0f8147ac9a97176aa55a7b6.png); }
  .referral-templates-list .sorting.sort-desc:after {
    background-image: url(/bundles/6b68f32a5dea246fdbe50d93a808e60d.png); }
  .referral-templates-list .header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 30px;
    flex: 0 0 auto;
    background-color: #fff;
    min-height: 70px;
    box-shadow: 0 2px 5px 0 rgba(196, 206, 220, 0.5);
    position: relative;
    z-index: 1;
    /* Hosts AppSearchField in header row; input metrics live in AppSearchField.scss (+ app-search-field-input mixin) */ }
    .referral-templates-list .header .page-title {
      display: flex;
      align-items: center;
      min-width: 122px;
      padding: 10px 30px;
      border-right: 1px solid #e8e8e8; }
      .referral-templates-list .header .page-title h2 {
        font-size: 20px;
        font-weight: bold;
        color: #18332f; }
    .referral-templates-list .header .subtitle {
      text-align: center;
      margin-top: 20px;
      color: #414141; }
    .referral-templates-list .header .about-roles {
      text-align: center;
      margin-top: 25px; }
    .referral-templates-list .header .search-block {
      flex: 1 1 auto;
      min-width: 0;
      width: 100%;
      display: block;
      padding: 10px 30px; }
    .referral-templates-list .header .header-functionality {
      border-left: 1px solid #e8e8e8;
      display: flex;
      align-items: center;
      padding: 0 30px; }
      .referral-templates-list .header .header-functionality .bulk-select-wrapper {
        display: flex;
        align-items: center;
        border-left: 1px solid #e8e8e8;
        height: 100%;
        padding-left: 30px; }
        .referral-templates-list .header .header-functionality .bulk-select-wrapper .Select {
          flex: 0 0 auto;
          width: 170px; }
        .referral-templates-list .header .header-functionality .bulk-select-wrapper .select-label {
          color: #a5adac;
          font-size: 12px;
          margin-right: 20px; }
      .referral-templates-list .header .header-functionality .btn {
        padding: 10px 15px;
        min-width: 140px; }
      .referral-templates-list .header .header-functionality .bulk-actions {
        display: flex;
        align-items: center; }
        .referral-templates-list .header .header-functionality .bulk-actions .bulk-button {
          margin-right: 30px;
          margin-top: 4px; }
  .referral-templates-list thead tr:first-child {
    height: auto; }
  .referral-templates-list tbody tr {
    height: auto;
    min-height: 56px; }
  .referral-templates-list tr {
    cursor: pointer; }
  .referral-templates-list td {
    overflow-x: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
    .referral-templates-list td.seventh-child {
      width: 10%; }
    .referral-templates-list td.forth-child, .referral-templates-list td.sixth-child {
      width: 30%; }
    .referral-templates-list td.first-child, .referral-templates-list td.second-child, .referral-templates-list td.third-child, .referral-templates-list td.fifth-child {
      width: 7.5%; }
    .referral-templates-list td.bounty-guarantee-warning {
      color: #d85147; }
    .referral-templates-list td.bounty-status-title-paid {
      color: #18332f;
      opacity: 0.3; }
    .referral-templates-list td .bounty-tooltip {
      background-color: #22c76f !important;
      box-shadow: 0 2px 4px rgba(24, 51, 47, 0.3);
      color: #ffffff;
      font-family: Roboto;
      font-size: 12px;
      font-weight: 700;
      padding: 10px 21px; }
      .referral-templates-list td .bounty-tooltip.place-top:after {
        border-top-color: #22c76f !important; }
  .referral-templates-list button {
    font-family: Roboto;
    min-width: 90px;
    width: 90px;
    height: 38px;
    padding: 0; }
    .referral-templates-list button.bounties-status-approve {
      color: #22c76f;
      background-color: #fff; }

.tabs-refer {
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px; }
  .tabs-refer .rc-tabs-tab-active {
    font-weight: bold;
    color: black;
    border-bottom: 2px solid black;
    padding-bottom: 12px; }
  .tabs-refer .rc-tabs-nav-wrap {
    margin-bottom: 15px;
    border-bottom: 1px solid #d1d8dc; }
  .tabs-refer .rc-tabs-tab {
    display: inline-block;
    margin-right: 30px;
    cursor: pointer; }
.candidate-engaged .modal-container {
  width: 689px;
  max-width: calc(100vw - 32px); }

.candidate-engaged .modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding-top: 48px;
  padding-bottom: 24px;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #444444; }
  .candidate-engaged .modal-body .modal-text {
    margin-top: 25px;
    font-weight: 600;
    width: 100%;
    padding-bottom: 9px;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.46px;
    color: #444444; }
  .candidate-engaged .modal-body .modal-text1 {
    margin-top: 15px;
    font-weight: 600;
    width: 100%; }
  .candidate-engaged .modal-body .modal-para {
    margin-top: 15px;
    font-weight: 400;
    width: 100%;
    font-size: 16px;
    line-height: 20px;
    padding-top: 10px;
    color: #444444; }
  .candidate-engaged .modal-body .grey-text {
    margin-top: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.02em;
    color: #959595; }
    .candidate-engaged .modal-body .grey-text.italic {
      font-style: italic; }
  .candidate-engaged .modal-body .date-input input {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.02em;
    color: #444444; }
  .candidate-engaged .modal-body .icon-larger {
    margin-top: 70px;
    margin-bottom: 20px; }

.candidate-engaged .modal-footer {
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  padding-bottom: 40px; }

@media (max-width: 480px) {
  .candidate-engaged .modal-container {
    width: auto; } }
.ReferralSuccess__conatiner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  max-width: 375px;
  width: 100%;
  margin: auto; }
  .ReferralSuccess__conatiner .strength-container {
    width: 100%;
    margin-top: 20px; }
    .ReferralSuccess__conatiner .strength-container .strength-bar {
      display: flex;
      justify-content: space-between;
      align-items: center; }
      .ReferralSuccess__conatiner .strength-container .strength-bar .strength-percentage {
        font-family: 'Inter';
        font-style: normal;
        font-size: 12px;
        line-height: 18px;
        text-align: right;
        color: #3431AC;
        margin-left: 5px; }
    .ReferralSuccess__conatiner .strength-container .answers-block {
      display: flex;
      flex-wrap: wrap;
      font-family: 'Roboto';
      font-style: normal;
      font-size: 12px;
      line-height: 16px;
      letter-spacing: 0.4px;
      color: #000000;
      margin-top: 4px; }
      .ReferralSuccess__conatiner .strength-container .answers-block .question {
        font-weight: 600; }
      .ReferralSuccess__conatiner .strength-container .answers-block .link {
        font-weight: 400;
        color: #000000; }
      .ReferralSuccess__conatiner .strength-container .answers-block .refer-success-pdfs {
        margin-bottom: 3px;
        border: 1px solid #444444;
        border-radius: 4px;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 3.85714px 8px;
        gap: 4px;
        width: -moz-fit-content;
        width: fit-content;
        height: 22px; }
        .ReferralSuccess__conatiner .strength-container .answers-block .refer-success-pdfs .pdf-file-name {
          overflow: hidden;
          white-space: nowrap;
          max-width: 208px;
          text-overflow: ellipsis;
          height: 1.2em; }
      .ReferralSuccess__conatiner .strength-container .answers-block .answer {
        margin-left: 5px; }
      .ReferralSuccess__conatiner .strength-container .answers-block .additional-url-answer {
        margin-left: 5px;
        overflow-wrap: break-word;
        max-width: 240px; }
      .ReferralSuccess__conatiner .strength-container .answers-block .skills-answer {
        margin-left: 5px;
        overflow-wrap: break-word;
        max-width: 205px; }
    .ReferralSuccess__conatiner .strength-container .success-image-conatiner {
      display: flex;
      flex-direction: column;
      align-items: center;
      font-family: 'Roboto';
      font-style: normal;
      color: #444444; }
      .ReferralSuccess__conatiner .strength-container .success-image-conatiner svg {
        margin-top: 20px; }
      .ReferralSuccess__conatiner .strength-container .success-image-conatiner .success-heading {
        font-size: 24px;
        line-height: 28px;
        letter-spacing: -0.458182px;
        margin-top: 30px; }
      .ReferralSuccess__conatiner .strength-container .success-image-conatiner .success-text {
        font-size: 14px;
        line-height: 16px;
        margin: 10px 0px;
        text-align: center; }
        .ReferralSuccess__conatiner .strength-container .success-image-conatiner .success-text .user-email-text {
          display: table;
          font-size: 14px;
          font-weight: 500;
          text-align: center; }
  .ReferralSuccess__conatiner .actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 30px 0px; }
    .ReferralSuccess__conatiner .actions button {
      text-transform: unset !important;
      min-height: 40px; }
    .ReferralSuccess__conatiner .actions .send-another-referral {
      flex: 1;
      display: flex; }
      .ReferralSuccess__conatiner .actions .send-another-referral .send-another-btn {
        width: 100%;
        margin: 0px 5px; }
    .ReferralSuccess__conatiner .actions .view-in-tracker {
      flex: 1;
      display: flex; }
      .ReferralSuccess__conatiner .actions .view-in-tracker .view-in-tracker-btn {
        color: #fff;
        width: 100%;
        margin: 0px 5px; }

.textWrap {
  width: 100%;
  overflow-wrap: break-word; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.Steper__Containor {
  width: 100%;
  height: 120px;
  max-height: 120px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
  box-shadow: rgba(99, 99, 99, 0.2) 8px 0px 0px 0px; }
  @media (max-width: 540px) {
    .Steper__Containor {
      left: 0;
      bottom: 0rem;
      height: 38%;
      z-index: 1000;
      max-height: none;
      margin-bottom: 0rem;
      position: fixed;
      top: unset; }
      .Steper__Containor .mobile-height {
        height: 12% !important; }
      .Steper__Containor .stepper-contant_click {
        justify-content: flex-end !important; } }
  @media (max-width: 540px) and (max-height: 650px) {
    .Steper__Containor .stepper-contant-remove-padding {
      padding-bottom: 3px !important; } }
  @media (max-height: 620px) {
    .Steper__Containor {
      height: 50%; } }
  .Steper__Containor .stepper-contant {
    width: 84%;
    height: 100%;
    background-color: #FFFFFF;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; }
    .Steper__Containor .stepper-contant .stepper-heading-mobile-view {
      background-color: #FFFFFF;
      flex: 1; }
      .Steper__Containor .stepper-contant .stepper-heading-mobile-view .dropdown-icon {
        display: none; }
    @media (max-width: 960px) {
      .Steper__Containor .stepper-contant {
        width: 100%; } }
    @media (max-width: 540px) {
      .Steper__Containor .stepper-contant {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        display: flex;
        border-radius: 0px;
        padding: 1rem;
        height: 100%;
        box-shadow: none; }
        .Steper__Containor .stepper-contant .stepper-heading-mobile-view {
          display: flex;
          justify-content: space-between;
          align-items: center;
          width: 100%;
          background-color: transparent;
          padding-bottom: .5rem; }
          .Steper__Containor .stepper-contant .stepper-heading-mobile-view .dropdown-icon {
            display: block; }
          .Steper__Containor .stepper-contant .stepper-heading-mobile-view .stepper-drop-icon {
            background-color: #F7F7F9;
            border-radius: 100%;
            justify-content: center;
            align-items: center;
            display: flex;
            width: 40px;
            height: 40px;
            margin: -1rem; } }
    .Steper__Containor .stepper-contant .stepper-section-width {
      width: 28%; }
      @media (max-width: 540px) {
        .Steper__Containor .stepper-contant .stepper-section-width {
          width: 93%; } }
    .Steper__Containor .stepper-contant .stepper-second-width {
      width: 27%; }
      @media (max-width: 540px) {
        .Steper__Containor .stepper-contant .stepper-second-width {
          width: 100%; } }
    .Steper__Containor .stepper-contant .stepper-heading {
      height: 32px;
      font-family: 'Roboto';
      font-style: normal;
      font-weight: 500;
      font-size: 16px;
      line-height: 16px;
      text-transform: uppercase;
      color: #737A8E;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 75%; }
      @media (max-width: 540px) {
        .Steper__Containor .stepper-contant .stepper-heading {
          width: 70%; } }
      @media (max-width: 960px) {
        .Steper__Containor .stepper-contant .stepper-heading {
          width: 100%; } }
      @media (max-height: 620px) {
        .Steper__Containor .stepper-contant .stepper-heading {
          height: 90%;
          width: 80%; } }
    @media (max-width: 540px) {
      .Steper__Containor .stepper-contant .showStepper {
        display: none !important; } }
    .Steper__Containor .stepper-contant .stepper-section1 {
      display: flex;
      align-items: center;
      position: relative;
      width: -moz-fit-content;
      width: fit-content;
      flex: 1; }
      .Steper__Containor .stepper-contant .stepper-section1 .arrow-icons {
        margin: 4px 30px 0px; }
        @media (max-width: 540px) {
          .Steper__Containor .stepper-contant .stepper-section1 .arrow-icons {
            justify-content: none;
            display: none; }
            .Steper__Containor .stepper-contant .stepper-section1 .arrow-icons .mobile-view-line {
              width: 1rem;
              height: 1rem;
              position: absolute;
              bottom: 0; } }
      .Steper__Containor .stepper-contant .stepper-section1 .stepper-icon {
        background-color: #F7F7F9;
        border-radius: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        min-width: 40px;
        height: 40px;
        margin-right: 8px;
        display: hidden; }
      .Steper__Containor .stepper-contant .stepper-section1 .stepper-content {
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 400;
        font-size: 12px;
        line-height: 14px;
        color: #000000; }
  .Steper__Containor .mobile-view-line {
    display: none; }
    @media (max-width: 540px) {
      .Steper__Containor .mobile-view-line {
        width: .06rem;
        height: 70%;
        background-color: #737A8E66;
        margin-left: 1.2rem;
        display: block;
        margin-top: .35rem; } }
  .Steper__Containor .stepper-contant-div {
    width: 25%;
    flex: 1; }
    @media (max-width: 540px) {
      .Steper__Containor .stepper-contant-div {
        height: 30%;
        overflow: hidden;
        margin: 3.5px 0rem;
        width: 100%; }
  .remove-hight {
    height: 10%;
    box-shadow: none; } }
.vertical-options {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  margin: 0 !important; }
.skils-dropdown {
  margin-top: 12px; }

.worked-with-person-options {
  display: flex !important;
  flex-direction: row !important; }
  .worked-with-person-options .MuiFormControlLabel-root {
    margin-right: 93px !important;
    color: #444444 !important; }

.horizontal-rule {
  width: 100%;
  margin: 25px 0 0 0 !important; }

.question-container .redux-select-latest-container .Select-multi-value-wrapper .Select-value {
  border: 1px solid #444444; }
  .question-container .redux-select-latest-container .Select-multi-value-wrapper .Select-value .Select-value-icon {
    background-color: #fff;
    color: #444444; }
  .question-container .redux-select-latest-container .Select-multi-value-wrapper .Select-value .Select-value-label {
    color: #444444; }
.question-container .refer-drop-zone {
  margin-top: 8px;
  background: #f5f7f9;
  border: 1px dashed #d1d8dc;
  height: 130px;
  width: 100%;
  left: 0px;
  top: 0px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center; }

.main-div-strength-questions {
  padding-top: 10px;
  padding-bottom: 10px; }
  .main-div-strength-questions .document-upload-styling {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 10px; }
    .main-div-strength-questions .document-upload-styling .delete-icon-style {
      color: #757575;
      padding-left: auto;
      cursor: pointer; }
    .main-div-strength-questions .document-upload-styling .icon-file-name {
      display: flex;
      align-items: center; }
      .main-div-strength-questions .document-upload-styling .icon-file-name .document-icon-style {
        width: 16px;
        height: 20px;
        margin-right: 5px; }
      .main-div-strength-questions .document-upload-styling .icon-file-name .document-name {
        font-weight: 400;
        font-size: 14px;
        line-height: 14px;
        letter-spacing: 1px;
        color: #444444;
        overflow: hidden;
        white-space: nowrap;
        max-width: 300px;
        text-overflow: ellipsis; }

.input-with-delete-icon {
  display: flex;
  flex-direction: row; }

.close-button {
  width: 10%;
  cursor: pointer;
  margin-top: 6px; }

.link-button-main {
  cursor: pointer;
  color: #aaaaaa;
  font-size: 14px;
  border-bottom: 1px;
  border-bottom-color: #aaaaaa;
  border-bottom-style: dotted;
  padding-left: 0;
  margin-top: 10px !important;
  padding-right: 0;
  border-top-width: 0;
  border-left-width: 0;
  border-right-width: 0;
  border-radius: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  height: 17px; }

.text-field-link {
  margin-top: 5px !important; }

.horizontal-line {
  width: 100%; }

.additional-urls {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #444444; }

.drag-drop-text {
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #444444;
  margin-top: 16px;
  margin-bottom: 11px; }
  .drag-drop-text .choose-file {
    color: #0f73bc; }

.document-type {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #aaaaaa; }

.circle-styling {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  cursor: pointer; }

.add-more-button {
  color: #aaa;
  font-size: 14px; }
.refer-drop-zone {
  margin-top: 8px;
  background: #f5f7f9;
  border: 1px dashed #d1d8dc;
  height: 130px;
  width: 710px;
  left: 0px;
  top: 0px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center; }

.close-button {
  width: 10%;
  cursor: pointer;
  margin-top: 6px; }

.strength-first-step-button {
  cursor: pointer; }

.link-button-main {
  cursor: pointer;
  color: #aaaaaa;
  font-size: 14px;
  border-bottom: 1px;
  border-bottom-color: #aaaaaa;
  border-bottom-style: dotted;
  padding-left: 0;
  margin-top: 10px !important;
  padding-right: 0;
  border-top-width: 0;
  border-left-width: 0;
  border-right-width: 0;
  border-radius: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  height: 17px; }

.text-field-link {
  margin-top: 5px !important; }

.horizontal-line {
  padding-top: 5px !important;
  padding-bottom: 5px;
  width: 100%; }

.additional-urls {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #444444; }

.drag-drop-text {
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #444444;
  margin-top: 16px;
  margin-bottom: 11px; }
  .drag-drop-text .choose-file {
    color: #0f73bc; }

.document-type {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #aaaaaa; }

.referral-title {
  display: flex;
  flex-direction: column;
  padding-right: 10px;
  margin-top: 15px; }
  .referral-title .title {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #000000; }

.referral-strength {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter';
  font-style: normal;
  font-size: 12px;
  line-height: 18px;
  margin: 8px 0px; }
  .referral-strength .heading {
    color: #444444;
    font-size: 14px; }
  .referral-strength .percentage {
    color: #3431AC; }

.question-container {
  margin-top: 20px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 25px; }
  .question-container:last-child {
    border-bottom: none; }
  .question-container label {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.4px;
    color: #000000; }
  .question-container .question-field {
    margin-top: 8px !important; }
  .question-container .known-level {
    color: #444444 !important;
    flex-direction: row;
    justify-content: space-between; }
  .question-container .range-labels {
    justify-content: space-between;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #959595; }
  .question-container .diverse-checkbox {
    display: block; }

.no-border-bottom {
  border-bottom: none; }

.circle-styling {
  display: flex;
  justify-content: center;
  margin-top: 15px; }
@keyframes blink {
  0% {
    border-color: #fdcc00; }
  50% {
    border-color: #fc8900; }
  100% {
    border-color: #feba00; }
  0% {
    border-color: #fdcc00; }
  50% {
    border-color: #fc8900; }
  100% {
    border-color: #feba00; }
  0% {
    border-color: #fdcc00; }
  50% {
    border-color: #fc8900; }
  100% {
    border-color: #feba00; } }

#animatedBorderID {
  animation: blink 1s infinite;
  -webkit-animation: blink 1s infinite;
  -moz-animation: blink 1s infinite;
  -ms-animation: blink 1s infinite;
  border: 2.5px solid;
  border-radius: 7px; }
/* Hide the original file input */
.file-upload {
  opacity: 0;
  display: none; }
.wrapper-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  background-color: #fff;
  padding: 13px; }
  .wrapper-container .heading {
    font-weight: 700;
    font-size: 20px;
    line-height: 101%;
    color: #959595;
    width: 100%;
    margin-bottom: 20px;
    padding-left: 3px; }
  .wrapper-container .description-wrapper {
    display: flex;
    align-self: flex-start;
    font-size: 15px;
    align-items: center; }
    .wrapper-container .description-wrapper .authenticationButtons {
      color: #3431AC;
      text-decoration: underline;
      font-weight: bold;
      cursor: pointer;
      padding: 0; }
    .wrapper-container .description-wrapper .reward-icon {
      margin-right: 10px; }

.animated-border-cont {
  margin-bottom: 8px;
  width: 100%; }
.job-containor {
  width: 100%;
  overflow-y: auto;
  overflow-x: auto; }
.selectedRowBackground {
  background: #eef2ff; }

.dropDownIcon {
  cursor: pointer;
  padding-left: 20px; }

.reward-used-in-parent {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 19px;
  margin-left: 25px; }

.reward-used-in-Icon {
  height: 20px; }

.table-wrapper .table-container > table > thead > tr {
  border-bottom: 1px solid #e5e7eb; }

.table-wrapper .table-container > table > tbody > tr {
  border-bottom: 1px solid #f0f1f5;
  transition: background-color 0.15s ease; }
  .table-wrapper .table-container > table > tbody > tr:last-child {
    border-bottom: none; }
  .table-wrapper .table-container > table > tbody > tr:hover {
    background-color: #f9fafb; }

.archived-table-heading {
  background: #6b7280;
  font-size: 12px;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  padding: 4px 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px; }

@media screen and (max-width: 784px) {
  .table-wrapper {
    min-width: 349px !important;
    overflow-x: scroll !important;
    overflow-y: hidden; } }

.rewards-table-more-cont {
  display: flex;
  justify-content: flex-end; }

.badge-default {
  background-color: #eef2ff;
  color: #3431AC;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 8px;
  font-size: 0.75rem;
  font-weight: 600; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.ReferralPage__base {
  background-color: #F4F5F8; }
  .ReferralPage__base .referral-header {
    height: 60px; }
  .ReferralPage__base .referral-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    width: 100%;
    min-height: calc(100vh - 61px); }
    .ReferralPage__base .referral-container .referral_form_containor {
      display: flex;
      align-items: center;
      justify-content: start; }
    .ReferralPage__base .referral-container .referral-form-card {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-top: 20px;
      margin-bottom: 50px;
      padding: 0px;
      gap: 10px;
      max-width: 750px;
      width: 100%;
      background: #FFFFFF;
      box-shadow: 0px 2px 4px rgba(147, 157, 177, 0.25);
      border-radius: 4px;
      align-self: flex-start; }
      .ReferralPage__base .referral-container .referral-form-card #referral-form {
        width: 100%;
        padding: 0px 10px; }
      @media (max-width: 540px) {
        .ReferralPage__base .referral-container .referral-form-card {
          margin-top: 0px; } }
      .ReferralPage__base .referral-container .referral-form-card .referral-header {
        display: flex;
        align-items: center;
        padding: 5px 10px 5px 20px;
        width: 100%;
        height: 66px;
        background: #F4F5F8;
        border-radius: 4px 4px 0px 0px; }
        .ReferralPage__base .referral-container .referral-form-card .referral-header span {
          font-family: 'Roboto';
          font-style: normal;
          font-weight: 700;
          font-size: 20px;
          line-height: 20px;
          color: #444444; }
  .ReferralPage__base .referral-container-banner {
    display: flex;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: flex-start !important; }
  .ReferralPage__base .referral_form_containors {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start; }
    @media (max-width: 960px) {
      .ReferralPage__base .referral_form_containors {
        margin-top: 9%;
        margin-top: 0px; } }

@media (max-width: 480px) {
  .ReferralPage__base .referral-container > .referral-form-card {
    margin-top: 0px;
    margin-bottom: 0px;
    box-shadow: unset;
    border-bottom: 1px solid #F7F7F7;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px; } }
.grouped-selected-options-cont {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px; }
  .grouped-selected-options-cont .selected-option {
    border: 1px solid #3431AC;
    border-radius: 200px;
    background-color: rgba(52, 49, 172, 0.05);
    padding: 0px 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px; }
  .grouped-selected-options-cont .selected-label {
    font-size: 12px;
    color: #3431AC;
    margin: 10px 0px; }
  .grouped-selected-options-cont .remove-icon {
    cursor: pointer; }
.SlackAccountLinking_container .navigation-bar {
  width: 100%;
  padding: 7.5px 30px;
  background: #FFFFFF;
  border-bottom: 1px solid #EEEEEE; }

.SlackAccountLinking_container .slack-linking-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 90px; }
  .SlackAccountLinking_container .slack-linking-container .slack-linking {
    max-width: 456px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; }
    .SlackAccountLinking_container .slack-linking-container .slack-linking .slack-logo {
      display: flex;
      align-items: center;
      gap: 20px;
      font-weight: 500;
      font-size: 24px;
      line-height: 24px;
      letter-spacing: 0.15px;
      color: #444444; }
    .SlackAccountLinking_container .slack-linking-container .slack-linking .workspace-info {
      font-weight: 500;
      font-size: 20px;
      line-height: 24px;
      text-align: center;
      letter-spacing: 0.15px;
      color: #444444; }
      .SlackAccountLinking_container .slack-linking-container .slack-linking .workspace-info.top-space {
        margin-top: 20px; }
    .SlackAccountLinking_container .slack-linking-container .slack-linking .request-authorize {
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid #EEEEEE;
      font-weight: 500;
      font-size: 18px;
      line-height: 24px;
      letter-spacing: 0.15px;
      color: #444444; }
      .SlackAccountLinking_container .slack-linking-container .slack-linking .request-authorize .authorize-header {
        margin-bottom: 8px; }
      .SlackAccountLinking_container .slack-linking-container .slack-linking .request-authorize .details {
        font-family: 'Inter';
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 150%;
        letter-spacing: -0.019em;
        color: #444444; }
    .SlackAccountLinking_container .slack-linking-container .slack-linking .form-fields {
      padding: 0px 30px;
      gap: 6px; }
    .SlackAccountLinking_container .slack-linking-container .slack-linking .actions-container {
      margin-top: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px; }
      .SlackAccountLinking_container .slack-linking-container .slack-linking .actions-container button[disabled] {
        color: #B6B6B6;
        background-color: #E9E9E9;
        box-shadow: unset; }
      .SlackAccountLinking_container .slack-linking-container .slack-linking .actions-container .btn {
        width: 160px;
        height: 40px; }
      .SlackAccountLinking_container .slack-linking-container .slack-linking .actions-container .cancel-btn {
        background: #FFFFFF;
        border: 1px solid #959595;
        color: #959595; }
      .SlackAccountLinking_container .slack-linking-container .slack-linking .actions-container .integration-btn {
        width: 195px; }

.SlackAccountLinking_container .background-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 100px; }
  .SlackAccountLinking_container .background-container .second-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0; }
  .SlackAccountLinking_container .background-container .third-image {
    width: 50%;
    position: absolute;
    top: 20%; }

.Orgnization__select-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%; }
  .Orgnization__select-option .option-detail {
    display: flex;
    align-items: center;
    width: 100%; }
    .Orgnization__select-option .option-detail .info {
      display: flex;
      flex-direction: column; }
      .Orgnization__select-option .option-detail .info .title {
        display: flex;
        align-items: center;
        font-weight: 500;
        font-size: 14px;
        line-height: 16px;
        color: #18332F; }
        .Orgnization__select-option .option-detail .info .title svg {
          color: #444444;
          opacity: 0.6;
          margin-left: 9px;
          width: 14px; }
    .Orgnization__select-option .option-detail img {
      margin-right: 8px; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.reward-automation .details-background {
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative; }
  .reward-automation .details-background .logo {
    position: absolute;
    bottom: -60px;
    left: 40px;
    z-index: 1;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); }
    @media (max-width: 540px) {
      .reward-automation .details-background .logo {
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); } }
    .reward-automation .details-background .logo img {
      display: block;
      border-radius: 10px;
      max-height: 160px;
      max-width: 160px; }

.reward-automation .details-info {
  padding: 60px 40px 25px;
  position: relative; }
  .reward-automation .details-info .func-buttons-container {
    position: absolute;
    top: -25px;
    right: 40px;
    z-index: 5; }
    @media (max-width: 540px) {
      .reward-automation .details-info .func-buttons-container {
        right: auto;
        left: 50%;
        transform: translateX(-50%); } }
    .reward-automation .details-info .func-buttons-container .btn {
      min-width: 140px;
      margin-left: 20px; }
  .reward-automation .details-info .dashboard-sides-container {
    display: flex; }
    .reward-automation .details-info .dashboard-sides-container .left-side {
      width: 61.2%;
      margin-right: 0;
      flex: 0 0 auto; }
    .reward-automation .details-info .dashboard-sides-container .right-side {
      width: calc(38.8% - 30px);
      flex: 0 0 auto; }
    @media (max-width: 960px) {
      .reward-automation .details-info .dashboard-sides-container {
        display: block; }
        .reward-automation .details-info .dashboard-sides-container .left-side,
        .reward-automation .details-info .dashboard-sides-container .right-side {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; } }
  .reward-automation .details-info .sides-container {
    display: flex;
    max-width: 1000px;
    margin: auto; }
    .reward-automation .details-info .sides-container .left-side {
      width: 71.2%;
      margin-right: 0;
      flex: 0 0 auto; }
    .reward-automation .details-info .sides-container .right-side {
      width: calc(38.8% - 30px);
      flex: 0 0 auto; }
    @media (max-width: 960px) {
      .reward-automation .details-info .sides-container {
        display: block; }
        .reward-automation .details-info .sides-container .left-side,
        .reward-automation .details-info .sides-container .right-side {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; } }
  .reward-automation .details-info .sides-container-reverse {
    display: flex; }
    .reward-automation .details-info .sides-container-reverse .left-side {
      width: 20%;
      flex: 0 0 auto;
      padding-top: 36px; }
    .reward-automation .details-info .sides-container-reverse .right-side {
      width: 60%;
      flex: 0 0 auto; }
    @media (max-width: 960px) {
      .reward-automation .details-info .sides-container-reverse {
        display: block; }
        .reward-automation .details-info .sides-container-reverse .right-side {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; }
        .reward-automation .details-info .sides-container-reverse .left-side {
          display: none; } }
  .reward-automation .details-info .main-container {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0px 2px 4px rgba(147, 157, 177, 0.25); }
    .reward-automation .details-info .main-container .title-default-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px; }
    .reward-automation .details-info .main-container .main-container-title {
      font-size: 20px;
      color: #444444;
      font-weight: 700;
      margin-bottom: 24px;
      padding-left: 10px; }
    .reward-automation .details-info .main-container .basic-info:last-child {
      margin-bottom: 0; }
    .reward-automation .details-info .main-container .list .Select-control {
      border-width: 1px;
      border-radius: 4px; }
  .reward-automation .details-info .actions-container {
    margin-top: 20px;
    display: flex;
    justify-content: space-between; }
    .reward-automation .details-info .actions-container button.btn-primary {
      margin-left: 20px; }
  @media (max-width: 540px) {
    .reward-automation .details-info {
      padding: 60px 20px 15px; } }

.reward-automation .perks input {
  width: 100%;
  margin-bottom: 20px; }

.reward-automation .perks ul {
  list-style: none; }
  .reward-automation .perks ul li {
    border-radius: 25px;
    display: inline-block;
    margin: 0 20px 10px 0;
    background-color: #f5f7f8;
    font-size: 13px;
    font-weight: bold;
    color: #18332f; }
    .reward-automation .perks ul li.edit {
      padding: 5px 5px 5px 20px; }
      .reward-automation .perks ul li.edit .close {
        background-color: #3431AC;
        color: #ffffff;
        display: inline-block;
        height: 22px;
        width: 22px;
        font-size: 16px;
        line-height: 21px;
        font-weight: bold;
        text-align: center;
        border-radius: 50%;
        margin-left: 10px;
        cursor: pointer; }

.reward-automation .youtube iframe {
  width: 100%; }

.reward-automation .title {
  font-size: 14px;
  color: #18332f;
  padding: 18px 25px;
  cursor: pointer; }

.reward-automation .details-background {
  margin-bottom: 7.5%;
  height: 161px; }
  .reward-automation .details-background .logo {
    border-radius: 50%;
    margin: 0 16em;
    width: 142px;
    height: 142px;
    background-color: #000;
    border: 0.1px solid black; }
  .reward-automation .details-background .logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%; }

.reward-automation .details-info {
  padding: 0; }

.reward-automation .page-title {
  display: flex;
  align-items: center;
  width: 500px;
  height: 50px; }
  .reward-automation .page-title .selected-tab {
    border-bottom: 3px solid #c4c1e8; }

.reward-automation .header {
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 0.2em;
  position: initial;
  background-color: transparent; }

.reward-automation hr {
  width: 75%; }

.reward-automation .newLine {
  font-style: oblique;
  display: block; }

.reward-automation .italic {
  font-style: oblique; }

.reward-automation .labelFont {
  font-size: 0.9em;
  display: flex;
  gap: 5px;
  margin-left: 10px; }
  .reward-automation .labelFont .allow-checkbox {
    position: absolute;
    opacity: 0;
    margin: 0;
    width: 18px;
    height: 18px; }
    .reward-automation .labelFont .allow-checkbox + label {
      position: relative;
      cursor: pointer;
      padding: 0;
      font-size: 14px;
      line-height: 16.10px;
      color: #444444; }
    .reward-automation .labelFont .allow-checkbox + label:before {
      content: '';
      display: inline-block;
      vertical-align: text-top;
      width: 18px;
      height: 18px;
      background: white;
      border: 1px solid rgba(0, 0, 0, 0.3);
      border-radius: 4px;
      margin-right: 15px; }
    .reward-automation .labelFont .allow-checkbox:checked + label:before {
      background: #3431AC;
      border-color: #3431AC; }
    .reward-automation .labelFont .allow-checkbox:checked + label:after {
      content: '';
      position: absolute;
      left: 5px;
      top: 9px;
      background: white;
      width: 2px;
      height: 2px;
      box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
      transform: rotate(45deg); }

.reward-automation .skills {
  position: relative; }
  .reward-automation .skills .multi > .Select-control > .Select-multi-value-wrapper > .Select-input {
    margin-bottom: 10px; }
    .reward-automation .skills .multi > .Select-control > .Select-multi-value-wrapper > .Select-input input {
      height: -webkit-fill-available; }

.reward-automation .hidden {
  display: none; }

.reward-automation .settings-container {
  padding: 2%; }

.reward-automation .redux-select-container {
  width: 50%;
  border-radius: 25%; }

.reward-automation .block {
  padding-bottom: 2vw !important; }

.reward-automation h3 {
  font-size: 1.3em;
  font-weight: 400;
  color: black;
  padding-bottom: 1vw; }

.reward-automation p {
  color: #727272;
  font-family: Roboto, 'Open Sans', sans-serif;
  font-size: 0.9em;
  display: inline; }

.reward-automation span {
  color: #3754d6;
  font-family: Roboto, 'Open Sans', sans-serif;
  font-size: 1em; }

.reward-automation a {
  text-decoration: none !important; }

.reward-automation .reward-automation-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  margin-left: 20px; }

.reward-automation .drawer-cards .last-saved {
  display: flex;
  align-items: center;
  margin-top: 20px; }
  .reward-automation .drawer-cards .last-saved .last-date {
    color: #000;
    font-weight: 500;
    font-size: 14px;
    margin-left: 10px;
    text-decoration-line: underline; }
  .reward-automation .drawer-cards .last-saved .cloud {
    color: #3431AC; }

.reward-automation .drawer-cards .add-button {
  margin-left: 30%;
  margin-top: 6%; }
  .reward-automation .drawer-cards .add-button .btn-content {
    display: flex;
    align-items: center; }
    .reward-automation .drawer-cards .add-button .btn-content .button-text {
      color: #3431AC;
      margin-left: 10px; }

.reward-automation .drawer-cards .drawer-card-urgency {
  min-width: 550px;
  background: #FFFFFF;
  border-left: 4px solid #3431AC;
  border-radius: 3px;
  padding: 10px;
  margin-bottom: 15px;
  margin-top: 10px;
  color: #18332F; }
  .reward-automation .drawer-cards .drawer-card-urgency .card-logo {
    height: 40px;
    width: 40px;
    margin-right: 8px;
    background: #FFFFFF;
    border: 0.5px solid #CCCCCC;
    border-radius: 4px; }
  .reward-automation .drawer-cards .drawer-card-urgency .first-title {
    display: flex;
    justify-content: space-between; }
    .reward-automation .drawer-cards .drawer-card-urgency .first-title .left {
      display: flex;
      align-items: center; }
      .reward-automation .drawer-cards .drawer-card-urgency .first-title .left .content {
        font-weight: 700;
        font-size: 14px;
        line-height: 14px;
        color: #444444; }
      .reward-automation .drawer-cards .drawer-card-urgency .first-title .left .information-btn {
        position: relative; }
        .reward-automation .drawer-cards .drawer-card-urgency .first-title .left .information-btn .information-icon {
          color: #959595;
          margin: 0 9px; }
        .reward-automation .drawer-cards .drawer-card-urgency .first-title .left .information-btn .information-text {
          background-color: white;
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
          border-radius: 4px;
          padding: 25% 35%;
          font-size: 10px;
          color: #AAAAAA;
          position: absolute;
          bottom: 100%;
          right: -50%;
          width: 170px;
          visibility: hidden; }
        .reward-automation .drawer-cards .drawer-card-urgency .first-title .left .information-btn .information-text:before {
          content: "";
          width: 0px;
          height: 0px;
          position: absolute;
          border-left: 10px solid transparent;
          border-right: 10px solid transparent;
          border-top: 10px solid white;
          border-bottom: 10px solid transparent;
          bottom: -20px;
          right: 20%; }
        .reward-automation .drawer-cards .drawer-card-urgency .first-title .left .information-btn:hover .information-text {
          visibility: visible; }
  .reward-automation .drawer-cards .drawer-card-urgency .add-reward {
    display: flex;
    flex-direction: column; }
    .reward-automation .drawer-cards .drawer-card-urgency .add-reward .reward-text {
      color: #959595;
      font-size: 12px;
      margin-left: 32px; }
  .reward-automation .drawer-cards .drawer-card-urgency .other-info {
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    mix-blend-mode: normal;
    opacity: 0.6;
    margin-bottom: 2px; }

.reward-automation .drawer-cards .drawer-card-add {
  min-width: 550px;
  background: #FFFFFF;
  border: none;
  border-radius: 5px;
  padding: 25px;
  margin-bottom: 15px;
  margin-top: 10px;
  color: #18332F; }
  .reward-automation .drawer-cards .drawer-card-add .button-group {
    display: flex;
    justify-content: end; }
    .reward-automation .drawer-cards .drawer-card-add .button-group button {
      margin-right: 10px; }
  .reward-automation .drawer-cards .drawer-card-add .card-logo {
    height: 40px;
    width: 40px;
    margin-right: 8px;
    background: #FFFFFF;
    border: 0.5px solid #CCCCCC;
    border-radius: 4px; }
  .reward-automation .drawer-cards .drawer-card-add .first-title {
    display: flex;
    align-items: center;
    margin-bottom: 5px; }
    .reward-automation .drawer-cards .drawer-card-add .first-title .content {
      font-weight: 700;
      font-size: 12px;
      line-height: 14px;
      margin-bottom: 6px;
      color: #444444; }
    .reward-automation .drawer-cards .drawer-card-add .first-title .content-add {
      font-weight: 700;
      font-size: 12px;
      line-height: 14px;
      margin-bottom: 6px;
      color: #3431AC; }
    .reward-automation .drawer-cards .drawer-card-add .first-title .information-btn {
      position: relative; }
      .reward-automation .drawer-cards .drawer-card-add .first-title .information-btn .information-icon {
        color: #959595;
        margin: 0 9px; }
      .reward-automation .drawer-cards .drawer-card-add .first-title .information-btn .information-text {
        background-color: white;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        padding: 25% 35%;
        font-size: 10px;
        color: #AAAAAA;
        position: absolute;
        bottom: 100%;
        right: -50%;
        width: 170px;
        visibility: hidden; }
      .reward-automation .drawer-cards .drawer-card-add .first-title .information-btn .information-text:before {
        content: "";
        width: 0px;
        height: 0px;
        position: absolute;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid white;
        border-bottom: 10px solid transparent;
        bottom: -20px;
        right: 20%; }
      .reward-automation .drawer-cards .drawer-card-add .first-title .information-btn:hover .information-text {
        visibility: visible; }
  .reward-automation .drawer-cards .drawer-card-add .add-reward {
    border: 1px dashed #CCCCCC;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 57px;
    cursor: pointer; }
    .reward-automation .drawer-cards .drawer-card-add .add-reward .reward-text {
      color: #959595;
      text-decoration-line: underline;
      font-size: 12px; }
  .reward-automation .drawer-cards .drawer-card-add .other-info {
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    mix-blend-mode: normal;
    opacity: 0.6;
    margin-bottom: 2px; }

.reward-automation .drawer-cards .drawer-card {
  display: flex;
  align-items: center;
  min-width: 550px;
  background: #FFFFFF;
  border: 0.5px solid #CCCCCC;
  border-radius: 5px;
  padding: 12px 13px 15px;
  margin-bottom: 5px;
  margin-top: 10px; }
  .reward-automation .drawer-cards .drawer-card img {
    height: 40px;
    width: 40px;
    margin-right: 8px;
    background: #FFFFFF;
    border: 0.5px solid #CCCCCC;
    border-radius: 4px; }
  .reward-automation .drawer-cards .drawer-card .card-details {
    color: #18332F; }
    .reward-automation .drawer-cards .drawer-card .card-details .first-title {
      font-weight: 700;
      font-size: 14px;
      line-height: 16px;
      margin-bottom: 2px; }
    .reward-automation .drawer-cards .drawer-card .card-details .other-info {
      font-weight: 400;
      font-size: 12px;
      line-height: 14px;
      mix-blend-mode: normal;
      opacity: 0.6;
      margin-bottom: 2px; }

.reward-automation .drawer-card-calculate {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  min-width: 300px;
  height: 45px;
  border: none;
  border-radius: 5px;
  margin-bottom: 15px;
  margin-right: 20px; }
  .reward-automation .drawer-card-calculate .card-logo {
    height: 30px;
    width: 30px;
    margin-right: 15px;
    margin-left: 18px;
    background: #FFFFFF;
    border: 0.5px solid #CCCCCC;
    border-radius: 4px; }
  .reward-automation .drawer-card-calculate .card-details {
    color: #959595; }
    .reward-automation .drawer-card-calculate .card-details .first-title {
      font-weight: 700;
      font-size: 12px;
      line-height: 16px;
      margin-bottom: 2px; }

.reward-automation .drawer-card-info {
  background: #D7D7D7;
  height: 115px;
  border: 0.5px solid #CCCCCC;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  margin: 20px; }
  .reward-automation .drawer-card-info .info {
    line-height: 18px;
    margin: 30px;
    color: #444444; }
  .reward-automation .drawer-card-info .cancel {
    position: relative;
    left: 97%;
    bottom: 97%;
    color: #C4C4C4; }

.reward-automation .sidebar {
  background-color: #f8f9fc;
  display: flex;
  flex-direction: column; }
  .reward-automation .sidebar .sidebar-div {
    border: none;
    background-color: white;
    font-size: 12px;
    font-weight: bolder;
    width: 100%;
    padding: 15px 20px;
    padding-right: 80px;
    align-content: start;
    min-width: 112px; }
    .reward-automation .sidebar .sidebar-div:hover {
      color: black;
      cursor: pointer; }
  .reward-automation .sidebar .selected {
    border-right: 3px solid #22C76F;
    color: black; }

.reward-automation .section-container {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #e8e8e8;
  padding: 20px; }

.reward-automation .section-heading {
  color: #959595;
  text-transform: uppercase;
  font-weight: 600; }

.reward-automation .label {
  color: #444444;
  font-weight: 500;
  width: 55%; }

.reward-automation .switch-label {
  margin: 0; }

.reward-automation .switch-cont {
  display: flex;
  align-items: center; }

.reward-automation .sub-label {
  color: #959595;
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  margin-top: 5px; }

.reward-automation .labels-cont {
  display: flex;
  flex-direction: column;
  width: 55%; }
  .reward-automation .labels-cont .label {
    margin-bottom: 0px;
    width: 100%; }

.reward-automation .switches-cont {
  width: 165px; }

.add-reward-all-others {
  border: 1px dashed #CCCCCC;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 57px;
  cursor: pointer; }
  .add-reward-all-others .reward-text {
    color: #959595;
    text-decoration-line: underline;
    font-size: 12px; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.bonusPlus {
  font-size: 18px;
  margin-right: 5px; }

.newBonusBtn {
  background-color: #3C4252 !important; }

.bounties-list {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column; }
  .bounties-list .table-container {
    height: auto;
    background: #fff;
    overflow: hidden; }
    .bounties-list .table-container .table-actions {
      position: relative; }
      .bounties-list .table-container .table-actions .dropdown__trigger {
        display: flex;
        width: 20px;
        height: 20px;
        justify-content: center;
        align-items: center;
        cursor: pointer; }
      .bounties-list .table-container .table-actions .dropdown__content {
        background-color: #ffffff;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        z-index: 1111111;
        width: 160px; }
        .bounties-list .table-container .table-actions .dropdown__content ul {
          list-style-type: none; }
        .bounties-list .table-container .table-actions .dropdown__content li {
          font-size: 13px;
          font-weight: 400;
          line-height: 2.4;
          color: #374151;
          padding: 0 18px;
          border-bottom: 1px solid #f0f1f5;
          white-space: nowrap;
          cursor: pointer;
          transition: background-color 0.15s ease; }
          .bounties-list .table-container .table-actions .dropdown__content li:hover {
            background-color: #f9fafb; }
          .bounties-list .table-container .table-actions .dropdown__content li:last-of-type {
            border: none; }
    .bounties-list .table-container .table-checkbox {
      position: absolute;
      opacity: 0;
      margin: 0;
      width: 18px;
      height: 18px; }
      .bounties-list .table-container .table-checkbox + label {
        position: relative;
        cursor: pointer;
        padding: 0; }
      .bounties-list .table-container .table-checkbox + label:before {
        content: '';
        display: inline-block;
        vertical-align: text-top;
        width: 18px;
        height: 18px;
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 4px;
        transition: background-color 0.15s ease, border-color 0.15s ease; }
      .bounties-list .table-container .table-checkbox:checked + label:before {
        background: #3431AC;
        border-color: #3431AC; }
      .bounties-list .table-container .table-checkbox:checked + label:after {
        content: '';
        position: absolute;
        left: 5px;
        top: 9px;
        background: white;
        width: 2px;
        height: 2px;
        box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
        transform: rotate(45deg); }
    .bounties-list .table-container .sort-icon {
      display: inline-block;
      vertical-align: middle;
      font-size: 10px;
      margin-left: 10px;
      color: #3431AC; }
      .bounties-list .table-container .sort-icon.up {
        transform: rotate(180deg); }
    .bounties-list .table-container .order-position {
      display: inline-block;
      padding: 3px 5px;
      font-size: 10px;
      color: #3431AC; }
    .bounties-list .table-container .status {
      text-transform: capitalize; }
      .bounties-list .table-container .status.active {
        color: #2a2889; }
      .bounties-list .table-container .status.invite {
        color: #ffa722; }
    .bounties-list .table-container .select .Select-control .Select-value .Select-value-label {
      color: #c2c2c2 !important;
      font-weight: normal; }
    .bounties-list .table-container .select .Select-control .Select-arrow {
      color: #959595; }
  .bounties-list .loading-in-main {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    top: 0;
    left: 0; }
  .bounties-list .header .header-functionality .btn {
    padding: 10px 15px;
    min-width: 175px !important; }
  .bounties-list .sorting:after {
    content: "";
    display: inline-block;
    width: 9px;
    height: 6px;
    margin-left: 13px; }
  .bounties-list .sorting.sort-asc:after {
    background-image: url(/bundles/8d97f712c0f8147ac9a97176aa55a7b6.png); }
  .bounties-list .sorting.sort-desc:after {
    background-image: url(/bundles/6b68f32a5dea246fdbe50d93a808e60d.png); }
  .bounties-list .header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 30px;
    flex: 0 0 auto;
    background-color: #fff;
    min-height: 70px;
    box-shadow: 0 2px 5px 0 rgba(196, 206, 220, 0.5);
    position: relative;
    z-index: 1;
    /* Hosts AppSearchField in header row; input metrics live in AppSearchField.scss (+ app-search-field-input mixin) */ }
    .bounties-list .header .page-title {
      display: flex;
      align-items: center;
      min-width: 122px;
      padding: 10px 30px;
      border-right: 1px solid #e8e8e8; }
      .bounties-list .header .page-title h2 {
        font-size: 20px;
        font-weight: bold;
        color: #18332f; }
    .bounties-list .header .subtitle {
      text-align: center;
      margin-top: 20px;
      color: #414141; }
    .bounties-list .header .about-roles {
      text-align: center;
      margin-top: 25px; }
    .bounties-list .header .search-block {
      flex: 1 1 auto;
      min-width: 0;
      width: 100%;
      display: block;
      padding: 10px 30px; }
    .bounties-list .header .header-functionality {
      border-left: 1px solid #e8e8e8;
      display: flex;
      align-items: center;
      padding: 0 30px; }
      .bounties-list .header .header-functionality .bulk-select-wrapper {
        display: flex;
        align-items: center;
        border-left: 1px solid #e8e8e8;
        height: 100%;
        padding-left: 30px; }
        .bounties-list .header .header-functionality .bulk-select-wrapper .Select {
          flex: 0 0 auto;
          width: 170px; }
        .bounties-list .header .header-functionality .bulk-select-wrapper .select-label {
          color: #a5adac;
          font-size: 12px;
          margin-right: 20px; }
      .bounties-list .header .header-functionality .btn {
        padding: 10px 15px;
        min-width: 140px; }
      .bounties-list .header .header-functionality .bulk-actions {
        display: flex;
        align-items: center; }
        .bounties-list .header .header-functionality .bulk-actions .bulk-button {
          margin-right: 30px;
          margin-top: 4px; }
  .bounties-list thead tr:first-child {
    height: 52px; }
  .bounties-list tbody tr {
    height: 68px; }
  .bounties-list tr {
    cursor: pointer; }
  .bounties-list td {
    overflow-x: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 200px;
    min-width: 125px; }
    .bounties-list td.bounty-guarantee-warning {
      color: #d85147; }
    .bounties-list td.bounty-status-title-paid {
      color: #18332f;
      opacity: 0.3; }
    .bounties-list td .bounty-tooltip {
      background-color: #22c76f !important;
      box-shadow: 0 2px 4px rgba(24, 51, 47, 0.3);
      color: #ffffff;
      font-family: Roboto;
      font-size: 12px;
      font-weight: 700;
      padding: 10px 21px; }
      .bounties-list td .bounty-tooltip.place-top:after {
        border-top-color: #22c76f !important; }
  .bounties-list button {
    font-family: Roboto;
    min-width: 90px;
    width: 90px;
    height: 35px;
    padding: 0; }
    .bounties-list button.bounties-status-approve {
      color: #22c76f;
      background-color: #fff; }

.new-reward-plus {
  padding-right: 10px; }

.reward-tabs {
  display: flex;
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 16px;
  gap: 0; }

.reward-tab {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #959595;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px; }
  .reward-tab:hover {
    color: #444444; }
  .reward-tab--active {
    color: #444444;
    border-bottom-color: #3431ac; }

.reward-tab__count {
  background: #f0f0f0;
  color: #727272;
  font-size: 12px;
  font-weight: 600;
  padding: 1px 8px;
  border-radius: 10px;
  min-width: 24px;
  text-align: center; }
  .reward-tab--active .reward-tab__count {
    background: #eeedf9;
    color: #3431ac; }

.reward-tab-content {
  position: relative;
  min-height: 200px; }

@media screen and (max-width: 782px) {
  .actions-block-wrapper {
    padding: 0px 10px !important; } }
.SlackRedirect__container {
  padding: 10px 100px; }
.SlackMarketplaceLayout__container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f6fa;
  padding: 32px 16px;
  box-sizing: border-box; }

.SlackMarketplaceLayout__card {
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(20, 22, 36, 0.06);
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column; }

.SlackMarketplaceLayout__header {
  display: flex;
  align-items: center;
  padding: 20px 32px;
  border-bottom: 1px solid #ececf2; }

.SlackMarketplaceLayout__brand {
  height: 24px;
  width: auto;
  display: block; }

.SlackMarketplaceLayout__body {
  box-sizing: border-box;
  padding: 56px 64px 40px;
  display: block;
  text-align: center; }

.SlackMarketplaceLayout__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 24px; }

.SlackMarketplaceLayout__slackLogo {
  flex: none; }

.SlackMarketplaceLayout__titleText {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  color: #1c1f2a;
  letter-spacing: -0.01em; }

.SlackMarketplaceLayout__content {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  color: #5a6072;
  font-size: 15px;
  line-height: 1.55; }
  .SlackMarketplaceLayout__content p {
    margin: 0 0 12px; }
  .SlackMarketplaceLayout__content p:last-child {
    margin-bottom: 0; }

.SlackMarketplaceLayout__actions {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0 64px 48px;
  flex-wrap: wrap; }

@media (max-width: 600px) {
  .SlackMarketplaceLayout__header {
    padding: 16px 20px; }
  .SlackMarketplaceLayout__body {
    padding: 40px 24px 32px; }
  .SlackMarketplaceLayout__actions {
    padding: 0 24px 32px; }
  .SlackMarketplaceLayout__titleText {
    font-size: 20px; } }

.SlackMarketplaceButton {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  min-width: 120px;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center; }
  .SlackMarketplaceButton:focus-visible {
    outline: 2px solid #1CCB7C;
    outline-offset: 2px; }
  .SlackMarketplaceButton:disabled {
    cursor: not-allowed;
    opacity: 0.6; }

.SlackMarketplaceButton--secondary {
  background: #ffffff;
  border-color: #d1d4dd;
  color: #1c1f2a; }
  .SlackMarketplaceButton--secondary:hover:not(:disabled) {
    background: #f7f8fb;
    border-color: #b9bcc8; }

.SlackMarketplaceButton--primary {
  background: #1CCB7C;
  color: #ffffff;
  border-color: #1CCB7C; }
  .SlackMarketplaceButton--primary:hover:not(:disabled) {
    background: #17b06b;
    border-color: #17b06b; }
.SlackMarketplaceSignup__container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f6fa;
  padding: 24px; }

.SlackMarketplaceSignup__card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); }
  .SlackMarketplaceSignup__card h2 {
    margin-top: 0;
    margin-bottom: 16px;
    color: #1a1a2e; }
  .SlackMarketplaceSignup__card p {
    color: #4a4a68;
    line-height: 1.5;
    margin-bottom: 16px; }

.SlackMarketplaceSignup__error {
  background: #fdecea;
  color: #b71c1c;
  padding: 12px 16px;
  border-radius: 6px;
  margin: 16px 0;
  font-size: 14px; }

.SlackMarketplaceSignup__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px; }
.SlackMarketplaceBlocked__lead {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: #1c1f2a;
  letter-spacing: -0.005em; }

.SlackMarketplaceBlocked__copy {
  margin: 0 0 12px;
  color: #5a6072;
  font-size: 15px;
  line-height: 1.55; }

.SlackMarketplaceBlocked__muted {
  margin: 0;
  color: #8a8fa0;
  font-size: 14px; }
.SlackMarketplaceClaim__copy {
  margin: 0 0 28px;
  color: #5a6072;
  font-size: 15px;
  line-height: 1.55;
  text-align: center; }
  .SlackMarketplaceClaim__copy strong {
    font-weight: 600;
    color: #1c1f2a; }

.SlackMarketplaceClaim__dropdown {
  position: relative;
  width: 100%;
  text-align: left; }

.SlackMarketplaceClaim__dropdownTrigger {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  background: #ffffff;
  border: 1px solid #d1d4dd;
  border-radius: 6px;
  padding: 8px 14px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  color: #1c1f2a;
  transition: border-color 120ms ease, box-shadow 120ms ease; }
  .SlackMarketplaceClaim__dropdownTrigger:hover:not(:disabled) {
    border-color: #b9bcc8; }
  .SlackMarketplaceClaim__dropdownTrigger:focus-visible, .SlackMarketplaceClaim__dropdownTrigger.is-open {
    outline: none;
    border-color: #1CCB7C;
    box-shadow: 0 0 0 3px rgba(28, 203, 124, 0.18); }
  .SlackMarketplaceClaim__dropdownTrigger:disabled {
    background: #f7f8fb;
    cursor: not-allowed;
    opacity: 0.7; }

.SlackMarketplaceClaim__dropdownTriggerInner {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1 1 auto; }

.SlackMarketplaceClaim__placeholder {
  color: #9aa0ad; }

.SlackMarketplaceClaim__chevron {
  flex: none; }

.SlackMarketplaceClaim__optionAvatar {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  width: 24px;
  height: 24px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  -o-object-fit: cover;
     object-fit: cover; }

.SlackMarketplaceClaim__optionLabel {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #1c1f2a; }

.SlackMarketplaceClaim__dropdownMenu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  list-style: none;
  margin: 0;
  padding: 4px 0;
  background: #ffffff;
  border: 1px solid #d1d4dd;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(20, 22, 36, 0.08);
  max-height: 240px;
  overflow-y: auto;
  z-index: 10; }

.SlackMarketplaceClaim__dropdownOption {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 15px;
  color: #1c1f2a;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none; }
  .SlackMarketplaceClaim__dropdownOption:hover, .SlackMarketplaceClaim__dropdownOption.is-selected {
    background: #f4f6fa; }

.SlackMarketplaceClaim__error {
  margin-top: 16px;
  background: #fdecea;
  color: #b71c1c;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  text-align: left;
  width: 100%; }
.SlackMarketplaceConnected__lead {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: #1c1f2a;
  letter-spacing: -0.005em; }

.SlackMarketplaceConnected__copy {
  margin: 0;
  color: #5a6072;
  font-size: 15px;
  line-height: 1.55; }
  .SlackMarketplaceConnected__copy strong {
    font-weight: 600;
    color: #1c1f2a; }
.SlackMarketplaceSubmitted__lead {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: #1c1f2a;
  letter-spacing: -0.005em; }

.SlackMarketplaceSubmitted__copy {
  margin: 0;
  color: #5a6072;
  font-size: 15px;
  line-height: 1.55; }
  .SlackMarketplaceSubmitted__copy strong {
    font-weight: 600;
    color: #1c1f2a; }
.SlackMarketplaceDemo__lead {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: #1c1f2a;
  letter-spacing: -0.005em; }

.SlackMarketplaceDemo__copy {
  margin: 0;
  color: #5a6072;
  font-size: 15px;
  line-height: 1.55; }
.Job__Select__Container .redux-select-latest-container {
  z-index: 3 !important; }

.Job__Select__Container div > div:nth-child(4) > div > div {
  border-bottom: 1px solid rgba(128, 128, 128, 0.206);
  text-decoration: none; }
.ReactDatePicker___container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%; }
  .ReactDatePicker___container .date-picker-legend, .ReactDatePicker___container .date-picker-lagend {
    position: absolute;
    top: -9px;
    left: 12px;
    background: #ffffff;
    padding: 0 6px;
    z-index: 101;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.4px;
    color: #6b7280;
    font-weight: 500; }
  .ReactDatePicker___container .react-datepicker-wrapper {
    width: 100%; }
  .ReactDatePicker___container .modern-date-input {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #1f2937;
    width: 100%;
    height: 44px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0 14px;
    cursor: pointer;
    transition: all 0.2s ease; }
    .ReactDatePicker___container .modern-date-input:hover {
      border-color: #3431AC; }
    .ReactDatePicker___container .modern-date-input:focus {
      outline: none;
      border-color: #3431AC;
      box-shadow: 0 0 0 3px rgba(52, 49, 172, 0.12); }
    .ReactDatePicker___container .modern-date-input::-moz-placeholder {
      color: #9ca3af;
      font-weight: 400; }
    .ReactDatePicker___container .modern-date-input::placeholder {
      color: #9ca3af;
      font-weight: 400; }

.react-datepicker {
  font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  border: none;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: #fff; }

.react-datepicker__header {
  background: linear-gradient(135deg, #3431AC 0%, #2a2889 100%);
  border-bottom: none;
  padding: 20px 16px 16px;
  border-radius: 0; }

.react-datepicker__current-month {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.3px; }

.react-datepicker__day-names {
  margin-top: 8px;
  display: flex;
  justify-content: space-around; }

.react-datepicker__day-name {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 600;
  width: 40px;
  line-height: 40px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px; }

.react-datepicker__navigation {
  top: 20px; }
  .react-datepicker__navigation--previous {
    left: 16px; }
  .react-datepicker__navigation--next {
    right: 16px; }

.react-datepicker__navigation-icon::before {
  border-color: #fff;
  border-width: 2px 2px 0 0;
  width: 8px;
  height: 8px; }

.react-datepicker__month-container {
  background: #fff; }

.react-datepicker__month {
  margin: 16px; }

.react-datepicker__week {
  display: flex;
  justify-content: space-around; }

.react-datepicker__day {
  width: 40px;
  line-height: 40px;
  margin: 3px 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  transition: all 0.15s ease; }
  .react-datepicker__day:hover {
    background-color: #eeedf7;
    color: #3431AC;
    border-radius: 10px; }
  .react-datepicker__day--selected {
    background: linear-gradient(135deg, #3431AC 0%, #2a2889 100%) !important;
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(52, 49, 172, 0.35); }
    .react-datepicker__day--selected:hover {
      background: linear-gradient(135deg, #2a2889 0%, #1e1b5e 100%) !important;
      color: #fff !important; }
  .react-datepicker__day--keyboard-selected {
    background-color: #e8e7f5;
    color: #3431AC; }
  .react-datepicker__day--today {
    font-weight: 700;
    color: #3431AC;
    background-color: #eeedf7;
    position: relative; }
    .react-datepicker__day--today::after {
      content: '';
      position: absolute;
      bottom: 6px;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: 4px;
      background: #3431AC;
      border-radius: 50%; }
    .react-datepicker__day--today.react-datepicker__day--selected {
      color: #fff;
      background: linear-gradient(135deg, #3431AC 0%, #2a2889 100%); }
      .react-datepicker__day--today.react-datepicker__day--selected::after {
        background: #fff; }
  .react-datepicker__day--in-range, .react-datepicker__day--in-selecting-range {
    background-color: #e8e7f5 !important;
    color: #1e1b5e !important;
    border-radius: 0; }
    .react-datepicker__day--in-range:hover, .react-datepicker__day--in-selecting-range:hover {
      background-color: #c4c1e8 !important;
      color: #1e1b5e !important; }
  .react-datepicker__day--range-start, .react-datepicker__day--range-end {
    background: linear-gradient(135deg, #3431AC 0%, #2a2889 100%) !important;
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(52, 49, 172, 0.35); }
    .react-datepicker__day--range-start:hover, .react-datepicker__day--range-end:hover {
      background: linear-gradient(135deg, #2a2889 0%, #1e1b5e 100%) !important;
      color: #fff !important; }
  .react-datepicker__day--range-start {
    border-radius: 10px 0 0 10px; }
    .react-datepicker__day--range-start.react-datepicker__day--range-end {
      border-radius: 10px; }
  .react-datepicker__day--range-end {
    border-radius: 0 10px 10px 0; }
  .react-datepicker__day--disabled {
    color: #d1d5db;
    cursor: not-allowed; }
    .react-datepicker__day--disabled:hover {
      background-color: transparent;
      color: #d1d5db; }
  .react-datepicker__day--outside-month {
    color: #9ca3af;
    opacity: 0.5; }

.react-datepicker__triangle {
  display: none; }

.react-datepicker-popper {
  z-index: 1400; }

.react-datepicker-popper[data-placement^='bottom'] {
  padding-top: 10px; }

.react-datepicker-popper[data-placement^='top'] {
  padding-bottom: 10px; }
@keyframes list-view-skeleton-shimmer {
  0% {
    background-position: -200% 0; }
  100% {
    background-position: 200% 0; } }

.list-view-skeleton {
  width: 100%;
  height: calc(100vh - 240px);
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  pointer-events: none;
  cursor: default; }
  .list-view-skeleton .list-view-skeleton-table {
    width: 100%;
    border-collapse: collapse; }
    .list-view-skeleton .list-view-skeleton-table thead {
      position: sticky;
      top: 0;
      z-index: 10;
      background: #f9fafb; }
      .list-view-skeleton .list-view-skeleton-table thead tr {
        border-bottom: 1px solid #e5e7eb; }
      .list-view-skeleton .list-view-skeleton-table thead th {
        padding: 12px 16px;
        text-align: left;
        font-size: 12px;
        font-weight: 600;
        color: #6b7280;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        vertical-align: middle; }
        .list-view-skeleton .list-view-skeleton-table thead th .list-view-skeleton-header-bar {
          display: inline-block;
          height: 12px;
          width: 60%;
          max-width: 100px;
          background: linear-gradient(90deg, #d0d0d0 25%, #e8e8e8 50%, #d0d0d0 75%);
          background-size: 200% 100%;
          border-radius: 4px; }
        .list-view-skeleton .list-view-skeleton-table thead th.col-candidate {
          width: 25%;
          min-width: 200px; }
        .list-view-skeleton .list-view-skeleton-table thead th.col-job {
          width: 20%;
          min-width: 150px; }
        .list-view-skeleton .list-view-skeleton-table thead th.col-referrer {
          width: 15%;
          min-width: 120px; }
        .list-view-skeleton .list-view-skeleton-table thead th.col-stage {
          width: 20%;
          min-width: 150px; }
    .list-view-skeleton .list-view-skeleton-table tbody tr {
      border-bottom: 1px solid #f0f1f5; }
      .list-view-skeleton .list-view-skeleton-table tbody tr:last-child {
        border-bottom: none; }
    .list-view-skeleton .list-view-skeleton-table td {
      padding: 12px 16px;
      vertical-align: middle; }
      .list-view-skeleton .list-view-skeleton-table td.col-candidate .list-view-skeleton-name {
        height: 16px;
        width: 70%;
        max-width: 180px; }
      .list-view-skeleton .list-view-skeleton-table td.col-job .list-view-skeleton-job-title {
        height: 14px;
        width: 85%;
        max-width: 160px;
        margin-bottom: 6px; }
      .list-view-skeleton .list-view-skeleton-table td.col-referrer .list-view-skeleton-referrer {
        height: 14px;
        width: 75%;
        max-width: 120px; }
      .list-view-skeleton .list-view-skeleton-table td.col-stage .list-view-skeleton-stage {
        height: 28px;
        width: 100px;
        border-radius: 4px; }
  .list-view-skeleton .list-view-skeleton-bar {
    background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    border-radius: 4px; }
  .list-view-skeleton .list-view-skeleton-stage {
    background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    border-radius: 4px; }
.text-overflow-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.text-capitalize {
  text-transform: capitalize; }

.tags-cont {
  display: flex;
  gap: 5px;
  flex-wrap: wrap; }
  .tags-cont .tag {
    color: #3431AC;
    background: rgba(52, 49, 172, 0.06);
    border: 1px solid rgba(52, 49, 172, 0.2);
    border-radius: 100px;
    padding: 3px 10px;
    font-weight: 500;
    font-size: 11px;
    min-height: 22px;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: background-color 0.15s ease, border-color 0.15s ease;
    line-height: 16px; }
    .tags-cont .tag:hover {
      background: rgba(52, 49, 172, 0.1);
      border-color: rgba(52, 49, 172, 0.35); }

.tags-table-view {
  min-height: 50px;
  align-items: center;
  margin-top: 4px;
  padding: 4px 5px 4px 18px; }
  .tags-table-view .tag {
    padding: 1px 8px 0px 8px; }

.dispute-status {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  letter-spacing: 0.5625px;
  color: #444444;
  gap: 5px; }
  .dispute-status.open {
    color: #ffffff;
    background-color: #df1b41; }
  .dispute-status.closed {
    color: #1e1b5e;
    background-color: #e8e7f5 !important; }
  .dispute-status.reviewing {
    color: #da6b05;
    border: 1px solid #fcd579;
    background: #fcedb9; }
  .dispute-status.disable {
    opacity: 0.6; }

.no-tracker-module-results-cont {
  margin-top: 10px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 110px;
  padding-bottom: 110px; }
  .no-tracker-module-results-cont .no-results {
    width: 140px;
    height: 140px;
    background-color: #e0e0e0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center; }
  .no-tracker-module-results-cont .no-results-text {
    color: #505050;
    font-size: 16px; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.team-management {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column; }
  .team-management .table-container {
    height: auto;
    background: #fff;
    overflow: hidden; }
    .team-management .table-container .table-actions {
      position: relative; }
      .team-management .table-container .table-actions .dropdown__trigger {
        display: flex;
        width: 20px;
        height: 20px;
        justify-content: center;
        align-items: center;
        cursor: pointer; }
      .team-management .table-container .table-actions .dropdown__content {
        background-color: #ffffff;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        z-index: 1111111;
        width: 160px; }
        .team-management .table-container .table-actions .dropdown__content ul {
          list-style-type: none; }
        .team-management .table-container .table-actions .dropdown__content li {
          font-size: 13px;
          font-weight: 400;
          line-height: 2.4;
          color: #374151;
          padding: 0 18px;
          border-bottom: 1px solid #f0f1f5;
          white-space: nowrap;
          cursor: pointer;
          transition: background-color 0.15s ease; }
          .team-management .table-container .table-actions .dropdown__content li:hover {
            background-color: #f9fafb; }
          .team-management .table-container .table-actions .dropdown__content li:last-of-type {
            border: none; }
    .team-management .table-container .table-checkbox {
      position: absolute;
      opacity: 0;
      margin: 0;
      width: 18px;
      height: 18px; }
      .team-management .table-container .table-checkbox + label {
        position: relative;
        cursor: pointer;
        padding: 0; }
      .team-management .table-container .table-checkbox + label:before {
        content: '';
        display: inline-block;
        vertical-align: text-top;
        width: 18px;
        height: 18px;
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 4px;
        transition: background-color 0.15s ease, border-color 0.15s ease; }
      .team-management .table-container .table-checkbox:checked + label:before {
        background: #3431AC;
        border-color: #3431AC; }
      .team-management .table-container .table-checkbox:checked + label:after {
        content: '';
        position: absolute;
        left: 5px;
        top: 9px;
        background: white;
        width: 2px;
        height: 2px;
        box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
        transform: rotate(45deg); }
    .team-management .table-container .sort-icon {
      display: inline-block;
      vertical-align: middle;
      font-size: 10px;
      margin-left: 10px;
      color: #3431AC; }
      .team-management .table-container .sort-icon.up {
        transform: rotate(180deg); }
    .team-management .table-container .order-position {
      display: inline-block;
      padding: 3px 5px;
      font-size: 10px;
      color: #3431AC; }
    .team-management .table-container .status {
      text-transform: capitalize; }
      .team-management .table-container .status.active {
        color: #2a2889; }
      .team-management .table-container .status.invite {
        color: #ffa722; }
    .team-management .table-container .select .Select-control .Select-value .Select-value-label {
      color: #c2c2c2 !important;
      font-weight: normal; }
    .team-management .table-container .select .Select-control .Select-arrow {
      color: #959595; }
  .team-management .loading-in-main {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    top: 0;
    left: 0; }
  .team-management .team-management-tabs {
    padding-top: 27px; }
    .team-management .team-management-tabs .rc-tabs-tab {
      display: inline-block;
      padding: 0 15px 10px;
      cursor: pointer;
      color: #959595;
      margin-right: 20px; }
    .team-management .team-management-tabs .rc-tabs-tab-active {
      color: #444444;
      border-bottom: 3px solid #3431AC; }
    .team-management .team-management-tabs .rc-tabs-nav-wrap {
      border-bottom: 1px solid #E2E2E2; }
      .team-management .team-management-tabs .rc-tabs-nav-wrap .rc-tabs-nav-scroll {
        padding-left: 25px;
        padding-right: 25px; }
    @media (max-width: 540px) {
      .team-management .team-management-tabs {
        padding-top: 12px;
        box-shadow: 0px 4px 4px rgba(147, 157, 177, 0.15);
        background: #FFFFFF; }
        .team-management .team-management-tabs .rc-tabs-tab {
          padding: 0 2px 10px;
          margin-right: 20px; } }
  .team-management .table-container table {
    width: 100%; }
/* Let's get this party started */
::-webkit-scrollbar {
  width: 12px;
  height: 6px; }

/* Track */
::-webkit-scrollbar-track {
  background: transparent; }

/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.2);
  border: 3px solid white; }

.tracker {
  font-family: Roboto, 'Open Sans'; }
  .tracker ::-webkit-scrollbar {
    width: 6px; }
  .tracker ::-webkit-scrollbar-track {
    background: transparent; }
  .tracker ::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border: none; }
.ReactDatePicker___container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%; }
  .ReactDatePicker___container .date-picker-legend, .ReactDatePicker___container .date-picker-lagend {
    position: absolute;
    top: -9px;
    left: 12px;
    background: #ffffff;
    padding: 0 6px;
    z-index: 101;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.4px;
    color: #6b7280;
    font-weight: 500; }
  .ReactDatePicker___container .react-datepicker-wrapper {
    width: 100%; }
  .ReactDatePicker___container .modern-date-input {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #1f2937;
    width: 100%;
    height: 44px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0 14px;
    cursor: pointer;
    transition: all 0.2s ease; }
    .ReactDatePicker___container .modern-date-input:hover {
      border-color: #3431AC; }
    .ReactDatePicker___container .modern-date-input:focus {
      outline: none;
      border-color: #3431AC;
      box-shadow: 0 0 0 3px rgba(52, 49, 172, 0.12); }
    .ReactDatePicker___container .modern-date-input::-moz-placeholder {
      color: #9ca3af;
      font-weight: 400; }
    .ReactDatePicker___container .modern-date-input::placeholder {
      color: #9ca3af;
      font-weight: 400; }

.react-datepicker {
  font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  border: none;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: #fff; }

.react-datepicker__header {
  background: linear-gradient(135deg, #3431AC 0%, #2a2889 100%);
  border-bottom: none;
  padding: 20px 16px 16px;
  border-radius: 0; }

.react-datepicker__current-month {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.3px; }

.react-datepicker__day-names {
  margin-top: 8px;
  display: flex;
  justify-content: space-around; }

.react-datepicker__day-name {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 600;
  width: 40px;
  line-height: 40px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px; }

.react-datepicker__navigation {
  top: 20px; }
  .react-datepicker__navigation--previous {
    left: 16px; }
  .react-datepicker__navigation--next {
    right: 16px; }

.react-datepicker__navigation-icon::before {
  border-color: #fff;
  border-width: 2px 2px 0 0;
  width: 8px;
  height: 8px; }

.react-datepicker__month-container {
  background: #fff; }

.react-datepicker__month {
  margin: 16px; }

.react-datepicker__week {
  display: flex;
  justify-content: space-around; }

.react-datepicker__day {
  width: 40px;
  line-height: 40px;
  margin: 3px 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  transition: all 0.15s ease; }
  .react-datepicker__day:hover {
    background-color: #eeedf7;
    color: #3431AC;
    border-radius: 10px; }
  .react-datepicker__day--selected {
    background: linear-gradient(135deg, #3431AC 0%, #2a2889 100%) !important;
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(52, 49, 172, 0.35); }
    .react-datepicker__day--selected:hover {
      background: linear-gradient(135deg, #2a2889 0%, #1e1b5e 100%) !important;
      color: #fff !important; }
  .react-datepicker__day--keyboard-selected {
    background-color: #e8e7f5;
    color: #3431AC; }
  .react-datepicker__day--today {
    font-weight: 700;
    color: #3431AC;
    background-color: #eeedf7;
    position: relative; }
    .react-datepicker__day--today::after {
      content: '';
      position: absolute;
      bottom: 6px;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: 4px;
      background: #3431AC;
      border-radius: 50%; }
    .react-datepicker__day--today.react-datepicker__day--selected {
      color: #fff;
      background: linear-gradient(135deg, #3431AC 0%, #2a2889 100%); }
      .react-datepicker__day--today.react-datepicker__day--selected::after {
        background: #fff; }
  .react-datepicker__day--in-range, .react-datepicker__day--in-selecting-range {
    background-color: #e8e7f5 !important;
    color: #1e1b5e !important;
    border-radius: 0; }
    .react-datepicker__day--in-range:hover, .react-datepicker__day--in-selecting-range:hover {
      background-color: #c4c1e8 !important;
      color: #1e1b5e !important; }
  .react-datepicker__day--range-start, .react-datepicker__day--range-end {
    background: linear-gradient(135deg, #3431AC 0%, #2a2889 100%) !important;
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(52, 49, 172, 0.35); }
    .react-datepicker__day--range-start:hover, .react-datepicker__day--range-end:hover {
      background: linear-gradient(135deg, #2a2889 0%, #1e1b5e 100%) !important;
      color: #fff !important; }
  .react-datepicker__day--range-start {
    border-radius: 10px 0 0 10px; }
    .react-datepicker__day--range-start.react-datepicker__day--range-end {
      border-radius: 10px; }
  .react-datepicker__day--range-end {
    border-radius: 0 10px 10px 0; }
  .react-datepicker__day--disabled {
    color: #d1d5db;
    cursor: not-allowed; }
    .react-datepicker__day--disabled:hover {
      background-color: transparent;
      color: #d1d5db; }
  .react-datepicker__day--outside-month {
    color: #9ca3af;
    opacity: 0.5; }

.react-datepicker__triangle {
  display: none; }

.react-datepicker-popper {
  z-index: 1400; }

.react-datepicker-popper[data-placement^='bottom'] {
  padding-top: 10px; }

.react-datepicker-popper[data-placement^='top'] {
  padding-bottom: 10px; }

.ReactDatePicker___wrapper {
  display: flex;
  justify-content: center;
  align-items: center; }
  .ReactDatePicker___wrapper .date-span {
    margin-right: 0.5rem;
    font-size: 14px;
    font-weight: 500;
    color: #374151; }
  .ReactDatePicker___wrapper .react-datepicker-wrapper {
    width: auto; }
  .ReactDatePicker___wrapper .date-input {
    width: 160px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    color: #1f2937;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease; }
    .ReactDatePicker___wrapper .date-input:hover {
      border-color: #3431AC; }
    .ReactDatePicker___wrapper .date-input:focus {
      outline: none;
      border-color: #3431AC;
      box-shadow: 0 0 0 3px rgba(52, 49, 172, 0.12); }
.FiltersDropdown__custom-select {
  display: flex;
  font-size: 10px;
  color: #959595;
  align-items: center;
  text-transform: uppercase; }
  .FiltersDropdown__custom-select .MuiInputBase-root {
    color: #959595;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px; }
  .FiltersDropdown__custom-select .MuiSelect-icon {
    color: #959595; }
.Table__Containor_Show_Menu .overflow-y {
  overflow-y: visible; }

.Table__Containor_Show_Menu .overflow-x-hidden {
  overflow-x: hidden; }

.Table__Containor_Show_Menu .overflow-x-clip {
  overflow-x: clip; }

.Table__Containor_Show_Menu .overflow-x-auto {
  overflow-x: auto; }

.Table__Containor_Show_Menu .custom-height {
  height: 100%;
  scrollbar-width: none; }
.email-template-editor {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 64px);
  background: #f5f5f5; }
  .email-template-editor__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    flex-shrink: 0; }
    .email-template-editor__header-left {
      display: flex;
      align-items: center;
      gap: 12px; }
      .email-template-editor__header-left h2 {
        font-size: 18px;
        font-weight: 600;
        color: #1a1a1a;
        margin: 0; }
    .email-template-editor__header-actions {
      display: flex;
      gap: 8px; }
  .email-template-editor__badges {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap; }
  .email-template-editor__type-badge {
    font-size: 12px;
    color: #666;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 4px; }
  .email-template-editor__stage-badge {
    font-size: 11px !important;
    height: 22px !important;
    background-color: #e8f5e9 !important;
    color: #2e7d32 !important; }
  .email-template-editor__save-btn {
    background-color: #3431ac !important;
    color: #fff !important; }
    .email-template-editor__save-btn:hover {
      background-color: #2a2889 !important; }
  .email-template-editor__toolbar {
    padding: 12px 24px;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    flex-shrink: 0; }
  .email-template-editor__subject-row {
    display: flex;
    align-items: flex-end;
    gap: 10px; }
  .email-template-editor__subject-input {
    flex: 1; }
    .email-template-editor__subject-input .MuiOutlinedInput-root {
      border-radius: 8px; }
  .email-template-editor__variable-select {
    min-width: 130px;
    height: 40px;
    border-radius: 8px !important;
    font-size: 14px !important;
    background-color: #f0f7ff !important;
    color: #1a73e8 !important;
    border-color: #cce0ff !important;
    flex-shrink: 0;
    white-space: nowrap;
    text-transform: none !important; }
    .email-template-editor__variable-select:hover {
      background-color: #dbeaff !important;
      border-color: #1a73e8 !important; }
  .email-template-editor__canvas {
    flex: 1;
    overflow: hidden;
    position: relative; }
  .email-template-editor__loading-overlay, .email-template-editor__error-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #f8f9fc;
    z-index: 1;
    color: #666;
    font-size: 14px;
    overflow: hidden; }
  .email-template-editor__error-overlay {
    color: #c62828; }
    .email-template-editor__error-overlay p {
      margin: 4px 0;
      text-align: center; }
  .email-template-editor__preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%; }
  .email-template-editor__sample-toggle {
    margin-left: auto; }
    .email-template-editor__sample-toggle .MuiFormControlLabel-label {
      font-size: 14px;
      font-weight: 400;
      color: #666; }
  .email-template-editor__preview-subject {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 16px;
    font-size: 14px; }
  .email-template-editor__preview-body {
    max-height: 60vh;
    overflow-y: auto;
    border: 1px solid #eee;
    border-radius: 4px; }
  .email-template-editor__preview-iframe {
    width: 100%;
    min-height: 500px;
    border: none;
    display: block; }
  .email-template-editor__upgrade-banner {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 4px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #5d4037;
    line-height: 1.5; }

.lexical-toolbar [role='menuitem'],
.lexical-toolbar [role='menuitem'] .label {
  overflow: visible !important; }

[data-dialog][role='menu'] {
  max-height: 300px !important;
  overflow-y: auto !important; }
.email-templates-list {
  padding: 24px 32px;
  max-width: 1200px;
  margin: 0 auto; }
  .email-templates-list__title-row h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px; }
  .email-templates-list__back-btn {
    text-transform: none !important;
    color: #555 !important;
    font-size: 14px !important;
    padding: 4px 0 !important;
    min-width: unset !important;
    margin-left: -2px !important;
    margin-bottom: 4px; }
    .email-templates-list__back-btn .MuiButton-startIcon {
      margin-right: 4px; }
    .email-templates-list__back-btn:hover {
      background-color: transparent !important;
      color: #333 !important; }
  .email-templates-list__header {
    margin-bottom: 8px; }
  .email-templates-list__subtitle {
    color: #666;
    font-size: 14px;
    margin: 0; }
  .email-templates-list__controls {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px; }
  .email-templates-list__search {
    max-width: 400px; }
    .email-templates-list__search .MuiOutlinedInput-root {
      border-radius: 8px;
      background-color: #fff; }
  .email-templates-list__category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; }
    .email-templates-list__category-chips .MuiChip-root {
      border-radius: 16px;
      font-size: 13px;
      background-color: #fff; }
  .email-templates-list__content {
    display: flex;
    flex-direction: column;
    gap: 32px; }
  .email-templates-list__category-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px; }
  .email-templates-list__category-desc {
    color: #888;
    font-size: 13px;
    margin: 0 0 16px; }
  .email-templates-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 12px; }
  .email-templates-list__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s; }
    .email-templates-list__card:hover {
      border-color: #3431AC;
      box-shadow: 0 2px 8px rgba(52, 49, 172, 0.1); }
    .email-templates-list__card--customized {
      border-left: 3px solid #3431AC; }
  .email-templates-list__card-info {
    flex: 1;
    min-width: 0; }
  .email-templates-list__card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px; }
  .email-templates-list__card-title {
    font-weight: 500;
    font-size: 14px;
    color: #1a1a1a; }
  .email-templates-list__card-badges {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-shrink: 0; }
  .email-templates-list__chip--active {
    background-color: #eeedf7 !important;
    color: #3431AC !important;
    font-size: 11px !important;
    height: 20px !important; }
  .email-templates-list__chip--stages {
    background-color: #f0f0f0 !important;
    color: #666 !important;
    font-size: 11px !important;
    height: 20px !important;
    cursor: pointer !important; }
    .email-templates-list__chip--stages:hover {
      background-color: #e0e0e0 !important; }
  .email-templates-list__chip--stages-active {
    background-color: #e8f5e9 !important;
    color: #2e7d32 !important;
    font-size: 11px !important;
    height: 20px !important;
    cursor: pointer !important; }
    .email-templates-list__chip--stages-active:hover {
      background-color: #c8e6c9 !important; }
  .email-templates-list__card-type {
    font-size: 12px;
    color: #999;
    margin: 0 0 2px;
    text-transform: capitalize; }
  .email-templates-list__card-subject {
    font-size: 12px;
    color: #666;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 260px; }
  .email-templates-list__empty {
    text-align: center;
    padding: 48px;
    color: #999;
    font-size: 14px; }
  .email-templates-list__upgrade-banner {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 4px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #5d4037;
    line-height: 1.5; }

@keyframes skeleton-shimmer {
  0% {
    background-position: -400px 0; }
  100% {
    background-position: 400px 0; } }

.skeleton__pulse {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
  background-size: 800px 100%;
  animation: skeleton-shimmer 1.6s ease-in-out infinite;
  border-radius: 4px; }

.email-templates-list__skeleton {
  display: flex;
  flex-direction: column;
  gap: 32px; }

.skeleton__controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px; }

.skeleton__search {
  width: 100%;
  max-width: 400px;
  height: 40px;
  border-radius: 8px; }

.skeleton__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px; }

.skeleton__chip {
  height: 32px;
  border-radius: 16px; }

.skeleton__category {
  display: flex;
  flex-direction: column; }

.skeleton__category-title {
  width: 140px;
  height: 20px;
  margin-bottom: 6px; }

.skeleton__category-desc {
  width: 320px;
  height: 14px;
  margin-bottom: 16px; }

.skeleton__card {
  padding: 16px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px; }

.skeleton__card-title {
  height: 14px; }

.skeleton__card-subject {
  height: 12px; }
.OpportunityInfo .disable-select {
  pointer-events: none; }

.OpportunityInfo__select-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%; }
  .OpportunityInfo__select-option .option-detail {
    display: flex;
    align-items: center;
    min-height: 60px;
    width: 100%; }
    .OpportunityInfo__select-option .option-detail .info {
      display: flex;
      flex-direction: column;
      width: 100%; }
      .OpportunityInfo__select-option .option-detail .info .title {
        display: flex;
        align-items: center;
        font-weight: 500;
        font-size: 14px;
        line-height: 16px;
        color: #18332f; }
        .OpportunityInfo__select-option .option-detail .info .title .title-text {
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis; }
        .OpportunityInfo__select-option .option-detail .info .title svg {
          color: #444444;
          opacity: 0.6;
          margin-left: 9px;
          width: 14px; }
      .OpportunityInfo__select-option .option-detail .info .address {
        font-weight: 500;
        font-size: 12px;
        line-height: 14px;
        color: #444444;
        opacity: 0.6; }
    .OpportunityInfo__select-option .option-detail img {
      margin-right: 8px; }

.OpportunityInfo .link_to_job {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 0.2rem;
  padding: 0.5rem;
  cursor: pointer; }
  .OpportunityInfo .link_to_job .link-job-underline {
    text-decoration: underline; }
  .OpportunityInfo .link_to_job div {
    margin-right: 0.4rem; }
.ReferralFormSteps__container {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  width: 100%; }
  .ReferralFormSteps__container .step-name {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.4px;
    color: #979797;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center; }
    .ReferralFormSteps__container .step-name .step-next {
      margin: 0px 3px; }
    .ReferralFormSteps__container .step-name .active {
      color: #000000;
      font-weight: 600; }
    .ReferralFormSteps__container .step-name .complete {
      font-weight: 600; }
.FormSteps__container .title-container {
  display: flex;
  flex-direction: column;
  padding-right: 10px; }
  .FormSteps__container .title-container .title {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #000000; }
    .FormSteps__container .title-container .title.space {
      padding: 0px 10px; }
    .FormSteps__container .title-container .title.contact {
      font-weight: 700;
      font-size: 12px;
      line-height: 14px;
      letter-spacing: 1px;
      color: #959595;
      padding: 0px 10px;
      margin-top: 10px; }
  .FormSteps__container .title-container .add-network-container {
    display: flex;
    justify-content: flex-end; }
    .FormSteps__container .title-container .add-network-container .add-network-btn {
      text-transform: unset !important;
      font-weight: 500;
      font-size: 12px;
      line-height: 12px;
      text-decoration-line: underline;
      color: #3431AC;
      padding: 0px;
      margin-top: 10px; }
  .FormSteps__container .title-container .login-link {
    display: flex;
    justify-content: end;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.4px;
    color: #979797;
    margin-top: 20px; }
    .FormSteps__container .title-container .login-link a {
      color: #979797; }

.FormSteps__container .form-fields {
  padding: 0px 10px !important; }
  .FormSteps__container .form-fields input, .FormSteps__container .form-fields textarea {
    font-size: 14px; }
  .FormSteps__container .form-fields .first-input {
    margin-top: 10px !important; }
  .FormSteps__container .form-fields .last-name {
    margin-top: 5px; }
  .FormSteps__container .form-fields .custom-field {
    margin-right: 0px !important; }
  .FormSteps__container .form-fields .field-icon {
    width: 20px;
    justify-content: center; }
  .FormSteps__container .form-fields .checkbox-field {
    font-size: 12px;
    letter-spacing: 0.4px;
    color: #000000; }
    .FormSteps__container .form-fields .checkbox-field .helping-text {
      font-weight: 400;
      font-size: 12px;
      line-height: 14px;
      color: #959595;
      margin-bottom: 8px; }
  .FormSteps__container .form-fields .message-field {
    margin-top: 0px  !important; }
    .FormSteps__container .form-fields .message-field.hidden {
      display: none; }
    .FormSteps__container .form-fields .message-field textarea {
      letter-spacing: -0.458182px;
      color: #999999;
      line-height: 16px; }
  .FormSteps__container .form-fields .filters-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.4px;
    color: #000000;
    padding: 10px 0px; }
    .FormSteps__container .form-fields .filters-container .filters {
      display: flex;
      align-items: center;
      position: relative; }
      .FormSteps__container .form-fields .filters-container .filters .label-right {
        margin-left: 5px; }
      .FormSteps__container .form-fields .filters-container .filters .label-left {
        margin-right: 0px; }
  .FormSteps__container .form-fields .divider {
    display: flex;
    padding-top: 10px; }
    .FormSteps__container .form-fields .divider .divider-left {
      width: 48%;
      margin-top: 11px; }
    .FormSteps__container .form-fields .divider .divider-right {
      width: 47%;
      margin-top: 11px; }
    .FormSteps__container .form-fields .divider .divider-text {
      color: #C2C2C2;
      font-size: 14px;
      padding: 0px 10px; }

.FormSteps__container .btn_container {
  padding: 0px 10px 10px 10px; }
  .FormSteps__container .btn_container .add_btn_container {
    border-bottom: 1px solid #EEEEEE; }
    .FormSteps__container .btn_container .add_btn_container .add-contact-btn {
      font-weight: 500;
      font-size: 12px;
      color: #444444;
      text-transform: none;
      margin-left: 28px;
      padding: 10px 0px;
      background-color: transparent; }
      .FormSteps__container .btn_container .add_btn_container .add-contact-btn .add-contact-icon {
        margin-right: 30px; }

.FormSteps__container .contacts-list {
  padding: 10px 10px 0px 10px;
  max-height: 392px;
  overflow-y: auto; }
  .FormSteps__container .contacts-list .no-contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #EEEEEE; }
    .FormSteps__container .contacts-list .no-contacts .no-contacts-text {
      font-size: 14px;
      line-height: 16px;
      text-align: center;
      color: #444444;
      padding: 30px 10px; }
    .FormSteps__container .contacts-list .no-contacts .no-contacts-actions {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px; }
      .FormSteps__container .contacts-list .no-contacts .no-contacts-actions button {
        text-transform: unset !important; }
      .FormSteps__container .contacts-list .no-contacts .no-contacts-actions .btn-connect-contact {
        max-width: 230px;
        width: 100%;
        height: 40px;
        color: #FFFFFF; }
      .FormSteps__container .contacts-list .no-contacts .no-contacts-actions .btn-add-manually {
        max-width: 230px;
        width: 100%;
        height: 40px;
        background: #FFFFFF;
        border: 1px solid #EEEEEE;
        color: #3431AC;
        margin-top: 10px; }
        .FormSteps__container .contacts-list .no-contacts .no-contacts-actions .btn-add-manually .plus-icon {
          overflow: hidden;
          font-weight: 300;
          margin-right: 12px;
          font-size: 30px;
          line-height: 14px; }
  .FormSteps__container .contacts-list .contact-container {
    border-bottom: 1px solid #EEEEEE; }
    .FormSteps__container .contacts-list .contact-container:first-child {
      border-top: 1px solid #EEEEEE; }
    .FormSteps__container .contacts-list .contact-container:hover, .FormSteps__container .contacts-list .contact-container.selected {
      background: #F2F2F2; }
    .FormSteps__container .contacts-list .contact-container .contact-item {
      display: flex;
      align-items: start;
      justify-content: space-between;
      max-width: 472px; }
      .FormSteps__container .contacts-list .contact-container .contact-item .contact {
        display: flex;
        align-items: start; }
        .FormSteps__container .contacts-list .contact-container .contact-item .contact .contact-image {
          padding: 15px 20px; }
        .FormSteps__container .contacts-list .contact-container .contact-item .contact .contact-details {
          font-weight: 400;
          font-size: 14px;
          line-height: 16px;
          color: #959595;
          margin-top: 10px;
          max-width: 300px; }
          .FormSteps__container .contacts-list .contact-container .contact-item .contact .contact-details .info {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis; }
            .FormSteps__container .contacts-list .contact-container .contact-item .contact .contact-details .info .source {
              font-size: 12px;
              font-weight: 400;
              color: #959595; }
          .FormSteps__container .contacts-list .contact-container .contact-item .contact .contact-details .first {
            font-weight: 500;
            color: #000000; }
          .FormSteps__container .contacts-list .contact-container .contact-item .contact .contact-details .emails {
            margin-top: 10px;
            margin-bottom: 10px; }
            .FormSteps__container .contacts-list .contact-container .contact-item .contact .contact-details .emails .email {
              display: flex;
              align-items: center;
              width: 100%; }
              .FormSteps__container .contacts-list .contact-container .contact-item .contact .contact-details .emails .email .email-checkbox {
                padding: 2px 5px 5px 0px; }
              .FormSteps__container .contacts-list .contact-container .contact-item .contact .contact-details .emails .email .email-text {
                font-weight: 400;
                font-size: 14px;
                line-height: 16px;
                color: #444444;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                margin: 0;
                margin-bottom: 3px; }
      .FormSteps__container .contacts-list .contact-container .contact-item .more-emails {
        display: flex;
        align-items: center;
        margin-top: 20px; }
        .FormSteps__container .contacts-list .contact-container .contact-item .more-emails .more {
          padding: 5px 10px;
          background: #F2F2F2;
          border-radius: 4px;
          font-weight: 400;
          font-size: 12px;
          line-height: 14px;
          color: #444444; }
          .FormSteps__container .contacts-list .contact-container .contact-item .more-emails .more.selected {
            background: #FFFFFF; }
        .FormSteps__container .contacts-list .contact-container .contact-item .more-emails .toggle {
          fill: #000000;
          transform: rotate(180deg); }
          .FormSteps__container .contacts-list .contact-container .contact-item .more-emails .toggle.show {
            transform: unset; }

.FormSteps__container .action-buttons {
  display: flex;
  justify-content: flex-end;
  padding: 20px 10px; }
  .FormSteps__container .action-buttons button {
    text-transform: unset !important; }
  .FormSteps__container .action-buttons .btn-next {
    max-width: 160px;
    height: 40px;
    width: 100%;
    border-radius: 4px;
    color: #FFFFFF; }
  .FormSteps__container .action-buttons .btn-next-text {
    color: #00000047; }
  .FormSteps__container .action-buttons .btn-skip {
    max-width: 160px;
    height: 40px;
    width: 100%;
    border-radius: 4px;
    margin-right: 10px; }
  .FormSteps__container .action-buttons .btn-back {
    max-width: 160px;
    height: 40px;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    color: #000000;
    margin-right: 10px; }
    .FormSteps__container .action-buttons .btn-back svg {
      margin-right: 15px; }

@media (max-width: 480px) {
  .FormSteps__container .contacts-list .contact-container > .contact-item > .contact > .contact-details {
    max-width: 165px; }
  .FormSteps__container .action-buttons {
    justify-content: center; } }
.stage-overrides-modal__title {
  display: flex;
  align-items: center;
  gap: 8px; }

.stage-overrides-modal__type-chip {
  font-size: 12px;
  height: 24px;
  background-color: #e8eaf6;
  color: #3431ac; }

.stage-overrides-modal__section {
  margin-bottom: 8px; }

.stage-overrides-modal__section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
  color: #333; }

.stage-overrides-modal__section-desc {
  font-size: 13px;
  color: #666;
  margin: 0 0 12px; }

.stage-overrides-modal__count-chip {
  font-size: 11px;
  height: 20px;
  min-width: 20px;
  background-color: #3431ac;
  color: #fff; }

.stage-overrides-modal__list {
  background: #f9f9fb;
  border-radius: 8px;
  margin-bottom: 12px; }

.stage-overrides-modal__list-item {
  border-bottom: 1px solid #eee; }
  .stage-overrides-modal__list-item:last-child {
    border-bottom: none; }

.stage-overrides-modal__add-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 8px; }

.stage-overrides-modal__stage-select {
  flex: 1;
  min-width: 200px;
  margin-top: 0 !important;
  /* override MUI .MuiTextField-root margin-top: 20px !important */ }

.stage-overrides-modal__add-btn {
  background-color: #3431ac !important;
  color: #fff !important;
  white-space: nowrap;
  height: 40px;
  margin-top: 0 !important; }
  .stage-overrides-modal__add-btn:disabled {
    opacity: 0.5; }

.stage-overrides-modal__loading {
  text-align: center;
  padding: 16px;
  color: #999; }

.stage-overrides-modal__all-customized {
  font-size: 13px;
  color: #666;
  font-style: italic;
  margin-top: 8px; }
.input-container {
  position: relative;
  margin-bottom: 20px; }

.floating-input {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid lightgray;
  border-radius: 8px;
  padding-right: 12px;
  /* Default space for right padding */ }

.floating-label {
  position: absolute;
  top: 50%;
  left: 12px;
  font-size: 14px;
  transform: translateY(-50%);
  transition: all 0.2s;
  background-color: white;
  padding: 0 4px;
  pointer-events: none; }

.floating-label.active {
  top: -8px;
  font-size: 12px; }

.input-icon {
  position: absolute;
  right: 12px;
  /* Moves the icon to the right inside the input */
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  /* Adjust the icon size */
  height: 20px;
  pointer-events: none;
  /* Prevents the icon from blocking input interaction */ }
.candidate-info-modal {
  width: 450px !important; }
  .candidate-info-modal .modal-content {
    padding: 25px 70px; }
  .candidate-info-modal .thank-you-message {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 15px;
    color: #000; }
  .candidate-info-modal .application-info {
    text-align: left;
    margin-bottom: 15px;
    color: #000;
    font-size: 13.5px; }
  .candidate-info-modal .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px; }
  .candidate-info-modal .input-label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block; }
  .candidate-info-modal .continue-btn {
    background-color: #3431ac;
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: none;
    cursor: pointer; }
    .candidate-info-modal .continue-btn:hover {
      background-color: #2a2889; }
    .candidate-info-modal .continue-btn.disabled {
      background-color: #ccc;
      cursor: not-allowed; }
  .candidate-info-modal .footer-text {
    color: #5d5d5d;
    margin-top: 10px;
    font-size: 12px; }
  .candidate-info-modal .phone-label {
    font-size: 12px;
    top: -0.75rem;
    position: absolute;
    z-index: 3;
    background-color: white;
    width: 90px;
    margin-left: 18px;
    font-weight: normal !important; }
  .candidate-info-modal .react-tel-input .form-control {
    padding: 22px 14px 22px 58px !important; }
  .candidate-info-modal .react-tel-input .form-control:hover {
    outline: none;
    border-color: #3431ac !important; }
  .candidate-info-modal .react-tel-input .form-control:focus {
    outline: none;
    border-color: #3431ac !important;
    box-shadow: none !important; }
  .candidate-info-modal .react-tel-input .country-list .country {
    padding: 5px 40px !important; }
  .candidate-info-modal .react-tel-input .country-list {
    width: 315px;
    max-height: 140px; }
  .candidate-info-modal .react-tel-input .selected-flag {
    width: 42px !important; }
  .candidate-info-modal .input-wrapper .input-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px; }
.SavedInfo__container {
  padding: 0px 20px;
  width: 100%; }
  .SavedInfo__container .saved-block {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2px 20px 10px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    min-width: 0;
    max-width: 100%; }
    .SavedInfo__container .saved-block .title {
      font-size: 12px;
      line-height: 16px;
      letter-spacing: 0.4px;
      color: #959595;
      background: white;
      padding: 0px 8px;
      margin-left: -8px; }
    .SavedInfo__container .saved-block .saved-data {
      display: flex;
      max-width: 90%; }
      .SavedInfo__container .saved-block .saved-data .logo {
        height: 36px;
        width: 36px;
        background: #ffffff;
        margin-right: 10px; }
      .SavedInfo__container .saved-block .saved-data .details-data {
        display: flex;
        flex-direction: column;
        justify-content: end;
        max-width: 100%; }
        .SavedInfo__container .saved-block .saved-data .details-data .details {
          font-size: 12px;
          line-height: 16px;
          letter-spacing: 0.4px;
          color: #959595;
          max-width: 100%;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis; }
          .SavedInfo__container .saved-block .saved-data .details-data .details.first {
            font-weight: 500;
            color: #000000; }
          .SavedInfo__container .saved-block .saved-data .details-data .details.message {
            font-size: 12px;
            line-height: 14px;
            color: #000000; }
          .SavedInfo__container .saved-block .saved-data .details-data .details .message-title {
            display: flex;
            align-items: center;
            margin-top: 15px;
            margin-bottom: 3px;
            font-weight: 400;
            font-size: 12px;
            line-height: 16px;
            color: #959595; }
            .SavedInfo__container .saved-block .saved-data .details-data .details .message-title hr {
              margin-left: 10px;
              max-width: 320px; }
    .SavedInfo__container .saved-block .action {
      font-size: 12px;
      line-height: 16px;
      letter-spacing: 0.4px;
      color: #000000;
      cursor: pointer; }

.employer-information {
  color: #959595; }
.manage-default-reward-form {
  margin-top: 16px;
  text-align: left; }
  .manage-default-reward-form p {
    text-align: center; }
  .manage-default-reward-form .form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f0f1f3; }
    .manage-default-reward-form .form-actions .btn-outline-primary {
      padding: 9px 24px;
      font-size: 14px;
      font-weight: 500;
      border-radius: 8px;
      background: #fff;
      color: #374151;
      border: 1px solid #e5e7eb;
      cursor: pointer;
      transition: all 0.15s ease;
      min-width: auto; }
      .manage-default-reward-form .form-actions .btn-outline-primary:hover {
        background: #f9fafb;
        border-color: #d1d5db; }
    .manage-default-reward-form .form-actions .btn-danger {
      padding: 9px 24px;
      font-size: 14px;
      font-weight: 500;
      border-radius: 8px;
      background: #dc2626;
      color: #fff;
      border: none;
      cursor: pointer;
      transition: all 0.15s ease;
      min-width: auto; }
      .manage-default-reward-form .form-actions .btn-danger:hover {
        background: #b91c1c; }
      .manage-default-reward-form .form-actions .btn-danger:disabled {
        background: #d1d5db;
        color: #9ca3af;
        cursor: not-allowed; }
.reward-settings-root {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 32px; }

.reward-settings-content {
  display: flex;
  flex-direction: column;
  gap: 24px; }

.reward-settings-section {
  background: #ffffff;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  overflow: hidden; }
  .reward-settings-section__header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 28px;
    border-bottom: 1px solid #f0f1f3;
    background: #fafbfc; }
  .reward-settings-section__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #eeedfc 0%, #dddafa 100%);
    color: #3431ac;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px; }
  .reward-settings-section__title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 4px;
    line-height: 1.4; }
  .reward-settings-section__subtitle {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
    max-width: 520px; }
  .reward-settings-section__body {
    padding: 24px 28px; }

.reward-settings-field {
  margin-bottom: 24px; }
  .reward-settings-field:last-child {
    margin-bottom: 0; }
  .reward-settings-field__label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px; }
    .reward-settings-field__label span {
      font-size: 14px;
      font-weight: 600;
      color: #374151; }
  .reward-settings-field__info {
    height: 16px;
    width: 16px; }
    .reward-settings-field__info svg {
      color: #9ca3af;
      height: 16px;
      width: 16px; }

.reward-settings-dimensions {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 10px; }

.reward-settings-image__upload {
  display: flex;
  align-items: center;
  gap: 12px; }
  .reward-settings-image__upload button {
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease; }
    .reward-settings-image__upload button:hover {
      background: #f9fafb;
      border-color: #9ca3af; }

.reward-settings-image__placeholder {
  font-size: 13px;
  color: #9ca3af; }

.reward-settings-image__preview img {
  max-width: 50%;
  border-radius: 8px;
  border: 1px solid #e8eaed;
  margin-bottom: 10px; }

.reward-settings-image__delete {
  display: flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  color: #dc2626;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.15s ease; }
  .reward-settings-image__delete:hover {
    background: #fef2f2;
    border-color: #fca5a5; }

.reward-settings-underline {
  text-decoration: underline; }

.reward-settings-unsaved-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background-color: #e3f2fd;
  border: 1px solid #90caf9;
  border-radius: 10px;
  font-size: 14px;
  color: #1976d2;
  margin-bottom: 24px; }
  .reward-settings-unsaved-banner__icon {
    font-size: 20px;
    color: #1976d2;
    flex-shrink: 0; }

.reward-settings-sticky-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
  position: sticky;
  bottom: 0;
  z-index: 10;
  margin-top: 24px; }

.reward-settings-cancel-btn {
  background: none;
  border: none;
  padding: 8px 20px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.15s ease; }
  .reward-settings-cancel-btn:hover {
    color: #374151;
    background: #f3f4f6; }

.reward-settings-save-btn {
  background: #3431ac;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease; }
  .reward-settings-save-btn:hover {
    background: #2a279a;
    box-shadow: 0 2px 8px rgba(52, 49, 172, 0.3); }
  .reward-settings-save-btn:active {
    transform: translateY(1px); }

.reward-settings-field .text-editor {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  overflow: hidden; }
  .reward-settings-field .text-editor .ql-toolbar {
    border: none;
    border-bottom: 1px solid #f0f1f3;
    background: #fafbfc; }
  .reward-settings-field .text-editor .ql-container {
    border: none;
    font-size: 14px;
    min-height: 120px; }
  .reward-settings-field .text-editor .ql-editor {
    color: #374151;
    line-height: 1.7; }
    .reward-settings-field .text-editor .ql-editor img {
      height: 12px;
      width: 12px; }
.ManageManualReferrals__container {
  margin-bottom: 20px; }
  .ManageManualReferrals__container .CustomOption__container {
    display: flex;
    align-items: center;
    cursor: pointer; }
    .ManageManualReferrals__container .CustomOption__container .option-checkbox {
      width: 30px;
      height: 25px;
      background: transparent; }

.add-new-critical-criteria {
  background: #E9F9F1;
  padding: 5px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 0px;
  cursor: pointer;
  margin: 15px 0px; }
  .add-new-critical-criteria svg {
    font-size: 22px; }
  .add-new-critical-criteria span {
    font-size: 13px !important;
    color: #3431AC !important;
    padding-left: 10px; }

.delete-rule-block {
  display: flex;
  justify-content: space-between; }
  .delete-rule-block :nth-child(1) {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: #444444; }
  .delete-rule-block :nth-child(2) {
    font-size: 12px;
    color: #959595;
    cursor: pointer; }

.right-arrows-parent svg {
  cursor: pointer; }

.view-more-less-button {
  font-size: 14px;
  color: #3431AC !important;
  float: right;
  text-decoration: underline;
  margin-top: 9px;
  cursor: pointer; }

.selected-reward-rules-options {
  font-size: 12px !important;
  color: #3431AC !important;
  border: 1px solid #3431AC !important;
  padding: 1px 5px;
  margin-right: 5px; }

.selected-reward-rules-options-parent {
  padding: 5px 33px; }

.css-xb97g8:hover {
  background-color: #e6e6e6 !important;
  color: black !important;
  cursor: pointer; }
.footer-menu {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  z-index: 1000;
  background: #505A6C; }
  .footer-menu .menu {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 100%;
    flex-wrap: nowrap;
    text-align: center; }
    .footer-menu .menu a {
      color: #B8C2D4;
      font-weight: 400;
      font-size: 10px;
      line-height: 10px;
      text-decoration: none; }
      .footer-menu .menu a.active, .footer-menu .menu a:hover {
        color: #FFFFFF; }
    .footer-menu .menu .icon-container {
      margin-bottom: 5px; }
.title-modal .title-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  color: #374151;
  outline: none;
  transition: border-color 0.15s ease; }
  .title-modal .title-input:focus {
    border-color: #3431ac; }
  .title-modal .title-input::-moz-placeholder {
    color: #9ca3af; }
  .title-modal .title-input::placeholder {
    color: #9ca3af; }

.title-modal .error-message {
  color: #dc2626;
  font-size: 12px;
  margin-top: 4px; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.department-details .details-background {
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative; }
  .department-details .details-background .logo {
    position: absolute;
    bottom: -60px;
    left: 40px;
    z-index: 1;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); }
    @media (max-width: 540px) {
      .department-details .details-background .logo {
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); } }
    .department-details .details-background .logo img {
      display: block;
      border-radius: 10px;
      max-height: 160px;
      max-width: 160px; }

.department-details .details-info {
  padding: 60px 40px 25px;
  position: relative; }
  .department-details .details-info .func-buttons-container {
    position: absolute;
    top: -25px;
    right: 40px;
    z-index: 5; }
    @media (max-width: 540px) {
      .department-details .details-info .func-buttons-container {
        right: auto;
        left: 50%;
        transform: translateX(-50%); } }
    .department-details .details-info .func-buttons-container .btn {
      min-width: 140px;
      margin-left: 20px; }
  .department-details .details-info .dashboard-sides-container {
    display: flex; }
    .department-details .details-info .dashboard-sides-container .left-side {
      width: 61.2%;
      margin-right: 0;
      flex: 0 0 auto; }
    .department-details .details-info .dashboard-sides-container .right-side {
      width: calc(38.8% - 30px);
      flex: 0 0 auto; }
    @media (max-width: 960px) {
      .department-details .details-info .dashboard-sides-container {
        display: block; }
        .department-details .details-info .dashboard-sides-container .left-side,
        .department-details .details-info .dashboard-sides-container .right-side {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; } }
  .department-details .details-info .sides-container {
    display: flex;
    max-width: 1000px;
    margin: auto; }
    .department-details .details-info .sides-container .left-side {
      width: 71.2%;
      margin-right: 0;
      flex: 0 0 auto; }
    .department-details .details-info .sides-container .right-side {
      width: calc(38.8% - 30px);
      flex: 0 0 auto; }
    @media (max-width: 960px) {
      .department-details .details-info .sides-container {
        display: block; }
        .department-details .details-info .sides-container .left-side,
        .department-details .details-info .sides-container .right-side {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; } }
  .department-details .details-info .sides-container-reverse {
    display: flex; }
    .department-details .details-info .sides-container-reverse .left-side {
      width: 20%;
      flex: 0 0 auto;
      padding-top: 36px; }
    .department-details .details-info .sides-container-reverse .right-side {
      width: 60%;
      flex: 0 0 auto; }
    @media (max-width: 960px) {
      .department-details .details-info .sides-container-reverse {
        display: block; }
        .department-details .details-info .sides-container-reverse .right-side {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; }
        .department-details .details-info .sides-container-reverse .left-side {
          display: none; } }
  .department-details .details-info .main-container {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0px 2px 4px rgba(147, 157, 177, 0.25); }
    .department-details .details-info .main-container .title-default-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px; }
    .department-details .details-info .main-container .main-container-title {
      font-size: 20px;
      color: #444444;
      font-weight: 700;
      margin-bottom: 24px;
      padding-left: 10px; }
    .department-details .details-info .main-container .basic-info:last-child {
      margin-bottom: 0; }
    .department-details .details-info .main-container .list .Select-control {
      border-width: 1px;
      border-radius: 4px; }
  .department-details .details-info .actions-container {
    margin-top: 20px;
    display: flex;
    justify-content: space-between; }
    .department-details .details-info .actions-container button.btn-primary {
      margin-left: 20px; }
  @media (max-width: 540px) {
    .department-details .details-info {
      padding: 60px 20px 15px; } }

.department-details .perks input {
  width: 100%;
  margin-bottom: 20px; }

.department-details .perks ul {
  list-style: none; }
  .department-details .perks ul li {
    border-radius: 25px;
    display: inline-block;
    margin: 0 20px 10px 0;
    background-color: #f5f7f8;
    font-size: 13px;
    font-weight: bold;
    color: #18332f; }
    .department-details .perks ul li.edit {
      padding: 5px 5px 5px 20px; }
      .department-details .perks ul li.edit .close {
        background-color: #3431AC;
        color: #ffffff;
        display: inline-block;
        height: 22px;
        width: 22px;
        font-size: 16px;
        line-height: 21px;
        font-weight: bold;
        text-align: center;
        border-radius: 50%;
        margin-left: 10px;
        cursor: pointer; }

.department-details .youtube iframe {
  width: 100%; }

.department-details .details-info {
  padding: 60px 40px 25px; }

.department-details h1 {
  font-size: 28px;
  font-weight: bold;
  color: #18332f;
  margin-bottom: 30px; }
  .department-details h1 div {
    font-size: 16px;
    font-weight: 500; }

.department-details .details-widget {
  margin-bottom: 20px;
  border-radius: 5px;
  background-color: #ffffff; }
  .department-details .details-widget h4 {
    color: #18332f;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px; }
  .department-details .details-widget .details-widget-content {
    padding: 20px 30px 30px; }
    .department-details .details-widget .details-widget-content.two-columns {
      display: flex; }
      .department-details .details-widget .details-widget-content.two-columns .column {
        width: calc(50% - 15px);
        margin-right: 30px; }
        .department-details .details-widget .details-widget-content.two-columns .column:last-of-type {
          margin: 0; }
  .department-details .details-widget .row {
    display: flex;
    margin-bottom: 30px;
    color: #18332f; }
    .department-details .details-widget .row:last-of-type {
      margin: 0; }
    .department-details .details-widget .row > div {
      flex: 1 1 auto; }
      .department-details .details-widget .row > div > input:not([type='checkbox']),
      .department-details .details-widget .row > div select,
      .department-details .details-widget .row > div textarea {
        width: 100%; }
      .department-details .details-widget .row > div.inline {
        display: flex;
        align-items: center;
        justify-content: space-between; }
        .department-details .details-widget .row > div.inline h4 {
          margin: 0; }
    .department-details .details-widget .row .info {
      background-color: #f5f7f8;
      font-size: 13px;
      font-weight: bold;
      color: #18332f;
      padding: 8px 20px;
      border-radius: 5px;
      line-height: 1.8; }
      .department-details .details-widget .row .info.description {
        padding: 20px;
        font-weight: normal;
        white-space: pre-wrap; }
      .department-details .details-widget .row .info.rounded {
        padding: 4px 20px;
        border-radius: 25px; }
    .department-details .details-widget .row.columns-3 > div {
      width: calc(33.333% - 16.666px);
      margin-right: 25px;
      flex: 0 1 auto; }
    .department-details .details-widget .row.columns-2 > div {
      width: calc(50% - 15px);
      margin-right: 30px;
      flex: 0 1 auto; }
    .department-details .details-widget .row .tag {
      padding: 4px 20px 5px;
      border-radius: 25px;
      margin-top: 19px; }
    @media (max-width: 540px) {
      .department-details .details-widget .row {
        display: block; }
        .department-details .details-widget .row.columns-3 > div, .department-details .details-widget .row.columns-2 > div {
          width: 100%;
          margin-bottom: 20px; } }
  .department-details .details-widget.post-settings .row > .inline {
    justify-content: flex-start;
    align-items: flex-start; }
    .department-details .details-widget.post-settings .row > .inline h4 {
      width: 40%; }
    .department-details .details-widget.post-settings .row > .inline > div {
      font-size: 14px;
      font-weight: bold; }
    .department-details .details-widget.post-settings .row > .inline .followed div {
      margin-bottom: 10px; }

.department-details .row .skills .info {
  margin: 0 10px 10px 0;
  display: inline-block; }

.department-details .boolean {
  font-size: 14px;
  font-weight: 500;
  color: #3431AC; }

.department-details .tooltip-info {
  border: 2px solid #3431AC;
  margin-left: 10px;
  font-size: 13px;
  line-height: 17px;
  text-align: center;
  color: #3431AC;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle; }

.department-details .bounties .details-widget-content {
  padding: 30px; }
  .department-details .bounties .details-widget-content .other-bounties .info {
    padding: 10px 20px 20px; }
  .department-details .bounties .details-widget-content .other-bounties .bounty-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px; }
    .department-details .bounties .details-widget-content .other-bounties .bounty-title__name {
      font-size: 14px;
      font-weight: bold; }
    .department-details .bounties .details-widget-content .other-bounties .bounty-title__value {
      font-size: 14px;
      font-weight: bold;
      color: #ffffff;
      background-color: #3431AC;
      padding: 5px 12px;
      line-height: 1;
      border-radius: 3px; }
  .department-details .bounties .details-widget-content .other-bounties img {
    display: block;
    width: 100%;
    border-radius: 5px; }
.side-menu {
  background-color: #3431ac;
  width: 200px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
  .side-menu.side-menu--production {
    background-color: #3431ac; }
  .side-menu.side-menu--staging {
    background-color: #b8740e; }
  .side-menu .home-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 15px 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
    .side-menu .home-link img {
      height: 30px; }
    .side-menu .home-link .single-org {
      width: 100%;
      padding-bottom: 15px; }
    .side-menu .home-link .company-info {
      display: flex;
      align-items: center;
      margin-right: 10px; }
      .side-menu .home-link .company-info .company-logo {
        display: block;
        max-height: 35px;
        max-width: 35px;
        margin-right: 14px;
        background-color: white; }
      .side-menu .home-link .company-info .company-name {
        font-size: 14px;
        line-height: 16px;
        font-weight: 500;
        color: #ffffff; }
  .side-menu .member-app-element {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 30px 10px 0px 10px; }
  .side-menu .member-app-button {
    margin-top: 12px; }
  .side-menu .change-company-menu-wrapper {
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    margin-top: 5px; }
    .side-menu .change-company-menu-wrapper .change-company-menu {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer; }
    .side-menu .change-company-menu-wrapper .dropdown-icon {
      font-size: 21px;
      width: 25px;
      height: 25px;
      text-align: center;
      color: #ffffff; }
    .side-menu .change-company-menu-wrapper .dropdown-content {
      z-index: 10;
      border: 1px solid #e8e8e8;
      top: 45px;
      max-height: 350px;
      overflow: auto;
      background-color: #ffffff; }
      .side-menu .change-company-menu-wrapper .dropdown-content ul {
        list-style: none; }
        .side-menu .change-company-menu-wrapper .dropdown-content ul li {
          border-bottom: 1px solid #e8e8e8; }
          .side-menu .change-company-menu-wrapper .dropdown-content ul li:last-of-type {
            border-bottom: none; }
          .side-menu .change-company-menu-wrapper .dropdown-content ul li button {
            display: flex;
            align-items: center;
            padding: 7px;
            background-color: #fff;
            text-decoration: none;
            color: #727272;
            width: 155px; }
            .side-menu .change-company-menu-wrapper .dropdown-content ul li button:hover {
              background-color: #f0f0f0; }
            .side-menu .change-company-menu-wrapper .dropdown-content ul li button .company-logo {
              display: block;
              max-height: 35px;
              max-width: 35px;
              box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.1);
              margin-right: 20px;
              background-color: white; }
            .side-menu .change-company-menu-wrapper .dropdown-content ul li button .company-name {
              font-size: 12px;
              font-weight: bold; }
          .side-menu .change-company-menu-wrapper .dropdown-content ul li .change-company-menu__create-org .change-company-menu__create-org-icon {
            margin-right: 12px;
            font-size: 20px; }
  .side-menu .menu {
    list-style: none; }
    .side-menu .menu li {
      padding: 1px 10px; }
      .side-menu .menu li:last-of-type {
        padding: 0; }
      .side-menu .menu li a,
      .side-menu .menu li button {
        gap: 23px;
        padding: 0 20px;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        display: flex;
        width: 100%;
        border-radius: 8px;
        text-align: left;
        cursor: pointer;
        font-size: 14px;
        font-weight: 400;
        height: 40px;
        align-items: center;
        transition: background-color 0.15s ease, color 0.15s ease; }
        .side-menu .menu li a .rule-logo,
        .side-menu .menu li button .rule-logo {
          display: block;
          max-height: 35px;
          max-width: 35px;
          box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.1);
          margin-right: 20px; }
        .side-menu .menu li a .icon-container,
        .side-menu .menu li button .icon-container {
          display: flex;
          align-items: center;
          height: 20px; }
          .side-menu .menu li a .icon-container svg,
          .side-menu .menu li button .icon-container svg {
            width: 22px; }
        .side-menu .menu li a .menu-text,
        .side-menu .menu li button .menu-text {
          display: flex;
          align-items: center;
          gap: 7px; }
        .side-menu .menu li a:hover,
        .side-menu .menu li button:hover {
          background-color: rgba(255, 255, 255, 0.1);
          color: #ffffff; }
        .side-menu .menu li a.active,
        .side-menu .menu li button.active {
          background-color: rgba(255, 255, 255, 0.15);
          backdrop-filter: blur(8px);
          -webkit-backdrop-filter: blur(8px);
          border: 1px solid rgba(255, 255, 255, 0.25);
          color: #ffffff;
          font-weight: 700; }
  .side-menu .staging-badge {
    display: flex;
    justify-content: center;
    padding: 0 16px;
    margin-bottom: 8px; }
    .side-menu .staging-badge .staging-tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background-color: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: 4px;
      padding: 4px 12px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      color: #ffffff;
      width: 100%;
      text-align: center; }

.reward-icon-container {
  margin-left: 10px;
  margin-right: 10px; }

/* Position and sizing of burger button */
.bm-burger-bar {
  background-color: #3431AC; }

.bm-burger-button {
  position: fixed;
  width: 25px;
  height: 20px;
  left: 30px;
  top: 10px; }

/* Color/shape of burger icon bars */
.bm-burger-bars {
  background: #fff; }

/* Position and sizing of clickable cross button */
.bm-cross-button {
  display: none; }

/* Styling of overlay */
.bm-overlay {
  background: rgba(0, 0, 0, 0.05); }

.bm-item-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

.rules-wrapper {
  display: block;
  position: relative; }
  .rules-wrapper .rules-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid 1px rgba(0, 0, 0, 0.05);
    cursor: pointer; }
    .rules-wrapper .rules-menu .rule-info {
      display: flex;
      justify-content: space-between;
      align-items: center; }
      .rules-wrapper .rules-menu .rule-info .rule-logo {
        display: block;
        max-height: 35px;
        max-width: 35px;
        box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.1);
        margin-right: 20px; }
      .rules-wrapper .rules-menu .rule-info .rule-name {
        font-size: 12px;
        font-weight: bold;
        color: #ffffff; }
  .rules-wrapper .dropdown-icon {
    color: #fff; }
  .rules-wrapper .dropdown-content {
    z-index: 10;
    border: 1px solid #e8e8e8;
    top: 50px;
    max-height: 350px;
    overflow: auto;
    background-color: #ffffff; }
    .rules-wrapper .dropdown-content ul {
      list-style: none; }
      .rules-wrapper .dropdown-content ul li {
        border-bottom: 1px solid #e8e8e8; }
        .rules-wrapper .dropdown-content ul li:last-of-type {
          border-bottom: none; }
        .rules-wrapper .dropdown-content ul li a {
          display: flex;
          align-items: center;
          padding: 7px;
          background-color: #0a4371;
          text-decoration: none;
          color: white;
          width: 155px; }
          .rules-wrapper .dropdown-content ul li a:hover {
            background-color: #0f5ea0; }
          .rules-wrapper .dropdown-content ul li a .rule-logo {
            display: block;
            max-height: 35px;
            max-width: 35px;
            box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.1);
            margin-right: 20px; }
          .rules-wrapper .dropdown-content ul li a .rule-name {
            font-size: 12px;
            font-weight: bold; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 0 38px;
  height: 60px;
  background-color: #ffffff; }
  @media (max-width: 540px) {
    .dashboard-header {
      margin-bottom: 1px; } }
  .dashboard-header h2 {
    font-size: 24px;
    line-height: 28px;
    color: #3431ac;
    font-weight: 500; }
  .dashboard-header .notification-container {
    visibility: hidden; }
    .dashboard-header .notification-container .notification-link {
      color: #9b9b9b;
      display: inline-block;
      position: relative; }
      .dashboard-header .notification-container .notification-link .notification-count {
        position: absolute;
        font-size: 11px;
        line-height: 18px;
        color: #ffffff;
        background: #ff5454;
        border-radius: 18px;
        width: 18px;
        height: 18px;
        text-align: center;
        bottom: 12px;
        left: 8px; }
      .dashboard-header .notification-container .notification-link:hover {
        color: #3431ac; }
.alert {
  padding: 20px;
  background-color: #cf554c;
  /* Red */
  color: white;
  margin-bottom: 15px;
  border-radius: 5px;
  margin-top: 10px; }
.ReferredJobPostBody__container {
  width: 100%;
  max-width: 920px;
  margin: 50px auto;
  padding: 0px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  .ReferredJobPostBody__container .header-details-container {
    position: relative;
    width: 100%;
    background-color: #fff;
    margin-bottom: 10px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    overflow: hidden; }
    .ReferredJobPostBody__container .header-details-container .details-container {
      bottom: 0px;
      margin-bottom: 0px; }
      .ReferredJobPostBody__container .header-details-container .details-container .job-details.department .company-logo {
        position: absolute;
        top: 140px; }
      .ReferredJobPostBody__container .header-details-container .details-container .job-details.department .text-details {
        margin-top: 10px; }
    .ReferredJobPostBody__container .header-details-container .cover-image {
      width: 100%;
      height: 184px; }
  .ReferredJobPostBody__container .details-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #fff;
    padding: 40px 30px;
    margin-bottom: 8px; }
    .ReferredJobPostBody__container .details-container.education-block {
      flex-direction: row;
      justify-content: left;
      align-items: flex-start;
      flex-wrap: wrap;
      padding-bottom: 6px; }
    .ReferredJobPostBody__container .details-container .heading {
      font-weight: 700;
      font-size: 20px;
      line-height: 101%;
      color: #959595;
      width: 100%;
      margin-bottom: 10px; }
    .ReferredJobPostBody__container .details-container.referral-rewards .sub-heading {
      font-weight: 500;
      font-size: 14px;
      line-height: 14px;
      color: #444444;
      width: 100%;
      margin-top: 26px;
      margin-bottom: 8px; }
    .ReferredJobPostBody__container .details-container.referral-rewards .description {
      width: 100%;
      font-family: 'Roboto';
      font-style: normal;
      font-weight: 400;
      font-size: 14px;
      line-height: 16px;
      color: #444444;
      margin-bottom: 10px; }
    .ReferredJobPostBody__container .details-container.referral-rewards .terms-heading {
      color: #959595;
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 0;
      margin-top: 20px; }
    .ReferredJobPostBody__container .details-container.referral-rewards .terms-conditions-cont {
      margin-left: 10px;
      margin-right: 20px; }
      .ReferredJobPostBody__container .details-container.referral-rewards .terms-conditions-cont .ql-editor {
        min-height: -moz-fit-content !important;
        min-height: fit-content !important; }
        .ReferredJobPostBody__container .details-container.referral-rewards .terms-conditions-cont .ql-editor * {
          color: #727272 !important; }
    .ReferredJobPostBody__container .details-container .job-details {
      display: flex;
      align-items: flex-start;
      width: 100%;
      margin-top: 4px;
      padding-bottom: 20px; }
      .ReferredJobPostBody__container .details-container .job-details .company-logo {
        height: 82px;
        width: 82px;
        border-radius: 5px; }
        .ReferredJobPostBody__container .details-container .job-details .company-logo.small {
          height: 52px;
          width: 52px; }
        .ReferredJobPostBody__container .details-container .job-details .company-logo.no-salary {
          height: 72px;
          width: 72px; }
      .ReferredJobPostBody__container .details-container .job-details .image-postion-department {
        top: -44px !important; }
      .ReferredJobPostBody__container .details-container .job-details .text-details {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-left: 10px;
        margin-top: 5px;
        font-weight: 400;
        font-size: 14px;
        line-height: 16px;
        color: #999999;
        opacity: unset;
        width: 90%; }
        .ReferredJobPostBody__container .details-container .job-details .text-details .job-title-text {
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          width: 100%; }
        .ReferredJobPostBody__container .details-container .job-details .text-details .job-title {
          font-weight: 700;
          font-size: 26px;
          line-height: 26px;
          color: #18332f;
          display: flex;
          align-items: center;
          margin-bottom: 5px; }
          .ReferredJobPostBody__container .details-container .job-details .text-details .job-title span {
            margin-right: 12px; }
        .ReferredJobPostBody__container .details-container .job-details .text-details .org-name-link {
          text-decoration: none;
          color: #999999; }
          .ReferredJobPostBody__container .details-container .job-details .text-details .org-name-link .org-name {
            margin-bottom: 5px; }
        .ReferredJobPostBody__container .details-container .job-details .text-details .preview-org-name {
          font-weight: 500;
          font-size: 16px;
          font-style: normal; }
        .ReferredJobPostBody__container .details-container .job-details .text-details .inline-details {
          display: flex;
          align-items: center; }
          .ReferredJobPostBody__container .details-container .job-details .text-details .inline-details .time {
            margin-left: 5px;
            color: #000000; }
          .ReferredJobPostBody__container .details-container .job-details .text-details .inline-details .address {
            margin-right: 4px; }
          .ReferredJobPostBody__container .details-container .job-details .text-details .inline-details .time-stamp {
            color: #000000; }
            .ReferredJobPostBody__container .details-container .job-details .text-details .inline-details .time-stamp .dot svg {
              font-size: 6px;
              margin: 3px 6px; }
    .ReferredJobPostBody__container .details-container .job-pills {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      width: 100%;
      padding-bottom: 20px; }
      .ReferredJobPostBody__container .details-container .job-pills .pill {
        margin-right: 5px;
        padding: 4px 8px;
        background: #f2f2f2;
        border-radius: 4px;
        font-size: 12px;
        line-height: 14px;
        color: #000000;
        display: flex;
        justify-content: center;
        align-items: center; }
        .ReferredJobPostBody__container .details-container .job-pills .pill svg {
          font-size: 12px;
          margin-right: 3px; }
    .ReferredJobPostBody__container .details-container .actions {
      display: flex;
      align-items: center;
      width: 100%; }
      .ReferredJobPostBody__container .details-container .actions .btn-apply {
        text-transform: unset;
        font-size: 14px;
        color: #ffffff;
        height: 40px;
        width: 96px;
        box-shadow: unset; }
        .ReferredJobPostBody__container .details-container .actions .btn-apply:hover {
          background-color: #3431AC;
          color: #ffffff; }
        .ReferredJobPostBody__container .details-container .actions .btn-apply svg {
          margin-left: 4px; }
      .ReferredJobPostBody__container .details-container .actions .btn-refer {
        margin-left: 10px;
        text-transform: unset;
        height: 40px;
        width: 100px;
        background-color: #fff;
        border: 1px solid #3431AC; }
        .ReferredJobPostBody__container .details-container .actions .btn-refer:hover {
          background-color: #fff; }
        .ReferredJobPostBody__container .details-container .actions .btn-refer svg {
          margin-left: 8px;
          margin-bottom: 1px; }
      .ReferredJobPostBody__container .details-container .actions .btn-refer:disabled {
        color: #b6b6b6;
        background-color: #e9e9e9;
        border: unset; }
        .ReferredJobPostBody__container .details-container .actions .btn-refer:disabled svg path {
          fill: #b6b6b6; }
    .ReferredJobPostBody__container .details-container .education-block-left {
      display: flex;
      flex-direction: column;
      width: 50%;
      gap: 20px;
      margin-bottom: 24px; }
      .ReferredJobPostBody__container .details-container .education-block-left .required-education .education-text {
        font-weight: 400;
        font-size: 14px;
        line-height: 14px;
        color: #000; }
        .ReferredJobPostBody__container .details-container .education-block-left .required-education .education-text .related-departments {
          font-weight: 400;
          font-size: 14px;
          line-height: 16px;
          text-decoration-line: underline;
          mix-blend-mode: normal;
          opacity: 0.4; }
        .ReferredJobPostBody__container .details-container .education-block-left .required-education .education-text svg {
          margin-right: 12px; }
    .ReferredJobPostBody__container .details-container .industries {
      display: flex;
      flex-direction: column;
      width: 50%;
      margin-top: 0;
      margin-bottom: 24px; }
    .ReferredJobPostBody__container .details-container .indestries-block {
      margin-bottom: 24px; }
      .ReferredJobPostBody__container .details-container .indestries-block .industry-pills {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        width: 100%; }
        .ReferredJobPostBody__container .details-container .indestries-block .industry-pills .pill {
          margin-right: 5px;
          margin-bottom: 5px;
          padding: 4px 8px;
          background: #f2f2f2;
          border-radius: 4px;
          font-size: 12px;
          line-height: 14px;
          color: #000000;
          display: flex;
          justify-content: center;
          align-items: center; }
    .ReferredJobPostBody__container .details-container .skills-education {
      display: flex;
      flex-wrap: wrap;
      width: 100%; }
      .ReferredJobPostBody__container .details-container .skills-education .skills {
        flex: 1;
        width: 100%; }
        .ReferredJobPostBody__container .details-container .skills-education .skills .skill-pills {
          display: flex;
          align-items: center;
          flex-wrap: wrap;
          width: 100%; }
          .ReferredJobPostBody__container .details-container .skills-education .skills .skill-pills .pill {
            margin-right: 5px;
            margin-bottom: 5px;
            padding: 4px 8px;
            background: #f2f2f2;
            border-radius: 4px;
            font-size: 12px;
            line-height: 14px;
            color: #000000;
            display: flex;
            justify-content: center;
            align-items: center; }
        .ReferredJobPostBody__container .details-container .skills-education .skills .department {
          display: flex;
          align-items: center;
          font-size: 14px;
          line-height: 16px;
          text-decoration-line: underline;
          color: #000000;
          mix-blend-mode: normal;
          opacity: 0.4;
          margin-bottom: 8px; }
          .ReferredJobPostBody__container .details-container .skills-education .skills .department svg {
            font-size: 16px;
            margin-right: 5px; }
      .ReferredJobPostBody__container .details-container .skills-education .education {
        flex: 1;
        width: 100%;
        margin-bottom: 10px; }
        .ReferredJobPostBody__container .details-container .skills-education .education .education-text {
          font-size: 14px;
          line-height: 22px;
          color: #959595;
          mix-blend-mode: normal;
          margin-bottom: 8px; }
    .ReferredJobPostBody__container .details-container .description {
      width: 100%; }
    .ReferredJobPostBody__container .details-container .reward-data {
      display: flex;
      flex-direction: column;
      width: 100%; }
      .ReferredJobPostBody__container .details-container .reward-data .reward-pills {
        display: flex;
        align-items: center;
        width: 100%;
        font-size: 12px;
        line-height: 14px;
        color: #000000; }
        .ReferredJobPostBody__container .details-container .reward-data .reward-pills svg {
          margin-right: 5px; }
        .ReferredJobPostBody__container .details-container .reward-data .reward-pills .reward-title {
          padding: 4px 10px;
          margin-right: 5px;
          background: #ffffff;
          border-radius: 2.5px;
          border: 1px solid #af40c2; }
        .ReferredJobPostBody__container .details-container .reward-data .reward-pills .reward-amount {
          padding: 4px 10px;
          margin-right: 5px;
          background: #ffffff;
          border-radius: 2.5px;
          border: 1px solid #0fbc72; }
    .ReferredJobPostBody__container .details-container .org-description {
      width: 100%; }

.description-text > div > ul,
.description-text > div > ol {
  display: block !important;
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
  margin-inline-start: 0px !important;
  margin-inline-end: 0px !important;
  padding-inline-start: 40px !important;
  list-style: initial;
  list-style-type: revert !important; }

.description-text > div > p {
  display: block !important;
  margin-block-start: 0px !important;
  margin-block-end: 0px !important;
  margin-inline-start: 0px !important;
  margin-inline-end: 0px !important; }

.referral-ruler {
  color: #f2f2f2;
  background-color: #f2f2f2;
  margin-bottom: 10px;
  border: none;
  height: 2px; }
.sharing-scope {
  display: flex;
  align-items: center; }
  .sharing-scope .text {
    padding-left: 10px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: normal; }

.label-div {
  position: relative; }
  .label-div .label-text {
    position: absolute;
    font-size: 12px;
    font-weight: 500;
    top: -7px;
    left: 10px;
    padding-left: 4px;
    padding-right: 4px;
    background-color: white;
    color: #6b7280; }
  .label-div:focus-within .label-text {
    color: #3431ac; }
.rewards-control-root .reward-control-cont {
  display: flex;
  justify-content: space-between;
  margin-top: 0px !important;
  margin-bottom: 16px !important; }

.rewards-control-root .reward-switch-cont {
  display: flex;
  gap: 15px;
  align-items: center; }

.rewards-control-root .reverse-reward-switch-cont {
  width: 100%;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin: 0 !important; }

.rewards-control-root .label-no-margin {
  margin: 0px; }

.rewards-control-root .reward-switch-label {
  font-weight: 500;
  font-size: 14px;
  color: #000000; }

.rewards-control-root .last-edit-cont {
  display: flex;
  gap: 10px;
  align-items: center; }

.rewards-control-root .last-edit-text {
  font-weight: 500;
  font-size: 13px;
  text-decoration-line: underline;
  color: #000000; }

.rewards-control-root .cloud-icon {
  height: 13px;
  width: 18px; }

.rewards-control-root .reward-note {
  font-size: 13px;
  color: #959595;
  font-style: italic;
  margin-top: 0; }

.rewards-control-root .reward-bold {
  font-weight: 500; }

.rewards-control-root .reward-underline {
  text-decoration: underline; }

.rewards-control-root .text-primary-color {
  color: #3431ac;
  font-style: normal; }
.empty-departments {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 322px);
  padding: 40px 20px; }
  .empty-departments__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 400px; }
  .empty-departments__icon-wrapper {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #f0f0f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px; }
  .empty-departments__icon {
    font-size: 44px !important;
    color: #9e9ea7; }
  .empty-departments__title {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a2e;
    margin: 0 0 8px;
    line-height: 1.4; }
  .empty-departments__subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    margin: 0;
    line-height: 1.5; }
.empty-jobs {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 322px);
  padding: 40px 20px; }
  .empty-jobs__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 400px; }
  .empty-jobs__icon-wrapper {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #f0f0f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px; }
  .empty-jobs__icon {
    font-size: 44px !important;
    color: #9e9ea7; }
  .empty-jobs__title {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a2e;
    margin: 0 0 8px;
    line-height: 1.4; }
  .empty-jobs__subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    margin: 0;
    line-height: 1.5; }
.CsvSuccess__in-progress-container {
  background: #FFFFFF;
  box-shadow: 0px 2px 4px rgba(147, 157, 177, 0.25);
  border-radius: 4px;
  overflow: hidden; }
  .CsvSuccess__in-progress-container .in-progress-heading {
    background: #F4F5F8;
    box-shadow: 0px 2px 4px rgba(147, 157, 177, 0.1);
    border-radius: 4px 4px 0px 0px;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 20px;
    line-height: 101%;
    text-align: center;
    color: #444444; }
  .CsvSuccess__in-progress-container .in-progress-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    .CsvSuccess__in-progress-container .in-progress-details .check-mark {
      height: 32px;
      width: 32px;
      margin: 30px; }
    .CsvSuccess__in-progress-container .in-progress-details .in-progress-info-text {
      font-weight: 400;
      font-size: 14px;
      line-height: 16px;
      text-align: center;
      color: #444444;
      margin-bottom: 35px; }
.jobs-export-cont {
  display: flex;
  justify-content: center; }
  .jobs-export-cont .content {
    width: 700px;
    margin: 15px 10px; }
  .jobs-export-cont .content-cont {
    padding: 30px 50px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0px 2px 4px rgba(147, 157, 177, 0.25);
    margin-top: 15px; }
  .jobs-export-cont .heading {
    font-size: 20px;
    font-weight: 700;
    color: #444444;
    margin-bottom: 20px; }
  .jobs-export-cont .option-cont {
    display: flex;
    justify-content: space-between; }
  .jobs-export-cont .selection-btn {
    color: #727272;
    cursor: pointer;
    padding: 0; }
  .jobs-export-cont .checkbox-wrapper label {
    font-weight: 400;
    font-size: 12px;
    line-height: 30px;
    letter-spacing: 1px;
    color: #000000; }
  .jobs-export-cont .fields-heading {
    background: #f4f5f8;
    border-radius: 4px 4px 0px 0px;
    padding: 15px;
    margin: 20px 0px 10px 0px;
    width: 100%;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #444444; }
  .jobs-export-cont .btns-cont {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    margin-top: 30px; }
    .jobs-export-cont .btns-cont button {
      width: 160px;
      height: 40px; }
  .jobs-export-cont .export-btn {
    background-color: #3431AC;
    color: #ffffff;
    font-weight: 700; }
  .jobs-export-cont .cancel-btn {
    color: #3431AC;
    border: 1px solid #f1f1f1; }
  .jobs-export-cont .view-cont {
    display: flex;
    align-items: center;
    gap: 10px; }
.import-job-cont {
  margin-top: 32px !important;
  width: 100%;
  display: flex;
  justify-content: center; }
  .import-job-cont .import-content-cont {
    width: 100%;
    max-width: 720px; }
  .import-job-cont .MuiButton-text {
    color: #6b7280;
    font-weight: 500;
    font-size: 14px;
    text-transform: none;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.15s ease; }
    .import-job-cont .MuiButton-text:hover {
      background: #f3f4f6;
      color: #374151; }
    .import-job-cont .MuiButton-text .MuiButton-startIcon {
      margin-right: 6px; }
  .import-job-cont .import-content-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    width: 100%;
    padding: 28px 32px;
    margin-top: 16px; }
  .import-job-cont .import-heading {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a2e;
    margin: 0 0 4px; }
  .import-job-cont .import-text {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 20px; }
  .import-job-cont .download-link {
    color: #3431ac;
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline; }
  .import-job-cont .action-buttons {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding: 20px 0;
    gap: 10px;
    margin-top: 4px; }
    .import-job-cont .action-buttons .btn {
      border-radius: 8px;
      font-size: 14px;
      font-weight: 500;
      padding: 10px 24px;
      transition: all 0.15s ease;
      text-transform: none;
      cursor: pointer; }
    .import-job-cont .action-buttons .btn-text {
      background: #ffffff;
      border: 1px solid #e5e7eb;
      color: #374151; }
      .import-job-cont .action-buttons .btn-text:hover {
        background: #f9fafb;
        border-color: #d1d5db; }
    .import-job-cont .action-buttons .btn-primary {
      background: #3431ac;
      border: 1px solid #3431ac;
      color: #ffffff; }
      .import-job-cont .action-buttons .btn-primary:hover {
        background: #2a279a;
        box-shadow: 0 2px 8px rgba(52, 49, 172, 0.3); }
      .import-job-cont .action-buttons .btn-primary:disabled {
        background: #c7c6e8;
        border-color: #c7c6e8;
        cursor: not-allowed;
        box-shadow: none; }
  .import-job-cont .uploaded-file-name {
    font-size: 13px;
    color: #374151;
    font-weight: 500; }
  .import-job-cont .deleteIcon {
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.15s ease; }
    .import-job-cont .deleteIcon:hover {
      opacity: 1; }
  .import-job-cont .dnd-window {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #e5e7eb; }
    .import-job-cont .dnd-window .dnd-window-header {
      height: 28px;
      background: #f3f4f6;
      border-bottom: 1px solid #e5e7eb;
      display: flex;
      align-items: center; }
      .import-job-cont .dnd-window .dnd-window-header .window-header-actions {
        display: flex;
        padding-left: 12px;
        gap: 5px; }
        .import-job-cont .dnd-window .dnd-window-header .window-header-actions div {
          width: 8px;
          height: 8px;
          background-color: #d1d5db;
          border-radius: 50%; }
    .import-job-cont .dnd-window .dnd-window-body .dnd-zone {
      width: 100%; }
      .import-job-cont .dnd-window .dnd-window-body .dnd-zone .dropzone {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 12px;
        border: none;
        color: #9ca3af;
        min-height: 260px;
        outline: none;
        transition: background 0.2s ease;
        justify-content: start;
        background: #fafbfc; }
        .import-job-cont .dnd-window .dnd-window-body .dnd-zone .dropzone:focus {
          background: #f5f5ff; }
        .import-job-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .dropzone-content {
          display: flex;
          flex-direction: column;
          align-items: center;
          flex-grow: 10;
          justify-content: center; }
          .import-job-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .dropzone-content img {
            margin-bottom: 16px;
            opacity: 0.7; }
          .import-job-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .dropzone-content p {
            text-align: center;
            margin: 6px 0; }
            .import-job-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .dropzone-content p:first-child {
              font-size: 15px;
              line-height: 1.4;
              font-weight: 600;
              color: #374151; }
            .import-job-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .dropzone-content p:last-child {
              font-size: 14px;
              line-height: 1.4;
              font-weight: 400;
              color: #9ca3af; }
              .import-job-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .dropzone-content p:last-child span {
                font-weight: 600;
                color: #3431ac;
                cursor: pointer; }
                .import-job-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .dropzone-content p:last-child span:hover {
                  text-decoration: underline; }
        .import-job-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .file-list {
          flex-grow: 1;
          width: 100%; }
          .import-job-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .file-list > div {
            display: flex;
            border-bottom: 1px solid #f3f4f6;
            justify-content: space-between;
            padding: 10px 8px;
            color: #374151;
            border-radius: 6px;
            transition: background 0.15s ease; }
            .import-job-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .file-list > div:hover {
              background: #f0f1f3; }
            .import-job-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .file-list > div div {
              display: flex;
              align-items: center; }
              .import-job-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .file-list > div div span {
                margin-left: 12px; }
              .import-job-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .file-list > div div:last-child {
                margin-right: 4px; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
/* Requires _mixins (for mui-outlined-input-autofill-reset) — import _mixins before this file. */
/* ─────────────────────────────────────────────────────────────
 *  Generic modern form — reusable across all settings / edit /
 *  create forms (jobs, departments, future entities).
 *
 *  BEM block:  .boon-form
 *
 *  Usage:
 *    <div class="boon-form">
 *      <div class="boon-form__card">
 *        <div class="boon-form__header">
 *          <div class="boon-form__header-icon">…</div>
 *          <div class="boon-form__header-main">
 *            <h1 class="boon-form__title">…</h1>
 *            <p  class="boon-form__subtitle">…</p>
 *          </div>
 *          <div class="boon-form__header-actions">…</div>
 *        </div>
 *        <div class="boon-form__body field-text-centered">
 *          …sections / fields…
 *        </div>
 *        <div class="boon-form__footer">…</div>
 *      </div>
 *    </div>
 * ───────────────────────────────────────────────────────────── */
/* ── Colour / size tokens ─── */
/* ── Root ─── */
.boon-form {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  box-sizing: border-box; }

/* ── Card shell ─── */
.boon-form__card {
  background: #ffffff;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  overflow: visible; }

/* ── Header ─── */
.boon-form__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid #f0f1f3;
  background: #fafbfc;
  border-radius: 12px 12px 0 0;
  flex-wrap: wrap; }

.boon-form__header-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #eeedfc 0%, #dddafa 100%);
  color: #3431ac;
  display: flex;
  align-items: center;
  justify-content: center; }

.boon-form__header-main {
  flex: 1 1 220px;
  min-width: 0; }

.boon-form__title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.4; }
  .boon-form__title--truncate {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }

.boon-form__subtitle {
  font-size: 13px;
  color: #6b7280;
  margin: 4px 0 0;
  line-height: 1.5;
  max-width: 560px; }

.boon-form__header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px; }
  @media (min-width: 640px) {
    .boon-form__header-actions {
      margin-top: 0;
      margin-left: auto; } }

/* ── Body ─── */
.boon-form__body {
  padding: 24px 28px 28px; }

/* ── Footer / actions row ─── */
.boon-form__footer {
  padding: 16px 28px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0f1f3; }
  .boon-form__footer > div {
    display: flex;
    align-items: center;
    gap: 16px; }
  .boon-form__footer .btn-primary,
  .boon-form__footer .boon-form__btn--primary {
    border-radius: 8px;
    font-weight: 600;
    padding: 10px 28px; }
  .boon-form__footer .btn-outline,
  .boon-form__footer .boon-form__btn--outline {
    border-radius: 8px; }
  .boon-form__footer .btn-text,
  .boon-form__footer .boon-form__btn--text {
    border-radius: 8px; }

/* ── Reset button (defaults forms) ─── */
.boon-form__btn--reset {
  text-transform: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  color: #374151 !important;
  border-color: #d1d5db !important;
  padding: 8px 16px !important; }
  .boon-form__btn--reset:hover {
    background: #f9fafb !important;
    border-color: #9ca3af !important; }

/* ───────────────────────────────────────────────────────────────
 *  Field-level normalisation — rows, MUI fields, react-select
 *  Scoped under .boon-form so rules match at any nesting depth.
 * ─────────────────────────────────────────────────────────────── */
.boon-form {
  /* ── Row layout ───
   * Beats: white-widget `.basic-info .row`, details-view `.row`,
   * and any other global .row rules.
   */
  /* ── Section (accordion) spacing ───
   * Single source of truth for vertical rhythm between sections.
   * Uses !important to beat makeStyles, white-widget mixin, and MUI defaults.
   */
  /* First section in the form body — no top margin */
  /* ── MUI outlined inputs ─── */
  /* ── Old react-select (single) ─── */
  /* ── Old react-select (multi, standard) ─── */
  /* ── Multi-select inline chips (not chips-below) ─── */
  /* ── Chips-below multi-select ─── */
  /* ── Redux select label ─── */
  /* ── Location autocomplete ─── */
  /* ── Salary range block ─── */
  /* ── Misc field overrides ─── */ }
  .boon-form .row,
  .boon-form .basic-info .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 16px !important;
    margin-bottom: 0 !important;
    display: block !important;
    width: 100%;
    max-width: 100%; }
    .boon-form .row:first-child,
    .boon-form .basic-info .row:first-child {
      margin-top: 0 !important; }
    .boon-form .row:last-of-type,
    .boon-form .basic-info .row:last-of-type {
      margin-top: 16px !important;
      margin-bottom: 0 !important; }
    .boon-form .row:first-child:last-of-type,
    .boon-form .basic-info .row:first-child:last-of-type {
      margin-top: 0 !important; }
    .boon-form .row > div[class*='col-'],
    .boon-form .row > div,
    .boon-form .basic-info .row > div[class*='col-'],
    .boon-form .basic-info .row > div {
      width: 100% !important;
      max-width: 100% !important;
      flex: none !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
      box-sizing: border-box; }
  .boon-form .MuiAccordion-root {
    margin-top: 16px !important;
    margin-bottom: 0 !important; }
  .boon-form .MuiAccordionSummary-root {
    margin-top: 0 !important; }
    .boon-form .MuiAccordionSummary-root.Mui-expanded {
      margin-bottom: 16px !important; }
  .boon-form .boon-form__body > .basic-info:first-child .MuiAccordion-root,
  .boon-form .boon-form__body > *:first-child .MuiAccordion-root {
    margin-top: 0 !important; }
  .boon-form .MuiFormControl-root,
  .boon-form .MuiTextField-root {
    width: 100%;
    max-width: 100%;
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .boon-form .MuiOutlinedInput-root {
    border-radius: 8px; }
  .boon-form .MuiOutlinedInput-notchedOutline {
    border-color: #d1d5db; }
  .boon-form .MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline {
    border-color: #9ca3af; }
  .boon-form .MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
    border-color: #3431ac;
    border-width: 1px; }
  .boon-form .MuiInputLabel-outlined {
    color: #6b7280; }
  .boon-form .MuiInputLabel-outlined.Mui-focused {
    color: #3431ac; }
  .boon-form .MuiOutlinedInput-input:-webkit-autofill, .boon-form .MuiOutlinedInput-input:-webkit-autofill:hover, .boon-form .MuiOutlinedInput-input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: #111827 !important;
    caret-color: #111827;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s; }
  .boon-form .details-widget-content .row > div {
    width: 100% !important;
    max-width: 100% !important; }
  .boon-form .field-text-centered .light.Select {
    width: 100%; }
  .boon-form .field-text-centered .light > .Select-control {
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: none !important;
    min-height: 40px !important;
    height: auto !important; }
    .boon-form .field-text-centered .light > .Select-control:hover {
      border-color: #9ca3af !important; }
  .boon-form .field-text-centered .light.is-focused > .Select-control,
  .boon-form .field-text-centered .light.is-open > .Select-control {
    border-color: #3431ac !important;
    border-width: 1px !important; }
  .boon-form .field-text-centered .light.Select--single > .Select-control .Select-placeholder {
    line-height: 38px !important;
    color: #959595 !important;
    opacity: 1 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    top: 0 !important; }
  .boon-form .field-text-centered .light.Select--single > .Select-control .Select-value {
    line-height: 38px !important; }
  .boon-form .field-text-centered .light.Select--single > .Select-control .Select-value-label {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #111827 !important; }
  .boon-form .field-text-centered .light.Select--single > .Select-control .Select-input > input {
    font-size: 14px !important; }
  .boon-form .Select-arrow {
    color: #959595 !important; }
  .boon-form .field-text-centered .light.multi > .Select-control {
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important;
    cursor: pointer !important; }
    .boon-form .field-text-centered .light.multi > .Select-control:hover {
      border-color: #9ca3af !important; }
    .boon-form .field-text-centered .light.multi > .Select-control > .Select-multi-value-wrapper > .Select-input {
      border: none !important; }
    .boon-form .field-text-centered .light.multi > .Select-control > .Select-arrow-zone {
      display: table-cell !important;
      cursor: pointer !important;
      padding-bottom: 0px !important; }
  .boon-form .field-text-centered .light.multi.is-focused > .Select-control,
  .boon-form .field-text-centered .light.multi.is-open > .Select-control {
    border-color: #3431ac !important; }
  .boon-form .field-text-centered
.redux-select-container:not(.redux-select-container--chips-below)
.light.multi.Select--multi
> .Select-control {
    min-height: 42px !important;
    height: auto !important;
    padding: 0px 10px 0px !important;
    align-items: flex-start !important; }
  .boon-form .field-text-centered
.redux-select-container:not(.redux-select-container--chips-below)
.light.multi
> .Select-control
> .Select-multi-value-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    align-content: center !important;
    gap: 6px 8px !important;
    margin: 0 !important;
    width: 100% !important; }
  .boon-form .field-text-centered
.redux-select-container:not(.redux-select-container--chips-below)
.light.multi
> .Select-control
> .Select-multi-value-wrapper
> .Select-value {
    order: 0 !important;
    margin: 0 !important;
    align-self: center;
    padding: 5px 34px 5px 12px !important;
    border-radius: 16px !important;
    border: 1px solid #3431ac !important;
    background-color: rgba(52, 49, 172, 0.06) !important; }
  .boon-form .field-text-centered
.redux-select-container:not(.redux-select-container--chips-below)
.light.multi
> .Select-control
> .Select-multi-value-wrapper
> .Select-value
.Select-value-label {
    font-size: 13px !important;
    line-height: 1.35 !important;
    color: #3431ac !important;
    font-weight: 500 !important;
    max-width: 36ch;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden; }
  .boon-form .field-text-centered
.redux-select-container:not(.redux-select-container--chips-below)
.light.multi
> .Select-control
> .Select-multi-value-wrapper
> .Select-value
.Select-value-icon {
    top: 50% !important;
    right: 8px !important;
    margin-top: -10px !important;
    width: 20px !important;
    height: 20px !important;
    line-height: 20px !important;
    padding: 0 !important; }
  .boon-form .field-text-centered
.redux-select-container:not(.redux-select-container--chips-below)
.light.multi
> .Select-control
> .Select-multi-value-wrapper
> .Select-input {
    order: 1 !important;
    width: auto !important;
    min-width: 80px !important;
    flex: 1 1 120px !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    align-self: center; }
  .boon-form .field-text-centered
.redux-select-container:not(.redux-select-container--chips-below)
.light.multi
> .Select-control
> .Select-multi-value-wrapper
> .Select-input
> input {
    line-height: 22px !important;
    padding: 4px 2px !important;
    height: auto !important;
    font-size: 14px !important; }
  .boon-form .field-text-centered
.redux-select-container:not(.redux-select-container--chips-below)
.light.multi
> .Select-control
> .Select-multi-value-wrapper
> .Select-placeholder {
    order: 1 !important;
    position: static !important;
    top: 2px !important;
    line-height: 22px !important;
    padding: 6px 4px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #959595 !important; }
  .boon-form .redux-select-container--chips-below .Select.Select--multi > .Select-control {
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important;
    cursor: pointer !important; }
    .boon-form .redux-select-container--chips-below .Select.Select--multi > .Select-control:hover {
      border-color: #9ca3af !important; }
    .boon-form .redux-select-container--chips-below .Select.Select--multi > .Select-control > .Select-multi-value-wrapper > .Select-input {
      border: none !important; }
  .boon-form .redux-select-container--chips-below .Select.Select--multi.is-focused > .Select-control,
  .boon-form .redux-select-container--chips-below .Select.Select--multi.is-open > .Select-control {
    border-color: #3431ac !important; }
  .boon-form .redux-select-container {
    position: relative;
    width: 100%;
    margin-top: 0; }
    .boon-form .redux-select-container .select-label {
      left: 10px;
      color: #6b7280;
      font-size: 12px;
      font-weight: 500;
      background: #fff;
      padding: 0 4px; }
    .boon-form .redux-select-container .select-label.focused {
      color: #3431ac; }
  .boon-form .location-select-container {
    width: 100%;
    margin-top: 0; }
  .boon-form .job_Salary_range_block {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 12px 16px;
    width: 100%;
    margin-top: 16px !important;
    margin-bottom: 0px !important; }
    .boon-form .job_Salary_range_block .MuiFormControl-root {
      flex: 1 1 200px;
      width: auto !important;
      max-width: none !important;
      padding-right: 0 !important;
      margin-top: 0 !important; }
      .boon-form .job_Salary_range_block .MuiFormControl-root .MuiOutlinedInput-root {
        min-height: 40px; }
      .boon-form .job_Salary_range_block .MuiFormControl-root .MuiOutlinedInput-input {
        padding: 10.5px 14px; }
    .boon-form .job_Salary_range_block .currency-controls-cont {
      display: flex;
      flex-direction: row;
      align-items: flex-end;
      gap: 10px;
      flex: 1 1 220px;
      width: auto !important;
      min-width: 0; }
      .boon-form .job_Salary_range_block .currency-controls-cont .redux-select-container {
        flex: 1 1 120px;
        width: auto !important;
        min-width: 100px;
        max-width: 160px;
        padding-right: 0 !important; }
    .boon-form .job_Salary_range_block .icons-block {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 8px;
      flex: 0 0 auto;
      padding-bottom: 2px; }
      .boon-form .job_Salary_range_block .icons-block .salary-privacy-btn {
        border-radius: 8px;
        border: 1px solid #d1d5db; }
  .boon-form .ck-editor {
    margin-top: 0; }
  .boon-form .rules-suggestions-edit {
    margin-top: 0 !important;
    padding-top: 4px;
    width: 100%; }

/* ── Full-width accordion blocks ─── */
.boon-form .basic-info,
.boon-form .MuiAccordion-root {
  width: 100%;
  max-width: 100%; }

/* ── Section dividers (wrapper between accordion blocks) ───
 * Neutralise both wrapper classes so .MuiAccordion-root margin-top
 * is the single source of spacing between sections.
 */
.boon-form .boon-form__section-divider,
.boon-form .openings-section-seperator {
  border-top: none !important;
  padding: 0 !important;
  margin: 0 !important; }

/* ── Inline loader ─── */
.boon-form__loader {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 320px;
  padding: 48px 24px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e8eaed;
  border-radius: 12px; }
  .boon-form__loader .loading-component {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: auto !important;
    height: auto !important;
    min-height: 14px;
    z-index: 1;
    background: transparent !important; }

.department-edit .details-background {
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative; }
  .department-edit .details-background .logo {
    position: absolute;
    bottom: -60px;
    left: 40px;
    z-index: 1;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); }
    @media (max-width: 540px) {
      .department-edit .details-background .logo {
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); } }
    .department-edit .details-background .logo img {
      display: block;
      border-radius: 10px;
      max-height: 160px;
      max-width: 160px; }

.department-edit .details-info {
  padding: 60px 40px 25px;
  position: relative; }
  .department-edit .details-info .func-buttons-container {
    position: absolute;
    top: -25px;
    right: 40px;
    z-index: 5; }
    @media (max-width: 540px) {
      .department-edit .details-info .func-buttons-container {
        right: auto;
        left: 50%;
        transform: translateX(-50%); } }
    .department-edit .details-info .func-buttons-container .btn {
      min-width: 140px;
      margin-left: 20px; }
  .department-edit .details-info .dashboard-sides-container {
    display: flex; }
    .department-edit .details-info .dashboard-sides-container .left-side {
      width: 61.2%;
      margin-right: 0;
      flex: 0 0 auto; }
    .department-edit .details-info .dashboard-sides-container .right-side {
      width: calc(38.8% - 30px);
      flex: 0 0 auto; }
    @media (max-width: 960px) {
      .department-edit .details-info .dashboard-sides-container {
        display: block; }
        .department-edit .details-info .dashboard-sides-container .left-side,
        .department-edit .details-info .dashboard-sides-container .right-side {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; } }
  .department-edit .details-info .sides-container {
    display: flex;
    max-width: 1000px;
    margin: auto; }
    .department-edit .details-info .sides-container .left-side {
      width: 71.2%;
      margin-right: 0;
      flex: 0 0 auto; }
    .department-edit .details-info .sides-container .right-side {
      width: calc(38.8% - 30px);
      flex: 0 0 auto; }
    @media (max-width: 960px) {
      .department-edit .details-info .sides-container {
        display: block; }
        .department-edit .details-info .sides-container .left-side,
        .department-edit .details-info .sides-container .right-side {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; } }
  .department-edit .details-info .sides-container-reverse {
    display: flex; }
    .department-edit .details-info .sides-container-reverse .left-side {
      width: 20%;
      flex: 0 0 auto;
      padding-top: 36px; }
    .department-edit .details-info .sides-container-reverse .right-side {
      width: 60%;
      flex: 0 0 auto; }
    @media (max-width: 960px) {
      .department-edit .details-info .sides-container-reverse {
        display: block; }
        .department-edit .details-info .sides-container-reverse .right-side {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; }
        .department-edit .details-info .sides-container-reverse .left-side {
          display: none; } }
  .department-edit .details-info .main-container {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0px 2px 4px rgba(147, 157, 177, 0.25); }
    .department-edit .details-info .main-container .title-default-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px; }
    .department-edit .details-info .main-container .main-container-title {
      font-size: 20px;
      color: #444444;
      font-weight: 700;
      margin-bottom: 24px;
      padding-left: 10px; }
    .department-edit .details-info .main-container .basic-info:last-child {
      margin-bottom: 0; }
    .department-edit .details-info .main-container .list .Select-control {
      border-width: 1px;
      border-radius: 4px; }
  .department-edit .details-info .actions-container {
    margin-top: 20px;
    display: flex;
    justify-content: space-between; }
    .department-edit .details-info .actions-container button.btn-primary {
      margin-left: 20px; }
  @media (max-width: 540px) {
    .department-edit .details-info {
      padding: 60px 20px 15px; } }

.department-edit .perks input {
  width: 100%;
  margin-bottom: 20px; }

.department-edit .perks ul {
  list-style: none; }
  .department-edit .perks ul li {
    border-radius: 25px;
    display: inline-block;
    margin: 0 20px 10px 0;
    background-color: #f5f7f8;
    font-size: 13px;
    font-weight: bold;
    color: #18332f; }
    .department-edit .perks ul li.edit {
      padding: 5px 5px 5px 20px; }
      .department-edit .perks ul li.edit .close {
        background-color: #3431AC;
        color: #ffffff;
        display: inline-block;
        height: 22px;
        width: 22px;
        font-size: 16px;
        line-height: 21px;
        font-weight: bold;
        text-align: center;
        border-radius: 50%;
        margin-left: 10px;
        cursor: pointer; }

.department-edit .youtube iframe {
  width: 100%; }

.department-edit .Select .Select-control {
  height: 40px; }
  .department-edit .Select .Select-control .Select-placeholder {
    line-height: 38px; }
  .department-edit .Select .Select-control .Select-input {
    height: 38px; }
  .department-edit .Select .Select-control .Select-arrow-zone .Select-arrow {
    color: #c2c2c2; }

.department-edit .details-widget {
  margin-bottom: 20px;
  border-radius: 5px;
  background-color: #ffffff; }
  .department-edit .details-widget h4 {
    color: #18332f;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px; }
  .department-edit .details-widget .details-widget-content {
    padding: 20px 30px 30px; }
    .department-edit .details-widget .details-widget-content.two-columns {
      display: flex; }
      .department-edit .details-widget .details-widget-content.two-columns .column {
        width: calc(50% - 15px);
        margin-right: 30px; }
        .department-edit .details-widget .details-widget-content.two-columns .column:last-of-type {
          margin: 0; }
  .department-edit .details-widget .row {
    display: flex;
    margin-bottom: 30px;
    color: #18332f; }
    .department-edit .details-widget .row:last-of-type {
      margin: 0; }
    .department-edit .details-widget .row > div {
      flex: 1 1 auto; }
      .department-edit .details-widget .row > div > input:not([type='checkbox']),
      .department-edit .details-widget .row > div select,
      .department-edit .details-widget .row > div textarea {
        width: 100%; }
      .department-edit .details-widget .row > div.inline {
        display: flex;
        align-items: center;
        justify-content: space-between; }
        .department-edit .details-widget .row > div.inline h4 {
          margin: 0; }
    .department-edit .details-widget .row .info {
      background-color: #f5f7f8;
      font-size: 13px;
      font-weight: bold;
      color: #18332f;
      padding: 8px 20px;
      border-radius: 5px;
      line-height: 1.8; }
      .department-edit .details-widget .row .info.description {
        padding: 20px;
        font-weight: normal;
        white-space: pre-wrap; }
      .department-edit .details-widget .row .info.rounded {
        padding: 4px 20px;
        border-radius: 25px; }
    .department-edit .details-widget .row.columns-3 > div {
      width: calc(33.333% - 16.666px);
      margin-right: 25px;
      flex: 0 1 auto; }
    .department-edit .details-widget .row.columns-2 > div {
      width: calc(50% - 15px);
      margin-right: 30px;
      flex: 0 1 auto; }
    .department-edit .details-widget .row .tag {
      padding: 4px 20px 5px;
      border-radius: 25px;
      margin-top: 19px; }
    @media (max-width: 540px) {
      .department-edit .details-widget .row {
        display: block; }
        .department-edit .details-widget .row.columns-3 > div, .department-edit .details-widget .row.columns-2 > div {
          width: 100%;
          margin-bottom: 20px; } }

.department-edit .top-actions-container {
  position: absolute;
  right: 40px;
  bottom: -20px;
  z-index: 10; }
  .department-edit .top-actions-container .copy-from-container {
    display: inline-flex; }

.department-edit .details-info {
  padding: 0 !important; }

.department-edit .sides-container-reverse {
  display: flex !important;
  align-items: flex-start !important;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 48px;
  box-sizing: border-box; }

.department-edit .left-side {
  flex: 0 0 auto !important;
  width: 240px !important;
  min-width: 200px;
  padding-top: 43px !important;
  position: sticky;
  top: 16px; }

.department-edit .right-side {
  flex: 1 !important;
  min-width: 0;
  max-width: 720px;
  width: 100% !important; }
  .department-edit .right-side .jobButton-flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.job-details .details-background {
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative; }
  .job-details .details-background .logo {
    position: absolute;
    bottom: -60px;
    left: 40px;
    z-index: 1;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); }
    @media (max-width: 540px) {
      .job-details .details-background .logo {
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); } }
    .job-details .details-background .logo img {
      display: block;
      border-radius: 10px;
      max-height: 160px;
      max-width: 160px; }

.job-details .details-info {
  padding: 60px 40px 25px;
  position: relative; }
  .job-details .details-info .func-buttons-container {
    position: absolute;
    top: -25px;
    right: 40px;
    z-index: 5; }
    @media (max-width: 540px) {
      .job-details .details-info .func-buttons-container {
        right: auto;
        left: 50%;
        transform: translateX(-50%); } }
    .job-details .details-info .func-buttons-container .btn {
      min-width: 140px;
      margin-left: 20px; }
  .job-details .details-info .dashboard-sides-container {
    display: flex; }
    .job-details .details-info .dashboard-sides-container .left-side {
      width: 61.2%;
      margin-right: 0;
      flex: 0 0 auto; }
    .job-details .details-info .dashboard-sides-container .right-side {
      width: calc(38.8% - 30px);
      flex: 0 0 auto; }
    @media (max-width: 960px) {
      .job-details .details-info .dashboard-sides-container {
        display: block; }
        .job-details .details-info .dashboard-sides-container .left-side,
        .job-details .details-info .dashboard-sides-container .right-side {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; } }
  .job-details .details-info .sides-container {
    display: flex;
    max-width: 1000px;
    margin: auto; }
    .job-details .details-info .sides-container .left-side {
      width: 71.2%;
      margin-right: 0;
      flex: 0 0 auto; }
    .job-details .details-info .sides-container .right-side {
      width: calc(38.8% - 30px);
      flex: 0 0 auto; }
    @media (max-width: 960px) {
      .job-details .details-info .sides-container {
        display: block; }
        .job-details .details-info .sides-container .left-side,
        .job-details .details-info .sides-container .right-side {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; } }
  .job-details .details-info .sides-container-reverse {
    display: flex; }
    .job-details .details-info .sides-container-reverse .left-side {
      width: 20%;
      flex: 0 0 auto;
      padding-top: 36px; }
    .job-details .details-info .sides-container-reverse .right-side {
      width: 60%;
      flex: 0 0 auto; }
    @media (max-width: 960px) {
      .job-details .details-info .sides-container-reverse {
        display: block; }
        .job-details .details-info .sides-container-reverse .right-side {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; }
        .job-details .details-info .sides-container-reverse .left-side {
          display: none; } }
  .job-details .details-info .main-container {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0px 2px 4px rgba(147, 157, 177, 0.25); }
    .job-details .details-info .main-container .title-default-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px; }
    .job-details .details-info .main-container .main-container-title {
      font-size: 20px;
      color: #444444;
      font-weight: 700;
      margin-bottom: 24px;
      padding-left: 10px; }
    .job-details .details-info .main-container .basic-info:last-child {
      margin-bottom: 0; }
    .job-details .details-info .main-container .list .Select-control {
      border-width: 1px;
      border-radius: 4px; }
  .job-details .details-info .actions-container {
    margin-top: 20px;
    display: flex;
    justify-content: space-between; }
    .job-details .details-info .actions-container button.btn-primary {
      margin-left: 20px; }
  @media (max-width: 540px) {
    .job-details .details-info {
      padding: 60px 20px 15px; } }

.job-details .perks input {
  width: 100%;
  margin-bottom: 20px; }

.job-details .perks ul {
  list-style: none; }
  .job-details .perks ul li {
    border-radius: 25px;
    display: inline-block;
    margin: 0 20px 10px 0;
    background-color: #f5f7f8;
    font-size: 13px;
    font-weight: bold;
    color: #18332f; }
    .job-details .perks ul li.edit {
      padding: 5px 5px 5px 20px; }
      .job-details .perks ul li.edit .close {
        background-color: #3431AC;
        color: #ffffff;
        display: inline-block;
        height: 22px;
        width: 22px;
        font-size: 16px;
        line-height: 21px;
        font-weight: bold;
        text-align: center;
        border-radius: 50%;
        margin-left: 10px;
        cursor: pointer; }

.job-details .youtube iframe {
  width: 100%; }

.job-details .details-info {
  padding: 60px 40px 25px; }

.job-details h1 {
  font-size: 28px;
  font-weight: bold;
  color: #18332f;
  margin-bottom: 30px; }
  .job-details h1 div {
    font-size: 16px;
    font-weight: 500; }

.job-details .details-widget {
  margin-bottom: 20px;
  border-radius: 5px;
  background-color: #ffffff; }
  .job-details .details-widget h4 {
    color: #18332f;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px; }
  .job-details .details-widget .details-widget-content {
    padding: 20px 30px 30px; }
    .job-details .details-widget .details-widget-content.two-columns {
      display: flex; }
      .job-details .details-widget .details-widget-content.two-columns .column {
        width: calc(50% - 15px);
        margin-right: 30px; }
        .job-details .details-widget .details-widget-content.two-columns .column:last-of-type {
          margin: 0; }
  .job-details .details-widget .row {
    display: flex;
    margin-bottom: 30px;
    color: #18332f; }
    .job-details .details-widget .row:last-of-type {
      margin: 0; }
    .job-details .details-widget .row > div {
      flex: 1 1 auto; }
      .job-details .details-widget .row > div > input:not([type='checkbox']),
      .job-details .details-widget .row > div select,
      .job-details .details-widget .row > div textarea {
        width: 100%; }
      .job-details .details-widget .row > div.inline {
        display: flex;
        align-items: center;
        justify-content: space-between; }
        .job-details .details-widget .row > div.inline h4 {
          margin: 0; }
    .job-details .details-widget .row .info {
      background-color: #f5f7f8;
      font-size: 13px;
      font-weight: bold;
      color: #18332f;
      padding: 8px 20px;
      border-radius: 5px;
      line-height: 1.8; }
      .job-details .details-widget .row .info.description {
        padding: 20px;
        font-weight: normal;
        white-space: pre-wrap; }
      .job-details .details-widget .row .info.rounded {
        padding: 4px 20px;
        border-radius: 25px; }
    .job-details .details-widget .row.columns-3 > div {
      width: calc(33.333% - 16.666px);
      margin-right: 25px;
      flex: 0 1 auto; }
    .job-details .details-widget .row.columns-2 > div {
      width: calc(50% - 15px);
      margin-right: 30px;
      flex: 0 1 auto; }
    .job-details .details-widget .row .tag {
      padding: 4px 20px 5px;
      border-radius: 25px;
      margin-top: 19px; }
    @media (max-width: 540px) {
      .job-details .details-widget .row {
        display: block; }
        .job-details .details-widget .row.columns-3 > div, .job-details .details-widget .row.columns-2 > div {
          width: 100%;
          margin-bottom: 20px; } }
  .job-details .details-widget.post-settings .row > .inline {
    justify-content: flex-start;
    align-items: flex-start; }
    .job-details .details-widget.post-settings .row > .inline h4 {
      width: 40%; }
    .job-details .details-widget.post-settings .row > .inline > div {
      font-size: 14px;
      font-weight: bold; }
    .job-details .details-widget.post-settings .row > .inline .followed div {
      margin-bottom: 10px; }

.job-details .row .skills .info {
  margin: 0 10px 10px 0;
  display: inline-block; }

.job-details .boolean {
  font-size: 14px;
  font-weight: 500;
  color: #3431AC; }

.job-details .tooltip-info {
  border: 2px solid #3431AC;
  margin-left: 10px;
  font-size: 13px;
  line-height: 17px;
  text-align: center;
  color: #3431AC;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle; }

.job-details .bounties .details-widget-content {
  padding: 30px; }
  .job-details .bounties .details-widget-content .other-bounties .info {
    padding: 10px 20px 20px; }
  .job-details .bounties .details-widget-content .other-bounties .bounty-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px; }
    .job-details .bounties .details-widget-content .other-bounties .bounty-title__name {
      font-size: 14px;
      font-weight: bold; }
    .job-details .bounties .details-widget-content .other-bounties .bounty-title__value {
      font-size: 14px;
      font-weight: bold;
      color: #ffffff;
      background-color: #3431AC;
      padding: 5px 12px;
      line-height: 1;
      border-radius: 3px; }
  .job-details .bounties .details-widget-content .other-bounties img {
    display: block;
    width: 100%;
    border-radius: 5px; }
.team-history {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px; }
  .team-history__back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.15s ease;
    margin-bottom: 20px; }
    .team-history__back-btn:hover {
      color: #374151;
      background: #f3f4f6; }
    .team-history__back-btn svg {
      width: 18px;
      height: 18px; }
  .team-history__card {
    background: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 12px;
    overflow: hidden; }
  .team-history__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 28px;
    border-bottom: 1px solid #f0f1f3;
    background: #fafbfc; }
  .team-history__header-left {
    display: flex;
    align-items: center;
    gap: 16px; }
  .team-history__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #eeedfc 0%, #dddafa 100%);
    color: #3431ac;
    display: flex;
    align-items: center;
    justify-content: center; }
  .team-history__title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.4; }
  .team-history__clear-btn {
    background: none;
    border: 1px solid #e8eaed;
    border-radius: 8px;
    padding: 7px 16px;
    font: inherit;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap; }
    .team-history__clear-btn:hover {
      color: #ef4444;
      border-color: #fecaca;
      background: #fef2f2; }
  .team-history__body {
    padding: 0; }
  .team-history__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 28px;
    color: #9ca3af; }
    .team-history__empty svg {
      width: 48px;
      height: 48px;
      margin-bottom: 12px;
      opacity: 0.4; }
    .team-history__empty span {
      font-size: 14px;
      font-weight: 500; }

.history-item {
  padding: 20px 28px;
  border-bottom: 1px solid #f0f1f3; }
  .history-item:last-child {
    border-bottom: none; }
  .history-item__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px; }
  .history-item__file-info {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1; }
  .history-item__file-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: #f3f4f6;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center; }
  .history-item__file-details {
    min-width: 0;
    flex: 1; }
  .history-item__file-name {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 400px; }
    .history-item__file-name a {
      color: #1f2937;
      text-decoration: none;
      transition: color 0.15s ease; }
      .history-item__file-name a:hover {
        color: #3431ac;
        text-decoration: underline; }
  .history-item__file-date {
    font-size: 12px;
    color: #9ca3af;
    margin: 2px 0 0;
    line-height: 1.4; }
  .history-item__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0; }
    .history-item__status svg {
      width: 14px;
      height: 14px; }
    .history-item__status--error {
      background: #fef2f2;
      color: #dc2626; }
    .history-item__status--complete {
      background: #eeedfc;
      color: #3431ac; }
    .history-item__status--processing {
      background: #f3f4f6;
      color: #6b7280; }
  .history-item__success-summary {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: #166534; }
    .history-item__success-summary svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0; }
    .history-item__success-summary b {
      font-weight: 600; }
  .history-item__errors {
    margin-top: 12px;
    padding: 14px 0; }
  .history-item__error-stat {
    font-size: 13px;
    color: #dc2626;
    margin: 6px 0; }
    .history-item__error-stat b {
      font-weight: 600; }
  .history-item__error-group + .history-item__error-group {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f0f1f3; }
  .history-item__error-reason {
    font-size: 13px;
    font-weight: 500;
    color: #dc2626;
    margin: 0 0 4px; }
  .history-item__error-list {
    margin: 0;
    padding: 0 0 0 18px; }
    .history-item__error-list li {
      font-size: 12px;
      color: #991b1b;
      line-height: 1.6; }
  .history-item__download-log {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #dc2626;
    text-decoration: none;
    transition: all 0.15s ease; }
    .history-item__download-log:hover {
      text-decoration: underline;
      color: #b91c1c; }
    .history-item__download-log svg {
      width: 14px;
      height: 14px; }
.reward-item-data {
  width: 100%; }
  .reward-item-data .heading {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    display: flex;
    white-space: nowrap;
    overflow: hidden; }
    .reward-item-data .heading .reward-title {
      color: #18332F;
      padding-right: 20px; }
    .reward-item-data .heading .reward-amount {
      color: #3431AC; }
    .reward-item-data .heading .reward-slash {
      margin-left: 5px;
      margin-right: 5px;
      color: #959595; }
    .reward-item-data .heading .reward-name {
      color: #af40c2; }
    .reward-item-data .heading .remove-bulk-rewards {
      color: #af40c2;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
  .reward-item-data .time-details {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #959595;
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding-left: 20px; }
    .reward-item-data .time-details svg {
      font-size: 14px;
      margin-right: 5px; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.error-msg {
  color: red; }

.simple-text {
  color: #727272; }

.btn-center {
  width: 30%;
  margin-left: 35%; }

.bounties {
  border-radius: 5px;
  background-color: #ffffff;
  margin-bottom: 20px; }
  .bounties h4 {
    color: #18332f;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px; }
  .bounties .details-widget-content {
    padding: 20px 30px 30px; }
    .bounties .details-widget-content.two-columns {
      display: flex; }
      .bounties .details-widget-content.two-columns .column {
        width: calc(50% - 15px);
        margin-right: 30px; }
        .bounties .details-widget-content.two-columns .column:last-of-type {
          margin: 0; }
  .bounties .row {
    display: flex;
    margin-bottom: 30px;
    color: #18332f; }
    .bounties .row:last-of-type {
      margin: 0; }
    .bounties .row > div {
      flex: 1 1 auto; }
      .bounties .row > div > input:not([type='checkbox']),
      .bounties .row > div select,
      .bounties .row > div textarea {
        width: 100%; }
      .bounties .row > div.inline {
        display: flex;
        align-items: center;
        justify-content: space-between; }
        .bounties .row > div.inline h4 {
          margin: 0; }
    .bounties .row .info {
      background-color: #f5f7f8;
      font-size: 13px;
      font-weight: bold;
      color: #18332f;
      padding: 8px 20px;
      border-radius: 5px;
      line-height: 1.8; }
      .bounties .row .info.description {
        padding: 20px;
        font-weight: normal;
        white-space: pre-wrap; }
      .bounties .row .info.rounded {
        padding: 4px 20px;
        border-radius: 25px; }
    .bounties .row.columns-3 > div {
      width: calc(33.333% - 16.666px);
      margin-right: 25px;
      flex: 0 1 auto; }
    .bounties .row.columns-2 > div {
      width: calc(50% - 15px);
      margin-right: 30px;
      flex: 0 1 auto; }
    .bounties .row .tag {
      padding: 4px 20px 5px;
      border-radius: 25px;
      margin-top: 19px; }
    @media (max-width: 540px) {
      .bounties .row {
        display: block; }
        .bounties .row.columns-3 > div, .bounties .row.columns-2 > div {
          width: 100%;
          margin-bottom: 20px; } }
  .bounties .bounty-amount {
    display: flex;
    justify-content: space-between; }
    .bounties .bounty-amount input {
      width: 100px; }
  .bounties .custom-bounties input {
    margin-bottom: 20px; }
  .bounties .bounty-preview-image {
    width: 100%;
    display: block; }
  .bounties .dropzone-content {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #879391; }
    .bounties .dropzone-content img {
      margin-bottom: 10px; }

.template-modal {
  width: 600px; }
  .template-modal .close-icon {
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 20px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    background-color: #3431AC;
    border-radius: 50%;
    padding: 0;
    font-weight: bold;
    line-height: 1;
    color: #ffffff; }
    .template-modal .close-icon:hover {
      background-color: #3a37c0; }
  .template-modal h1 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 70px;
    text-align: center;
    color: #343a4e; }
  .template-modal .field-label {
    color: #000; }
  .template-modal .field-input {
    margin-bottom: 30px; }
    .template-modal .field-input .input {
      display: block;
      width: 100%; }
  .template-modal .columns-2 .field-input .value-input {
    width: 48%;
    display: inline-block; }
  .template-modal .columns-2 .field-input .redux-select-container {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    margin-left: 10px; }
  .template-modal .functional-buttons .send-invites {
    float: right; }
  .template-modal .functional-buttons .cancel-btn {
    float: left; }
.email-sync-modal {
  padding: 32px 28px 28px;
  text-align: center; }
  .email-sync-modal .warning-icon-cont {
    display: flex;
    justify-content: center;
    margin-bottom: 16px; }
    .email-sync-modal .warning-icon-cont img {
      width: 48px;
      height: 48px;
      opacity: 0.85; }
  .email-sync-modal .text {
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    margin: 0 auto 28px;
    max-width: 400px;
    word-break: break-word; }
  .email-sync-modal .action-btns-cont {
    display: flex;
    gap: 12px;
    justify-content: center; }
    .email-sync-modal .action-btns-cont .cancel-btn {
      min-width: 120px;
      height: 40px;
      font-weight: 500;
      font-size: 14px;
      background: #3431ac;
      border: none;
      border-radius: 8px;
      color: #fff;
      text-transform: none;
      transition: background 0.15s ease; }
      .email-sync-modal .action-btns-cont .cancel-btn:hover {
        background: #2a279a; }
    .email-sync-modal .action-btns-cont .disable-btn {
      min-width: 160px;
      height: 40px;
      border: 1px solid #fca5a5;
      border-radius: 8px;
      font-weight: 500;
      font-size: 14px;
      color: #dc2626;
      background: #fef2f2;
      text-transform: none;
      transition: all 0.15s ease; }
      .email-sync-modal .action-btns-cont .disable-btn:hover {
        background: #fee2e2;
        border-color: #f87171; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
/* Requires _mixins (for mui-outlined-input-autofill-reset) — import _mixins before this file. */
/* ─────────────────────────────────────────────────────────────
 *  Generic modern form — reusable across all settings / edit /
 *  create forms (jobs, departments, future entities).
 *
 *  BEM block:  .boon-form
 *
 *  Usage:
 *    <div class="boon-form">
 *      <div class="boon-form__card">
 *        <div class="boon-form__header">
 *          <div class="boon-form__header-icon">…</div>
 *          <div class="boon-form__header-main">
 *            <h1 class="boon-form__title">…</h1>
 *            <p  class="boon-form__subtitle">…</p>
 *          </div>
 *          <div class="boon-form__header-actions">…</div>
 *        </div>
 *        <div class="boon-form__body field-text-centered">
 *          …sections / fields…
 *        </div>
 *        <div class="boon-form__footer">…</div>
 *      </div>
 *    </div>
 * ───────────────────────────────────────────────────────────── */
/* ── Colour / size tokens ─── */
/* ── Root ─── */
.boon-form {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  box-sizing: border-box; }

/* ── Card shell ─── */
.boon-form__card {
  background: #ffffff;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  overflow: visible; }

/* ── Header ─── */
.boon-form__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid #f0f1f3;
  background: #fafbfc;
  border-radius: 12px 12px 0 0;
  flex-wrap: wrap; }

.boon-form__header-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #eeedfc 0%, #dddafa 100%);
  color: #3431ac;
  display: flex;
  align-items: center;
  justify-content: center; }

.boon-form__header-main {
  flex: 1 1 220px;
  min-width: 0; }

.boon-form__title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.4; }
  .boon-form__title--truncate {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }

.boon-form__subtitle {
  font-size: 13px;
  color: #6b7280;
  margin: 4px 0 0;
  line-height: 1.5;
  max-width: 560px; }

.boon-form__header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px; }
  @media (min-width: 640px) {
    .boon-form__header-actions {
      margin-top: 0;
      margin-left: auto; } }

/* ── Body ─── */
.boon-form__body {
  padding: 24px 28px 28px; }

/* ── Footer / actions row ─── */
.boon-form__footer {
  padding: 16px 28px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0f1f3; }
  .boon-form__footer > div {
    display: flex;
    align-items: center;
    gap: 16px; }
  .boon-form__footer .btn-primary,
  .boon-form__footer .boon-form__btn--primary {
    border-radius: 8px;
    font-weight: 600;
    padding: 10px 28px; }
  .boon-form__footer .btn-outline,
  .boon-form__footer .boon-form__btn--outline {
    border-radius: 8px; }
  .boon-form__footer .btn-text,
  .boon-form__footer .boon-form__btn--text {
    border-radius: 8px; }

/* ── Reset button (defaults forms) ─── */
.boon-form__btn--reset {
  text-transform: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  color: #374151 !important;
  border-color: #d1d5db !important;
  padding: 8px 16px !important; }
  .boon-form__btn--reset:hover {
    background: #f9fafb !important;
    border-color: #9ca3af !important; }

/* ───────────────────────────────────────────────────────────────
 *  Field-level normalisation — rows, MUI fields, react-select
 *  Scoped under .boon-form so rules match at any nesting depth.
 * ─────────────────────────────────────────────────────────────── */
.boon-form {
  /* ── Row layout ───
   * Beats: white-widget `.basic-info .row`, details-view `.row`,
   * and any other global .row rules.
   */
  /* ── Section (accordion) spacing ───
   * Single source of truth for vertical rhythm between sections.
   * Uses !important to beat makeStyles, white-widget mixin, and MUI defaults.
   */
  /* First section in the form body — no top margin */
  /* ── MUI outlined inputs ─── */
  /* ── Old react-select (single) ─── */
  /* ── Old react-select (multi, standard) ─── */
  /* ── Multi-select inline chips (not chips-below) ─── */
  /* ── Chips-below multi-select ─── */
  /* ── Redux select label ─── */
  /* ── Location autocomplete ─── */
  /* ── Salary range block ─── */
  /* ── Misc field overrides ─── */ }
  .boon-form .row,
  .boon-form .basic-info .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 16px !important;
    margin-bottom: 0 !important;
    display: block !important;
    width: 100%;
    max-width: 100%; }
    .boon-form .row:first-child,
    .boon-form .basic-info .row:first-child {
      margin-top: 0 !important; }
    .boon-form .row:last-of-type,
    .boon-form .basic-info .row:last-of-type {
      margin-top: 16px !important;
      margin-bottom: 0 !important; }
    .boon-form .row:first-child:last-of-type,
    .boon-form .basic-info .row:first-child:last-of-type {
      margin-top: 0 !important; }
    .boon-form .row > div[class*='col-'],
    .boon-form .row > div,
    .boon-form .basic-info .row > div[class*='col-'],
    .boon-form .basic-info .row > div {
      width: 100% !important;
      max-width: 100% !important;
      flex: none !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
      box-sizing: border-box; }
  .boon-form .MuiAccordion-root {
    margin-top: 16px !important;
    margin-bottom: 0 !important; }
  .boon-form .MuiAccordionSummary-root {
    margin-top: 0 !important; }
    .boon-form .MuiAccordionSummary-root.Mui-expanded {
      margin-bottom: 16px !important; }
  .boon-form .boon-form__body > .basic-info:first-child .MuiAccordion-root,
  .boon-form .boon-form__body > *:first-child .MuiAccordion-root {
    margin-top: 0 !important; }
  .boon-form .MuiFormControl-root,
  .boon-form .MuiTextField-root {
    width: 100%;
    max-width: 100%;
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .boon-form .MuiOutlinedInput-root {
    border-radius: 8px; }
  .boon-form .MuiOutlinedInput-notchedOutline {
    border-color: #d1d5db; }
  .boon-form .MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline {
    border-color: #9ca3af; }
  .boon-form .MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
    border-color: #3431ac;
    border-width: 1px; }
  .boon-form .MuiInputLabel-outlined {
    color: #6b7280; }
  .boon-form .MuiInputLabel-outlined.Mui-focused {
    color: #3431ac; }
  .boon-form .MuiOutlinedInput-input:-webkit-autofill, .boon-form .MuiOutlinedInput-input:-webkit-autofill:hover, .boon-form .MuiOutlinedInput-input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: #111827 !important;
    caret-color: #111827;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s; }
  .boon-form .details-widget-content .row > div {
    width: 100% !important;
    max-width: 100% !important; }
  .boon-form .field-text-centered .light.Select {
    width: 100%; }
  .boon-form .field-text-centered .light > .Select-control {
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: none !important;
    min-height: 40px !important;
    height: auto !important; }
    .boon-form .field-text-centered .light > .Select-control:hover {
      border-color: #9ca3af !important; }
  .boon-form .field-text-centered .light.is-focused > .Select-control,
  .boon-form .field-text-centered .light.is-open > .Select-control {
    border-color: #3431ac !important;
    border-width: 1px !important; }
  .boon-form .field-text-centered .light.Select--single > .Select-control .Select-placeholder {
    line-height: 38px !important;
    color: #959595 !important;
    opacity: 1 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    top: 0 !important; }
  .boon-form .field-text-centered .light.Select--single > .Select-control .Select-value {
    line-height: 38px !important; }
  .boon-form .field-text-centered .light.Select--single > .Select-control .Select-value-label {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #111827 !important; }
  .boon-form .field-text-centered .light.Select--single > .Select-control .Select-input > input {
    font-size: 14px !important; }
  .boon-form .Select-arrow {
    color: #959595 !important; }
  .boon-form .field-text-centered .light.multi > .Select-control {
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important;
    cursor: pointer !important; }
    .boon-form .field-text-centered .light.multi > .Select-control:hover {
      border-color: #9ca3af !important; }
    .boon-form .field-text-centered .light.multi > .Select-control > .Select-multi-value-wrapper > .Select-input {
      border: none !important; }
    .boon-form .field-text-centered .light.multi > .Select-control > .Select-arrow-zone {
      display: table-cell !important;
      cursor: pointer !important;
      padding-bottom: 0px !important; }
  .boon-form .field-text-centered .light.multi.is-focused > .Select-control,
  .boon-form .field-text-centered .light.multi.is-open > .Select-control {
    border-color: #3431ac !important; }
  .boon-form .field-text-centered
.redux-select-container:not(.redux-select-container--chips-below)
.light.multi.Select--multi
> .Select-control {
    min-height: 42px !important;
    height: auto !important;
    padding: 0px 10px 0px !important;
    align-items: flex-start !important; }
  .boon-form .field-text-centered
.redux-select-container:not(.redux-select-container--chips-below)
.light.multi
> .Select-control
> .Select-multi-value-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    align-content: center !important;
    gap: 6px 8px !important;
    margin: 0 !important;
    width: 100% !important; }
  .boon-form .field-text-centered
.redux-select-container:not(.redux-select-container--chips-below)
.light.multi
> .Select-control
> .Select-multi-value-wrapper
> .Select-value {
    order: 0 !important;
    margin: 0 !important;
    align-self: center;
    padding: 5px 34px 5px 12px !important;
    border-radius: 16px !important;
    border: 1px solid #3431ac !important;
    background-color: rgba(52, 49, 172, 0.06) !important; }
  .boon-form .field-text-centered
.redux-select-container:not(.redux-select-container--chips-below)
.light.multi
> .Select-control
> .Select-multi-value-wrapper
> .Select-value
.Select-value-label {
    font-size: 13px !important;
    line-height: 1.35 !important;
    color: #3431ac !important;
    font-weight: 500 !important;
    max-width: 36ch;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden; }
  .boon-form .field-text-centered
.redux-select-container:not(.redux-select-container--chips-below)
.light.multi
> .Select-control
> .Select-multi-value-wrapper
> .Select-value
.Select-value-icon {
    top: 50% !important;
    right: 8px !important;
    margin-top: -10px !important;
    width: 20px !important;
    height: 20px !important;
    line-height: 20px !important;
    padding: 0 !important; }
  .boon-form .field-text-centered
.redux-select-container:not(.redux-select-container--chips-below)
.light.multi
> .Select-control
> .Select-multi-value-wrapper
> .Select-input {
    order: 1 !important;
    width: auto !important;
    min-width: 80px !important;
    flex: 1 1 120px !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    align-self: center; }
  .boon-form .field-text-centered
.redux-select-container:not(.redux-select-container--chips-below)
.light.multi
> .Select-control
> .Select-multi-value-wrapper
> .Select-input
> input {
    line-height: 22px !important;
    padding: 4px 2px !important;
    height: auto !important;
    font-size: 14px !important; }
  .boon-form .field-text-centered
.redux-select-container:not(.redux-select-container--chips-below)
.light.multi
> .Select-control
> .Select-multi-value-wrapper
> .Select-placeholder {
    order: 1 !important;
    position: static !important;
    top: 2px !important;
    line-height: 22px !important;
    padding: 6px 4px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #959595 !important; }
  .boon-form .redux-select-container--chips-below .Select.Select--multi > .Select-control {
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important;
    cursor: pointer !important; }
    .boon-form .redux-select-container--chips-below .Select.Select--multi > .Select-control:hover {
      border-color: #9ca3af !important; }
    .boon-form .redux-select-container--chips-below .Select.Select--multi > .Select-control > .Select-multi-value-wrapper > .Select-input {
      border: none !important; }
  .boon-form .redux-select-container--chips-below .Select.Select--multi.is-focused > .Select-control,
  .boon-form .redux-select-container--chips-below .Select.Select--multi.is-open > .Select-control {
    border-color: #3431ac !important; }
  .boon-form .redux-select-container {
    position: relative;
    width: 100%;
    margin-top: 0; }
    .boon-form .redux-select-container .select-label {
      left: 10px;
      color: #6b7280;
      font-size: 12px;
      font-weight: 500;
      background: #fff;
      padding: 0 4px; }
    .boon-form .redux-select-container .select-label.focused {
      color: #3431ac; }
  .boon-form .location-select-container {
    width: 100%;
    margin-top: 0; }
  .boon-form .job_Salary_range_block {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 12px 16px;
    width: 100%;
    margin-top: 16px !important;
    margin-bottom: 0px !important; }
    .boon-form .job_Salary_range_block .MuiFormControl-root {
      flex: 1 1 200px;
      width: auto !important;
      max-width: none !important;
      padding-right: 0 !important;
      margin-top: 0 !important; }
      .boon-form .job_Salary_range_block .MuiFormControl-root .MuiOutlinedInput-root {
        min-height: 40px; }
      .boon-form .job_Salary_range_block .MuiFormControl-root .MuiOutlinedInput-input {
        padding: 10.5px 14px; }
    .boon-form .job_Salary_range_block .currency-controls-cont {
      display: flex;
      flex-direction: row;
      align-items: flex-end;
      gap: 10px;
      flex: 1 1 220px;
      width: auto !important;
      min-width: 0; }
      .boon-form .job_Salary_range_block .currency-controls-cont .redux-select-container {
        flex: 1 1 120px;
        width: auto !important;
        min-width: 100px;
        max-width: 160px;
        padding-right: 0 !important; }
    .boon-form .job_Salary_range_block .icons-block {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 8px;
      flex: 0 0 auto;
      padding-bottom: 2px; }
      .boon-form .job_Salary_range_block .icons-block .salary-privacy-btn {
        border-radius: 8px;
        border: 1px solid #d1d5db; }
  .boon-form .ck-editor {
    margin-top: 0; }
  .boon-form .rules-suggestions-edit {
    margin-top: 0 !important;
    padding-top: 4px;
    width: 100%; }

/* ── Full-width accordion blocks ─── */
.boon-form .basic-info,
.boon-form .MuiAccordion-root {
  width: 100%;
  max-width: 100%; }

/* ── Section dividers (wrapper between accordion blocks) ───
 * Neutralise both wrapper classes so .MuiAccordion-root margin-top
 * is the single source of spacing between sections.
 */
.boon-form .boon-form__section-divider,
.boon-form .openings-section-seperator {
  border-top: none !important;
  padding: 0 !important;
  margin: 0 !important; }

/* ── Inline loader ─── */
.boon-form__loader {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 320px;
  padding: 48px 24px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e8eaed;
  border-radius: 12px; }
  .boon-form__loader .loading-component {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: auto !important;
    height: auto !important;
    min-height: 14px;
    z-index: 1;
    background: transparent !important; }

.job-edit .details-background {
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative; }
  .job-edit .details-background .logo {
    position: absolute;
    bottom: -60px;
    left: 40px;
    z-index: 1;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); }
    @media (max-width: 540px) {
      .job-edit .details-background .logo {
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); } }
    .job-edit .details-background .logo img {
      display: block;
      border-radius: 10px;
      max-height: 160px;
      max-width: 160px; }

.job-edit .details-info {
  padding: 60px 40px 25px;
  position: relative; }
  .job-edit .details-info .func-buttons-container {
    position: absolute;
    top: -25px;
    right: 40px;
    z-index: 5; }
    @media (max-width: 540px) {
      .job-edit .details-info .func-buttons-container {
        right: auto;
        left: 50%;
        transform: translateX(-50%); } }
    .job-edit .details-info .func-buttons-container .btn {
      min-width: 140px;
      margin-left: 20px; }
  .job-edit .details-info .dashboard-sides-container {
    display: flex; }
    .job-edit .details-info .dashboard-sides-container .left-side {
      width: 61.2%;
      margin-right: 0;
      flex: 0 0 auto; }
    .job-edit .details-info .dashboard-sides-container .right-side {
      width: calc(38.8% - 30px);
      flex: 0 0 auto; }
    @media (max-width: 960px) {
      .job-edit .details-info .dashboard-sides-container {
        display: block; }
        .job-edit .details-info .dashboard-sides-container .left-side,
        .job-edit .details-info .dashboard-sides-container .right-side {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; } }
  .job-edit .details-info .sides-container {
    display: flex;
    max-width: 1000px;
    margin: auto; }
    .job-edit .details-info .sides-container .left-side {
      width: 71.2%;
      margin-right: 0;
      flex: 0 0 auto; }
    .job-edit .details-info .sides-container .right-side {
      width: calc(38.8% - 30px);
      flex: 0 0 auto; }
    @media (max-width: 960px) {
      .job-edit .details-info .sides-container {
        display: block; }
        .job-edit .details-info .sides-container .left-side,
        .job-edit .details-info .sides-container .right-side {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; } }
  .job-edit .details-info .sides-container-reverse {
    display: flex; }
    .job-edit .details-info .sides-container-reverse .left-side {
      width: 20%;
      flex: 0 0 auto;
      padding-top: 36px; }
    .job-edit .details-info .sides-container-reverse .right-side {
      width: 60%;
      flex: 0 0 auto; }
    @media (max-width: 960px) {
      .job-edit .details-info .sides-container-reverse {
        display: block; }
        .job-edit .details-info .sides-container-reverse .right-side {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; }
        .job-edit .details-info .sides-container-reverse .left-side {
          display: none; } }
  .job-edit .details-info .main-container {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0px 2px 4px rgba(147, 157, 177, 0.25); }
    .job-edit .details-info .main-container .title-default-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px; }
    .job-edit .details-info .main-container .main-container-title {
      font-size: 20px;
      color: #444444;
      font-weight: 700;
      margin-bottom: 24px;
      padding-left: 10px; }
    .job-edit .details-info .main-container .basic-info:last-child {
      margin-bottom: 0; }
    .job-edit .details-info .main-container .list .Select-control {
      border-width: 1px;
      border-radius: 4px; }
  .job-edit .details-info .actions-container {
    margin-top: 20px;
    display: flex;
    justify-content: space-between; }
    .job-edit .details-info .actions-container button.btn-primary {
      margin-left: 20px; }
  @media (max-width: 540px) {
    .job-edit .details-info {
      padding: 60px 20px 15px; } }

.job-edit .perks input {
  width: 100%;
  margin-bottom: 20px; }

.job-edit .perks ul {
  list-style: none; }
  .job-edit .perks ul li {
    border-radius: 25px;
    display: inline-block;
    margin: 0 20px 10px 0;
    background-color: #f5f7f8;
    font-size: 13px;
    font-weight: bold;
    color: #18332f; }
    .job-edit .perks ul li.edit {
      padding: 5px 5px 5px 20px; }
      .job-edit .perks ul li.edit .close {
        background-color: #3431AC;
        color: #ffffff;
        display: inline-block;
        height: 22px;
        width: 22px;
        font-size: 16px;
        line-height: 21px;
        font-weight: bold;
        text-align: center;
        border-radius: 50%;
        margin-left: 10px;
        cursor: pointer; }

.job-edit .youtube iframe {
  width: 100%; }

.job-edit .Select .Select-control {
  height: 40px; }
  .job-edit .Select .Select-control .Select-placeholder {
    line-height: 38px; }
  .job-edit .Select .Select-control .Select-input {
    height: 38px; }
  .job-edit .Select .Select-control .Select-arrow-zone .Select-arrow {
    color: #c2c2c2; }

.job-edit .details-widget {
  margin-bottom: 20px;
  border-radius: 5px;
  background-color: #ffffff; }
  .job-edit .details-widget h4 {
    color: #18332f;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px; }
  .job-edit .details-widget .details-widget-content {
    padding: 20px 30px 30px; }
    .job-edit .details-widget .details-widget-content.two-columns {
      display: flex; }
      .job-edit .details-widget .details-widget-content.two-columns .column {
        width: calc(50% - 15px);
        margin-right: 30px; }
        .job-edit .details-widget .details-widget-content.two-columns .column:last-of-type {
          margin: 0; }
  .job-edit .details-widget .row {
    display: flex;
    margin-bottom: 30px;
    color: #18332f; }
    .job-edit .details-widget .row:last-of-type {
      margin: 0; }
    .job-edit .details-widget .row > div {
      flex: 1 1 auto; }
      .job-edit .details-widget .row > div > input:not([type='checkbox']),
      .job-edit .details-widget .row > div select,
      .job-edit .details-widget .row > div textarea {
        width: 100%; }
      .job-edit .details-widget .row > div.inline {
        display: flex;
        align-items: center;
        justify-content: space-between; }
        .job-edit .details-widget .row > div.inline h4 {
          margin: 0; }
    .job-edit .details-widget .row .info {
      background-color: #f5f7f8;
      font-size: 13px;
      font-weight: bold;
      color: #18332f;
      padding: 8px 20px;
      border-radius: 5px;
      line-height: 1.8; }
      .job-edit .details-widget .row .info.description {
        padding: 20px;
        font-weight: normal;
        white-space: pre-wrap; }
      .job-edit .details-widget .row .info.rounded {
        padding: 4px 20px;
        border-radius: 25px; }
    .job-edit .details-widget .row.columns-3 > div {
      width: calc(33.333% - 16.666px);
      margin-right: 25px;
      flex: 0 1 auto; }
    .job-edit .details-widget .row.columns-2 > div {
      width: calc(50% - 15px);
      margin-right: 30px;
      flex: 0 1 auto; }
    .job-edit .details-widget .row .tag {
      padding: 4px 20px 5px;
      border-radius: 25px;
      margin-top: 19px; }
    @media (max-width: 540px) {
      .job-edit .details-widget .row {
        display: block; }
        .job-edit .details-widget .row.columns-3 > div, .job-edit .details-widget .row.columns-2 > div {
          width: 100%;
          margin-bottom: 20px; } }

.job-edit .top-actions-container {
  position: absolute;
  right: 40px;
  bottom: -20px;
  z-index: 10; }
  .job-edit .top-actions-container .copy-from-container {
    display: inline-flex; }

.job-edit .basic-info .row > div {
  margin-top: 0 !important; }

.job-edit .details-info {
  padding: 0 !important; }

.job-edit .sides-container-reverse {
  display: flex !important;
  align-items: flex-start !important;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 48px;
  box-sizing: border-box; }

.job-edit .left-side {
  flex: 0 0 auto !important;
  width: 240px !important;
  min-width: 200px;
  padding-top: 43px !important;
  position: sticky;
  top: 16px; }

.job-edit .right-side {
  flex: 1 !important;
  min-width: 0;
  max-width: 720px;
  width: 100% !important; }
  .job-edit .right-side .jobButton-flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center; }
.reward-template {
  max-width: 661px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto; }
  .reward-template .reward-container .reward-form {
    box-shadow: 0px 2px 4px rgba(147, 157, 177, 0.25);
    border-radius: 4px;
    background-color: #ffffff;
    padding: 30px; }
    .reward-template .reward-container .reward-form .title-container {
      padding: 0 10px; }
    .reward-template .reward-container .reward-form .reward-description {
      margin: 20px 10px 30px 10px;
      color: #444444;
      font-size: 14px; }
    .reward-template .reward-container .reward-form .installments-selector-container {
      margin: 0 10px;
      width: 196px; }
      .reward-template .reward-container .reward-form .installments-selector-container legend {
        width: 134px; }
      .reward-template .reward-container .reward-form .installments-selector-container .MuiInputLabel-formControl {
        top: -5px;
        left: 13px; }
    .reward-template .reward-container .reward-form .MuiPaper-root {
      margin-top: 20px;
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 4px; }
    .reward-template .reward-container .reward-form .installment .accordion-title {
      height: 40px;
      line-height: 40px;
      background: #F4F5F8;
      border-radius: 4px 4px 0px 0px;
      padding: 10px;
      min-height: 40px !important; }
    .reward-template .reward-container .reward-form .installment .accordion-details {
      display: block; }
      .reward-template .reward-container .reward-form .installment .accordion-details .installments-card {
        width: 100%; }
        .reward-template .reward-container .reward-form .installment .accordion-details .installments-card legend {
          width: 70px; }
        .reward-template .reward-container .reward-form .installment .accordion-details .installments-card .MuiInputLabel-formControl {
          top: -5px;
          left: 13px; }
      .reward-template .reward-container .reward-form .installment .accordion-details .accordion-btn-container {
        margin-top: 20px; }
        .reward-template .reward-container .reward-form .installment .accordion-details .accordion-btn-container .btn {
          width: 100%;
          text-transform: unset; }
          .reward-template .reward-container .reward-form .installment .accordion-details .accordion-btn-container .btn svg {
            margin-right: 10px; }
        .reward-template .reward-container .reward-form .installment .accordion-details .accordion-btn-container .btn-monetary {
          color: #3431AC; }
        .reward-template .reward-container .reward-form .installment .accordion-details .accordion-btn-container .btn-experiential {
          color: #B040C2; }
    .reward-template .reward-container .reward-form hr {
      margin: 25px 0;
      width: 100%;
      color: #c2c2c2; }
    .reward-template .reward-container .reward-form b {
      float: right;
      color: #444444; }
    .reward-template .reward-container .reward-form .btn-save-reward {
      margin: 40px auto 0 auto;
      display: flex;
      text-align: center;
      background-color: #3431AC;
      color: #ffffff;
      width: 91px;
      height: 40px; }
.manage-section {
  display: block;
  min-height: 100%;
  margin-top: 32px; }

.manage-root {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 24px 100px; }

.manage-unsaved-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  border-radius: 10px;
  padding: 12px 18px;
  margin-bottom: 20px;
  color: #3431ac;
  font-size: 14px;
  font-weight: 500; }
  .manage-unsaved-banner__icon {
    font-size: 20px;
    color: #3431ac; }

.manage-master-card {
  background: linear-gradient(135deg, #fff8f0 0%, #fff3e0 100%);
  border: 1px solid #fdba74;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px; }
  .manage-master-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px; }
  .manage-master-card__title {
    font-size: 16px;
    font-weight: 600;
    color: #c2410c;
    margin: 0; }
  .manage-master-card__desc {
    font-size: 13px;
    color: #9a3412;
    margin-top: 6px;
    margin-bottom: 0;
    line-height: 1.45; }
  .manage-master-card .section-container {
    border-bottom: none !important;
    padding: 0 !important;
    flex-shrink: 0; }

.manage-section-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px; }
  .manage-section-card__heading {
    color: #959595;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0 0 16px; }
  .manage-section-card .section-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f3f4f6; }
    .manage-section-card .section-container:last-child {
      border-bottom: none;
      padding-bottom: 0; }
    .manage-section-card .section-container:first-of-type {
      padding-top: 0; }
  .manage-section-card .labels-cont {
    width: auto;
    flex: 1;
    min-width: 0; }
    .manage-section-card .labels-cont .label {
      color: #374151;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 0; }
    .manage-section-card .labels-cont .sub-label {
      color: #6b7280;
      font-size: 13px;
      font-weight: 400;
      margin-top: 6px;
      margin-bottom: 0;
      line-height: 1.45; }
  .manage-section-card .notification-controls {
    flex-shrink: 0;
    padding-top: 2px; }
  .manage-section-card .MuiTextField-root {
    margin-top: 0 !important; }
  .manage-section-card .MuiOutlinedInput-root {
    padding: 3px; }

.manage-subsection-heading {
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem; }
  .manage-subsection-heading:first-of-type {
    margin-top: 0; }

.manage-subsection-divider {
  width: 100%;
  height: 1px;
  background-color: #e5e7eb;
  margin-bottom: 0.5rem; }

.manage-customize-templates {
  display: flex;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem; }

.manage-customize-templates__btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 18px;
  border: 1px solid #3431ac;
  border-radius: 8px;
  color: #3431ac;
  font-weight: 600;
  font-size: 14px;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s; }
  .manage-customize-templates__btn:hover {
    background-color: #3431ac;
    color: #fff; }

.manage-sticky-actions {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  margin-top: 8px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
  z-index: 10; }

.manage-cancel-btn {
  background: #ffffff;
  color: #374151;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s; }
  .manage-cancel-btn:hover {
    background: #f3f4f6;
    border-color: #9ca3af; }

.manage-save-btn {
  background: #3431ac;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s; }
  .manage-save-btn:hover {
    background: #2a2890; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.new-job {
  min-height: 100%;
  display: flex;
  flex-direction: column; }
  .new-job .header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 30px;
    flex: 0 0 auto;
    background-color: #fff;
    min-height: 70px;
    box-shadow: 0 2px 5px 0 rgba(196, 206, 220, 0.5);
    position: relative;
    z-index: 1;
    /* Hosts AppSearchField in header row; input metrics live in AppSearchField.scss (+ app-search-field-input mixin) */
    margin: 0; }
    .new-job .header .page-title {
      display: flex;
      align-items: center;
      min-width: 122px;
      padding: 10px 30px;
      border-right: 1px solid #e8e8e8; }
      .new-job .header .page-title h2 {
        font-size: 20px;
        font-weight: bold;
        color: #18332f; }
    .new-job .header .subtitle {
      text-align: center;
      margin-top: 20px;
      color: #414141; }
    .new-job .header .about-roles {
      text-align: center;
      margin-top: 25px; }
    .new-job .header .search-block {
      flex: 1 1 auto;
      min-width: 0;
      width: 100%;
      display: block;
      padding: 10px 30px; }
    .new-job .header .header-functionality {
      border-left: 1px solid #e8e8e8;
      display: flex;
      align-items: center;
      padding: 0 30px; }
      .new-job .header .header-functionality .bulk-select-wrapper {
        display: flex;
        align-items: center;
        border-left: 1px solid #e8e8e8;
        height: 100%;
        padding-left: 30px; }
        .new-job .header .header-functionality .bulk-select-wrapper .Select {
          flex: 0 0 auto;
          width: 170px; }
        .new-job .header .header-functionality .bulk-select-wrapper .select-label {
          color: #a5adac;
          font-size: 12px;
          margin-right: 20px; }
      .new-job .header .header-functionality .btn {
        padding: 10px 15px;
        min-width: 140px; }
      .new-job .header .header-functionality .bulk-actions {
        display: flex;
        align-items: center; }
        .new-job .header .header-functionality .bulk-actions .bulk-button {
          margin-right: 30px;
          margin-top: 4px; }
    .new-job .header .page-title {
      border: none; }
  .new-job .back-button-container {
    padding: 20px;
    text-align: right; }
  .new-job .links {
    flex: 1 1 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    .new-job .links-container {
      border-radius: 8px;
      background-color: #ffffff;
      padding: 20px;
      box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.3); }
    .new-job .links .link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 19px 40px;
      border-radius: 5px;
      background-color: #eef3f5;
      border: solid 3px #eef3f5;
      max-width: 560px;
      color: #000000;
      text-decoration: none;
      transition: box-shadow 0.2s ease-in-out; }
      .new-job .links .link img {
        margin-right: 40px; }
        @media screen and (max-width: 480px) {
          .new-job .links .link img {
            width: 45px; } }
      .new-job .links .link:first-of-type {
        margin-bottom: 15px; }
      .new-job .links .link:hover {
        border-color: #3431AC; }
      .new-job .links .link h3 {
        font-size: 16px;
        font-weight: bold;
        color: #383838;
        margin-bottom: 10px; }
      .new-job .links .link div {
        font-size: 12px;
        line-height: 1.67;
        color: #a0a0a0; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.job-owner {
  overflow-wrap: break-word; }

/* Settings tab: page background only — tab bar uses default `.jobs .tabs-opening` styles */
.jobs.jobs--settings {
  background: #f9fafb; }

.jobs {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column; }
  .jobs .table-container {
    height: auto;
    background: #fff;
    overflow: hidden; }
    .jobs .table-container .table-actions {
      position: relative; }
      .jobs .table-container .table-actions .dropdown__trigger {
        display: flex;
        width: 20px;
        height: 20px;
        justify-content: center;
        align-items: center;
        cursor: pointer; }
      .jobs .table-container .table-actions .dropdown__content {
        background-color: #ffffff;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        z-index: 1111111;
        width: 160px; }
        .jobs .table-container .table-actions .dropdown__content ul {
          list-style-type: none; }
        .jobs .table-container .table-actions .dropdown__content li {
          font-size: 13px;
          font-weight: 400;
          line-height: 2.4;
          color: #374151;
          padding: 0 18px;
          border-bottom: 1px solid #f0f1f5;
          white-space: nowrap;
          cursor: pointer;
          transition: background-color 0.15s ease; }
          .jobs .table-container .table-actions .dropdown__content li:hover {
            background-color: #f9fafb; }
          .jobs .table-container .table-actions .dropdown__content li:last-of-type {
            border: none; }
    .jobs .table-container .table-checkbox {
      position: absolute;
      opacity: 0;
      margin: 0;
      width: 18px;
      height: 18px; }
      .jobs .table-container .table-checkbox + label {
        position: relative;
        cursor: pointer;
        padding: 0; }
      .jobs .table-container .table-checkbox + label:before {
        content: '';
        display: inline-block;
        vertical-align: text-top;
        width: 18px;
        height: 18px;
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 4px;
        transition: background-color 0.15s ease, border-color 0.15s ease; }
      .jobs .table-container .table-checkbox:checked + label:before {
        background: #3431AC;
        border-color: #3431AC; }
      .jobs .table-container .table-checkbox:checked + label:after {
        content: '';
        position: absolute;
        left: 5px;
        top: 9px;
        background: white;
        width: 2px;
        height: 2px;
        box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
        transform: rotate(45deg); }
    .jobs .table-container .sort-icon {
      display: inline-block;
      vertical-align: middle;
      font-size: 10px;
      margin-left: 10px;
      color: #3431AC; }
      .jobs .table-container .sort-icon.up {
        transform: rotate(180deg); }
    .jobs .table-container .order-position {
      display: inline-block;
      padding: 3px 5px;
      font-size: 10px;
      color: #3431AC; }
    .jobs .table-container .status {
      text-transform: capitalize; }
      .jobs .table-container .status.active {
        color: #2a2889; }
      .jobs .table-container .status.invite {
        color: #ffa722; }
    .jobs .table-container .select .Select-control .Select-value .Select-value-label {
      color: #c2c2c2 !important;
      font-weight: normal; }
    .jobs .table-container .select .Select-control .Select-arrow {
      color: #959595; }
  .jobs .loading-in-main {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    top: 0;
    left: 0; }
  .jobs .header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 30px;
    flex: 0 0 auto;
    background-color: #fff;
    min-height: 70px;
    box-shadow: 0 2px 5px 0 rgba(196, 206, 220, 0.5);
    position: relative;
    z-index: 1;
    /* Hosts AppSearchField in header row; input metrics live in AppSearchField.scss (+ app-search-field-input mixin) */ }
    .jobs .header .page-title {
      display: flex;
      align-items: center;
      min-width: 122px;
      padding: 10px 30px;
      border-right: 1px solid #e8e8e8; }
      .jobs .header .page-title h2 {
        font-size: 20px;
        font-weight: bold;
        color: #18332f; }
    .jobs .header .subtitle {
      text-align: center;
      margin-top: 20px;
      color: #414141; }
    .jobs .header .about-roles {
      text-align: center;
      margin-top: 25px; }
    .jobs .header .search-block {
      flex: 1 1 auto;
      min-width: 0;
      width: 100%;
      display: block;
      padding: 10px 30px; }
    .jobs .header .header-functionality {
      border-left: 1px solid #e8e8e8;
      display: flex;
      align-items: center;
      padding: 0 30px; }
      .jobs .header .header-functionality .bulk-select-wrapper {
        display: flex;
        align-items: center;
        border-left: 1px solid #e8e8e8;
        height: 100%;
        padding-left: 30px; }
        .jobs .header .header-functionality .bulk-select-wrapper .Select {
          flex: 0 0 auto;
          width: 170px; }
        .jobs .header .header-functionality .bulk-select-wrapper .select-label {
          color: #a5adac;
          font-size: 12px;
          margin-right: 20px; }
      .jobs .header .header-functionality .btn {
        padding: 10px 15px;
        min-width: 140px; }
      .jobs .header .header-functionality .bulk-actions {
        display: flex;
        align-items: center; }
        .jobs .header .header-functionality .bulk-actions .bulk-button {
          margin-right: 30px;
          margin-top: 4px; }
  .jobs .job-title-cell {
    word-wrap: break-word;
    margin: 0; }
  .jobs .tabs-opening {
    padding-top: 27px; }
    .jobs .tabs-opening .rc-tabs-tab {
      display: inline-block;
      padding: 0 15px 10px;
      cursor: pointer;
      color: #959595;
      margin-right: 20px; }
    .jobs .tabs-opening .rc-tabs-tab-active {
      color: #444444;
      border-bottom: 3px solid #3431AC; }
    .jobs .tabs-opening .rc-tabs-nav-wrap {
      border-bottom: 1px solid #e2e2e2; }
      .jobs .tabs-opening .rc-tabs-nav-wrap .rc-tabs-nav-scroll {
        padding-left: 25px;
        padding-right: 25px; }
    @media (max-width: 540px) {
      .jobs .tabs-opening {
        padding-top: 12px;
        box-shadow: 0px 4px 4px rgba(147, 157, 177, 0.15);
        background: #ffffff; }
        .jobs .tabs-opening .rc-tabs-tab {
          padding: 0 2px 10px;
          margin-right: 20px; } }
  .jobs .job-list-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-right: 10px; }
  .jobs .job-cont-sec {
    width: 100%; }
  .jobs .job-pagination-cont {
    width: 100%;
    margin-bottom: 30px; }
  .jobs .departments-container,
  .jobs .jobs-container {
    margin-top: 15px;
    padding: 0 52px 0 38px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%; }
    @media (max-width: 540px) {
      .jobs .departments-container,
      .jobs .jobs-container {
        padding: 0; } }
  .jobs .reward-container {
    margin-top: 15px;
    padding: 0 52px 0 38px;
    position: relative;
    display: flex;
    flex-direction: column; }
    @media (max-width: 540px) {
      .jobs .reward-container {
        padding: 0; } }
  .jobs .info-btn {
    margin-left: 10px;
    margin-top: 2px; }
    .jobs .info-btn svg {
      height: 16px;
      width: 16px; }
  .jobs .actions-container {
    display: flex;
    align-items: center; }
    @media (max-width: 540px) {
      .jobs .actions-container {
        padding: 0 10px;
        justify-content: center !important; }
        .jobs .actions-container button {
          width: calc(100vw - 60px); } }
    .jobs .actions-container .filter-icon {
      margin-bottom: 18px;
      margin-left: 8px;
      font-size: 30px;
      cursor: pointer; }
    .jobs .actions-container .filter-actions-cont {
      display: flex;
      align-items: center;
      margin-bottom: 18px; }
    .jobs .actions-container .department-actions,
    .jobs .actions-container .job-actions {
      position: relative;
      margin-bottom: 18px;
      display: flex;
      margin-left: 5px; }
      .jobs .actions-container .department-actions .dropdown__trigger,
      .jobs .actions-container .job-actions .dropdown__trigger {
        display: flex;
        width: 20px;
        height: 20px;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        margin: auto; }
      .jobs .actions-container .department-actions .dropdown__content,
      .jobs .actions-container .job-actions .dropdown__content {
        background-color: #ffffff;
        box-shadow: 0px 4px 10px 0px #0000001a;
        border-radius: 4px;
        z-index: 1111111;
        width: 150px; }
        .jobs .actions-container .department-actions .dropdown__content ul,
        .jobs .actions-container .job-actions .dropdown__content ul {
          list-style-type: none; }
        .jobs .actions-container .department-actions .dropdown__content li,
        .jobs .actions-container .job-actions .dropdown__content li {
          font-size: 12px;
          line-height: 300.5%;
          color: rgba(25, 25, 25, 0.6);
          padding: 0 30px 0 18px;
          border-bottom: 1px solid #e2e2e2;
          cursor: pointer; }
          .jobs .actions-container .department-actions .dropdown__content li:last-of-type,
          .jobs .actions-container .job-actions .dropdown__content li:last-of-type {
            border: none; }
  .jobs .search-block {
    width: 100%;
    min-width: 0;
    position: relative;
    margin-bottom: 18px; }
  .jobs .functionality-block {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px; }
    @media (max-width: 960px) {
      .jobs .functionality-block {
        display: none; } }
    .jobs .functionality-block .referral-block {
      display: flex;
      align-items: center; }
    .jobs .functionality-block .information-btn {
      position: relative; }
      .jobs .functionality-block .information-btn .information-icon {
        color: #959595;
        margin: 0 12px; }
      .jobs .functionality-block .information-btn .information-text {
        background-color: white;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        padding: 25% 35%;
        font-size: 12px;
        color: #aaaaaa;
        position: absolute;
        bottom: 200%;
        right: -50%;
        width: 170px;
        visibility: hidden; }
      .jobs .functionality-block .information-btn .information-text:before {
        content: '';
        width: 0px;
        height: 0px;
        position: absolute;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid white;
        border-bottom: 10px solid transparent;
        bottom: -20px;
        right: 20%; }
      .jobs .functionality-block .information-btn:hover .information-text {
        visibility: visible; }
    .jobs .functionality-block .button-group {
      display: flex;
      align-items: center; }
      .jobs .functionality-block .button-group .btn {
        margin-right: 12px;
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center; }
        .jobs .functionality-block .button-group .btn svg {
          margin-right: 16px; }
    .jobs .functionality-block .referral-link {
      position: relative; }
      .jobs .functionality-block .referral-link input {
        padding: 8px 60px 8px 10px;
        border-radius: 4px;
        border: none;
        line-height: 24px;
        color: #00000059;
        width: 300px;
        background-color: rgba(0, 0, 0, 0.03); }
      .jobs .functionality-block .referral-link label {
        position: absolute;
        font-size: 11px;
        line-height: 13px;
        font-weight: 500;
        color: #aaaaaa;
        top: -6px;
        left: 10px; }
      .jobs .functionality-block .referral-link .copy-button {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        padding: 10px 15px;
        min-width: -moz-fit-content;
        min-width: fit-content;
        display: inline-flex;
        justify-content: center;
        align-items: center; }
  .jobs .actions-block {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    margin-bottom: 18px; }
    .jobs .actions-block .option-label {
      display: flex;
      align-items: center;
      color: #959595;
      font-weight: 500;
      font-size: 13px;
      line-height: 18px; }
      .jobs .actions-block .option-label svg {
        margin-right: 5px;
        width: 18px; }
      .jobs .actions-block .option-label:hover {
        color: #3431AC; }
    .jobs .actions-block .btn-action {
      padding: 10px 0;
      color: #959595;
      display: flex;
      align-items: center;
      margin-right: 25px;
      min-width: unset;
      transition: all ease 0.2s; }
      .jobs .actions-block .btn-action svg {
        margin-right: 5px; }
      .jobs .actions-block .btn-action:hover {
        color: #3431AC; }
    .jobs .actions-block .seperator {
      margin: 10px 25px 10px 0;
      border-left: 1px solid;
      color: #c4c4c4; }
  .jobs .filter-icon-cont {
    position: relative;
    height: 40px;
    width: 30px;
    margin: 0;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer; }
    .jobs .filter-icon-cont .filters-count {
      color: white;
      background-color: #3431AC;
      border-radius: 50%;
      padding: 2px 5px;
      font-size: 12px;
      position: absolute;
      top: -8px;
      right: -8px; }
    .jobs .filter-icon-cont .filters-icon {
      height: 15px !important;
      width: 21px !important; }
  .jobs .dept-filters {
    margin-bottom: 18px; }
  .jobs .table-container table {
    width: 100%; }
    .jobs .table-container table td.select .Select-control .Select-value .Select-value-label {
      color: #808080; }

.select-member-info {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.history_botton {
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer; }
  .history_botton:hover {
    background-color: #eeeeee; }

.job-history-parent {
  width: 100%;
  height: 87%;
  text-align: center;
  background: #f8f9fc; }
  .job-history-parent .job-history-child {
    margin: auto;
    width: 59%;
    padding: 10px;
    text-align: left; }
    .job-history-parent .job-history-child .jobs-history-wrapper {
      padding: 20px;
      border-radius: 5px;
      background-color: #ffffff;
      display: flex;
      flex-direction: column; }
      .job-history-parent .job-history-child .jobs-history-wrapper div {
        display: flex;
        justify-content: space-between; }
        .job-history-parent .job-history-child .jobs-history-wrapper div h1 {
          font-size: 20px;
          font-weight: 700;
          letter-spacing: 0em;
          color: #444444; }
        .job-history-parent .job-history-child .jobs-history-wrapper div button {
          font-size: 12px !important;
          font-weight: 400 !important;
          text-decoration: underline !important;
          cursor: pointer !important;
          color: #9b9b9b; }
      .job-history-parent .job-history-child .jobs-history-wrapper .history-child-wrapper:last-child {
        border: none; }
      .job-history-parent .job-history-child .jobs-history-wrapper .history-child-wrapper {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #eeeeee;
        padding: 15px 0px;
        position: relative; }
        .job-history-parent .job-history-child .jobs-history-wrapper .history-child-wrapper .file-name-heading-job-import {
          overflow: hidden;
          white-space: nowrap;
          text-overflow: ellipsis;
          width: 300px; }
        .job-history-parent .job-history-child .jobs-history-wrapper .history-child-wrapper .imported-csv-url {
          color: #000;
          text-decoration: none; }
          .job-history-parent .job-history-child .jobs-history-wrapper .history-child-wrapper .imported-csv-url:hover {
            text-decoration: underline; }
        .job-history-parent .job-history-child .jobs-history-wrapper .history-child-wrapper .file-date-import-history {
          display: list-item;
          list-style-position: inside; }
        .job-history-parent .job-history-child .jobs-history-wrapper .history-child-wrapper div {
          display: flex;
          flex-direction: row; }
          .job-history-parent .job-history-child .jobs-history-wrapper .history-child-wrapper div div {
            padding: 10px 5px;
            align-items: center;
            height: 39px; }
            .job-history-parent .job-history-child .jobs-history-wrapper .history-child-wrapper div div h2 {
              font-size: 14px;
              font-weight: 500;
              color: #000; }
            .job-history-parent .job-history-child .jobs-history-wrapper .history-child-wrapper div div h5 {
              font-size: 12px;
              font-weight: 400;
              color: #444444;
              padding-left: 10px; }
            .job-history-parent .job-history-child .jobs-history-wrapper .history-child-wrapper div div span {
              color: #ea5506;
              font-family: Roboto;
              font-size: 12px;
              font-style: italic;
              font-weight: 600;
              padding-left: 6px; }
            .job-history-parent .job-history-child .jobs-history-wrapper .history-child-wrapper div div .import-complete {
              color: #3431AC; }
            .job-history-parent .job-history-child .jobs-history-wrapper .history-child-wrapper div div .import-Inprogress {
              color: #808080; }
        .job-history-parent .job-history-child .jobs-history-wrapper .history-child-wrapper .success-entries,
        .job-history-parent .job-history-child .jobs-history-wrapper .history-child-wrapper .partial-success {
          margin: 0px;
          font-style: italic;
          font-size: 12px;
          color: #000;
          margin-bottom: 5px; }
        .job-history-parent .job-history-child .jobs-history-wrapper .history-child-wrapper .success-entries {
          padding-left: 5px; }
        .job-history-parent .job-history-child .jobs-history-wrapper .history-child-wrapper .failed-job-log {
          font-weight: 600 !important;
          margin-left: auto;
          size: 12px;
          font-style: italic;
          margin-right: 0;
          position: absolute;
          right: 0;
          bottom: 13%; }
        .job-history-parent .job-history-child .jobs-history-wrapper .history-child-wrapper .error-child-wrapper {
          display: flex;
          flex-direction: column;
          padding: 0px 5px; }
          .job-history-parent .job-history-child .jobs-history-wrapper .history-child-wrapper .error-child-wrapper h4,
          .job-history-parent .job-history-child .jobs-history-wrapper .history-child-wrapper .error-child-wrapper .failed-job-log {
            font-style: italic;
            font-weight: 400;
            color: #ea5506; }
          .job-history-parent .job-history-child .jobs-history-wrapper .history-child-wrapper .error-child-wrapper h4 {
            font-size: 12px; }
          .job-history-parent .job-history-child .jobs-history-wrapper .history-child-wrapper .error-child-wrapper .failed-job-log {
            font-size: 14px; }
          .job-history-parent .job-history-child .jobs-history-wrapper .history-child-wrapper .error-child-wrapper ul {
            margin-bottom: 10px; }
            .job-history-parent .job-history-child .jobs-history-wrapper .history-child-wrapper .error-child-wrapper ul li {
              font-size: 12px;
              font-style: italic;
              font-weight: 400;
              color: #ea5506;
              padding: 4px 0px 0px 17px; }
            .job-history-parent .job-history-child .jobs-history-wrapper .history-child-wrapper .error-child-wrapper ul li:first-child {
              padding-top: 5px; }
          .job-history-parent .job-history-child .jobs-history-wrapper .history-child-wrapper .error-child-wrapper .failed-entries {
            font-size: 12px;
            font-style: italic;
            font-weight: 400;
            color: #ea5506;
            margin-top: unset;
            margin-bottom: 5px;
            padding: 0px 0px 0px 0px; }

.job-actions-option-text {
  margin-left: 10px; }

.job-title-container {
  display: flex;
  align-items: center; }

.integration-favicon-logo {
  width: 12px;
  margin-left: 5px; }
.li-import-root {
  background: #f9fafb;
  min-height: calc(100vh - 120px);
  padding: 32px 24px;
  display: flex;
  justify-content: center; }

.li-import-content {
  width: 100%;
  max-width: 720px; }

.li-import-card {
  background: #ffffff;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 20px; }
  .li-import-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    border-bottom: 1px solid #f0f1f3;
    background: #fafbfc; }
  .li-import-card__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #eeedfc 0%, #dddafa 100%);
    color: #3431ac;
    display: flex;
    align-items: center;
    justify-content: center; }
  .li-import-card__title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.4; }
  .li-import-card__body {
    padding: 28px; }

.li-import-step {
  display: flex;
  gap: 20px; }
  .li-import-step__badge {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eeedfc 0%, #dddafa 100%);
    color: #3431ac;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px; }
  .li-import-step__content {
    flex: 1;
    min-width: 0; }
  .li-import-step__title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 6px 0 0; }

.li-import-divider {
  height: 1px;
  background: #f0f1f3;
  margin: 24px 0;
  margin-left: 52px; }

.li-import-url-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 16px; }
  .li-import-url-row .MuiTypography-root {
    font-size: 13px;
    color: #9ca3af; }
  .li-import-url-row .MuiInputAdornment-root {
    margin-right: 0; }

.li-import-url-input {
  flex: 1;
  margin: 0 !important; }
  .li-import-url-input .MuiOutlinedInput-root {
    border-radius: 8px;
    font-size: 14px; }
  .li-import-url-input .MuiOutlinedInput-notchedOutline {
    border-color: #d1d5db; }
  .li-import-url-input .MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline {
    border-color: #9ca3af; }
  .li-import-url-input .MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
    border-color: #3431ac; }
  .li-import-url-input .MuiInputBase-input {
    font-size: 14px;
    color: #374151; }
    .li-import-url-input .MuiInputBase-input:-webkit-autofill, .li-import-url-input .MuiInputBase-input:-webkit-autofill:hover, .li-import-url-input .MuiInputBase-input:-webkit-autofill:focus {
      -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
      -webkit-text-fill-color: #374151 !important;
      -webkit-transition: background-color 5000s ease-in-out 0s;
      transition: background-color 5000s ease-in-out 0s; }

.li-import-btn {
  background: #3431ac !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  padding: 8px 20px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  white-space: nowrap;
  display: flex !important;
  gap: 8px !important;
  min-height: 40px; }
  .li-import-btn svg {
    width: 16px;
    height: 16px; }
  .li-import-btn path {
    fill: #ffffff; }
  .li-import-btn:disabled {
    background: #e5e7eb !important;
    color: #9ca3af !important; }
    .li-import-btn:disabled path {
      fill: #9ca3af; }
  .li-import-btn--finish {
    margin-left: auto; }

.li-import-empty {
  font-size: 14px;
  color: #9ca3af;
  margin: 12px 0 0;
  font-style: italic; }

.li-import-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px; }

.li-import-select-all {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0; }
  .li-import-select-all .MuiCheckbox-root {
    padding: 0;
    color: #3431ac; }
  .li-import-select-all .MuiCheckbox-colorPrimary.Mui-checked {
    color: #3431ac; }
  .li-import-select-all__label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0; }

.li-import-section-label {
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 20px 0 8px; }

.li-import-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5; }
  .li-import-row:last-child {
    border-bottom: none; }
  .li-import-row .MuiCheckbox-root {
    padding: 0;
    color: #3431ac; }
  .li-import-row .MuiCheckbox-colorPrimary.Mui-checked {
    color: #3431ac; }
  .li-import-row__label {
    font-size: 14px;
    color: #374151;
    margin: 0;
    line-height: 1.5;
    word-break: break-word; }
  .li-import-row__image {
    border-radius: 8px;
    -o-object-fit: cover;
       object-fit: cover;
    border: 1px solid #e8eaed; }
    .li-import-row__image--avatar {
      width: 64px;
      height: 64px; }
    .li-import-row__image--banner {
      width: 200px;
      height: 50px; }

@media (max-width: 640px) {
  .li-import-root {
    padding: 16px; }
  .li-import-card__body {
    padding: 20px; }
  .li-import-url-row {
    flex-direction: column; }
  .li-import-btn {
    width: 100% !important;
    justify-content: center !important; }
  .li-import-divider {
    margin-left: 0; } }
.org-edit-root {
  background: #f9fafb;
  min-height: calc(100vh - 120px);
  padding: 32px 24px;
  display: flex;
  justify-content: center; }

.org-edit-content {
  width: 100%;
  max-width: 720px; }

.org-edit-banner {
  position: relative;
  margin: 20px 0 40px; }
  .org-edit-banner__cover {
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    position: relative; }
  .org-edit-banner__cover-img {
    width: 100%;
    height: 100%;
    -o-object-fit: fill;
       object-fit: fill;
    display: block; }
  .org-edit-banner__cover-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2; }
  .org-edit-banner__edit-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    cursor: pointer;
    color: #374151;
    transition: all 0.15s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); }
    .org-edit-banner__edit-btn:hover {
      background: #ffffff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); }
  .org-edit-banner__dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 4px);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    overflow: hidden;
    z-index: 10; }
    .org-edit-banner__dropdown ul {
      list-style: none;
      margin: 0;
      padding: 4px; }
    .org-edit-banner__dropdown li {
      border-bottom: none; }
  .org-edit-banner__dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 13px;
    color: #374151;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.1s ease; }
    .org-edit-banner__dropdown-item:hover {
      background: #f3f4f6; }
    .org-edit-banner__dropdown-item--delete {
      color: #dc2626; }
      .org-edit-banner__dropdown-item--delete:hover {
        background: #fef2f2; }
  .org-edit-banner__avatar {
    position: absolute;
    bottom: -28px;
    left: 24px;
    z-index: 2; }
  .org-edit-banner__avatar-inner {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    border: 4px solid #ffffff;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
    position: relative; }
    .org-edit-banner__avatar-inner img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      display: block; }
  .org-edit-banner__camera {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }

.org-edit-linkedin {
  background: #ffffff;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 20px; }
  .org-edit-linkedin__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; }
  .org-edit-linkedin__title {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin: 0 0 8px; }
  .org-edit-linkedin__close {
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.15s ease; }
    .org-edit-linkedin__close:hover {
      opacity: 1; }
  .org-edit-linkedin__divider {
    height: 1px;
    background: #f0f1f3;
    margin: 0 0 12px; }
  .org-edit-linkedin__body {
    display: flex;
    align-items: center;
    gap: 12px; }
  .org-edit-linkedin__text {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    flex: 1; }
  .org-edit-linkedin__btn {
    background: #3431ac !important;
    color: #ffffff !important;
    padding: 8px 20px !important;
    border-radius: 8px !important;
    text-transform: capitalize !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    display: flex !important;
    gap: 8px !important;
    white-space: nowrap; }
    .org-edit-linkedin__btn path {
      fill: #ffffff; }

.org-edit-import-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px; }

.org-edit-import-btn {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 8px !important;
  padding: 8px 20px !important;
  color: #6b7280 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  transition: all 0.15s ease; }
  .org-edit-import-btn:hover {
    border-color: #d1d5db !important;
    background: #f9fafb !important; }

.org-edit-section {
  background: #ffffff;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  overflow: visible; }
  .org-edit-section__header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    border-bottom: 1px solid #f0f1f3;
    background: #fafbfc;
    border-radius: 12px 12px 0 0; }
  .org-edit-section__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #eeedfc 0%, #dddafa 100%);
    color: #3431ac;
    display: flex;
    align-items: center;
    justify-content: center; }
  .org-edit-section__title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.4; }
  .org-edit-section__body {
    padding: 24px 28px; }

.org-edit-unsaved-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background-color: #e3f2fd;
  border-bottom: 1px solid #90caf9;
  font-size: 14px;
  color: #1976d2; }
  .org-edit-unsaved-banner__icon {
    font-size: 20px;
    color: #1976d2;
    flex-shrink: 0; }

.org-edit-form-group-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
  margin: 16px 0 12px; }
  .org-edit-form-group-label:first-child {
    margin-top: 0; }

.org-edit-form-field {
  margin-bottom: 16px; }
  .org-edit-form-field:last-child {
    margin-bottom: 0; }
  .org-edit-form-field .MuiFormControl-root,
  .org-edit-form-field .MuiTextField-root {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .org-edit-form-field .input {
    width: 100%; }
    .org-edit-form-field .input .MuiInputBase-input {
      font-size: 14px;
      color: #374151;
      padding: 10.5px 14px; }
      .org-edit-form-field .input .MuiInputBase-input:-webkit-autofill, .org-edit-form-field .input .MuiInputBase-input:-webkit-autofill:hover, .org-edit-form-field .input .MuiInputBase-input:-webkit-autofill:focus {
        -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
        -webkit-text-fill-color: #374151 !important;
        -webkit-transition: background-color 5000s ease-in-out 0s;
        transition: background-color 5000s ease-in-out 0s; }
    .org-edit-form-field .input .MuiOutlinedInput-root {
      border-radius: 8px; }
    .org-edit-form-field .input .MuiInputLabel-root {
      font-size: 14px;
      color: #9ca3af;
      transform: translate(14px, 11px) scale(1); }
      .org-edit-form-field .input .MuiInputLabel-root.MuiInputLabel-shrink {
        transform: translate(14px, -6px) scale(0.75);
        font-size: 16px; }
    .org-edit-form-field .input .MuiOutlinedInput-notchedOutline {
      border-color: #d1d5db; }
    .org-edit-form-field .input .MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline {
      border-color: #9ca3af; }
  .org-edit-form-field .redux-select-container {
    width: 100%; }
    .org-edit-form-field .redux-select-container .Select-control {
      border: 1px solid #d1d5db;
      border-radius: 8px;
      height: 40px; }
      .org-edit-form-field .redux-select-container .Select-control:hover {
        border-color: #9ca3af; }
      .org-edit-form-field .redux-select-container .Select-control .Select-value {
        line-height: 38px;
        padding-left: 14px; }
        .org-edit-form-field .redux-select-container .Select-control .Select-value .Select-value-label {
          font-size: 14px;
          color: #374151; }
      .org-edit-form-field .redux-select-container .Select-control .Select-placeholder {
        line-height: 38px;
        padding-left: 14px;
        font-size: 14px;
        color: #9ca3af; }
      .org-edit-form-field .redux-select-container .Select-control .Select-input {
        height: 38px;
        border-radius: 8px !important; }
        .org-edit-form-field .redux-select-container .Select-control .Select-input input {
          font-size: 14px;
          color: #374151;
          line-height: 38px;
          padding: 0; }
    .org-edit-form-field .redux-select-container .Select.is-focused > .Select-control {
      border-color: #3431ac;
      box-shadow: none; }
    .org-edit-form-field .redux-select-container .Select-menu-outer {
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      margin-top: 4px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      z-index: 20; }
      .org-edit-form-field .redux-select-container .Select-menu-outer .Select-option {
        font-size: 14px;
        color: #374151;
        padding: 10px 14px; }
        .org-edit-form-field .redux-select-container .Select-menu-outer .Select-option.is-focused {
          background: #f0effc; }
        .org-edit-form-field .redux-select-container .Select-menu-outer .Select-option.is-selected {
          background: #eeedfc;
          color: #3431ac; }

.org-edit-perks .redux-select-container .Select--multi .Select-control {
  border-radius: 8px !important;
  box-shadow: none !important;
  min-height: 40px; }
  .org-edit-perks .redux-select-container .Select--multi .Select-control:hover {
    border-color: #9ca3af !important; }

.org-edit-perks .redux-select-container .Select--multi.is-focused > .Select-control {
  border-color: #3431ac !important; }

.org-edit-perks .redux-select-container .Select--multi .Select-placeholder {
  font-size: 14px;
  color: #9ca3af;
  padding-left: 10px; }

.org-edit-perks .redux-select-container .Select--multi .Select-input input {
  font-size: 14px;
  color: #374151; }

.org-edit-perks .redux-select-container .Select--multi .Select-value {
  position: relative !important;
  background: rgba(52, 49, 172, 0.04) !important;
  border: 1px solid #3431ac !important;
  border-radius: 25px !important;
  color: #3431ac;
  display: inline-flex !important;
  align-items: center !important;
  font-size: 13px;
  padding: 7px 36px 7px 14px !important;
  margin: 6px 4px 6px 0;
  line-height: 1.4; }

.org-edit-perks .redux-select-container .Select--multi .Select-value-label {
  font-size: 13px;
  color: #3431ac !important;
  padding: 0 !important;
  line-height: 16px; }

.org-edit-perks .redux-select-container .Select--multi .Select-value-icon {
  position: absolute !important;
  width: 20px !important;
  height: 20px !important;
  background-color: #3431ac !important;
  top: 50% !important;
  right: 8px !important;
  margin-top: -10px !important;
  color: #fff !important;
  font-weight: bold !important;
  text-align: center !important;
  border-radius: 10px !important;
  padding: 0 !important;
  border: none !important;
  font-size: 14px !important;
  cursor: pointer !important;
  line-height: 20px !important;
  float: none; }
  .org-edit-perks .redux-select-container .Select--multi .Select-value-icon:hover {
    background-color: #2a28a0 !important;
    color: #fff !important; }

.org-edit-perks .redux-select-container .Select--multi .Select-menu-outer {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-top: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  z-index: 20; }
  .org-edit-perks .redux-select-container .Select--multi .Select-menu-outer .Select-option {
    font-size: 14px;
    color: #374151;
    padding: 10px 14px; }
    .org-edit-perks .redux-select-container .Select--multi .Select-menu-outer .Select-option.is-focused {
      background: #f3f4f6; }
    .org-edit-perks .redux-select-container .Select--multi .Select-menu-outer .Select-option.is-selected {
      background: #eeedfc;
      color: #3431ac; }

.org-edit-location .location-select-container {
  width: 100%; }
  .org-edit-location .location-select-container .MuiTextField-root {
    width: 100%;
    margin: 0 !important; }
  .org-edit-location .location-select-container .MuiOutlinedInput-root {
    border-radius: 8px;
    font-size: 14px; }
  .org-edit-location .location-select-container .MuiOutlinedInput-notchedOutline {
    border-color: #d1d5db; }
  .org-edit-location .location-select-container .MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline {
    border-color: #9ca3af; }
  .org-edit-location .location-select-container .MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
    border-color: #3431ac; }
  .org-edit-location .location-select-container .MuiInputLabel-root {
    color: #9ca3af !important;
    font-size: 14px; }
  .org-edit-location .location-select-container .MuiInputLabel-root.Mui-focused {
    color: #3431ac !important; }
  .org-edit-location .location-select-container .suggestions-cont {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-top: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden; }
  .org-edit-location .location-select-container .suggestion-item {
    padding: 10px 14px;
    font-size: 14px;
    color: #374151;
    border-radius: 0; }
  .org-edit-location .location-select-container .suggestion-item--active {
    background: #f0effc; }

.org-edit-rich-text__label {
  display: block;
  position: relative;
  top: 8px;
  left: 10px;
  background-color: #fff;
  z-index: 1;
  padding: 0 3px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.4px;
  color: #9ca3af;
  width: -moz-fit-content;
  width: fit-content; }

.org-edit-rich-text .text-editor {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  overflow: hidden; }
  .org-edit-rich-text .text-editor .ql-toolbar {
    border: none;
    border-bottom: 1px solid #f0f1f3;
    background: #fafbfc; }
  .org-edit-rich-text .text-editor .ql-container {
    border: none;
    font-size: 14px;
    min-height: 120px; }
  .org-edit-rich-text .text-editor .ql-editor {
    color: #374151;
    line-height: 1.7; }

.org-edit-tags-hint {
  font-style: italic;
  font-size: 13px;
  color: #9ca3af;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 0 0 8px 8px;
  border-top: 0;
  margin-top: -4px; }

.org-edit-sticky-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
  position: sticky;
  bottom: 0;
  z-index: 10;
  margin-top: 24px; }

.org-edit-cancel-btn {
  background: none;
  border: none;
  padding: 8px 20px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.15s ease; }
  .org-edit-cancel-btn:hover {
    color: #374151;
    background: #f3f4f6; }

.org-edit-save-btn {
  background: #3431ac;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease; }
  .org-edit-save-btn:hover {
    background: #2a279a;
    box-shadow: 0 2px 8px rgba(52, 49, 172, 0.3); }
  .org-edit-save-btn:active {
    transform: translateY(1px); }

@media (max-width: 640px) {
  .org-edit-root {
    padding: 16px; }
  .org-edit-section__header {
    padding: 20px; }
  .org-edit-section__body {
    padding: 20px; }
  .org-edit-banner__cover {
    height: 120px; } }
.org-profile-root {
  max-width: 720px;
  margin: 0 auto;
  padding: 0px !important; }

.org-profile-section {
  background: #ffffff;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  overflow: hidden; }
  .org-profile-section__header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    border-bottom: 1px solid #f0f1f3;
    background: #fafbfc; }
  .org-profile-section__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #eeedfc 0%, #dddafa 100%);
    color: #3431ac;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px; }
  .org-profile-section__header-text {
    flex: 1;
    min-width: 0; }
  .org-profile-section__title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 4px;
    line-height: 1.4; }
  .org-profile-section__subtitle {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
    max-width: 520px; }
  .org-profile-section__body {
    padding: 24px 28px; }

.org-profile-edit-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #3431ac;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
  margin-top: 2px; }
  .org-profile-edit-btn:hover {
    background: #f5f3ff;
    border-color: #c7c6e8;
    color: #3431ac;
    text-decoration: none; }

.org-profile-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px; }

.org-profile-field {
  display: flex;
  flex-direction: column;
  gap: 4px; }
  .org-profile-field__label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9ca3af;
    line-height: 1.5; }
  .org-profile-field__value {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.5;
    word-break: break-word; }
  .org-profile-field__link {
    font-size: 14px;
    font-weight: 500;
    color: #3431ac;
    line-height: 1.5;
    text-decoration: none;
    word-break: break-all; }
    .org-profile-field__link:hover {
      text-decoration: underline;
      color: #2a279a; }

.org-profile-divider {
  width: 100%;
  height: 1px;
  background: #f0f1f3;
  margin: 24px 0; }

.org-profile-about__content {
  margin-top: 8px; }
  .org-profile-about__content .ql-container.ql-bubble {
    font-size: 14px; }
  .org-profile-about__content .ql-editor {
    padding: 0;
    color: #374151;
    line-height: 1.7;
    font-size: 14px; }
    .org-profile-about__content .ql-editor p {
      color: #374151;
      font-size: 14px; }
    .org-profile-about__content .ql-editor img {
      max-width: 100%;
      border-radius: 8px; }

.org-profile-media {
  border-radius: 8px;
  overflow: hidden; }
  .org-profile-media iframe {
    display: block;
    border-radius: 8px; }

.org-profile-perks__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px; }

.org-profile-perks__tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #3431ac;
  background: #f5f3ff;
  border: 1px solid #3431ac;
  border-radius: 20px;
  letter-spacing: 0.03em; }

@media (max-width: 640px) {
  .org-profile-fields {
    grid-template-columns: 1fr;
    gap: 16px; }
  .org-profile-section__header {
    padding: 20px; }
  .org-profile-section__body {
    padding: 20px; }
  .org-profile-edit-btn {
    padding: 6px 12px;
    font-size: 12px; } }
.sub-heading-link {
  font-weight: bold;
  font-size: 19.5px;
  color: black;
  text-decoration: none; }
.AddNetwork__container {
  padding: 18px 30px; }
  .AddNetwork__container .title {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #444444; }
  .AddNetwork__container .text {
    font-size: 14px;
    line-height: 18px;
    color: #444444; }
  .AddNetwork__container .actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0px; }
    .AddNetwork__container .actions .linked-btn {
      text-transform: unset !important;
      min-height: 34px;
      min-width: 119px;
      padding: 8px; }
      .AddNetwork__container .actions .linked-btn.left {
        margin-left: 10px; }
      .AddNetwork__container .actions .linked-btn svg {
        height: 18px;
        width: 18px; }
      .AddNetwork__container .actions .linked-btn .btn-text {
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 700;
        font-size: 14px;
        line-height: 14px;
        text-align: center;
        color: #878787;
        margin: 0px 24px; }
    .AddNetwork__container .actions .btn-back {
      text-transform: unset !important;
      max-width: 160px;
      height: 40px;
      width: 100%;
      background: #FFFFFF;
      border: 1px solid #EEEEEE;
      border-radius: 4px;
      color: #000000;
      margin-right: 10px; }
      .AddNetwork__container .actions .btn-back svg {
        margin-right: 15px; }
.save-rule {
  background-color: #3431AC;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.2px;
  margin: 12px; }
  .save-rule .saveRuleIconImage {
    margin-right: 10px;
    vertical-align: bottom; }

.backIconImage {
  margin: 0px 20px; }

.reward-form .main {
  background: transparent;
  margin: 30px;
  border-radius: 5px;
  width: 50%;
  float: left; }
  .reward-form .main .field-switch-wrapper {
    margin-left: 33px;
    padding-left: 10px;
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid #cccccc;
    height: 50px;
    box-sizing: border-box;
    width: 90%; }
    .reward-form .main .field-switch-wrapper .title-field {
      float: left;
      padding-left: 10px;
      height: 48px;
      width: 80%;
      border-bottom: 0px; }
    .reward-form .main .field-switch-wrapper .activate-switch {
      padding: 14px;
      float: left;
      margin-left: 50px; }

.reward-form .invite-form.white-block {
  padding: 30px; }

.reward-form h2 {
  color: #000;
  padding: 30px;
  border-bottom: none; }

.reward-form .field-label {
  padding-bottom: 15px; }
  .reward-form .field-label h4 {
    color: #000;
    font-size: 18px; }

.reward-form .input {
  width: 100%; }

.reward-form .field-input {
  padding-bottom: 20px; }

.reward-form .columns-2 .field-input .value-input {
  width: 48%; }

.reward-form .columns-2 .field-input .redux-select-container {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  margin-left: 10px; }

.reward-form .functional-buttons {
  text-align: right; }

.main-right {
  background: #fff;
  margin: 30px;
  border-radius: 5px;
  width: 40%;
  float: left; }
  .main-right .table-header {
    border-radius: 5px;
    width: "100%";
    height: 70px;
    text-align: center;
    background: #3c4252; }
    .main-right .table-header .table-heading {
      padding-top: 20px;
      font-style: normal;
      font-weight: bold;
      font-size: 16px;
      line-height: 19px;
      letter-spacing: 0.2px;
      color: #ffffff; }
    .main-right .table-header .table-sub-heading {
      width: "50%";
      margin: auto;
      height: 16px;
      font-style: normal;
      font-weight: normal;
      font-size: 14px;
      line-height: 16px;
      letter-spacing: 0.2px;
      color: #ffffff; }
  .main-right .button-container {
    margin: 5px;
    text-align: right; }
  .main-right tbody tr {
    height: 50px; }
  .main-right tbody tr:nth-child(even) {
    background-color: #fafafa; }
  .main-right td {
    overflow-x: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 10px; }

.main-group-wrapper .redux-select-container .Select.light.Select--single {
  border: 1px solid #cccccc; }

.main-group-wrapper .redux-select-container .Select-control,
.main-group-wrapper .redux-select-container .Select-control:hover {
  border: 0px;
  box-shadow: none; }

.main-group-wrapper .condition-button {
  padding-left: 35px;
  float: left;
  margin-top: 30px;
  width: 100%; }
  .main-group-wrapper .condition-button .design {
    margin-right: 10px;
    background-color: #ffffff; }
  .main-group-wrapper .condition-button .addCondition {
    display: inline-block;
    height: 21px;
    width: 21px;
    border: 1px solid #27a933;
    border-radius: 100%;
    background: #27a933;
    color: #fff;
    margin-right: 10px;
    font-size: 14px;
    padding-top: 1.5px; }

.main-group-wrapper .info-text-wrapper {
  margin-top: 40px;
  width: 100%;
  display: inline-flex;
  margin-bottom: 40px; }
  .main-group-wrapper .info-text-wrapper .info-text {
    padding: 10px 10px 0px 0px;
    margin-left: 35px; }
  .main-group-wrapper .info-text-wrapper .info-text-end {
    padding: 10px 10px 0px 0px;
    margin-left: -10px; }

.main-group-wrapper .group-type-select {
  padding: 5px;
  margin-right: 25px;
  width: 120px;
  background: #ffffff;
  border-radius: 5px; }

.main-group-wrapper .separator-wrapper {
  width: 100%;
  height: 20px;
  margin: 15px 0px 15px 50px; }
  .main-group-wrapper .separator-wrapper .separator-text {
    float: left;
    padding-left: 30px;
    width: 10%;
    font-weight: bold;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: #808080; }
  .main-group-wrapper .separator-wrapper .separator-border-div {
    float: left;
    height: 10px;
    width: 70%;
    border-bottom: 2px solid #c4c4c4; }
.opening-unavailable {
  width: 80%;
  height: calc(100vh - 25rem);
  background: #FFF;
  margin: 120px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 20px;
  color: #000; }
  .opening-unavailable h3 {
    font-size: 18px;
    font-weight: 500; }
  .opening-unavailable p {
    text-align: center; }
.rewards-flex-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  color: black; }
  .rewards-flex-container .monetary-circle,
  .rewards-flex-container .exp-circle {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem; }
  .rewards-flex-container .monetary-circle {
    background-color: #22c76f47; }
  .rewards-flex-container .exp-circle {
    background-color: #f5c25c5c; }
  .rewards-flex-container .flex-column {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    margin-left: 10px;
    width: 5rem; }
  .rewards-flex-container .icon-column {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    margin-left: 20px; }
  .rewards-flex-container .reward-value {
    color: #aaa;
    margin-top: 3px; }
  .rewards-flex-container .tooltip-hover {
    width: 300px;
    font-size: 12px !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    padding: 25px !important; }
    .rewards-flex-container .tooltip-hover:hover {
      visibility: visible !important; }
  .rewards-flex-container .exp-reward-section {
    display: flex !important;
    align-items: center !important; }

.rewards-flex-container > div {
  display: flex;
  align-items: center; }
.resume-icon {
  color: #757575;
  padding: 2px 2px 2px 2px;
  border: 1px solid black;
  border-radius: 4px;
  width: 26px !important; }

.Strengthen-job-form-container .skills-placeholder-text {
  color: #727272; }

.Strengthen-job-form-container .question-input-label {
  margin-top: 15px;
  display: block; }

.Strengthen-job-form-container .success-image-conatiner {
  margin-bottom: 25px !important;
  margin-top: 48px !important; }
  .Strengthen-job-form-container .success-image-conatiner .success-heading {
    font-size: 24px;
    color: #444;
    margin-bottom: 10px;
    margin-top: 25px; }
  .Strengthen-job-form-container .success-image-conatiner .success-text {
    font-size: 14px;
    color: #444; }

.Strengthen-job-form-container .Select-multi-value-wrapper {
  margin-top: 5px; }
  .Strengthen-job-form-container .Select-multi-value-wrapper .Select-value {
    border-radius: 32px;
    background: #d3dae6;
    font-size: 12px;
    border: none;
    padding: 3px 15px 3px 8px; }
    .Strengthen-job-form-container .Select-multi-value-wrapper .Select-value .Select-value-label {
      color: #000; }
    .Strengthen-job-form-container .Select-multi-value-wrapper .Select-value .Select-value-icon {
      color: black;
      background-color: transparent;
      top: 1px;
      right: 6px;
      width: unset;
      height: unset; }

.Strengthen-job-form-container .license-selector .MuiSelect-root-107 {
  padding: 12px; }

.Strengthen-job-form-container .license-selector .MuiSelect-select-108:focus {
  background-color: white; }

.Strengthen-job-form-container .location-select-container .MuiTextField-root {
  margin-top: 0px !important; }

.Strengthen-job-form-container .location-select-container .MuiOutlinedInput-notchedOutline legend span {
  color: rgba(0, 0, 0, 0.54) !important; }

.Strengthen-job-form-container .location-select-container .MuiInputLabel-outlined {
  color: rgba(0, 0, 0, 0.54) !important; }

.Strengthen-job-form-container .success-image-conatiner {
  text-align: center;
  margin-bottom: 50px;
  margin-top: 70px; }

.Strengthen-job-form-container .candidate-info-top {
  background: #ffffff;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  color: #959595;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  bottom: -1%;
  left: 6%;
  padding: 2px; }

.Strengthen-job-form-container .candidate-info {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  padding: 10px 20px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px; }
  .Strengthen-job-form-container .candidate-info .name {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.4px;
    margin-bottom: 0px; }
  .Strengthen-job-form-container .candidate-info .email {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.4px;
    color: #959595;
    margin-bottom: 6px; }
  .Strengthen-job-form-container .candidate-info .social-links {
    display: flex;
    gap: 4px; }
    .Strengthen-job-form-container .candidate-info .social-links .resume {
      border: 1px solid #444444;
      padding: 4px;
      border-radius: 40px;
      width: -moz-fit-content;
      width: fit-content; }

.Strengthen-job-form-container .employer-referral-top {
  background: #ffffff;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  color: #959595;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  bottom: -1%;
  left: 6%;
  padding: 2px; }

.Strengthen-job-form-container .employer-referral {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  padding: 10px 20px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px; }

.Strengthen-job-form-container .employer-message-top {
  background: #ffffff;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  color: #959595;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  bottom: -1%;
  left: 6%;
  padding: 2px; }

.Strengthen-job-form-container .employer-message {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  padding: 10px 20px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 20px; }

.Strengthen-job-form-container .question-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 5px; }
  .Strengthen-job-form-container .question-text .submitted-question {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px; }
    .Strengthen-job-form-container .question-text .submitted-question .answer {
      font-weight: 400;
      font-size: 12px; }

.Strengthen-job-form-container .text-input {
  margin-top: 0px;
  width: 100%; }

.Strengthen-job-form-container .strength-bar {
  margin-bottom: 30px; }
  .Strengthen-job-form-container .strength-bar .strength-name {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 8px; }
  .Strengthen-job-form-container .strength-bar .strength-sub {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #444444;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between; }
    .Strengthen-job-form-container .strength-bar .strength-sub .progress-bar {
      font-weight: 400;
      font-size: 12px;
      line-height: 18px;
      text-align: right;
      color: #3431AC; }

.Strengthen-job-form-container .diversity-name {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #444444; }

.Strengthen-job-form-container .formik-multi-select {
  position: relative; }
  .Strengthen-job-form-container .formik-multi-select .serach-icon {
    position: absolute;
    top: 16px;
    left: 10px;
    z-index: 10; }
  .Strengthen-job-form-container .formik-multi-select .Select-control {
    background: transparent !important;
    border: unset;
    border-radius: unset;
    overflow: visible; }
    .Strengthen-job-form-container .formik-multi-select .Select-control .Select-multi-value-wrapper {
      display: flex;
      flex-wrap: wrap-reverse;
      padding: 2px; }
      .Strengthen-job-form-container .formik-multi-select .Select-control .Select-multi-value-wrapper .Select-placeholder {
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 400;
        font-size: 15px;
        color: #727272;
        margin: 8px 0px 0px;
        padding-left: 45px;
        background-color: #ffffff;
        border: 1px solid #4444;
        border-radius: 4px; }
      .Strengthen-job-form-container .formik-multi-select .Select-control .Select-multi-value-wrapper .Select-input {
        border: 1px solid #bfbfbf;
        border-radius: 4px;
        width: 100%;
        margin: 8px 0px 0px;
        padding-left: 40px; }
        .Strengthen-job-form-container .formik-multi-select .Select-control .Select-multi-value-wrapper .Select-input input {
          width: 100% !important; }
      .Strengthen-job-form-container .formik-multi-select .Select-control .Select-multi-value-wrapper .Select-value {
        display: flex;
        flex-direction: row-reverse;
        margin: 8px 8px 0px 0px;
        padding: 3.85714px 8px;
        border-radius: 34px;
        background: #d3dae6;
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 400;
        font-size: 12px;
        line-height: 14px;
        text-align: right;
        color: #000000;
        border: unset; }
        .Strengthen-job-form-container .formik-multi-select .Select-control .Select-multi-value-wrapper .Select-value .Select-value-icon {
          border-right: unset;
          padding: 0px;
          font-size: 18px;
          line-height: 18px;
          font-weight: 400;
          padding-left: 2px; }
          .Strengthen-job-form-container .formik-multi-select .Select-control .Select-multi-value-wrapper .Select-value .Select-value-icon:hover {
            background-color: unset;
            color: unset; }
    .Strengthen-job-form-container .formik-multi-select .Select-control .Select-arrow-zone {
      display: none; }
  .Strengthen-job-form-container .formik-multi-select .Select-menu-outer {
    margin-top: 3px; }
.reward-confirmation-modal {
  padding-bottom: 0px !important; }
  .reward-confirmation-modal .reward-confirm__icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px; }
  .reward-confirmation-modal .modal-body {
    text-align: center; }
.empty-rewards {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 400px);
  padding: 40px 20px; }
  .empty-rewards__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 400px; }
  .empty-rewards__icon-wrapper {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #f0f0f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px; }
  .empty-rewards__icon {
    font-size: 44px !important;
    color: #9e9ea7; }
  .empty-rewards__title {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.4; }
/* Menu + options often render in a portal (document.body), so these blocks must NOT be nested under .GroupEmployeesSelect__container */
.GroupEmployeesSelect__menuFooter {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px 16px;
  border-top: 1px solid #e5e7eb;
  background: #fff; }
  .GroupEmployeesSelect__menuFooter .btn-primary {
    border-radius: 8px;
    font-weight: 600;
    padding: 8px 24px;
    background: #3431ac;
    border: none;
    color: #fff; }
    .GroupEmployeesSelect__menuFooter .btn-primary:hover {
      background: #2a2890;
      color: #fff; }

.GroupEmployeesSelect__optionRow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  min-height: 56px;
  border-bottom: 1px solid #e5e7eb;
  cursor: pointer; }

.GroupEmployeesSelect__optionCheckbox {
  flex: 0 0 36px;
  display: flex;
  align-items: center;
  justify-content: center; }

.GroupEmployeesSelect__avatar {
  flex: 0 0 auto;
  width: 40px !important;
  height: 40px !important; }

.GroupEmployeesSelect__details {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px; }

.GroupEmployeesSelect__name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.GroupEmployeesSelect__email {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.35;
  max-width: 100%;
  word-break: break-word; }

.GroupEmployeesSelect__phone {
  display: block;
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.3; }

.GroupEmployeesSelect__container {
  margin-top: 17px; }
/* Page shell aligned with OrganizationDetailsEdit (.org-edit-root / .org-edit-content) */
.add-group-page {
  min-height: calc(100vh - 120px);
  background: #f9fafb;
  padding: 32px 24px 48px;
  display: flex;
  justify-content: center;
  box-sizing: border-box; }
  .add-group-page__inner {
    width: 100%;
    max-width: 720px;
    padding: 0; }

.add-group-back {
  text-transform: none !important;
  margin-bottom: 20px !important;
  padding-left: 0 !important;
  color: #374151 !important;
  font-weight: 500 !important;
  font-size: 14px !important; }
  .add-group-back:hover {
    background-color: transparent !important;
    color: #3431ac !important; }

.add-group-form {
  display: block; }

/* Card + header match OrganizationDetailsEdit .org-edit-section */
.add-group-card {
  background: #ffffff;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  overflow: visible; }

.add-group-card__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid #f0f1f3;
  background: #fafbfc;
  border-radius: 12px 12px 0 0; }

.add-group-card__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #eeedfc 0%, #dddafa 100%);
  color: #3431ac;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px; }

.add-group-card__header-text {
  flex: 1;
  min-width: 0; }

.add-group-card__title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 4px;
  line-height: 1.4; }

.add-group-card__subtitle {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
  max-width: 520px; }

.add-group-card__inner {
  padding: 24px 28px 28px; }

.add-group-section {
  padding: 0 0 24px; }
  .add-group-section:last-child {
    padding-bottom: 0; }
  .add-group-section--divider {
    padding-top: 24px;
    border-top: 1px solid #f0f1f3; }
  .add-group-section--actions {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 0;
    padding-top: 24px; }

.add-group-subheading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 16px 0 12px; }
  .add-group-subheading:first-child {
    margin-top: 0; }
  .add-group-subheading__count {
    font-weight: 600;
    color: #6b7280;
    letter-spacing: normal;
    text-transform: none;
    font-size: 14px; }

.add-group-hint {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 12px;
  line-height: 1.45; }

.add-group-field {
  margin-top: 8px; }
  .add-group-field:first-child {
    margin-top: 0; }

.add-group-page .MuiOutlinedInput-root {
  border-radius: 8px !important;
  background: #fff; }
  .add-group-page .MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline {
    border-color: #9ca3af !important; }
  .add-group-page .MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
    border-color: #3431ac !important;
    border-width: 1px !important; }

.add-group-page .MuiOutlinedInput-notchedOutline {
  border-color: #d1d5db !important; }

.add-group-page .MuiInputLabel-outlined {
  color: #6b7280; }

.add-group-page .MuiInputLabel-outlined.Mui-focused {
  color: #3431ac; }

.add-group-page .add-group-custom-field .MuiInputBase-input {
  background-color: #f9fafb;
  color: #374151; }

.add-group-page .add-group-custom-field .MuiOutlinedInput-root {
  background-color: #f9fafb; }
  .add-group-page .add-group-custom-field .MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline {
    border-color: #d1d5db !important; }
  .add-group-page .add-group-custom-field .MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
    border-color: #d1d5db !important; }

.add-group-reward {
  display: flex;
  align-items: flex-start;
  gap: 12px; }
  .add-group-reward__icon {
    width: 18px;
    height: 18px;
    margin-top: 10px;
    flex-shrink: 0; }
  .add-group-reward__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 8px; }
  .add-group-reward__label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    line-height: 1.4; }
  .add-group-reward__desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.45; }

/* react-select (control still in card; menu renders in body when useMenuPortal) */
.add-group-page .GroupEmployeesSelect__container {
  margin-top: 0;
  position: relative;
  z-index: 1; }
  .add-group-page .GroupEmployeesSelect__container [class*='-control'] {
    border-radius: 8px !important;
    border-color: #d1d5db !important;
    min-height: 44px;
    box-shadow: none !important; }
    .add-group-page .GroupEmployeesSelect__container [class*='-control']:hover {
      border-color: #9ca3af !important; }

.add-group-members-table {
  margin-top: 12px;
  border: 1px solid #f3f4f6;
  border-radius: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; }
  .add-group-members-table__head {
    background: #fafbfc;
    border-bottom: 1px solid #e5e7eb; }
  .add-group-members-table__body {
    background: #fff; }
  .add-group-members-table__row {
    display: grid;
    grid-template-columns: minmax(140px, 1.2fr) minmax(100px, 1fr) minmax(160px, 1.4fr) 48px;
    min-width: 520px;
    align-items: center;
    min-height: 48px;
    gap: 8px;
    padding: 0 16px;
    border-bottom: 1px solid #f3f4f6; }
    .add-group-members-table__row:last-child {
      border-bottom: none; }
    .add-group-members-table__row--head {
      min-height: 44px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #6b7280; }
  .add-group-members-table__cell {
    font-size: 14px;
    color: #374151;
    padding: 10px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
    .add-group-members-table__cell--action {
      display: flex;
      justify-content: flex-end;
      padding-right: 4px; }
  .add-group-members-table__remove {
    color: #9ca3af !important; }
    .add-group-members-table__remove:hover {
      color: #dc2626 !important;
      background: rgba(220, 38, 38, 0.06) !important; }

@keyframes add-group-skeleton-shimmer {
  0% {
    background-position: -400px 0; }
  100% {
    background-position: 400px 0; } }

.add-group-members-skeleton {
  pointer-events: none; }
  .add-group-members-skeleton .add-group-members-table__cell {
    display: flex;
    align-items: center; }
  .add-group-members-skeleton .add-group-members-table__cell--action {
    justify-content: flex-end; }

.add-group-members-skeleton__count {
  display: inline-flex;
  vertical-align: middle;
  margin-left: 2px; }

.add-group-members-skeleton__bar {
  display: block;
  border-radius: 4px;
  background: linear-gradient(90deg, #e8e8e8 25%, #f4f4f4 50%, #e8e8e8 75%);
  /* LibSass rejects `800px 100%` as incompatible units; pass through as raw CSS */
  background-size: 800px 100%;
  animation: add-group-skeleton-shimmer 1.5s ease-in-out infinite; }

.add-group-members-skeleton__bar--count {
  width: 32px;
  height: 12px; }

.add-group-members-skeleton__bar--name {
  width: 55%;
  max-width: 160px;
  height: 14px; }

.add-group-members-skeleton__bar--title {
  width: 45%;
  max-width: 100px;
  height: 12px; }

.add-group-members-skeleton__bar--email {
  width: 88%;
  max-width: 240px;
  height: 12px; }

.add-group-members-skeleton__bar--icon {
  width: 22px;
  height: 22px;
  border-radius: 6px; }

.add-group-save-btn {
  background: #3431ac;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s; }
  .add-group-save-btn:hover:not(:disabled) {
    background: #2a2890; }
  .add-group-save-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed; }

@media (max-width: 640px) {
  .add-group-page {
    padding: 24px 16px 40px; }
  .add-group-card__header {
    padding: 20px; }
  .add-group-card__inner {
    padding: 20px; } }
.empty-groups {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 322px);
  padding: 40px 20px; }
  .empty-groups__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 400px; }
  .empty-groups__icon-wrapper {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #f0f0f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px; }
  .empty-groups__icon {
    font-size: 44px !important;
    color: #9e9ea7; }
  .empty-groups__title {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a2e;
    margin: 0 0 8px;
    line-height: 1.4; }
  .empty-groups__subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    margin: 0;
    line-height: 1.5; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
/* —— Page shell (matches Add Group / org edit) —— */
.reward-template-page {
  min-height: calc(100vh - 120px);
  background: #f9fafb;
  padding: 32px 24px 48px;
  display: flex;
  justify-content: center;
  box-sizing: border-box; }

.reward-template-page__inner {
  width: 100%;
  max-width: 720px;
  padding: 0; }

.reward-template-page__back {
  text-transform: none !important;
  margin-bottom: 20px !important;
  padding-left: 0 !important;
  color: #374151 !important;
  font-weight: 500 !important;
  font-size: 14px !important; }
  .reward-template-page__back:hover {
    background-color: transparent !important;
    color: #3431ac !important; }

/* Single card section */
.reward-template-card {
  background: #ffffff;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  overflow: visible; }

.reward-template-card__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid #f0f1f3;
  background: #fafbfc;
  border-radius: 12px 12px 0 0; }

.reward-template-card__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #eeedfc 0%, #dddafa 100%);
  color: #3431ac;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px; }

.reward-template-card__header-main {
  flex: 1;
  min-width: 0; }

.reward-template-card__header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap; }

.reward-template-card__header-text {
  flex: 1;
  min-width: 0; }

.reward-template-card__title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 4px;
  line-height: 1.4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px; }

.reward-template-card__subtitle {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
  max-width: 560px; }

.reward-template-card__badge {
  display: inline-block;
  background-color: #cff5f6;
  color: #2767c2;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase; }

.reward-template-card__last-edit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  text-decoration: none;
  flex-shrink: 0; }
  .reward-template-card__last-edit svg {
    display: block;
    flex-shrink: 0; }

.reward-template-card__inner {
  padding: 24px 28px 28px; }

.reward-template-section:last-child {
  padding-bottom: 0; }

.reward-template-section--actions {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 0;
  padding-top: 24px; }

.reward-template-subheading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 0 0 12px; }

.reward-template-duration-info {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
  margin: 12px 0; }
  .reward-template-duration-info .reward-setting-redirect {
    color: #3431ac;
    text-decoration: underline;
    cursor: pointer;
    padding: 0 2px;
    display: inline; }
  .reward-template-duration-info .reward-duration-status {
    font-weight: 600;
    color: #111827; }

.reward-template-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #374151; }
  .reward-template-total-row__value {
    font-weight: 700;
    color: #3431ac; }

.reward-template-save-btn {
  background: #3431ac;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s; }
  .reward-template-save-btn:hover:not(:disabled) {
    background: #2a2890; }
  .reward-template-save-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed; }

/* —— Form body (scoped to card inner) —— */
.reward-template-card__inner .title-container {
  padding: 0; }
  .reward-template-card__inner .title-container div label {
    color: #6b7280;
    font-size: 14px;
    padding: 2px 0 8px 0; }

.reward-template-card__inner .referals-description {
  margin: 0 0 16px;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5; }

.reward-template-card__inner .installments-selector {
  margin: 0;
  width: 100%;
  max-width: 280px;
  margin-bottom: 16px; }
  .reward-template-card__inner .installments-selector label {
    top: -7px; }

.reward-template-card__inner .MuiOutlinedInput-root {
  border-radius: 8px !important;
  background: #fff; }
  .reward-template-card__inner .MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline {
    border-color: #9ca3af !important; }
  .reward-template-card__inner .MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
    border-color: #3431ac !important;
    border-width: 1px !important; }

.reward-template-card__inner .MuiOutlinedInput-notchedOutline {
  border-color: #d1d5db !important; }

.reward-template-card__inner .MuiPaper-root {
  margin-top: 16px;
  border: 1px solid #e8eaed !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  overflow: hidden; }

.reward-template-card__inner .installment,
.reward-template-card__inner .reward-description-collapse {
  box-shadow: none !important;
  /* Tighter summary row; center label + expand chevron */ }
  .reward-template-card__inner .installment .accordion-title.MuiAccordionSummary-root,
  .reward-template-card__inner .reward-description-collapse .accordion-title.MuiAccordionSummary-root {
    min-height: 40px !important;
    padding: 0 12px 0 14px !important;
    align-items: center !important;
    background: #fafbfc !important;
    border-radius: 0; }
  .reward-template-card__inner .installment .accordion-title .MuiAccordionSummary-content,
  .reward-template-card__inner .reward-description-collapse .accordion-title .MuiAccordionSummary-content {
    margin: 4px 0 !important;
    align-items: center !important; }
  .reward-template-card__inner .installment .accordion-title .MuiAccordionSummary-expandIcon,
  .reward-template-card__inner .reward-description-collapse .accordion-title .MuiAccordionSummary-expandIcon {
    padding: 4px !important;
    align-self: center !important; }
  .reward-template-card__inner .installment .reward-description,
  .reward-template-card__inner .reward-description-collapse .reward-description {
    margin: 12px 0 0;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5; }
  .reward-template-card__inner .installment .accordion-details,
  .reward-template-card__inner .reward-description-collapse .accordion-details {
    display: block;
    padding: 12px 16px 16px !important; }
    .reward-template-card__inner .installment .accordion-details div label,
    .reward-template-card__inner .reward-description-collapse .accordion-details div label {
      color: #6b7280;
      font-size: 14px;
      padding: 2px 0 8px 0; }
    .reward-template-card__inner .installment .accordion-details .range-error,
    .reward-template-card__inner .reward-description-collapse .accordion-details .range-error {
      font-size: 14px;
      font-style: italic;
      color: rgba(220, 38, 38, 0.85);
      font-weight: 400;
      display: inline-block;
      margin-bottom: 8px; }
    .reward-template-card__inner .installment .accordion-details .installments-card,
    .reward-template-card__inner .reward-description-collapse .accordion-details .installments-card {
      width: 100%; }
      .reward-template-card__inner .installment .accordion-details .installments-card legend,
      .reward-template-card__inner .reward-description-collapse .accordion-details .installments-card legend {
        width: 70px; }
      .reward-template-card__inner .installment .accordion-details .installments-card .MuiInputLabel-formControl,
      .reward-template-card__inner .reward-description-collapse .accordion-details .installments-card .MuiInputLabel-formControl {
        top: -5px;
        left: 13px; }
    .reward-template-card__inner .installment .accordion-details .accordion-btn-container,
    .reward-template-card__inner .reward-description-collapse .accordion-details .accordion-btn-container {
      margin-top: 16px; }
      .reward-template-card__inner .installment .accordion-details .accordion-btn-container .btn,
      .reward-template-card__inner .reward-description-collapse .accordion-details .accordion-btn-container .btn {
        width: 100%;
        text-transform: unset; }
        .reward-template-card__inner .installment .accordion-details .accordion-btn-container .btn svg,
        .reward-template-card__inner .reward-description-collapse .accordion-details .accordion-btn-container .btn svg {
          margin-right: 10px; }
      .reward-template-card__inner .installment .accordion-details .accordion-btn-container .btn-monetary,
      .reward-template-card__inner .reward-description-collapse .accordion-details .accordion-btn-container .btn-monetary {
        color: #3431ac;
        border: 1px solid #e5e7eb;
        padding: 8px 20px;
        text-transform: unset;
        font-size: 14px;
        border-radius: 8px; }
      .reward-template-card__inner .installment .accordion-details .accordion-btn-container .btn-experiential,
      .reward-template-card__inner .reward-description-collapse .accordion-details .accordion-btn-container .btn-experiential {
        color: #7c3aed;
        border: 1px solid #e5e7eb;
        padding: 8px 20px;
        text-transform: unset;
        font-size: 14px;
        border-radius: 8px; }

.reward-template-card__inner .duration-selector {
  margin: 4px 0 0;
  width: 100%; }
  .reward-template-card__inner .duration-selector label {
    top: -7px; }

.reward-template-card__inner span {
  font-size: 14px; }

.reward-template-card__inner .reward-template-row-close {
  flex-shrink: 0;
  align-self: center;
  margin: 0 !important;
  padding: 6px !important;
  color: #9ca3af !important; }
  .reward-template-card__inner .reward-template-row-close:hover {
    color: #6b7280 !important;
    background-color: rgba(0, 0, 0, 0.05) !important; }

.reward-template-card__inner .monetary-reward-container {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap; }
  .reward-template-card__inner .monetary-reward-container .bonus-container {
    flex: 1 1 auto;
    min-width: 0; }
    .reward-template-card__inner .monetary-reward-container .bonus-container .MuiTextField-root {
      margin-top: 0 !important; }
      .reward-template-card__inner .monetary-reward-container .bonus-container .MuiTextField-root .MuiInputBase-input {
        height: 23px; }
  .reward-template-card__inner .monetary-reward-container .currency-selector {
    flex: 0 0 168px;
    width: 168px;
    max-width: 100%;
    margin: 0; }
    .reward-template-card__inner .monetary-reward-container .currency-selector .MuiFormControl-root {
      width: 100%;
      margin: 0 !important; }
    .reward-template-card__inner .monetary-reward-container .currency-selector legend {
      width: auto; }
    .reward-template-card__inner .monetary-reward-container .currency-selector label {
      top: -7px; }
  @media screen and (max-width: 520px) {
    .reward-template-card__inner .monetary-reward-container {
      flex-wrap: wrap; }
      .reward-template-card__inner .monetary-reward-container .currency-selector {
        flex: 1 1 140px;
        width: auto; } }

.reward-template-card__inner .experiential-reward-container {
  margin: 0 0 16px; }
  .reward-template-card__inner .experiential-reward-container .title {
    display: flex;
    align-items: center;
    gap: 4px; }
    .reward-template-card__inner .experiential-reward-container .title .text-input {
      flex: 1;
      min-width: 0; }
      .reward-template-card__inner .experiential-reward-container .title .text-input .MuiFormControl-root {
        margin-top: 0 !important;
        margin-bottom: 0 !important; }
  .reward-template-card__inner .experiential-reward-container .image-container {
    margin-top: 12px;
    display: grid;
    gap: 8px; }
    .reward-template-card__inner .experiential-reward-container .image-container img {
      max-width: 50%;
      border-radius: 8px; }
    .reward-template-card__inner .experiential-reward-container .image-container .choose-btn,
    .reward-template-card__inner .experiential-reward-container .image-container button {
      text-align: center;
      border: 1px solid #e5e7eb;
      padding: 8px 14px;
      border-radius: 8px;
      width: -moz-fit-content;
      width: fit-content;
      background: #f9fafb;
      cursor: pointer;
      font-size: 13px; }

.installment-heading-container {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 12px;
  font-weight: 700;
  font-size: 14px; }
  .installment-heading-container .reward-value {
    text-transform: none;
    margin: 0 !important;
    color: #3431ac; }
  .installment-heading-container .installment-no {
    text-transform: uppercase;
    margin: 0 !important;
    letter-spacing: 0.04em;
    font-size: 11px;
    font-weight: 600;
    color: #6b7280; }
  .installment-heading-container .duration {
    display: inline-flex;
    align-items: center;
    gap: 6px; }
    .installment-heading-container .duration svg {
      margin: 0;
      flex-shrink: 0; }
    .installment-heading-container .duration .duration__text {
      color: #4b5563;
      font-weight: 400;
      font-size: 14px;
      margin: 0 !important; }

.reward-template-accordion-heading {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #374151;
  line-height: 1.3; }

.installments-parent > div {
  box-shadow: none !important; }

.badge-default {
  /* legacy — prefer .reward-template-card__badge */
  background-color: #cff5f6;
  color: #2767c2;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
  font-size: 0.75rem;
  font-weight: bold; }

.empty-reward-list-parent {
  height: 90vh; }
  .empty-reward-list-parent svg {
    position: relative;
    left: 50%;
    transform: translateX(-50%); }

@media screen and (max-width: 640px) {
  .reward-template-page {
    padding: 24px 16px 40px; }
  .reward-template-card__header {
    padding: 20px; }
  .reward-template-card__inner {
    padding: 20px; }
  .reward-template-card__last-edit {
    width: 100%; }
  .installments-selector {
    max-width: 100% !important; }
  .reward-template-save-btn {
    width: 100%; } }

@media screen and (max-width: 510px) {
  .form-last-edit {
    display: none !important; } }
.empty-members {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 322px);
  padding: 40px 20px; }
  .empty-members__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 400px; }
  .empty-members__icon-wrapper {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #f0f0f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px; }
  .empty-members__icon {
    font-size: 44px !important;
    color: #9e9ea7; }
  .empty-members__title {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.4; }
.team-export-cont {
  display: flex;
  justify-content: center; }
  .team-export-cont .content {
    width: 700px;
    margin: 15px 10px; }
  .team-export-cont .content-cont {
    padding: 30px 50px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0px 2px 4px rgba(147, 157, 177, 0.25);
    margin-top: 15px; }
  .team-export-cont .heading {
    font-size: 20px;
    font-weight: 700;
    color: #444444;
    margin-bottom: 20px; }
  .team-export-cont .option-cont {
    display: flex;
    justify-content: flex-end; }
  .team-export-cont .selection-btn {
    color: #727272;
    cursor: pointer;
    padding: 0; }
  .team-export-cont .checkbox-wrapper label {
    font-weight: 400;
    font-size: 12px;
    line-height: 30px;
    letter-spacing: 1px;
    color: #000000; }
  .team-export-cont .fields-heading {
    background: #f4f5f8;
    border-radius: 4px 4px 0px 0px;
    padding: 15px;
    margin: 20px 0px 10px 0px;
    width: 100%;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #444444; }
  .team-export-cont .btns-cont {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    margin-top: 30px; }
    .team-export-cont .btns-cont button {
      width: 160px;
      height: 40px; }
  .team-export-cont .export-btn {
    background-color: #3431AC;
    color: #ffffff;
    font-weight: 700; }
  .team-export-cont .cancel-btn {
    color: #3431AC;
    border: 1px solid #f1f1f1; }
.import-member-cont {
  margin-top: 32px !important;
  width: 100%;
  display: flex;
  justify-content: center; }
  .import-member-cont .import-content-cont {
    width: 100%;
    max-width: 720px; }
  .import-member-cont .MuiButton-text {
    color: #6b7280;
    font-weight: 500;
    font-size: 14px;
    text-transform: none;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.15s ease; }
    .import-member-cont .MuiButton-text:hover {
      background: #f3f4f6;
      color: #374151; }
    .import-member-cont .MuiButton-text .MuiButton-startIcon {
      margin-right: 6px; }
  .import-member-cont .apply-margin {
    margin-bottom: 20px;
    margin-top: 8px; }
  .import-member-cont .import-content-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    width: 100%;
    padding: 28px 32px;
    margin-top: 16px; }
  .import-member-cont .import-heading {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a2e;
    margin: 0 0 4px; }
  .import-member-cont .import-text {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280; }
  .import-member-cont .download-link {
    color: #3431ac;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-decoration: underline; }
  .import-member-cont .action-buttons {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding: 20px 0;
    gap: 10px;
    margin-top: 4px; }
    .import-member-cont .action-buttons .btn {
      border-radius: 8px;
      font-size: 14px;
      font-weight: 500;
      padding: 10px 24px;
      transition: all 0.15s ease;
      text-transform: none;
      cursor: pointer; }
    .import-member-cont .action-buttons .btn-text {
      background: #ffffff;
      border: 1px solid #e5e7eb;
      color: #374151; }
      .import-member-cont .action-buttons .btn-text:hover {
        background: #f9fafb;
        border-color: #d1d5db; }
    .import-member-cont .action-buttons .btn-primary {
      background: #3431ac;
      border: 1px solid #3431ac;
      color: #ffffff; }
      .import-member-cont .action-buttons .btn-primary:hover {
        background: #2a279a;
        box-shadow: 0 2px 8px rgba(52, 49, 172, 0.3); }
      .import-member-cont .action-buttons .btn-primary:disabled {
        background: #c7c6e8;
        border-color: #c7c6e8;
        cursor: not-allowed;
        box-shadow: none; }
  .import-member-cont .uploaded-file-name {
    font-size: 13px;
    color: #374151;
    font-weight: 500; }
  .import-member-cont .deleteIcon {
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.15s ease; }
    .import-member-cont .deleteIcon:hover {
      opacity: 1; }
  .import-member-cont .dnd-window {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #e5e7eb; }
    .import-member-cont .dnd-window .dnd-window-header {
      height: 28px;
      background: #f3f4f6;
      border-bottom: 1px solid #e5e7eb;
      display: flex;
      align-items: center; }
      .import-member-cont .dnd-window .dnd-window-header .window-header-actions {
        display: flex;
        padding-left: 12px;
        gap: 5px; }
        .import-member-cont .dnd-window .dnd-window-header .window-header-actions div {
          width: 8px;
          height: 8px;
          background-color: #d1d5db;
          border-radius: 50%; }
    .import-member-cont .dnd-window .dnd-window-body .dnd-zone {
      width: 100%; }
      .import-member-cont .dnd-window .dnd-window-body .dnd-zone .dropzone {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 12px;
        border: none;
        color: #9ca3af;
        min-height: 260px;
        outline: none;
        transition: background 0.2s ease;
        justify-content: start;
        background: #fafbfc; }
        .import-member-cont .dnd-window .dnd-window-body .dnd-zone .dropzone:focus {
          background: #f5f5ff; }
        .import-member-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .dropzone-content {
          display: flex;
          flex-direction: column;
          align-items: center;
          flex-grow: 10;
          justify-content: center; }
          .import-member-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .dropzone-content img {
            margin-bottom: 16px;
            opacity: 0.7; }
          .import-member-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .dropzone-content p {
            text-align: center;
            margin: 6px 0; }
            .import-member-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .dropzone-content p:first-child {
              font-size: 15px;
              line-height: 1.4;
              font-weight: 600;
              color: #374151; }
            .import-member-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .dropzone-content p:last-child {
              font-size: 14px;
              line-height: 1.4;
              font-weight: 400;
              color: #9ca3af; }
              .import-member-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .dropzone-content p:last-child span {
                font-weight: 600;
                color: #3431ac;
                cursor: pointer; }
                .import-member-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .dropzone-content p:last-child span:hover {
                  text-decoration: underline; }
        .import-member-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .file-list {
          flex-grow: 1;
          width: 100%; }
          .import-member-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .file-list > div {
            display: flex;
            border-bottom: 1px solid #f3f4f6;
            justify-content: space-between;
            padding: 10px 8px;
            color: #374151;
            border-radius: 6px;
            transition: background 0.15s ease; }
            .import-member-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .file-list > div:hover {
              background: #f0f1f3; }
            .import-member-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .file-list > div div {
              display: flex;
              align-items: center; }
              .import-member-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .file-list > div div span {
                margin-left: 12px; }
              .import-member-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .file-list > div div:last-child {
                margin-right: 4px; }

.team-confirm-modal {
  width: 560px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden; }
  .team-confirm-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f1f3;
    background: #fafbfc; }
  .team-confirm-modal__title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0; }
  .team-confirm-modal__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #9ca3af;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease; }
    .team-confirm-modal__close:hover {
      color: #374151;
      background: #f3f4f6; }
  .team-confirm-modal__body {
    padding: 24px;
    text-align: center; }
  .team-confirm-modal__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fffbeb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px; }
  .team-confirm-modal__text {
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    margin: 0 0 12px; }
  .team-confirm-modal__link {
    color: #3431ac;
    font-weight: 500;
    text-decoration: none; }
    .team-confirm-modal__link:hover {
      text-decoration: underline; }
  .team-confirm-modal__unmatched {
    margin-top: 16px;
    padding: 16px;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    text-align: left; }
  .team-confirm-modal__unmatched-heading {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 8px; }
  .team-confirm-modal__unmatched-item {
    font-size: 13px;
    color: #6b7280;
    margin: 4px 0; }
    .team-confirm-modal__unmatched-item--error {
      color: #dc2626;
      font-weight: 500; }
  .team-confirm-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 24px;
    border-top: 1px solid #f0f1f3;
    background: #fafbfc; }
  .team-confirm-modal__btn {
    padding: 9px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    border: none; }
    .team-confirm-modal__btn--primary {
      background: #3431ac;
      color: #fff; }
      .team-confirm-modal__btn--primary:hover {
        background: #2a279a; }
    .team-confirm-modal__btn--outline {
      background: #fff;
      color: #374151;
      border: 1px solid #e5e7eb; }
      .team-confirm-modal__btn--outline:hover {
        background: #f9fafb;
        border-color: #d1d5db; }
      .team-confirm-modal__btn--outline:disabled {
        opacity: 0.5;
        cursor: not-allowed; }
.nameCol {
  width: 75%; }

.pl-15 {
  padding-left: 15; }

.groups-table th:first-of-type,
.groups-table td:first-of-type {
  width: 40%;
  padding-left: 40px !important; }

.groups-table .status {
  width: 15%; }

.groups-table .dropdown-cta {
  width: 10px; }
  .groups-table .dropdown-cta .groups-more-action {
    display: flex;
    justify-content: flex-end;
    padding-right: 5px; }

td {
  position: relative; }

.group-selector {
  display: inline-block; }

.group-action-cont {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-right: 5px; }

.align-group-row {
  min-height: 52px; }

.group-name-container {
  display: flex;
  align-items: center; }

.group-name {
  flex: 1; }

.integration-favicon-logo {
  width: 12px;
  margin-right: 15px; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.settings .details-background {
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative; }
  .settings .details-background .logo {
    position: absolute;
    bottom: -60px;
    left: 40px;
    z-index: 1;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); }
    @media (max-width: 540px) {
      .settings .details-background .logo {
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); } }
    .settings .details-background .logo img {
      display: block;
      border-radius: 10px;
      max-height: 160px;
      max-width: 160px; }

.settings .details-info {
  padding: 60px 40px 25px;
  position: relative; }
  .settings .details-info .func-buttons-container {
    position: absolute;
    top: -25px;
    right: 40px;
    z-index: 5; }
    @media (max-width: 540px) {
      .settings .details-info .func-buttons-container {
        right: auto;
        left: 50%;
        transform: translateX(-50%); } }
    .settings .details-info .func-buttons-container .btn {
      min-width: 140px;
      margin-left: 20px; }
  .settings .details-info .dashboard-sides-container {
    display: flex; }
    .settings .details-info .dashboard-sides-container .left-side {
      width: 61.2%;
      margin-right: 0;
      flex: 0 0 auto; }
    .settings .details-info .dashboard-sides-container .right-side {
      width: calc(38.8% - 30px);
      flex: 0 0 auto; }
    @media (max-width: 960px) {
      .settings .details-info .dashboard-sides-container {
        display: block; }
        .settings .details-info .dashboard-sides-container .left-side,
        .settings .details-info .dashboard-sides-container .right-side {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; } }
  .settings .details-info .sides-container {
    display: flex;
    max-width: 1000px;
    margin: auto; }
    .settings .details-info .sides-container .left-side {
      width: 71.2%;
      margin-right: 0;
      flex: 0 0 auto; }
    .settings .details-info .sides-container .right-side {
      width: calc(38.8% - 30px);
      flex: 0 0 auto; }
    @media (max-width: 960px) {
      .settings .details-info .sides-container {
        display: block; }
        .settings .details-info .sides-container .left-side,
        .settings .details-info .sides-container .right-side {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; } }
  .settings .details-info .sides-container-reverse {
    display: flex; }
    .settings .details-info .sides-container-reverse .left-side {
      width: 20%;
      flex: 0 0 auto;
      padding-top: 36px; }
    .settings .details-info .sides-container-reverse .right-side {
      width: 60%;
      flex: 0 0 auto; }
    @media (max-width: 960px) {
      .settings .details-info .sides-container-reverse {
        display: block; }
        .settings .details-info .sides-container-reverse .right-side {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; }
        .settings .details-info .sides-container-reverse .left-side {
          display: none; } }
  .settings .details-info .main-container {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0px 2px 4px rgba(147, 157, 177, 0.25); }
    .settings .details-info .main-container .title-default-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px; }
    .settings .details-info .main-container .main-container-title {
      font-size: 20px;
      color: #444444;
      font-weight: 700;
      margin-bottom: 24px;
      padding-left: 10px; }
    .settings .details-info .main-container .basic-info:last-child {
      margin-bottom: 0; }
    .settings .details-info .main-container .list .Select-control {
      border-width: 1px;
      border-radius: 4px; }
  .settings .details-info .actions-container {
    margin-top: 20px;
    display: flex;
    justify-content: space-between; }
    .settings .details-info .actions-container button.btn-primary {
      margin-left: 20px; }
  @media (max-width: 540px) {
    .settings .details-info {
      padding: 60px 20px 15px; } }

.settings .perks input {
  width: 100%;
  margin-bottom: 20px; }

.settings .perks ul {
  list-style: none; }
  .settings .perks ul li {
    border-radius: 25px;
    display: inline-block;
    margin: 0 20px 10px 0;
    background-color: #f5f7f8;
    font-size: 13px;
    font-weight: bold;
    color: #18332f; }
    .settings .perks ul li.edit {
      padding: 5px 5px 5px 20px; }
      .settings .perks ul li.edit .close {
        background-color: #3431AC;
        color: #ffffff;
        display: inline-block;
        height: 22px;
        width: 22px;
        font-size: 16px;
        line-height: 21px;
        font-weight: bold;
        text-align: center;
        border-radius: 50%;
        margin-left: 10px;
        cursor: pointer; }

.settings .youtube iframe {
  width: 100%; }

.settings .title {
  font-size: 14px;
  color: #18332f;
  padding: 18px 25px;
  cursor: pointer; }

.settings .profile-banner {
  position: relative;
  margin-bottom: 32px; }
  .settings .profile-banner__cover {
    height: 160px;
    border-radius: 12px;
    overflow: hidden; }
  .settings .profile-banner__cover-img {
    width: 100%;
    height: 100%;
    display: block; }
  .settings .profile-banner__avatar {
    position: absolute;
    bottom: -40px;
    left: 32px;
    width: 88px;
    height: 88px;
    border-radius: 16px;
    border: 4px solid #ffffff;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden; }
    .settings .profile-banner__avatar img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      display: block; }

.settings .details-info {
  padding: 0; }

.settings .page-title {
  display: flex;
  align-items: center;
  width: 500px;
  height: 50px; }
  .settings .page-title .selected-tab {
    border-bottom: 3px solid #c4c1e8; }

.settings .header {
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 0.2em;
  position: initial;
  background-color: transparent; }

.settings hr {
  width: 75%; }

.settings .newLine {
  font-style: oblique;
  display: block; }

.settings .italic {
  font-style: oblique; }

.settings .labelFont {
  font-size: 0.9em;
  display: flex;
  gap: 5px;
  margin-left: 10px; }
  .settings .labelFont .allow-checkbox {
    position: absolute;
    opacity: 0;
    margin: 0;
    width: 18px;
    height: 18px; }
    .settings .labelFont .allow-checkbox + label {
      position: relative;
      cursor: pointer;
      padding: 0;
      font-size: 14px;
      line-height: 16.1px;
      color: #444444; }
    .settings .labelFont .allow-checkbox + label:before {
      content: '';
      display: inline-block;
      vertical-align: text-top;
      width: 18px;
      height: 18px;
      background: white;
      border: 1px solid rgba(0, 0, 0, 0.3);
      border-radius: 4px;
      margin-right: 15px; }
    .settings .labelFont .allow-checkbox:checked + label:before {
      background: #3431ac;
      border-color: #3431ac; }
    .settings .labelFont .allow-checkbox:checked + label:after {
      content: '';
      position: absolute;
      left: 5px;
      top: 9px;
      background: white;
      width: 2px;
      height: 2px;
      box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
      transform: rotate(45deg); }

.settings .skills {
  position: relative; }
  .settings .skills .multi > .Select-control > .Select-multi-value-wrapper > .Select-input {
    margin-bottom: 10px; }
    .settings .skills .multi > .Select-control > .Select-multi-value-wrapper > .Select-input input {
      height: -webkit-fill-available; }

.settings .hidden {
  display: none; }

.settings .settings-container {
  padding: 2%; }

.settings .redux-select-container {
  width: 50%;
  border-radius: 25%; }

.settings .block {
  padding-bottom: 2vw !important; }

.settings p {
  color: #727272;
  font-family: Roboto, 'Open Sans', sans-serif;
  font-size: 0.9em; }

.settings a {
  text-decoration: none !important; }

.settings .settings-navigation {
  display: flex;
  justify-content: center;
  margin-top: 20px; }
  .settings .settings-navigation .settings-tab-cont {
    width: 100%;
    max-width: 634px; }

.settings .sidebar {
  width: 220px;
  background-color: #f8f9fc;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 1em;
  margin-right: 10px; }
  .settings .sidebar .sidebar-div {
    border: 1px solid #f8f9fc;
    background-color: white;
    font-size: 12px;
    font-weight: bolder;
    width: 55%;
    padding: 15px 20px;
    align-content: start;
    min-width: 212px;
    color: #727272; }
    .settings .sidebar .sidebar-div:hover {
      color: black;
      cursor: pointer; }
  .settings .sidebar .selected {
    border-right: 3px solid #22c76f;
    color: black; }

.settings .section-container {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #f3f4f6;
  padding: 20px; }

.settings .no-section-border {
  border-bottom: 0; }

.settings .section-heading {
  color: #959595;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px; }

.settings .label {
  color: #444444;
  font-weight: 500;
  width: 55%; }

.settings .switch-label {
  margin: 0; }

.settings .switch-cont {
  display: flex;
  align-items: center; }

.settings .sub-label {
  color: #959595;
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  margin-top: 5px; }

.settings .labels-cont {
  display: flex;
  flex-direction: column;
  width: 87%; }
  .settings .labels-cont .label {
    margin-bottom: 0px;
    width: 100%; }

.settings .switches-cont {
  width: 165px; }

.billing {
  margin-top: -2vw; }
  .billing .info {
    display: inline-block;
    order: 1;
    margin: 5px 5px 5px 5px;
    position: relative;
    border: none;
    border-radius: 25px;
    background-color: #afb6b5;
    padding: 7px 20px 7px 20px;
    font-size: 13px;
    font-weight: bold;
    color: #18332f; }
  .billing .redux-select-container {
    width: 75%;
    border-radius: 25%;
    margin-top: -2vw; }
    .billing .redux-select-container .Select-multi-value-wrapper .Select-input {
      margin-left: 42vw; }
      .billing .redux-select-container .Select-multi-value-wrapper .Select-input input {
        padding-left: 2vw;
        padding-top: 5px; }
    .billing .redux-select-container .Select-multi-value-wrapper .Select-placeholder {
      margin-left: 43vw; }
    .billing .redux-select-container .Select-menu-outer {
      width: 20vw;
      margin-left: 42vw; }
  .billing img {
    margin-left: 42vw;
    padding-right: 1vw; }

.domain-label {
  margin-top: 0px; }

.allowed-domains {
  width: 100%;
  margin-left: 10px; }
  .allowed-domains .error-message {
    color: red;
    font-size: 12px; }
  .allowed-domains .domain-input {
    margin: 0;
    background: #ffffff;
    border-radius: 4px;
    margin-top: 15px !important;
    margin-bottom: 5px; }
  .allowed-domains .all-emails {
    display: flex;
    flex-wrap: wrap; }
  .allowed-domains .email-domains-span {
    display: flex;
    flex-direction: row;
    padding: 6px 10px;
    gap: 6px;
    align-items: center;
    background: rgba(52, 49, 172, 0.05);
    border: 1px solid #3431ac;
    border-radius: 200px;
    margin: 4px 4px 0px 0px; }
    .allowed-domains .email-domains-span span {
      color: #3431ac;
      font-weight: 400;
      font-size: 12px;
      line-height: 14px;
      letter-spacing: 1px; }
      .allowed-domains .email-domains-span span img {
        vertical-align: middle;
        cursor: pointer; }

.perm-root {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 24px 100px;
  /* Three-column role grid (Admin / Managers / Opening owners), aligned like notification RP/Candidate headers */ }
  .perm-root .perm-unsaved-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    border-radius: 10px;
    padding: 12px 18px;
    margin-bottom: 20px;
    color: #3431ac;
    font-size: 14px;
    font-weight: 500; }
    .perm-root .perm-unsaved-banner__icon {
      font-size: 20px;
      color: #3431ac; }
  .perm-root .perm-section {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px; }
    .perm-root .perm-section__heading {
      color: #959595;
      text-transform: uppercase;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 1px;
      margin: 0 0 16px; }
  .perm-root .perm-subsection {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0 12px; }
    .perm-root .perm-subsection__label {
      margin: 0;
      color: #374151;
      font-weight: 600;
      font-size: 13px;
      white-space: nowrap; }
    .perm-root .perm-subsection__divider {
      height: 1px;
      width: 100%;
      background: #e5e7eb; }
  .perm-root .perm-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    gap: 16px; }
    .perm-root .perm-row:last-child {
      border-bottom: none; }
    .perm-root .perm-row__label-area {
      flex: 1;
      min-width: 0; }
    .perm-root .perm-row__label {
      color: #374151;
      font-weight: 500;
      font-size: 14px;
      margin: 0; }
    .perm-root .perm-row__sublabel {
      color: #9ca3af;
      font-size: 13px;
      font-weight: 400;
      margin: 4px 0 0; }
    .perm-root .perm-row__field {
      width: 220px;
      flex-shrink: 0; }
      .perm-root .perm-row__field .redux-select-container {
        width: 100%;
        max-width: 100%;
        position: relative;
        height: 40px; }
      .perm-root .perm-row__field .Select {
        height: 40px; }
      .perm-root .perm-row__field .Select-control {
        border: 1px solid #d1d5db !important;
        border-radius: 8px !important;
        height: 40px !important;
        overflow: hidden; }
        .perm-root .perm-row__field .Select-control:hover {
          border-color: #9ca3af !important; }
      .perm-root .perm-row__field .is-focused > .Select-control {
        border-color: #3431ac !important;
        box-shadow: none !important; }
      .perm-root .perm-row__field .Select-menu-outer {
        position: absolute;
        width: 100%;
        z-index: 20; }
      .perm-root .perm-row__field .Select-value {
        line-height: 38px !important; }
      .perm-root .perm-row__field .Select-placeholder {
        line-height: 38px !important;
        font-size: 14px;
        color: #9ca3af; }
      .perm-root .perm-row__field .Select-input {
        height: 38px;
        line-height: 38px; }
        .perm-root .perm-row__field .Select-input > input {
          padding: 0 !important;
          margin: 0;
          line-height: 38px; }
    .perm-root .perm-row__switches {
      display: flex;
      gap: 4px;
      flex-shrink: 0; }
    .perm-root .perm-row--role-switches .perm-row__label {
      flex: 1;
      min-width: 0;
      padding-right: 12px; }
  .perm-root .perm-role-switch-block {
    margin-top: 4px; }
  .perm-root .perm-role-switch-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    padding: 4px 0 8px;
    border-bottom: 1px solid #f3f4f6; }
  .perm-root .perm-role-switch-header-spacer {
    flex: 1;
    min-width: 0; }
  .perm-root .perm-role-col-header,
  .perm-root .perm-role-col-toggle {
    display: grid;
    grid-template-columns: 100px 110px 128px;
    justify-content: end;
    justify-items: center;
    align-items: center;
    flex-shrink: 0; }
  .perm-root .perm-role-col-label {
    margin: 0;
    color: #374151;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    text-align: center; }
  .perm-root .perm-role-col-header--two,
  .perm-root .perm-role-col-toggle--two {
    grid-template-columns: 110px 110px; }
  .perm-root .perm-team-extra {
    padding: 16px 0 0; }
    .perm-root .perm-team-extra .perm-row__label {
      margin-bottom: 4px; }
    .perm-root .perm-team-extra .perm-row__sublabel {
      margin-bottom: 12px; }
  .perm-root .perm-radio {
    margin-left: 0 !important;
    margin-bottom: 2px; }
    .perm-root .perm-radio .MuiIconButton-root {
      padding: 4px 9px !important; }
    .perm-root .perm-radio .MuiFormControlLabel-label {
      font-weight: 400;
      font-size: 14px;
      line-height: 20px;
      color: #374151; }
    .perm-root .perm-radio .MuiRadio-colorPrimary.Mui-checked {
      color: #3431ac !important; }
    .perm-root .perm-radio span {
      color: #3431ac; }
  .perm-root .perm-domains {
    margin: 8px 0 16px; }
    .perm-root .perm-domains__input {
      width: 100%; }
      .perm-root .perm-domains__input .MuiOutlinedInput-root {
        border-radius: 8px;
        font-size: 14px;
        color: #374151; }
        .perm-root .perm-domains__input .MuiOutlinedInput-root fieldset {
          border-color: #d1d5db; }
        .perm-root .perm-domains__input .MuiOutlinedInput-root:hover fieldset {
          border-color: #9ca3af; }
        .perm-root .perm-domains__input .MuiOutlinedInput-root.Mui-focused fieldset {
          border-color: #3431ac; }
      .perm-root .perm-domains__input .MuiInputBase-inputMultiline {
        color: #374151;
        font-size: 14px; }
  .perm-root .perm-hint {
    color: #9ca3af;
    font-size: 12px;
    margin: 6px 0 0; }
  .perm-root .perm-link {
    color: #3431ac;
    text-decoration: underline !important;
    font-size: 13px; }
  .perm-root .perm-approval {
    margin-top: 8px;
    margin-bottom: 16px; }
    .perm-root .perm-approval .users-select-cont {
      width: 100%;
      margin-top: 8px; }
      .perm-root .perm-approval .users-select-cont .redux-select-container {
        width: 100%;
        max-width: 100%; }
      .perm-root .perm-approval .users-select-cont [class$='-control'] {
        border: 1px solid #d1d5db !important;
        border-radius: 8px !important;
        min-height: 40px !important;
        box-shadow: none !important; }
        .perm-root .perm-approval .users-select-cont [class$='-control']:hover {
          border-color: #9ca3af !important; }
      .perm-root .perm-approval .users-select-cont [class$='-menu'] {
        border-radius: 8px !important; }
  .perm-root .switch-cont {
    display: flex;
    align-items: center; }
  .perm-root .switch-label {
    margin: 0;
    font-size: 13px;
    color: #374151; }
  .perm-root .perm-sticky-actions {
    position: sticky;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
    z-index: 10; }
  .perm-root .perm-cancel-btn {
    background: #ffffff;
    color: #374151;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s; }
    .perm-root .perm-cancel-btn:hover {
      background: #f3f4f6;
      border-color: #9ca3af; }
  .perm-root .select-label-cont {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px; }
    .perm-root .select-label-cont img {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      display: inline-block !important;
      margin: 0 !important; }
    .perm-root .select-label-cont .select-label {
      display: inline !important; }
  .perm-root .perm-save-btn {
    background: #3431ac;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s; }
    .perm-root .perm-save-btn:hover {
      background: #2a2890; }

.save-btn-cont {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  padding: 20px 0px; }

.notification-settings-cont {
  background-color: white;
  padding: 20px 30px 15px 30px; }
  .notification-settings-cont .section-container {
    padding: 0px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center; }
  .notification-settings-cont .select-cont {
    width: 100%;
    margin-top: 15px; }
    .notification-settings-cont .select-cont .redux-select-container {
      width: 100%; }
  .notification-settings-cont .select-label-cont {
    display: flex;
    align-items: center; }
  .notification-settings-cont .select-label {
    margin-left: 5px;
    color: inherit; }
  .notification-settings-cont .error-message {
    color: #ea5506;
    font-size: 12px; }
  .notification-settings-cont .sub-label {
    color: #444444; }
  .notification-settings-cont .labels-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100% !important;
    gap: 10px; }
  .notification-settings-cont .section-with-select {
    align-items: flex-start;
    flex-direction: column; }
    .notification-settings-cont .section-with-select .select-field-cont {
      display: flex;
      width: 100%;
      gap: 10px; }
    .notification-settings-cont .section-with-select .reset-btn {
      color: #727272;
      width: 80px;
      height: 38px;
      border-radius: 4px;
      margin-top: 14px;
      font-size: 12px;
      cursor: pointer; }
      .notification-settings-cont .section-with-select .reset-btn:hover {
        background-color: #e2e2e2; }
  .notification-settings-cont .full-width-cont {
    width: 87%;
    margin-bottom: 15px; }
  .notification-settings-cont .label {
    padding-bottom: 5px; }
  .notification-settings-cont .label-switch-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; }
    .notification-settings-cont .label-switch-cont .label {
      padding-bottom: 0px; }
  .notification-settings-cont .section-column {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0;
    border-bottom: 1px solid #f3f4f6; }
  .notification-settings-cont .text-highlight {
    text-decoration: underline;
    font-style: italic;
    color: inherit; }
  .notification-settings-cont .bottom-space {
    margin-bottom: 0.3rem; }

.settings-tabs {
  padding-top: 27px; }
  .settings-tabs .rc-tabs-tab {
    display: inline-block;
    padding: 0 15px 10px;
    cursor: pointer;
    color: #959595;
    margin-right: 20px; }
  .settings-tabs .rc-tabs-tab-active {
    color: black;
    border-bottom: 3px solid #3431ac; }
  .settings-tabs .rc-tabs-nav-wrap {
    border-bottom: 1px solid #e2e2e2; }
    .settings-tabs .rc-tabs-nav-wrap .rc-tabs-nav-scroll {
      padding-left: 25px;
      padding-right: 25px; }
  @media (max-width: 540px) {
    .settings-tabs {
      padding-top: 12px;
      box-shadow: 0px 4px 4px rgba(147, 157, 177, 0.15);
      background: #ffffff; }
      .settings-tabs .rc-tabs-tab {
        padding: 0 2px 10px;
        margin-right: 20px; } }

.dark-color-bold {
  color: #444444 !important;
  font-weight: 500 !important;
  font-size: 14px !important; }

.settings-navigation-profile {
  background: #f9fafb;
  min-height: calc(100vh - 120px);
  padding-top: 24px; }
  .settings-navigation-profile .settings-tab-cont {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px; }

.settings-navigation-payments {
  background: #f9fafb;
  min-height: calc(100vh - 120px); }
  .settings-navigation-payments .settings-tab-cont {
    max-width: 920px;
    margin: 0 auto;
    padding: 0; }

.settings-navigation-notifications {
  background: #f9fafb;
  min-height: calc(100vh - 120px); }
  .settings-navigation-notifications .settings-tab-cont {
    max-width: 920px;
    margin: 0 auto;
    padding: 0; }

.settings-navigation-permissions {
  background: #f9fafb;
  min-height: calc(100vh - 120px); }
  .settings-navigation-permissions .settings-tab-cont {
    max-width: 920px;
    margin: 0 auto;
    padding: 0; }

.settings-navigation-branding {
  background: #f9fafb;
  min-height: calc(100vh - 120px); }
  .settings-navigation-branding .settings-tab-cont {
    max-width: 1200px;
    margin: 0 auto; }

.settings-navigation-integrations {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding: 0 2rem; }
  .settings-navigation-integrations .settings-tab-cont {
    width: 100%; }
.team-group-modal__label {
  text-align: left;
  font-size: 14px;
  color: #374151;
  margin: 0 0 12px;
  font-weight: 500; }

.team-group-modal__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px; }

.team-group-modal__option {
  display: flex;
  align-items: center;
  gap: 8px; }

.team-group-modal__option-check {
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center; }

.team-group-modal__option-name {
  font-size: 14px;
  color: #374151; }

.team-group-modal__menu-action {
  padding: 8px 12px;
  display: flex;
  justify-content: center;
  border-top: 1px solid #f3f4f6; }

.team-group-modal__menu-btn {
  padding: 7px 20px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
  background: #3431ac;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease; }
  .team-group-modal__menu-btn:hover {
    background: #2a279a; }
.invite-pending-modal .buttonsArea {
  justify-content: flex-end; }

.invite-pending-modal__description {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 500;
  color: #0a2021;
  line-height: 1.5; }

.invite-pending-modal__helper {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5; }
@charset "UTF-8";
/* Styles scoped to team-delete-modal — inherits base ConfirmModal / ModalComponent styles */
.team-group-modal--remove .buttonsArea .delete-btn {
  background: #dc2626; }
  .team-group-modal--remove .buttonsArea .delete-btn:hover {
    background: #b91c1c; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.request {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column; }
  .request .table-container {
    height: auto;
    background: #fff;
    overflow: hidden; }
    .request .table-container .table-actions {
      position: relative; }
      .request .table-container .table-actions .dropdown__trigger {
        display: flex;
        width: 20px;
        height: 20px;
        justify-content: center;
        align-items: center;
        cursor: pointer; }
      .request .table-container .table-actions .dropdown__content {
        background-color: #ffffff;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        z-index: 1111111;
        width: 160px; }
        .request .table-container .table-actions .dropdown__content ul {
          list-style-type: none; }
        .request .table-container .table-actions .dropdown__content li {
          font-size: 13px;
          font-weight: 400;
          line-height: 2.4;
          color: #374151;
          padding: 0 18px;
          border-bottom: 1px solid #f0f1f5;
          white-space: nowrap;
          cursor: pointer;
          transition: background-color 0.15s ease; }
          .request .table-container .table-actions .dropdown__content li:hover {
            background-color: #f9fafb; }
          .request .table-container .table-actions .dropdown__content li:last-of-type {
            border: none; }
    .request .table-container .table-checkbox {
      position: absolute;
      opacity: 0;
      margin: 0;
      width: 18px;
      height: 18px; }
      .request .table-container .table-checkbox + label {
        position: relative;
        cursor: pointer;
        padding: 0; }
      .request .table-container .table-checkbox + label:before {
        content: '';
        display: inline-block;
        vertical-align: text-top;
        width: 18px;
        height: 18px;
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 4px;
        transition: background-color 0.15s ease, border-color 0.15s ease; }
      .request .table-container .table-checkbox:checked + label:before {
        background: #3431AC;
        border-color: #3431AC; }
      .request .table-container .table-checkbox:checked + label:after {
        content: '';
        position: absolute;
        left: 5px;
        top: 9px;
        background: white;
        width: 2px;
        height: 2px;
        box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
        transform: rotate(45deg); }
    .request .table-container .sort-icon {
      display: inline-block;
      vertical-align: middle;
      font-size: 10px;
      margin-left: 10px;
      color: #3431AC; }
      .request .table-container .sort-icon.up {
        transform: rotate(180deg); }
    .request .table-container .order-position {
      display: inline-block;
      padding: 3px 5px;
      font-size: 10px;
      color: #3431AC; }
    .request .table-container .status {
      text-transform: capitalize; }
      .request .table-container .status.active {
        color: #2a2889; }
      .request .table-container .status.invite {
        color: #ffa722; }
    .request .table-container .select .Select-control .Select-value .Select-value-label {
      color: #c2c2c2 !important;
      font-weight: normal; }
    .request .table-container .select .Select-control .Select-arrow {
      color: #959595; }
  .request .loading-in-main {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    top: 0;
    left: 0; }
  .request .Select .Select-control {
    height: 40px; }
    .request .Select .Select-control .Select-placeholder {
      line-height: 38px; }
    .request .Select .Select-control .Select-input {
      height: 38px; }
    .request .Select .Select-control .Select-arrow-zone .Select-arrow {
      color: #c2c2c2; }
  .request .header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 30px;
    flex: 0 0 auto;
    background-color: #fff;
    min-height: 70px;
    box-shadow: 0 2px 5px 0 rgba(196, 206, 220, 0.5);
    position: relative;
    z-index: 1;
    /* Hosts AppSearchField in header row; input metrics live in AppSearchField.scss (+ app-search-field-input mixin) */ }
    .request .header .page-title {
      display: flex;
      align-items: center;
      min-width: 122px;
      padding: 10px 30px;
      border-right: 1px solid #e8e8e8; }
      .request .header .page-title h2 {
        font-size: 20px;
        font-weight: bold;
        color: #18332f; }
    .request .header .subtitle {
      text-align: center;
      margin-top: 20px;
      color: #414141; }
    .request .header .about-roles {
      text-align: center;
      margin-top: 25px; }
    .request .header .search-block {
      flex: 1 1 auto;
      min-width: 0;
      width: 100%;
      display: block;
      padding: 10px 30px; }
    .request .header .header-functionality {
      border-left: 1px solid #e8e8e8;
      display: flex;
      align-items: center;
      padding: 0 30px; }
      .request .header .header-functionality .bulk-select-wrapper {
        display: flex;
        align-items: center;
        border-left: 1px solid #e8e8e8;
        height: 100%;
        padding-left: 30px; }
        .request .header .header-functionality .bulk-select-wrapper .Select {
          flex: 0 0 auto;
          width: 170px; }
        .request .header .header-functionality .bulk-select-wrapper .select-label {
          color: #a5adac;
          font-size: 12px;
          margin-right: 20px; }
      .request .header .header-functionality .btn {
        padding: 10px 15px;
        min-width: 140px; }
      .request .header .header-functionality .bulk-actions {
        display: flex;
        align-items: center; }
        .request .header .header-functionality .bulk-actions .bulk-button {
          margin-right: 30px;
          margin-top: 4px; }
  .request .hide-select {
    display: none; }
  .request .archived-table-heading {
    background: #c2c2c2;
    font-size: 12px;
    width: -moz-fit-content;
    width: fit-content;
    color: #fff;
    padding: 4px 8px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-top: 30px;
    margin-left: 30px; }
  .request .members-dropdown {
    width: -moz-fit-content;
    width: fit-content;
    float: right;
    padding-left: 0 !important;
    margin-left: 18px; }
  .request .pending-table-heading {
    background: #e9f9f1;
    font-size: 12px;
    width: -moz-fit-content;
    width: fit-content;
    color: #444444;
    padding: 4px 8px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-top: 30px;
    margin-left: 30px; }
  .request .tabs-opening {
    padding-top: 27px; }
    .request .tabs-opening .rc-tabs-tab {
      display: inline-block;
      padding: 0 15px 10px;
      cursor: pointer;
      color: #959595;
      margin-right: 20px; }
    .request .tabs-opening .rc-tabs-tab-active {
      color: #444444;
      border-bottom: 3px solid #3431ac; }
    .request .tabs-opening .rc-tabs-nav-wrap {
      border-bottom: 1px solid #e2e2e2; }
      .request .tabs-opening .rc-tabs-nav-wrap .rc-tabs-nav-scroll {
        padding-left: 25px;
        padding-right: 25px; }
    @media (max-width: 540px) {
      .request .tabs-opening {
        padding-top: 12px;
        box-shadow: 0px 4px 4px rgba(147, 157, 177, 0.15);
        background: #ffffff; }
        .request .tabs-opening .rc-tabs-tab {
          padding: 0 2px 10px;
          margin-right: 20px; } }
  .request .teams-container {
    margin-top: 15px;
    padding: 0 52px 0 38px;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column; }
    @media (max-width: 540px) {
      .request .teams-container {
        padding: 0; } }
  .request .actions-container {
    display: flex;
    justify-content: space-between; }
    @media (max-width: 540px) {
      .request .actions-container {
        padding: 0 10px;
        justify-content: center !important; }
        .request .actions-container button {
          width: calc(100vw - 60px); } }
    .request .actions-container img {
      width: 14px;
      height: 10px;
      cursor: pointer; }
    .request .actions-container .drop-down-m {
      margin: 0px auto; }
    .request .actions-container .team-actions {
      position: relative;
      margin-bottom: 18px;
      display: none;
      margin-left: 5px; }
      @media (max-width: 960px) {
        .request .actions-container .team-actions {
          display: flex; } }
      .request .actions-container .team-actions .dropdown__trigger {
        display: flex;
        width: 20px;
        height: 20px;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        margin: auto; }
      .request .actions-container .team-actions .dropdown__content {
        background-color: #ffffff;
        box-shadow: 0px 4px 10px 0px #0000001a;
        border-radius: 4px;
        z-index: 1111111;
        width: 150px; }
        .request .actions-container .team-actions .dropdown__content ul {
          list-style-type: none; }
        .request .actions-container .team-actions .dropdown__content li {
          font-size: 12px;
          line-height: 300.5%;
          color: rgba(25, 25, 25, 0.6);
          padding: 0 30px 0 18px;
          border-bottom: 1px solid #e2e2e2;
          cursor: pointer; }
          .request .actions-container .team-actions .dropdown__content li:last-of-type {
            border: none; }
  .request .search-block {
    width: 98%;
    min-width: 0;
    position: relative;
    margin-bottom: 18px; }
  .request .functionality-block {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px; }
    @media (max-width: 960px) {
      .request .functionality-block {
        display: none; } }
    .request .functionality-block .referral-block {
      display: flex;
      align-items: center; }
    .request .functionality-block .information-btn {
      position: relative; }
      .request .functionality-block .information-btn .information-icon {
        color: #959595;
        margin: 0 12px; }
      .request .functionality-block .information-btn .information-text {
        background-color: white;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        padding: 25% 35%;
        font-size: 10px;
        color: #aaaaaa;
        position: absolute;
        bottom: 200%;
        right: -50%;
        width: 170px;
        visibility: hidden; }
      .request .functionality-block .information-btn .information-text:before {
        content: '';
        width: 0px;
        height: 0px;
        position: absolute;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid white;
        border-bottom: 10px solid transparent;
        bottom: -20px;
        right: 20%; }
      .request .functionality-block .information-btn:hover .information-text {
        visibility: visible; }
    .request .functionality-block .button-group {
      display: flex; }
      .request .functionality-block .button-group .btn {
        margin-right: 12px;
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center; }
        .request .functionality-block .button-group .btn img {
          margin-right: 3px; }
      .request .functionality-block .button-group .import-contacts-btn {
        gap: 10px; }
    .request .functionality-block .referral-link {
      position: relative; }
      .request .functionality-block .referral-link input {
        padding: 8px 60px 8px 10px;
        border-radius: 4px;
        border: none;
        line-height: 24px;
        color: #00000059;
        width: 300px;
        background-color: rgba(0, 0, 0, 0.03); }
      .request .functionality-block .referral-link label {
        position: absolute;
        font-size: 11px;
        line-height: 13px;
        font-weight: 500;
        color: #aaaaaa;
        top: -6px;
        left: 10px; }
      .request .functionality-block .referral-link .copy-button {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        padding: 10px 15px;
        min-width: -moz-fit-content;
        min-width: fit-content;
        display: inline-flex;
        justify-content: center;
        align-items: center; }
  .request .actions-block {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    margin-bottom: 18px; }
    .request .actions-block .btn-action {
      padding: 10px 0;
      color: #959595;
      display: flex;
      align-items: center;
      margin-right: 18px;
      min-width: unset;
      transition: all ease 0.2s; }
      .request .actions-block .btn-action svg {
        margin-right: 5px; }
      .request .actions-block .btn-action:hover {
        color: #3431ac; }
    .request .actions-block .separator {
      margin: 10px 20px 10px 0;
      border-left: 1px solid;
      color: #c4c4c4; }
    .request .actions-block .select-role {
      font-size: 14px;
      width: 140px;
      margin-right: 18px; }
  .request .actions-block-request-member {
    justify-content: space-between;
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    margin-bottom: 18px; }
    .request .actions-block-request-member .btn-action {
      padding: 10px 0;
      color: #959595;
      display: flex;
      align-items: center;
      margin-right: 18px;
      min-width: unset;
      transition: all ease 0.2s; }
      .request .actions-block-request-member .btn-action svg {
        margin-right: 5px; }
      .request .actions-block-request-member .btn-action:hover {
        color: #3431ac; }
    .request .actions-block-request-member .separator {
      margin: 10px 20px 10px 0;
      border-left: 1px solid;
      color: #c4c4c4; }
    .request .actions-block-request-member .select-role {
      font-size: 14px;
      width: 140px;
      margin-right: 18px; }
  .request .select-width {
    width: 75% !important;
    padding: 0px !important; }
  .request .send-invite {
    color: #3431ac; }
  .request .align-row {
    display: flex;
    align-items: center;
    height: 70px;
    margin-left: 0rem; }
  .request .member-table-header {
    display: flex;
    align-items: center; }

.member-icon {
  display: flex;
  padding-top: 5px; }
  .member-icon .decline-icon {
    margin-right: 10px; }

.member-status-icon {
  display: flex; }
  .member-status-icon .decline-icon {
    margin-right: 6px; }

.status-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 24px; }

.request-cell {
  height: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap; }

.CustomOption__container_memberRequest {
  display: flex;
  align-items: center;
  cursor: pointer;
  background: transparent; }
  .CustomOption__container_memberRequest .option-checkbox {
    margin-right: 0.5rem;
    background: transparent; }
.team-settings-root {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 32px; }

.team-settings-content {
  display: flex;
  flex-direction: column;
  gap: 24px; }

.team-settings-section {
  background: #ffffff;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  overflow: hidden; }
  .team-settings-section__header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 28px;
    border-bottom: 1px solid #f0f1f3;
    background: #fafbfc; }
  .team-settings-section__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #eeedfc 0%, #dddafa 100%);
    color: #3431ac;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px; }
  .team-settings-section__title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 4px;
    line-height: 1.4; }
  .team-settings-section__subtitle {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
    max-width: 520px; }
  .team-settings-section__body {
    padding: 24px 28px; }

.team-settings-unsaved-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background-color: #e3f2fd;
  border-bottom: 1px solid #90caf9;
  font-size: 14px;
  color: #1976d2; }
  .team-settings-unsaved-banner__icon {
    font-size: 20px;
    color: #1976d2;
    flex-shrink: 0; }

.team-settings-sticky-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
  position: sticky;
  bottom: 0px;
  z-index: 10;
  margin-top: 24px; }

.team-settings-cancel-btn {
  background: none;
  border: none;
  padding: 8px 20px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.15s ease; }
  .team-settings-cancel-btn:hover {
    color: #374151;
    background: #f3f4f6; }

.team-settings-save-btn {
  background: #3431ac;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease; }
  .team-settings-save-btn:hover {
    background: #2a279a;
    box-shadow: 0 2px 8px rgba(52, 49, 172, 0.3); }
  .team-settings-save-btn:active {
    transform: translateY(1px); }
.candidate-activity {
  color: #37474f;
  font-weight: 400;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  row-gap: 0px;
  margin: 0 4px;
  max-height: 700px;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none; }
  .candidate-activity::-webkit-scrollbar {
    display: none; }
  .candidate-activity .line-through {
    text-decoration: line-through;
    color: #b0bec5; }
  .candidate-activity .activity-record {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: background-color 0.1s ease; }
    .candidate-activity .activity-record:last-child {
      border-bottom: none; }
    .candidate-activity .activity-record .job-with-icon {
      display: flex;
      align-items: center;
      flex-wrap: wrap; }
    .candidate-activity .activity-record p {
      margin: 0;
      line-height: 1.5; }
    .candidate-activity .activity-record .medium-bold {
      font-weight: 500;
      color: #1a1a2e; }
    .candidate-activity .activity-record b {
      font-weight: 600;
      color: #1a1a2e; }
    .candidate-activity .activity-record .time {
      color: #b0bec5;
      text-align: end;
      flex-shrink: 0;
      font-size: 12px;
      font-weight: 400; }
    .candidate-activity .activity-record .additional-info {
      margin-left: 0.8em; }
    .candidate-activity .activity-record .ineligible-comment {
      font-size: 12px;
      color: #90a4ae; }
.Tracker-Candidate-parent {
  background: #ffffff;
  margin: 20px 0;
  padding: 20px 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px; }
  .Tracker-Candidate-parent .Tracker-Candidate-joining-date {
    margin-top: 16px; }
    .Tracker-Candidate-parent .Tracker-Candidate-joining-date .start-date {
      color: #1a1a2e;
      font-weight: 600;
      font-size: 15px; }
    .Tracker-Candidate-parent .Tracker-Candidate-joining-date .date {
      color: #78909c;
      margin: 8px 0 !important;
      font-size: 13px; }
  .Tracker-Candidate-parent .Tracker-Candidate-wrapper {
    margin-bottom: 16px; }
    .Tracker-Candidate-parent .Tracker-Candidate-wrapper span {
      color: #1a1a2e;
      font-weight: 600;
      font-size: 15px; }
    .Tracker-Candidate-parent .Tracker-Candidate-wrapper p:last-child {
      margin-bottom: 20px !important; }
    .Tracker-Candidate-parent .Tracker-Candidate-wrapper p {
      color: #78909c;
      margin: 8px 0 !important;
      font-size: 13px;
      line-height: 1.5; }
    .Tracker-Candidate-parent .Tracker-Candidate-wrapper .skills {
      margin-top: 10px;
      display: flex;
      flex-wrap: wrap;
      gap: 6px; }
      .Tracker-Candidate-parent .Tracker-Candidate-wrapper .skills .pills {
        padding: 4px 12px;
        background: #f8f9fb;
        border: 1px solid #e8eaed;
        border-radius: 100px;
        font-weight: 500;
        font-size: 12px;
        line-height: 16px;
        color: #546e7a;
        transition: all 0.15s ease; }
        .Tracker-Candidate-parent .Tracker-Candidate-wrapper .skills .pills:hover {
          background: #eef0f4;
          border-color: #d0d4da;
          cursor: pointer; }
  .Tracker-Candidate-parent .Tracker-Referral-Provider-separator {
    margin-top: 12px;
    width: auto;
    border: none;
    border-top: 1px solid #f0f0f0; }
  .Tracker-Candidate-parent .Tracker-Referral-Provider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 12px; }
    .Tracker-Candidate-parent .Tracker-Referral-Provider-wrapper .label-text {
      font-weight: 600;
      font-size: 15px;
      line-height: 20px;
      color: #1a1a2e; }
    .Tracker-Candidate-parent .Tracker-Referral-Provider-wrapper .information-btn {
      position: relative;
      height: 18px; }
      .Tracker-Candidate-parent .Tracker-Referral-Provider-wrapper .information-btn .information-icon {
        color: #b0bec5;
        margin: 0 10px;
        transition: color 0.15s ease; }
        .Tracker-Candidate-parent .Tracker-Referral-Provider-wrapper .information-btn .information-icon:hover {
          color: #78909c;
          cursor: pointer; }
      .Tracker-Candidate-parent .Tracker-Referral-Provider-wrapper .information-btn .information-text {
        background-color: white;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        border-radius: 8px;
        padding: 12px 16px;
        font-size: 12px;
        color: #78909c;
        position: absolute;
        bottom: 175%;
        left: -80%;
        width: 225px;
        visibility: hidden;
        line-height: 1.5; }
      .Tracker-Candidate-parent .Tracker-Referral-Provider-wrapper .information-btn .information-text:before {
        content: '';
        width: 0;
        height: 0;
        position: absolute;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid white;
        border-bottom: 8px solid transparent;
        bottom: -16px;
        left: 20%; }
      .Tracker-Candidate-parent .Tracker-Referral-Provider-wrapper .information-btn:hover .information-text {
        visibility: visible;
        cursor: pointer; }
  .Tracker-Candidate-parent .Tracker-Candidate-additional-wrapper {
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #f0f0f0;
    margin: 14px 0;
    border-radius: 10px;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.15s ease; }
    .Tracker-Candidate-parent .Tracker-Candidate-additional-wrapper:hover {
      background: #f5f5f5;
      border-color: #e0e0e0; }
    .Tracker-Candidate-parent .Tracker-Candidate-additional-wrapper span {
      color: #1a1a2e;
      font-weight: 500;
      font-size: 14px;
      line-height: 20px; }
    .Tracker-Candidate-parent .Tracker-Candidate-additional-wrapper .dropdown-icon {
      height: 20px;
      width: 20px;
      color: #90a4ae;
      transition: transform 0.2s ease; }
  .Tracker-Candidate-parent .Tracker-Candidate-additional-child {
    display: flex;
    flex-direction: column;
    padding: 0 8px; }
    .Tracker-Candidate-parent .Tracker-Candidate-additional-child .url-links {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 5px;
      margin-bottom: 12px; }
      .Tracker-Candidate-parent .Tracker-Candidate-additional-child .url-links span {
        margin-bottom: 0;
        margin-right: 3px; }
      .Tracker-Candidate-parent .Tracker-Candidate-additional-child .url-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 4px 8px;
        background: #f8f9fb;
        border: 1px solid #e8eaed;
        border-radius: 6px;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.15s ease; }
        .Tracker-Candidate-parent .Tracker-Candidate-additional-child .url-links a:hover {
          background: #eef0f4;
          border-color: #d0d4da; }
        .Tracker-Candidate-parent .Tracker-Candidate-additional-child .url-links a svg {
          width: 16px;
          height: 16px;
          fill: #546e7a; }
      .Tracker-Candidate-parent .Tracker-Candidate-additional-child .url-links .file-pill {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 4px 8px;
        background: #f8f9fb;
        border: 1px solid #e8eaed;
        border-radius: 6px;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.15s ease; }
        .Tracker-Candidate-parent .Tracker-Candidate-additional-child .url-links .file-pill:hover {
          background: #eef0f4;
          border-color: #d0d4da; }
        .Tracker-Candidate-parent .Tracker-Candidate-additional-child .url-links .file-pill svg {
          width: 16px;
          height: 16px; }
          .Tracker-Candidate-parent .Tracker-Candidate-additional-child .url-links .file-pill svg path {
            fill: #546e7a; }
    .Tracker-Candidate-parent .Tracker-Candidate-additional-child span {
      color: #37474f;
      font-size: 13px;
      margin-bottom: 10px;
      line-height: 1.5; }

.Tracker-Candidate-checkbox {
  border-top: 1px solid #f0f0f0;
  margin: 0;
  padding-top: 4px; }
  .Tracker-Candidate-checkbox .MuiFormControlLabel-root {
    display: flow-root !important; }
    .Tracker-Candidate-checkbox .MuiFormControlLabel-root .diversity-terms-label {
      color: #90a4ae;
      font-size: 14px;
      font-weight: 400; }

.suggested-by-block {
  display: flex;
  flex-direction: row;
  color: #90a4ae;
  font-size: 13px;
  margin: 0;
  align-items: center;
  gap: 4px; }
  .suggested-by-block .suggested-by-style {
    margin: 0; }
  .suggested-by-block span p {
    border: 1px solid #e8eaed;
    color: #546e7a;
    border-radius: 100px;
    padding: 3px 10px;
    margin-right: 4px;
    font-size: 11px;
    font-weight: 500;
    background: #f8f9fb; }
  .suggested-by-block span:last-child {
    display: flex;
    flex-direction: row; }

.textWrap {
  width: 100%;
  overflow-wrap: break-word; }

.Tracker-Application-Details-separator {
  margin-top: 12px;
  width: auto;
  border: none;
  border-top: 1px solid #f0f0f0; }

.Tracker-Application-Details-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 12px;
  margin-bottom: 10px; }
  .Tracker-Application-Details-wrapper .application-label-text {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    color: #1a1a2e; }
  .Tracker-Application-Details-wrapper .application-info-btn {
    position: relative;
    height: 18px; }
    .Tracker-Application-Details-wrapper .application-info-btn .application-info-icon {
      color: #b0bec5;
      margin: 0 10px;
      transition: color 0.15s ease; }
      .Tracker-Application-Details-wrapper .application-info-btn .application-info-icon:hover {
        color: #78909c;
        cursor: pointer; }
    .Tracker-Application-Details-wrapper .application-info-btn .application-info-text {
      background-color: white;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
      border-radius: 8px;
      padding: 12px 16px;
      font-size: 12px;
      color: #78909c;
      position: absolute;
      bottom: 175%;
      left: -80%;
      width: 225px;
      visibility: hidden;
      line-height: 1.5; }
    .Tracker-Application-Details-wrapper .application-info-btn .application-info-text:before {
      content: '';
      width: 0;
      height: 0;
      position: absolute;
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      border-top: 8px solid white;
      border-bottom: 8px solid transparent;
      bottom: -16px;
      left: 20%; }
    .Tracker-Application-Details-wrapper .application-info-btn:hover .application-info-text {
      visibility: visible;
      cursor: pointer; }

.Tracker-Application-Details-content {
  display: flex;
  flex-direction: column; }
  .Tracker-Application-Details-content span {
    color: #37474f;
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.5; }
.Tracker-Referral-parent {
  background: #ffffff;
  margin: 20px 0;
  padding: 20px 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px; }
  .Tracker-Referral-parent .Tracker-Candidate-wrapper {
    display: flex;
    align-items: center; }
    .Tracker-Referral-parent .Tracker-Candidate-wrapper .primary-referral-text {
      font-weight: 400;
      font-size: 12px;
      line-height: 16px;
      color: #b0bec5;
      margin-left: 6px;
      font-style: italic; }
    .Tracker-Referral-parent .Tracker-Candidate-wrapper p:last-child {
      margin-bottom: 20px !important; }
    .Tracker-Referral-parent .Tracker-Candidate-wrapper p {
      color: #78909c;
      margin: 8px 0 !important;
      font-size: 13px;
      line-height: 1.5; }
    .Tracker-Referral-parent .Tracker-Candidate-wrapper div {
      margin: 13px 0 3px 0;
      border-bottom: 1px solid #f0f0f0;
      padding-bottom: 30px; }
      .Tracker-Referral-parent .Tracker-Candidate-wrapper div span {
        border: 1px solid #444444;
        color: #444444;
        border-radius: 25px;
        padding: 3px 9px 3px 9px;
        margin-right: 4px;
        font-size: 12px; }
  .Tracker-Referral-parent .no-refferal-provider {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #1a1a2e; }
    .Tracker-Referral-parent .no-refferal-provider .direct-application {
      font-weight: 400;
      font-size: 13px;
      line-height: 18px;
      color: #90a4ae;
      margin-top: 4px; }
  .Tracker-Referral-parent .Tracker-Candidate-wrapper-details {
    margin-bottom: 16px; }
    .Tracker-Referral-parent .Tracker-Candidate-wrapper-details.greyout {
      opacity: 0.4; }
    .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .referral-opening {
      margin-bottom: 4px;
      font-size: 13px;
      line-height: 18px;
      color: #78909c; }
    .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .referral-sent {
      font-size: 12px;
      line-height: 16px;
      color: #b0bec5; }
    .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .candidate-message {
      margin-top: 10px;
      border: 1px solid #f0f0f0;
      border-radius: 10px;
      padding: 12px 14px;
      font-size: 13px;
      font-style: italic;
      line-height: 1.5;
      color: #78909c;
      background: #fafafa; }
    .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .Candidate-details {
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px; }
      .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .Candidate-details.top-margin {
        margin-top: 6px; }
      .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .Candidate-details .edit-btn {
        z-index: 1;
        position: relative;
        cursor: pointer;
        opacity: 0.6;
        transition: opacity 0.15s ease; }
        .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .Candidate-details .edit-btn:hover {
          opacity: 1; }
      .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .Candidate-details .referrer-name {
        font-weight: 600;
        font-size: 14px;
        line-height: 18px;
        color: #1a1a2e; }
      .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .Candidate-details .tool-tip-text {
        font-size: 12px;
        font-style: italic;
        font-weight: 500;
        line-height: 1;
        text-align: center;
        color: #b0bec5; }
      .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .Candidate-details .btn-color {
        padding-left: 65px;
        cursor: pointer !important;
        color: #d0d5dd !important;
        transition: color 0.15s ease; }
        .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .Candidate-details .btn-color:hover {
          color: #90a4ae !important; }
      .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .Candidate-details .unverfied-icon-btn {
        position: relative; }
        .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .Candidate-details .unverfied-icon-btn .unverfied-icon-text {
          visibility: hidden;
          position: absolute;
          top: -85px;
          right: -45px;
          background: #ffffff;
          height: 75px;
          width: 215px;
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
          border-radius: 8px;
          border: 1px solid rgba(0, 0, 0, 0.06); }
        .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .Candidate-details .unverfied-icon-btn .unverfied-icon-text:before {
          content: '';
          width: 0;
          height: 0;
          position: absolute;
          border-left: 8px solid transparent;
          border-right: 8px solid transparent;
          border-top: 8px solid white;
          border-bottom: 8px solid transparent;
          bottom: -16px;
          right: 20%; }
        .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .Candidate-details .unverfied-icon-btn:hover .unverfied-icon-text {
          visibility: visible; }
      .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .Candidate-details .verfied-icon-btn {
        position: relative; }
        .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .Candidate-details .verfied-icon-btn .verfied-icon-text {
          visibility: hidden;
          position: absolute;
          top: -65px;
          right: -43px;
          background: #ffffff;
          height: 55px;
          width: 210px;
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
          border-radius: 8px;
          border: 1px solid rgba(0, 0, 0, 0.06); }
        .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .Candidate-details .verfied-icon-btn .verfied-icon-text:before {
          content: '';
          width: 0;
          height: 0;
          position: absolute;
          border-left: 8px solid transparent;
          border-right: 8px solid transparent;
          border-top: 8px solid white;
          border-bottom: 8px solid transparent;
          bottom: -16px;
          right: 20%; }
        .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .Candidate-details .verfied-icon-btn:hover .verfied-icon-text {
          visibility: visible; }
      .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .Candidate-details .default-pill {
        border: 1px solid #444444;
        color: #444444;
        border-radius: 4px;
        padding: 2px 6px;
        font-size: 12px; }
        .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .Candidate-details .default-pill.green {
          border: 1px solid #3431AC;
          color: #3431AC; }
        .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .Candidate-details .default-pill.green-round {
          border: 1px solid #3431AC;
          border-radius: 10px;
          color: #3431AC; }
        .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .Candidate-details .default-pill.blue {
          border: 1px solid #2867B2;
          color: #2867B2; }
        .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .Candidate-details .default-pill.red {
          border: 1px solid #E74C3C;
          color: #E74C3C; }
        .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .Candidate-details .default-pill.purple {
          border: 1px solid #9B59B6;
          color: #9B59B6; }
        .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .Candidate-details .default-pill.ineligible {
          background: #EBEEF1;
          color: #6A7383;
          border: unset; }
        .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .Candidate-details .default-pill.eligible {
          background: #EBEEF1;
          color: #6A7383;
          border: unset; }
        .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .Candidate-details .default-pill.clickable {
          cursor: pointer;
          transition: all 0.2s ease; }
          .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .Candidate-details .default-pill.clickable:hover {
            opacity: 0.8;
            transform: translateY(-1px); }
          .Tracker-Referral-parent .Tracker-Candidate-wrapper-details .Candidate-details .default-pill.clickable:active {
            transform: translateY(0); }
.EditProvider__container .modal-body {
  text-align: center; }

.EditProvider__container .edit-icon-parent {
  display: flex;
  justify-content: center;
  margin-bottom: 16px; }
  .EditProvider__container .edit-icon-parent svg {
    display: block; }

.EditProvider__container .edit-modal-heading {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: #1a1a2e;
  margin-bottom: 8px; }

.EditProvider__container .edit-modal-subheading {
  display: block;
  font-size: 14px;
  color: #374151;
  line-height: 1.6; }

.EditProvider__container .duration-inputs {
  margin-top: 16px;
  text-align: left; }
  .EditProvider__container .duration-inputs .duration-select-container {
    width: 100%; }

.option-checkbox {
  color: #ffffff;
  background: transparent; }

.primary-referral {
  font-family: Roboto;
  font-size: 12px;
  font-style: italic; }

.referral .disable-select {
  pointer-events: none; }

.referral__select-option {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .referral__select-option .option-detail {
    display: flex;
    align-items: center;
    min-height: 60px; }
    .referral__select-option .option-detail .display-ineligible-row {
      opacity: 0.4; }
    .referral__select-option .option-detail .info {
      display: flex;
      flex-direction: column; }
      .referral__select-option .option-detail .info .title {
        display: flex;
        align-items: center;
        font-weight: 500;
        font-size: 14px;
        line-height: 16px;
        color: #18332f; }
        .referral__select-option .option-detail .info .title svg {
          color: #444444;
          opacity: 0.6;
          margin-left: 9px;
          width: 14px; }
      .referral__select-option .option-detail .info .address {
        font-weight: 500;
        font-size: 12px;
        line-height: 14px;
        color: #444444;
        opacity: 0.6; }
    .referral__select-option .option-detail img {
      margin-right: 8px; }
  .referral__select-option .default-pill {
    border: 1px solid #444444;
    color: #444444;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 12px; }
    .referral__select-option .default-pill.green {
      border: 1px solid #3431ac;
      color: #3431ac; }
    .referral__select-option .default-pill.green-round {
      border: 1px solid #3431ac;
      border-radius: 10px;
      color: #3431ac; }
    .referral__select-option .default-pill.blue {
      border: 1px solid #2867b2;
      color: #2867b2; }
    .referral__select-option .default-pill.ineligible {
      background: #ebeef1;
      color: #6a7383;
      border: unset; }
.ReferralEligibilityModal__container .reward-text-header {
  font-weight: 500;
  margin-bottom: 12px; }

.ReferralEligibilityModal__container .divider-line {
  border: none;
  border-top: 1px solid #f0f1f3;
  margin: 16px 0; }

.ReferralEligibilityModal__container .MuiOutlinedInput-root {
  width: 100%;
  border-radius: 8px; }
.tracker-tags-cont {
  padding: 20px 24px;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  margin-bottom: 24px; }
  .tracker-tags-cont .option-checkbox {
    display: none;
    background: transparent; }
  .tracker-tags-cont .redux-select-latest-container .Select-multi-value-wrapper {
    margin-top: 8px; }
    .tracker-tags-cont .redux-select-latest-container .Select-multi-value-wrapper .Select-value {
      padding: 7px 36px 7px 14px !important;
      background: rgba(52, 49, 172, 0.04) !important;
      border: 1px solid #3431ac !important;
      border-radius: 25px !important; }
      .tracker-tags-cont .redux-select-latest-container .Select-multi-value-wrapper .Select-value .Select-value-icon {
        width: 20px !important;
        height: 20px !important;
        background-color: #3431ac !important;
        background-image: none !important;
        top: 50% !important;
        right: 8px !important;
        margin-top: -10px !important;
        color: #fff !important;
        font-weight: bold !important;
        text-align: center !important;
        border-radius: 10px !important;
        font-size: 14px !important;
        line-height: 20px !important;
        opacity: 1; }
        .tracker-tags-cont .redux-select-latest-container .Select-multi-value-wrapper .Select-value .Select-value-icon:hover {
          background-color: #2a28a0 !important; }
      .tracker-tags-cont .redux-select-latest-container .Select-multi-value-wrapper .Select-value .Select-value-label {
        font-size: 13px;
        font-weight: 500;
        color: #3431ac !important; }
.TrackerRewards__container {
  background-color: white;
  padding: 20px 24px;
  margin: 20px 0px;
  border-radius: 10px;
  border: 1px solid #e5e7eb; }
  .TrackerRewards__container .table-wrapper .table-container {
    margin-bottom: 0; }
    .TrackerRewards__container .table-wrapper .table-container table {
      width: 100%;
      border-collapse: collapse;
      border-spacing: 0; }
      .TrackerRewards__container .table-wrapper .table-container table td,
      .TrackerRewards__container .table-wrapper .table-container table th {
        text-align: left;
        vertical-align: middle; }
      .TrackerRewards__container .table-wrapper .table-container table td {
        padding: 12px 16px;
        font-size: 13px;
        color: #374151;
        border-bottom: 1px solid #f0f1f5; }
      .TrackerRewards__container .table-wrapper .table-container table thead {
        background: #f9fafb;
        box-shadow: inset 0 -1px 0 #e5e7eb; }
      .TrackerRewards__container .table-wrapper .table-container table th {
        padding: 12px 16px;
        font-size: 12px;
        font-weight: 600;
        color: #6b7280;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        white-space: nowrap; }
    .TrackerRewards__container .table-wrapper .table-container .payout-record {
      position: relative;
      transition: background-color 0.15s ease; }
      .TrackerRewards__container .table-wrapper .table-container .payout-record:hover {
        background-color: #f9fafb; }
      .TrackerRewards__container .table-wrapper .table-container .payout-record .payouts-additional-info {
        position: absolute;
        top: calc(100% + 2px);
        left: 0;
        right: 0;
        display: none;
        z-index: 3;
        background: #ffffff;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        border-radius: 0 0 10px 10px;
        border: 1px solid rgba(0, 0, 0, 0.06);
        padding: 0 16px 16px; }
        .TrackerRewards__container .table-wrapper .table-container .payout-record .payouts-additional-info .info-heading {
          font-weight: 600;
          font-size: 11px;
          line-height: 14px;
          text-transform: uppercase;
          letter-spacing: 0.5px;
          color: #90a4ae;
          margin-top: 12px; }
        .TrackerRewards__container .table-wrapper .table-container .payout-record .payouts-additional-info .info-details {
          font-weight: 400;
          font-size: 13px;
          line-height: 18px;
          text-transform: capitalize;
          color: #37474f;
          margin-top: 4px; }
      .TrackerRewards__container .table-wrapper .table-container .payout-record:hover .payouts-additional-info {
        display: block; }
    .TrackerRewards__container .table-wrapper .table-container .experiential_rewards-text {
      font-weight: 500;
      font-size: 12px;
      line-height: 16px;
      color: #b040c2; }
    .TrackerRewards__container .table-wrapper .table-container .monetary_reward-text {
      font-weight: 500;
      font-size: 12px;
      line-height: 16px;
      color: #3431ac; }
    .TrackerRewards__container .table-wrapper .table-container .payout-status {
      border-radius: 100px;
      padding: 3px 10px;
      margin-right: 4px;
      font-size: 11px;
      font-weight: 500;
      line-height: 16px;
      text-transform: capitalize; }
      .TrackerRewards__container .table-wrapper .table-container .payout-status.due {
        color: #e65100;
        background-color: #fff3e0; }
      .TrackerRewards__container .table-wrapper .table-container .payout-status.paid {
        color: #3431ac;
        background-color: #ededfc; }
      .TrackerRewards__container .table-wrapper .table-container .payout-status.past_due {
        color: #c62828;
        background-color: #fce4ec; }
      .TrackerRewards__container .table-wrapper .table-container .payout-status.ineligible {
        color: #78909c;
        background-color: #f5f5f5; }
      .TrackerRewards__container .table-wrapper .table-container .payout-status.open {
        color: #00838f;
        background-color: #e0f7fa; }
      .TrackerRewards__container .table-wrapper .table-container .payout-status.tbd {
        color: #b0bec5;
        border: 1px solid #e0e0e0;
        background: #fafafa; }
    .TrackerRewards__container .table-wrapper .table-container .green-pill {
      color: #3431ac;
      background-color: #ededfc;
      border-radius: 100px;
      padding: 3px 10px;
      margin-right: 4px;
      font-size: 11px;
      font-weight: 500; }
    .TrackerRewards__container .table-wrapper .table-container .red-pill {
      color: #c62828;
      background-color: #fce4ec;
      border-radius: 100px;
      padding: 3px 10px;
      margin-right: 4px;
      font-size: 11px;
      font-weight: 500; }
  .TrackerRewards__container .additional-reward-info {
    display: flex;
    align-items: center;
    padding: 16px 0 0; }
    .TrackerRewards__container .additional-reward-info .info-text {
      font-weight: 400;
      font-size: 12px;
      line-height: 16px;
      color: #b0bec5;
      margin-right: 8px; }
  .TrackerRewards__container .total-rewards {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    background: #fafafa;
    overflow: hidden;
    margin-bottom: 16px; }
    .TrackerRewards__container .total-rewards .monetery {
      font-weight: 500;
      font-size: 14px;
      line-height: 18px;
      color: #1a1a2e;
      margin: 14px 16px 10px;
      display: flex; }
      .TrackerRewards__container .total-rewards .monetery .monetery-rewards {
        margin-left: 24px;
        font-weight: 600;
        font-size: 13px;
        line-height: 18px;
        color: #3431ac; }
    .TrackerRewards__container .total-rewards .experiential {
      font-weight: 500;
      font-size: 14px;
      line-height: 18px;
      color: #1a1a2e;
      margin: 0 16px 14px; }
      .TrackerRewards__container .total-rewards .experiential .experiential-rewards {
        margin-left: 16px;
        font-weight: 600;
        font-size: 13px;
        line-height: 18px;
        color: #b040c2; }
.tracker-disabled-wrapper {
  display: flex;
  align-items: center;
  justify-content: center; }

.tracker-disabled-column {
  display: flex;
  flex-direction: column;
  margin: 2em 17em 0 17em; }
  .tracker-disabled-column .back-button {
    padding-bottom: 2em; }

.tracker-disabled-prompt {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  text-align: center;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 2px 4px 0 rgba(147, 157, 177, 0.1);
  width: 600px;
  min-height: 130px; }

.tracker-disabled-heading {
  background: #f4f5f8;
  color: #333333;
  padding: 12px 0px 1px 0px;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  height: 55px;
  width: 600px; }

.tracker-disabled-description {
  padding: 2rem 4em 1em 1.5rem;
  color: #444;
  text-align: left;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal; }

.tracker-disabled-link {
  color: #007bff;
  text-decoration: none; }

.tracker-disabled-link:hover {
  text-decoration: underline; }

.text-size {
  width: 500px;
  margin-top: -15px; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.teams {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column; }
  .teams .table-container {
    height: auto;
    background: #fff;
    overflow: hidden; }
    .teams .table-container .table-actions {
      position: relative; }
      .teams .table-container .table-actions .dropdown__trigger {
        display: flex;
        width: 20px;
        height: 20px;
        justify-content: center;
        align-items: center;
        cursor: pointer; }
      .teams .table-container .table-actions .dropdown__content {
        background-color: #ffffff;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        z-index: 1111111;
        width: 160px; }
        .teams .table-container .table-actions .dropdown__content ul {
          list-style-type: none; }
        .teams .table-container .table-actions .dropdown__content li {
          font-size: 13px;
          font-weight: 400;
          line-height: 2.4;
          color: #374151;
          padding: 0 18px;
          border-bottom: 1px solid #f0f1f5;
          white-space: nowrap;
          cursor: pointer;
          transition: background-color 0.15s ease; }
          .teams .table-container .table-actions .dropdown__content li:hover {
            background-color: #f9fafb; }
          .teams .table-container .table-actions .dropdown__content li:last-of-type {
            border: none; }
    .teams .table-container .table-checkbox {
      position: absolute;
      opacity: 0;
      margin: 0;
      width: 18px;
      height: 18px; }
      .teams .table-container .table-checkbox + label {
        position: relative;
        cursor: pointer;
        padding: 0; }
      .teams .table-container .table-checkbox + label:before {
        content: '';
        display: inline-block;
        vertical-align: text-top;
        width: 18px;
        height: 18px;
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 4px;
        transition: background-color 0.15s ease, border-color 0.15s ease; }
      .teams .table-container .table-checkbox:checked + label:before {
        background: #3431AC;
        border-color: #3431AC; }
      .teams .table-container .table-checkbox:checked + label:after {
        content: '';
        position: absolute;
        left: 5px;
        top: 9px;
        background: white;
        width: 2px;
        height: 2px;
        box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
        transform: rotate(45deg); }
    .teams .table-container .sort-icon {
      display: inline-block;
      vertical-align: middle;
      font-size: 10px;
      margin-left: 10px;
      color: #3431AC; }
      .teams .table-container .sort-icon.up {
        transform: rotate(180deg); }
    .teams .table-container .order-position {
      display: inline-block;
      padding: 3px 5px;
      font-size: 10px;
      color: #3431AC; }
    .teams .table-container .status {
      text-transform: capitalize; }
      .teams .table-container .status.active {
        color: #2a2889; }
      .teams .table-container .status.invite {
        color: #ffa722; }
    .teams .table-container .select .Select-control .Select-value .Select-value-label {
      color: #c2c2c2 !important;
      font-weight: normal; }
    .teams .table-container .select .Select-control .Select-arrow {
      color: #959595; }
  .teams .loading-in-main {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    top: 0;
    left: 0; }
  .teams .Select .Select-control {
    height: 40px; }
    .teams .Select .Select-control .Select-placeholder {
      line-height: 38px; }
    .teams .Select .Select-control .Select-input {
      height: 38px; }
    .teams .Select .Select-control .Select-arrow-zone .Select-arrow {
      color: #c2c2c2; }
  .teams .header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 30px;
    flex: 0 0 auto;
    background-color: #fff;
    min-height: 70px;
    box-shadow: 0 2px 5px 0 rgba(196, 206, 220, 0.5);
    position: relative;
    z-index: 1;
    /* Hosts AppSearchField in header row; input metrics live in AppSearchField.scss (+ app-search-field-input mixin) */ }
    .teams .header .page-title {
      display: flex;
      align-items: center;
      min-width: 122px;
      padding: 10px 30px;
      border-right: 1px solid #e8e8e8; }
      .teams .header .page-title h2 {
        font-size: 20px;
        font-weight: bold;
        color: #18332f; }
    .teams .header .subtitle {
      text-align: center;
      margin-top: 20px;
      color: #414141; }
    .teams .header .about-roles {
      text-align: center;
      margin-top: 25px; }
    .teams .header .search-block {
      flex: 1 1 auto;
      min-width: 0;
      width: 100%;
      display: block;
      padding: 10px 30px; }
    .teams .header .header-functionality {
      border-left: 1px solid #e8e8e8;
      display: flex;
      align-items: center;
      padding: 0 30px; }
      .teams .header .header-functionality .bulk-select-wrapper {
        display: flex;
        align-items: center;
        border-left: 1px solid #e8e8e8;
        height: 100%;
        padding-left: 30px; }
        .teams .header .header-functionality .bulk-select-wrapper .Select {
          flex: 0 0 auto;
          width: 170px; }
        .teams .header .header-functionality .bulk-select-wrapper .select-label {
          color: #a5adac;
          font-size: 12px;
          margin-right: 20px; }
      .teams .header .header-functionality .btn {
        padding: 10px 15px;
        min-width: 140px; }
      .teams .header .header-functionality .bulk-actions {
        display: flex;
        align-items: center; }
        .teams .header .header-functionality .bulk-actions .bulk-button {
          margin-right: 30px;
          margin-top: 4px; }
  .teams .row-text {
    color: #374151; }
  .teams .member-tabs {
    display: flex;
    border-bottom: 1px solid #e2e2e2;
    margin-bottom: 16px;
    gap: 0; }
  .teams .member-tab {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #959595;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px; }
    .teams .member-tab:hover {
      color: #444444; }
    .teams .member-tab--active {
      color: #444444;
      border-bottom-color: #3431ac; }
  .teams .member-tab__count {
    background: #f0f0f0;
    color: #727272;
    font-size: 12px;
    font-weight: 600;
    padding: 1px 8px;
    border-radius: 10px;
    min-width: 24px;
    text-align: center; }
    .member-tab--active .teams .member-tab__count {
      background: #eeedf9;
      color: #3431ac; }
  .teams .members-dropdown {
    width: -moz-fit-content;
    width: fit-content;
    float: right;
    padding-left: 0 !important;
    margin-left: 18px; }
  .teams .tabs-opening {
    padding-top: 27px; }
    .teams .tabs-opening .rc-tabs-tab {
      display: inline-block;
      padding: 0 15px 10px;
      cursor: pointer;
      color: #959595;
      margin-right: 20px; }
    .teams .tabs-opening .rc-tabs-tab-active {
      color: #444444;
      border-bottom: 3px solid #3431ac; }
    .teams .tabs-opening .rc-tabs-nav-wrap {
      border-bottom: 1px solid #e2e2e2; }
      .teams .tabs-opening .rc-tabs-nav-wrap .rc-tabs-nav-scroll {
        padding-left: 25px;
        padding-right: 25px; }
    @media (max-width: 540px) {
      .teams .tabs-opening {
        padding-top: 12px;
        box-shadow: 0px 4px 4px rgba(147, 157, 177, 0.15);
        background: #ffffff; }
        .teams .tabs-opening .rc-tabs-tab {
          padding: 0 2px 10px;
          margin-right: 20px; } }
  .teams .teams-container {
    margin-top: 15px;
    padding: 0 52px 0 38px;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column; }
    @media (max-width: 540px) {
      .teams .teams-container {
        padding: 0; } }
  .teams .actions-container {
    display: flex;
    justify-content: space-between; }
    @media (max-width: 540px) {
      .teams .actions-container {
        padding: 0 10px;
        justify-content: center !important; }
        .teams .actions-container button {
          width: calc(100vw - 60px); } }
    .teams .actions-container img {
      width: 14px;
      height: 10px;
      cursor: pointer; }
    .teams .actions-container .drop-down-m {
      margin: 0px auto; }
    .teams .actions-container .options-cont {
      display: flex;
      align-items: center;
      height: 40px; }
      .teams .actions-container .options-cont .FiltersDrawer__container {
        height: 40px; }
    .teams .actions-container .team-actions {
      position: relative;
      margin-bottom: 18px;
      display: none;
      margin-left: 5px; }
      @media (max-width: 960px) {
        .teams .actions-container .team-actions {
          display: flex; } }
      .teams .actions-container .team-actions .dropdown__trigger {
        display: flex;
        width: 20px;
        height: 20px;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        margin: auto; }
      .teams .actions-container .team-actions .dropdown__content {
        background-color: #ffffff;
        box-shadow: 0px 4px 10px 0px #0000001a;
        border-radius: 4px;
        z-index: 1111111;
        width: 150px; }
        .teams .actions-container .team-actions .dropdown__content ul {
          list-style-type: none; }
        .teams .actions-container .team-actions .dropdown__content li {
          font-size: 12px;
          line-height: 300.5%;
          color: rgba(25, 25, 25, 0.6);
          padding: 0 30px 0 18px;
          border-bottom: 1px solid #e2e2e2;
          cursor: pointer; }
          .teams .actions-container .team-actions .dropdown__content li:last-of-type {
            border: none; }
  .teams .search-block {
    width: 98%;
    min-width: 0;
    position: relative;
    margin-bottom: 18px; }
  .teams .functionality-block {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px; }
    .teams .functionality-block .referral-block {
      display: flex;
      align-items: center; }
    .teams .functionality-block .information-btn {
      position: relative; }
      .teams .functionality-block .information-btn .information-icon {
        color: #959595;
        margin: 0 12px; }
      .teams .functionality-block .information-btn .information-text {
        background-color: white;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        padding: 25% 35%;
        font-size: 10px;
        color: #aaaaaa;
        position: absolute;
        bottom: 200%;
        right: -50%;
        width: 170px;
        visibility: hidden; }
      .teams .functionality-block .information-btn .information-text:before {
        content: '';
        width: 0px;
        height: 0px;
        position: absolute;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid white;
        border-bottom: 10px solid transparent;
        bottom: -20px;
        right: 20%; }
      .teams .functionality-block .information-btn:hover .information-text {
        visibility: visible; }
    .teams .functionality-block .button-group {
      display: flex; }
      .teams .functionality-block .button-group .history_botton {
        margin-top: 3px;
        width: 33px;
        height: 33px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer; }
        .teams .functionality-block .button-group .history_botton:hover {
          background-color: #eeeeee; }
      .teams .functionality-block .button-group .btn {
        margin-right: 12px;
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center; }
        .teams .functionality-block .button-group .btn img {
          margin-right: 3px; }
      .teams .functionality-block .button-group .import-contacts-btn {
        gap: 10px; }
    .teams .functionality-block .referral-link {
      position: relative; }
      .teams .functionality-block .referral-link input {
        padding: 8px 60px 8px 10px;
        border-radius: 4px;
        border: none;
        line-height: 24px;
        color: #00000059;
        width: 300px;
        background-color: rgba(0, 0, 0, 0.03); }
      .teams .functionality-block .referral-link label {
        position: absolute;
        font-size: 11px;
        line-height: 13px;
        font-weight: 500;
        color: #aaaaaa;
        top: -6px;
        left: 10px; }
      .teams .functionality-block .referral-link .copy-button {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        padding: 10px 15px;
        min-width: -moz-fit-content;
        min-width: fit-content;
        display: inline-flex;
        justify-content: center;
        align-items: center; }
    .teams .functionality-block .pending-active-members {
      position: relative; }
      .teams .functionality-block .pending-active-members .pending-dot {
        position: absolute;
        top: 2px;
        right: 35px; }
  .teams .actions-block {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    margin-bottom: 18px; }
    .teams .actions-block .btn-action {
      padding: 10px 0;
      color: #959595;
      display: flex;
      align-items: center;
      margin-right: 18px;
      min-width: unset;
      transition: all ease 0.2s; }
      .teams .actions-block .btn-action svg {
        margin-right: 5px; }
      .teams .actions-block .btn-action:hover {
        color: #3431ac; }
    .teams .actions-block .separator {
      margin: 10px 20px 10px 0;
      border-left: 1px solid;
      color: #c4c4c4; }
    .teams .actions-block .select-role {
      font-size: 14px;
      width: 140px;
      margin-right: 18px; }
  .teams .select-width {
    width: 75% !important;
    padding: 0px !important; }
  .teams .send-invite {
    color: #3431ac; }
  .teams .align-row {
    align-items: center;
    height: 70px; }
  .teams .member-tab-content-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 350px);
    width: 100%; }
    .teams .member-tab-content-empty .empty-members {
      min-height: unset;
      padding: 40px 20px; }
  .teams .member-tab-content {
    position: relative;
    min-height: 200px; }
  .teams .bulk-action-processing {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    padding: 0 4px; }

.table-container {
  overflow-x: auto;
  overflow-y: auto; }

.team-menu-text {
  margin-left: 5px; }

.employee-name-container {
  display: flex;
  align-items: center; }

.employee-name {
  flex: 1; }

.integration-favicon-logo {
  width: 12px;
  margin-left: 5px; }
.ats-sync-alert-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #fef3f2;
  border: 1px solid #fecdca;
  border-radius: 8px;
  padding: 12px 20px;
  margin: 12px 30px 0; }
  .ats-sync-alert-banner__icon {
    flex-shrink: 0;
    color: #d92d20;
    display: flex;
    align-items: center; }
  .ats-sync-alert-banner__message {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #b42318;
    line-height: 1.4;
    flex: 1; }
  .ats-sync-alert-banner__link {
    color: #b42318;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    white-space: nowrap; }
    .ats-sync-alert-banner__link:hover {
      color: #912018; }
.tracker-upgrade-banner {
  background-color: #eeedf7;
  border: 1px solid #3431AC;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 16px;
  text-align: left; }
  .tracker-upgrade-banner__headline {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 700;
    color: #00563b;
    line-height: 1.4; }
  .tracker-upgrade-banner__body {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #3431AC;
    line-height: 1.4; }
.tracker .archived-list-filters {
  display: flex;
  align-items: center;
  gap: 15px; }
  .tracker .archived-list-filters .select-archived-reason {
    min-width: 160px; }
  .tracker .archived-list-filters .vertical-bar {
    background: #D1D8DC;
    width: 1px;
    height: 30px; }
  .tracker .archived-list-filters .archived-search-results {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    line-height: 16px;
    text-decoration-line: underline;
    color: #444444;
    cursor: pointer; }

.tracker .tracker-table-pagination {
  margin: 0; }

.tracker .capitalize {
  text-transform: capitalize; }

.tracker td .candidate_name {
  cursor: pointer; }

.tracker td .archived-status {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  background: #EEEEEE;
  border-radius: 4px;
  padding: 2px 6px;
  white-space: nowrap;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  letter-spacing: 0.5625px;
  color: #444444; }
  .tracker td .archived-status span {
    margin-left: 4px; }
  .tracker td .archived-status.hired {
    background-color: #e8e7f5;
    color: #3431AC; }
  .tracker td .archived-status.disable {
    opacity: 0.6; }
.tracker .payout-table-pagination {
  margin: 0; }
.tracker .payout-table-pagination {
  margin: 0; }

.tracker .capitalize {
  text-transform: capitalize; }

.tracker td .candidate_name {
  cursor: pointer; }

.tracker td .edited-div {
  display: inline;
  font-size: 12px;
  font-weight: 500;
  color: #AAAAAA; }

.tracker td .payout-status {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #EEEEEE;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5625px;
  color: #444444;
  text-transform: capitalize; }
  .tracker td .payout-status .tooltip-container {
    display: flex;
    align-items: center; }
  .tracker td .payout-status.paid {
    background-color: #e8e7f5;
    color: #1e1b5e; }
  .tracker td .payout-status.open {
    background-color: #CFF5F6;
    color: #2767C2; }
  .tracker td .payout-status.past_due {
    background-color: #FFE7F2;
    color: #B3063D; }
  .tracker td .payout-status.due {
    background-color: #FCEDB9;
    color: #DA6B05; }
  .tracker td .payout-status.blocked {
    background-color: #F58B00;
    color: #FFF; }
  .tracker td .payout-status.disputed {
    background-color: #DF1B41;
    color: #FFF; }
  .tracker td .payout-status.disable {
    opacity: 0.6; }

.actions-block {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap; }
  .actions-block .btn-action {
    padding: 10px 0;
    color: #959595;
    display: flex;
    align-items: center;
    margin-right: 18px;
    min-width: unset;
    transition: all ease 0.2s; }
    .actions-block .btn-action svg {
      margin-right: 5px; }
    .actions-block .btn-action:hover {
      color: #3431AC; }
  .actions-block .separator {
    margin: 10px 20px 10px 0;
    border-left: 1px solid;
    color: #c4c4c4; }
  .actions-block .select-role {
    font-size: 14px;
    width: 140px;
    margin-right: 18px; }
.container {
  padding: 2rem; }
  .container .backBtn {
    text-transform: 'none';
    margin-bottom: 8px; }
  .container .contentContainer {
    width: 50%;
    background-color: #FFFFFF;
    padding: 2rem;
    display: flex;
    flex-direction: column; }
    .container .contentContainer .headerContent {
      display: flex; }
      .container .contentContainer .headerContent .headerTitle {
        color: black;
        font-weight: 700;
        font-size: 18px;
        flex-grow: 1; }
      .container .contentContainer .headerContent .copyBtn {
        font-weight: 400;
        font-size: 12px;
        color: #959595;
        margin: unset; }
        .container .contentContainer .headerContent .copyBtn:hover {
          background: unset;
          text-decoration: underline; }
    .container .contentContainer .footerContent {
      font-style: italic;
      font-size: 14px; }
      .container .contentContainer .footerContent .footerTitle {
        font-weight: 500;
        color: #959595;
        margin-bottom: 0.3rem; }
      .container .contentContainer .footerContent .footerList {
        font-weight: 400;
        color: #9B9B9B;
        padding-left: 1rem; }
    .container .contentContainer .content {
      font-size: 14px;
      border: 1px solid #EEEEEE;
      padding: 1rem;
      border-radius: 4px;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      text-align: left;
      width: 100%; }
      .container .contentContainer .content .twoFieldContent {
        display: flex;
        justify-content: space-between;
        width: 100%; }
      .container .contentContainer .content .topRow {
        display: flex; }
        .container .contentContainer .content .topRow .editBtn {
          border: none;
          background-color: transparent;
          padding: unset;
          height: -moz-fit-content;
          height: fit-content; }
      .container .contentContainer .content .fieldContent {
        width: 100%; }
        .container .contentContainer .content .fieldContent .label {
          color: #000000; }
        .container .contentContainer .content .fieldContent .detail {
          color: #808080; }
  .container .actionsContainer {
    width: 50%;
    display: flex;
    gap: 5px;
    justify-content: flex-end;
    padding-top: 1rem;
    padding-right: 0.5rem; }
  @media only screen and (max-width: 1200px) {
    .container {
      width: 90%; }
      .container .contentContainer {
        width: 100%; }
      .container .actionsContainer {
        width: 100%; } }
  @media only screen and (max-width: 576px) {
    .container {
      width: 100%;
      padding: unset;
      padding-bottom: 4rem; }
      .container .twoFieldContent {
        flex-direction: column; }
      .container .contentContainer {
        padding: 1rem; }
      .container .actionsContainer {
        flex-direction: column;
        padding-right: unset; } }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.Oppertunity__Containor {
  display: flex;
  padding-top: 1rem;
  justify-content: center; }
  .Oppertunity__Containor .details-background {
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative; }
    .Oppertunity__Containor .details-background .logo {
      position: absolute;
      bottom: -60px;
      left: 40px;
      z-index: 1;
      box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); }
      @media (max-width: 540px) {
        .Oppertunity__Containor .details-background .logo {
          bottom: auto;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); } }
      .Oppertunity__Containor .details-background .logo img {
        display: block;
        border-radius: 10px;
        max-height: 160px;
        max-width: 160px; }
  .Oppertunity__Containor .details-info {
    padding: 60px 40px 25px;
    position: relative; }
    .Oppertunity__Containor .details-info .func-buttons-container {
      position: absolute;
      top: -25px;
      right: 40px;
      z-index: 5; }
      @media (max-width: 540px) {
        .Oppertunity__Containor .details-info .func-buttons-container {
          right: auto;
          left: 50%;
          transform: translateX(-50%); } }
      .Oppertunity__Containor .details-info .func-buttons-container .btn {
        min-width: 140px;
        margin-left: 20px; }
    .Oppertunity__Containor .details-info .dashboard-sides-container {
      display: flex; }
      .Oppertunity__Containor .details-info .dashboard-sides-container .left-side {
        width: 61.2%;
        margin-right: 0;
        flex: 0 0 auto; }
      .Oppertunity__Containor .details-info .dashboard-sides-container .right-side {
        width: calc(38.8% - 30px);
        flex: 0 0 auto; }
      @media (max-width: 960px) {
        .Oppertunity__Containor .details-info .dashboard-sides-container {
          display: block; }
          .Oppertunity__Containor .details-info .dashboard-sides-container .left-side,
          .Oppertunity__Containor .details-info .dashboard-sides-container .right-side {
            width: 100%;
            margin-right: 0;
            margin-bottom: 40px; } }
    .Oppertunity__Containor .details-info .sides-container {
      display: flex;
      max-width: 1000px;
      margin: auto; }
      .Oppertunity__Containor .details-info .sides-container .left-side {
        width: 71.2%;
        margin-right: 0;
        flex: 0 0 auto; }
      .Oppertunity__Containor .details-info .sides-container .right-side {
        width: calc(38.8% - 30px);
        flex: 0 0 auto; }
      @media (max-width: 960px) {
        .Oppertunity__Containor .details-info .sides-container {
          display: block; }
          .Oppertunity__Containor .details-info .sides-container .left-side,
          .Oppertunity__Containor .details-info .sides-container .right-side {
            width: 100%;
            margin-right: 0;
            margin-bottom: 40px; } }
    .Oppertunity__Containor .details-info .sides-container-reverse {
      display: flex; }
      .Oppertunity__Containor .details-info .sides-container-reverse .left-side {
        width: 20%;
        flex: 0 0 auto;
        padding-top: 36px; }
      .Oppertunity__Containor .details-info .sides-container-reverse .right-side {
        width: 60%;
        flex: 0 0 auto; }
      @media (max-width: 960px) {
        .Oppertunity__Containor .details-info .sides-container-reverse {
          display: block; }
          .Oppertunity__Containor .details-info .sides-container-reverse .right-side {
            width: 100%;
            margin-right: 0;
            margin-bottom: 40px; }
          .Oppertunity__Containor .details-info .sides-container-reverse .left-side {
            display: none; } }
    .Oppertunity__Containor .details-info .main-container {
      padding: 30px;
      background-color: #ffffff;
      border-radius: 4px;
      box-shadow: 0px 2px 4px rgba(147, 157, 177, 0.25); }
      .Oppertunity__Containor .details-info .main-container .title-default-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px; }
      .Oppertunity__Containor .details-info .main-container .main-container-title {
        font-size: 20px;
        color: #444444;
        font-weight: 700;
        margin-bottom: 24px;
        padding-left: 10px; }
      .Oppertunity__Containor .details-info .main-container .basic-info:last-child {
        margin-bottom: 0; }
      .Oppertunity__Containor .details-info .main-container .list .Select-control {
        border-width: 1px;
        border-radius: 4px; }
    .Oppertunity__Containor .details-info .actions-container {
      margin-top: 20px;
      display: flex;
      justify-content: space-between; }
      .Oppertunity__Containor .details-info .actions-container button.btn-primary {
        margin-left: 20px; }
    @media (max-width: 540px) {
      .Oppertunity__Containor .details-info {
        padding: 60px 20px 15px; } }
  .Oppertunity__Containor .perks input {
    width: 100%;
    margin-bottom: 20px; }
  .Oppertunity__Containor .perks ul {
    list-style: none; }
    .Oppertunity__Containor .perks ul li {
      border-radius: 25px;
      display: inline-block;
      margin: 0 20px 10px 0;
      background-color: #f5f7f8;
      font-size: 13px;
      font-weight: bold;
      color: #18332f; }
      .Oppertunity__Containor .perks ul li.edit {
        padding: 5px 5px 5px 20px; }
        .Oppertunity__Containor .perks ul li.edit .close {
          background-color: #3431AC;
          color: #ffffff;
          display: inline-block;
          height: 22px;
          width: 22px;
          font-size: 16px;
          line-height: 21px;
          font-weight: bold;
          text-align: center;
          border-radius: 50%;
          margin-left: 10px;
          cursor: pointer; }
  .Oppertunity__Containor .youtube iframe {
    width: 100%; }
  .Oppertunity__Containor .Select .Select-control {
    height: 40px; }
    .Oppertunity__Containor .Select .Select-control .Select-placeholder {
      line-height: 38px; }
    .Oppertunity__Containor .Select .Select-control .Select-input {
      height: 38px; }
    .Oppertunity__Containor .Select .Select-control .Select-arrow-zone .Select-arrow {
      color: #c2c2c2; }
  .Oppertunity__Containor .Select .Select-control {
    border: 1px solid rgba(128, 128, 128, 0.546);
    border-radius: 4px; }
  .Oppertunity__Containor .row {
    margin-bottom: 30px; }
  .Oppertunity__Containor .component_containor {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    max-height: none;
    margin-top: 1.7rem; }
    .Oppertunity__Containor .component_containor .basic-info {
      margin-bottom: 10px; }
  .Oppertunity__Containor .oppertunity_containor__ {
    width: 50%;
    height: auto; }
    .Oppertunity__Containor .oppertunity_containor__ .oppertunity_containor-box {
      width: 100%;
      background-color: white;
      padding: 1rem 2rem;
      padding-bottom: 1px !important;
      border-radius: .1rem;
      box-shadow: 0px 2px 4px rgba(147, 157, 177, 0.25);
      border-radius: 4px; }
      .Oppertunity__Containor .oppertunity_containor__ .oppertunity_containor-box .manually-oppertunity-title {
        font-style: normal;
        font-weight: 700;
        font-size: 1.2rem;
        color: #444444;
        margin-bottom: 2.4rem; }
      .Oppertunity__Containor .oppertunity_containor__ .oppertunity_containor-box .section-margin {
        margin-top: .5rem; }
    .Oppertunity__Containor .oppertunity_containor__ .location-margin {
      margin-top: 1rem; }
      .Oppertunity__Containor .oppertunity_containor__ .location-margin .location-select__placeholder {
        margin-left: 6px; }
      .Oppertunity__Containor .oppertunity_containor__ .location-margin .location-select__control {
        background-position: 98%; }
    .Oppertunity__Containor .oppertunity_containor__ .button-containor {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 1rem 0rem; }
      .Oppertunity__Containor .oppertunity_containor__ .button-containor .cancel {
        font-weight: 500;
        font-size: 14px;
        line-height: 16px;
        color: #3431AC;
        cursor: pointer;
        margin-left: 1.4rem; }
      .Oppertunity__Containor .oppertunity_containor__ .button-containor .submit {
        color: white;
        background-color: #3431AC;
        border-radius: 4px;
        width: 160px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer; }
      .Oppertunity__Containor .oppertunity_containor__ .button-containor .deactive {
        color: #C2C2C2;
        background-color: #E9E9E9;
        border-radius: 4px;
        width: 160px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.TrackerDetails__container {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column; }
  .TrackerDetails__container .table-container {
    height: auto;
    background: #fff;
    overflow: hidden; }
    .TrackerDetails__container .table-container .table-actions {
      position: relative; }
      .TrackerDetails__container .table-container .table-actions .dropdown__trigger {
        display: flex;
        width: 20px;
        height: 20px;
        justify-content: center;
        align-items: center;
        cursor: pointer; }
      .TrackerDetails__container .table-container .table-actions .dropdown__content {
        background-color: #ffffff;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        z-index: 1111111;
        width: 160px; }
        .TrackerDetails__container .table-container .table-actions .dropdown__content ul {
          list-style-type: none; }
        .TrackerDetails__container .table-container .table-actions .dropdown__content li {
          font-size: 13px;
          font-weight: 400;
          line-height: 2.4;
          color: #374151;
          padding: 0 18px;
          border-bottom: 1px solid #f0f1f5;
          white-space: nowrap;
          cursor: pointer;
          transition: background-color 0.15s ease; }
          .TrackerDetails__container .table-container .table-actions .dropdown__content li:hover {
            background-color: #f9fafb; }
          .TrackerDetails__container .table-container .table-actions .dropdown__content li:last-of-type {
            border: none; }
    .TrackerDetails__container .table-container .table-checkbox {
      position: absolute;
      opacity: 0;
      margin: 0;
      width: 18px;
      height: 18px; }
      .TrackerDetails__container .table-container .table-checkbox + label {
        position: relative;
        cursor: pointer;
        padding: 0; }
      .TrackerDetails__container .table-container .table-checkbox + label:before {
        content: '';
        display: inline-block;
        vertical-align: text-top;
        width: 18px;
        height: 18px;
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 4px;
        transition: background-color 0.15s ease, border-color 0.15s ease; }
      .TrackerDetails__container .table-container .table-checkbox:checked + label:before {
        background: #3431AC;
        border-color: #3431AC; }
      .TrackerDetails__container .table-container .table-checkbox:checked + label:after {
        content: '';
        position: absolute;
        left: 5px;
        top: 9px;
        background: white;
        width: 2px;
        height: 2px;
        box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
        transform: rotate(45deg); }
    .TrackerDetails__container .table-container .sort-icon {
      display: inline-block;
      vertical-align: middle;
      font-size: 10px;
      margin-left: 10px;
      color: #3431AC; }
      .TrackerDetails__container .table-container .sort-icon.up {
        transform: rotate(180deg); }
    .TrackerDetails__container .table-container .order-position {
      display: inline-block;
      padding: 3px 5px;
      font-size: 10px;
      color: #3431AC; }
    .TrackerDetails__container .table-container .status {
      text-transform: capitalize; }
      .TrackerDetails__container .table-container .status.active {
        color: #2a2889; }
      .TrackerDetails__container .table-container .status.invite {
        color: #ffa722; }
    .TrackerDetails__container .table-container .select .Select-control .Select-value .Select-value-label {
      color: #c2c2c2 !important;
      font-weight: normal; }
    .TrackerDetails__container .table-container .select .Select-control .Select-arrow {
      color: #959595; }
  .TrackerDetails__container .loading-in-main {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    top: 0;
    left: 0; }
  .TrackerDetails__container .table-container table {
    width: 100%; }
  .TrackerDetails__container .smooth-dnd-container.horizontal {
    width: 100%; }
  .TrackerDetails__container .tab-title {
    display: flex;
    align-items: center;
    gap: 4px; }
  .TrackerDetails__container .tracker-details-container {
    width: 100%;
    display: flex;
    z-index: 0;
    gap: 24px; }
    .TrackerDetails__container .tracker-details-container .details-left {
      width: 50%;
      padding: 0 10px 0 30px; }
      .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal {
        width: 100%;
        display: flex;
        flex-direction: column;
        border-radius: 12px; }
        .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .bold-text {
          font-weight: 700; }
        .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .clearfix {
          overflow: auto; }
        .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .clearfix::after {
          content: '';
          clear: both;
          display: table; }
        .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal ::-webkit-scrollbar {
          width: 5px;
          height: 5px; }
        .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal ::-webkit-scrollbar-thumb {
          border: none;
          background: #d0d5dd;
          border-radius: 10px; }
        .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal ::-webkit-scrollbar-track {
          background: transparent; }
        .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .close-icon {
          position: absolute;
          top: -15px;
          right: -15px;
          font-size: 20px;
          cursor: pointer;
          width: 30px;
          height: 30px;
          background-color: #3431AC;
          border-radius: 50%;
          padding: 0;
          font-weight: bold;
          line-height: 1;
          color: #ffffff;
          transition: background-color 0.15s ease; }
          .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .close-icon:hover {
            background-color: #3a37c0; }
        .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .btn-save-candidate {
          float: right;
          width: 130px;
          margin-top: 20px; }
        .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .block-bordered, .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block, .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block > div {
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
          border-radius: 12px;
          background-color: #ffffff;
          padding: 20px 24px;
          overflow: auto;
          border: 1px solid rgba(0, 0, 0, 0.06); }
        .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block {
          width: 100%;
          height: 100%;
          background-color: #ffffff;
          position: relative;
          overflow: inherit;
          z-index: 100; }
          .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .stage-select {
            margin-bottom: 24px;
            position: relative; }
            .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .stage-select .legend {
              position: absolute;
              top: -7px;
              left: 16px;
              z-index: 1;
              background-color: white;
              color: #78909c;
              font-size: 12px;
              font-weight: 500;
              padding: 0 6px;
              letter-spacing: 0.2px; }
            .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .stage-select .AsyncSelect {
              width: 308px;
              border: 1px solid #e0e0e0;
              border-radius: 8px;
              transition: border-color 0.15s ease; }
              .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .stage-select .AsyncSelect:hover {
                border-color: #bdbdbd; }
            .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .stage-select .selected-option {
              display: flex;
              align-items: center;
              width: 100%; }
              .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .stage-select .selected-option .selected-job-title {
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                font-weight: 500; }
              .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .stage-select .selected-option .selected-job-ids {
                margin-left: 6px;
                color: #90a4ae;
                font-size: 13px; }
              .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .stage-select .selected-option svg {
                color: #546e7a;
                opacity: 0.7;
                margin-left: 8px;
                width: 14px; }
            .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .stage-select .select-archive {
              display: flex; }
              .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .stage-select .select-archive .Select {
                width: 208px;
                border: 1px solid #e0e0e0;
                border-radius: 8px; }
              .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .stage-select .select-archive .archive-button {
                display: flex;
                align-items: center;
                background: #ffffff;
                border: 1px solid #e0e0e0;
                border-radius: 8px;
                padding: 8px 14px;
                margin-left: 8px;
                color: #90a4ae;
                font-weight: 500;
                font-size: 13px;
                line-height: 16px;
                cursor: pointer;
                transition: all 0.15s ease; }
                .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .stage-select .select-archive .archive-button:hover {
                  background: #fafafa;
                  border-color: #bdbdbd;
                  color: #546e7a; }
                .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .stage-select .select-archive .archive-button.disabled {
                  color: #bdbdbd;
                  opacity: 0.5;
                  cursor: not-allowed; }
                .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .stage-select .select-archive .archive-button svg {
                  margin-right: 6px;
                  font-size: 18px; }
          .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .capitalize {
            text-transform: capitalize;
            position: absolute;
            left: 293px; }
            .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .capitalize .archived-status {
              background: #f5f5f5;
              border-radius: 100px;
              padding: 2px 10px;
              white-space: nowrap;
              font-size: 11px;
              font-weight: 500;
              line-height: 16px;
              letter-spacing: 0.3px;
              color: #546e7a; }
              .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .capitalize .archived-status.archived-status-hired, .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .capitalize .archived-status.archived-status-hired_and_archived {
                background-color: #ededfc;
                color: #3431ac; }
          .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .bio-container {
            display: flex;
            align-items: flex-start; }
            .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .bio-container .logo {
              height: 48px;
              width: 48px;
              min-width: 48px;
              font-weight: 600;
              font-size: 18px;
              line-height: 48px;
              color: #ffffff;
              border-radius: 14px;
              display: flex;
              align-items: center;
              justify-content: center;
              text-align: center;
              box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
              margin-top: 2px; }
            .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .bio-container .bio {
              margin-left: 14px;
              width: calc(100% - 62px); }
              .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .bio-container .bio .name {
                font-weight: 600;
                font-size: 16px;
                line-height: 20px;
                color: #1a1a2e;
                display: flex;
                align-items: center;
                justify-content: space-between;
                letter-spacing: -0.01em; }
              .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .bio-container .bio .star-logo {
                vertical-align: top;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 32px;
                height: 32px;
                border-radius: 8px;
                transition: background-color 0.15s ease; }
                .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .bio-container .bio .star-logo:hover {
                  background-color: #fff8e1; }
              .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .bio-container .bio .position,
              .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .bio-container .bio .location {
                color: #78909c;
                font-weight: 400;
                font-size: 13px;
                line-height: 18px;
                margin-top: 2px; }
              .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .bio-container .bio .social-contacts {
                margin-top: 10px;
                display: flex;
                align-items: center;
                flex-wrap: wrap;
                gap: 5px; }
                .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .bio-container .bio .social-contacts a {
                  display: inline-flex;
                  align-items: center;
                  justify-content: center;
                  padding: 4px 8px;
                  gap: 4px;
                  background: #f8f9fb;
                  border: 1px solid #e8eaed;
                  border-radius: 6px;
                  cursor: pointer;
                  text-decoration: none;
                  font-weight: 500;
                  font-size: 11px;
                  line-height: 14px;
                  color: #546e7a;
                  max-height: 26px;
                  transition: all 0.15s ease; }
                  .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .bio-container .bio .social-contacts a:hover {
                    background: #eef0f4;
                    border-color: #d0d4da;
                    color: #37474f; }
                  .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .bio-container .bio .social-contacts a img {
                    height: 16px;
                    width: 16px;
                    -o-object-fit: contain;
                       object-fit: contain; }
                  .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .bio-container .bio .social-contacts a svg {
                    width: 16px;
                    height: 16px;
                    fill: #546e7a; }
                .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .bio-container .bio .social-contacts .divider {
                  height: 18px;
                  border: none;
                  border-left: 1px solid #e0e0e0;
                  margin: 0 2px; }
                .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .bio-container .bio .social-contacts .referral-urls-info {
                  height: 18px;
                  opacity: 0.6;
                  transition: opacity 0.15s ease; }
                  .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .bio-container .bio .social-contacts .referral-urls-info:hover {
                    opacity: 1;
                    cursor: pointer; }
                .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .bio-container .bio .social-contacts .file-pill {
                  display: inline-flex;
                  align-items: center;
                  justify-content: center;
                  padding: 4px 8px;
                  background: #f8f9fb;
                  border: 1px solid #e8eaed;
                  border-radius: 6px;
                  cursor: pointer;
                  text-decoration: none;
                  transition: all 0.15s ease; }
                  .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .bio-container .bio .social-contacts .file-pill:hover {
                    background: #eef0f4;
                    border-color: #d0d4da; }
                  .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .bio-container .bio .social-contacts .file-pill svg {
                    width: 16px;
                    height: 16px;
                    fill: #546e7a; }
          .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .status-action {
            margin-left: 20px;
            display: inline-block;
            float: left; }
            .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .status-action .status-title {
              color: #1a1a2e;
              font-size: 15px;
              font-weight: 500; }
            .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .top-block .status-action .Select {
              width: 100px;
              margin-top: 16px; }
        .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block {
          width: 400px;
          height: 550px;
          display: inline-block;
          float: left;
          margin-top: 20px; }
          .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .about-block {
            height: 270px;
            display: flex;
            flex-direction: column; }
            .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .about-block .about-title {
              color: #1a1a2e;
              font-size: 15px;
              font-weight: 600; }
            .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .about-block .about-employer {
              flex-direction: row;
              margin-top: 11px;
              color: #90a4ae;
              font-size: 13px;
              font-weight: 500; }
              .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .about-block .about-employer .about-employer-value {
                color: #1a1a2e;
                font-weight: 500; }
            .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .about-block .about-current-position {
              flex-direction: row;
              margin-top: 5px;
              font-size: 13px;
              color: #90a4ae;
              font-weight: 500; }
              .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .about-block .about-current-position .about-current-position-value {
                font-weight: 500;
                color: #37474f; }
            .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .about-block .about-bottom-section {
              display: flex;
              flex-direction: column;
              align-items: flex-start;
              justify-content: space-between; }
              .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .about-block .about-bottom-section .about-links, .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .about-block .about-bottom-section .about-contacts {
                margin-top: 20px;
                float: none;
                flex-basis: 50%;
                display: flex;
                flex-direction: column; }
                .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .about-block .about-bottom-section .about-links .about-links-title, .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .about-block .about-bottom-section .about-contacts .about-links-title {
                  color: #1a1a2e;
                  font-size: 15px;
                  font-weight: 600;
                  padding-bottom: 12px; }
                .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .about-block .about-bottom-section .about-links .about-link, .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .about-block .about-bottom-section .about-contacts .about-link {
                  display: flex;
                  flex-direction: column;
                  gap: 10px; }
                  .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .about-block .about-bottom-section .about-links .about-link .about-link-label, .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .about-block .about-bottom-section .about-contacts .about-link .about-link-label {
                    color: #3431ac;
                    font-size: 13px;
                    font-weight: 600;
                    text-decoration: none;
                    transition: opacity 0.15s ease; }
                    .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .about-block .about-bottom-section .about-links .about-link .about-link-label:hover, .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .about-block .about-bottom-section .about-contacts .about-link .about-link-label:hover {
                      opacity: 0.8; }
              .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .about-block .about-bottom-section .about-contacts .about-contact-label {
                color: #3431ac;
                font-size: 13px;
                font-weight: 600; }
                .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .about-block .about-bottom-section .about-contacts .about-contact-label a {
                  color: #3431ac;
                  text-decoration: none;
                  transition: opacity 0.15s ease; }
                  .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .about-block .about-bottom-section .about-contacts .about-contact-label a:hover {
                    opacity: 0.8;
                    cursor: pointer; }
              .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .about-block .about-bottom-section .resumes-cont {
                margin-top: 20px;
                display: flex;
                flex-direction: column;
                gap: 10px; }
                .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .about-block .about-bottom-section .resumes-cont .resume-container {
                  display: flex;
                  flex-direction: row;
                  gap: 10px;
                  align-items: center; }
                  .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .about-block .about-bottom-section .resumes-cont .resume-container .resume-label {
                    font-size: 12px;
                    line-height: 16px;
                    letter-spacing: 0.3px;
                    color: #546e7a;
                    text-decoration: none;
                    transition: color 0.15s ease; }
                    .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .about-block .about-bottom-section .resumes-cont .resume-container .resume-label:hover {
                      color: #37474f;
                      cursor: pointer; }
          .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .referred-block {
            height: 130px;
            margin-top: 15px;
            padding-left: 75px; }
            .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .referred-block .referred-block-title {
              color: #90a4ae;
              font-size: 11px;
              font-weight: 600;
              text-transform: uppercase;
              letter-spacing: 0.5px; }
            .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .referred-block .referred-block-name .referred-block-name-icon {
              margin-left: -50px;
              width: 30px;
              height: 30px;
              border-radius: 50%;
              box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
              display: inline-block;
              border: 2px solid #ffffff;
              background-position: center;
              background-size: 24px;
              background-repeat: no-repeat;
              float: left; }
            .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .referred-block .referred-block-name .referred-block-name-ref {
              color: #1a1a2e;
              font-size: 16px;
              font-weight: 600;
              padding-top: 7px;
              display: inline-block; }
            .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .referred-block .referred-block-name .referred-block-name-others {
              color: #78909c;
              font-size: 16px;
              font-weight: 500;
              padding-top: 7px;
              display: inline-block; }
            .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .referred-block .referred-block-details {
              color: #78909c;
              font-size: 12px;
              font-weight: 400;
              line-height: 18px; }
              .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .referred-block .referred-block-details a {
                color: #3431ac;
                text-decoration: none;
                transition: opacity 0.15s ease; }
                .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .referred-block .referred-block-details a:hover {
                  opacity: 0.8;
                  cursor: pointer; }
          .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .bounties-block {
            height: 120px;
            margin-top: 15px;
            padding: 20px 24px; }
            .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .bounties-block .bounties-block-title-wrapper .bounties-block-title {
              color: #1a1a2e;
              font-size: 22px;
              font-weight: 700; }
            .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .bounties-block .bounties-block-title-wrapper svg {
              float: right;
              fill: #1a1a2e;
              width: 24px;
              height: 20px; }
            .TrackerDetails__container .tracker-details-container .details-left .details-candidate-modal .info-block .bounties-block .bounties-block-list {
              color: #78909c;
              font-size: 13px;
              font-weight: 600;
              line-height: 20px;
              padding-top: 12px; }
    .TrackerDetails__container .tracker-details-container .details-right {
      width: 50%;
      padding: 0 30px 0 10px; }
      .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal {
        width: 100%;
        height: 150px;
        border-radius: 12px; }
        .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .bold-text {
          font-weight: 700; }
        .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .clearfix {
          overflow: auto; }
        .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .clearfix::after {
          content: '';
          clear: both;
          display: table; }
        .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal ::-webkit-scrollbar {
          width: 5px;
          height: 5px; }
        .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal ::-webkit-scrollbar-thumb {
          border: none;
          background: #d0d5dd;
          border-radius: 10px; }
        .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal ::-webkit-scrollbar-track {
          background: transparent; }
        .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .btn-save-candidate {
          float: right;
          width: 130px;
          margin-top: 20px; }
        .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .block-bordered, .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .top-block, .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block > div {
          border-radius: 12px;
          background-color: #ffffff;
          padding: 20px 24px;
          overflow: auto;
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
          border: 1px solid rgba(0, 0, 0, 0.06); }
        .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .top-block {
          width: 100%;
          margin-bottom: 20px;
          background-color: #ffffff;
          position: relative;
          overflow: inherit;
          z-index: 100; }
          .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .top-block .stage-select {
            margin-bottom: 24px;
            display: flex;
            justify-content: space-between;
            position: relative;
            gap: 8px; }
            .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .top-block .stage-select .legend {
              position: absolute;
              top: -7px;
              left: 16px;
              z-index: 1;
              background-color: white;
              color: #78909c;
              font-size: 12px;
              font-weight: 500;
              padding: 0 6px;
              letter-spacing: 0.2px; }
            .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .top-block .stage-select .select-row {
              width: 100%; }
            .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .top-block .stage-select .archive-button {
              display: flex;
              align-items: center;
              background: #ffffff;
              border: 1px solid #e0e0e0;
              border-radius: 8px;
              padding: 8px 14px;
              margin-left: 4px;
              color: #90a4ae;
              font-weight: 500;
              font-size: 13px;
              line-height: 16px;
              cursor: pointer;
              white-space: nowrap;
              transition: all 0.15s ease; }
              .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .top-block .stage-select .archive-button:hover {
                background: #fafafa;
                border-color: #bdbdbd;
                color: #546e7a; }
              .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .top-block .stage-select .archive-button.disabled {
                color: #bdbdbd;
                opacity: 0.5;
                cursor: not-allowed; }
              .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .top-block .stage-select .archive-button svg {
                margin-right: 6px;
                font-size: 18px; }
            .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .top-block .stage-select .ArchieveDropdown__container {
              background: #ffffff;
              box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
              border-radius: 0 0 8px 8px; }
        .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block {
          width: 400px;
          height: 550px;
          display: inline-block;
          float: left;
          margin-top: 20px; }
          .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .about-block {
            height: 270px;
            display: flex;
            flex-direction: column; }
            .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .about-block .about-title {
              color: #1a1a2e;
              font-size: 15px;
              font-weight: 600; }
            .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .about-block .about-employer {
              flex-direction: row;
              margin-top: 11px;
              color: #90a4ae;
              font-size: 13px;
              font-weight: 500; }
              .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .about-block .about-employer .about-employer-value {
                color: #1a1a2e;
                font-weight: 500; }
            .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .about-block .about-current-position {
              flex-direction: row;
              margin-top: 5px;
              font-size: 13px;
              color: #90a4ae;
              font-weight: 500; }
              .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .about-block .about-current-position .about-current-position-value {
                font-weight: 500;
                color: #37474f; }
            .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .about-block .about-bottom-section {
              display: flex;
              flex-direction: column;
              align-items: flex-start;
              justify-content: space-between; }
              .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .about-block .about-bottom-section .about-links, .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .about-block .about-bottom-section .about-contacts {
                margin-top: 20px;
                float: none;
                flex-basis: 50%;
                display: flex;
                flex-direction: column; }
                .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .about-block .about-bottom-section .about-links .about-links-title, .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .about-block .about-bottom-section .about-contacts .about-links-title {
                  color: #1a1a2e;
                  font-size: 15px;
                  font-weight: 600;
                  padding-bottom: 12px; }
                .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .about-block .about-bottom-section .about-links .about-link, .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .about-block .about-bottom-section .about-contacts .about-link {
                  display: flex;
                  flex-direction: column;
                  gap: 10px; }
                  .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .about-block .about-bottom-section .about-links .about-link .about-link-label, .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .about-block .about-bottom-section .about-contacts .about-link .about-link-label {
                    color: #3431ac;
                    font-size: 13px;
                    font-weight: 600;
                    text-decoration: none;
                    transition: opacity 0.15s ease; }
                    .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .about-block .about-bottom-section .about-links .about-link .about-link-label:hover, .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .about-block .about-bottom-section .about-contacts .about-link .about-link-label:hover {
                      opacity: 0.8;
                      cursor: pointer; }
              .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .about-block .about-bottom-section .about-contacts .about-contact-label {
                color: #3431ac;
                font-size: 13px;
                font-weight: 600; }
                .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .about-block .about-bottom-section .about-contacts .about-contact-label a {
                  color: #3431ac;
                  text-decoration: none;
                  transition: opacity 0.15s ease; }
                  .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .about-block .about-bottom-section .about-contacts .about-contact-label a:hover {
                    opacity: 0.8;
                    cursor: pointer; }
              .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .about-block .about-bottom-section .resumes-cont {
                margin-top: 20px;
                display: flex;
                flex-direction: column;
                gap: 10px; }
                .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .about-block .about-bottom-section .resumes-cont .resume-container {
                  display: flex;
                  flex-direction: row;
                  gap: 10px;
                  align-items: center; }
                  .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .about-block .about-bottom-section .resumes-cont .resume-container .resume-label {
                    font-size: 12px;
                    line-height: 16px;
                    letter-spacing: 0.3px;
                    color: #546e7a;
                    text-decoration: none; }
          .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .referred-block {
            height: 130px;
            margin-top: 15px;
            padding-left: 75px; }
            .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .referred-block .referred-block-title {
              color: #90a4ae;
              font-size: 11px;
              font-weight: 600;
              text-transform: uppercase;
              letter-spacing: 0.5px; }
            .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .referred-block .referred-block-name .referred-block-name-icon {
              margin-left: -50px;
              width: 30px;
              height: 30px;
              border-radius: 50%;
              box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
              display: inline-block;
              border: 2px solid #ffffff;
              background-position: center;
              background-size: 24px;
              background-repeat: no-repeat;
              float: left; }
            .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .referred-block .referred-block-name .referred-block-name-ref {
              color: #1a1a2e;
              font-size: 16px;
              font-weight: 600;
              padding-top: 7px;
              display: inline-block; }
            .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .referred-block .referred-block-name .referred-block-name-others {
              color: #78909c;
              font-size: 16px;
              font-weight: 500;
              padding-top: 7px;
              display: inline-block; }
            .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .referred-block .referred-block-details {
              color: #78909c;
              font-size: 12px;
              font-weight: 400;
              line-height: 18px; }
              .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .referred-block .referred-block-details a {
                color: #3431ac;
                text-decoration: none; }
          .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .bounties-block {
            height: 120px;
            margin-top: 15px;
            padding: 20px 24px; }
            .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .bounties-block .bounties-block-title-wrapper .bounties-block-title {
              color: #1a1a2e;
              font-size: 22px;
              font-weight: 700; }
            .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .bounties-block .bounties-block-title-wrapper svg {
              float: right;
              fill: #1a1a2e;
              width: 24px;
              height: 20px; }
            .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .info-block .bounties-block .bounties-block-list {
              color: #78909c;
              font-size: 13px;
              font-weight: 600;
              line-height: 20px;
              padding-top: 12px; }
        .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .add-note-block .notes-default {
          width: 100%;
          height: 44px;
          font-weight: 400;
          font-size: 14px;
          padding-left: 14px;
          border: 1px solid #e0e0e0;
          border-radius: 10px;
          background: #fafafa;
          color: #37474f;
          transition: all 0.2s ease; }
          .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .add-note-block .notes-default::-moz-placeholder {
            color: #b0bec5; }
          .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .add-note-block .notes-default::placeholder {
            color: #b0bec5; }
          .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .add-note-block .notes-default:hover {
            cursor: pointer;
            border-color: #bdbdbd;
            background: #fff; }
          .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .add-note-block .notes-default:focus {
            border-color: #3431ac;
            background: #fff;
            outline: none;
            box-shadow: 0 0 0 3px rgba(52, 49, 172, 0.08); }
        .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .add-note-block .note-actions {
          display: flex;
          align-items: center;
          -moz-column-gap: 10px;
               column-gap: 10px; }
          .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .add-note-block .note-actions .comment-button {
            margin-top: 12px;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 13px;
            transition: all 0.15s ease; }
            .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .add-note-block .note-actions .comment-button:hover {
              cursor: pointer;
              transform: translateY(-1px); }
            .TrackerDetails__container .tracker-details-container .details-right .details-candidate-modal .add-note-block .note-actions .comment-button:active {
              transform: translateY(0); }
  .TrackerDetails__container .tracker-details-back {
    width: 100%;
    display: flex;
    padding: 20px 0 12px 45px; }
    .TrackerDetails__container .tracker-details-back .back-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      color: #546e7a;
      font-weight: 500;
      font-size: 14px;
      padding: 6px 12px;
      border-radius: 8px;
      transition: all 0.15s ease; }
      .TrackerDetails__container .tracker-details-back .back-btn:hover {
        background: #f5f5f5;
        color: #37474f; }
      .TrackerDetails__container .tracker-details-back .back-btn svg {
        font-size: 18px; }
  .TrackerDetails__container .tabs-opening {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e2e2e2;
    padding: 20px 0px 0px; }
    .TrackerDetails__container .tabs-opening .rc-tabs-tab {
      display: inline-block;
      padding: 0 15px 10px;
      cursor: pointer;
      color: #959595;
      margin-right: 20px; }
    .TrackerDetails__container .tabs-opening .rc-tabs-tab-active {
      color: #444444;
      border-bottom: 3px solid #3431ac; }
    .TrackerDetails__container .tabs-opening .rc-tabs-nav-wrap .rc-tabs-nav-scroll {
      padding-left: 25px;
      padding-right: 25px; }
    .TrackerDetails__container .tabs-opening .button-group .btn {
      margin-right: 12px;
      display: flex;
      align-items: center;
      text-align: center;
      justify-content: center;
      margin-bottom: 20px; }
      .TrackerDetails__container .tabs-opening .button-group .btn svg {
        margin-right: 16px; }
    @media (max-width: 540px) {
      .TrackerDetails__container .tabs-opening {
        padding-top: 12px;
        box-shadow: 0px 4px 4px rgba(147, 157, 177, 0.15);
        background: #ffffff; }
        .TrackerDetails__container .tabs-opening .rc-tabs-tab {
          padding: 0 2px 10px;
          margin-right: 20px; } }
  .TrackerDetails__container .resume-pills {
    position: relative;
    display: flex;
    padding: 10px 30px 0 30px; }
    .TrackerDetails__container .resume-pills .information-btn {
      position: relative; }
      .TrackerDetails__container .resume-pills .information-btn .information-icon {
        color: #b0bec5;
        margin: 0 12px;
        transition: color 0.15s ease; }
        .TrackerDetails__container .resume-pills .information-btn .information-icon:hover {
          color: #78909c;
          cursor: pointer; }
      .TrackerDetails__container .resume-pills .information-btn .information-text {
        background-color: white;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        border-radius: 8px;
        padding: 12px 16px;
        font-size: 12px;
        color: #78909c;
        position: absolute;
        bottom: 175%;
        left: -80%;
        width: 225px;
        visibility: hidden;
        line-height: 1.5; }
      .TrackerDetails__container .resume-pills .information-btn .information-text:before {
        content: '';
        width: 0;
        height: 0;
        position: absolute;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid white;
        border-bottom: 8px solid transparent;
        bottom: -16px;
        left: 20%; }
      .TrackerDetails__container .resume-pills .information-btn:hover .information-text {
        visibility: visible;
        cursor: pointer; }

.tracker-menu-item .tracker-menu-item-icon {
  min-width: unset;
  margin-right: 12px; }

.tracker-menu-item .tracker-menu-item-text {
  min-width: 100px; }

.OpportunityInfo__select-option .option-job-ids {
  margin-left: 5px;
  color: #90a4ae; }

.atsIdContainer {
  display: flex;
  gap: 12px;
  flex-direction: column; }

.idsDiv {
  display: flex;
  gap: 8px; }

.textFieldStyling {
  width: 100%; }

.tracker-stage__control {
  border: 1px solid #e0e0e0 !important;
  border-radius: 10px !important;
  min-height: 42px !important;
  box-shadow: none !important;
  padding-left: 6px;
  transition: border-color 0.15s ease; }
  .tracker-stage__control:hover {
    border-color: #bdbdbd !important;
    cursor: pointer; }

.tracker-stage__menu {
  border-radius: 10px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  overflow: hidden; }

.tracker-stage__option {
  padding: 8px 14px !important;
  font-size: 13px !important;
  border-bottom: 1px solid #f5f5f5;
  transition: background-color 0.1s ease; }
  .tracker-stage__option:last-child {
    border-bottom: none; }
  .tracker-stage__option:hover {
    background-color: #f8f9fb !important;
    cursor: pointer; }

.tracker-stage__option--is-selected {
  background-color: #3431ac !important;
  color: #fff !important; }
  .tracker-stage__option--is-selected:hover {
    background-color: #3431ac !important;
    cursor: pointer; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.candidate-modal {
  width: 860px;
  height: 680px;
  border-radius: 5px; }
  .candidate-modal .bold-text {
    font-weight: 700; }
  .candidate-modal .clearfix {
    overflow: auto; }
  .candidate-modal .clearfix::after {
    content: "";
    clear: both;
    display: table; }
  .candidate-modal ::-webkit-scrollbar {
    width: 6px;
    height: 7px; }
  .candidate-modal ::-webkit-scrollbar-thumb {
    border: none; }
  .candidate-modal .close-icon {
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 20px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    background-color: #3431AC;
    border-radius: 50%;
    padding: 0;
    font-weight: bold;
    line-height: 1;
    color: #ffffff; }
    .candidate-modal .close-icon:hover {
      background-color: #3a37c0; }
  .candidate-modal .btn-save-candidate {
    float: right;
    width: 130px;
    margin-top: 20px; }
  .candidate-modal .block-bordered, .candidate-modal .top-block, .candidate-modal .info-block > div, .candidate-modal .add-note-block, .candidate-modal .note-block {
    box-shadow: 0 2px 5px rgba(196, 206, 220, 0.5);
    border-radius: 5px;
    background-color: #ffffff;
    padding: 15px 20px;
    overflow: auto; }
  .candidate-modal .top-block {
    width: 860px;
    height: 110px;
    background-color: #ffffff;
    position: relative;
    overflow: inherit;
    z-index: 100; }
    .candidate-modal .top-block .capitalize {
      text-transform: capitalize;
      position: absolute;
      left: 293px;
      top: 17px; }
      .candidate-modal .top-block .capitalize .archived-status {
        width: 80px;
        height: 20px;
        border-radius: 5px;
        display: inline-block;
        text-align: left;
        padding-top: 4px;
        white-space: nowrap;
        color: #ffffff;
        font-family: Roboto;
        font-size: 10px;
        font-weight: 900; }
        .candidate-modal .top-block .capitalize .archived-status:before {
          content: "";
          display: inline-block;
          width: 12px;
          height: 12px;
          background-repeat: no-repeat;
          float: left;
          margin-left: 10px;
          padding-right: 10px; }
        .candidate-modal .top-block .capitalize .archived-status.archived-status-passed {
          background-color: #e8818d; }
          .candidate-modal .top-block .capitalize .archived-status.archived-status-passed:before {
            background-image: url(/bundles/83a716a596b0db90e8afe1791f3b6e6d.svg); }
        .candidate-modal .top-block .capitalize .archived-status.archived-status-declined {
          background-color: #92bced; }
          .candidate-modal .top-block .capitalize .archived-status.archived-status-declined:before {
            background-image: url(/bundles/4c658de7dbfdf7334cd9dc88d5d88dd0.svg); }
        .candidate-modal .top-block .capitalize .archived-status.archived-status-hired, .candidate-modal .top-block .capitalize .archived-status.archived-status-hired_and_archived {
          background-color: #7a78c9; }
          .candidate-modal .top-block .capitalize .archived-status.archived-status-hired:before, .candidate-modal .top-block .capitalize .archived-status.archived-status-hired_and_archived:before {
            background-image: url(/bundles/ac7e00ee4af28ef50e01208ff3897031.svg); }
    .candidate-modal .top-block .logo {
      height: 80px;
      width: 80px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
      border: 5px solid #ffffff;
      border-radius: 40px;
      display: inline-block;
      float: left;
      background-size: 70px;
      background-position: center;
      background-repeat: no-repeat;
      cursor: pointer; }
    .candidate-modal .top-block .star-logo {
      margin-left: 3px;
      width: 25px;
      height: 25px;
      vertical-align: top;
      cursor: pointer; }
    .candidate-modal .top-block .star-logo-big {
      width: 30px;
      height: 30px;
      vertical-align: top;
      cursor: pointer; }
    .candidate-modal .top-block .bio {
      margin-left: 30px;
      margin-right: 20px;
      display: inline-block;
      float: left;
      width: 270px; }
      .candidate-modal .top-block .bio .name {
        color: #343a4e;
        font-family: Roboto;
        font-size: 25px;
        font-weight: 700; }
      .candidate-modal .top-block .bio .position, .candidate-modal .top-block .bio .location {
        color: #6b7d7a;
        font-family: Roboto;
        font-size: 14px;
        font-weight: 500; }
    .candidate-modal .top-block .status-action {
      margin-left: 20px;
      display: inline-block;
      float: left; }
      .candidate-modal .top-block .status-action .status-title {
        color: #343a4e;
        font-size: 16px;
        font-family: Roboto;
        font-weight: 400; }
      .candidate-modal .top-block .status-action .Select {
        width: 400px;
        margin-top: 16px; }
  .candidate-modal .info-block {
    width: 400px;
    height: 550px;
    display: inline-block;
    float: left;
    margin-top: 20px; }
    .candidate-modal .info-block .about-block {
      height: 270px;
      display: flex;
      flex-direction: column; }
      .candidate-modal .info-block .about-block .about-title {
        color: #383838;
        font-family: Roboto;
        font-size: 16px;
        font-weight: 700;
        flex-direction: row; }
      .candidate-modal .info-block .about-block .about-employer {
        flex-direction: row;
        margin-top: 11px;
        color: rgba(52, 58, 78, 0.6);
        font-size: 14px;
        font-family: Roboto;
        font-weight: 700; }
        .candidate-modal .info-block .about-block .about-employer .about-employer-value {
          color: #383838;
          font-family: Roboto;
          font-weight: 500; }
      .candidate-modal .info-block .about-block .about-current-position {
        flex-direction: row;
        margin-top: 5px;
        font-size: 14px;
        color: #7f8591;
        font-family: Roboto;
        font-weight: 700; }
        .candidate-modal .info-block .about-block .about-current-position .about-current-position-value {
          font-family: Roboto;
          font-weight: 500; }
      .candidate-modal .info-block .about-block .about-bottom-section {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        justify-items: center; }
        .candidate-modal .info-block .about-block .about-bottom-section .about-links, .candidate-modal .info-block .about-block .about-bottom-section .about-contacts {
          margin-top: 20px;
          float: none;
          flex-basis: 50%;
          display: flex;
          flex-direction: column; }
          .candidate-modal .info-block .about-block .about-bottom-section .about-links .about-links-title, .candidate-modal .info-block .about-block .about-bottom-section .about-contacts .about-links-title {
            color: #383838;
            font-family: Roboto;
            font-size: 16px;
            font-weight: 700;
            padding-bottom: 16px; }
          .candidate-modal .info-block .about-block .about-bottom-section .about-links .about-link, .candidate-modal .info-block .about-block .about-bottom-section .about-contacts .about-link {
            display: flex;
            flex-direction: column;
            gap: 13px; }
            .candidate-modal .info-block .about-block .about-bottom-section .about-links .about-link .about-link-label, .candidate-modal .info-block .about-block .about-bottom-section .about-contacts .about-link .about-link-label {
              color: #3431AC;
              font-family: Roboto;
              font-size: 14px;
              font-weight: 700;
              text-decoration: none; }
        .candidate-modal .info-block .about-block .about-bottom-section .about-contacts .about-contact-label {
          color: #3431AC;
          font-family: Roboto;
          font-size: 14px;
          font-weight: 700; }
          .candidate-modal .info-block .about-block .about-bottom-section .about-contacts .about-contact-label a {
            color: #3431AC;
            text-decoration: none; }
        .candidate-modal .info-block .about-block .about-bottom-section .resumes-cont {
          margin-top: 20px;
          display: flex;
          flex-direction: column;
          gap: 13px; }
          .candidate-modal .info-block .about-block .about-bottom-section .resumes-cont .resume-container {
            display: flex;
            flex-direction: row;
            gap: 10px;
            align-items: center; }
            .candidate-modal .info-block .about-block .about-bottom-section .resumes-cont .resume-container .resume-label {
              font-size: 12px;
              line-height: 14px;
              letter-spacing: 1px;
              color: #444444;
              text-decoration: none; }
    .candidate-modal .info-block .referred-block {
      height: 130px;
      margin-top: 15px;
      padding-left: 75px; }
      .candidate-modal .info-block .referred-block .referred-block-title {
        color: rgba(52, 58, 78, 0.6);
        font-family: Roboto;
        font-size: 10px;
        font-weight: 700; }
      .candidate-modal .info-block .referred-block .referred-block-name .referred-block-name-icon {
        margin-left: -50px;
        width: 30px;
        height: 30px;
        border-radius: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        display: inline-block;
        border: 2px solid #ffffff;
        background-position: center;
        background-size: 24px;
        background-repeat: no-repeat;
        float: left; }
      .candidate-modal .info-block .referred-block .referred-block-name .referred-block-name-ref {
        color: #343a4e;
        font-family: Roboto;
        font-size: 18px;
        font-weight: 700;
        padding-top: 7px;
        display: inline-block; }
      .candidate-modal .info-block .referred-block .referred-block-name .referred-block-name-others {
        color: #6b7d7a;
        font-family: Roboto;
        font-size: 18px;
        font-weight: 500;
        padding-top: 7px;
        display: inline-block; }
      .candidate-modal .info-block .referred-block .referred-block-details {
        color: #6b7d7a;
        font-family: Roboto;
        font-size: 12px;
        font-weight: 500;
        line-height: 18px; }
        .candidate-modal .info-block .referred-block .referred-block-details a {
          color: #6b7d7a;
          text-decoration: none; }
    .candidate-modal .info-block .bounties-block {
      height: 120px;
      margin-top: 15px;
      padding: 23px 30px 23px 30px; }
      .candidate-modal .info-block .bounties-block .bounties-block-title-wrapper .bounties-block-title {
        color: #343a4e;
        font-family: Roboto;
        font-size: 25px;
        font-weight: 700; }
      .candidate-modal .info-block .bounties-block .bounties-block-title-wrapper svg {
        float: right;
        fill: #343a4e;
        width: 24px;
        height: 20px; }
      .candidate-modal .info-block .bounties-block .bounties-block-list {
        color: #6b7d7a;
        font-family: Roboto;
        font-size: 14px;
        font-weight: 900;
        line-height: 20px;
        padding-top: 15px; }
  .candidate-modal .add-note-block {
    /* Style for "Rectangle" */
    width: 440px;
    height: 112px;
    float: right;
    margin-top: 10px;
    padding: 20px 30px 10px 30px; }
    .candidate-modal .add-note-block .add-note-title {
      color: #383838;
      font-family: Roboto;
      font-size: 16px;
      font-weight: 700; }
    .candidate-modal .add-note-block input {
      margin-top: 12px;
      width: 390px;
      margin-left: -7px; }
  .candidate-modal .notes-block {
    width: 440px;
    max-height: 400px;
    display: inline-block;
    float: right;
    margin-top: -15px;
    z-index: 1;
    overflow-y: auto;
    padding-top: 25px;
    border-radius: 5px; }
    .candidate-modal .notes-block:before {
      content: "";
      position: absolute;
      width: 440px;
      height: 43px;
      margin-top: -10px;
      background-image: linear-gradient(180deg, #ecf0f1 0%, rgba(236, 240, 241, 0) 100%); }
    .candidate-modal .notes-block:after {
      content: "";
      display: inline-block;
      height: 100%;
      vertical-align: bottom; }
    .candidate-modal .notes-block ul {
      vertical-align: bottom;
      display: inline-block;
      width: 100%;
      list-style: none; }
  .candidate-modal .note-block {
    margin-top: 10px;
    color: #343a4e;
    font-family: Roboto;
    font-size: 13px;
    font-weight: 400;
    padding: 20px 30px 20px 45px; }
    .candidate-modal .note-block .info-top {
      height: 20px;
      margin-bottom: 5px; }
      .candidate-modal .note-block .info-top .note-icon {
        color: #18332f;
        font-family: Roboto;
        font-size: 13px;
        font-weight: 700;
        display: inline-block; }
        .candidate-modal .note-block .info-top .note-icon:before {
          display: inline-block;
          width: 12px;
          height: 15px;
          background-repeat: no-repeat;
          margin-left: -25px;
          padding-right: 13px;
          content: "";
          float: left; }
        .candidate-modal .note-block .info-top .note-icon.note-icon-referral:before {
          background-image: url(/bundles/1acae468e0c1b05cc56363c904709135.svg); }
        .candidate-modal .note-block .info-top .note-icon.note-icon-update:before {
          background-image: url(/bundles/a2a2b24d26b22877ce26157d10828c48.svg); }
        .candidate-modal .note-block .info-top .note-icon.note-icon-note:before {
          background-image: url(/bundles/1cd1b6340ed241f6c31ad7657be64b40.svg); }
      .candidate-modal .note-block .info-top .note-date {
        opacity: 0.5;
        color: #18332f;
        font-family: Roboto;
        font-size: 13px;
        font-weight: 700;
        float: right;
        display: inline-block; }
    .candidate-modal .note-block .note-text {
      color: #343a4e;
      font-family: Roboto;
      font-size: 13px;
      font-weight: 400; }
    .candidate-modal .note-block .info-bottom {
      margin-top: 5px;
      height: 20px; }
      .candidate-modal .note-block .info-bottom .note-sign {
        color: #18332f;
        font-family: Roboto;
        font-size: 13px;
        font-weight: 700;
        float: right;
        display: inline-block; }
.find-candidates {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 16px; }
  .find-candidates__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: #6b7280;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    margin-bottom: 20px; }
    .find-candidates__back:hover {
      color: #111827; }
  .find-candidates__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px; }
  .find-candidates__header-icon {
    color: #7c3aed; }
  .find-candidates__title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin: 0; }
  .find-candidates__tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 28px;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 4px; }
  .find-candidates__tab {
    flex: 1;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.15s; }
    .find-candidates__tab:hover {
      color: #374151; }
    .find-candidates__tab--active {
      background: #fff;
      color: #111827;
      font-weight: 600;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08); }
  .find-candidates__content {
    min-height: 300px; }
  .find-candidates__search-section {
    margin-bottom: 24px; }
  .find-candidates__label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px; }
  .find-candidates__input-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px; }
  .find-candidates__input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 13px;
    color: #111827;
    outline: none;
    transition: border-color 0.15s; }
    .find-candidates__input::-moz-placeholder {
      color: #9ca3af; }
    .find-candidates__input::placeholder {
      color: #9ca3af; }
    .find-candidates__input:focus {
      border-color: #7c3aed;
      box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.1); }
  .find-candidates__search-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    background: #7c3aed;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s; }
    .find-candidates__search-btn:hover:not(:disabled) {
      background: #6d28d9; }
    .find-candidates__search-btn:disabled {
      background: #c4b5fd;
      cursor: not-allowed; }
  .find-candidates__examples {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px; }
  .find-candidates__examples-label {
    font-size: 12px;
    color: #9ca3af;
    margin-right: 2px; }
  .find-candidates__example-chip {
    padding: 4px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    font-size: 11px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.15s; }
    .find-candidates__example-chip:hover {
      border-color: #7c3aed;
      color: #7c3aed;
      background: #f5f3ff; }
  .find-candidates__dropdown-wrapper {
    flex: 1;
    position: relative; }
  .find-candidates__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 240px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 50;
    margin-top: 4px; }
  .find-candidates__dropdown-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px 14px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    transition: background 0.1s; }
    .find-candidates__dropdown-item:hover {
      background: #f9fafb; }
    .find-candidates__dropdown-item:not(:last-child) {
      border-bottom: 1px solid #f3f4f6; }
  .find-candidates__dropdown-title {
    font-size: 13px;
    font-weight: 500;
    color: #111827; }
  .find-candidates__dropdown-org {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 2px; }
  .find-candidates__dropdown-empty {
    padding: 16px;
    text-align: center;
    font-size: 13px;
    color: #9ca3af; }
  .find-candidates__results {
    margin-top: 24px; }
  .find-candidates__results-count {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 12px; }
  .find-candidates__results-list {
    display: flex;
    flex-direction: column;
    gap: 10px; }
  .find-candidates__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 16px;
    margin-top: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 8px; }
    .find-candidates__empty p {
      font-size: 13px;
      color: #9ca3af;
      margin: 0; }
  .find-candidates__skeleton {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px; }
  .find-candidates__skeleton-row {
    display: flex;
    gap: 12px; }
  .find-candidates__skeleton-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px; }
.import-tracker-cont {
  margin-top: 32px !important;
  width: 100%;
  display: flex;
  justify-content: center; }
  .import-tracker-cont .import-content-cont {
    width: 100%;
    max-width: 720px; }
  .import-tracker-cont .MuiButton-text {
    color: #6b7280;
    font-weight: 500;
    font-size: 14px;
    text-transform: none;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.15s ease; }
    .import-tracker-cont .MuiButton-text:hover {
      background: #f3f4f6;
      color: #374151; }
    .import-tracker-cont .MuiButton-text .MuiButton-startIcon {
      margin-right: 6px; }
  .import-tracker-cont .import-content-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    width: 100%;
    padding: 28px 32px;
    margin-top: 16px; }
  .import-tracker-cont .import-heading {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a2e;
    margin: 0 0 4px; }
  .import-tracker-cont .import-text {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 20px; }
  .import-tracker-cont .download-link {
    color: #3431ac;
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline; }
  .import-tracker-cont .action-buttons {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding: 20px 0;
    gap: 10px;
    margin-top: 4px; }
    .import-tracker-cont .action-buttons .btn {
      border-radius: 8px;
      font-size: 14px;
      font-weight: 500;
      padding: 10px 24px;
      transition: all 0.15s ease;
      text-transform: none;
      cursor: pointer; }
    .import-tracker-cont .action-buttons .btn-text {
      background: #ffffff;
      border: 1px solid #e5e7eb;
      color: #374151; }
      .import-tracker-cont .action-buttons .btn-text:hover {
        background: #f9fafb;
        border-color: #d1d5db; }
    .import-tracker-cont .action-buttons .btn-primary {
      background: #3431ac;
      border: 1px solid #3431ac;
      color: #ffffff; }
      .import-tracker-cont .action-buttons .btn-primary:hover {
        background: #2a279a;
        box-shadow: 0 2px 8px rgba(52, 49, 172, 0.3); }
      .import-tracker-cont .action-buttons .btn-primary:disabled {
        background: #c7c6e8;
        border-color: #c7c6e8;
        cursor: not-allowed;
        box-shadow: none; }
  .import-tracker-cont .uploaded-file-name {
    font-size: 13px;
    color: #374151;
    font-weight: 500; }
  .import-tracker-cont .deleteIcon {
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.15s ease; }
    .import-tracker-cont .deleteIcon:hover {
      opacity: 1; }
  .import-tracker-cont .dnd-window {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #e5e7eb; }
    .import-tracker-cont .dnd-window .dnd-window-header {
      height: 28px;
      background: #f3f4f6;
      border-bottom: 1px solid #e5e7eb;
      display: flex;
      align-items: center; }
      .import-tracker-cont .dnd-window .dnd-window-header .window-header-actions {
        display: flex;
        padding-left: 12px;
        gap: 5px; }
        .import-tracker-cont .dnd-window .dnd-window-header .window-header-actions div {
          width: 8px;
          height: 8px;
          background-color: #d1d5db;
          border-radius: 50%; }
    .import-tracker-cont .dnd-window .dnd-window-body .dnd-zone {
      width: 100%; }
      .import-tracker-cont .dnd-window .dnd-window-body .dnd-zone .dropzone {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 12px;
        border: none;
        color: #9ca3af;
        min-height: 260px;
        outline: none;
        transition: background 0.2s ease;
        justify-content: start;
        background: #fafbfc; }
        .import-tracker-cont .dnd-window .dnd-window-body .dnd-zone .dropzone:focus {
          background: #f5f5ff; }
        .import-tracker-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .dropzone-content {
          display: flex;
          flex-direction: column;
          align-items: center;
          flex-grow: 10;
          justify-content: center; }
          .import-tracker-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .dropzone-content img {
            margin-bottom: 16px;
            opacity: 0.7; }
          .import-tracker-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .dropzone-content p {
            text-align: center;
            margin: 6px 0; }
            .import-tracker-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .dropzone-content p:first-child {
              font-size: 15px;
              line-height: 1.4;
              font-weight: 600;
              color: #374151; }
            .import-tracker-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .dropzone-content p:last-child {
              font-size: 14px;
              line-height: 1.4;
              font-weight: 400;
              color: #9ca3af; }
              .import-tracker-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .dropzone-content p:last-child span {
                font-weight: 600;
                color: #3431ac;
                cursor: pointer; }
                .import-tracker-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .dropzone-content p:last-child span:hover {
                  text-decoration: underline; }
        .import-tracker-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .file-list {
          flex-grow: 1;
          width: 100%; }
          .import-tracker-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .file-list > div {
            display: flex;
            border-bottom: 1px solid #f3f4f6;
            justify-content: space-between;
            padding: 10px 8px;
            color: #374151;
            border-radius: 6px;
            transition: background 0.15s ease; }
            .import-tracker-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .file-list > div:hover {
              background: #f0f1f3; }
            .import-tracker-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .file-list > div div {
              display: flex;
              align-items: center; }
              .import-tracker-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .file-list > div div span {
                margin-left: 12px; }
              .import-tracker-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .file-list > div div:last-child {
                margin-right: 4px; }
          .import-tracker-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .file-list .file-error {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px; }
            .import-tracker-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .file-list .file-error .file-error-text {
              font-size: 12px;
              line-height: 1.4;
              color: #ea5506;
              font-style: italic; }
            .import-tracker-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .file-list .file-error .file-error-action {
              cursor: pointer;
              color: #9ca3af; }
              .import-tracker-cont .dnd-window .dnd-window-body .dnd-zone .dropzone .file-list .file-error .file-error-action:hover {
                color: #374151; }
.tracker-error {
  padding: 8px 0; }
  .tracker-error + .tracker-error {
    border-top: 1px solid #f0f1f3; }
  .tracker-error__summary {
    font-size: 13px;
    color: #dc2626;
    margin: 0;
    line-height: 1.6; }
    .tracker-error__summary b {
      font-weight: 600; }
  .tracker-error__detail {
    font-size: 12px;
    color: #991b1b;
    margin: 4px 0 0;
    line-height: 1.5; }
  .tracker-error__reasons {
    margin: 4px 0 0;
    padding: 0 0 0 18px;
    list-style: disc; }
  .tracker-error__bullet {
    font-size: 12px;
    color: #991b1b;
    line-height: 1.6; }

.history-item__error-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #f0f1f3; }
  .history-item__error-footer-info {
    font-size: 12px;
    color: #6b7280;
    flex: 1; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.ExportTracker__container .details-background {
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative; }
  .ExportTracker__container .details-background .logo {
    position: absolute;
    bottom: -60px;
    left: 40px;
    z-index: 1;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); }
    @media (max-width: 540px) {
      .ExportTracker__container .details-background .logo {
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); } }
    .ExportTracker__container .details-background .logo img {
      display: block;
      border-radius: 10px;
      max-height: 160px;
      max-width: 160px; }

.ExportTracker__container .details-info {
  padding: 60px 40px 25px;
  position: relative; }
  .ExportTracker__container .details-info .func-buttons-container {
    position: absolute;
    top: -25px;
    right: 40px;
    z-index: 5; }
    @media (max-width: 540px) {
      .ExportTracker__container .details-info .func-buttons-container {
        right: auto;
        left: 50%;
        transform: translateX(-50%); } }
    .ExportTracker__container .details-info .func-buttons-container .btn {
      min-width: 140px;
      margin-left: 20px; }
  .ExportTracker__container .details-info .dashboard-sides-container {
    display: flex; }
    .ExportTracker__container .details-info .dashboard-sides-container .left-side {
      width: 61.2%;
      margin-right: 0;
      flex: 0 0 auto; }
    .ExportTracker__container .details-info .dashboard-sides-container .right-side {
      width: calc(38.8% - 30px);
      flex: 0 0 auto; }
    @media (max-width: 960px) {
      .ExportTracker__container .details-info .dashboard-sides-container {
        display: block; }
        .ExportTracker__container .details-info .dashboard-sides-container .left-side,
        .ExportTracker__container .details-info .dashboard-sides-container .right-side {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; } }
  .ExportTracker__container .details-info .sides-container {
    display: flex;
    max-width: 1000px;
    margin: auto; }
    .ExportTracker__container .details-info .sides-container .left-side {
      width: 71.2%;
      margin-right: 0;
      flex: 0 0 auto; }
    .ExportTracker__container .details-info .sides-container .right-side {
      width: calc(38.8% - 30px);
      flex: 0 0 auto; }
    @media (max-width: 960px) {
      .ExportTracker__container .details-info .sides-container {
        display: block; }
        .ExportTracker__container .details-info .sides-container .left-side,
        .ExportTracker__container .details-info .sides-container .right-side {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; } }
  .ExportTracker__container .details-info .sides-container-reverse {
    display: flex; }
    .ExportTracker__container .details-info .sides-container-reverse .left-side {
      width: 20%;
      flex: 0 0 auto;
      padding-top: 36px; }
    .ExportTracker__container .details-info .sides-container-reverse .right-side {
      width: 60%;
      flex: 0 0 auto; }
    @media (max-width: 960px) {
      .ExportTracker__container .details-info .sides-container-reverse {
        display: block; }
        .ExportTracker__container .details-info .sides-container-reverse .right-side {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; }
        .ExportTracker__container .details-info .sides-container-reverse .left-side {
          display: none; } }
  .ExportTracker__container .details-info .main-container {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0px 2px 4px rgba(147, 157, 177, 0.25); }
    .ExportTracker__container .details-info .main-container .title-default-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px; }
    .ExportTracker__container .details-info .main-container .main-container-title {
      font-size: 20px;
      color: #444444;
      font-weight: 700;
      margin-bottom: 24px;
      padding-left: 10px; }
    .ExportTracker__container .details-info .main-container .basic-info:last-child {
      margin-bottom: 0; }
    .ExportTracker__container .details-info .main-container .list .Select-control {
      border-width: 1px;
      border-radius: 4px; }
  .ExportTracker__container .details-info .actions-container {
    margin-top: 20px;
    display: flex;
    justify-content: space-between; }
    .ExportTracker__container .details-info .actions-container button.btn-primary {
      margin-left: 20px; }
  @media (max-width: 540px) {
    .ExportTracker__container .details-info {
      padding: 60px 20px 15px; } }

.ExportTracker__container .perks input {
  width: 100%;
  margin-bottom: 20px; }

.ExportTracker__container .perks ul {
  list-style: none; }
  .ExportTracker__container .perks ul li {
    border-radius: 25px;
    display: inline-block;
    margin: 0 20px 10px 0;
    background-color: #f5f7f8;
    font-size: 13px;
    font-weight: bold;
    color: #18332f; }
    .ExportTracker__container .perks ul li.edit {
      padding: 5px 5px 5px 20px; }
      .ExportTracker__container .perks ul li.edit .close {
        background-color: #3431AC;
        color: #ffffff;
        display: inline-block;
        height: 22px;
        width: 22px;
        font-size: 16px;
        line-height: 21px;
        font-weight: bold;
        text-align: center;
        border-radius: 50%;
        margin-left: 10px;
        cursor: pointer; }

.ExportTracker__container .youtube iframe {
  width: 100%; }

.ExportTracker__container .Select .Select-control {
  height: 40px; }
  .ExportTracker__container .Select .Select-control .Select-placeholder {
    line-height: 38px; }
  .ExportTracker__container .Select .Select-control .Select-input {
    height: 38px; }
  .ExportTracker__container .Select .Select-control .Select-arrow-zone .Select-arrow {
    color: #c2c2c2; }

.ExportTracker__container .details-widget {
  margin-bottom: 20px;
  border-radius: 5px;
  background-color: #ffffff; }
  .ExportTracker__container .details-widget h4 {
    color: #18332f;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px; }
  .ExportTracker__container .details-widget .details-widget-content {
    padding: 20px 30px 30px; }
    .ExportTracker__container .details-widget .details-widget-content.two-columns {
      display: flex; }
      .ExportTracker__container .details-widget .details-widget-content.two-columns .column {
        width: calc(50% - 15px);
        margin-right: 30px; }
        .ExportTracker__container .details-widget .details-widget-content.two-columns .column:last-of-type {
          margin: 0; }
  .ExportTracker__container .details-widget .row {
    display: flex;
    margin-bottom: 30px;
    color: #18332f; }
    .ExportTracker__container .details-widget .row:last-of-type {
      margin: 0; }
    .ExportTracker__container .details-widget .row > div {
      flex: 1 1 auto; }
      .ExportTracker__container .details-widget .row > div > input:not([type='checkbox']),
      .ExportTracker__container .details-widget .row > div select,
      .ExportTracker__container .details-widget .row > div textarea {
        width: 100%; }
      .ExportTracker__container .details-widget .row > div.inline {
        display: flex;
        align-items: center;
        justify-content: space-between; }
        .ExportTracker__container .details-widget .row > div.inline h4 {
          margin: 0; }
    .ExportTracker__container .details-widget .row .info {
      background-color: #f5f7f8;
      font-size: 13px;
      font-weight: bold;
      color: #18332f;
      padding: 8px 20px;
      border-radius: 5px;
      line-height: 1.8; }
      .ExportTracker__container .details-widget .row .info.description {
        padding: 20px;
        font-weight: normal;
        white-space: pre-wrap; }
      .ExportTracker__container .details-widget .row .info.rounded {
        padding: 4px 20px;
        border-radius: 25px; }
    .ExportTracker__container .details-widget .row.columns-3 > div {
      width: calc(33.333% - 16.666px);
      margin-right: 25px;
      flex: 0 1 auto; }
    .ExportTracker__container .details-widget .row.columns-2 > div {
      width: calc(50% - 15px);
      margin-right: 30px;
      flex: 0 1 auto; }
    .ExportTracker__container .details-widget .row .tag {
      padding: 4px 20px 5px;
      border-radius: 25px;
      margin-top: 19px; }
    @media (max-width: 540px) {
      .ExportTracker__container .details-widget .row {
        display: block; }
        .ExportTracker__container .details-widget .row.columns-3 > div, .ExportTracker__container .details-widget .row.columns-2 > div {
          width: 100%;
          margin-bottom: 20px; } }

.ExportTracker__container .details-info {
  padding: 15px 40px 25px;
  position: relative; }
  .ExportTracker__container .details-info .main-container {
    padding: 30px 60px; }
    .ExportTracker__container .details-info .main-container .date__wrapper {
      display: flex;
      position: relative;
      gap: 20px;
      margin-bottom: 1rem;
      color: #000000; }
      .ExportTracker__container .details-info .main-container .date__wrapper .date-input {
        height: 40px;
        padding: 10px;
        border: 1px solid #C2C2C2;
        color: #000000; }
  .ExportTracker__container .details-info .actions-container {
    justify-content: flex-end;
    gap: 20px; }
    .ExportTracker__container .details-info .actions-container button {
      width: 160px;
      height: 40px; }
    .ExportTracker__container .details-info .actions-container .tracker-export-cancel-btn {
      color: #3431AC;
      border: 1px solid #F1F1F1; }
    .ExportTracker__container .details-info .actions-container .tracker-import-submit-btn {
      background-color: #3431AC;
      color: #FFFFFF;
      font-weight: 700; }

.ExportTracker__container .inner-heading {
  background: #F4F5F8;
  border-radius: 4px 4px 0px 0px;
  padding: 15px;
  margin-bottom: 10px; }
  .ExportTracker__container .inner-heading .header-texttext {
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #444444; }

.ExportTracker__container .export-select__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px; }
  .ExportTracker__container .export-select__wrapper .export-select-inline {
    display: flex;
    align-items: center; }
    .ExportTracker__container .export-select__wrapper .export-select-inline .export-span {
      color: #000000;
      display: inline-block;
      margin-right: 8px; }
    .ExportTracker__container .export-select__wrapper .export-select-inline .export-select {
      width: 20rem;
      z-index: 110; }

.ExportTracker__container .checkbox-laber__wrapper label {
  font-weight: 400;
  font-size: 12px;
  line-height: 30px;
  letter-spacing: 1px;
  color: #000000; }

.export-feild-select-options:hover {
  text-decoration: underline;
  cursor: pointer; }

.export-section-cont {
  margin-bottom: 15px; }

.export-title {
  font-size: 20px;
  font-weight: 700;
  color: #444444;
  margin-bottom: 30px; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.tracker {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  height: calc(100% - 60px); }
  .tracker .table-container {
    height: auto;
    background: #fff;
    overflow: hidden; }
    .tracker .table-container .table-actions {
      position: relative; }
      .tracker .table-container .table-actions .dropdown__trigger {
        display: flex;
        width: 20px;
        height: 20px;
        justify-content: center;
        align-items: center;
        cursor: pointer; }
      .tracker .table-container .table-actions .dropdown__content {
        background-color: #ffffff;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        z-index: 1111111;
        width: 160px; }
        .tracker .table-container .table-actions .dropdown__content ul {
          list-style-type: none; }
        .tracker .table-container .table-actions .dropdown__content li {
          font-size: 13px;
          font-weight: 400;
          line-height: 2.4;
          color: #374151;
          padding: 0 18px;
          border-bottom: 1px solid #f0f1f5;
          white-space: nowrap;
          cursor: pointer;
          transition: background-color 0.15s ease; }
          .tracker .table-container .table-actions .dropdown__content li:hover {
            background-color: #f9fafb; }
          .tracker .table-container .table-actions .dropdown__content li:last-of-type {
            border: none; }
    .tracker .table-container .table-checkbox {
      position: absolute;
      opacity: 0;
      margin: 0;
      width: 18px;
      height: 18px; }
      .tracker .table-container .table-checkbox + label {
        position: relative;
        cursor: pointer;
        padding: 0; }
      .tracker .table-container .table-checkbox + label:before {
        content: '';
        display: inline-block;
        vertical-align: text-top;
        width: 18px;
        height: 18px;
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 4px;
        transition: background-color 0.15s ease, border-color 0.15s ease; }
      .tracker .table-container .table-checkbox:checked + label:before {
        background: #3431AC;
        border-color: #3431AC; }
      .tracker .table-container .table-checkbox:checked + label:after {
        content: '';
        position: absolute;
        left: 5px;
        top: 9px;
        background: white;
        width: 2px;
        height: 2px;
        box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
        transform: rotate(45deg); }
    .tracker .table-container .sort-icon {
      display: inline-block;
      vertical-align: middle;
      font-size: 10px;
      margin-left: 10px;
      color: #3431AC; }
      .tracker .table-container .sort-icon.up {
        transform: rotate(180deg); }
    .tracker .table-container .order-position {
      display: inline-block;
      padding: 3px 5px;
      font-size: 10px;
      color: #3431AC; }
    .tracker .table-container .status {
      text-transform: capitalize; }
      .tracker .table-container .status.active {
        color: #2a2889; }
      .tracker .table-container .status.invite {
        color: #ffa722; }
    .tracker .table-container .select .Select-control .Select-value .Select-value-label {
      color: #c2c2c2 !important;
      font-weight: normal; }
    .tracker .table-container .select .Select-control .Select-arrow {
      color: #959595; }
  .tracker .loading-in-main {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    top: 0;
    left: 0; }
  .tracker .table-container {
    overflow-x: auto;
    overflow-y: hidden; }
    .tracker .table-container table {
      width: 100%; }
    .tracker .table-container table > td > .table-actions > .dropdown__content > li {
      font-weight: 400; }
  .tracker .smooth-dnd-container.horizontal {
    width: 100%; }
  .tracker .payouts-title {
    display: flex;
    align-items: center;
    gap: 4px; }
    .tracker .payouts-title .red-indicator {
      height: 8px;
      width: 8px;
      border-radius: 50%;
      background-color: #e74c3c; }
  .tracker .tabs-opening {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e2e2;
    padding: 0px 30px; }
    .tracker .tabs-opening .rc-tabs-tab {
      display: inline-block;
      padding: 15px 15px 10px;
      cursor: pointer;
      color: #959595;
      margin-right: 20px; }
    .tracker .tabs-opening .rc-tabs-tab-active {
      color: #444444;
      border-bottom: 3px solid #3431AC; }
    .tracker .tabs-opening .rc-tabs-nav-wrap .rc-tabs-nav-scroll {
      padding-left: 25px;
      padding-right: 25px; }
    .tracker .tabs-opening .button-group .btn {
      margin-right: 12px;
      display: flex;
      align-items: center;
      text-align: center;
      justify-content: center;
      margin-bottom: 20px; }
      .tracker .tabs-opening .button-group .btn svg {
        margin-right: 16px; }
    .tracker .tabs-opening .find-candidates-btn {
      display: inline-flex;
      align-items: center;
      padding: 6px 14px;
      margin-right: 8px;
      border-radius: 6px;
      background: #7c3aed;
      color: #fff;
      font-size: 12px;
      font-weight: 500;
      text-transform: none;
      white-space: nowrap; }
      .tracker .tabs-opening .find-candidates-btn:hover {
        background: #6d28d9; }
    .tracker .tabs-opening .row-icons {
      display: flex;
      justify-content: center;
      align-items: center; }
      .tracker .tabs-opening .row-icons .group-icons {
        width: 33px;
        height: 33px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer; }
        .tracker .tabs-opening .row-icons .group-icons:hover {
          background-color: #eeeeee; }
    @media (max-width: 540px) {
      .tracker .tabs-opening {
        padding-top: 12px;
        box-shadow: 0px 4px 4px rgba(147, 157, 177, 0.15);
        background: #ffffff; }
        .tracker .tabs-opening .rc-tabs-tab {
          padding: 0 2px 10px;
          margin-right: 20px; } }
  .tracker .candidate-list-container {
    display: flex;
    align-items: center;
    margin: 20px 30px 0px 33px; }
    .tracker .candidate-list-container .search-block {
      width: 100%;
      min-width: 0;
      position: relative; }
    .tracker .candidate-list-container .filter-icon-cont {
      position: relative;
      margin: 3px 0px 0px 10px;
      cursor: pointer; }
      .tracker .candidate-list-container .filter-icon-cont.disabled {
        pointer-events: none;
        cursor: not-allowed;
        opacity: 0.5; }
      .tracker .candidate-list-container .filter-icon-cont .filters-count {
        color: white;
        background-color: #3431AC;
        border-radius: 50%;
        padding: 2px 5px;
        font-size: 12px;
        position: absolute;
        top: -8px;
        right: -8px; }
      .tracker .candidate-list-container .filter-icon-cont .filters-icon {
        height: 15px !important;
        width: 21px !important; }
  .tracker .tracker-container {
    display: flex;
    flex-direction: column;
    margin: 10px 61px 0px 33px;
    position: relative; }
    .tracker .tracker-container.tracker-height {
      min-height: calc(100% - 127px); }
    .tracker .tracker-container .add-interview-button {
      display: flex;
      justify-content: space-between;
      margin-bottom: 1em;
      font-size: 14px; }
      .tracker .tracker-container .add-interview-button .main-filters {
        display: flex;
        align-items: center;
        padding: 6px 15px 6px 0px;
        gap: 8px; }
        .tracker .tracker-container .add-interview-button .main-filters .vertical-bar {
          background: #d1d8dc;
          width: 1px;
          height: 30px; }
        .tracker .tracker-container .add-interview-button .main-filters .archived-search-results {
          display: flex;
          align-items: center;
          gap: 5px;
          font-size: 14px;
          line-height: 16px;
          text-decoration-line: underline;
          color: #444444;
          cursor: pointer; }
        .tracker .tracker-container .add-interview-button .main-filters .filter-btn {
          display: flex;
          align-items: center;
          background: #ffffff;
          border: 1px solid #d1d8dc;
          float: left;
          margin: 3px 2px;
          font-weight: 400;
          font-size: 14px;
          line-height: 16px;
          text-align: right;
          color: #808080;
          text-decoration: unset;
          padding: 4px 8px;
          border-radius: 4px;
          cursor: pointer; }
          .tracker .tracker-container .add-interview-button .main-filters .filter-btn.selected {
            border: 1px solid #505a6c;
            color: #505a6c;
            font-weight: 600; }
          .tracker .tracker-container .add-interview-button .main-filters .filter-btn svg {
            width: 15px;
            height: 15px;
            margin-right: 6px; }
        .tracker .tracker-container .add-interview-button .main-filters .view-mode-toggle {
          display: flex;
          align-items: center;
          gap: 4px; }
          .tracker .tracker-container .add-interview-button .main-filters .view-mode-toggle .view-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #ffffff;
            border: 1px solid #d1d8dc;
            border-radius: 4px;
            padding: 6px 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            color: #808080; }
            .tracker .tracker-container .add-interview-button .main-filters .view-mode-toggle .view-btn:hover {
              background: #f8f9fc; }
            .tracker .tracker-container .add-interview-button .main-filters .view-mode-toggle .view-btn.selected {
              border: 1px solid #505a6c;
              background: #f8f9fc;
              color: #505a6c; }
            .tracker .tracker-container .add-interview-button .main-filters .view-mode-toggle .view-btn svg {
              width: 18px;
              height: 18px; }

.tracker-menu-item .tracker-menu-item-icon {
  min-width: unset;
  margin-right: 12px; }

.tracker-menu-item .tracker-menu-item-text {
  min-width: 100px; }

.settings-icon-size {
  width: 16px !important;
  height: 16px !important;
  opacity: 0.7 !important;
  margin-top: -8px; }
.block-navigator {
  border-radius: 12px;
  border: 1px solid #e8eaed;
  background: #ffffff;
  overflow: hidden; }
  .block-navigator .MuiList-padding {
    padding: 0; }
  .block-navigator .MuiMenuItem-root {
    padding: 12px 18px;
    background: #ffffff;
    color: #6b7280;
    border-bottom: 1px solid #f0f1f3;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease; }
    .block-navigator .MuiMenuItem-root:last-of-type {
      border-bottom: none; }
    .block-navigator .MuiMenuItem-root.Mui-selected, .block-navigator .MuiMenuItem-root:hover {
      font-weight: 600;
      background: #f5f4fc;
      color: #1a1a2e;
      border-right: 3px solid #3431ac; }
    .block-navigator .MuiMenuItem-root:not(.Mui-selected) {
      border-right: 3px solid transparent; }
.block-navigator {
  border-radius: 12px;
  border: 1px solid #e8eaed;
  background: #ffffff;
  overflow: hidden; }
  .block-navigator .MuiList-padding {
    padding: 0; }
  .block-navigator .MuiMenuItem-root {
    padding: 12px 18px;
    background: #ffffff;
    color: #6b7280;
    border-bottom: 1px solid #f0f1f3;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease; }
    .block-navigator .MuiMenuItem-root:last-of-type {
      border-bottom: none; }
    .block-navigator .MuiMenuItem-root.Mui-selected, .block-navigator .MuiMenuItem-root:hover {
      font-weight: 600;
      background: #f5f4fc;
      color: #1a1a2e;
      border-right: 3px solid #3431ac; }
    .block-navigator .MuiMenuItem-root:not(.Mui-selected) {
      border-right: 3px solid transparent; }

.block-navigator__import-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-top: 1px solid #f0f1f3;
  color: #3431ac;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s ease; }
  .block-navigator__import-btn:hover {
    background: #f5f4fc;
    text-decoration: none;
    color: #3431ac; }
  .block-navigator__import-btn svg {
    width: 18px;
    height: 18px; }
.opening-delete-modal {
  background: #fff;
  border-radius: 16px;
  overflow: visible;
  width: 520px !important; }
  .opening-delete-modal .modal-content {
    padding: 0px !important; }
  .opening-delete-modal .opening-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f1f3;
    background: #fafbfc;
    border-radius: 16px 16px 0 0; }
    .opening-delete-modal .opening-modal__header h3 {
      font-size: 18px;
      font-weight: 600;
      color: #1a1a2e;
      margin: 0; }
  .opening-delete-modal .opening-modal__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #9ca3af;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease; }
    .opening-delete-modal .opening-modal__close:hover {
      color: #374151;
      background: #f3f4f6; }
  .opening-delete-modal .modal-container__you-sure {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f1f3;
    background: #fafbfc;
    border-radius: 16px 16px 0 0; }
    .opening-delete-modal .modal-container__you-sure h3 {
      font-size: 18px;
      font-weight: 600;
      color: #1a1a2e;
      margin: 0; }
    .opening-delete-modal .modal-container__you-sure .close-icon {
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      color: #9ca3af;
      font-size: 18px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.15s ease; }
      .opening-delete-modal .modal-container__you-sure .close-icon:hover {
        color: #374151;
        background: #f3f4f6; }
  .opening-delete-modal .modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    max-width: 100%; }
  .opening-delete-modal .inner-text {
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
    .opening-delete-modal .inner-text img,
    .opening-delete-modal .inner-text svg {
      display: block;
      margin: 0 auto; }
    .opening-delete-modal .inner-text.light {
      color: #9ca3af;
      font-size: 13px;
      font-weight: 400; }
  .opening-delete-modal .archive-modal-content {
    max-width: 90%; }
  .opening-delete-modal .aligned-text {
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    width: 100%; }
    .opening-delete-modal .aligned-text ul {
      font-weight: 500;
      overflow-y: auto;
      max-height: 200px; }
    .opening-delete-modal .aligned-text li {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      width: 100%; }
    .opening-delete-modal .aligned-text ul.list-normal-text {
      font-weight: 400;
      padding-left: 20px; }
    .opening-delete-modal .aligned-text.existing-members {
      font-weight: 500;
      display: grid;
      grid-template-columns: 1fr 1fr;
      margin-left: 30px;
      -moz-column-gap: 20px;
           column-gap: 20px; }
    .opening-delete-modal .aligned-text.warning-text {
      color: #dc2626; }
    .opening-delete-modal .aligned-text.light-text {
      color: #9ca3af;
      font-weight: 400; }
  .opening-delete-modal .inner-content {
    width: 100%; }
  .opening-delete-modal .action-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    border-top: 1px solid #f0f1f3;
    background: #fafbfc;
    border-radius: 0 0 16px 16px; }
    .opening-delete-modal .action-buttons .btn-primary {
      padding: 9px 24px;
      font-size: 14px;
      font-weight: 500;
      border-radius: 8px;
      background: #3431ac;
      color: #fff;
      border: none;
      cursor: pointer;
      transition: all 0.15s ease; }
      .opening-delete-modal .action-buttons .btn-primary:hover {
        background: #2a279a; }
    .opening-delete-modal .action-buttons .btn-outline {
      padding: 9px 24px;
      font-size: 14px;
      font-weight: 500;
      border-radius: 8px;
      background: #fff;
      color: #374151;
      border: 1px solid #e5e7eb;
      cursor: pointer;
      transition: all 0.15s ease; }
      .opening-delete-modal .action-buttons .btn-outline:hover {
        background: #f9fafb;
        border-color: #d1d5db; }
    .opening-delete-modal .action-buttons .btn-text {
      border: 1px solid #3431ac;
      padding: 9px 24px;
      font-size: 14px;
      font-weight: 500;
      border-radius: 8px;
      background: #fff;
      color: #3431ac;
      cursor: pointer;
      transition: all 0.15s ease; }
      .opening-delete-modal .action-buttons .btn-text:hover {
        background: #eeedfc; }
    .opening-delete-modal .action-buttons .btn:disabled {
      color: #9ca3af;
      background: #d1d5db;
      font-weight: 400;
      border: none;
      cursor: not-allowed; }
  .opening-delete-modal .error {
    color: #dc2626; }

.jobs-confirm__icon {
  display: flex;
  justify-content: center;
  padding: 24px 24px 0; }

.jobs-confirm__text {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #374151;
  padding: 16px 24px 0;
  line-height: 1.6; }

.jobs-confirm__content {
  max-height: 180px;
  overflow: auto;
  padding: 16px 24px; }
.integrations-mapping-cont {
  background-color: #ffffff; }
  .integrations-mapping-cont .step-head-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px; }
  .integrations-mapping-cont .step-info-cont {
    display: flex;
    gap: 14px;
    align-items: center; }
  .integrations-mapping-cont .step {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: #eef0fb;
    color: #3431ac;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center; }
  .integrations-mapping-cont .int-heading {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin: 0; }
  .integrations-mapping-cont .sync-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #ffffff;
    color: #374151;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap; }
    .integrations-mapping-cont .sync-btn:hover {
      background: #f9fafb;
      border-color: #9ca3af; }
    .integrations-mapping-cont .sync-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed; }
  .integrations-mapping-cont .step-content {
    width: 100%;
    padding: 0; }
  .integrations-mapping-cont .setup-indication-cont {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: #374151;
    gap: 10px;
    margin-bottom: 16px; }
    .integrations-mapping-cont .setup-indication-cont:empty {
      display: none; }
  .integrations-mapping-cont .int-mapping-cont {
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #d1d5db;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 10px;
    background: #fafbfc;
    transition: all 0.15s ease; }
    .integrations-mapping-cont .int-mapping-cont:hover {
      border-color: #3431ac;
      background: #f5f5ff; }
    .integrations-mapping-cont .int-mapping-cont.disabled {
      cursor: not-allowed;
      background: #f9fafb;
      border-color: #e5e7eb; }
      .integrations-mapping-cont .int-mapping-cont.disabled p {
        color: #c2c2c2; }
      .integrations-mapping-cont .int-mapping-cont.disabled svg path {
        fill: #c2c2c2; }
      .integrations-mapping-cont .int-mapping-cont.disabled:hover {
        border-color: #e5e7eb;
        background: #f9fafb; }
  .integrations-mapping-cont .int-mapping-text {
    margin-left: 8px;
    font-weight: 500;
    font-size: 14px;
    color: #3431ac; }
  .integrations-mapping-cont .int-edit-mapping-cont {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 10px;
    background: #ffffff;
    transition: border-color 0.15s ease; }
    .integrations-mapping-cont .int-edit-mapping-cont:hover {
      border-color: #d1d5db; }
    .integrations-mapping-cont .int-edit-mapping-cont .primary-cont {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 20px; }
    .integrations-mapping-cont .int-edit-mapping-cont .secondary-cont {
      padding: 14px 20px; }
  .integrations-mapping-cont .info-left-cont {
    display: flex;
    align-items: center;
    gap: 12px; }
  .integrations-mapping-cont .sync-info-heading {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    color: #1a1a2e;
    margin: 0; }
  .integrations-mapping-cont .sync-info-time {
    font-size: 12px;
    line-height: 1.4;
    color: #6b7280;
    margin: 0;
    margin-top: 2px; }
  .integrations-mapping-cont .sync-info-btn {
    border: 1px solid #d1d5db !important;
    color: #374151;
    text-transform: none;
    font-weight: 500;
    border-radius: 8px;
    font-size: 13px;
    padding: 6px 14px;
    transition: all 0.15s ease; }
    .integrations-mapping-cont .sync-info-btn:hover {
      background: #f9fafb;
      border-color: #9ca3af !important; }
    .integrations-mapping-cont .sync-info-btn .btn-content {
      display: flex;
      gap: 6px;
      align-items: center; }
  .integrations-mapping-cont .info-cont {
    font-size: 13px;
    color: #6b7280;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 16px;
    line-height: 1.5; }
  .integrations-mapping-cont .info-icon {
    height: 16px;
    width: 16px;
    flex-shrink: 0; }
@charset "UTF-8";
.email-preview-button {
  color: #959595 !important;
  padding: 4px !important;
  margin-right: 4px !important;
  transition: color 0.2s ease !important; }
  .email-preview-button:hover {
    color: #0f73bc !important;
    background-color: rgba(15, 115, 188, 0.08) !important; }
  .email-preview-button .MuiSvgIcon-root {
    font-size: 18px !important; }

.notification-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0; }

.toggle-with-preview {
  display: flex;
  align-items: center;
  gap: 2px; }
  .toggle-with-preview .email-preview-button {
    flex-shrink: 0; }

.notif-root {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 24px 100px; }

.notif-unsaved-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  border-radius: 10px;
  padding: 12px 18px;
  margin-bottom: 20px;
  color: #3431ac;
  font-size: 14px;
  font-weight: 500; }
  .notif-unsaved-banner__icon {
    font-size: 20px;
    color: #3431ac; }

.notif-section {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px; }
  .notif-section p.section-heading.mt-3.mb-3 {
    color: #959595;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0 0 16px !important;
    margin-top: 0 !important;
    padding: 0; }
  .notif-section .notification-settings-cont {
    margin-bottom: 0;
    margin-top: 0 !important;
    padding: 0;
    background: transparent; }
  .notif-section .notification-audit-section {
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 0;
    border-top: none; }
  .notif-section .select-cont [class$='-control'] {
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important;
    min-height: 40px !important;
    box-shadow: none !important; }
    .notif-section .select-cont [class$='-control']:hover {
      border-color: #9ca3af !important; }
  .notif-section .select-cont [class$='-menu'] {
    border-radius: 8px !important;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    z-index: 20; }
  .notif-section .Select-control {
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important;
    min-height: 40px;
    box-shadow: none !important; }
    .notif-section .Select-control:hover {
      border-color: #9ca3af !important; }
  .notif-section .is-focused > .Select-control {
    border-color: #3431ac !important;
    box-shadow: none !important; }
  .notif-section .Select-menu-outer {
    border-radius: 8px !important;
    z-index: 20; }
  .notif-section .MuiOutlinedInput-root {
    border-radius: 8px !important;
    min-height: 40px;
    font-size: 14px; }
    .notif-section .MuiOutlinedInput-root .MuiOutlinedInput-notchedOutline {
      border-color: #d1d5db !important; }
    .notif-section .MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline {
      border-color: #9ca3af !important; }
    .notif-section .MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
      border-color: #3431ac !important;
      border-width: 1px !important; }
  .notif-section .MuiSelect-select {
    font-size: 14px !important;
    color: #374151; }
  .notif-section .reset-btn {
    border-radius: 8px !important; }

.notif-sticky-actions {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
  z-index: 10; }

.notif-cancel-btn {
  background: #ffffff;
  color: #374151;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s; }
  .notif-cancel-btn:hover {
    background: #f3f4f6;
    border-color: #9ca3af; }

.notif-save-btn {
  background: #3431ac;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s; }
  .notif-save-btn:hover {
    background: #2a2890; }

.notification-action-buttons {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: flex-end;
  padding: 30px 0px; }
  .notification-action-buttons .btn-text {
    border: 1px solid #f1f1f1; }

.notification-settings-cont {
  margin-bottom: 30px; }
  .notification-settings-cont .MuiAutocomplete-popper {
    width: 300px !important; }
  .notification-settings-cont .MuiAutocomplete-paper {
    margin-left: 0 !important; }
  .notification-settings-cont .MuiAutocomplete-hasPopupIcon {
    width: 38% !important; }
  .notification-settings-cont .MuiAutocomplete-listbox {
    width: 100% !important;
    max-width: 100% !important; }
  .notification-settings-cont .refer-form-bottom-border {
    margin-bottom: 1rem; }
  .notification-settings-cont .no-border {
    border-bottom: none !important; }
  .notification-settings-cont .audience {
    display: inline-block;
    width: 70px !important; }
  .notification-settings-cont .labels-cont .label {
    font-size: 14px;
    font-weight: 500; }
  .notification-settings-cont .settings-next {
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    color: #959595;
    margin-bottom: 10px;
    margin-top: 20px; }
  .notification-settings-cont .section-fieldset {
    display: flex;
    align-items: center;
    gap: 10px; }
    .notification-settings-cont .section-fieldset .section-label {
      font-size: 14px;
      font-weight: 500;
      color: #444444;
      text-wrap: nowrap; }
  .notification-settings-cont .notification-section-container {
    padding: 0px 0px 0px 10px; }
  .notification-settings-cont .divider {
    width: 100%;
    height: 1px;
    background-color: #e8e8e8; }
  .notification-settings-cont .MuiTextField-root {
    margin-top: 0px !important; }
  .notification-settings-cont .MuiOutlinedInput-root {
    padding: 3px; }

.week-container {
  display: flex;
  margin-top: 10px;
  margin-bottom: 10px;
  flex-direction: row;
  gap: 8px; }

.select-field {
  width: 200px; }

.strength-questions {
  margin-bottom: 0px !important;
  width: 100%;
  box-shadow: 0px 2px 4px rgba(147, 157, 177, 0.25);
  border-radius: 4px; }
  .strength-questions .MuiSwitch-colorSecondary.Mui-disabled + .MuiSwitch-track {
    background-color: #e9e9e9; }
  .strength-questions .ask-ref-provider {
    margin-left: 20px;
    margin-bottom: 0px;
    font-size: 14px;
    color: #374151; }
  .strength-questions .section-container {
    border-bottom: 0px !important;
    padding: 8px 20px !important; }
  .strength-questions .temp {
    margin-right: 20px;
    margin-left: 20px; }
    .strength-questions .temp .section-container {
      padding: 8px 0 !important; }
      .strength-questions .temp .section-container .labels-cont .sub-label {
        color: #374151;
        font-size: 14px !important;
        font-weight: 400; }

.section-margin {
  margin-top: 20px; }

.unsave_changes_modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }

.minimize-line-space {
  text-align: center; }

.custom-autocomplete .MuiAutocomplete-root .MuiOutlinedInput-root {
  padding: 3px; }

.referral-p {
  font-size: 14px !important;
  font-weight: 400;
  margin: 0;
  margin-top: 5px;
  color: #444444 !important;
  font-style: italic;
  margin-left: -0.02rem; }

.referral-note {
  color: #444444 !important;
  font-style: normal;
  font-weight: 500;
  font-size: 14px; }

.link-text {
  color: #0f73bc;
  text-decoration: underline; }

.referral-form-seperator {
  margin: 1.2rem 0;
  border: 0.3px solid #e8e8e8; }

.referral-p-width {
  width: 100%;
  font-size: 14px !important; }

.no-margin-bottom {
  margin-bottom: 0; }

.notification-container-display {
  display: flex;
  gap: 70px;
  justify-content: flex-end; }

.tooltip-switch-wrapper {
  display: inline-flex; }

.notification-referral-candidate {
  display: flex;
  gap: 25px;
  justify-content: flex-end; }

.label-cont-width {
  max-width: 285px !important; }

.section-container-notification {
  border-bottom: 0px !important;
  padding-bottom: 0px !important; }

.label-col {
  font-size: 14px;
  font-weight: 500; }

.interview-switch-div {
  display: flex;
  gap: 70px; }

/* Referral Provider / Candidate grid — matches permissions role-column header pattern */
.notif-rp-candidate-block {
  margin-top: 4px;
  margin-bottom: 12px; }
  .notif-rp-candidate-block:last-child {
    margin-bottom: 0; }
  .notif-rp-candidate-block .label-switch-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 12px 0; }
    .notif-rp-candidate-block .label-switch-cont:last-child {
      border-bottom: none; }
    .notif-rp-candidate-block .label-switch-cont > .labels-cont.label-cont-width,
    .notif-rp-candidate-block .label-switch-cont > .label {
      flex: 1;
      min-width: 0;
      padding-right: 12px;
      max-width: none !important; }
    .notif-rp-candidate-block .label-switch-cont > .label {
      margin: 0; }

.notif-rp-candidate-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  padding: 4px 0 8px;
  border-bottom: 1px solid #f3f4f6; }

.notif-rp-candidate-header-spacer {
  flex: 1;
  min-width: 0; }

/* Same column widths for header + toggle rows (preview icon + switch per cell) */
.rp-candidate-col-header,
.rp-candidate-col-toggle {
  display: grid;
  grid-template-columns: 136px 136px;
  justify-content: end;
  justify-items: center;
  align-items: center;
  flex-shrink: 0; }

.rp-candidate-notif-col-label {
  display: block;
  margin: 0;
  color: #374151;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  text-align: center; }

.sub-label-sm {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: #808080 !important; }

.tracker-stage-notification-settings {
  padding-left: 10px; }

.mt-mb-10 {
  margin-top: -10px !important;
  margin-bottom: 10px !important; }

.custom-questions-section {
  margin-top: 16px;
  padding: 16px;
  background-color: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e8e8e8; }
  .custom-questions-section .custom-question-item {
    background-color: white;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    padding: 12px;
    margin-bottom: 12px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    cursor: move;
    transition: all 0.2s ease; }
    .custom-questions-section .custom-question-item:hover {
      box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); }
    .custom-questions-section .custom-question-item.dragging {
      opacity: 0.5;
      transform: rotate(2deg); }
    .custom-questions-section .custom-question-item.drag-over {
      border-color: #007bff;
      background-color: #f8f9ff;
      transform: scale(1.02); }
    .custom-questions-section .custom-question-item[draggable='false'] {
      cursor: default; }
    .custom-questions-section .custom-question-item .question-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px; }
      .custom-questions-section .custom-question-item .question-header .drag-handle {
        display: flex;
        align-items: center;
        cursor: grab;
        color: #999999;
        padding: 2px;
        border-radius: 2px;
        transition: color 0.2s ease; }
        .custom-questions-section .custom-question-item .question-header .drag-handle:hover {
          color: #666666; }
        .custom-questions-section .custom-question-item .question-header .drag-handle:active {
          cursor: grabbing; }
        .custom-questions-section .custom-question-item .question-header .drag-handle .drag-icon {
          font-size: 18px; }
      .custom-questions-section .custom-question-item .question-header .question-order {
        background-color: #e9ecef;
        color: #495057;
        padding: 2px 6px;
        border-radius: 10px;
        font-size: 11px;
        font-weight: 500;
        margin-right: 8px;
        min-width: 24px;
        text-align: center; }
      .custom-questions-section .custom-question-item .question-header .question-title {
        font-weight: 500;
        color: #444444;
        font-size: 13px;
        flex: 1; }
      .custom-questions-section .custom-question-item .question-header .question-type {
        font-size: 11px;
        color: #666666;
        font-style: italic; }
      .custom-questions-section .custom-question-item .question-header .question-actions {
        display: flex;
        gap: 4px; }
      .custom-questions-section .custom-question-item .question-header .edit-question-btn {
        color: #666666;
        padding: 2px;
        width: 20px;
        height: 20px; }
      .custom-questions-section .custom-question-item .question-header .remove-question-btn {
        color: #dc3545;
        padding: 2px;
        width: 20px;
        height: 20px; }
    .custom-questions-section .custom-question-item .question-options {
      margin-top: 8px; }
      .custom-questions-section .custom-question-item .question-options .options-label {
        font-size: 11px;
        color: #666666;
        font-weight: 500;
        margin-right: 6px; }
      .custom-questions-section .custom-question-item .question-options .option-tag {
        display: inline-block;
        background-color: #e9ecef;
        color: #495057;
        padding: 1px 6px;
        border-radius: 10px;
        font-size: 11px;
        margin-right: 4px;
        margin-bottom: 2px; }
    .custom-questions-section .custom-question-item .edit-question-form .question-form-row {
      display: flex;
      gap: 12px;
      align-items: flex-start; }
      .custom-questions-section .custom-question-item .edit-question-form .question-form-row .question-title-input {
        flex: 2; }
        .custom-questions-section .custom-question-item .edit-question-form .question-form-row .question-title-input .MuiOutlinedInput-root {
          height: 36px;
          font-size: 14px; }
        .custom-questions-section .custom-question-item .edit-question-form .question-form-row .question-title-input .MuiInputLabel-root {
          font-size: 14px; }
      .custom-questions-section .custom-question-item .edit-question-form .question-form-row .field-type-select {
        flex: 1;
        min-width: 140px; }
        .custom-questions-section .custom-question-item .edit-question-form .question-form-row .field-type-select .MuiOutlinedInput-root {
          height: 36px;
          font-size: 14px; }
        .custom-questions-section .custom-question-item .edit-question-form .question-form-row .field-type-select .MuiInputLabel-root {
          font-size: 14px; }
    .custom-questions-section .custom-question-item .edit-question-form .dropdown-options-section {
      margin-top: 16px;
      padding: 12px;
      background-color: #f8f9fa;
      border-radius: 6px;
      border: 1px solid #e8e8e8; }
      .custom-questions-section .custom-question-item .edit-question-form .dropdown-options-section .options-header {
        margin-bottom: 12px; }
        .custom-questions-section .custom-question-item .edit-question-form .dropdown-options-section .options-header .options-title {
          font-size: 13px;
          font-weight: 500;
          color: #444444; }
      .custom-questions-section .custom-question-item .edit-question-form .dropdown-options-section .option-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: white;
        border: 1px solid #e8e8e8;
        border-radius: 4px;
        padding: 8px 12px;
        margin-bottom: 8px; }
        .custom-questions-section .custom-question-item .edit-question-form .dropdown-options-section .option-item .option-text {
          font-size: 14px;
          color: #444444;
          flex: 1; }
        .custom-questions-section .custom-question-item .edit-question-form .dropdown-options-section .option-item .MuiIconButton-root {
          color: #dc3545;
          padding: 2px;
          width: 24px;
          height: 24px; }
          .custom-questions-section .custom-question-item .edit-question-form .dropdown-options-section .option-item .MuiIconButton-root:hover {
            background-color: rgba(220, 53, 69, 0.1); }
      .custom-questions-section .custom-question-item .edit-question-form .dropdown-options-section .add-option-row {
        display: flex;
        gap: 8px;
        align-items: center; }
        .custom-questions-section .custom-question-item .edit-question-form .dropdown-options-section .add-option-row .option-input {
          flex: 1; }
          .custom-questions-section .custom-question-item .edit-question-form .dropdown-options-section .add-option-row .option-input .MuiOutlinedInput-root {
            height: 36px;
            font-size: 14px; }
          .custom-questions-section .custom-question-item .edit-question-form .dropdown-options-section .add-option-row .option-input .MuiInputLabel-root {
            font-size: 14px; }
        .custom-questions-section .custom-question-item .edit-question-form .dropdown-options-section .add-option-row .add-option-btn {
          color: #3431ac;
          width: 36px;
          height: 36px;
          flex-shrink: 0; }
          .custom-questions-section .custom-question-item .edit-question-form .dropdown-options-section .add-option-row .add-option-btn:hover {
            background-color: rgba(40, 167, 69, 0.1); }
          .custom-questions-section .custom-question-item .edit-question-form .dropdown-options-section .add-option-row .add-option-btn:disabled {
            color: #6c757d; }
    .custom-questions-section .custom-question-item .edit-question-form .edit-action-buttons {
      display: flex;
      gap: 8px;
      margin-top: 16px; }
      .custom-questions-section .custom-question-item .edit-question-form .edit-action-buttons .save-edit-btn {
        background-color: #3431ac;
        color: white;
        padding: 6px 12px;
        border-radius: 4px;
        font-weight: 500;
        font-size: 12px;
        text-transform: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        height: 28px;
        min-width: auto; }
        .custom-questions-section .custom-question-item .edit-question-form .edit-action-buttons .save-edit-btn:hover {
          background-color: #2a2889; }
        .custom-questions-section .custom-question-item .edit-question-form .edit-action-buttons .save-edit-btn:disabled {
          background-color: #6c757d;
          color: white; }
        .custom-questions-section .custom-question-item .edit-question-form .edit-action-buttons .save-edit-btn .MuiSvgIcon-root {
          font-size: 16px;
          margin-right: 2px; }
      .custom-questions-section .custom-question-item .edit-question-form .edit-action-buttons .cancel-edit-btn {
        background-color: #6c757d;
        color: white;
        padding: 6px 12px;
        border-radius: 4px;
        font-weight: 500;
        font-size: 12px;
        text-transform: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        height: 28px;
        min-width: auto; }
        .custom-questions-section .custom-question-item .edit-question-form .edit-action-buttons .cancel-edit-btn:hover {
          background-color: #5a6268; }
        .custom-questions-section .custom-question-item .edit-question-form .edit-action-buttons .cancel-edit-btn:disabled {
          background-color: #adb5bd;
          color: white; }
        .custom-questions-section .custom-question-item .edit-question-form .edit-action-buttons .cancel-edit-btn .MuiSvgIcon-root {
          font-size: 16px;
          margin-right: 2px; }
  .custom-questions-section .add-question-form {
    background-color: white;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 16px;
    margin-top: 16px; }
    .custom-questions-section .add-question-form .question-form-row {
      display: flex;
      gap: 12px;
      align-items: flex-start; }
      .custom-questions-section .add-question-form .question-form-row .question-title-input {
        flex: 2; }
        .custom-questions-section .add-question-form .question-form-row .question-title-input .MuiOutlinedInput-root {
          height: 36px;
          font-size: 14px; }
        .custom-questions-section .add-question-form .question-form-row .question-title-input .MuiInputLabel-root {
          font-size: 14px; }
      .custom-questions-section .add-question-form .question-form-row .field-type-select {
        flex: 1;
        min-width: 140px; }
        .custom-questions-section .add-question-form .question-form-row .field-type-select .MuiOutlinedInput-root {
          height: 36px;
          font-size: 14px; }
        .custom-questions-section .add-question-form .question-form-row .field-type-select .MuiInputLabel-root {
          font-size: 14px; }
    .custom-questions-section .add-question-form .dropdown-options-section {
      margin-top: 16px;
      padding: 12px;
      background-color: #f8f9fa;
      border-radius: 6px;
      border: 1px solid #e8e8e8; }
      .custom-questions-section .add-question-form .dropdown-options-section .options-header {
        margin-bottom: 12px; }
        .custom-questions-section .add-question-form .dropdown-options-section .options-header .options-title {
          font-size: 13px;
          font-weight: 500;
          color: #444444; }
      .custom-questions-section .add-question-form .dropdown-options-section .option-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: white;
        border: 1px solid #e8e8e8;
        border-radius: 4px;
        padding: 8px 12px;
        margin-bottom: 8px; }
        .custom-questions-section .add-question-form .dropdown-options-section .option-item .option-text {
          font-size: 14px;
          color: #444444;
          flex: 1; }
        .custom-questions-section .add-question-form .dropdown-options-section .option-item .MuiIconButton-root {
          color: #dc3545;
          padding: 2px;
          width: 24px;
          height: 24px; }
          .custom-questions-section .add-question-form .dropdown-options-section .option-item .MuiIconButton-root:hover {
            background-color: rgba(220, 53, 69, 0.1); }
      .custom-questions-section .add-question-form .dropdown-options-section .add-option-row {
        display: flex;
        gap: 8px;
        align-items: center; }
        .custom-questions-section .add-question-form .dropdown-options-section .add-option-row .option-input {
          flex: 1; }
          .custom-questions-section .add-question-form .dropdown-options-section .add-option-row .option-input .MuiOutlinedInput-root {
            height: 36px;
            font-size: 14px; }
          .custom-questions-section .add-question-form .dropdown-options-section .add-option-row .option-input .MuiInputLabel-root {
            font-size: 14px; }
        .custom-questions-section .add-question-form .dropdown-options-section .add-option-row .add-option-btn {
          color: #3431ac;
          width: 36px;
          height: 36px;
          flex-shrink: 0; }
          .custom-questions-section .add-question-form .dropdown-options-section .add-option-row .add-option-btn:hover {
            background-color: rgba(40, 167, 69, 0.1); }
          .custom-questions-section .add-question-form .dropdown-options-section .add-option-row .add-option-btn:disabled {
            color: #6c757d; }
    .custom-questions-section .add-question-form .add-question-button {
      margin-top: 16px;
      text-align: left; }
      .custom-questions-section .add-question-form .add-question-button .add-question-btn {
        background-color: #3431ac;
        color: white;
        padding: 8px 16px;
        border-radius: 4px;
        font-weight: 500;
        font-size: 13px;
        text-transform: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        height: 32px;
        min-width: auto; }
        .custom-questions-section .add-question-form .add-question-button .add-question-btn:hover {
          background-color: #2a2889; }
        .custom-questions-section .add-question-form .add-question-button .add-question-btn:disabled {
          background-color: #6c757d;
          color: white; }
        .custom-questions-section .add-question-form .add-question-button .add-question-btn .MuiSvgIcon-root {
          font-size: 18px;
          margin-right: 2px; }
  .custom-questions-section .required-checkbox-row {
    margin: 8px 0; }
    .custom-questions-section .required-checkbox-row .MuiFormControlLabel-root {
      margin: 0; }
      .custom-questions-section .required-checkbox-row .MuiFormControlLabel-root .MuiFormControlLabel-label {
        font-size: 12px;
        color: #666666; }
      .custom-questions-section .required-checkbox-row .MuiFormControlLabel-root .MuiCheckbox-root {
        padding: 4px; }
        .custom-questions-section .required-checkbox-row .MuiFormControlLabel-root .MuiCheckbox-root .MuiSvgIcon-root {
          font-size: 16px; }
  .custom-questions-section .required-indicator {
    color: #dc3545;
    font-size: 11px;
    font-weight: 500;
    margin-left: 8px; }

.save-option-btn:hover {
  background-color: transparent !important; }
  .save-option-btn:hover .MuiSvgIcon-root {
    color: #3431ac !important; }

.cancel-option-btn:hover {
  background-color: transparent !important; }
  .cancel-option-btn:hover .MuiSvgIcon-root {
    color: #424242 !important; }

.edit-option-btn:hover {
  background-color: #f8f7f7 !important; }

@media (max-width: 768px) {
  .custom-questions-section {
    padding: 12px; }
    .custom-questions-section .add-question-form {
      padding: 12px; }
      .custom-questions-section .add-question-form .question-form-row {
        flex-direction: column;
        gap: 8px; }
        .custom-questions-section .add-question-form .question-form-row .question-title-input,
        .custom-questions-section .add-question-form .question-form-row .field-type-select {
          width: 100%; }
      .custom-questions-section .add-question-form .dropdown-options-section {
        padding: 10px; }
        .custom-questions-section .add-question-form .dropdown-options-section .add-option-row {
          flex-direction: column;
          gap: 8px; }
          .custom-questions-section .add-question-form .dropdown-options-section .add-option-row .option-input {
            width: 100%; } }

/* ── Notifications audit link ────────────────────── */
.notification-audit-section {
  margin-top: 24px;
  padding-top: 24px;
  margin-bottom: 24px;
  border-top: 1px solid #e8e8e8; }
  .notification-audit-section .notification-audit-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background-color: #f8f9fa;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit; }
    .notification-audit-section .notification-audit-link:hover {
      background-color: #f0eefa;
      border-color: #3431ac; }
    .notification-audit-section .notification-audit-link .notification-audit-link__content {
      display: flex;
      align-items: center;
      gap: 12px; }
      .notification-audit-section .notification-audit-link .notification-audit-link__content .notification-audit-link__icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #e0ddf7;
        border-radius: 8px;
        color: #3431ac; }
      .notification-audit-section .notification-audit-link .notification-audit-link__content .notification-audit-link__text h3 {
        margin: 0;
        font-size: 14px;
        font-weight: 600;
        color: #343741; }
      .notification-audit-section .notification-audit-link .notification-audit-link__content .notification-audit-link__text p {
        margin: 2px 0 0 0;
        font-size: 12px;
        color: #959595; }
    .notification-audit-section .notification-audit-link .notification-audit-link__arrow {
      color: #959595;
      transition: color 0.2s ease; }
    .notification-audit-section .notification-audit-link:hover .notification-audit-link__arrow {
      color: #3431ac; }
.sso-integration-cont-root {
  width: 100%;
  display: flex;
  justify-content: center; }
  .sso-integration-cont-root .sso-integration-cont {
    margin-top: 13px;
    width: 100%;
    max-width: 650px; }
    .sso-integration-cont-root .sso-integration-cont .custom-file-upload {
      display: inline-flex;
      padding: 12px 17px;
      cursor: pointer;
      font-family: Roboto;
      font-style: normal;
      font-weight: 500;
      font-size: 12px;
      line-height: 14px;
      text-align: center;
      color: #3431AC;
      float: right;
      background: #f5f7f9;
      border: 1px dashed #d1d8dc;
      border-radius: 4px; }
    .sso-integration-cont-root .sso-integration-cont .form-class .file-style1 {
      display: 'flex';
      flex-direction: 'row'; }
    .sso-integration-cont-root .sso-integration-cont .form-class .file-style2 {
      padding-top: 3px;
      color: #444444;
      display: flex;
      border-bottom: 1px solid lightgray;
      padding-bottom: 4px;
      width: 36%; }
    .sso-integration-cont-root .sso-integration-cont .form-class .file-style3 {
      color: #757575;
      font-size: 27px; }
    .sso-integration-cont-root .sso-integration-cont .form-class .file-style4 {
      color: #757575;
      padding-left: 'auto';
      cursor: 'pointer'; }
    .sso-integration-cont-root .sso-integration-cont .form-class .delete-icon {
      margin-left: 53px; }
    .sso-integration-cont-root .sso-integration-cont .form-class .file-name-style {
      margin-top: 5px;
      margin-left: 20px; }
    .sso-integration-cont-root .sso-integration-cont .form-class .support-style {
      padding-left: 23px;
      padding-bottom: 20px; }
    .sso-integration-cont-root .sso-integration-cont .form-class .side-button {
      margin-left: 300px;
      padding-bottom: 20px;
      display: flex; }
      .sso-integration-cont-root .sso-integration-cont .form-class .side-button .setup-btn {
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0px 20px;
        width: 160px;
        height: 40px;
        background: #3431AC;
        border: 1px solid #3431AC;
        border-radius: 4px;
        flex: none;
        order: 1;
        flex-grow: 0;
        color: white; }
      .sso-integration-cont-root .sso-integration-cont .form-class .side-button .disable-btn {
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0px 20px;
        width: 160px;
        height: 40px;
        background: #ebebeb;
        border: 1px solid #ebebeb;
        border-radius: 4px;
        flex: none;
        order: 1;
        flex-grow: 0;
        color: #959595; }
      .sso-integration-cont-root .sso-integration-cont .form-class .side-button .cancel-btn {
        border: 1px solid lightgray !important;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0px 20px;
        width: 160px;
        height: 40px;
        background: white;
        border: 1px solid white;
        border-radius: 4px;
        flex: none;
        order: 1;
        flex-grow: 0;
        color: #3431AC;
        margin-right: 5px; }
    .sso-integration-cont-root .sso-integration-cont .form-class .error-style {
      color: #e74c3c;
      font-family: Roboto;
      font-size: 14px;
      font-weight: 400;
      line-height: 16px;
      letter-spacing: 0px;
      text-align: left;
      margin-left: 22px; }
      .sso-integration-cont-root .sso-integration-cont .form-class .error-style li {
        margin-left: 12px; }
      .sso-integration-cont-root .sso-integration-cont .form-class .error-style h5 {
        font-family: Roboto;
        font-size: 14px;
        font-weight: 500;
        line-height: 16px;
        letter-spacing: 0px;
        text-align: left; }
    .sso-integration-cont-root .sso-integration-cont .form-class .adjust-fields {
      width: 90%;
      padding-left: 20px;
      padding-bottom: 29px; }
    .sso-integration-cont-root .sso-integration-cont .space-top {
      width: 86%;
      display: flex; }
      .sso-integration-cont-root .sso-integration-cont .space-top .points {
        background: #f9f9f9;
        border: 1px solid #eeeeee;
        border-radius: 2px;
        font-weight: 400;
        font-size: 12px;
        line-height: 12px;
        margin-right: 20px;
        height: 22px;
        min-width: 22px;
        text-align: center;
        padding-top: 4px;
        color: black; }
      .sso-integration-cont-root .sso-integration-cont .space-top .points-name {
        margin-bottom: 14px;
        font-weight: 700;
        font-size: 14px;
        line-height: 16px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #000000; }
      .sso-integration-cont-root .sso-integration-cont .space-top .points-sub {
        font-weight: 400;
        font-size: 14px;
        line-height: 16px;
        color: #000000; }
      .sso-integration-cont-root .sso-integration-cont .space-top .desc_list {
        font-size: 13px; }
      .sso-integration-cont-root .sso-integration-cont .space-top .points2-sub {
        font-weight: 400;
        font-size: 14px;
        line-height: 16px;
        color: #000000;
        width: 120%;
        margin-bottom: 20px; }
      .sso-integration-cont-root .sso-integration-cont .space-top .points-list {
        font-weight: 400;
        font-size: 14px;
        line-height: 16px;
        color: #000000;
        width: 120%;
        margin-bottom: 20px;
        padding-left: 16px; }
        .sso-integration-cont-root .sso-integration-cont .space-top .points-list .list-item {
          margin-bottom: 5px; }
          .sso-integration-cont-root .sso-integration-cont .space-top .points-list .list-item .link-text {
            color: #0f73bc;
            text-decoration: underline !important; }
      .sso-integration-cont-root .sso-integration-cont .space-top .referral-link {
        position: relative;
        margin-bottom: 15px; }
        .sso-integration-cont-root .sso-integration-cont .space-top .referral-link input {
          padding: 8px 60px 8px 10px;
          border-radius: 4px;
          border: none;
          line-height: 24px;
          color: #00000059;
          width: 300px;
          background-color: rgba(0, 0, 0, 0.03); }
        .sso-integration-cont-root .sso-integration-cont .space-top .referral-link label {
          position: absolute;
          font-size: 11px;
          font-weight: 500;
          color: #aaaaaa;
          top: -6px;
          left: 10px; }
        .sso-integration-cont-root .sso-integration-cont .space-top .referral-link .copy-button {
          position: absolute;
          top: 0;
          right: 56px;
          height: 100%;
          padding: 10px 15px;
          min-width: -moz-fit-content;
          min-width: fit-content;
          display: inline-flex;
          justify-content: center;
          align-items: center;
          border: 1px solid #eeeeee;
          border-radius: 4px; }
      .sso-integration-cont-root .sso-integration-cont .space-top .gif-image {
        width: 240px;
        height: 199.3px; }
      .sso-integration-cont-root .sso-integration-cont .space-top .need-help {
        font-weight: 400;
        font-size: 14px;
        line-height: 16px;
        color: #000000;
        margin-top: 40px;
        margin-bottom: 40px; }
        .sso-integration-cont-root .sso-integration-cont .space-top .need-help .link-text {
          color: #0f73bc;
          text-decoration: underline !important; }
    .sso-integration-cont-root .sso-integration-cont .back-button {
      margin-bottom: 12px;
      cursor: pointer; }
      .sso-integration-cont-root .sso-integration-cont .back-button .back-name {
        font-weight: 400;
        font-size: 14px;
        line-height: 16px;
        color: #444444;
        margin-left: 5px; }
    .sso-integration-cont-root .sso-integration-cont .top-container {
      background: #ffffff;
      border-radius: 4px;
      margin-top: 20px;
      margin-bottom: 20px; }
      .sso-integration-cont-root .sso-integration-cont .top-container .info-cont {
        gap: 12px;
        margin-left: 20px;
        padding-top: 12px; }
        .sso-integration-cont-root .sso-integration-cont .top-container .info-cont .name {
          font-weight: 700;
          font-size: 20px;
          color: #000000; }
        .sso-integration-cont-root .sso-integration-cont .top-container .info-cont .hr-line {
          width: 97% !important;
          margin: 16px 0px; }
        .sso-integration-cont-root .sso-integration-cont .top-container .info-cont .description {
          font-weight: 400;
          font-size: 14px;
          line-height: 16px;
          margin-top: 8px;
          padding-bottom: 20px; }
    .sso-integration-cont-root .sso-integration-cont .end-container {
      background: #ffffff;
      border-radius: 4px;
      margin-bottom: 20px; }
      .sso-integration-cont-root .sso-integration-cont .end-container .info-cont {
        margin-left: 58px;
        padding-top: 12px;
        padding-bottom: 1px; }
        .sso-integration-cont-root .sso-integration-cont .end-container .info-cont .disable-integration {
          font-weight: 400;
          font-size: 14px;
          line-height: 16px;
          color: #000000; }
        .sso-integration-cont-root .sso-integration-cont .end-container .info-cont .points-list {
          font-weight: 400;
          font-size: 14px;
          line-height: 16px;
          color: #000000;
          width: 120%;
          margin-bottom: 20px;
          padding-left: 16px; }
          .sso-integration-cont-root .sso-integration-cont .end-container .info-cont .points-list .list-item {
            margin-bottom: 10px; }
            .sso-integration-cont-root .sso-integration-cont .end-container .info-cont .points-list .list-item .link-text {
              color: #0f73bc;
              text-decoration: underline !important; }
    .sso-integration-cont-root .sso-integration-cont .mid-container {
      background: #ffffff;
      border-radius: 4px;
      margin-bottom: 20px; }
      .sso-integration-cont-root .sso-integration-cont .mid-container .info-cont {
        gap: 12px;
        margin-left: 20px;
        padding-top: 12px; }
        .sso-integration-cont-root .sso-integration-cont .mid-container .info-cont .cancel-btn {
          background: #fff;
          border-radius: 5px;
          color: #3431AC; }
        .sso-integration-cont-root .sso-integration-cont .mid-container .info-cont .name {
          font-weight: 700;
          font-size: 20px;
          color: #000000; }
        .sso-integration-cont-root .sso-integration-cont .mid-container .info-cont .hr-line {
          width: 97% !important;
          margin: 16px 0px; }
        .sso-integration-cont-root .sso-integration-cont .mid-container .info-cont .authorize-container {
          display: flex; }
          .sso-integration-cont-root .sso-integration-cont .mid-container .info-cont .authorize-container .points {
            background: #f9f9f9;
            border: 1px solid #eeeeee;
            border-radius: 2px;
            font-weight: 400;
            font-size: 12px;
            line-height: 12px;
            margin-right: 20px;
            height: 22px;
            width: 22px;
            text-align: center;
            padding-top: 4px;
            color: black; }
          .sso-integration-cont-root .sso-integration-cont .mid-container .info-cont .authorize-container .authorize-btn {
            border: 1px solid #808080 !important;
            border-radius: 4px;
            font-weight: 500;
            font-size: 14px;
            line-height: 16px;
            color: #808080;
            padding: 10px;
            display: flex; }
            .sso-integration-cont-root .sso-integration-cont .mid-container .info-cont .authorize-container .authorize-btn .btn-name {
              margin-left: 10px; }
          .sso-integration-cont-root .sso-integration-cont .mid-container .info-cont .authorize-container .authorize {
            width: 76%; }
            .sso-integration-cont-root .sso-integration-cont .mid-container .info-cont .authorize-container .authorize .points-name {
              font-weight: 700;
              font-size: 14px;
              line-height: 16px;
              letter-spacing: 1px;
              text-transform: uppercase;
              color: #000000; }
            .sso-integration-cont-root .sso-integration-cont .mid-container .info-cont .authorize-container .authorize .points-sub {
              font-weight: 400;
              font-size: 14px;
              line-height: 16px;
              color: #000000; }
            .sso-integration-cont-root .sso-integration-cont .mid-container .info-cont .authorize-container .authorize .desc_list {
              font-size: 13px; }
            .sso-integration-cont-root .sso-integration-cont .mid-container .info-cont .authorize-container .authorize .points2-sub {
              font-weight: 400;
              font-size: 14px;
              line-height: 16px;
              color: #000000;
              width: 120%;
              margin-bottom: 20px; }
            .sso-integration-cont-root .sso-integration-cont .mid-container .info-cont .authorize-container .authorize .points-list {
              font-weight: 400;
              font-size: 14px;
              line-height: 16px;
              color: #000000;
              width: 120%;
              margin-bottom: 20px;
              padding-left: 16px; }
              .sso-integration-cont-root .sso-integration-cont .mid-container .info-cont .authorize-container .authorize .points-list .list-item {
                margin-bottom: 5px; }
                .sso-integration-cont-root .sso-integration-cont .mid-container .info-cont .authorize-container .authorize .points-list .list-item .link-text {
                  color: #0f73bc;
                  text-decoration: underline !important; }
            .sso-integration-cont-root .sso-integration-cont .mid-container .info-cont .authorize-container .authorize .referral-link {
              position: relative;
              margin-bottom: 15px; }
              .sso-integration-cont-root .sso-integration-cont .mid-container .info-cont .authorize-container .authorize .referral-link input {
                padding: 8px 60px 8px 10px;
                border-radius: 4px;
                border: none;
                line-height: 24px;
                color: #00000059;
                width: 300px;
                background-color: rgba(0, 0, 0, 0.03); }
              .sso-integration-cont-root .sso-integration-cont .mid-container .info-cont .authorize-container .authorize .referral-link label {
                position: absolute;
                font-size: 11px;
                font-weight: 500;
                color: #aaaaaa;
                top: -6px;
                left: 10px; }
              .sso-integration-cont-root .sso-integration-cont .mid-container .info-cont .authorize-container .authorize .referral-link .copy-button {
                position: absolute;
                top: 0;
                right: 56px;
                height: 100%;
                padding: 10px 15px;
                min-width: -moz-fit-content;
                min-width: fit-content;
                display: inline-flex;
                justify-content: center;
                align-items: center;
                border: 1px solid #eeeeee;
                border-radius: 4px; }
            .sso-integration-cont-root .sso-integration-cont .mid-container .info-cont .authorize-container .authorize .gif-image {
              width: 240px;
              height: 199.3px; }
            .sso-integration-cont-root .sso-integration-cont .mid-container .info-cont .authorize-container .authorize .need-help {
              font-weight: 400;
              font-size: 14px;
              line-height: 16px;
              color: #000000;
              margin-top: 40px;
              margin-bottom: 40px; }
              .sso-integration-cont-root .sso-integration-cont .mid-container .info-cont .authorize-container .authorize .need-help .link-text {
                color: #0f73bc;
                text-decoration: underline !important; }
        .sso-integration-cont-root .sso-integration-cont .mid-container .info-cont .description {
          font-weight: 400;
          font-size: 14px;
          line-height: 16px;
          margin-top: 8px; }

.gif-template-modal {
  background-color: #fff;
  padding-bottom: 30px;
  width: 700px;
  padding-right: 40px; }
  .gif-template-modal .topContent {
    margin-top: 16px;
    margin-bottom: 10px;
    text-align: end;
    width: 682px;
    margin-left: 16px; }
  .gif-template-modal .text-place .gif-image {
    width: 700px;
    height: 400px; }

.img-fitting {
  -o-object-fit: contain;
     object-fit: contain; }

.btn-cursor {
  cursor: pointer; }

.added-margin {
  margin-top: 20px; }

.centered-text {
  text-align: center; }

.div-without-display {
  display: none; }

.reversed-flex {
  flex-direction: row-reverse;
  gap: 20px;
  margin-right: 20px; }
.stripe-payment {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70vh; }
  .stripe-payment form {
    padding: 30px;
    border: 2px solid lightgray; }
  .stripe-payment button {
    margin-top: 20px;
    cursor: pointer;
    padding: 10px 30px;
    border-radius: 4px;
    font-weight: bold; }
.integration-settings-cont {
  margin-bottom: 30px; }
  .integration-settings-cont .heading {
    font-size: 14px;
    font-weight: 700;
    color: #959595;
    text-transform: uppercase;
    margin-left: 10px;
    margin-bottom: 10px;
    margin-top: 20px; }
  .integration-settings-cont .integration-cont {
    background-color: white;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    padding: 0px 30px; }
  .integration-settings-cont .integration-request-text {
    color: black;
    margin-top: 30px;
    margin-bottom: 60px; }
  .integration-settings-cont .new-integration-link {
    text-decoration: underline;
    cursor: pointer; }
  .integration-settings-cont .info-cont {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100px; }
    .integration-settings-cont .info-cont .title-img-cont {
      display: flex;
      gap: 10px;
      align-items: center; }
      .integration-settings-cont .info-cont .title-img-cont .integration-title {
        margin: 0px;
        font-size: 14px;
        font-weight: 500;
        color: black; }
      .integration-settings-cont .info-cont .title-img-cont img {
        height: 25px; }
      .integration-settings-cont .info-cont .title-img-cont .workday-logo,
      .integration-settings-cont .info-cont .title-img-cont .bullhorn-logo {
        height: 40px; }
  .integration-settings-cont .action {
    color: #959595;
    cursor: pointer; }

.gif-template-modal {
  background-color: #fff;
  padding-bottom: 30px;
  width: 700px;
  padding-right: 40px; }
  .gif-template-modal .topContent {
    margin-top: 16px;
    margin-bottom: 10px;
    text-align: end;
    width: 682px;
    margin-left: 16px; }
  .gif-template-modal .text-place .gif-image {
    width: 700px; }

.lever-integration-cont-root {
  width: 100%;
  display: flex;
  justify-content: center; }
  .lever-integration-cont-root .lever-integration-cont {
    margin-top: 13px;
    width: 100%;
    max-width: 650px; }
    .lever-integration-cont-root .lever-integration-cont .mapping-wrapper {
      padding-bottom: 30px; }
    .lever-integration-cont-root .lever-integration-cont .back-button {
      margin-bottom: 12px;
      cursor: pointer; }
      .lever-integration-cont-root .lever-integration-cont .back-button .back-name {
        font-weight: 400;
        font-size: 14px;
        line-height: 16px;
        color: #444444;
        margin-left: 5px; }
    .lever-integration-cont-root .lever-integration-cont .top-container {
      background: #ffffff;
      border-radius: 4px;
      margin-top: 20px;
      margin-bottom: 20px; }
      .lever-integration-cont-root .lever-integration-cont .top-container .info-cont {
        gap: 12px;
        padding: 20px; }
        .lever-integration-cont-root .lever-integration-cont .top-container .info-cont .name {
          font-weight: 700;
          font-size: 20px;
          color: #000000; }
        .lever-integration-cont-root .lever-integration-cont .top-container .info-cont .hr-line {
          width: 100%;
          margin: 16px 0px; }
        .lever-integration-cont-root .lever-integration-cont .top-container .info-cont .description {
          font-weight: 400;
          font-size: 14px;
          line-height: 16px;
          margin-top: 8px;
          color: black; }
      .lever-integration-cont-root .lever-integration-cont .top-container .top-cont {
        padding-top: 10px; }
    .lever-integration-cont-root .lever-integration-cont .end-container {
      background: #ffffff;
      border-radius: 4px;
      margin-bottom: 20px;
      margin-top: 20px; }
      .lever-integration-cont-root .lever-integration-cont .end-container .info-cont {
        padding: 20px; }
        .lever-integration-cont-root .lever-integration-cont .end-container .info-cont .name {
          font-weight: 700;
          font-size: 20px;
          color: #000000; }
        .lever-integration-cont-root .lever-integration-cont .end-container .info-cont .disable-integration {
          font-weight: 700;
          font-size: 14px;
          line-height: 16px;
          letter-spacing: 1px;
          text-transform: uppercase;
          color: #000000; }
        .lever-integration-cont-root .lever-integration-cont .end-container .info-cont .hr-line {
          width: 100%;
          margin: 15px 0px 20px 0px; }
        .lever-integration-cont-root .lever-integration-cont .end-container .info-cont .points-list {
          font-weight: 400;
          font-size: 14px;
          line-height: 16px;
          color: #000000;
          width: 120%;
          margin-bottom: 20px;
          padding-left: 16px; }
          .lever-integration-cont-root .lever-integration-cont .end-container .info-cont .points-list .list-item {
            margin-bottom: 10px; }
            .lever-integration-cont-root .lever-integration-cont .end-container .info-cont .points-list .list-item .link-text {
              color: #0f73bc;
              text-decoration: underline !important; }
    .lever-integration-cont-root .lever-integration-cont .mid-container {
      background: #ffffff;
      border-radius: 4px;
      margin-bottom: 20px; }
      .lever-integration-cont-root .lever-integration-cont .mid-container .info-cont {
        gap: 12px;
        padding: 20px; }
        .lever-integration-cont-root .lever-integration-cont .mid-container .info-cont .name {
          font-weight: 700;
          font-size: 20px;
          color: #000000; }
        .lever-integration-cont-root .lever-integration-cont .mid-container .info-cont .hr-line {
          width: 100%;
          margin: 16px 0px; }
        .lever-integration-cont-root .lever-integration-cont .mid-container .info-cont .authorize-container {
          display: flex; }
          .lever-integration-cont-root .lever-integration-cont .mid-container .info-cont .authorize-container .points {
            background: #f9f9f9;
            border: 1px solid #eeeeee;
            border-radius: 2px;
            font-weight: 400;
            font-size: 12px;
            line-height: 12px;
            margin-right: 20px;
            height: 22px;
            width: 22px;
            text-align: center;
            padding-top: 4px;
            color: black; }
          .lever-integration-cont-root .lever-integration-cont .mid-container .info-cont .authorize-container .authorize-btn {
            border: 1px solid #808080 !important;
            border-radius: 4px;
            font-weight: 500;
            font-size: 14px;
            line-height: 16px;
            color: #808080;
            padding: 10px;
            display: flex;
            cursor: not-allowed; }
            .lever-integration-cont-root .lever-integration-cont .mid-container .info-cont .authorize-container .authorize-btn .btn-name {
              margin-left: 10px; }
          .lever-integration-cont-root .lever-integration-cont .mid-container .info-cont .authorize-container .authorize {
            width: 66%; }
            .lever-integration-cont-root .lever-integration-cont .mid-container .info-cont .authorize-container .authorize .points-name {
              font-weight: 700;
              font-size: 14px;
              line-height: 16px;
              letter-spacing: 1px;
              text-transform: uppercase;
              color: #000000; }
            .lever-integration-cont-root .lever-integration-cont .mid-container .info-cont .authorize-container .authorize .desc_list {
              font-size: 13px; }
            .lever-integration-cont-root .lever-integration-cont .mid-container .info-cont .authorize-container .authorize .points-sub {
              font-weight: 400;
              font-size: 14px;
              line-height: 16px;
              color: #000000;
              margin-top: 3px; }
            .lever-integration-cont-root .lever-integration-cont .mid-container .info-cont .authorize-container .authorize .points2-sub {
              font-weight: 400;
              font-size: 14px;
              line-height: 16px;
              color: #000000;
              width: 120%;
              margin-bottom: 20px;
              margin-top: 10px; }
            .lever-integration-cont-root .lever-integration-cont .mid-container .info-cont .authorize-container .authorize .points-list {
              font-weight: 400;
              font-size: 14px;
              line-height: 16px;
              color: #000000;
              width: 120%;
              margin-bottom: 20px;
              padding-left: 16px; }
              .lever-integration-cont-root .lever-integration-cont .mid-container .info-cont .authorize-container .authorize .points-list .list-item {
                margin-bottom: 5px; }
                .lever-integration-cont-root .lever-integration-cont .mid-container .info-cont .authorize-container .authorize .points-list .list-item .link-text {
                  color: #0f73bc;
                  text-decoration: underline !important; }
            .lever-integration-cont-root .lever-integration-cont .mid-container .info-cont .authorize-container .authorize .referral-link {
              position: relative;
              margin-bottom: 15px; }
              .lever-integration-cont-root .lever-integration-cont .mid-container .info-cont .authorize-container .authorize .referral-link input {
                padding: 8px 60px 8px 10px;
                border-radius: 4px;
                border: none;
                line-height: 24px;
                color: #00000059;
                width: 300px;
                background-color: rgba(0, 0, 0, 0.03); }
              .lever-integration-cont-root .lever-integration-cont .mid-container .info-cont .authorize-container .authorize .referral-link label {
                position: absolute;
                font-size: 11px;
                font-weight: 500;
                color: #aaaaaa;
                top: -6px;
                left: 10px; }
              .lever-integration-cont-root .lever-integration-cont .mid-container .info-cont .authorize-container .authorize .referral-link .copy-button {
                position: absolute;
                top: 0;
                right: 56px;
                height: 100%;
                padding: 10px 15px;
                min-width: -moz-fit-content;
                min-width: fit-content;
                display: inline-flex;
                justify-content: center;
                align-items: center;
                border: 1px solid #eeeeee;
                border-radius: 4px; }
            .lever-integration-cont-root .lever-integration-cont .mid-container .info-cont .authorize-container .authorize .gif-image {
              width: 240px;
              height: 199.3px; }
            .lever-integration-cont-root .lever-integration-cont .mid-container .info-cont .authorize-container .authorize .need-help {
              font-weight: 400;
              font-size: 14px;
              line-height: 16px;
              color: #000000;
              margin-top: 40px;
              margin-bottom: 40px; }
              .lever-integration-cont-root .lever-integration-cont .mid-container .info-cont .authorize-container .authorize .need-help .link-text {
                color: #0f73bc;
                text-decoration: underline !important; }
        .lever-integration-cont-root .lever-integration-cont .mid-container .info-cont .description {
          font-weight: 400;
          font-size: 14px;
          line-height: 16px;
          margin-top: 8px;
          color: #000000; }

.integration-modal .modal-content {
  text-align: center;
  padding: 25px !important;
  width: 85% !important; }
  .integration-modal .modal-content .heading {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px; }
  .integration-modal .modal-content .description {
    font-size: 14px;
    color: #374151;
    margin-bottom: 16px; }
  .integration-modal .modal-content .info-form {
    display: flex;
    flex-direction: column;
    gap: 12px; }
    .integration-modal .modal-content .info-form .input {
      width: 100%; }
  .integration-modal .modal-content .error {
    color: #dc2626;
    font-size: 13px;
    text-align: center;
    margin-top: 4px; }

.detele-template-modal:has(.integration-modal) .buttonsArea .integration-submit-btn {
  width: 100%; }

.disable-lever-integration-modal {
  text-align: center; }
.email-preview-modal {
  display: flex;
  flex-direction: column;
  width: 55vw;
  max-width: 800px;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  max-height: 90vh; }
  .email-preview-modal .email-preview-header-section {
    position: relative;
    padding: 24px 24px 16px;
    border-bottom: 1px solid #e8e8e8; }
  .email-preview-modal .email-preview-header-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 40px; }
  .email-preview-modal .email-preview-header {
    font-size: 18px;
    font-weight: 600;
    color: #090b0f; }
  .email-preview-modal .email-preview-custom-badge {
    display: inline-block;
    background: #fff3e0;
    color: #e65100;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0; }
  .email-preview-modal .email-preview-subtext {
    color: #606369;
    font-size: 14px;
    margin-top: 4px; }
  .email-preview-modal .email-preview-close-modal {
    position: absolute;
    right: 24px;
    top: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #6b7280;
    transition: background-color 0.2s, color 0.2s; }
    .email-preview-modal .email-preview-close-modal:hover {
      background-color: #f2f2f2;
      color: #111827; }
  .email-preview-modal .email-preview-variants {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-bottom: 1px solid #e8e8e8;
    background: #f8f9fb;
    flex-wrap: wrap; }
  .email-preview-modal .email-preview-variants-label {
    font-size: 13px;
    font-weight: 500;
    color: #606369;
    white-space: nowrap; }
  .email-preview-modal .email-preview-variant-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap; }
  .email-preview-modal .email-preview-variant-tab {
    padding: 4px 14px;
    font-size: 13px;
    font-weight: 500;
    background: #fff;
    border: 1px solid #d0d5dd;
    border-radius: 20px;
    color: #4a5568;
    cursor: pointer;
    transition: background-color 0.15s, border-color 0.15s, color 0.15s; }
    .email-preview-modal .email-preview-variant-tab:hover {
      border-color: #0f73bc;
      color: #0f73bc; }
    .email-preview-modal .email-preview-variant-tab.active {
      background: #0f73bc;
      border-color: #0f73bc;
      color: #fff; }
  .email-preview-modal .email-preview-content {
    overflow-y: auto;
    flex: 1; }
  .email-preview-modal .email-preview-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    padding: 40px; }
  .email-preview-modal .email-preview-error {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    padding: 40px;
    color: #dc3545;
    font-size: 14px;
    text-align: center; }
  .email-preview-modal .email-preview-empty {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    padding: 40px;
    color: #959595;
    font-size: 14px;
    text-align: center; }
  .email-preview-modal .email-preview-iframe-container {
    width: 100%;
    padding: 16px; }
  .email-preview-modal .email-preview-iframe {
    width: 100%;
    min-height: 600px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    background-color: #fff; }
  .email-preview-modal .email-preview-footer {
    display: flex;
    justify-content: flex-end;
    padding: 12px 24px 16px;
    border-top: 1px solid #e8e8e8; }
  .email-preview-modal .email-preview-customize-btn {
    text-transform: none !important;
    font-weight: 500 !important;
    border-color: #0f73bc !important;
    color: #0f73bc !important; }
    .email-preview-modal .email-preview-customize-btn:hover {
      background-color: rgba(15, 115, 188, 0.08) !important; }
.pay-root {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 24px 40px; }

.pay-section {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px; }
  .pay-section__heading {
    color: #959595;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0 0 16px; }

.pay-card__content {
  margin-bottom: 16px; }

.pay-card__title {
  color: #374151;
  font-weight: 600;
  font-size: 15px;
  margin: 0 0 8px; }

.pay-card__desc {
  color: #6b7280;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 6px; }

.pay-manage-btn {
  background: #3431ac;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s; }
  .pay-manage-btn:hover {
    background: #2a2890; }
.team-role-modal {
  width: 600px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden; }
  .team-role-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f1f3;
    background: #fafbfc; }
  .team-role-modal__title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0; }
  .team-role-modal__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #9ca3af;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease; }
    .team-role-modal__close:hover {
      color: #374151;
      background: #f3f4f6; }
  .team-role-modal__body {
    padding: 24px;
    max-height: 60vh;
    overflow-y: auto;
    text-align: center; }
  .team-role-modal__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fffbeb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px; }
  .team-role-modal__content {
    text-align: center; }
    .team-role-modal__content p {
      font-size: 14px;
      line-height: 1.6;
      color: #374151;
      margin: 0 0 12px; }
    .team-role-modal__content b {
      font-weight: 600; }
  .team-role-modal__list {
    text-align: left;
    list-style: disc;
    padding-left: 24px;
    margin: 12px auto;
    max-width: 450px; }
    .team-role-modal__list li {
      font-size: 14px;
      line-height: 1.6;
      color: #374151;
      font-weight: 600;
      padding: 2px 0; }
  .team-role-modal__list-highlight {
    text-decoration: underline; }
  .team-role-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 24px;
    border-top: 1px solid #f0f1f3;
    background: #fafbfc; }
  .team-role-modal__btn {
    padding: 9px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    border: none; }
    .team-role-modal__btn--primary {
      background: #3431ac;
      color: #fff; }
      .team-role-modal__btn--primary:hover {
        background: #2a279a; }
    .team-role-modal__btn--outline {
      background: #fff;
      color: #374151;
      border: 1px solid #e5e7eb; }
      .team-role-modal__btn--outline:hover {
        background: #f9fafb;
        border-color: #d1d5db; }
      .team-role-modal__btn--outline:disabled {
        opacity: 0.5;
        cursor: not-allowed; }
.activity-settings {
  padding: 32px 0;
  max-width: 100%; }
  .activity-settings .activity-header {
    margin-bottom: 24px; }
    .activity-settings .activity-header .activity-title {
      font-size: 20px;
      font-weight: 600;
      color: #1a1a2e;
      margin: 0 0 4px 0; }
    .activity-settings .activity-header .activity-subtitle {
      font-size: 14px;
      color: #6b7280;
      margin: 0; }
  .activity-settings .activity-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 12px;
    background: white;
    padding: 16px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 10px; }
    .activity-settings .activity-filters .filter-group {
      display: flex;
      align-items: center;
      gap: 12px; }
    .activity-settings .activity-filters .filter-icon {
      color: #6b7280;
      flex-shrink: 0; }
    .activity-settings .activity-filters .category-select {
      background: #f9fafb;
      border-radius: 8px; }
      .activity-settings .activity-filters .category-select .MuiOutlinedInput-notchedOutline {
        border-color: #e5e7eb; }
      .activity-settings .activity-filters .category-select:hover .MuiOutlinedInput-notchedOutline {
        border-color: #d1d5db; }
    .activity-settings .activity-filters .result-count {
      flex-shrink: 0; }
      .activity-settings .activity-filters .result-count .count-text {
        font-size: 13px;
        color: #9ca3af;
        white-space: nowrap; }
  .activity-settings .activity-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 48px 24px;
    color: #6b7280;
    font-size: 14px; }
  .activity-settings .activity-error {
    text-align: center;
    padding: 48px 24px;
    color: #ef4444; }
    .activity-settings .activity-error p {
      margin-bottom: 12px; }
    .activity-settings .activity-error .retry-btn {
      background: #3431ac;
      color: white;
      border: none;
      padding: 8px 20px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 13px;
      font-weight: 500; }
      .activity-settings .activity-error .retry-btn:hover {
        background: #2a2890; }
  .activity-settings .activity-empty {
    text-align: center;
    padding: 64px 24px;
    color: #9ca3af; }
    .activity-settings .activity-empty .empty-icon {
      margin: 0 auto 16px;
      color: #d1d5db; }
    .activity-settings .activity-empty h3 {
      font-size: 16px;
      font-weight: 600;
      color: #6b7280;
      margin: 0 0 8px 0; }
    .activity-settings .activity-empty p {
      font-size: 14px;
      margin: 0; }
  .activity-settings .activity-table-container {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden; }
  .activity-settings .activity-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed; }
    .activity-settings .activity-table thead {
      background: #f9fafb; }
      .activity-settings .activity-table thead th {
        text-align: left;
        padding: 12px 16px;
        font-size: 12px;
        font-weight: 600;
        color: #6b7280;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        border-bottom: 1px solid #e5e7eb;
        white-space: nowrap; }
    .activity-settings .activity-table tbody .activity-row {
      border-bottom: 1px solid #f0f1f5;
      transition: background-color 0.15s ease; }
      .activity-settings .activity-table tbody .activity-row:last-child {
        border-bottom: none; }
      .activity-settings .activity-table tbody .activity-row.clickable {
        cursor: pointer; }
        .activity-settings .activity-table tbody .activity-row.clickable:hover {
          background: #f9fafb; }
      .activity-settings .activity-table tbody .activity-row.expanded {
        background: #f0f4ff;
        border-bottom-color: #e0e7ff; }
      .activity-settings .activity-table tbody .activity-row td {
        padding: 12px 16px;
        font-size: 13px;
        color: #374151;
        vertical-align: middle;
        overflow: hidden;
        text-overflow: ellipsis; }
    .activity-settings .activity-table tbody .expanded-row td {
      padding: 0;
      background: #f8fafc; }
    .activity-settings .activity-table .col-date {
      width: 15%; }
      .activity-settings .activity-table .col-date .date-text {
        font-size: 13px;
        color: #6b7280;
        white-space: nowrap; }
    .activity-settings .activity-table .col-user {
      width: 20%; }
    .activity-settings .activity-table .col-setting {
      width: 14%; }
      .activity-settings .activity-table .col-setting .setting-name {
        font-weight: 500;
        color: #1f2937;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block; }
    .activity-settings .activity-table .col-operation {
      width: 10%; }
    .activity-settings .activity-table .col-changes {
      width: 37%; }
    .activity-settings .activity-table .col-expand {
      width: 4%;
      text-align: center; }
      .activity-settings .activity-table .col-expand .expand-icon {
        color: #9ca3af; }
  .activity-settings .changed-by-cell {
    display: flex;
    align-items: flex-start;
    gap: 6px; }
    .activity-settings .changed-by-cell svg {
      flex-shrink: 0;
      margin-top: 2px; }
    .activity-settings .changed-by-cell .changed-by-info {
      display: flex;
      flex-direction: column;
      min-width: 0; }
    .activity-settings .changed-by-cell .changed-by-name {
      font-size: 13px;
      color: #374151;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      font-weight: 500; }
    .activity-settings .changed-by-cell .changed-by-email {
      font-size: 11px;
      color: #9ca3af;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
  .activity-settings .operation-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em; }
    .activity-settings .operation-badge.badge-created {
      background: #dcfce7;
      color: #166534; }
    .activity-settings .operation-badge.badge-updated {
      background: #dbeafe;
      color: #1e40af; }
    .activity-settings .operation-badge.badge-deleted {
      background: #fee2e2;
      color: #991b1b; }
    .activity-settings .operation-badge.badge-unknown {
      background: #f3f4f6;
      color: #6b7280; }
  .activity-settings .single-change {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap; }
    .activity-settings .single-change .change-field {
      font-size: 12px;
      font-weight: 500;
      color: #6b7280; }
    .activity-settings .single-change .change-values {
      display: flex;
      align-items: center;
      gap: 4px; }
    .activity-settings .single-change .change-arrow {
      color: #9ca3af;
      font-size: 12px; }
  .activity-settings .value-empty {
    color: #d1d5db;
    font-style: italic; }
  .activity-settings .value-previous {
    color: #ef4444;
    background: #fef2f2;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 12px;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block; }
  .activity-settings .value-new {
    color: #059669;
    background: #ecfdf5;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 12px;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block; }
  .activity-settings .changes-count {
    font-size: 12px;
    color: #6b7280;
    font-style: italic; }
  .activity-settings .no-changes {
    font-size: 12px;
    color: #d1d5db;
    font-style: italic; }
  .activity-settings .changes-detail {
    padding: 12px 16px 16px; }
    .activity-settings .changes-detail .changes-table {
      width: 100%;
      border-collapse: collapse;
      background: white;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid #e5e7eb; }
      .activity-settings .changes-detail .changes-table thead {
        background: #f9fafb; }
        .activity-settings .changes-detail .changes-table thead tr th {
          text-align: left;
          padding: 8px 12px;
          font-size: 11px;
          font-weight: 600;
          color: #6b7280;
          text-transform: uppercase;
          letter-spacing: 0.05em;
          border-bottom: 1px solid #e5e7eb; }
      .activity-settings .changes-detail .changes-table tbody tr {
        border-bottom: 1px solid #f0f1f5; }
        .activity-settings .changes-detail .changes-table tbody tr:last-child {
          border-bottom: none; }
        .activity-settings .changes-detail .changes-table tbody tr td {
          padding: 8px 12px;
          font-size: 12px;
          color: #374151;
          word-break: break-word;
          max-width: 300px; }
        .activity-settings .changes-detail .changes-table tbody tr .change-field-name {
          font-weight: 500;
          color: #4b5563;
          white-space: nowrap; }
        .activity-settings .changes-detail .changes-table tbody tr .change-prev-value {
          color: #ef4444;
          background: none; }
        .activity-settings .changes-detail .changes-table tbody tr .change-new-value {
          color: #059669;
          background: none; }
.team-import-modal {
  width: 560px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden; }
  .team-import-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f1f3;
    background: #fafbfc; }
  .team-import-modal__title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0; }
  .team-import-modal__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #9ca3af;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease; }
    .team-import-modal__close:hover {
      color: #374151;
      background: #f3f4f6; }
  .team-import-modal__body {
    padding: 24px;
    max-height: 60vh;
    overflow-y: auto;
    text-align: center; }
  .team-import-modal__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fffbeb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px; }
  .team-import-modal__text {
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    margin: 0 0 12px; }
    .team-import-modal__text b {
      font-weight: 600; }
  .team-import-modal__alert {
    padding: 12px 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    margin-top: 8px;
    text-align: left; }
    .team-import-modal__alert p {
      font-size: 13px;
      line-height: 1.5;
      color: #dc2626;
      margin: 0; }
    .team-import-modal__alert b {
      font-weight: 600; }
  .team-import-modal__members-list {
    margin: 12px 0;
    padding: 12px;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    text-align: left; }
  .team-import-modal__member-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 6px 8px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
    text-align: left; }
    .team-import-modal__member-row:last-child {
      border-bottom: none; }
  .team-import-modal__member-email {
    color: #6b7280;
    font-weight: 400; }
  .team-import-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 24px;
    border-top: 1px solid #f0f1f3;
    background: #fafbfc; }
  .team-import-modal__btn {
    padding: 9px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    border: none; }
    .team-import-modal__btn--primary {
      background: #3431ac;
      color: #fff; }
      .team-import-modal__btn--primary:hover {
        background: #2a279a; }
    .team-import-modal__btn--outline {
      background: #fff;
      color: #374151;
      border: 1px solid #e5e7eb; }
      .team-import-modal__btn--outline:hover {
        background: #f9fafb;
        border-color: #d1d5db; }
.team-email-sync {
  display: flex;
  flex-direction: column;
  gap: 24px; }

.sync-subsection__label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase; }

.sync-card {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease; }
  .sync-card:hover {
    border-color: #d1d5db; }
  .sync-card__main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    gap: 12px; }
  .sync-card__info {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0; }
  .sync-card__icon-wrap {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center; }
    .sync-card__icon-wrap svg {
      width: 18px;
      height: 18px; }
  .sync-card__title {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    color: #1f2937;
    margin: 0;
    word-break: break-all; }
  .sync-card__meta {
    font-size: 12px;
    line-height: 1.4;
    color: #9ca3af;
    margin: 3px 0 0; }
  .sync-card__action-btn.MuiButtonBase-root {
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    color: #374151;
    text-transform: none;
    font-weight: 500;
    font-size: 13px;
    padding: 6px 14px;
    white-space: nowrap;
    transition: all 0.15s ease; }
    .sync-card__action-btn.MuiButtonBase-root .MuiButton-label {
      display: flex;
      gap: 6px;
      align-items: center; }
    .sync-card__action-btn.MuiButtonBase-root:hover {
      background: #f9fafb;
      border-color: #d1d5db; }
  .sync-card__footer {
    padding: 10px 20px;
    border-top: 1px solid #f3f4f6;
    background: #fafbfc; }
  .sync-card__link-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 13px;
    color: #3431ac;
    padding: 0;
    transition: color 0.15s ease; }
    .sync-card__link-btn:hover {
      color: #2a279a;
      text-decoration: underline; }
    .sync-card__link-btn--danger {
      color: #dc2626; }
      .sync-card__link-btn--danger:hover {
        color: #b91c1c; }

.sync-empty-action {
  width: 100%;
  min-height: 60px;
  border: 1px dashed #e5e7eb;
  border-radius: 10px;
  background: #fafbfc;
  color: #3431ac;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease; }
  .sync-empty-action:hover {
    border-color: #3431ac;
    background: #f5f5ff; }
  .sync-empty-action__icon {
    font-size: 18px;
    font-weight: 600; }

.sync-info-banner {
  background: #f8f9fb;
  border: 1px solid #f0f1f3;
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px; }
  .sync-info-banner svg {
    min-width: 16px;
    margin-top: 1px; }
  .sync-info-banner p {
    font-size: 13px;
    line-height: 1.5;
    color: #6b7280;
    margin: 0; }

@keyframes skeleton-shimmer {
  0% {
    background-position: -200px 0; }
  100% {
    background-position: calc(200px + 100%) 0; } }

.skeleton-bone {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
  background-size: 200px 100%;
  animation: skeleton-shimmer 1.4s ease infinite;
  border-radius: 6px; }
  .skeleton-bone--label {
    width: 100px;
    height: 14px;
    margin-bottom: 12px;
    border-radius: 4px; }
  .skeleton-bone--icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px; }
  .skeleton-bone--title {
    width: 160px;
    height: 14px;
    margin-bottom: 6px; }
  .skeleton-bone--meta {
    width: 120px;
    height: 12px; }
  .skeleton-bone--button {
    width: 80px;
    height: 32px;
    border-radius: 8px; }
  .skeleton-bone--link {
    width: 180px;
    height: 13px; }

.sync-get-email-btn.MuiButtonBase-root {
  width: 100%;
  min-height: 52px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  color: #3431ac;
  text-transform: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease; }
  .sync-get-email-btn.MuiButtonBase-root:hover {
    background: #f5f5ff;
    border-color: #3431ac; }
.notification-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  transition: background-color 0.15s ease;
  cursor: default; }
  .notification-row + .notification-row {
    border-top: 1px solid #f3f4f6; }
  .notification-row__content {
    flex: 1;
    min-width: 0; }
  .notification-row__label {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    margin: 0;
    line-height: 1.5; }
  .notification-row__description {
    font-size: 12px;
    font-weight: 400;
    color: #9ca3af;
    margin: 2px 0 0;
    line-height: 1.4; }
.import-preference {
  margin-top: 0px !important; }
  .import-preference .preference-list {
    display: flex;
    flex-direction: column;
    gap: 0; }
.activity-application {
  display: flex;
  background-color: #fff;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  margin: 4px 0;
  transition: box-shadow 0.15s ease; }
  .activity-application:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); }
  .activity-application .pinned-header {
    display: flex;
    gap: 0.5em;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    color: #90a4ae; }
  .activity-application .application-header {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #37474f; }
    .activity-application .application-header .time {
      color: #b0bec5;
      text-align: end;
      font-size: 12px;
      flex-shrink: 0; }
  .activity-application button {
    color: #3431AC;
    font-weight: 500;
    font-size: 13px;
    transition: opacity 0.15s ease; }
    .activity-application button:hover {
      opacity: 0.8; }
.activity-note {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px 16px;
  gap: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  margin: 0px 0px 12px 0px;
  transition: box-shadow 0.15s ease; }
  .activity-note:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); }
  .activity-note .note-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; }
    .activity-note .note-header .time {
      color: #b0bec5;
      text-align: end;
      font-size: 12px; }
      .activity-note .note-header .time .edited {
        margin-right: 8px;
        font-style: italic; }
  .activity-note .note-content {
    color: #37474f;
    font-size: 13px;
    line-height: 1.6; }
    .activity-note .note-content .ql-editor {
      min-height: unset !important; }
  .activity-note .note-actions-normal,
  .activity-note .note-actions-editing {
    display: flex;
    align-items: center; }
    .activity-note .note-actions-normal button,
    .activity-note .note-actions-editing button {
      padding: 0;
      margin: 0;
      cursor: pointer;
      font-size: 13px;
      color: #78909c;
      transition: color 0.15s ease; }
      .activity-note .note-actions-normal button:hover,
      .activity-note .note-actions-editing button:hover {
        color: #3431ac; }
  .activity-note .note-actions-normal {
    -moz-column-gap: 12px;
         column-gap: 12px;
    margin-top: 6px; }
    .activity-note .note-actions-normal button:hover {
      text-decoration: underline; }
  .activity-note .note-actions-editing {
    justify-content: flex-end;
    -moz-column-gap: 10px;
         column-gap: 10px; }
    .activity-note .note-actions-editing button {
      padding: 8px 20px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 13px;
      transition: all 0.15s ease; }
      .activity-note .note-actions-editing button:hover {
        transform: translateY(-1px); }
      .activity-note .note-actions-editing button:active {
        transform: translateY(0); }
.custom-payment-modal {
  background: rgba(10, 32, 33, 0.8); }
.disputes-table .cell-text-height {
  padding: 11px 16px 11px 5px !important; }

.disputes-table .dispute-opening {
  font-weight: 500;
  font-size: 13px;
  line-height: 18px; }

.disputes-table .job-id {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px; }

.request-close-dispute-cont {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .request-close-dispute-cont .info-cont {
    width: 100%;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px; }
  .request-close-dispute-cont .info-block {
    text-align: left;
    width: 100%; }
  .request-close-dispute-cont .block-padding {
    padding: 0; }
  .request-close-dispute-cont .info-heading {
    color: #808080;
    font-size: 12px;
    margin-bottom: 5px !important;
    font-weight: 500 !important; }
  .request-close-dispute-cont .info-text {
    color: #1e1e1e;
    font-size: 12px;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis; }
  .request-close-dispute-cont .request-close-dispute-text {
    color: #444;
    text-align: center;
    font-size: 14px;
    margin-top: 30px; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
/* Single vertical rhythm for the member form body */
/* —— Page shell (Add Group / reward template pattern) —— */
.member-form-page {
  min-height: calc(100vh - 120px);
  background: #f9fafb;
  padding: 32px 24px 48px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  /* Outlined react-select to match MUI TextField (replaces legacy .light underline) */
  /* Phone: match MUI outlined small TextField (Location, etc.) */ }
  .member-form-page .Select .Select-control {
    height: 40px; }
    .member-form-page .Select .Select-control .Select-placeholder {
      line-height: 38px; }
    .member-form-page .Select .Select-control .Select-input {
      height: 38px; }
    .member-form-page .Select .Select-control .Select-arrow-zone .Select-arrow {
      color: #c2c2c2; }
  .member-form-page .details-widget {
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: #ffffff; }
    .member-form-page .details-widget h4 {
      color: #18332f;
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 15px; }
    .member-form-page .details-widget .details-widget-content {
      padding: 20px 30px 30px; }
      .member-form-page .details-widget .details-widget-content.two-columns {
        display: flex; }
        .member-form-page .details-widget .details-widget-content.two-columns .column {
          width: calc(50% - 15px);
          margin-right: 30px; }
          .member-form-page .details-widget .details-widget-content.two-columns .column:last-of-type {
            margin: 0; }
    .member-form-page .details-widget .row {
      display: flex;
      margin-bottom: 30px;
      color: #18332f; }
      .member-form-page .details-widget .row:last-of-type {
        margin: 0; }
      .member-form-page .details-widget .row > div {
        flex: 1 1 auto; }
        .member-form-page .details-widget .row > div > input:not([type='checkbox']),
        .member-form-page .details-widget .row > div select,
        .member-form-page .details-widget .row > div textarea {
          width: 100%; }
        .member-form-page .details-widget .row > div.inline {
          display: flex;
          align-items: center;
          justify-content: space-between; }
          .member-form-page .details-widget .row > div.inline h4 {
            margin: 0; }
      .member-form-page .details-widget .row .info {
        background-color: #f5f7f8;
        font-size: 13px;
        font-weight: bold;
        color: #18332f;
        padding: 8px 20px;
        border-radius: 5px;
        line-height: 1.8; }
        .member-form-page .details-widget .row .info.description {
          padding: 20px;
          font-weight: normal;
          white-space: pre-wrap; }
        .member-form-page .details-widget .row .info.rounded {
          padding: 4px 20px;
          border-radius: 25px; }
      .member-form-page .details-widget .row.columns-3 > div {
        width: calc(33.333% - 16.666px);
        margin-right: 25px;
        flex: 0 1 auto; }
      .member-form-page .details-widget .row.columns-2 > div {
        width: calc(50% - 15px);
        margin-right: 30px;
        flex: 0 1 auto; }
      .member-form-page .details-widget .row .tag {
        padding: 4px 20px 5px;
        border-radius: 25px;
        margin-top: 19px; }
      @media (max-width: 540px) {
        .member-form-page .details-widget .row {
          display: block; }
          .member-form-page .details-widget .row.columns-3 > div, .member-form-page .details-widget .row.columns-2 > div {
            width: 100%;
            margin-bottom: 20px; } }
  .member-form-page .top-actions-container {
    position: absolute;
    right: 40px;
    bottom: -20px;
    z-index: 10; }
    .member-form-page .top-actions-container .copy-from-container {
      display: inline-flex; }
  .member-form-page .basic-info .row {
    display: block;
    margin-bottom: 0; }
    .member-form-page .basic-info .row > div {
      width: 100%;
      margin-top: 0; }
  .member-form-page .member-form-manager-select.Select {
    width: 100%; }
    .member-form-page .member-form-manager-select.Select .Select-control {
      border: 1px solid #d1d5db !important;
      border-radius: 8px !important;
      background: #fff !important;
      box-shadow: none !important;
      min-height: 40px !important;
      height: auto !important; }
      .member-form-page .member-form-manager-select.Select .Select-control:hover {
        border-color: #9ca3af !important; }
    .member-form-page .member-form-manager-select.Select.is-focused .Select-control,
    .member-form-page .member-form-manager-select.Select.is-open .Select-control {
      border-color: #3431ac !important;
      border-width: 1px !important; }
    .member-form-page .member-form-manager-select.Select .Select-placeholder {
      line-height: 38px !important;
      color: #959595 !important;
      opacity: 1 !important;
      font-size: 14px !important;
      font-weight: 400 !important; }
    .member-form-page .member-form-manager-select.Select .Select-value {
      line-height: 38px !important; }
    .member-form-page .member-form-manager-select.Select .Select-value-label {
      font-size: 14px !important;
      font-weight: 400 !important;
      color: #000 !important; }
    .member-form-page .member-form-manager-select.Select .Select-input > input {
      font-size: 14px !important; }
    .member-form-page .member-form-manager-select.Select .Select-arrow-zone {
      padding-top: 2px; }
  .member-form-page .member-form-manager-wrap .redux-select-container .select-label {
    left: 10px;
    color: #6b7280;
    font-size: 11px; }
  .member-form-page .member-form-emails {
    display: flex;
    flex-direction: column;
    gap: 16px; }
  .member-form-page .member-form-email-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 16px;
    width: 100%; }
  .member-form-page .member-form-email-row__email {
    flex: 1 1 0;
    min-width: 0; }
  .member-form-page .member-form-email-row__type {
    flex: 0 0 148px;
    width: 148px;
    max-width: 148px; }
    .member-form-page .member-form-email-row__type.MuiFormControl-root {
      width: 148px;
      max-width: 148px; }
    .member-form-page .member-form-email-row__type .MuiOutlinedInput-input {
      padding: 10.5px 12px; }
  .member-form-page .member-form-email-row__actions {
    flex: 0 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: center;
    gap: 2px; }
  .member-form-page .member-form-inline-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 16px;
    width: 100%; }
  .member-form-page .member-form-inline-row__field {
    flex: 1 1 0;
    min-width: 0; }
  .member-form-page .member-form-inline-row__icon-btn {
    flex: 0 0 auto;
    color: #959595;
    align-self: center; }
  .member-form-page .role-select {
    width: 100%; }
    .member-form-page .role-select .MuiOutlinedInput-input {
      padding: 10.5px 14px; }
  .member-form-page .team-form-select {
    margin: 0; }
    .member-form-page .team-form-select .MuiInputLabel-formControl {
      font-size: 14px;
      line-height: 24px;
      color: #6b7280; }
    .member-form-page .team-form-select .MuiOutlinedInput-input {
      padding: 8px 14px; }
    .member-form-page .team-form-select .MuiInputLabel-marginDense {
      transform: translate(17px, 8px) scale(1);
      margin-top: -1px;
      font-size: 16px;
      color: #6b7280; }
    .member-form-page .team-form-select .MuiInputLabel-shrink {
      transform: translate(14px, -8.5px) scale(0.75); }
    .member-form-page .team-form-select .MuiFormLabel-root.Mui-focused {
      color: #3431ac;
      margin-top: 0; }
    .member-form-page .team-form-select .MuiSelect-select {
      font-size: 14px;
      line-height: 24px; }
  .member-form-page .save-member {
    display: flex;
    justify-content: center;
    margin-top: 30px; }
  .member-form-page .rewards-eligible {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #374151; }
    .member-form-page .rewards-eligible .information-btn {
      position: relative;
      padding-top: 5px; }
      .member-form-page .rewards-eligible .information-btn .information-icon {
        color: #959595;
        margin: 0 12px; }
      .member-form-page .rewards-eligible .information-btn .information-text {
        background-color: white;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        padding: 25% 35%;
        font-size: 12px;
        color: #aaaaaa;
        position: absolute;
        bottom: 200%;
        right: -50%;
        width: 170px;
        visibility: hidden; }
      .member-form-page .rewards-eligible .information-btn .information-text:before {
        content: '';
        width: 0px;
        height: 0px;
        position: absolute;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid white;
        border-bottom: 10px solid transparent;
        bottom: -20px;
        right: 20%; }
      .member-form-page .rewards-eligible .information-btn:hover .information-text {
        visibility: visible; }
  .member-form-page .member-form-phone-field {
    position: relative;
    z-index: 5;
    width: 100%; }
    .member-form-page .member-form-phone-field .react-phone-input-cont {
      position: relative;
      width: 100%;
      margin-top: 0; }
    .member-form-page .member-form-phone-field .react-tel-input {
      position: relative;
      width: 100%;
      font-size: 14px; }
    .member-form-page .member-form-phone-field .react-tel-input .special-label {
      left: 10px;
      top: 0;
      transform: translateY(-50%);
      z-index: 2;
      font-size: 12px;
      color: #6b7280;
      font-weight: 400;
      padding: 0 4px;
      background: #fff;
      line-height: 1;
      pointer-events: none; }
    .member-form-page .member-form-phone-field .react-tel-input:focus-within .special-label {
      color: #3431ac; }
    .member-form-page .member-form-phone-field .react-tel-input .form-control,
    .member-form-page .member-form-phone-field .react-tel-input input.phone-input {
      width: 100% !important;
      height: 40px !important;
      min-height: 40px !important;
      box-sizing: border-box !important;
      padding: 8px 40px 8px 48px !important;
      font-size: 14px !important;
      line-height: 1.1875em !important;
      border: 1px solid #d1d5db !important;
      border-radius: 8px !important;
      background: #fff !important;
      box-shadow: none !important; }
    .member-form-page .member-form-phone-field .react-tel-input .form-control:hover,
    .member-form-page .member-form-phone-field .react-tel-input input.phone-input:hover {
      border-color: #9ca3af !important; }
    .member-form-page .member-form-phone-field .react-tel-input .form-control:focus,
    .member-form-page .member-form-phone-field .react-tel-input input.phone-input:focus {
      border-color: #3431ac !important;
      box-shadow: none !important;
      outline: none !important; }
    .member-form-page .member-form-phone-field .react-tel-input .flag-dropdown {
      background: transparent !important;
      border: none !important;
      border-right: 1px solid #e5e7eb !important;
      border-radius: 7px 0 0 7px !important; }
    .member-form-page .member-form-phone-field .react-tel-input .flag-dropdown.open {
      z-index: 6; }
    .member-form-page .member-form-phone-field .react-tel-input .country-list {
      z-index: 7 !important; }
    .member-form-page .member-form-phone-field .react-tel-input .selected-flag {
      width: 46px !important;
      padding-left: 10px !important;
      border-radius: 7px 0 0 7px !important; }
    .member-form-page .member-form-phone-field .react-tel-input .selected-flag:hover,
    .member-form-page .member-form-phone-field .react-tel-input .selected-flag:focus {
      background: rgba(0, 0, 0, 0.04) !important; }
    .member-form-page .member-form-phone-field .phone-icon {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      align-items: center;
      pointer-events: none;
      color: #959595; }
    .member-form-page .member-form-phone-field .phone-container {
      margin-top: 0 !important; }
    .member-form-page .member-form-phone-field .input {
      padding: 0;
      border-bottom: none; }
    .member-form-page .member-form-phone-field input {
      font-size: 14px;
      color: #111827; }

.member-form-page__inner {
  width: 100%;
  max-width: 720px;
  padding: 0; }

.member-form-page__back {
  text-transform: none !important;
  margin-bottom: 20px !important;
  padding-left: 0 !important;
  color: #374151 !important;
  font-weight: 500 !important;
  font-size: 14px !important; }
  .member-form-page__back:hover {
    background-color: transparent !important;
    color: #3431ac !important; }

.member-form-card {
  background: #ffffff;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  overflow: visible; }

.member-form-card__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid #f0f1f3;
  background: #fafbfc;
  border-radius: 12px 12px 0 0; }

.member-form-card__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #eeedfc 0%, #dddafa 100%);
  color: #3431ac;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px; }

.member-form-card__header-main {
  flex: 1;
  min-width: 0; }

.member-form-card__title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 4px;
  line-height: 1.4; }

.member-form-card__subtitle {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
  max-width: 560px; }

.member-form-card__inner {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* Outlined controls: match Location / MUI small (40px) rhythm */
  /* MUI v5 labels (LocationSelect uses @mui/material TextField) */ }
  .member-form-card__inner .MuiFormControl-root {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    width: 100%;
    vertical-align: top; }
  .member-form-card__inner .MuiOutlinedInput-root {
    border-radius: 8px !important;
    background: #fff;
    min-height: 40px;
    box-sizing: border-box; }
    .member-form-card__inner .MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline {
      border-color: #9ca3af !important; }
    .member-form-card__inner .MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
      border-color: #3431ac !important;
      border-width: 1px !important; }
  .member-form-card__inner .MuiOutlinedInput-notchedOutline {
    border-color: #d1d5db !important; }
  .member-form-card__inner .MuiOutlinedInput-input {
    font-size: 14px !important; }
    .member-form-card__inner .MuiOutlinedInput-input:-webkit-autofill, .member-form-card__inner .MuiOutlinedInput-input:-webkit-autofill:hover, .member-form-card__inner .MuiOutlinedInput-input:-webkit-autofill:focus {
      -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
      -webkit-text-fill-color: #111827 !important;
      caret-color: #111827;
      -webkit-transition: background-color 5000s ease-in-out 0s;
      transition: background-color 5000s ease-in-out 0s; }
  .member-form-card__inner .MuiInputLabel-outlined {
    color: #6b7280; }
  .member-form-card__inner .MuiInputLabel-outlined.Mui-focused {
    color: #3431ac; }
  .member-form-card__inner .MuiInputLabel-root.MuiInputLabel-outlined {
    color: #6b7280; }
  .member-form-card__inner .MuiInputLabel-root.Mui-focused {
    color: #3431ac; }
  .member-form-card__inner .location-select-container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    align-self: stretch; }
    .member-form-card__inner .location-select-container .MuiInputLabel-root {
      color: #6b7280 !important; }
    .member-form-card__inner .location-select-container .MuiInputLabel-root.Mui-focused {
      color: #3431ac !important; }
    .member-form-card__inner .location-select-container .MuiSvgIcon-root {
      color: #959595 !important; }
  .member-form-card__inner .member-form-role-select {
    margin: 0; }
  .member-form-card__inner .team-form-select {
    margin: 0 !important; }
    .member-form-card__inner .team-form-select .MuiOutlinedInput-root {
      background: transparent !important; }
      .member-form-card__inner .team-form-select .MuiOutlinedInput-root:hover, .member-form-card__inner .team-form-select .MuiOutlinedInput-root.Mui-focused {
        background: transparent !important; }
    .member-form-card__inner .team-form-select .MuiSelect-select {
      background: transparent !important; }

.member-form-section--rewards, .member-form-section--actions {
  padding-top: 16px;
  margin-top: 0;
  border-top: 1px solid #f0f1f3; }

.member-form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 12px; }

.member-form-btn {
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  line-height: 1.25; }
  .member-form-btn--primary {
    background: #3431ac;
    color: #ffffff;
    border: none; }
    .member-form-btn--primary:hover:not(:disabled) {
      background: #2a2890; }
  .member-form-btn--secondary {
    background: #ffffff;
    color: #374151;
    border: 1px solid #d1d5db; }
    .member-form-btn--secondary:hover:not(:disabled) {
      border-color: #9ca3af;
      background: #f9fafb; }
  .member-form-btn--accent-outline {
    background: #ffffff;
    color: #3431ac;
    border: 1px solid #3431ac; }
    .member-form-btn--accent-outline:hover:not(:disabled) {
      background: #f5f4fc; }

.mail-box {
  color: #959595; }
.column-delete-modal {
  width: 560px; }
  .column-delete-modal .modal-body {
    text-align: center; }
    .column-delete-modal .modal-body svg {
      display: block;
      margin: 0 auto 16px; }
  .column-delete-modal .stage-selection {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px; }
    .column-delete-modal .stage-selection .stage-from {
      flex: 1;
      padding: 10px 14px;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      font-size: 14px;
      color: #9ca3af;
      background: #f9fafb; }
    .column-delete-modal .stage-selection .new-stage {
      flex: 1; }
      .column-delete-modal .stage-selection .new-stage .MuiOutlinedInput-root {
        border-radius: 8px; }
.notify-confirm-modal .modal-body {
  text-align: center; }
  .notify-confirm-modal .modal-body svg {
    display: block;
    margin: 0 auto 16px; }
.tracker-settings-root {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 24px 100px; }

.tracker-settings-unsaved-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background-color: #e3f2fd;
  border: 1px solid #90caf9;
  border-radius: 10px;
  font-size: 14px;
  color: #1976d2;
  margin-bottom: 24px; }
  .tracker-settings-unsaved-banner__icon {
    font-size: 20px;
    color: #1976d2;
    flex-shrink: 0; }

.tracker-settings-section {
  background: #ffffff;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 20px; }
  .tracker-settings-section .general-settings-cont {
    width: 100%;
    padding: 0;
    background: none;
    border-radius: 0; }
  .tracker-settings-section .trackerSyncWithEmail {
    width: 100%;
    padding: 0;
    margin: 0;
    background: none;
    border-radius: 0; }
  .tracker-settings-section .referral-ownership {
    width: 100%;
    padding: 0;
    margin: 0;
    background: none;
    border-radius: 0; }
  .tracker-settings-section .payout-settings-cont {
    width: 100%;
    padding: 0;
    margin: 0;
    background: none;
    border-radius: 0; }
  .tracker-settings-section .notification-settings-cont {
    margin: 0;
    padding: 0; }

.tracker-settings-card__heading {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #959595;
  margin: 0 0 16px; }

.tracker-settings-card__question {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #374151;
  margin-top: 20px; }

.tracker-settings-card__detail {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #6b7280;
  margin-top: 6px; }

.tracker-settings-card__inputs {
  margin: 11px 0 0; }

.tracker-settings-radio .MuiIconButton-root {
  padding: 4px 9px !important; }

.tracker-settings-radio .MuiFormControlLabel-label {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #374151; }

.tracker-settings-switch {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-weight: 500; }
  .tracker-settings-switch__label {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #374151;
    margin-bottom: 4px; }

.tracker-settings-sticky-actions {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
  z-index: 10; }

.tracker-settings-cancel-btn {
  background: #ffffff;
  color: #374151;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s; }
  .tracker-settings-cancel-btn:hover {
    background: #f3f4f6;
    border-color: #9ca3af; }

.tracker-settings-save-btn {
  background: #3431ac;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s; }
  .tracker-settings-save-btn:hover {
    background: #2a2890; }
.dispute-details-root {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px; }

.dispute-details-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px; }

.dispute-details-section {
  background: #ffffff;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  overflow: hidden; }
  .dispute-details-section__header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 28px;
    border-bottom: 1px solid #f0f1f3;
    background: #fafbfc; }
  .dispute-details-section__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #eeedfc 0%, #dddafa 100%);
    color: #3431ac;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px; }
  .dispute-details-section__title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 4px;
    line-height: 1.4; }
  .dispute-details-section__subtitle {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
    word-break: break-all; }
  .dispute-details-section__body {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px; }

.dispute-details-divider {
  width: 100%;
  height: 1px;
  background: #e8eaed; }

.dispute-details-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px; }

.dispute-details-field {
  display: flex;
  flex-direction: column;
  gap: 4px; }
  .dispute-details-field--full {
    grid-column: 1 / -1; }
  .dispute-details-field__label {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280; }
  .dispute-details-field__value {
    font-size: 14px;
    color: #1a1a2e;
    overflow: hidden;
    text-overflow: ellipsis; }
    .dispute-details-field__value--bold {
      font-weight: 600; }

.dispute-details-footer {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.dispute-details-support {
  font-size: 13px;
  color: #9ca3af; }
  .dispute-details-support a {
    color: #3431ac;
    text-decoration: none;
    font-weight: 500; }
    .dispute-details-support a:hover {
      text-decoration: underline; }

.dispute-details-action-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  background: #3431ac;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease; }
  .dispute-details-action-btn:hover {
    background: #2a279a;
    box-shadow: 0 2px 8px rgba(52, 49, 172, 0.3); }
  .dispute-details-action-btn:active {
    transform: translateY(1px); }

.dispute-details-root .payout-status {
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 12px;
  line-height: 16px;
  text-transform: capitalize;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500; }
  .dispute-details-root .payout-status.due {
    color: #da6b05;
    background-color: #fcedb9; }
  .dispute-details-root .payout-status.paid {
    color: #1e1b5e;
    background-color: #e8e7f5; }
  .dispute-details-root .payout-status.past_due {
    color: #b3063d;
    background-color: #ffe7f2; }
  .dispute-details-root .payout-status.ineligible {
    color: #6a7383;
    background-color: #ebeef1; }
  .dispute-details-root .payout-status.open {
    color: #2767c2;
    background-color: #cff5f6; }
  .dispute-details-root .payout-status.tbd {
    color: #c3c7cd;
    border: 1px solid #c3c7cd; }

.text-capitalize {
  text-transform: capitalize; }
.details-widget-content {
  /* Match Reward Templates settings Quill (Settings.scss .reward-settings-field .text-editor) */ }
  .details-widget-content .ck-toolbar_grouping {
    border-radius: 4px 4px 0 0 !important; }
  .details-widget-content .ck-editor__editable {
    border-radius: 0 0 4px 4px !important; }
  .details-widget-content .text-editor {
    width: 100%;
    margin-top: 0;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
    box-sizing: border-box; }
    .details-widget-content .text-editor .quill {
      border: none; }
    .details-widget-content .text-editor #toolbar {
      border: none;
      border-bottom: 1px solid #f0f1f3;
      background: #fafbfc;
      padding: 10px 12px; }
    .details-widget-content .text-editor .ql-toolbar.ql-snow {
      border: none !important;
      border-bottom: 1px solid #f0f1f3 !important;
      background: #fafbfc;
      padding: 10px 12px; }
    .details-widget-content .text-editor .ql-container.ql-snow {
      border: none !important;
      font-size: 14px;
      min-height: 120px; }
    .details-widget-content .text-editor .ql-editor {
      min-height: 120px !important;
      padding: 12px 14px !important;
      color: #374151;
      line-height: 1.7; }
      .details-widget-content .text-editor .ql-editor.ql-blank::before {
        color: #959595;
        font-style: normal;
        left: 14px;
        right: 14px; }
      .details-widget-content .text-editor .ql-editor img {
        height: 12px;
        width: 12px; }

.field-text-centered .Select.has-value.is-clearable.Select--single > .Select-control .Select-value {
  padding-top: 3px; }

.field-text-centered .light > .Select-control .Select-placeholder {
  opacity: 1;
  font-size: 14px;
  color: #c2c2c2;
  font-weight: normal; }

.field-text-centered .MuiInputLabel-shrink {
  color: #959595 !important; }

.field-text-centered .MuiInputLabel-outlined {
  color: #c2c2c2;
  font-size: 14px;
  font-weight: normal; }

.ql-disabled .ql-editor {
  min-height: -moz-fit-content !important;
  min-height: fit-content !important; }
.ql-editor p {
  font-size: 0.9rem !important;
  color: #727272 !important; }

.ql-editor h1 {
  font-size: 19px !important;
  color: #959595 !important; }

.ql-editor ul li, .ql-editor ol li {
  font-size: 0.9rem !important;
  color: #727272 !important; }

.ql-editor ul, .ql-editor ol {
  padding-left: 0px !important; }

.ql-editor h2 {
  font-size: 17px !important;
  color: #959595 !important; }

.ql-editor a {
  text-decoration: underline !important;
  color: #1d9bd1 !important; }

.ql-editor img {
  height: 12px;
  width: 12px; }

.ql-header {
  width: 110px !important; }

.ql-disabled .ql-editor {
  padding: 10px 0px 0px 0px !important; }
  .ql-disabled .ql-editor p + ol {
    margin-top: -18px !important; }

.ql-disabled .ql-hidden, .ql-disabled .ql-blank {
  display: none; }

.ql-disabled .ql-snow {
  border: none !important; }

#toolbar {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex-wrap: wrap !important;
  position: relative !important; }

#toolbar .ql-formats {
  display: inline-flex !important;
  margin-right: 0px !important; }

#toolbar .auto-generate-button-wrapper {
  margin-left: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: 0 4px !important;
  height: 100% !important; }

#toolbar .auto-generate-button-wrapper button {
  height: 24px !important;
  min-height: 24px !important;
  padding: 0 8px !important;
  margin: 0 !important;
  vertical-align: middle !important;
  width: auto !important; }

#toolbar .auto-generate-button-wrapper button:hover:not(:disabled) {
  color: #09965a !important;
  background-color: transparent !important;
  text-decoration: none !important; }

#toolbar .auto-generate-button-wrapper button:disabled {
  color: #7d8d8a !important;
  background-color: transparent !important;
  cursor: not-allowed !important; }

#toolbar .auto-generate-button-wrapper button:disabled:hover {
  color: #7d8d8a !important;
  background-color: transparent !important; }

#toolbar .auto-generate-button-wrapper button span {
  color: inherit !important; }

#toolbar .auto-generate-button-wrapper button:hover:not(:disabled) span {
  color: #09965a !important; }
.field-text-centered .Select.has-value.is-clearable.Select--single > .Select-control .Select-value {
  padding-top: 0px !important; }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  display: none; }

input[type='number'] {
  -moz-appearance: textfield; }

.job_Salary_range_block {
  display: flex;
  flex-direction: row; }
  .job_Salary_range_block .Select.has-value.Select--single > .Select-control .Select-value .Select-value-label {
    width: -moz-fit-content;
    width: fit-content;
    display: flex; }
  .job_Salary_range_block .redux-select-container {
    width: 70%;
    padding-right: 10px; }
    .job_Salary_range_block .redux-select-container div .Select-control {
      height: 39px; }
  .job_Salary_range_block .MuiTextField-root {
    width: 100%;
    margin-top: 20px !important; }
  .job_Salary_range_block .MuiFormControl-root {
    width: 38%;
    padding-right: 10px; }
    .job_Salary_range_block .MuiFormControl-root .MuiInputBase-root input {
      height: 18.1px; }
  .job_Salary_range_block .icons-block {
    display: flex; }
    .job_Salary_range_block .icons-block button {
      padding: 0; }
    .job_Salary_range_block .icons-block .salary-privacy-btn {
      border-radius: 3.333px;
      border: 1px solid #c2c2c2;
      margin-right: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 40px;
      width: 40px; }
    .job_Salary_range_block .icons-block .info-image {
      height: 25px;
      padding: 3px; }
    .job_Salary_range_block .icons-block .public-image {
      height: 32px;
      cursor: pointer; }
  .job_Salary_range_block .currency-controls-cont {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    width: 24%; }
  @media screen and (max-width: 600px) {
    .job_Salary_range_block {
      flex-direction: column; }
      .job_Salary_range_block .MuiFormControl-root {
        width: 100%;
        padding-right: 0px; }
      .job_Salary_range_block .redux-select-container {
        width: 70%;
        padding-right: 0px;
        padding-top: 18px; }
      .job_Salary_range_block .currency-controls-cont {
        width: 100%; }
      .job_Salary_range_block .icons-block {
        margin-left: 10px; } }
.CancelModal__container .modal-body {
  text-align: center; }
  .CancelModal__container .modal-body svg {
    display: block;
    margin: 0 auto 16px; }
.import-content-box .file-cont {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 16px; }

.import-content-box .file-name {
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin: 0; }

.import-content-box .map-container {
  margin-top: 16px; }
  .import-content-box .map-container .map-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 12px; }
    .import-content-box .map-container .map-row:first-child {
      margin-top: 0;
      padding-bottom: 12px;
      border-bottom: 1px solid #f3f4f6;
      margin-bottom: 4px; }
    .import-content-box .map-container .map-row .map-field-name-header {
      width: calc(50% - 25px);
      font-size: 12px;
      font-weight: 600;
      color: #9ca3af;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 0; }
    .import-content-box .map-container .map-row .map-field-name {
      width: calc(50% - 25px);
      background: #f9fafb;
      border: 1px solid #f3f4f6;
      border-radius: 8px;
      height: auto;
      font-size: 14px;
      color: #374151;
      font-weight: 500;
      letter-spacing: normal;
      padding: 10px 14px; }
    .import-content-box .map-container .map-row .map-field-object-header {
      width: calc(50% - 25px);
      font-size: 12px;
      font-weight: 600;
      color: #3431ac;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 0; }
    .import-content-box .map-container .map-row .map-field-object {
      width: calc(50% - 25px); }
      .import-content-box .map-container .map-row .map-field-object .custom-field-container {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        gap: 8px; }
        .import-content-box .map-container .map-row .map-field-object .custom-field-container .custom-field-input {
          margin: 0 !important; }
          .import-content-box .map-container .map-row .map-field-object .custom-field-container .custom-field-input .MuiOutlinedInput-root {
            border-radius: 8px; }
        .import-content-box .map-container .map-row .map-field-object .custom-field-container .close-icon {
          cursor: pointer;
          color: #9ca3af;
          transition: color 0.15s ease; }
          .import-content-box .map-container .map-row .map-field-object .custom-field-container .close-icon:hover {
            color: #374151; }
    .import-content-box .map-container .map-row .map-value-container {
      border-radius: 8px;
      box-shadow: unset;
      width: 100%; }
      .import-content-box .map-container .map-row .map-value-container::before {
        display: none; }
      .import-content-box .map-container .map-row .map-value-container .map-value-header {
        background: #f9fafb;
        border: 1px solid #f3f4f6;
        border-radius: 8px;
        min-height: unset;
        height: 40px; }
        .import-content-box .map-container .map-row .map-value-container .map-value-header .values-heading {
          display: flex;
          justify-content: space-between;
          align-items: center;
          width: 100%; }
          .import-content-box .map-container .map-row .map-value-container .map-value-header .values-heading .values-mapping {
            display: flex;
            align-items: center;
            font-weight: 600;
            font-size: 12px;
            letter-spacing: 0.05em;
            text-transform: uppercase; }
            .import-content-box .map-container .map-row .map-value-container .map-value-header .values-heading .values-mapping .import-field-header {
              color: #9ca3af; }
            .import-content-box .map-container .map-row .map-value-container .map-value-header .values-heading .values-mapping .boon-field-header {
              color: #3431ac; }
          .import-content-box .map-container .map-row .map-value-container .map-value-header .values-heading .mapped-deatils {
            font-weight: 400;
            font-size: 13px;
            line-height: 1.4;
            letter-spacing: normal;
            color: #6b7280; }
            .import-content-box .map-container .map-row .map-value-container .map-value-header .values-heading .mapped-deatils.success {
              color: #3431ac; }
              .import-content-box .map-container .map-row .map-value-container .map-value-header .values-heading .mapped-deatils.success .mapped-count {
                color: #3431ac; }
            .import-content-box .map-container .map-row .map-value-container .map-value-header .values-heading .mapped-deatils .mapped-count {
              text-decoration-line: underline;
              text-transform: uppercase;
              color: #ea5506; }
      .import-content-box .map-container .map-row .map-value-container .map-values-container {
        flex-direction: column;
        padding: 0; }
    .import-content-box .map-container .map-row .boon-value-header {
      width: 150px;
      font-size: 12px;
      font-weight: 600;
      color: #3431ac;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 0; }
    .import-content-box .map-container .map-row .import-value-header {
      width: calc(100% - 174px);
      font-size: 12px;
      font-weight: 600;
      color: #9ca3af;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 0; }
    .import-content-box .map-container .map-row .boon-value-heading {
      width: 150px;
      padding: 0 12px;
      font-weight: 600;
      font-size: 14px;
      line-height: 1.5;
      color: #1a1a2e; }
    .import-content-box .map-container .map-row .imported-value-sample {
      width: calc(100% - 174px);
      padding: 0 12px;
      font-weight: 400;
      font-size: 13px;
      line-height: 1.5;
      color: #6b7280; }
  .import-content-box .map-container .custom-fields-header {
    display: flex;
    align-items: center;
    padding: 0 10px;
    margin-top: 20px; }
    .import-content-box .map-container .custom-fields-header .custom-fields-label {
      white-space: nowrap;
      margin-right: 24px;
      font-style: italic;
      font-weight: 400;
      font-size: 12px;
      line-height: 1.5;
      color: #9ca3af; }
    .import-content-box .map-container .custom-fields-header .custom-fields-sperator {
      border-bottom: 1px solid #e5e7eb;
      width: 100%; }

.import-content-box .sample-heading-cont {
  width: 100%;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 8px;
  padding: 8px 16px;
  margin-top: 20px; }

.import-content-box .sample-heading {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0; }

.import-content-box .samples-cont {
  display: flex;
  padding: 16px 16px 0;
  gap: 40px; }

.import-content-box .boon-values-cont,
.import-content-box .imported-values-cont {
  flex: 1;
  min-width: 0; }

.import-content-box .boon-value-heading {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #3431ac;
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid #eeedfc; }

.import-content-box .boon-value {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #1f2937;
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid #f9fafb; }

.import-content-box .imported-value-heading {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f3f4f6; }

.import-content-box .imported-value {
  font-size: 13px;
  line-height: 1.5;
  color: #6b7280;
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid #f9fafb; }

@media (max-width: 540px) {
  .import-content-box .map-container {
    height: calc(100vh - 280px);
    overflow: auto; }
    .import-content-box .map-container .map-row .map-value-container .map-value-header {
      height: 50px; }
      .import-content-box .map-container .map-row .map-value-container .map-value-header .values-heading {
        flex-wrap: wrap; } }
.UnmappedFieldsModal__container .modal-body {
  text-align: center; }
  .UnmappedFieldsModal__container .modal-body svg {
    display: block;
    margin: 0 auto 16px; }
  .UnmappedFieldsModal__container .modal-body .unmapped-fields-list {
    text-align: left;
    margin: 12px 0 0 24px;
    padding: 0;
    list-style: disc; }
    .UnmappedFieldsModal__container .modal-body .unmapped-fields-list li {
      margin-bottom: 4px;
      color: #374151; }
.details-widget-content .ck-toolbar_grouping {
  border-radius: 4px 4px 0 0 !important; }

.details-widget-content .ck-editor__editable {
  border-radius: 0 0 4px 4px !important; }

.details-widget-content .text-editor {
  width: 100%;
  margin-top: 0;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  overflow: hidden;
  box-sizing: border-box; }
  .details-widget-content .text-editor .quill {
    border: none; }
  .details-widget-content .text-editor #toolbar {
    border: none;
    border-bottom: 1px solid #f0f1f3;
    background: #fafbfc;
    padding: 10px 12px; }
  .details-widget-content .text-editor .ql-toolbar.ql-snow {
    border: none !important;
    border-bottom: 1px solid #f0f1f3 !important;
    background: #fafbfc;
    padding: 10px 12px; }
  .details-widget-content .text-editor .ql-container.ql-snow {
    border: none !important;
    font-size: 14px;
    min-height: 120px; }
  .details-widget-content .text-editor .ql-editor {
    min-height: 120px !important;
    padding: 12px 14px !important;
    color: #374151;
    line-height: 1.7; }
    .details-widget-content .text-editor .ql-editor.ql-blank::before {
      color: #959595;
      font-style: normal;
      left: 14px;
      right: 14px; }
    .details-widget-content .text-editor .ql-editor img {
      height: 12px;
      width: 12px; }

.field-text-centered .Select.has-value.is-clearable.Select--single > .Select-control .Select-value {
  padding-top: 3px; }

.field-text-centered .light > .Select-control .Select-placeholder {
  font-size: 14px;
  font-weight: normal; }

.field-text-centered .MuiInputLabel-shrink {
  color: #959595 !important; }

.field-text-centered .MuiInputLabel-outlined {
  color: #c2c2c2;
  font-size: 14px;
  font-weight: normal; }

/* Opening-ID row (Job ID / External Job ID / Job Merge ID) must stay on a
 * single line. The selectors below are deliberately prefixed with
 * `.boon-form .basic-info` so specificity beats the generic row rules in
 * `_modern-form.scss`:
 *   .boon-form .basic-info .row            { display: block !important; }
 *   .boon-form .basic-info .row > div      { width: 100% !important; flex: none !important; }
 * which would otherwise stack the three ID fields vertically. */
.boon-form .basic-info .field-text-centered .opening-ids.row,
.boon-form .basic-info .details-widget-content .opening-ids.row,
.field-text-centered .opening-ids.row {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 12px !important;
  margin-top: 0 !important;
  margin-bottom: 16px !important; }
  .boon-form .basic-info .field-text-centered .opening-ids.row > div,
  .boon-form .basic-info .field-text-centered .opening-ids.row > .col,
  .boon-form .basic-info .details-widget-content .opening-ids.row > div,
  .boon-form .basic-info .details-widget-content .opening-ids.row > .col,
  .field-text-centered .opening-ids.row > div,
  .field-text-centered .opening-ids.row > .col {
    flex: 1 1 0 !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box; }
    .boon-form .basic-info .field-text-centered .opening-ids.row > div .input,
    .boon-form .basic-info .field-text-centered .opening-ids.row > div .MuiFormControl-root,
    .boon-form .basic-info .field-text-centered .opening-ids.row > div .MuiTextField-root,
    .boon-form .basic-info .field-text-centered .opening-ids.row > div .MuiOutlinedInput-root,
    .boon-form .basic-info .field-text-centered .opening-ids.row > div .MuiInputBase-root,
    .boon-form .basic-info .field-text-centered .opening-ids.row > .col .input,
    .boon-form .basic-info .field-text-centered .opening-ids.row > .col .MuiFormControl-root,
    .boon-form .basic-info .field-text-centered .opening-ids.row > .col .MuiTextField-root,
    .boon-form .basic-info .field-text-centered .opening-ids.row > .col .MuiOutlinedInput-root,
    .boon-form .basic-info .field-text-centered .opening-ids.row > .col .MuiInputBase-root,
    .boon-form .basic-info .details-widget-content .opening-ids.row > div .input,
    .boon-form .basic-info .details-widget-content .opening-ids.row > div .MuiFormControl-root,
    .boon-form .basic-info .details-widget-content .opening-ids.row > div .MuiTextField-root,
    .boon-form .basic-info .details-widget-content .opening-ids.row > div .MuiOutlinedInput-root,
    .boon-form .basic-info .details-widget-content .opening-ids.row > div .MuiInputBase-root,
    .boon-form .basic-info .details-widget-content .opening-ids.row > .col .input,
    .boon-form .basic-info .details-widget-content .opening-ids.row > .col .MuiFormControl-root,
    .boon-form .basic-info .details-widget-content .opening-ids.row > .col .MuiTextField-root,
    .boon-form .basic-info .details-widget-content .opening-ids.row > .col .MuiOutlinedInput-root,
    .boon-form .basic-info .details-widget-content .opening-ids.row > .col .MuiInputBase-root,
    .field-text-centered .opening-ids.row > div .input,
    .field-text-centered .opening-ids.row > div .MuiFormControl-root,
    .field-text-centered .opening-ids.row > div .MuiTextField-root,
    .field-text-centered .opening-ids.row > div .MuiOutlinedInput-root,
    .field-text-centered .opening-ids.row > div .MuiInputBase-root,
    .field-text-centered .opening-ids.row > .col .input,
    .field-text-centered .opening-ids.row > .col .MuiFormControl-root,
    .field-text-centered .opening-ids.row > .col .MuiTextField-root,
    .field-text-centered .opening-ids.row > .col .MuiOutlinedInput-root,
    .field-text-centered .opening-ids.row > .col .MuiInputBase-root {
      width: 100% !important;
      max-width: 100% !important; }

.ql-picker-options, .ql-tooltip {
  z-index: 10 !important; }

.quill > .ql-container > .ql-editor.ql-blank::before {
  opacity: 1;
  font-size: 14px;
  color: #c2c2c2;
  font-weight: normal;
  font-style: normal !important; }
.CustomValues_container {
  display: flex;
  flex-wrap: wrap; }

.department-filters-container {
  height: 100%;
  overflow: scroll;
  padding: 26px 20px 0 !important; }
  .department-filters-container .filter-heading-container {
    display: flex;
    align-items: center;
    margin-bottom: 0px; }
    .department-filters-container .filter-heading-container .filter-heading {
      font-weight: 700;
      font-size: 24px;
      line-height: 28px;
      color: #23272a;
      margin-left: 10px; }
  .department-filters-container .clear-button {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px; }
    .department-filters-container .clear-button span {
      font-weight: 400;
      font-size: 15px;
      line-height: 18px;
      text-align: right;
      text-decoration-line: underline;
      text-decoration-thickness: 1px;
      color: #808080;
      cursor: pointer; }
  .department-filters-container .Select-input {
    height: auto; }
  .department-filters-container .filter-type > p {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    margin-top: 24px; }
  .department-filters-container .filter-type .location-filter {
    margin-bottom: 0; }
  .department-filters-container .filter-type .location-filter-cont .location-select__control {
    background: none; }

.department-drop-down {
  width: 80% !important; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.rules-suggestions-edit {
  background: #fff;
  border-radius: 5px;
  width: 100%; }
  .rules-suggestions-edit .rules-override-details {
    margin-top: 20px;
    font-size: 14px;
    font-weight: normal;
    font-family: Roboto;
    padding-left: 10px; }
    .rules-suggestions-edit .rules-override-details .rules-override-line {
      color: #3431AC; }
    .rules-suggestions-edit .rules-override-details .choose-line {
      margin-top: 10px;
      display: flex;
      justify-content: space-between;
      color: #454847; }
.CustomValues_container {
  display: flex;
  flex-wrap: wrap; }

.job-filters-container {
  height: 100%;
  overflow: scroll;
  padding: 26px 20px 0 !important; }
  .job-filters-container .filter-heading-container {
    display: flex;
    align-items: center;
    margin-bottom: 0px; }
    .job-filters-container .filter-heading-container .filter-heading {
      font-weight: 700;
      font-size: 24px;
      line-height: 28px;
      color: #23272a;
      margin-left: 10px; }
  .job-filters-container .clear-button {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px; }
    .job-filters-container .clear-button span {
      font-weight: 400;
      font-size: 15px;
      line-height: 18px;
      text-align: right;
      text-decoration-line: underline;
      text-decoration-thickness: 1px;
      color: #808080;
      cursor: pointer; }
  .job-filters-container .filter-select-inputs .Select-control {
    border-radius: 3px; }
  .job-filters-container .Select-input {
    height: auto; }
  .job-filters-container .filter-type > p {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    margin-top: 24px; }
  .job-filters-container .filter-type .location-filter {
    margin-bottom: 0; }
  .job-filters-container .filter-type .location-filter-cont .location-select__control {
    background: none; }
  .job-filters-container .filter-type .info-container {
    display: flex;
    gap: 6px; }
    .job-filters-container .filter-type .info-container .info-tooltip {
      margin-top: -1px; }
      .job-filters-container .filter-type .info-container .info-tooltip svg {
        opacity: 0.6; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.rules-suggestions-edit {
  background: #fff;
  border-radius: 5px;
  width: 100%;
  margin-top: 1%; }
  .rules-suggestions-edit .rules-override-details {
    margin-top: 20px;
    font-size: 14px;
    font-weight: normal;
    font-family: Roboto;
    padding-left: 10px; }
    .rules-suggestions-edit .rules-override-details .rules-override-line {
      color: #3431AC; }
    .rules-suggestions-edit .rules-override-details .choose-line {
      margin-top: 10px;
      display: flex;
      justify-content: space-between;
      color: #454847; }
  .rules-suggestions-edit .reward-para {
    font-weight: 500;
    font-size: 14px;
    color: black; }
  .rules-suggestions-edit .opportunity-page-spacing {
    margin-top: 1.3rem !important; }
.footer-wrapper .footer-button {
  padding: 10px !important;
  font-size: 13px !important; }

.modal-header-wrapper {
  justify-content: flex-end; }

.modal-body-wrapper {
  padding: 0 10px; }
.main-condition-wrapper {
  margin-left: 20px; }
  .main-condition-wrapper .condition-count {
    color: #808080;
    font-size: 18px;
    float: left;
    margin: 10px 10px 10px 0; }
  .main-condition-wrapper .menu-icon {
    width: 15px;
    float: left;
    margin: 15px 10px 15px 15px; }
  .main-condition-wrapper .field-select {
    padding: 5px;
    margin-right: 25px;
    background: #ffffff;
    border-radius: 5px;
    float: left; }
  .main-condition-wrapper .input-field {
    padding: 5px;
    margin-right: 25px;
    background: #ffffff;
    border-radius: 5px;
    float: left;
    height: 45px;
    width: 200px; }
  .main-condition-wrapper .operator-select {
    padding: 5px;
    margin-right: 25px;
    width: 100px;
    float: left;
    background: #ffffff;
    border-radius: 5px; }
  .main-condition-wrapper .value-select {
    padding: 5px;
    margin-right: 25px;
    width: 200px;
    float: left;
    background: #ffffff;
    border-radius: 5px; }
  .main-condition-wrapper .value-select-title {
    padding: 5px;
    margin-right: 25px;
    background: #ffffff;
    border-radius: 5px;
    float: left;
    height: 45px;
    width: 200px; }
  .main-condition-wrapper .delete-icon {
    cursor: pointer;
    width: 20px;
    margin: 10px; }
  .main-condition-wrapper .hidden {
    opacity: 0; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.openings-menu {
  border-radius: 12px;
  border: 1px solid #e8eaed;
  background: #ffffff;
  overflow: hidden; }
  .openings-menu .MuiList-padding {
    padding: 0; }
  .openings-menu .MuiMenuItem-root {
    padding: 12px 18px;
    background: #ffffff;
    color: #6b7280;
    border-bottom: 1px solid #f0f1f3;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease; }
    .openings-menu .MuiMenuItem-root:last-of-type {
      border-bottom: none; }
    .openings-menu .MuiMenuItem-root.Mui-selected, .openings-menu .MuiMenuItem-root:hover {
      font-weight: 600;
      background: #f5f4fc;
      color: #1a1a2e;
      border-right: 3px solid #3431ac; }
    .openings-menu .MuiMenuItem-root:not(.Mui-selected) {
      border-right: 3px solid transparent; }
.team-cancel-modal {
  width: 480px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden; }
  .team-cancel-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f1f3;
    background: #fafbfc; }
  .team-cancel-modal__title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0; }
  .team-cancel-modal__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #9ca3af;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease; }
    .team-cancel-modal__close:hover {
      color: #374151;
      background: #f3f4f6; }
  .team-cancel-modal__body {
    padding: 28px 24px;
    text-align: center; }
  .team-cancel-modal__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fffbeb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px; }
  .team-cancel-modal__text {
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    margin: 0; }
  .team-cancel-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 24px;
    border-top: 1px solid #f0f1f3;
    background: #fafbfc; }
  .team-cancel-modal__btn {
    padding: 9px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    border: none; }
    .team-cancel-modal__btn--primary {
      background: #3431ac;
      color: #fff; }
      .team-cancel-modal__btn--primary:hover {
        background: #2a279a; }
    .team-cancel-modal__btn--outline {
      background: #fff;
      color: #374151;
      border: 1px solid #e5e7eb; }
      .team-cancel-modal__btn--outline:hover {
        background: #f9fafb;
        border-color: #d1d5db; }
.ats-divider {
  width: 100%;
  height: 1px;
  background: #f3f4f6; }
.ats-job-mapping-cont {
  width: 100%;
  padding: 0 24px 60px;
  display: flex;
  justify-content: center; }
  .ats-job-mapping-cont .content-cont {
    width: 100%;
    max-width: 720px;
    margin-top: 24px; }
    .ats-job-mapping-cont .content-cont .action-buttons-cont {
      display: flex;
      width: 100%;
      justify-content: flex-end;
      gap: 12px;
      margin-top: 8px; }
    .ats-job-mapping-cont .content-cont .action-button {
      min-width: 140px;
      height: 40px;
      font-weight: 500;
      font-size: 14px;
      border-radius: 8px;
      text-transform: none;
      padding: 0 24px;
      transition: all 0.15s ease; }
    .ats-job-mapping-cont .content-cont .action-button-primary {
      background-color: #3431ac;
      color: #ffffff;
      box-shadow: none; }
      .ats-job-mapping-cont .content-cont .action-button-primary:hover {
        background-color: #2a2890; }
      .ats-job-mapping-cont .content-cont .action-button-primary:disabled {
        background-color: #e5e7eb;
        color: #9ca3af;
        box-shadow: none; }
    .ats-job-mapping-cont .content-cont .action-button-secondary {
      border: 1px solid #d1d5db;
      color: #6b7280;
      background: #ffffff; }
      .ats-job-mapping-cont .content-cont .action-button-secondary:hover {
        background: #f9fafb;
        border-color: #9ca3af; }
.ats-job-mapping-cont {
  width: 100%;
  padding: 0 24px 60px;
  display: flex;
  justify-content: center; }
  .ats-job-mapping-cont .content-cont {
    width: 100%;
    max-width: 720px;
    margin-top: 24px; }
    .ats-job-mapping-cont .content-cont .action-buttons-cont {
      display: flex;
      width: 100%;
      justify-content: flex-end;
      gap: 12px;
      margin-top: 8px; }
    .ats-job-mapping-cont .content-cont .action-button {
      min-width: 140px;
      height: 40px;
      font-weight: 500;
      font-size: 14px;
      border-radius: 8px;
      text-transform: none;
      padding: 0 24px;
      transition: all 0.15s ease; }
    .ats-job-mapping-cont .content-cont .action-button-primary {
      background-color: #3431ac;
      color: #ffffff;
      box-shadow: none; }
      .ats-job-mapping-cont .content-cont .action-button-primary:hover {
        background-color: #2a2890; }
      .ats-job-mapping-cont .content-cont .action-button-primary:disabled {
        background-color: #e5e7eb;
        color: #9ca3af;
        box-shadow: none; }
    .ats-job-mapping-cont .content-cont .action-button-secondary {
      border: 1px solid #d1d5db;
      color: #6b7280;
      background: #ffffff; }
      .ats-job-mapping-cont .content-cont .action-button-secondary:hover {
        background: #f9fafb;
        border-color: #9ca3af; }
.ats-tracker-stage-mapping {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 24px 60px; }
  .ats-tracker-stage-mapping .content-cont {
    margin-top: 24px;
    width: 100%;
    max-width: 720px; }
  .ats-tracker-stage-mapping .content-wrapper {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px 28px;
    margin-top: 16px;
    box-shadow: none; }
  .ats-tracker-stage-mapping .head-cont {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center; }
  .ats-tracker-stage-mapping .heading {
    font-weight: 600;
    font-size: 18px;
    color: #1a1a2e;
    margin: 0;
    margin-bottom: 20px; }
  .ats-tracker-stage-mapping .divider {
    background: #f3f4f6;
    height: 1px;
    width: 100%; }
  .ats-tracker-stage-mapping .sync-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #ffffff;
    color: #374151;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap; }
    .ats-tracker-stage-mapping .sync-btn:hover {
      background: #f9fafb;
      border-color: #9ca3af; }
  .ats-tracker-stage-mapping .selectCont {
    width: 48%; }
  .ats-tracker-stage-mapping .mappingTool {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px; }
  .ats-tracker-stage-mapping .elCont {
    display: flex;
    gap: 12px;
    align-items: center; }
  .ats-tracker-stage-mapping .importHeading {
    width: 48%;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #6b7280;
    font-size: 12px; }
  .ats-tracker-stage-mapping .boonHeading {
    width: 48%;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #3431ac;
    font-size: 12px; }
  .ats-tracker-stage-mapping .importedVal {
    background: #f3f4f6;
    border-radius: 8px;
    color: #374151;
    width: 48%;
    padding: 10px 14px;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    max-height: 38px; }
  .ats-tracker-stage-mapping .arrowCont {
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(180deg); }
    .ats-tracker-stage-mapping .arrowCont svg path {
      fill: #9ca3af; }
  .ats-tracker-stage-mapping .backarrowCont {
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center; }
    .ats-tracker-stage-mapping .backarrowCont svg path {
      fill: #9ca3af; }
  .ats-tracker-stage-mapping .radio-cont {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 8px; }
  .ats-tracker-stage-mapping .radio-label {
    color: #374151;
    font-size: 14px;
    margin: 0; }
  .ats-tracker-stage-mapping .radio-head {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #1a1a2e;
    margin-top: 24px;
    margin-bottom: 12px; }
  .ats-tracker-stage-mapping .radio {
    padding: 0 !important; }
  .ats-tracker-stage-mapping .action-buttons-cont {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 40px; }
  .ats-tracker-stage-mapping .action-button {
    min-width: 140px;
    height: 40px;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    text-transform: none;
    padding: 0 24px;
    transition: all 0.15s ease; }
  .ats-tracker-stage-mapping .action-button-primary {
    background-color: #3431ac;
    color: #ffffff;
    box-shadow: none; }
    .ats-tracker-stage-mapping .action-button-primary:hover {
      background-color: #2a2890; }
    .ats-tracker-stage-mapping .action-button-primary:disabled {
      background-color: #e5e7eb;
      color: #9ca3af;
      box-shadow: none; }
  .ats-tracker-stage-mapping .action-button-secondary {
    border: 1px solid #d1d5db;
    color: #3431ac;
    background: #ffffff; }
    .ats-tracker-stage-mapping .action-button-secondary:hover {
      background: #f9fafb;
      border-color: #9ca3af; }

.ats-tracker-stage-notification-wrapper {
  width: 100%;
  display: flex;
  justify-content: center; }

.ats-tracker-stage-notification {
  width: 100%;
  padding: 0 24px;
  max-width: 720px;
  display: flex;
  justify-content: center; }
.stage-separator {
  width: 100%;
  height: 1px;
  background-color: #e5e7eb;
  margin: 18px 0; }

.cross-ats-hris-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  margin-top: 16px;
  background-color: #eef0fb;
  border: 1px solid #d4d8f5;
  border-radius: 10px;
  color: #374151;
  font-size: 14px;
  line-height: 1.5; }
  .cross-ats-hris-banner svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px; }
    .cross-ats-hris-banner svg path {
      fill: #3431ac; }
  .cross-ats-hris-banner p {
    margin: 0; }

.completion-source-selector {
  grid-column: 1 / -1;
  margin: 0;
  padding: 16px 18px;
  background-color: #fafbff;
  border: 1px solid #e5e7eb;
  border-radius: 10px; }
  .completion-source-selector .completion-source-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px; }
    .completion-source-selector .completion-source-header .completion-source-label {
      font-size: 14px;
      font-weight: 600;
      color: #1a1a2e; }
    .completion-source-selector .completion-source-header .completion-source-info {
      display: inline-flex;
      align-items: center;
      cursor: help; }
      .completion-source-selector .completion-source-header .completion-source-info svg {
        width: 16px;
        height: 16px; }
        .completion-source-selector .completion-source-header .completion-source-info svg path {
          fill: #6b7280; }
      .completion-source-selector .completion-source-header .completion-source-info:hover svg path {
        fill: #3431ac; }
  .completion-source-selector .completion-source-radio-group {
    display: flex;
    flex-direction: row;
    gap: 24px; }
    .completion-source-selector .completion-source-radio-group .radio-cont {
      display: flex;
      align-items: center; }
      .completion-source-selector .completion-source-radio-group .radio-cont .radio-label {
        margin: 0 0 0 4px;
        font-size: 14px;
        color: #374151; }
  .completion-source-selector .cross-ats-hris-banner {
    margin-top: 12px; }

.reorder-instructions {
  margin-top: 12px; }

.interview-stage-container {
  display: flex;
  flex-direction: column;
  padding: 20px 0; }
  .interview-stage-container .stage-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    margin-bottom: 10px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    transition: all 0.15s ease; }
    .interview-stage-container .stage-item:hover {
      border-color: #d1d5db; }
    .interview-stage-container .stage-item.hidden-stage {
      opacity: 0.5; }
      .interview-stage-container .stage-item.hidden-stage .stage-text {
        text-decoration: line-through;
        color: #9ca3af; }
    .interview-stage-container .stage-item .stage-left {
      display: flex;
      align-items: center; }
      .interview-stage-container .stage-item .stage-left .stage-text {
        margin-left: 10px;
        font-size: 14px;
        font-weight: 500;
        color: #1a1a2e; }
    .interview-stage-container .stage-item .stage-right {
      display: flex;
      align-items: center; }
      .interview-stage-container .stage-item .stage-right .toggle-visibility-btn {
        background: none;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 4px;
        margin: 0;
        display: flex;
        align-items: center;
        border-radius: 6px;
        transition: background-color 0.15s ease; }
        .interview-stage-container .stage-item .stage-right .toggle-visibility-btn:hover {
          background-color: #f3f4f6; }
        .interview-stage-container .stage-item .stage-right .toggle-visibility-btn svg {
          width: 20px;
          height: 20px;
          fill: #9ca3af;
          transition: fill 0.15s ease; }
          .interview-stage-container .stage-item .stage-right .toggle-visibility-btn svg:hover {
            fill: #374151; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
/* Requires _mixins (for mui-outlined-input-autofill-reset) — import _mixins before this file. */
/* ─────────────────────────────────────────────────────────────
 *  Generic modern form — reusable across all settings / edit /
 *  create forms (jobs, departments, future entities).
 *
 *  BEM block:  .boon-form
 *
 *  Usage:
 *    <div class="boon-form">
 *      <div class="boon-form__card">
 *        <div class="boon-form__header">
 *          <div class="boon-form__header-icon">…</div>
 *          <div class="boon-form__header-main">
 *            <h1 class="boon-form__title">…</h1>
 *            <p  class="boon-form__subtitle">…</p>
 *          </div>
 *          <div class="boon-form__header-actions">…</div>
 *        </div>
 *        <div class="boon-form__body field-text-centered">
 *          …sections / fields…
 *        </div>
 *        <div class="boon-form__footer">…</div>
 *      </div>
 *    </div>
 * ───────────────────────────────────────────────────────────── */
/* ── Colour / size tokens ─── */
/* ── Root ─── */
.boon-form {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  box-sizing: border-box; }

/* ── Card shell ─── */
.boon-form__card {
  background: #ffffff;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  overflow: visible; }

/* ── Header ─── */
.boon-form__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid #f0f1f3;
  background: #fafbfc;
  border-radius: 12px 12px 0 0;
  flex-wrap: wrap; }

.boon-form__header-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #eeedfc 0%, #dddafa 100%);
  color: #3431ac;
  display: flex;
  align-items: center;
  justify-content: center; }

.boon-form__header-main {
  flex: 1 1 220px;
  min-width: 0; }

.boon-form__title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.4; }
  .boon-form__title--truncate {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }

.boon-form__subtitle {
  font-size: 13px;
  color: #6b7280;
  margin: 4px 0 0;
  line-height: 1.5;
  max-width: 560px; }

.boon-form__header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px; }
  @media (min-width: 640px) {
    .boon-form__header-actions {
      margin-top: 0;
      margin-left: auto; } }

/* ── Body ─── */
.boon-form__body {
  padding: 24px 28px 28px; }

/* ── Footer / actions row ─── */
.boon-form__footer {
  padding: 16px 28px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0f1f3; }
  .boon-form__footer > div {
    display: flex;
    align-items: center;
    gap: 16px; }
  .boon-form__footer .btn-primary,
  .boon-form__footer .boon-form__btn--primary {
    border-radius: 8px;
    font-weight: 600;
    padding: 10px 28px; }
  .boon-form__footer .btn-outline,
  .boon-form__footer .boon-form__btn--outline {
    border-radius: 8px; }
  .boon-form__footer .btn-text,
  .boon-form__footer .boon-form__btn--text {
    border-radius: 8px; }

/* ── Reset button (defaults forms) ─── */
.boon-form__btn--reset {
  text-transform: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  color: #374151 !important;
  border-color: #d1d5db !important;
  padding: 8px 16px !important; }
  .boon-form__btn--reset:hover {
    background: #f9fafb !important;
    border-color: #9ca3af !important; }

/* ───────────────────────────────────────────────────────────────
 *  Field-level normalisation — rows, MUI fields, react-select
 *  Scoped under .boon-form so rules match at any nesting depth.
 * ─────────────────────────────────────────────────────────────── */
.boon-form {
  /* ── Row layout ───
   * Beats: white-widget `.basic-info .row`, details-view `.row`,
   * and any other global .row rules.
   */
  /* ── Section (accordion) spacing ───
   * Single source of truth for vertical rhythm between sections.
   * Uses !important to beat makeStyles, white-widget mixin, and MUI defaults.
   */
  /* First section in the form body — no top margin */
  /* ── MUI outlined inputs ─── */
  /* ── Old react-select (single) ─── */
  /* ── Old react-select (multi, standard) ─── */
  /* ── Multi-select inline chips (not chips-below) ─── */
  /* ── Chips-below multi-select ─── */
  /* ── Redux select label ─── */
  /* ── Location autocomplete ─── */
  /* ── Salary range block ─── */
  /* ── Misc field overrides ─── */ }
  .boon-form .row,
  .boon-form .basic-info .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 16px !important;
    margin-bottom: 0 !important;
    display: block !important;
    width: 100%;
    max-width: 100%; }
    .boon-form .row:first-child,
    .boon-form .basic-info .row:first-child {
      margin-top: 0 !important; }
    .boon-form .row:last-of-type,
    .boon-form .basic-info .row:last-of-type {
      margin-top: 16px !important;
      margin-bottom: 0 !important; }
    .boon-form .row:first-child:last-of-type,
    .boon-form .basic-info .row:first-child:last-of-type {
      margin-top: 0 !important; }
    .boon-form .row > div[class*='col-'],
    .boon-form .row > div,
    .boon-form .basic-info .row > div[class*='col-'],
    .boon-form .basic-info .row > div {
      width: 100% !important;
      max-width: 100% !important;
      flex: none !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
      box-sizing: border-box; }
  .boon-form .MuiAccordion-root {
    margin-top: 16px !important;
    margin-bottom: 0 !important; }
  .boon-form .MuiAccordionSummary-root {
    margin-top: 0 !important; }
    .boon-form .MuiAccordionSummary-root.Mui-expanded {
      margin-bottom: 16px !important; }
  .boon-form .boon-form__body > .basic-info:first-child .MuiAccordion-root,
  .boon-form .boon-form__body > *:first-child .MuiAccordion-root {
    margin-top: 0 !important; }
  .boon-form .MuiFormControl-root,
  .boon-form .MuiTextField-root {
    width: 100%;
    max-width: 100%;
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .boon-form .MuiOutlinedInput-root {
    border-radius: 8px; }
  .boon-form .MuiOutlinedInput-notchedOutline {
    border-color: #d1d5db; }
  .boon-form .MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline {
    border-color: #9ca3af; }
  .boon-form .MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
    border-color: #3431ac;
    border-width: 1px; }
  .boon-form .MuiInputLabel-outlined {
    color: #6b7280; }
  .boon-form .MuiInputLabel-outlined.Mui-focused {
    color: #3431ac; }
  .boon-form .MuiOutlinedInput-input:-webkit-autofill, .boon-form .MuiOutlinedInput-input:-webkit-autofill:hover, .boon-form .MuiOutlinedInput-input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: #111827 !important;
    caret-color: #111827;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s; }
  .boon-form .details-widget-content .row > div {
    width: 100% !important;
    max-width: 100% !important; }
  .boon-form .field-text-centered .light.Select {
    width: 100%; }
  .boon-form .field-text-centered .light > .Select-control {
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: none !important;
    min-height: 40px !important;
    height: auto !important; }
    .boon-form .field-text-centered .light > .Select-control:hover {
      border-color: #9ca3af !important; }
  .boon-form .field-text-centered .light.is-focused > .Select-control,
  .boon-form .field-text-centered .light.is-open > .Select-control {
    border-color: #3431ac !important;
    border-width: 1px !important; }
  .boon-form .field-text-centered .light.Select--single > .Select-control .Select-placeholder {
    line-height: 38px !important;
    color: #959595 !important;
    opacity: 1 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    top: 0 !important; }
  .boon-form .field-text-centered .light.Select--single > .Select-control .Select-value {
    line-height: 38px !important; }
  .boon-form .field-text-centered .light.Select--single > .Select-control .Select-value-label {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #111827 !important; }
  .boon-form .field-text-centered .light.Select--single > .Select-control .Select-input > input {
    font-size: 14px !important; }
  .boon-form .Select-arrow {
    color: #959595 !important; }
  .boon-form .field-text-centered .light.multi > .Select-control {
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important;
    cursor: pointer !important; }
    .boon-form .field-text-centered .light.multi > .Select-control:hover {
      border-color: #9ca3af !important; }
    .boon-form .field-text-centered .light.multi > .Select-control > .Select-multi-value-wrapper > .Select-input {
      border: none !important; }
    .boon-form .field-text-centered .light.multi > .Select-control > .Select-arrow-zone {
      display: table-cell !important;
      cursor: pointer !important;
      padding-bottom: 0px !important; }
  .boon-form .field-text-centered .light.multi.is-focused > .Select-control,
  .boon-form .field-text-centered .light.multi.is-open > .Select-control {
    border-color: #3431ac !important; }
  .boon-form .field-text-centered
.redux-select-container:not(.redux-select-container--chips-below)
.light.multi.Select--multi
> .Select-control {
    min-height: 42px !important;
    height: auto !important;
    padding: 0px 10px 0px !important;
    align-items: flex-start !important; }
  .boon-form .field-text-centered
.redux-select-container:not(.redux-select-container--chips-below)
.light.multi
> .Select-control
> .Select-multi-value-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    align-content: center !important;
    gap: 6px 8px !important;
    margin: 0 !important;
    width: 100% !important; }
  .boon-form .field-text-centered
.redux-select-container:not(.redux-select-container--chips-below)
.light.multi
> .Select-control
> .Select-multi-value-wrapper
> .Select-value {
    order: 0 !important;
    margin: 0 !important;
    align-self: center;
    padding: 5px 34px 5px 12px !important;
    border-radius: 16px !important;
    border: 1px solid #3431ac !important;
    background-color: rgba(52, 49, 172, 0.06) !important; }
  .boon-form .field-text-centered
.redux-select-container:not(.redux-select-container--chips-below)
.light.multi
> .Select-control
> .Select-multi-value-wrapper
> .Select-value
.Select-value-label {
    font-size: 13px !important;
    line-height: 1.35 !important;
    color: #3431ac !important;
    font-weight: 500 !important;
    max-width: 36ch;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden; }
  .boon-form .field-text-centered
.redux-select-container:not(.redux-select-container--chips-below)
.light.multi
> .Select-control
> .Select-multi-value-wrapper
> .Select-value
.Select-value-icon {
    top: 50% !important;
    right: 8px !important;
    margin-top: -10px !important;
    width: 20px !important;
    height: 20px !important;
    line-height: 20px !important;
    padding: 0 !important; }
  .boon-form .field-text-centered
.redux-select-container:not(.redux-select-container--chips-below)
.light.multi
> .Select-control
> .Select-multi-value-wrapper
> .Select-input {
    order: 1 !important;
    width: auto !important;
    min-width: 80px !important;
    flex: 1 1 120px !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    align-self: center; }
  .boon-form .field-text-centered
.redux-select-container:not(.redux-select-container--chips-below)
.light.multi
> .Select-control
> .Select-multi-value-wrapper
> .Select-input
> input {
    line-height: 22px !important;
    padding: 4px 2px !important;
    height: auto !important;
    font-size: 14px !important; }
  .boon-form .field-text-centered
.redux-select-container:not(.redux-select-container--chips-below)
.light.multi
> .Select-control
> .Select-multi-value-wrapper
> .Select-placeholder {
    order: 1 !important;
    position: static !important;
    top: 2px !important;
    line-height: 22px !important;
    padding: 6px 4px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #959595 !important; }
  .boon-form .redux-select-container--chips-below .Select.Select--multi > .Select-control {
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important;
    cursor: pointer !important; }
    .boon-form .redux-select-container--chips-below .Select.Select--multi > .Select-control:hover {
      border-color: #9ca3af !important; }
    .boon-form .redux-select-container--chips-below .Select.Select--multi > .Select-control > .Select-multi-value-wrapper > .Select-input {
      border: none !important; }
  .boon-form .redux-select-container--chips-below .Select.Select--multi.is-focused > .Select-control,
  .boon-form .redux-select-container--chips-below .Select.Select--multi.is-open > .Select-control {
    border-color: #3431ac !important; }
  .boon-form .redux-select-container {
    position: relative;
    width: 100%;
    margin-top: 0; }
    .boon-form .redux-select-container .select-label {
      left: 10px;
      color: #6b7280;
      font-size: 12px;
      font-weight: 500;
      background: #fff;
      padding: 0 4px; }
    .boon-form .redux-select-container .select-label.focused {
      color: #3431ac; }
  .boon-form .location-select-container {
    width: 100%;
    margin-top: 0; }
  .boon-form .job_Salary_range_block {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 12px 16px;
    width: 100%;
    margin-top: 16px !important;
    margin-bottom: 0px !important; }
    .boon-form .job_Salary_range_block .MuiFormControl-root {
      flex: 1 1 200px;
      width: auto !important;
      max-width: none !important;
      padding-right: 0 !important;
      margin-top: 0 !important; }
      .boon-form .job_Salary_range_block .MuiFormControl-root .MuiOutlinedInput-root {
        min-height: 40px; }
      .boon-form .job_Salary_range_block .MuiFormControl-root .MuiOutlinedInput-input {
        padding: 10.5px 14px; }
    .boon-form .job_Salary_range_block .currency-controls-cont {
      display: flex;
      flex-direction: row;
      align-items: flex-end;
      gap: 10px;
      flex: 1 1 220px;
      width: auto !important;
      min-width: 0; }
      .boon-form .job_Salary_range_block .currency-controls-cont .redux-select-container {
        flex: 1 1 120px;
        width: auto !important;
        min-width: 100px;
        max-width: 160px;
        padding-right: 0 !important; }
    .boon-form .job_Salary_range_block .icons-block {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 8px;
      flex: 0 0 auto;
      padding-bottom: 2px; }
      .boon-form .job_Salary_range_block .icons-block .salary-privacy-btn {
        border-radius: 8px;
        border: 1px solid #d1d5db; }
  .boon-form .ck-editor {
    margin-top: 0; }
  .boon-form .rules-suggestions-edit {
    margin-top: 0 !important;
    padding-top: 4px;
    width: 100%; }

/* ── Full-width accordion blocks ─── */
.boon-form .basic-info,
.boon-form .MuiAccordion-root {
  width: 100%;
  max-width: 100%; }

/* ── Section dividers (wrapper between accordion blocks) ───
 * Neutralise both wrapper classes so .MuiAccordion-root margin-top
 * is the single source of spacing between sections.
 */
.boon-form .boon-form__section-divider,
.boon-form .openings-section-seperator {
  border-top: none !important;
  padding: 0 !important;
  margin: 0 !important; }

/* ── Inline loader ─── */
.boon-form__loader {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 320px;
  padding: 48px 24px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e8eaed;
  border-radius: 12px; }
  .boon-form__loader .loading-component {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: auto !important;
    height: auto !important;
    min-height: 14px;
    z-index: 1;
    background: transparent !important; }

/* Matches Tracker → Settings card titles (e.g. `.tracker-settings-card__heading`) */
.openings-settings {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 48px;
  box-sizing: border-box;
  color: #1a1a2e;
  /* Subsection titles inside cards (not the gray uppercase section labels) */
  /* Strengthen referral / application question cards */ }
  .openings-settings .general-settings {
    padding: 24px 28px 28px;
    background: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 12px;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 0; }
    .openings-settings .general-settings .url-container {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-end;
      width: 100%;
      gap: 8px 4px; }
      .openings-settings .general-settings .url-container .permanent-text {
        font-size: 14px;
        line-height: 16px;
        margin: 22px 5px 0px 0px; }
      .openings-settings .general-settings .url-container .url-input {
        flex: 1;
        min-width: 0;
        max-width: 100%; }
        .openings-settings .general-settings .url-container .url-input label {
          color: #959595; }
    .openings-settings .general-settings .slack-bot-add {
      display: flex;
      align-items: center;
      gap: 5px; }
      .openings-settings .general-settings .slack-bot-add img {
        width: 20px; }
    .openings-settings .general-settings .url-helper-text {
      font-size: 14px;
      line-height: 1.5;
      margin: 8px 0 20px;
      color: #6b7280;
      font-style: italic;
      letter-spacing: 0; }
    .openings-settings .general-settings .integration-buttons-container {
      display: flex;
      gap: 5px; }
      .openings-settings .general-settings .integration-buttons-container .lever-import-btn {
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
        max-width: 170px; }
        .openings-settings .general-settings .integration-buttons-container .lever-import-btn .svg {
          margin-right: 6px; }
    .openings-settings .general-settings .sync-heading {
      font-weight: 700;
      font-size: 14px;
      line-height: 16px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #959595;
      margin: 0 0 16px;
      padding-bottom: 0; }
      .openings-settings .general-settings .sync-heading p {
        margin: 0; }
    .openings-settings .general-settings .sync-button {
      width: 100%;
      height: 65px;
      color: #3431ac;
      text-transform: none;
      border: 1px solid #e8eaed;
      border-radius: 8px; }
      .openings-settings .general-settings .sync-button:hover {
        border: 1px dashed #3431ac; }
    .openings-settings .general-settings .mapping-info-content {
      display: flex;
      align-items: center;
      padding-left: 12px;
      padding-right: 12px;
      gap: 10px;
      border-radius: 8px;
      margin-top: 8px;
      min-height: 36px;
      background-color: #f3f4f6;
      color: #6b7280; }
      .openings-settings .general-settings .mapping-info-content p {
        margin: unset; }
    .openings-settings .general-settings .sync-structure-content {
      display: flex;
      flex-direction: column;
      border-radius: 10px;
      border: 1px solid #e8eaed;
      overflow: hidden; }
      .openings-settings .general-settings .sync-structure-content p {
        margin: unset; }
    .openings-settings .general-settings .sync-structure {
      display: flex;
      gap: 13px;
      padding: 15px 20px 15px 20px; }
      .openings-settings .general-settings .sync-structure .sync-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex-grow: 1;
        row-gap: 4px; }
      .openings-settings .general-settings .sync-structure .sync-content-heading {
        font-weight: 500;
        font-size: 14px; }
      .openings-settings .general-settings .sync-structure .sync-content-subheading {
        font-weight: 400;
        font-size: 14px;
        line-height: 1.45;
        color: #6b7280; }
      .openings-settings .general-settings .sync-structure .sync-edit-btn {
        border-radius: 8px;
        border: 1px solid #e8eaed;
        padding-left: 10px;
        padding-right: 10px;
        color: #374151;
        text-transform: none;
        font-weight: 500;
        font-size: 14px; }
        .openings-settings .general-settings .sync-structure .sync-edit-btn .edit-icon {
          padding-right: 5px; }
        .openings-settings .general-settings .sync-structure .sync-edit-btn .edit-btn-content {
          display: flex;
          align-items: center; }
    .openings-settings .general-settings .replace-button {
      padding: 15px 20px 15px 20px;
      text-align: start;
      border-top: 1px solid #f0f1f3;
      font-weight: 600;
      font-size: 14px;
      color: #3431ac;
      font-family: Roboto, sans-serif; }
      .openings-settings .general-settings .replace-button:hover {
        cursor: pointer; }
    .openings-settings .general-settings .email-sync-container {
      padding-top: 22px; }
  .openings-settings h3:not(.public-referral-heading) {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 0px !important;
    color: #1a1a2e; }
  .openings-settings .referral-form-settings {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border: 1px solid #e8eaed;
    border-radius: 12px;
    box-shadow: none !important;
    overflow: hidden;
    padding: 24px 28px 28px; }
    .openings-settings .referral-form-settings .refer-form-bottom-border {
      display: none; }
    .openings-settings .referral-form-settings .section-container {
      display: flex !important;
      flex-direction: row !important;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px 24px;
      padding: 12px 0 !important;
      border: none !important;
      margin: 0;
      width: 100%;
      box-sizing: border-box; }
    .openings-settings .referral-form-settings .labels-cont {
      flex: 1;
      min-width: 0;
      width: auto !important;
      max-width: none; }
      .openings-settings .referral-form-settings .labels-cont .label {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.35;
        color: #1a1a2e;
        margin: 0 0 4px;
        width: 100% !important; }
      .openings-settings .referral-form-settings .labels-cont .sub-label {
        margin: 0;
        font-size: 14px;
        line-height: 1.45;
        color: #6b7280;
        font-weight: 400; }
    .openings-settings .referral-form-settings .notification-controls {
      flex-shrink: 0;
      margin-top: 2px; }
    .openings-settings .referral-form-settings .referral-p {
      margin: 24px 0 0;
      padding-top: 0;
      border: none;
      font-size: 14px;
      line-height: 1.5;
      color: #6b7280; }
  .openings-settings .notification-settings-cont.strength-questions,
  .openings-settings .notification-settings-cont.application-strength-questions {
    margin-bottom: 0 !important;
    margin-top: 0px !important;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 12px;
    box-shadow: none !important;
    padding: 24px 28px 28px; }
    .openings-settings .notification-settings-cont.strength-questions > .section-container:first-child,
    .openings-settings .notification-settings-cont.application-strength-questions > .section-container:first-child {
      align-items: center;
      padding-top: 0 !important;
      margin-top: 0 !important; }
      .openings-settings .notification-settings-cont.strength-questions > .section-container:first-child .labels-cont .label,
      .openings-settings .notification-settings-cont.application-strength-questions > .section-container:first-child .labels-cont .label {
        font-weight: 700;
        font-size: 14px;
        line-height: 16px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #959595;
        margin: 0 0 16px;
        margin-bottom: 0; }
      .openings-settings .notification-settings-cont.strength-questions > .section-container:first-child .labels-cont .sub-label:empty,
      .openings-settings .notification-settings-cont.application-strength-questions > .section-container:first-child .labels-cont .sub-label:empty {
        display: none;
        margin: 0; }
    .openings-settings .notification-settings-cont.strength-questions .section-container,
    .openings-settings .notification-settings-cont.application-strength-questions .section-container {
      display: flex !important;
      flex-direction: row !important;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px 24px;
      border: none !important;
      padding: 12px 0 !important;
      margin: 0;
      width: 100%;
      box-sizing: border-box; }
    .openings-settings .notification-settings-cont.strength-questions .labels-cont,
    .openings-settings .notification-settings-cont.application-strength-questions .labels-cont {
      flex: 1;
      min-width: 0;
      width: auto !important;
      max-width: none; }
      .openings-settings .notification-settings-cont.strength-questions .labels-cont .label,
      .openings-settings .notification-settings-cont.application-strength-questions .labels-cont .label {
        width: 100% !important; }
        .openings-settings .notification-settings-cont.strength-questions .labels-cont .label:empty,
        .openings-settings .notification-settings-cont.application-strength-questions .labels-cont .label:empty {
          display: none;
          margin: 0;
          padding: 0; }
      .openings-settings .notification-settings-cont.strength-questions .labels-cont .sub-label,
      .openings-settings .notification-settings-cont.application-strength-questions .labels-cont .sub-label {
        margin: 4px 0 0;
        font-size: 14px;
        line-height: 1.45;
        color: #6b7280;
        font-weight: 400; }
        .openings-settings .notification-settings-cont.strength-questions .labels-cont .sub-label:empty,
        .openings-settings .notification-settings-cont.application-strength-questions .labels-cont .sub-label:empty {
          display: none;
          margin: 0; }
      .openings-settings .notification-settings-cont.strength-questions .labels-cont .label:empty ~ .sub-label,
      .openings-settings .notification-settings-cont.application-strength-questions .labels-cont .label:empty ~ .sub-label {
        margin-top: 0;
        color: #374151; }
    .openings-settings .notification-settings-cont.strength-questions .notification-controls,
    .openings-settings .notification-settings-cont.application-strength-questions .notification-controls {
      flex-shrink: 0;
      align-self: center; }
    .openings-settings .notification-settings-cont.strength-questions .ask-ref-provider,
    .openings-settings .notification-settings-cont.application-strength-questions .ask-ref-provider {
      margin: 8px 0 4px;
      padding: 0;
      font-size: 14px;
      line-height: 1.5;
      color: #6b7280;
      font-weight: 400;
      border: none; }
    .openings-settings .notification-settings-cont.strength-questions .temp,
    .openings-settings .notification-settings-cont.application-strength-questions .temp {
      margin: 0 !important; }
      .openings-settings .notification-settings-cont.strength-questions .temp .section-container,
      .openings-settings .notification-settings-cont.application-strength-questions .temp .section-container {
        align-items: center;
        padding: 6px 0 !important; }
        .openings-settings .notification-settings-cont.strength-questions .temp .section-container .labels-cont .sub-label,
        .openings-settings .notification-settings-cont.application-strength-questions .temp .section-container .labels-cont .sub-label {
          color: #374151;
          font-size: 14px;
          font-weight: 500; }
  .openings-settings .enable-referral-setting {
    display: flex;
    align-items: center;
    padding-top: 10px;
    margin-bottom: 0; }
    .openings-settings .enable-referral-setting .general-refferal-container {
      width: 100%; }
    .openings-settings .enable-referral-setting .general-referral-heading {
      font-weight: 700;
      font-size: 14px;
      line-height: 16px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #959595;
      margin: 0 0 16px; }
  .openings-settings p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 16px;
    color: #374151; }
    .openings-settings p.provider-text {
      margin-top: 20px;
      margin-bottom: 10px; }
    .openings-settings p .import-link {
      color: #3431ac; }
  .openings-settings .label {
    font-size: 14px;
    line-height: 1.45;
    color: #6b7280;
    margin-bottom: 16px; }
  .openings-settings .menu-container {
    flex: 0 0 auto;
    width: 240px;
    min-width: 200px;
    padding: 0; }
    .openings-settings .menu-container .mobile-view {
      display: none; }
    .openings-settings .menu-container .desktop-view {
      display: block; }
  .openings-settings .settings-container {
    flex: 1;
    min-width: 0;
    padding: 0;
    width: 100%;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: stretch; }
    .openings-settings .settings-container .details-info {
      padding-top: 0; }
      .openings-settings .settings-container .details-info .actions-container {
        justify-content: flex-end; }
  .openings-settings .MuiFormControl-root .MuiOutlinedInput-inputMarginDense {
    padding-top: 11.7px;
    padding-bottom: 11.7px; }
  .openings-settings .job_Salary_range_block .MuiFormControl-root .MuiInputBase-root input {
    height: 15.5px; }
  .openings-settings .MuiInputAdornment-root {
    margin-right: 0; }
    .openings-settings .MuiInputAdornment-root p {
      margin-bottom: 0;
      font-size: 14px;
      line-height: 24px;
      color: #6b7280; }
  .openings-settings .MuiInputBase-input {
    font-size: 14px;
    line-height: 24px; }
  .openings-settings .MuiFormHelperText-root {
    font-style: italic;
    font-size: 14px;
    line-height: 1.45;
    color: #6b7280; }
  .openings-settings .general_referrals {
    color: #3431ac; }
  .openings-settings .referral-checkbox {
    position: absolute;
    opacity: 0;
    margin: 0;
    width: 18px;
    height: 18px; }
    .openings-settings .referral-checkbox + label {
      position: relative;
      cursor: pointer;
      padding: 0;
      font-size: 14px; }
    .openings-settings .referral-checkbox + label:before {
      content: '';
      display: inline-block;
      vertical-align: text-top;
      width: 18px;
      height: 18px;
      background: white;
      border: 1px solid rgba(0, 0, 0, 0.3);
      border-radius: 4px;
      margin-right: 15px; }
    .openings-settings .referral-checkbox:checked + label:before {
      background: #3431ac;
      border-color: #3431ac; }
    .openings-settings .referral-checkbox:checked + label:after {
      content: '';
      position: absolute;
      left: 5px;
      top: 9px;
      background: white;
      width: 2px;
      height: 2px;
      box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
      transform: rotate(45deg); }
  .openings-settings .ownership-period-cont {
    margin-top: 20px; }
  .openings-settings .period-selector {
    display: flex;
    align-items: center; }
    .openings-settings .period-selector .MuiTextField-root {
      margin-top: 0px !important; }
    .openings-settings .period-selector p {
      margin-bottom: 0;
      margin-right: 24px; }
    .openings-settings .period-selector .period-selector {
      max-width: 95px;
      margin-right: 13.5px; }
    .openings-settings .period-selector .unit-selector {
      width: 155px; }
      .openings-settings .period-selector .unit-selector .MuiInputLabel-formControl {
        font-size: 14px;
        line-height: 24px;
        color: #444444; }
      .openings-settings .period-selector .unit-selector .MuiInputLabel-marginDense {
        transform: translate(17px, 8px) scale(1); }
      .openings-settings .period-selector .unit-selector .MuiInputLabel-shrink {
        transform: translate(14px, -8.5px) scale(0.75); }
      .openings-settings .period-selector .unit-selector .MuiFormLabel-root.Mui-focused {
        color: #3431ac; }
      .openings-settings .period-selector .unit-selector .MuiSelect-select {
        font-size: 14px;
        line-height: 24px;
        padding-top: 8px;
        padding-bottom: 8px; }
  .openings-settings .submit-container {
    margin-top: 24px;
    text-align: end; }
    .openings-settings .submit-container .MuiButtonBase-root {
      background: #3431ac;
      border-radius: 8px;
      padding: 10px 28px;
      box-shadow: none; }
      .openings-settings .submit-container .MuiButtonBase-root span {
        color: #ffffff;
        font-weight: 600;
        font-size: 14px;
        line-height: 1.25;
        text-transform: none; }
    .openings-settings .submit-container button:disabled {
      background-color: #e5e7eb; }
      .openings-settings .submit-container button:disabled span {
        color: #9ca3af; }

@media (max-width: 540px) {
  .openings-settings {
    padding: 16px 16px 32px;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: none; }
    .openings-settings .menu-container {
      width: 100%;
      min-width: 0;
      padding: 0; }
      .openings-settings .menu-container .openings-menu {
        border-radius: 12px; }
        .openings-settings .menu-container .openings-menu .desktop-view {
          display: none; }
        .openings-settings .menu-container .openings-menu .mobile-view {
          display: block; }
        .openings-settings .menu-container .openings-menu ul li[tabindex='-1'] {
          display: none; }
    .openings-settings .settings-container {
      width: 100%;
      padding: 0;
      max-width: none; }
      .openings-settings .settings-container .details-info {
        padding: 0 0 20px; }
    .openings-settings .notification-settings-cont.strength-questions .section-container,
    .openings-settings .notification-settings-cont.application-strength-questions .section-container,
    .openings-settings .referral-form-settings .section-container {
      flex-wrap: wrap;
      margin-top: 0px !important; }
      .openings-settings .notification-settings-cont.strength-questions .section-container .notification-controls,
      .openings-settings .notification-settings-cont.application-strength-questions .section-container .notification-controls,
      .openings-settings .referral-form-settings .section-container .notification-controls {
        margin-left: auto; } }

/* ─── Defaults-form overrides (only what differs from .boon-form) ─── */
.defaults-form {
  padding: 0 0 48px; }
  .defaults-form .settings-block-plain {
    width: 100%;
    margin: 0;
    padding: 0; }
  .defaults-form .settings-block-plain__title {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    color: #959595;
    margin: 0 0 16px;
    padding: 0;
    letter-spacing: 1px; }

/* Kept for backward compatibility — DepartmentSettings loading state */
.openings-settings-inline-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 320px;
  padding: 48px 24px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e8eaed;
  border-radius: 12px; }
  .openings-settings-inline-loader .loading-component {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: auto !important;
    height: auto !important;
    min-height: 14px;
    z-index: 1;
    background: transparent !important; }

.openings-settings-overlay-loading {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 12px;
  min-height: 200px; }
  .openings-settings-overlay-loading .loading-component {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: auto !important;
    height: auto !important;
    z-index: 1;
    background: transparent !important; }

.department-edit .general-settings-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-left: 0;
  gap: 20px; }
  .department-edit .general-settings-container > .openings-settings-overlay-loading,
  .department-edit .general-settings-container > .general-settings,
  .department-edit .general-settings-container > .settings,
  .department-edit .general-settings-container > .general_referral_settings_cont,
  .department-edit .general-settings-container > .submit-container {
    width: 100%;
    max-width: 100%;
    align-self: stretch;
    box-sizing: border-box; }
  .department-edit .general-settings-container h3.public-referral-heading,
  .department-edit .general-settings-container p.public-referral-heading {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #959595;
    margin: 0 0 16px; }
  .department-edit .general-settings-container .public-referral-cont {
    display: flex;
    align-items: start; }
    .department-edit .general-settings-container .public-referral-cont svg {
      color: #969696;
      height: 13px; }
  .department-edit .general-settings-container .info-image {
    height: 13px; }
  .department-edit .general-settings-container .public-referral-paragraph {
    font-size: 14px;
    line-height: 1.5;
    color: #374151; }

/* General settings tab: stack referral / strength / application blocks with even spacing */
.openings-settings .department-edit .general-settings-container > .settings {
  display: flex;
  flex-direction: column;
  gap: 20px; }

.openings-settings .department-edit .general-settings-container > .submit-container {
  margin-top: 0; }

.referral-checkbox-parent {
  padding-top: 10px; }

.generalSettingsParent ul {
  list-style: none; }
  .generalSettingsParent ul li:first-child {
    font-size: 16px;
    font-weight: 400;
    margin: 30px 0px 10px 0px; }
  .generalSettingsParent ul li {
    font-size: 16px;
    font-weight: 400;
    margin: 8px 0px 0px 0px; }
    .generalSettingsParent ul li span {
      text-decoration: underline; }
    .generalSettingsParent ul li span:last-child {
      font-style: italic;
      text-decoration: none; }
  .generalSettingsParent ul li:last-child {
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    color: #959595;
    margin-top: 20px; }

.general_referral_settings_cont {
  margin-top: 0;
  border-radius: 12px;
  border: 1px solid #e8eaed;
  background: #fff;
  box-shadow: none;
  padding: 22px 28px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box; }
  .general_referral_settings_cont .section-heading {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #959595;
    margin: 0 0 16px; }
  .general_referral_settings_cont .heading {
    color: #1a1a2e;
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px; }
  .general_referral_settings_cont .text {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 10px; }
  .general_referral_settings_cont .controls-cont {
    display: flex;
    justify-content: space-between;
    gap: 20px; }
  .general_referral_settings_cont .frequency-cont {
    display: flex;
    gap: 10px;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content; }
    .general_referral_settings_cont .frequency-cont p {
      margin: 0; }
    .general_referral_settings_cont .frequency-cont .MuiTextField-root {
      margin-top: 0px !important; }
  .general_referral_settings_cont .period-selector {
    max-width: 97px; }
  .general_referral_settings_cont .divider {
    width: 100%;
    height: 1px;
    background-color: #f0f1f3; }

.openings-general-settings-root {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-bottom: 100px;
  box-sizing: border-box; }

.openings-settings-unsaved-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background-color: #e3f2fd;
  border: 1px solid #90caf9;
  border-radius: 10px;
  font-size: 14px;
  color: #1976d2;
  margin-bottom: 20px;
  box-sizing: border-box; }
  .openings-settings-unsaved-banner__icon {
    font-size: 20px;
    color: #1976d2;
    flex-shrink: 0; }

.openings-settings-sticky-actions {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  margin-top: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
  z-index: 10; }

.openings-settings-cancel-btn {
  background: #ffffff;
  color: #374151;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s; }
  .openings-settings-cancel-btn:hover {
    background: #f3f4f6;
    border-color: #9ca3af; }

.openings-settings-save-btn {
  background: #3431ac;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s; }
  .openings-settings-save-btn:hover:not(:disabled) {
    background: #2a2890; }
  .openings-settings-save-btn:disabled {
    background-color: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed; }

/* Modal content is portaled; keep rules at file root (same pattern as NotificationSettings). */
.unsave_changes_modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }

.minimize-line-space {
  text-align: center; }
.merge-root {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 24px 60px; }
  .merge-root__wrapper {
    width: 100%;
    max-width: 720px;
    margin-top: 24px; }
  .merge-root__card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px 28px;
    margin-top: 16px; }
  .merge-root__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3f4f6; }
  .merge-root__title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.4; }
  .merge-root__notice {
    padding-top: 16px; }
  .merge-root__notice-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 6px; }
  .merge-root__notice-text {
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    margin: 0;
    line-height: 1.5; }
  .merge-root__section-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 6px; }
  .merge-root__section-desc {
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    margin: 0;
    line-height: 1.5; }
    .merge-root__section-desc strong {
      color: #374151;
      font-weight: 600; }
  .merge-root__divider {
    height: 1px;
    background: #f3f4f6;
    margin: 20px 0; }
  .merge-root__step {
    display: flex;
    align-items: flex-start;
    gap: 14px; }
  .merge-root__step-number {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: #eef0fb;
    color: #3431ac;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center; }
  .merge-root__step-body {
    flex: 1;
    min-width: 0; }
  .merge-root__step-label {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 4px;
    line-height: 1.4; }
  .merge-root__step-desc {
    font-size: 13px;
    font-weight: 400;
    color: #6b7280;
    margin: 0;
    line-height: 1.5; }
  .merge-root .authorize-btn {
    border: 1px solid #d1d5db !important;
    border-radius: 8px;
    font-weight: 500;
    font-size: 13px;
    color: #6b7280;
    padding: 8px 14px;
    display: flex;
    cursor: not-allowed;
    align-items: center;
    gap: 8px;
    transition: all 0.2s; }
    .merge-root .authorize-btn img {
      width: 18px; }
  .merge-root .success-message {
    color: #374151;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0; }
.dayforce-root {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 50px; }
  .dayforce-root .content-wrapper {
    margin-top: 30px;
    width: 100%;
    max-width: 650px; }
  .dayforce-root .content {
    background-color: white;
    width: 100%;
    padding: 20px;
    border-radius: 7px;
    margin-top: 20px; }
  .dayforce-root .warning-cont {
    padding: 20px 0px; }
  .dayforce-root .warning-heading {
    font-weight: 700;
    font-size: 20px;
    color: #444444;
    margin-top: 0;
    margin-bottom: 10px; }
  .dayforce-root .heading {
    font-weight: 700;
    font-size: 20px;
    color: #444444;
    margin: 0; }
  .dayforce-root .divider {
    height: 1px;
    width: 100%;
    background-color: #e8e8e8; }
  .dayforce-root .head-cont {
    display: flex;
    align-items: center;
    margin-bottom: 10px; }
  .dayforce-root .mapping-wrapper {
    margin-top: 30px; }
  .dayforce-root .step-cont {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 40px; }
  .dayforce-root .step-num {
    background: #f9f9f9;
    border: 1px solid #eeeeee;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    min-width: 22px;
    font-size: 12px;
    color: black; }
  .dayforce-root .step-heading {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
    margin-bottom: 10px; }
  .dayforce-root .step-text {
    font-size: 14px;
    color: #000000;
    margin: 0; }
  .dayforce-root .template-cont {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px;
    margin-top: 20px; }
  .dayforce-root .template-text {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.15px;
    color: #959595;
    margin: 0; }
  .dayforce-root .btn-cont {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end; }
  .dayforce-root .copy-btn {
    color: #646d69;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    width: 180px;
    height: 35px; }
    .dayforce-root .copy-btn svg {
      margin-right: 6px; }
  .dayforce-root .help {
    margin: 20px 0px; }
  .dayforce-root .cancel-btn {
    font-weight: 500;
    font-size: 14px;
    color: #3431AC;
    border: 1px solid #f1f1f1;
    border-radius: 4px;
    width: 160px;
    height: 40px;
    margin-right: 15px; }
  .dayforce-root .save-btn {
    width: 160px;
    height: 40px;
    color: #3431AC !important;
    background-color: white;
    color: white;
    border: 1px solid #3431AC; }
    .dayforce-root .save-btn:disabled {
      color: #b6b6b6 !important;
      border-color: #e9e9e9; }
    .dayforce-root .save-btn:hover {
      opacity: 0.9; }
  .dayforce-root .disable-section {
    background-color: white;
    padding: 20px 30px;
    border-radius: 4px;
    margin-top: 20px; }
  .dayforce-root .mapping-cont {
    margin: 20px 0; }
  .dayforce-root .instructions-cont {
    margin-bottom: 20px; }
    .dayforce-root .instructions-cont .heading {
      margin-bottom: 10px; }
  .dayforce-root .top-content {
    padding-top: 10px; }
.data-sync-container .step-head-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px; }

.data-sync-container .step-info-cont {
  display: flex;
  align-items: center;
  gap: 14px; }

.data-sync-container .step {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: #eef0fb;
  color: #3431ac;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center; }

.data-sync-container .data-sync-heading {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a2e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1.4; }

.data-sync-container .force-resync-btn {
  text-transform: none;
  font-weight: 500;
  font-size: 13px;
  color: #3431ac;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 5px 14px;
  display: flex;
  gap: 6px;
  align-items: center;
  transition: all 0.2s; }
  .data-sync-container .force-resync-btn:hover {
    background: #eef0fb;
    border-color: #3431ac; }
  .data-sync-container .force-resync-btn:disabled {
    color: #9ca3af;
    border-color: #e5e7eb;
    cursor: not-allowed; }
  .data-sync-container .force-resync-btn svg {
    font-size: 16px; }

.data-sync-container .data-model-sync-container {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 8px;
  margin-left: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  transition: border-color 0.2s; }
  .data-sync-container .data-model-sync-container:hover {
    border-color: #d1d5db; }

.data-sync-container .data-model-left-cont {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%; }

.data-sync-container .sync-status-icon-container {
  min-width: 34px;
  min-height: 34px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center; }

.data-sync-container .sync-info-heading {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  color: #374151;
  margin: 0 0 4px; }

.data-sync-container .sync-info-time {
  font-size: 12px;
  line-height: 1.4;
  color: #9ca3af;
  margin: 0; }

.data-sync-container .edit-mapping-btn-container {
  margin-left: auto;
  flex-shrink: 0; }

.data-sync-container .edit-mapping-btn {
  padding: 4px 12px;
  height: auto;
  border: 1px solid #d1d5db;
  color: #374151;
  text-transform: none;
  font-weight: 500;
  border-radius: 8px;
  font-size: 13px;
  transition: all 0.2s; }
  .data-sync-container .edit-mapping-btn:hover {
    border-color: #3431ac;
    color: #3431ac;
    background: #eef0fb; }
  .data-sync-container .edit-mapping-btn .btn-content {
    display: flex;
    gap: 6px;
    align-items: center; }

.data-sync-container .edit-mapping-btn-warning {
  color: #d97706;
  border-color: #fbbf24; }
  .data-sync-container .edit-mapping-btn-warning:hover {
    background: #fffbeb;
    border-color: #d97706; }

.data-sync-container .mapping-warning-container {
  font-size: 13px;
  color: #6b7280;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  margin-left: 40px; }

.data-sync-container .info-icon {
  height: 14px;
  width: 14px;
  flex-shrink: 0; }

.data-sync-container .button-wrapper {
  display: inline-block; }

.data-sync-container .disabled {
  cursor: unset; }
  .data-sync-container .disabled p {
    color: #d1d5db; }
  .data-sync-container .disabled svg path {
    fill: #d1d5db; }

.data-sync-container .sync-icon-animated {
  animation: rotating 2s linear infinite; }

.data-sync-container .sync-schedule-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #787878;
  margin: 8px 0 0 0;
  font-weight: 400; }
  .data-sync-container .sync-schedule-info .sync-schedule-icon {
    font-size: 16px;
    color: #959595; }

@keyframes rotating {
  from {
    transform: rotate(360deg); }
  to {
    transform: rotate(0deg); } }

@keyframes sync-shimmer {
  0% {
    background-position: -200px 0; }
  100% {
    background-position: calc(200px + 100%) 0; } }

.sync-skeleton {
  pointer-events: none; }
  .sync-skeleton__step {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
    background-size: 200px 100%;
    animation: sync-shimmer 1.4s ease infinite; }
  .sync-skeleton__heading {
    width: 220px;
    height: 16px;
    border-radius: 6px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
    background-size: 200px 100%;
    animation: sync-shimmer 1.4s ease infinite; }
  .sync-skeleton__btn {
    width: 120px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
    background-size: 200px 100%;
    animation: sync-shimmer 1.4s ease infinite; }
  .sync-skeleton__icon {
    min-width: 34px;
    min-height: 34px;
    border-radius: 8px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
    background-size: 200px 100%;
    animation: sync-shimmer 1.4s ease infinite; }
  .sync-skeleton__title {
    width: 180px;
    height: 14px;
    border-radius: 4px;
    margin-bottom: 6px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
    background-size: 200px 100%;
    animation: sync-shimmer 1.4s ease infinite; }
  .sync-skeleton__subtitle {
    width: 240px;
    height: 12px;
    border-radius: 4px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
    background-size: 200px 100%;
    animation: sync-shimmer 1.4s ease infinite; }
.clearcompany-root {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 50px; }
  .clearcompany-root .content-wrapper {
    margin-top: 30px;
    width: 100%;
    max-width: 650px; }
  .clearcompany-root .content {
    background-color: white;
    width: 100%;
    padding: 20px;
    border-radius: 7px;
    margin-top: 20px; }
  .clearcompany-root .warning-cont {
    padding: 20px 0px; }
  .clearcompany-root .warning-heading {
    font-weight: 700;
    font-size: 20px;
    color: #444444;
    margin-top: 0;
    margin-bottom: 10px; }
  .clearcompany-root .heading {
    font-weight: 700;
    font-size: 20px;
    color: #444444;
    margin: 0; }
  .clearcompany-root .divider {
    height: 1px;
    width: 100%;
    background-color: #e8e8e8; }
  .clearcompany-root .head-cont {
    display: flex;
    align-items: center;
    margin-bottom: 10px; }
  .clearcompany-root .mapping-wrapper {
    margin: 20px 0; }
  .clearcompany-root .step-cont {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px; }
  .clearcompany-root .step-num {
    background: #f9f9f9;
    border: 1px solid #eeeeee;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    min-width: 22px;
    font-size: 12px;
    color: black; }
  .clearcompany-root .step-heading {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
    margin-bottom: 10px; }
  .clearcompany-root .step-text {
    font-size: 14px;
    color: #000000;
    margin: 0; }
  .clearcompany-root .template-cont {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px;
    margin-top: 20px; }
  .clearcompany-root .template-text {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.15px;
    color: #959595;
    margin: 0; }
  .clearcompany-root .btn-cont {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-end; }
  .clearcompany-root .copy-btn {
    color: #646d69;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    width: 180px;
    height: 35px; }
    .clearcompany-root .copy-btn svg {
      margin-right: 6px; }
  .clearcompany-root .help {
    margin: 20px 0px; }
  .clearcompany-root .cancel-btn {
    font-weight: 500;
    font-size: 14px;
    color: #3431AC;
    border: 1px solid #f1f1f1;
    border-radius: 4px;
    width: 160px;
    height: 40px;
    margin-right: 15px; }
  .clearcompany-root .save-btn {
    width: 160px;
    height: 40px;
    color: #3431AC !important;
    background-color: white;
    color: white;
    border: 1px solid #3431AC; }
    .clearcompany-root .save-btn:disabled {
      color: #b6b6b6 !important;
      border-color: #e9e9e9; }
    .clearcompany-root .save-btn:hover {
      opacity: 0.9; }
  .clearcompany-root .disable-section {
    background-color: white;
    padding: 20px 30px;
    border-radius: 4px;
    margin-top: 20px; }
  .clearcompany-root .instructions-cont {
    margin-bottom: 20px; }
    .clearcompany-root .instructions-cont .heading {
      margin-bottom: 10px; }
  .clearcompany-root .step-content-cont {
    width: 88%; }
  .clearcompany-root .top-content {
    padding-top: 20px; }
.jobvite-root {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 50px; }
  .jobvite-root .content-wrapper {
    margin-top: 30px;
    width: 100%;
    max-width: 650px; }
  .jobvite-root .content {
    background-color: white;
    width: 100%;
    padding: 20px;
    border-radius: 7px;
    margin-top: 20px;
    padding-top: 10px; }
  .jobvite-root .heading {
    font-weight: 700;
    font-size: 20px;
    color: #444444;
    margin: 0; }
  .jobvite-root .divider {
    height: 1px;
    width: 100%;
    background-color: #e8e8e8; }
  .jobvite-root .head-cont {
    display: flex;
    align-items: center;
    margin-bottom: 10px; }
  .jobvite-root .mapping-wrapper {
    margin-top: 30px; }
  .jobvite-root .step-cont {
    display: flex;
    gap: 20px;
    margin-top: 20px; }
  .jobvite-root .step-num {
    background: #f9f9f9;
    border: 1px solid #eeeeee;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    min-width: 22px;
    font-size: 12px;
    color: black; }
  .jobvite-root .step-heading {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
    margin-bottom: 10px; }
  .jobvite-root .step-text {
    font-size: 14px;
    color: #000000;
    margin: 0; }
  .jobvite-root .template-cont {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px;
    margin-top: 20px; }
  .jobvite-root .template-text {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.15px;
    color: #959595;
    margin: 0; }
  .jobvite-root .btn-cont {
    margin-top: 12px;
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-end; }
  .jobvite-root .copy-btn {
    color: #646d69;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    width: 180px;
    height: 35px; }
    .jobvite-root .copy-btn svg {
      margin-right: 6px; }
  .jobvite-root .help {
    margin: 20px 0px; }
  .jobvite-root .cancel-btn {
    font-weight: 500;
    font-size: 14px;
    color: #3431AC;
    border: 1px solid #f1f1f1;
    border-radius: 4px;
    width: 160px;
    height: 40px;
    margin-right: 15px; }
  .jobvite-root .save-btn {
    width: 160px;
    height: 40px;
    background-color: #3431AC;
    color: white; }
    .jobvite-root .save-btn:disabled {
      background-color: rgba(0, 0, 0, 0.08); }
    .jobvite-root .save-btn:hover {
      background-color: #3431AC;
      opacity: 0.9; }
  .jobvite-root .disable-section {
    background-color: white;
    padding: 20px 30px;
    border-radius: 4px;
    margin-top: 20px; }
.microsoft-teams-root .content-wrapper {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto; }

.microsoft-teams-root .content {
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
  .microsoft-teams-root .content.top-content {
    margin-bottom: 20px; }

.microsoft-teams-root .top-cont .heading {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0; }

.microsoft-teams-root .top-cont .divider {
  height: 1px;
  background-color: #e5e5e5;
  margin: 16px 0; }

.microsoft-teams-root .top-cont .warning-cont .step-text {
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
  margin: 0; }

.microsoft-teams-root .instructions-cont .heading {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 8px 0; }

.microsoft-teams-root .instructions-cont .step-text {
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
  margin: 0; }

.microsoft-teams-root .step-cont {
  display: flex;
  margin: 20px 0; }
  .microsoft-teams-root .step-cont .step-num {
    width: 32px;
    height: 32px;
    background-color: #0078d4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    margin-right: 16px;
    flex-shrink: 0; }
  .microsoft-teams-root .step-cont .step-content-cont {
    flex: 1; }
    .microsoft-teams-root .step-cont .step-content-cont .step-heading {
      font-size: 16px;
      font-weight: 600;
      color: #1a1a1a;
      margin: 0 0 8px 0; }
    .microsoft-teams-root .step-cont .step-content-cont .step-text {
      font-size: 14px;
      color: #666666;
      line-height: 1.5;
      margin: 0 0 16px 0; }
    .microsoft-teams-root .step-cont .step-content-cont form .btn-cont {
      margin-top: 16px; }
      .microsoft-teams-root .step-cont .step-content-cont form .btn-cont .save-btn {
        background-color: #0078d4;
        color: white;
        padding: 8px 24px;
        border-radius: 4px;
        text-transform: none;
        font-weight: 500; }
        .microsoft-teams-root .step-cont .step-content-cont form .btn-cont .save-btn:hover {
          background-color: #106ebe; }
        .microsoft-teams-root .step-cont .step-content-cont form .btn-cont .save-btn:disabled {
          background-color: #cccccc;
          color: #666666; }
      .microsoft-teams-root .step-cont .step-content-cont form .btn-cont .auth-btn {
        background-color: #6264a7 !important;
        color: white !important;
        padding: 12px 24px !important;
        border-radius: 4px !important;
        text-transform: none !important;
        font-weight: 600 !important;
        font-size: 14px !important;
        border: none !important;
        box-shadow: 0 2px 4px rgba(98, 100, 167, 0.3) !important;
        transition: all 0.2s ease !important; }
        .microsoft-teams-root .step-cont .step-content-cont form .btn-cont .auth-btn:hover {
          background-color: #4f52a0 !important;
          box-shadow: 0 4px 8px rgba(98, 100, 167, 0.4) !important;
          transform: translateY(-1px) !important; }
        .microsoft-teams-root .step-cont .step-content-cont form .btn-cont .auth-btn:active {
          transform: translateY(0) !important;
          box-shadow: 0 2px 4px rgba(98, 100, 167, 0.3) !important; }
        .microsoft-teams-root .step-cont .step-content-cont form .btn-cont .auth-btn:disabled {
          background-color: #e1e1e1 !important;
          color: #a6a6a6 !important;
          box-shadow: none !important;
          transform: none !important;
          cursor: not-allowed !important; }

.microsoft-teams-root .disable-section {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 24px;
  margin-top: 20px; }
  .microsoft-teams-root .disable-section .heading {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0; }
  .microsoft-teams-root .disable-section .step-heading {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0; }
  .microsoft-teams-root .disable-section .step-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    margin: 0; }

.microsoft-teams-root .divider {
  height: 1px;
  background-color: #e5e5e5;
  margin: 16px 0; }

.microsoft-teams-root .screenshot-container {
  margin: 16px 0; }
  .microsoft-teams-root .screenshot-container .thumbnail-wrapper {
    cursor: pointer;
    display: inline-block;
    transition: transform 0.2s ease; }
    .microsoft-teams-root .screenshot-container .thumbnail-wrapper:hover {
      transform: scale(1.02); }
  .microsoft-teams-root .screenshot-container .instruction-screenshot {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease; }
    .microsoft-teams-root .screenshot-container .instruction-screenshot.thumbnail {
      max-width: 300px;
      max-height: 200px;
      width: auto;
      height: auto;
      -o-object-fit: contain;
         object-fit: contain; }
  .microsoft-teams-root .screenshot-container .screenshot-caption {
    font-size: 12px;
    color: #888;
    margin-top: 8px;
    font-style: italic; }

.microsoft-teams-root .microsoft-teams-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box; }

.microsoft-teams-root .microsoft-teams-image-modal {
  position: relative;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  max-width: 90vw;
  max-height: 90vh;
  padding: 10px; }
  .microsoft-teams-root .microsoft-teams-image-modal .microsoft-teams-modal-close {
    cursor: pointer !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    display: flex !important;
    padding: 10px, 0, 0, 10px !important;
    outline: none !important;
    box-shadow: none !important; }
    .microsoft-teams-root .microsoft-teams-image-modal .microsoft-teams-modal-close img {
      width: 18px !important;
      height: 18px !important; }
    .microsoft-teams-root .microsoft-teams-image-modal .microsoft-teams-modal-close:hover {
      background: none !important;
      border: none !important;
      box-shadow: none !important; }
      .microsoft-teams-root .microsoft-teams-image-modal .microsoft-teams-modal-close:hover img {
        filter: invert(0.5) !important; }
  .microsoft-teams-root .microsoft-teams-image-modal .microsoft-teams-modal-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px; }
    .microsoft-teams-root .microsoft-teams-image-modal .microsoft-teams-modal-content .microsoft-teams-modal-image {
      width: auto;
      height: auto;
      max-width: 100%;
      max-height: 90vh;
      -o-object-fit: contain;
         object-fit: contain;
      display: block; }

.microsoft-teams-root .success-text {
  color: #3431AC !important;
  font-weight: 500;
  margin-top: 8px !important; }

.microsoft-teams-root .instruction-detail {
  background: #f8f9fa;
  border-radius: 6px;
  padding: 16px;
  margin: 12px 0; }
  .microsoft-teams-root .instruction-detail strong {
    color: #1a1a1a;
    font-weight: 600; }
.points-name-text {
  margin-top: 14px !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 16px !important;
  letter-spacing: 1px !important;
  color: #000000; }

.text-urls-div-style {
  display: flex;
  gap: 6px; }

.text-urls-style {
  text-decoration: underline !important;
  color: #0f73bc; }

.text-urls-container {
  align-items: center;
  margin-left: 42px; }
.paylocity-root {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 50px; }
  .paylocity-root .content-wrapper {
    margin-top: 30px;
    width: 100%;
    max-width: 650px; }
  .paylocity-root .content {
    background-color: white;
    width: 100%;
    padding: 20px;
    border-radius: 7px;
    margin-top: 20px; }
  .paylocity-root .warning-cont {
    padding: 20px 0px; }
  .paylocity-root .warning-heading {
    font-weight: 700;
    font-size: 20px;
    color: #444444;
    margin-top: 0;
    margin-bottom: 10px; }
  .paylocity-root .heading {
    font-weight: 700;
    font-size: 20px;
    color: #444444;
    margin: 0; }
  .paylocity-root .divider {
    height: 1px;
    width: 100%;
    background-color: #e8e8e8; }
  .paylocity-root .head-cont {
    display: flex;
    align-items: center;
    margin-bottom: 10px; }
  .paylocity-root .mapping-wrapper {
    margin-top: 30px; }
  .paylocity-root .step-cont {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 40px; }
  .paylocity-root .step-num {
    background: #f9f9f9;
    border: 1px solid #eeeeee;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    min-width: 22px;
    font-size: 12px;
    color: black; }
  .paylocity-root .step-heading {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
    margin-bottom: 10px; }
  .paylocity-root .step-text {
    font-size: 14px;
    color: #000000;
    margin: 0; }
  .paylocity-root .template-cont {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px;
    margin-top: 20px; }
  .paylocity-root .template-text {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.15px;
    color: #959595;
    margin: 0; }
  .paylocity-root .btn-cont {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end; }
  .paylocity-root .copy-btn {
    color: #646d69;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    width: 180px;
    height: 35px; }
    .paylocity-root .copy-btn svg {
      margin-right: 6px; }
  .paylocity-root .help {
    margin: 20px 0px; }
  .paylocity-root .cancel-btn {
    font-weight: 500;
    font-size: 14px;
    color: #3431AC;
    border: 1px solid #f1f1f1;
    border-radius: 4px;
    width: 160px;
    height: 40px;
    margin-right: 15px; }
  .paylocity-root .save-btn {
    width: 160px;
    height: 40px;
    color: #3431AC !important;
    background-color: white;
    color: white;
    border: 1px solid #3431AC; }
    .paylocity-root .save-btn:disabled {
      color: #b6b6b6 !important;
      border-color: #e9e9e9; }
    .paylocity-root .save-btn:hover {
      opacity: 0.9; }
  .paylocity-root .disable-section {
    background-color: white;
    padding: 20px 30px;
    border-radius: 4px;
    margin-top: 20px; }
  .paylocity-root .mapping-cont {
    margin: 20px 0; }
  .paylocity-root .instructions-cont {
    margin-bottom: 20px; }
    .paylocity-root .instructions-cont .heading {
      margin-bottom: 10px; }
  .paylocity-root .top-content {
    padding-top: 10px; }
.slack-integration-container-root {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  min-height: 100vh;
  padding-bottom: 100px; }
  .slack-integration-container-root .slack-integration-container {
    width: 100%;
    max-width: 650px;
    position: relative; }
    .slack-integration-container-root .slack-integration-container .slack-integration-header {
      font-size: 24px;
      font-weight: 500;
      color: #000; }
    .slack-integration-container-root .slack-integration-container .slack-integration-subheader {
      font-size: 15px;
      margin-bottom: 8px; }
    .slack-integration-container-root .slack-integration-container .slack-unsaved-changes-notification {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 16px;
      background-color: #E3F2FD;
      border: 1px solid #90CAF9;
      border-radius: 4px;
      margin-bottom: 16px;
      font-size: 14px;
      color: #1976D2; }
      .slack-integration-container-root .slack-integration-container .slack-unsaved-changes-notification .unsaved-changes-icon {
        font-size: 20px;
        color: #1976D2;
        flex-shrink: 0; }
    .slack-integration-container-root .slack-integration-container .slack-workspace {
      background-color: #fff;
      border-radius: 8px;
      border: 1px solid #E0E0E0;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      padding: 20px;
      margin-bottom: 16px;
      display: flex;
      justify-content: space-between;
      align-items: center; }
    .slack-integration-container-root .slack-integration-container .slack-workspace-name-holder {
      display: flex;
      width: 70%;
      flex-direction: column; }
    .slack-integration-container-root .slack-integration-container .slack-workspace-name {
      color: #000;
      font-size: 18px;
      font-weight: 500; }
    .slack-integration-container-root .slack-integration-container .slack-workspace-url {
      font-size: 14px;
      color: #666;
      margin-top: 4px; }
    .slack-integration-container-root .slack-integration-container .slack-workspace-icon {
      display: flex;
      width: 40px;
      border-radius: 10px;
      border-style: solid;
      border-width: 1px;
      height: 40px;
      align-items: center;
      justify-content: center;
      flex-shrink: 0; }
      .slack-integration-container-root .slack-integration-container .slack-workspace-icon svg {
        width: 24px;
        height: 24px; }
    .slack-integration-container-root .slack-integration-container .disconnect-slack {
      padding: 0px 8px;
      border: 1px solid #ebebeb;
      color: #959595;
      border-radius: 4px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      height: 30px; }
    .slack-integration-container-root .slack-integration-container .add-to-slack {
      display: flex;
      align-items: center;
      padding: 0px 8px;
      border: 1px solid #ebebeb;
      color: #959595;
      border-radius: 4px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      height: 30px;
      background: #FFFFFF; }
      .slack-integration-container-root .slack-integration-container .add-to-slack svg {
        margin-right: 6px; }
    .slack-integration-container-root .slack-integration-container .slack-disconnected-instructions {
      font-size: 14px;
      color: #000;
      line-height: 1.5;
      margin-bottom: 12px; }
      .slack-integration-container-root .slack-integration-container .slack-disconnected-instructions .link-text {
        color: #0F73BC;
        text-decoration: underline !important; }
    .slack-integration-container-root .slack-integration-container .slack-login-message {
      font-size: 14px;
      color: #000;
      margin-top: 12px; }
      .slack-integration-container-root .slack-integration-container .slack-login-message .login-link {
        color: #0F73BC;
        text-decoration: underline !important;
        cursor: pointer;
        background: none;
        border: none;
        padding: 0;
        font-size: 14px; }
    .slack-integration-container-root .slack-integration-container .slack-integration-actions {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 8px;
      width: 100%;
      max-width: 650px;
      padding: 10px 20px;
      background-color: #fff;
      border-radius: 8px;
      border: 1px solid #E0E0E0;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      position: fixed;
      bottom: 2px;
      margin-bottom: 0;
      z-index: 10;
      box-sizing: border-box; }
.team-unmapped-modal {
  width: 540px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden; }
  .team-unmapped-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f1f3;
    background: #fafbfc; }
  .team-unmapped-modal__title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0; }
  .team-unmapped-modal__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #9ca3af;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease; }
    .team-unmapped-modal__close:hover {
      color: #374151;
      background: #f3f4f6; }
  .team-unmapped-modal__body {
    padding: 24px;
    text-align: center; }
  .team-unmapped-modal__icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fffbeb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px; }
  .team-unmapped-modal__text {
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    margin: 0 0 8px; }
  .team-unmapped-modal__list {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    text-align: left; }
    .team-unmapped-modal__list li {
      font-size: 13px;
      font-weight: 500;
      color: #6b7280;
      padding: 4px 0; }
  .team-unmapped-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 24px;
    border-top: 1px solid #f0f1f3;
    background: #fafbfc; }
  .team-unmapped-modal__btn {
    padding: 9px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    border: none; }
    .team-unmapped-modal__btn--primary {
      background: #3431ac;
      color: #fff; }
      .team-unmapped-modal__btn--primary:hover {
        background: #2a279a; }
      .team-unmapped-modal__btn--primary:disabled {
        opacity: 0.5;
        cursor: not-allowed; }
    .team-unmapped-modal__btn--outline {
      background: #fff;
      color: #374151;
      border: 1px solid #e5e7eb; }
      .team-unmapped-modal__btn--outline:hover {
        background: #f9fafb;
        border-color: #d1d5db; }
.mapping-cont .file-cont {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 16px; }

.mapping-cont .file-name {
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin: 0; }

.mapping-cont .role-cont {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px; }

.mapping-cont .field-label {
  font-size: 14px;
  color: #374151; }

.mapping-cont .mapping-workspace {
  width: 100%;
  margin-top: 16px; }
  .mapping-cont .mapping-workspace .mapping-labels {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 16px; }
    .mapping-cont .mapping-workspace .mapping-labels .import-value-title {
      font-weight: 600;
      font-size: 12px;
      color: #9ca3af;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin: 0;
      width: 45%; }
    .mapping-cont .mapping-workspace .mapping-labels .boon-title {
      color: #3431ac; }
  .mapping-cont .mapping-workspace .mapping-row-cont {
    width: 100%;
    display: flex;
    margin-bottom: 12px;
    align-items: center;
    padding: 4px 0; }
    .mapping-cont .mapping-workspace .mapping-row-cont .imported-value {
      width: 45%;
      background: #f9fafb;
      border: 1px solid #f3f4f6;
      border-radius: 8px;
      padding: 10px 14px;
      font-size: 14px;
      color: #374151;
      font-weight: 500; }
    .mapping-cont .mapping-workspace .mapping-row-cont .arrow-icon {
      width: 10%;
      display: flex;
      justify-content: center;
      transform: rotate(180deg);
      color: #d1d5db; }
    .mapping-cont .mapping-workspace .mapping-row-cont .boon-value {
      width: 45%; }
    .mapping-cont .mapping-workspace .mapping-row-cont .custom-input-cont {
      display: flex;
      gap: 8px;
      align-items: center; }
    .mapping-cont .mapping-workspace .mapping-row-cont .custom-field-input .MuiOutlinedInput-root {
      border-radius: 8px; }
    .mapping-cont .mapping-workspace .mapping-row-cont .close-icon {
      cursor: pointer;
      color: #9ca3af;
      transition: color 0.15s ease; }
      .mapping-cont .mapping-workspace .mapping-row-cont .close-icon:hover {
        color: #374151; }

.mapping-option-label {
  margin: 2px;
  color: #374151;
  font-size: 14px;
  margin-left: 10px; }

.mapping-option-cont {
  display: flex;
  padding: 8px 14px;
  border-radius: 4px;
  transition: background-color 0.15s ease; }
  .mapping-option-cont:hover {
    background-color: #f5f5ff;
    font-weight: 500; }
    .mapping-option-cont:hover .mapping-option-label {
      color: #3431ac; }
.mapping-summary-cont .file-cont {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0; }

.mapping-summary-cont .file-name {
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin: 0; }

.mapping-summary-cont .sample-heading-cont {
  width: 100%;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 8px;
  padding: 8px 16px;
  margin-top: 20px; }

.mapping-summary-cont .sample-heading {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0; }

.mapping-summary-cont .samples-cont {
  display: flex;
  padding: 16px 16px 0;
  gap: 40px; }

.mapping-summary-cont .boon-values-cont,
.mapping-summary-cont .imported-values-cont {
  flex: 1;
  min-width: 0; }

.mapping-summary-cont .boon-value-heading {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #3431ac;
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid #eeedfc; }

.mapping-summary-cont .boon-value {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #1f2937;
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid #f9fafb; }

.mapping-summary-cont .imported-value-heading {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f3f4f6; }

.mapping-summary-cont .imported-value {
  font-size: 13px;
  line-height: 1.5;
  color: #6b7280;
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid #f9fafb; }

.mapping-summary-cont .cancel {
  color: #9ca3af; }
  .mapping-summary-cont .cancel:hover {
    color: #6b7280; }
.CustomValues_container {
  display: flex;
  flex-wrap: wrap; }
  .CustomValues_container .single-pill {
    display: flex;
    align-items: center;
    margin-top: 12px;
    margin-left: 0;
    margin-right: 5px;
    border: 1px solid #3431AC;
    border-radius: 25px;
    background-color: #3431AC05;
    padding: 7px 11px 7px 11px; }
    .CustomValues_container .single-pill .label {
      font-size: 13px;
      font-weight: bold;
      color: #3431AC;
      line-height: 16px; }
    .CustomValues_container .single-pill .cross {
      margin-left: 8px;
      color: #3431AC;
      font-size: 20px;
      cursor: pointer; }

.drawer-close-btn {
  display: flex;
  flex-direction: row-reverse;
  padding: 19px 19px 0px; }

.filter-icon-cont {
  position: relative;
  margin-top: 12px;
  margin-left: 10px; }
  .filter-icon-cont .filters-count {
    color: white;
    background-color: #3431AC;
    border-radius: 50%;
    padding: 2px 5px;
    font-size: 12px;
    position: absolute;
    top: -8px;
    right: -8px; }
  .filter-icon-cont .filters-icon {
    height: 15px !important;
    width: 21px !important; }

.filters-container {
  padding: 0px 20px; }
  .filters-container .filter-heading-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px; }
    .filters-container .filter-heading-container .filter-heading {
      font-weight: 700;
      font-size: 24px;
      line-height: 28px;
      color: #23272A;
      margin-left: 10px; }
  .filters-container .clear-button {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px; }
    .filters-container .clear-button span {
      font-weight: 400;
      font-size: 15px;
      line-height: 18px;
      text-align: right;
      text-decoration-line: underline;
      text-decoration-thickness: 1px;
      color: #808080;
      cursor: pointer; }
  .filters-container .filter-select-inputs .Select-control {
    border-radius: 3px; }
  .filters-container .filter-type-text {
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration-line: underline; }
.AfterHiredModal__container .modal-body {
  text-align: center; }
  .AfterHiredModal__container .modal-body svg {
    display: block;
    margin: 0 auto 16px; }

.AfterHiredModal__container .date-calender {
  margin: 16px 0; }

.AfterHiredModal__container .grey-text {
  display: block;
  color: #9ca3af;
  font-size: 13px;
  margin-top: 8px; }
  .AfterHiredModal__container .grey-text.italic {
    font-style: italic; }
.AfterHoursConfirmationModal__container .grey-text {
  display: block;
  color: #9ca3af;
  font-size: 13px;
  margin-top: 12px; }
.EditStartDateModal__container .date-calender {
  margin: 16px 0; }

.EditStartDateModal__container .grey-text {
  display: block;
  color: #9ca3af;
  font-size: 13px;
  margin-top: 8px; }
  .EditStartDateModal__container .grey-text.italic {
    font-style: italic; }
.StartDateWarningModal__container .modal-body {
  text-align: center; }
  .StartDateWarningModal__container .modal-body svg {
    display: block;
    margin: 0 auto 16px; }
.UndoArchiveWarningModal__container .modal-body {
  text-align: center; }
  .UndoArchiveWarningModal__container .modal-body svg {
    display: block;
    margin: 0 auto 16px; }
  .UndoArchiveWarningModal__container .modal-body ul {
    text-align: left;
    margin: 12px 0 0 24px;
    padding: 0; }
    .UndoArchiveWarningModal__container .modal-body ul li {
      margin-bottom: 4px;
      color: #374151; }
.CandidateStage__container {
  background: #EEEEEE;
  color: #444444;
  border-radius: 4px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 12px;
  padding-right: 12px;
  min-height: 36px;
  text-transform: capitalize; }
  .CandidateStage__container.hired {
    background: #e8e7f5;
    color: #3431AC; }
    .CandidateStage__container.hired .start-date {
      font-family: 'Roboto';
      font-style: italic;
      font-weight: 400;
      font-size: 14px;
      line-height: 16px;
      color: #808080;
      mix-blend-mode: normal;
      text-transform: lowercase;
      cursor: pointer; }
      .CandidateStage__container.hired .start-date.on-hover {
        cursor: unset; }
        .CandidateStage__container.hired .start-date.on-hover .edit-start-date {
          display: none;
          text-transform: capitalize;
          text-decoration: underline;
          font-style: normal;
          margin-left: 8px; }
        .CandidateStage__container.hired .start-date.on-hover:hover .edit-start-date {
          display: inline-block;
          cursor: pointer; }
    .CandidateStage__container.hired .revert-btn {
      cursor: pointer; }
      .CandidateStage__container.hired .revert-btn svg {
        width: 16px; }
        .CandidateStage__container.hired .revert-btn svg path {
          fill: #3431AC; }
      .CandidateStage__container.hired .revert-btn.disabled {
        cursor: unset;
        opacity: 0.6; }
  .CandidateStage__container .status-container {
    display: flex;
    align-items: center; }
    .CandidateStage__container .status-container svg {
      margin-right: 6px; }
  .CandidateStage__container .time-actions {
    display: flex;
    font-size: 12px;
    line-height: 14px;
    color: #444444; }
    .CandidateStage__container .time-actions .time {
      margin-top: 1px;
      text-transform: none; }
    .CandidateStage__container .time-actions .edit-action {
      text-decoration: underline;
      cursor: pointer;
      margin-left: 12px; }
      .CandidateStage__container .time-actions .edit-action.disabled {
        opacity: 0.4; }
.RevertArchivedModal__container .modal-body {
  text-align: center; }
  .RevertArchivedModal__container .modal-body svg {
    display: block;
    margin: 0 auto 16px; }
.RevertHiredStageModal__container .modal-body {
  text-align: center; }
  .RevertHiredStageModal__container .modal-body svg {
    display: block;
    margin: 0 auto 16px; }
.Archived__table {
  margin-top: 10px; }
  .Archived__table .row-height {
    height: 70px;
    min-height: 56px; }
  .Archived__table .table_margin {
    margin: 0px !important; }
  .Archived__table .archived-dropdown {
    padding-top: 4px; }
  .Archived__table .column-padding {
    padding: 0px !important; }

.dropdown-title {
  margin-left: 8px;
  font-size: 12px; }

.svg-wrapper svg path {
  fill: black !important; }

.archived-list-filters {
  display: flex;
  align-items: center;
  cursor: pointer; }
.RewardsConfirmationModal__container .modal-body {
  text-align: center; }
.ErrorModal__container .modal-body {
  text-align: center; }
  .ErrorModal__container .modal-body svg {
    display: block;
    margin: 0 auto 16px; }

.ErrorModal__container .other-job-link {
  color: #3431ac;
  cursor: pointer;
  text-decoration: underline;
  font-weight: 500; }
  .ErrorModal__container .other-job-link:hover {
    color: #2a279a; }
.tracker-page-filters-cont {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  align-items: center; }
  .tracker-page-filters-cont .tracker-page-filter-button {
    padding: 0 15px;
    border-radius: 4px;
    border: 1px solid #d1d8dc;
    background: #fff;
    color: #808080;
    font-size: 14px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-transform: capitalize; }
  .tracker-page-filters-cont .divider {
    height: 25px;
    width: 1px;
    background: #bfbfbf; }
  .tracker-page-filters-cont .active {
    color: #505a6c;
    border: 1px solid #505a6c;
    font-weight: 600; }
  .tracker-page-filters-cont .btn-float-right {
    margin-left: auto; }
.AdjustDate__container .date-calender {
  margin: 16px 0; }

.AdjustDate__container .due-date-btn:disabled {
  background: #d1d5db;
  color: #9ca3af;
  cursor: not-allowed; }

.payout__container {
  background: #eeeeee;
  color: #444444;
  border-radius: 4px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 12px;
  padding-right: 12px;
  min-height: 36px;
  text-transform: capitalize; }
  .payout__container.ineligible {
    background: #ffffff;
    color: #959595; }
    .payout__container.ineligible .revert-ineligible-btn {
      cursor: pointer; }
      .payout__container.ineligible .revert-ineligible-btn svg {
        width: 16px; }
        .payout__container.ineligible .revert-ineligible-btn svg path {
          fill: #959595; }
      .payout__container.ineligible .revert-ineligible-btn.disabled {
        cursor: unset;
        opacity: 0.6; }
.DeferRewardModal__container .duration-inputs {
  margin: 16px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start; }

.DeferRewardModal__container .duration-select-container {
  flex: 1; }
  .DeferRewardModal__container .duration-select-container .legend {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 4px; }

.DeferRewardModal__container .bottom-message {
  display: block;
  color: #9ca3af;
  font-size: 13px;
  margin-top: 12px;
  font-style: italic; }

.DeferRewardModal__container .confirmation-question {
  text-align: center; }

.DeferRewardModal__container .MuiOutlinedInput-root {
  width: 100%;
  border-radius: 8px; }
.RewardIneligibleModal__container .reward-text-header {
  font-weight: 500;
  margin-bottom: 12px; }

.RewardIneligibleModal__container .divider-line {
  border: none;
  border-top: 1px solid #f0f1f3;
  margin: 16px 0; }

.RewardIneligibleModal__container .diverse-checkbox {
  margin-left: 0; }

.RewardIneligibleModal__container .duration-inputs {
  margin: 16px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start; }

.RewardIneligibleModal__container .duration-select-container {
  flex: 1; }
  .RewardIneligibleModal__container .duration-select-container .legend {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 4px; }

.RewardIneligibleModal__container .bottom-message {
  display: block;
  color: #9ca3af;
  font-size: 13px;
  margin-top: 12px;
  font-style: italic; }

.RewardIneligibleModal__container .MuiOutlinedInput-root {
  width: 100%;
  border-radius: 8px; }
.text-height {
  padding: 0 !important; }
  .text-height .demo {
    background-color: #c4c1e8;
    color: black;
    padding: 3px; }
  .text-height .payout-status-column {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; }
  .text-height .payout-opening {
    font-weight: 500;
    font-size: 13px;
    line-height: 18px; }
  .text-height .job-id {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px; }
  .text-height.payouts-status-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 0 !important; }

.payout-container {
  width: 100%; }
  .payout-container .payout-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px; }

.center-checkbox,
.center-header-checkbox {
  display: flex;
  justify-content: flex-start;
  align-items: center; }
  .center-checkbox .MuiCheckbox-root,
  .center-header-checkbox .MuiCheckbox-root {
    padding: 0; }
.ReactDatePicker___container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%; }
  .ReactDatePicker___container .date-picker-legend, .ReactDatePicker___container .date-picker-lagend {
    position: absolute;
    top: -9px;
    left: 12px;
    background: #ffffff;
    padding: 0 6px;
    z-index: 101;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.4px;
    color: #6b7280;
    font-weight: 500; }
  .ReactDatePicker___container .react-datepicker-wrapper {
    width: 100%; }
  .ReactDatePicker___container .modern-date-input {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #1f2937;
    width: 100%;
    height: 44px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0 14px;
    cursor: pointer;
    transition: all 0.2s ease; }
    .ReactDatePicker___container .modern-date-input:hover {
      border-color: #3431AC; }
    .ReactDatePicker___container .modern-date-input:focus {
      outline: none;
      border-color: #3431AC;
      box-shadow: 0 0 0 3px rgba(52, 49, 172, 0.12); }
    .ReactDatePicker___container .modern-date-input::-moz-placeholder {
      color: #9ca3af;
      font-weight: 400; }
    .ReactDatePicker___container .modern-date-input::placeholder {
      color: #9ca3af;
      font-weight: 400; }

.react-datepicker {
  font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  border: none;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: #fff; }

.react-datepicker__header {
  background: linear-gradient(135deg, #3431AC 0%, #2a2889 100%);
  border-bottom: none;
  padding: 20px 16px 16px;
  border-radius: 0; }

.react-datepicker__current-month {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.3px; }

.react-datepicker__day-names {
  margin-top: 8px;
  display: flex;
  justify-content: space-around; }

.react-datepicker__day-name {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 600;
  width: 40px;
  line-height: 40px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px; }

.react-datepicker__navigation {
  top: 20px; }
  .react-datepicker__navigation--previous {
    left: 16px; }
  .react-datepicker__navigation--next {
    right: 16px; }

.react-datepicker__navigation-icon::before {
  border-color: #fff;
  border-width: 2px 2px 0 0;
  width: 8px;
  height: 8px; }

.react-datepicker__month-container {
  background: #fff; }

.react-datepicker__month {
  margin: 16px; }

.react-datepicker__week {
  display: flex;
  justify-content: space-around; }

.react-datepicker__day {
  width: 40px;
  line-height: 40px;
  margin: 3px 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  transition: all 0.15s ease; }
  .react-datepicker__day:hover {
    background-color: #eeedf7;
    color: #3431AC;
    border-radius: 10px; }
  .react-datepicker__day--selected {
    background: linear-gradient(135deg, #3431AC 0%, #2a2889 100%) !important;
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(52, 49, 172, 0.35); }
    .react-datepicker__day--selected:hover {
      background: linear-gradient(135deg, #2a2889 0%, #1e1b5e 100%) !important;
      color: #fff !important; }
  .react-datepicker__day--keyboard-selected {
    background-color: #e8e7f5;
    color: #3431AC; }
  .react-datepicker__day--today {
    font-weight: 700;
    color: #3431AC;
    background-color: #eeedf7;
    position: relative; }
    .react-datepicker__day--today::after {
      content: '';
      position: absolute;
      bottom: 6px;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: 4px;
      background: #3431AC;
      border-radius: 50%; }
    .react-datepicker__day--today.react-datepicker__day--selected {
      color: #fff;
      background: linear-gradient(135deg, #3431AC 0%, #2a2889 100%); }
      .react-datepicker__day--today.react-datepicker__day--selected::after {
        background: #fff; }
  .react-datepicker__day--in-range, .react-datepicker__day--in-selecting-range {
    background-color: #e8e7f5 !important;
    color: #1e1b5e !important;
    border-radius: 0; }
    .react-datepicker__day--in-range:hover, .react-datepicker__day--in-selecting-range:hover {
      background-color: #c4c1e8 !important;
      color: #1e1b5e !important; }
  .react-datepicker__day--range-start, .react-datepicker__day--range-end {
    background: linear-gradient(135deg, #3431AC 0%, #2a2889 100%) !important;
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(52, 49, 172, 0.35); }
    .react-datepicker__day--range-start:hover, .react-datepicker__day--range-end:hover {
      background: linear-gradient(135deg, #2a2889 0%, #1e1b5e 100%) !important;
      color: #fff !important; }
  .react-datepicker__day--range-start {
    border-radius: 10px 0 0 10px; }
    .react-datepicker__day--range-start.react-datepicker__day--range-end {
      border-radius: 10px; }
  .react-datepicker__day--range-end {
    border-radius: 0 10px 10px 0; }
  .react-datepicker__day--disabled {
    color: #d1d5db;
    cursor: not-allowed; }
    .react-datepicker__day--disabled:hover {
      background-color: transparent;
      color: #d1d5db; }
  .react-datepicker__day--outside-month {
    color: #9ca3af;
    opacity: 0.5; }

.react-datepicker__triangle {
  display: none; }

.react-datepicker-popper {
  z-index: 1400; }

.react-datepicker-popper[data-placement^='bottom'] {
  padding-top: 10px; }

.react-datepicker-popper[data-placement^='top'] {
  padding-bottom: 10px; }

.Date__container {
  display: flex;
  align-items: center;
  position: relative; }
  .Date__container .date-picker-lagend {
    padding: 10px 12px;
    background: linear-gradient(135deg, #eeedf7 0%, #e8e7f5 100%);
    border: 1px solid #c4c1e8;
    border-right: none;
    border-radius: 10px 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    color: #1e1b5e;
    text-wrap: nowrap; }
  .Date__container .react-datepicker-wrapper {
    flex: 1; }
  .Date__container .custom-input {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0 10px 10px 0;
    width: 100%;
    padding: 10px 32px 10px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease; }
    .Date__container .custom-input:hover {
      border-color: #3431AC; }
    .Date__container .custom-input:focus {
      outline: none;
      border-color: #3431AC;
      box-shadow: 0 0 0 3px rgba(52, 49, 172, 0.12); }
    .Date__container .custom-input::-moz-placeholder {
      color: #9ca3af;
      font-weight: 400; }
    .Date__container .custom-input::placeholder {
      color: #9ca3af;
      font-weight: 400; }
  .Date__container .clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s ease; }
    .Date__container .clear:hover {
      background-color: #fee2e2; }
    .Date__container .clear svg {
      height: 12px;
      width: 12px;
      color: #6b7280; }
.ArchivedFilters__container .filter-header {
  font-size: 14px;
  margin-bottom: 8px;
  margin-top: 24px; }

.ArchivedFilters__container .checkbox-filter {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #444444;
  margin: 10px 0px -15px -10px; }

.ArchivedFilters__container .archived-apply-button {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  margin-bottom: 14px;
  padding: 20px 20px 0px; }
.filter-header {
  font-size: 14px;
  margin-bottom: 8px;
  margin-top: 24px; }

.disputes-filters-icon {
  color: #152040; }

.show-results-btn {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  margin-bottom: 14px;
  padding: 20px 20px 0px; }
.filter-header {
  font-size: 14px;
  margin-bottom: 8px;
  margin-top: 24px; }
.clear-button {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px; }
  .clear-button span {
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    text-align: right;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    color: #808080;
    cursor: pointer; }

.pipeline-error-text {
  color: red;
  font-size: 12px;
  text-transform: none;
  font-weight: 400;
  margin-top: 10px; }
.general-settings-cont {
  background: #ffffff;
  border-radius: 4px;
  width: 100%;
  padding: 0; }
  .general-settings-cont .heading {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #959595;
    margin: 0 0 16px; }
  .general-settings-cont .setting-control-cont {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f0f1f3; }
    .general-settings-cont .setting-control-cont:last-child {
      border-bottom: none; }
    .general-settings-cont .setting-control-cont .settings-meta .label {
      font-weight: 500;
      font-size: 14px;
      color: #374151;
      margin-bottom: 4px;
      margin-top: 0; }
    .general-settings-cont .setting-control-cont .settings-meta .sub-label {
      color: #6b7280;
      font-size: 12px;
      font-weight: 400;
      margin: 0; }
.settings-container .section-container {
  padding: 0px;
  margin-top: 2%;
  padding-bottom: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center; }
  .settings-container .section-container .labels-cont .label {
    font-size: 14px;
    font-weight: 500;
    color: #444444; }
  .settings-container .section-container .labels-cont .sub-label {
    font-size: 12px !important;
    font-weight: 400 !important;
    color: #808080 !important; }
.referral-ownership {
  background: #ffffff;
  border-radius: 0;
  width: 100%;
  padding: 0;
  margin: 0; }
  .referral-ownership .heading {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #959595;
    margin: 0 0 16px !important;
    padding-bottom: 0px !important;
    margin-bottom: 28px !important; }
  .referral-ownership .text {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #374151; }
  .referral-ownership .settings-question {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #374151;
    margin-bottom: 10px;
    margin-top: 20px; }
  .referral-ownership .settings-question-details {
    font-weight: 400;
    font-size: 14px;
    line-height: 16.41px;
    color: #6b7280;
    margin-bottom: 10px; }
    .referral-ownership .settings-question-details.space {
      padding-left: 32px; }
  .referral-ownership .settings-inputs {
    margin-bottom: 20px; }
    .referral-ownership .settings-inputs.space {
      margin: 11px 0 34px; }
    .referral-ownership .settings-inputs .person-link .MuiIconButton-root {
      padding: 4px 9px !important; }
    .referral-ownership .settings-inputs .person-link .MuiFormControlLabel-label {
      font-size: 14px;
      font-weight: 500;
      color: #374151; }
  .referral-ownership .settings-switch-inputs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500; }
    .referral-ownership .settings-switch-inputs.top-space {
      padding-bottom: 0; }
    .referral-ownership .settings-switch-inputs.no-space {
      padding: 0; }
    .referral-ownership .settings-switch-inputs.bottom-space {
      padding-top: 0; }
    .referral-ownership .settings-switch-inputs.space {
      margin: 11px 0 34px; }
    .referral-ownership .settings-switch-inputs .input-label {
      font-weight: 500;
      font-size: 14px;
      line-height: 16px;
      color: #374151;
      width: calc(100% - 185px);
      margin-bottom: 10px; }

.person-link-parent-div {
  display: flex; }

.person-link-text {
  flex-direction: column;
  gap: 6px; }

.expanded-referral-eligibility {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #374151; }

.ownership-period-cont {
  margin-top: 20px; }

.period-selector {
  display: flex;
  align-items: center; }
  .period-selector .MuiTextField-root {
    margin-top: 0 !important; }
  .period-selector p {
    margin-bottom: 0;
    margin-right: 24px; }
  .period-selector .period-selector {
    max-width: 95px;
    margin-right: 13.5px; }
  .period-selector .unit-selector {
    width: 155px; }
    .period-selector .unit-selector .MuiInputLabel-formControl {
      font-size: 14px;
      line-height: 24px;
      color: #374151; }
    .period-selector .unit-selector .MuiInputLabel-marginDense {
      transform: translate(17px, 8px) scale(1); }
    .period-selector .unit-selector .MuiInputLabel-shrink {
      transform: translate(14px, -8.5px) scale(0.75); }
    .period-selector .unit-selector .MuiFormLabel-root.Mui-focused {
      color: #3431ac; }
    .period-selector .unit-selector .MuiSelect-select {
      font-size: 14px;
      line-height: 24px;
      padding-top: 8px;
      padding-bottom: 8px; }

.note-style {
  padding-top: 20px !important;
  padding-bottom: 10px !important; }

.custom-disabled {
  color: #b8b5e0 !important; }

.custom-input {
  width: 150px !important;
  height: 40px !important;
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px; }

.custom-input:focus {
  border-color: #3431ac !important;
  outline: #3431ac;
  border: 2px solid #3431ac;
  background: transparent; }

.pb-10 {
  padding-bottom: 10px; }
.payout-settings-cont {
  width: 100%;
  padding: 0;
  background: #ffffff;
  border-radius: 0; }
  .payout-settings-cont .MuiAutocomplete-popper {
    width: 300px !important; }
  .payout-settings-cont .MuiAutocomplete-paper {
    margin-left: 0 !important; }
  .payout-settings-cont .MuiAutocomplete-hasPopupIcon {
    width: 35% !important; }
  .payout-settings-cont .MuiTextField-root {
    margin-top: 0 !important; }
    .payout-settings-cont .MuiTextField-root .MuiAutocomplete-inputRoot {
      padding: 5px !important;
      padding-right: 39px !important; }
  .payout-settings-cont .heading {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #959595;
    margin: 0 0 16px; }
  .payout-settings-cont .text {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #374151; }
  .payout-settings-cont .settings-container {
    padding-left: 0; }
  .payout-settings-cont .sub-label-sm {
    font-size: 12px !important;
    font-weight: 400 !important;
    color: #6b7280 !important; }
  .payout-settings-cont .settings-next {
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    color: #959595;
    margin-bottom: 10px;
    margin-top: 20px; }
  .payout-settings-cont .settings-question {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #374151;
    margin-bottom: 10px;
    margin-top: 20px; }
  .payout-settings-cont .settings-question-details {
    font-weight: 400;
    font-size: 14px;
    line-height: 16.41px;
    color: #6b7280;
    margin-bottom: 10px; }
    .payout-settings-cont .settings-question-details.space {
      padding-left: 32px; }
  .payout-settings-cont .settings-inputs {
    margin-bottom: 20px; }
    .payout-settings-cont .settings-inputs.space {
      margin: 11px 0 34px; }
    .payout-settings-cont .settings-inputs .person-link .MuiIconButton-root {
      padding: 4px 9px !important; }
    .payout-settings-cont .settings-inputs .person-link .MuiFormControlLabel-label {
      font-size: 14px;
      font-weight: 500;
      color: #374151; }
  .payout-settings-cont .settings-switch-inputs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500; }
    .payout-settings-cont .settings-switch-inputs.top-space {
      padding-bottom: 0; }
    .payout-settings-cont .settings-switch-inputs.no-space {
      padding: 0; }
    .payout-settings-cont .settings-switch-inputs.bottom-space {
      padding-top: 0; }
    .payout-settings-cont .settings-switch-inputs.space {
      margin: 11px 0 34px; }
    .payout-settings-cont .settings-switch-inputs .input-label {
      font-weight: 500;
      font-size: 14px;
      line-height: 16px;
      color: #374151;
      width: calc(100% - 185px);
      margin-bottom: 10px; }
.trackerSyncWithEmail {
  background: #ffffff;
  border-radius: 0;
  width: 100%;
  padding: 0;
  margin: 0; }
  .trackerSyncWithEmail .heading {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #959595;
    margin: 0 0 16px; }
  .trackerSyncWithEmail .text {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #374151;
    margin-top: 0;
    margin-bottom: 16px; }
  .trackerSyncWithEmail .email-field {
    width: 80%;
    height: 40px;
    padding: 8px 10px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    color: #6b7280; }
    .trackerSyncWithEmail .email-field:disabled {
      background-color: white; }
  .trackerSyncWithEmail .sync-heading {
    padding-bottom: 12px;
    font-weight: 600;
    font-size: 14px;
    color: #374151; }
    .trackerSyncWithEmail .sync-heading p {
      margin: unset; }
  .trackerSyncWithEmail .sync-button {
    width: 100%;
    height: 65px;
    color: #3431ac;
    text-transform: none;
    border: 1px solid #e5e7eb;
    border-radius: 8px; }
    .trackerSyncWithEmail .sync-button:hover {
      border: 1px dashed #3431ac;
      background: #f8f7ff; }
  .trackerSyncWithEmail .mapping-info-content {
    display: flex;
    align-items: center;
    padding-left: 12px;
    padding-right: 12px;
    gap: 10px;
    border-radius: 8px;
    margin-top: 8px;
    height: 36px;
    background-color: rgba(211, 211, 211, 0.2);
    color: #6b7280;
    font-size: 14px; }
    .trackerSyncWithEmail .mapping-info-content p {
      margin: unset; }
  .trackerSyncWithEmail .sync-structure-content {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    border: 1px solid #e5e7eb; }
    .trackerSyncWithEmail .sync-structure-content p {
      margin: unset; }
  .trackerSyncWithEmail .sync-structure {
    display: flex;
    gap: 13px;
    padding: 15px 20px; }
    .trackerSyncWithEmail .sync-structure .sync-info {
      display: flex;
      flex-direction: column;
      justify-content: center;
      flex-grow: 1;
      row-gap: 4px; }
    .trackerSyncWithEmail .sync-structure .sync-content-heading {
      font-weight: 500;
      font-size: 14px;
      color: #374151; }
    .trackerSyncWithEmail .sync-structure .sync-content-subheading {
      font-weight: 400;
      font-size: 12px;
      color: #6b7280; }
    .trackerSyncWithEmail .sync-structure .sync-edit-btn {
      border-radius: 8px;
      border: 1px solid #e5e7eb;
      padding-left: 7px;
      padding-right: 7px;
      color: #374151;
      text-transform: none;
      font-weight: 500;
      font-size: 14px; }
      .trackerSyncWithEmail .sync-structure .sync-edit-btn .edit-icon {
        padding-right: 5px; }
      .trackerSyncWithEmail .sync-structure .sync-edit-btn .edit-btn-content {
        display: flex;
        align-items: center; }
  .trackerSyncWithEmail .replace-button {
    padding: 15px 20px;
    text-align: start;
    border-top: 1px solid #e5e7eb;
    font-weight: 500;
    font-size: 14px;
    color: #0fbc72;
    font-family: Roboto, sans-serif;
    background: none;
    border-left: none;
    border-right: none;
    border-bottom: none;
    width: 100%; }
    .trackerSyncWithEmail .replace-button:hover {
      cursor: pointer;
      background: #f9fafb; }
  .trackerSyncWithEmail .email-sync-container {
    padding-top: 22px; }
.RewardDueDateChangeModal__container .modal-body svg {
  display: block;
  margin: 0 auto 16px; }

.RewardDueDateChangeModal__container .modal-body.center {
  text-align: center; }

.RewardDueDateChangeModal__container .grey-text {
  display: block;
  color: #9ca3af;
  font-size: 13px;
  margin-top: 8px;
  font-style: italic; }

.RewardDueDateChangeModal__container .radio-buttons {
  margin-top: 12px; }

.RewardDueDateChangeModal__container .reward-automation-radio-btn {
  margin-left: 0; }
.smooth-dnd-no-user-select .smooth-dnd-container.vertical {
  border: 1px dashed rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  min-height: 100%;
  min-width: 220px; }

.tracker .draggable-card-class {
  opacity: 0.85;
  transform: rotate(2deg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); }

.tracker .table-container .tracker-board {
  padding: 0;
  background: #f4f6fa !important;
  height: calc(100vh - 227px); }
  .tracker .table-container .tracker-board .smooth-dnd-container.vertical {
    padding-bottom: 100px; }

.tracker article {
  border-bottom: none;
  max-width: unset;
  width: 290px;
  margin-bottom: 8px; }

.tracker .smooth-dnd-container.vertical:empty {
  border: 2px dashed #dce3e8;
  border-radius: 10px;
  min-height: 111px;
  background: rgba(255, 255, 255, 0.4); }
  .tracker .smooth-dnd-container.vertical:empty::after {
    content: 'Nothing yet';
    color: #b0bec5;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }

.tracker .smooth-dnd-container.vertical .smooth-dnd-stretcher-element {
  height: 111px !important; }

.tracker .smooth-dnd-container.vertical > .smooth-dnd-draggable-wrapper {
  overflow: inherit; }

.tracker .smooth-dnd-container.horizontal .react-trello-lane {
  margin: 0;
  padding: 5px; }

.tracker .smooth-dnd-container.horizontal section > header > div > div > div:nth-child(2) {
  margin: 0;
  padding: 0; }
  .tracker .smooth-dnd-container.horizontal section > header > div > div > div:nth-child(2) div {
    font-size: 12px;
    color: rgba(25, 25, 25, 0.5);
    padding: 0 30px 0 18px;
    cursor: pointer;
    line-height: 18px;
    border-radius: 6px;
    transition: background-color 0.15s ease; }
    .tracker .smooth-dnd-container.horizontal section > header > div > div > div:nth-child(2) div:hover {
      background-color: rgba(255, 255, 255, 0.8); }

.tracker .smooth-dnd-container.horizontal section header > span {
  padding: 5px;
  line-height: 16px; }
  .tracker .smooth-dnd-container.horizontal section header > span > span {
    font-size: 13px;
    font-weight: 500;
    line-height: 13px;
    color: #90a4ae; }

.tracker .smooth-dnd-container.horizontal section textarea {
  font-weight: 600;
  font-size: 14px;
  font-family: inherit;
  color: #263238;
  margin-bottom: -5px;
  letter-spacing: -0.01em; }

.tracker .smooth-dnd-container.horizontal > span > section {
  background-color: #f4f6fa;
  width: 290px;
  padding: 0;
  margin: 0 4px;
  border-radius: 12px; }

.tracker .smooth-dnd-container.horizontal > span:nth-child(2n) > section {
  background-color: #f4f6fa; }

.tracker .empty-list {
  height: 100vh !important; }
  .tracker .empty-list .smooth-dnd-container.horizontal > span:nth-child(2n) > section {
    background-color: #f4f6fa; }

.tracker section > div {
  height: calc(100vh - 240px);
  max-height: calc(100vh - 240px);
  min-width: inherit;
  width: 290px;
  margin-top: 12px;
  padding-bottom: 100px;
  -ms-overflow-style: none;
  scrollbar-width: none; }

.tracker section > div::-webkit-scrollbar {
  display: none; }
.CancelModal__container .modal-body {
  text-align: center; }
  .CancelModal__container .modal-body svg {
    display: block;
    margin: 0 auto 16px; }
.UnmappedFieldsModal__container .modal-body {
  text-align: center; }
  .UnmappedFieldsModal__container .modal-body svg {
    display: block;
    margin: 0 auto 16px; }
  .UnmappedFieldsModal__container .modal-body .unmapped-fields-list {
    text-align: left;
    margin: 12px 0 0 24px;
    padding: 0;
    list-style: disc; }
    .UnmappedFieldsModal__container .modal-body .unmapped-fields-list li {
      margin-bottom: 4px;
      color: #374151; }
.import-content-box .file-cont {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 16px; }

.import-content-box .file-name {
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin: 0; }

.import-content-box .map-container {
  margin-top: 16px; }
  .import-content-box .map-container .map-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 12px; }
    .import-content-box .map-container .map-row:first-child {
      margin-top: 0;
      padding-bottom: 12px;
      border-bottom: 1px solid #f3f4f6;
      margin-bottom: 4px; }
    .import-content-box .map-container .map-row .map-field-name-header {
      width: calc(50% - 25px);
      font-size: 12px;
      font-weight: 600;
      color: #9ca3af;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 0; }
    .import-content-box .map-container .map-row .map-field-name {
      width: calc(50% - 25px);
      background: #f9fafb;
      border: 1px solid #f3f4f6;
      border-radius: 8px;
      height: auto;
      font-size: 14px;
      color: #374151;
      font-weight: 500;
      letter-spacing: normal;
      padding: 10px 14px; }
    .import-content-box .map-container .map-row .map-field-object-header {
      width: calc(50% - 25px);
      font-size: 12px;
      font-weight: 600;
      color: #3431ac;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 0; }
    .import-content-box .map-container .map-row .map-field-object {
      width: calc(50% - 25px); }
    .import-content-box .map-container .map-row .map-value-container {
      border-radius: 8px;
      box-shadow: unset;
      width: 100%; }
      .import-content-box .map-container .map-row .map-value-container::before {
        display: none; }
      .import-content-box .map-container .map-row .map-value-container .map-value-header {
        background: #f9fafb;
        border: 1px solid #f3f4f6;
        border-radius: 8px;
        min-height: unset;
        height: 40px; }
        .import-content-box .map-container .map-row .map-value-container .map-value-header .values-heading {
          display: flex;
          justify-content: space-between;
          align-items: center;
          width: 100%; }
          .import-content-box .map-container .map-row .map-value-container .map-value-header .values-heading .values-mapping {
            display: flex;
            align-items: center;
            font-weight: 600;
            font-size: 12px;
            letter-spacing: 0.05em;
            text-transform: uppercase; }
            .import-content-box .map-container .map-row .map-value-container .map-value-header .values-heading .values-mapping .import-field-header {
              color: #9ca3af; }
            .import-content-box .map-container .map-row .map-value-container .map-value-header .values-heading .values-mapping .boon-field-header {
              color: #3431ac; }
          .import-content-box .map-container .map-row .map-value-container .map-value-header .values-heading .mapped-deatils {
            font-weight: 400;
            font-size: 13px;
            line-height: 1.4;
            letter-spacing: normal;
            color: #6b7280; }
            .import-content-box .map-container .map-row .map-value-container .map-value-header .values-heading .mapped-deatils.success {
              color: #3431ac; }
              .import-content-box .map-container .map-row .map-value-container .map-value-header .values-heading .mapped-deatils.success .mapped-count {
                color: #3431ac; }
            .import-content-box .map-container .map-row .map-value-container .map-value-header .values-heading .mapped-deatils .mapped-count {
              text-decoration-line: underline;
              text-transform: uppercase;
              color: #ea5506; }
      .import-content-box .map-container .map-row .map-value-container .map-values-container {
        flex-direction: column;
        padding: 0; }
    .import-content-box .map-container .map-row .boon-value-header {
      width: 150px;
      font-size: 12px;
      font-weight: 600;
      color: #3431ac;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 0; }
    .import-content-box .map-container .map-row .import-value-header {
      width: calc(100% - 174px);
      font-size: 12px;
      font-weight: 600;
      color: #9ca3af;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 0; }
    .import-content-box .map-container .map-row .boon-value-heading {
      width: 150px;
      padding: 0 12px;
      font-weight: 600;
      font-size: 14px;
      line-height: 1.5;
      color: #1a1a2e; }
    .import-content-box .map-container .map-row .imported-value-sample {
      width: calc(100% - 174px);
      padding: 0 12px;
      font-weight: 400;
      font-size: 13px;
      line-height: 1.5;
      color: #6b7280; }

.import-content-box .sample-heading-cont {
  width: 100%;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 8px;
  padding: 8px 16px;
  margin-top: 20px; }

.import-content-box .sample-heading {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0; }

.import-content-box .samples-cont {
  display: flex;
  padding: 16px 16px 0;
  gap: 40px; }

.import-content-box .boon-values-cont,
.import-content-box .imported-values-cont {
  flex: 1;
  min-width: 0; }

.import-content-box .boon-value-heading {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #3431ac;
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid #eeedfc; }

.import-content-box .boon-value {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #1f2937;
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid #f9fafb; }

.import-content-box .imported-value-heading {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f3f4f6; }

.import-content-box .imported-value {
  font-size: 13px;
  line-height: 1.5;
  color: #6b7280;
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid #f9fafb; }

@media (max-width: 540px) {
  .import-content-box .map-container {
    height: calc(100vh - 280px);
    overflow: auto; }
    .import-content-box .map-container .map-row .map-value-container .map-value-header {
      height: 50px; }
      .import-content-box .map-container .map-row .map-value-container .map-value-header .values-heading {
        flex-wrap: wrap; } }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.candidate-modal .Select-value-referral .Select-value {
  font-family: "Roboto";
  font-size: 14px;
  font-weight: 500; }
  .candidate-modal .Select-value-referral .Select-value:after {
    content: "" !important; }

.candidate-modal .Select {
  width: 200px; }
  .candidate-modal .Select .Select-value {
    font-family: "Roboto";
    font-size: 14px;
    font-weight: 500; }
    .candidate-modal .Select .Select-value:after {
      content: " (current step)"; }
  .candidate-modal .Select .Select-option {
    background-color: #ffffff;
    color: #18332f;
    border-bottom: 1px solid #bcbcbc;
    height: 40px;
    width: 200px;
    max-width: 200px;
    padding-top: 10px;
    font-family: "Roboto";
    font-size: 14px;
    font-weight: 500; }
    .candidate-modal .Select .Select-option.is-selected {
      color: #d1d6d5; }
      .candidate-modal .Select .Select-option.is-selected:hover {
        color: #fff; }
      .candidate-modal .Select .Select-option.is-selected:before {
        content: "";
        background-image: url(/bundles/d419187649b9ac80fc903fd3998b4c84.svg);
        background-repeat: no-repeat;
        background-position: bottom left;
        width: 13px;
        height: 15px;
        padding-right: 10px;
        display: inline-block; }
    .candidate-modal .Select .Select-option.select-option-archive {
      color: #ec6060; }
    .candidate-modal .Select .Select-option.is-disabled {
      color: #d1d6d5;
      font-family: "Roboto";
      font-size: 14px;
      font-weight: 500; }
      .candidate-modal .Select .Select-option.is-disabled:hover {
        color: #fff; }
    .candidate-modal .Select .Select-option:hover {
      background-color: #d8d8d8; }
    .candidate-modal .Select .Select-option:last-child {
      border-radius: 0 !important; }
      .candidate-modal .Select .Select-option:last-child:hover {
        color: #ffffff;
        background-color: #ec6060; }
  .candidate-modal .Select .Select-menu-outer {
    max-height: 241px !important;
    height: 241px;
    border-radius: 3px;
    width: 202px;
    margin-top: -36px;
    border: 1px solid #bcbcbc; }
    .candidate-modal .Select .Select-menu-outer .Select-menu {
      max-height: 241px; }
.ats-select-cont .heading {
  font-weight: 600;
  font-size: 18px;
  color: #1a1a2e; }

.ats-select-cont .mappingTool {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px; }

.ats-select-cont .elCont {
  display: flex;
  gap: 12px;
  align-items: center; }

.ats-select-cont .importHeading {
  width: 48%;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #6b7280;
  font-size: 12px; }

.ats-select-cont .boonHeading {
  width: 48%;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #3431ac;
  font-size: 12px; }

.ats-select-cont .importedVal {
  background: #f3f4f6;
  border-radius: 8px;
  color: #374151;
  width: 48%;
  padding: 10px 14px;
  font-size: 14px; }

.ats-select-cont .arrowCont {
  width: 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(180deg); }
  .ats-select-cont .arrowCont svg path {
    fill: #9ca3af; }

.ats-select-cont .selectCont {
  width: 48%; }

.ats-select-cont .boonMobileHeading {
  width: 48%;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #3431ac;
  font-size: 12px;
  display: none; }

.ats-select-cont .optionLabel {
  margin: 2px;
  color: #374151;
  font-size: 14px;
  margin-left: 10px; }

.ats-select-cont .optionCont {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background-color 0.12s ease; }
  .ats-select-cont .optionCont:hover {
    background-color: #eef0fb; }
    .ats-select-cont .optionCont:hover .optionLabel {
      font-weight: 500; }

.ats-select-cont .customFieldCont {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  padding: 8px 14px;
  cursor: pointer;
  position: absolute;
  bottom: 5px;
  width: 100%;
  border-top: 1px solid #f3f4f6; }

.ats-select-cont .customText {
  color: #3431ac;
  margin: 0;
  font-size: 14px;
  font-weight: 500; }

.ats-select-cont .visibile {
  visibility: visible; }

.ats-select-cont .hidden {
  visibility: hidden; }

.ats-select-cont .menuListCont {
  position: relative;
  padding-bottom: 30px; }

.ats-select-cont .optionsCont {
  max-height: 220px;
  overflow-y: auto; }
.ats-job-field-mapping-cont {
  padding: 24px 28px;
  margin-bottom: 24px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-top: 16px; }
  .ats-job-field-mapping-cont .heading {
    font-weight: 600;
    font-size: 18px;
    color: #1a1a2e;
    margin: 0;
    margin-bottom: 20px; }
  .ats-job-field-mapping-cont .mappingTool {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px; }
  .ats-job-field-mapping-cont .elCont {
    display: flex;
    gap: 12px;
    align-items: center; }
  .ats-job-field-mapping-cont .importHeading {
    width: 48%;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #6b7280;
    font-size: 12px; }
  .ats-job-field-mapping-cont .boonHeading {
    width: 48%;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #3431ac;
    font-size: 12px; }
  .ats-job-field-mapping-cont .importedVal {
    background: #f3f4f6;
    border-radius: 8px;
    color: #374151;
    width: 48%;
    padding: 10px 14px;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 0.3px; }
  .ats-job-field-mapping-cont .arrowCont {
    width: 4%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(180deg); }
    .ats-job-field-mapping-cont .arrowCont svg path {
      fill: #9ca3af; }
  .ats-job-field-mapping-cont .selectCont {
    width: 48%; }
  .ats-job-field-mapping-cont .selectContInput {
    width: 89%; }
  .ats-job-field-mapping-cont .inputCont {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 48%;
    margin-top: -10px; }
  .ats-job-field-mapping-cont .custom-field-input {
    font-size: 14px; }
  .ats-job-field-mapping-cont .MuiTextField-root {
    margin-top: 10px !important; }
  .ats-job-field-mapping-cont .close-icon {
    cursor: pointer;
    margin-top: 8px;
    color: #9ca3af;
    transition: color 0.15s ease; }
    .ats-job-field-mapping-cont .close-icon:hover {
      color: #374151; }
.ats-mapping-summary-cont {
  padding: 24px 28px;
  margin-bottom: 24px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-top: 16px; }
  .ats-mapping-summary-cont .import-heading {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e; }
  .ats-mapping-summary-cont .import-text {
    font-size: 14px;
    color: #374151;
    line-height: 1.5; }
  .ats-mapping-summary-cont .sample-heading-cont {
    width: 100%;
    background-color: #f3f4f6;
    padding: 6px 14px;
    margin-top: 16px;
    border-radius: 8px; }
  .ats-mapping-summary-cont .sample-heading {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #374151;
    text-transform: uppercase; }
  .ats-mapping-summary-cont .samples-cont {
    display: flex;
    padding: 0 14px;
    gap: 80px; }
  .ats-mapping-summary-cont .boon-value-heading {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #3431ac;
    margin: 0 4px; }
  .ats-mapping-summary-cont .boon-value {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    color: #1a1a2e;
    margin: 0 4px; }
  .ats-mapping-summary-cont .imported-value-heading {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #6b7280;
    text-transform: uppercase;
    margin: 0 4px; }
  .ats-mapping-summary-cont .imported-value {
    font-size: 13px;
    color: #374151;
    margin: 0 4px;
    word-wrap: break-word; }
  .ats-mapping-summary-cont .boon-values-cont {
    min-width: 200px;
    height: -moz-fit-content;
    height: fit-content; }
  .ats-mapping-summary-cont .summary-cont {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0; }
.ats-job-value-mapping {
  padding: 24px 28px;
  margin-bottom: 24px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-top: 16px; }
  .ats-job-value-mapping .heading {
    font-weight: 600;
    font-size: 18px;
    color: #1a1a2e;
    margin: 0;
    margin-bottom: 20px; }
  .ats-job-value-mapping .mappingTool {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px; }
  .ats-job-value-mapping .elCont {
    display: flex;
    gap: 12px;
    align-items: center; }
  .ats-job-value-mapping .importHeading {
    width: 48%;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #6b7280;
    font-size: 12px; }
  .ats-job-value-mapping .boonHeading {
    width: 48%;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #3431ac;
    font-size: 12px; }
.ats-mapping-accordian {
  width: 100%; }
  .ats-mapping-accordian .map-value-container {
    border-radius: 10px;
    box-shadow: unset;
    border: 1px solid #e5e7eb; }
    .ats-mapping-accordian .map-value-container::before {
      display: none; }
  .ats-mapping-accordian .map-value-header {
    background: #f9fafb;
    border-radius: 10px 10px 0 0;
    min-height: 44px !important;
    max-height: 44px !important;
    width: 100%;
    padding: 0 20px;
    margin: 0; }
  .ats-mapping-accordian .head-cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%; }
  .ats-mapping-accordian .left-cont {
    display: flex;
    align-items: center;
    gap: 8px; }
  .ats-mapping-accordian .mapped-info {
    font-weight: 500;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.3px;
    color: #3431ac; }
  .ats-mapping-accordian .ats-column {
    color: #6b7280;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0; }
  .ats-mapping-accordian .boon-column {
    color: #3431ac;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0; }
  .ats-mapping-accordian .importedVal {
    background: #f3f4f6;
    border-radius: 8px;
    color: #374151;
    width: 48%;
    padding: 10px 14px;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 0.3px; }
  .ats-mapping-accordian .arrowCont {
    width: 4%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(180deg); }
    .ats-mapping-accordian .arrowCont svg path {
      fill: #9ca3af; }
  .ats-mapping-accordian .selectCont {
    width: 48%; }
.ats-mapping-summary-cont {
  padding: 24px 28px;
  margin-bottom: 24px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-top: 16px; }
  .ats-mapping-summary-cont .import-heading {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e; }
  .ats-mapping-summary-cont .import-text {
    font-size: 14px;
    color: #374151;
    line-height: 1.5; }
  .ats-mapping-summary-cont .sample-heading-cont {
    width: 100%;
    background-color: #f3f4f6;
    padding: 6px 14px;
    margin-top: 16px;
    border-radius: 8px; }
  .ats-mapping-summary-cont .sample-heading {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #374151;
    text-transform: uppercase; }
  .ats-mapping-summary-cont .samples-cont {
    display: flex;
    padding: 0 14px;
    gap: 80px; }
  .ats-mapping-summary-cont .boon-value-heading {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #3431ac;
    margin: 0 4px; }
  .ats-mapping-summary-cont .boon-value {
    font-size: 14px;
    font-weight: 500;
    word-wrap: break-word;
    letter-spacing: 0;
    color: #1a1a2e;
    margin: 0 4px; }
  .ats-mapping-summary-cont .imported-value-heading {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #6b7280;
    text-transform: uppercase;
    margin: 0 4px; }
  .ats-mapping-summary-cont .imported-values-cont {
    width: 50%; }
  .ats-mapping-summary-cont .imported-value {
    font-size: 13px;
    color: #374151;
    margin: 0 4px;
    word-wrap: break-word; }
  .ats-mapping-summary-cont .boon-values-cont {
    max-width: 200px;
    height: -moz-fit-content;
    height: fit-content; }
  .ats-mapping-summary-cont .summary-cont {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0; }
.ats-job-field-mapping-cont {
  padding: 24px 28px;
  margin-bottom: 24px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-top: 16px; }
  .ats-job-field-mapping-cont .heading {
    font-weight: 600;
    font-size: 18px;
    color: #1a1a2e;
    margin: 0;
    margin-bottom: 20px; }
  .ats-job-field-mapping-cont .headingText {
    color: #374151;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5; }
  .ats-job-field-mapping-cont .mappingTool {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px; }
  .ats-job-field-mapping-cont .elCont {
    display: flex;
    gap: 12px;
    align-items: center; }
  .ats-job-field-mapping-cont .importHeading {
    width: 48%;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #6b7280;
    font-size: 12px; }
  .ats-job-field-mapping-cont .boonHeading {
    width: 48%;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #3431ac;
    font-size: 12px; }
  .ats-job-field-mapping-cont .importedVal {
    background: #f3f4f6;
    border-radius: 8px;
    color: #374151;
    width: 48%;
    padding: 10px 14px;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 0.3px; }
  .ats-job-field-mapping-cont .arrowCont {
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(180deg); }
    .ats-job-field-mapping-cont .arrowCont svg path {
      fill: #9ca3af; }
  .ats-job-field-mapping-cont .doubleArrow {
    margin-top: 10px; }
  .ats-job-field-mapping-cont .backarrowCont {
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center; }
    .ats-job-field-mapping-cont .backarrowCont svg path {
      fill: #9ca3af; }
  .ats-job-field-mapping-cont .selectCont {
    width: 48%; }
  .ats-job-field-mapping-cont .inputCont {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 48%;
    margin-top: -10px; }
  .ats-job-field-mapping-cont .custom-field-input {
    font-size: 14px; }
  .ats-job-field-mapping-cont .MuiTextField-root {
    margin-top: 10px !important; }
  .ats-job-field-mapping-cont .close-icon {
    cursor: pointer;
    margin-top: 8px;
    color: #9ca3af;
    transition: color 0.15s ease; }
    .ats-job-field-mapping-cont .close-icon:hover {
      color: #374151; }
.ats-job-value-mapping {
  padding: 24px 28px;
  margin-bottom: 24px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-top: 16px; }
  .ats-job-value-mapping .heading {
    font-weight: 600;
    font-size: 18px;
    color: #1a1a2e;
    margin: 0;
    margin-bottom: 20px; }
  .ats-job-value-mapping .mappingTool {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px; }
  .ats-job-value-mapping .elCont {
    display: flex;
    gap: 12px;
    align-items: center; }
  .ats-job-value-mapping .importHeading {
    width: 48%;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #6b7280;
    font-size: 12px; }
  .ats-job-value-mapping .boonHeading {
    width: 48%;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #3431ac;
    font-size: 12px; }
.payment-methods {
  display: grid;
  grid-auto-flow: row;
  gap: 20px;
  max-height: 250px;
  overflow-y: scroll; }
  .payment-methods .customer-payment-method {
    display: flex;
    gap: 10px;
    align-items: center; }
    .payment-methods .customer-payment-method > * {
      cursor: pointer; }
      .payment-methods .customer-payment-method > *:hover {
        background-color: #fffbfb; }
      .payment-methods .customer-payment-method > *:last-child {
        flex: auto; }
    .payment-methods .customer-payment-method .brand {
      text-transform: capitalize; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.notifications-form .details-background {
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative; }
  .notifications-form .details-background .logo {
    position: absolute;
    bottom: -60px;
    left: 40px;
    z-index: 1;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); }
    @media (max-width: 540px) {
      .notifications-form .details-background .logo {
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); } }
    .notifications-form .details-background .logo img {
      display: block;
      border-radius: 10px;
      max-height: 160px;
      max-width: 160px; }

.notifications-form .details-info {
  padding: 60px 40px 25px;
  position: relative; }
  .notifications-form .details-info .func-buttons-container {
    position: absolute;
    top: -25px;
    right: 40px;
    z-index: 5; }
    @media (max-width: 540px) {
      .notifications-form .details-info .func-buttons-container {
        right: auto;
        left: 50%;
        transform: translateX(-50%); } }
    .notifications-form .details-info .func-buttons-container .btn {
      min-width: 140px;
      margin-left: 20px; }
  .notifications-form .details-info .dashboard-sides-container {
    display: flex; }
    .notifications-form .details-info .dashboard-sides-container .left-side {
      width: 61.2%;
      margin-right: 0;
      flex: 0 0 auto; }
    .notifications-form .details-info .dashboard-sides-container .right-side {
      width: calc(38.8% - 30px);
      flex: 0 0 auto; }
    @media (max-width: 960px) {
      .notifications-form .details-info .dashboard-sides-container {
        display: block; }
        .notifications-form .details-info .dashboard-sides-container .left-side,
        .notifications-form .details-info .dashboard-sides-container .right-side {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; } }
  .notifications-form .details-info .sides-container {
    display: flex;
    max-width: 1000px;
    margin: auto; }
    .notifications-form .details-info .sides-container .left-side {
      width: 71.2%;
      margin-right: 0;
      flex: 0 0 auto; }
    .notifications-form .details-info .sides-container .right-side {
      width: calc(38.8% - 30px);
      flex: 0 0 auto; }
    @media (max-width: 960px) {
      .notifications-form .details-info .sides-container {
        display: block; }
        .notifications-form .details-info .sides-container .left-side,
        .notifications-form .details-info .sides-container .right-side {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; } }
  .notifications-form .details-info .sides-container-reverse {
    display: flex; }
    .notifications-form .details-info .sides-container-reverse .left-side {
      width: 20%;
      flex: 0 0 auto;
      padding-top: 36px; }
    .notifications-form .details-info .sides-container-reverse .right-side {
      width: 60%;
      flex: 0 0 auto; }
    @media (max-width: 960px) {
      .notifications-form .details-info .sides-container-reverse {
        display: block; }
        .notifications-form .details-info .sides-container-reverse .right-side {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; }
        .notifications-form .details-info .sides-container-reverse .left-side {
          display: none; } }
  .notifications-form .details-info .main-container {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0px 2px 4px rgba(147, 157, 177, 0.25); }
    .notifications-form .details-info .main-container .title-default-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px; }
    .notifications-form .details-info .main-container .main-container-title {
      font-size: 20px;
      color: #444444;
      font-weight: 700;
      margin-bottom: 24px;
      padding-left: 10px; }
    .notifications-form .details-info .main-container .basic-info:last-child {
      margin-bottom: 0; }
    .notifications-form .details-info .main-container .list .Select-control {
      border-width: 1px;
      border-radius: 4px; }
  .notifications-form .details-info .actions-container {
    margin-top: 20px;
    display: flex;
    justify-content: space-between; }
    .notifications-form .details-info .actions-container button.btn-primary {
      margin-left: 20px; }
  @media (max-width: 540px) {
    .notifications-form .details-info {
      padding: 60px 20px 15px; } }

.notifications-form .perks input {
  width: 100%;
  margin-bottom: 20px; }

.notifications-form .perks ul {
  list-style: none; }
  .notifications-form .perks ul li {
    border-radius: 25px;
    display: inline-block;
    margin: 0 20px 10px 0;
    background-color: #f5f7f8;
    font-size: 13px;
    font-weight: bold;
    color: #18332f; }
    .notifications-form .perks ul li.edit {
      padding: 5px 5px 5px 20px; }
      .notifications-form .perks ul li.edit .close {
        background-color: #3431AC;
        color: #ffffff;
        display: inline-block;
        height: 22px;
        width: 22px;
        font-size: 16px;
        line-height: 21px;
        font-weight: bold;
        text-align: center;
        border-radius: 50%;
        margin-left: 10px;
        cursor: pointer; }

.notifications-form .youtube iframe {
  width: 100%; }

.notification-settings-cont {
  margin-top: 16px;
  margin-bottom: 24px; }
  .notification-settings-cont .refer-form-bottom-border {
    margin-bottom: 1rem; }
  .notification-settings-cont .no-border {
    border-bottom: none !important; }
  .notification-settings-cont .labels-cont .label {
    font-size: 14px;
    font-weight: 500;
    color: #374151; }
  .notification-settings-cont .section-fieldset {
    display: flex;
    align-items: center;
    gap: 10px; }
    .notification-settings-cont .section-fieldset .section-label {
      font-size: 14px;
      font-weight: 500;
      color: #1a1a2e;
      white-space: nowrap; }
  .notification-settings-cont .notification-section-container {
    padding: 0 0 0 10px; }
  .notification-settings-cont .divider {
    width: 100%;
    height: 1px;
    background-color: #f3f4f6; }
  .notification-settings-cont .MuiTextField-root {
    margin-top: 0 !important; }
  .notification-settings-cont .MuiOutlinedInput-root {
    padding: 3px; }

.action-buttons-cont {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  gap: 12px; }

.container-interview {
  margin-top: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important; }
.stripe-payment {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70vh; }
  .stripe-payment form {
    padding: 30px;
    border: 2px solid lightgray; }
  .stripe-payment button {
    margin-top: 20px;
    cursor: pointer;
    padding: 10px 30px;
    border-radius: 4px;
    font-weight: bold; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.payment-method {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #EEEEEE;
  border-radius: 4px;
  padding: 10px; }
  .payment-method > * {
    width: 40%; }
  .payment-method .brand {
    text-transform: capitalize; }
  .payment-method .update-payment-button {
    padding: 0;
    margin: 0;
    text-align: end;
    color: rgba(0, 0, 0, 0.4);
    font-style: italic;
    cursor: pointer; }
    .payment-method .update-payment-button:hover {
      color: #0F73BC;
      text-decoration: underline; }

.addpayment-method {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
  cursor: pointer; }
  .addpayment-method:hover {
    background-color: #fffbfb; }
  .addpayment-method .information-btn {
    display: flex;
    color: #959595;
    height: 21px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 14px; }
    .addpayment-method .information-btn .information-icon {
      color: #959595;
      margin: 0 12px; }
  .addpayment-method .add-payment-button {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    height: 21px;
    color: #343741;
    margin-left: 10px;
    cursor: pointer; }
    .addpayment-method .add-payment-button:hover {
      font-weight: 500; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.payment-modal-content {
  width: 65%; }
  .payment-modal-content .inner-content {
    margin-top: 25px; }
    .payment-modal-content .inner-content .icon-container {
      margin-top: 30px;
      margin-bottom: 30px; }
    .payment-modal-content .inner-content .aligned-text .select-reward {
      display: inline-block;
      margin-bottom: 5px; }
    .payment-modal-content .inner-content .aligned-text label {
      display: flex;
      align-items: center;
      cursor: pointer; }
      .payment-modal-content .inner-content .aligned-text label input {
        cursor: pointer;
        margin: 0 5px; }
    .payment-modal-content .inner-content .aligned-text .payment-amount {
      display: flex;
      -moz-column-gap: 200px;
           column-gap: 200px;
      justify-content: space-between; }
      .payment-modal-content .inner-content .aligned-text .payment-amount .reward-greyed {
        color: #808080; }
    .payment-modal-content .inner-content .aligned-text .payment-divider {
      background-color: #eeeeee;
      height: 1px; }
    .payment-modal-content .inner-content .summary-modal {
      display: flex;
      flex-direction: column;
      row-gap: 8px; }
      .payment-modal-content .inner-content .summary-modal .payment-header {
        font-size: 16px;
        letter-spacing: 0.5px;
        margin-top: 16px; }
  .payment-modal-content .add-payment-method-button {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    height: 21px;
    color: #343741;
    margin-top: 30px;
    margin-left: 0px;
    padding-left: 0px;
    cursor: pointer; }
    .payment-modal-content .add-payment-method-button:hover {
      font-weight: 500;
      background-color: #fffbfb; }
.collapsable-section-root {
  background-color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid #E0E0E0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 16px; }
  .collapsable-section-root .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; }
  .collapsable-section-root .section-info {
    display: flex;
    gap: 12px;
    flex: 1; }
  .collapsable-section-root .section-name {
    display: flex;
    flex-direction: column;
    gap: 4px; }
  .collapsable-section-root .section-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background-color: rgba(0, 121, 47, 0.1);
    border-radius: 6px;
    flex-shrink: 0;
    height: -moz-fit-content;
    height: fit-content; }
  .collapsable-section-root .section-icon {
    height: 24px;
    width: 24px; }
  .collapsable-section-root .section-title {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4; }
  .collapsable-section-root .description {
    color: #666;
    font-size: 14px;
    line-height: 1.5; }
  .collapsable-section-root .section-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0; }
  .collapsable-section-root .preview-button {
    padding: 4px;
    color: #000;
    transition: color 0.2s; }
    .collapsable-section-root .preview-button:hover:not(:disabled) {
      color: #00792f; }
    .collapsable-section-root .preview-button:disabled {
      opacity: 0.4; }
  .collapsable-section-root .collapse-icon {
    font-size: 20px;
    color: #666;
    cursor: pointer;
    transition: color 0.2s; }
    .collapsable-section-root .collapse-icon:hover {
      color: #000; }
  .collapsable-section-root .section-divider {
    border-bottom: 1px solid #EEEEEE;
    width: 100%;
    margin: 8px 0; }
  .collapsable-section-root .section-content {
    padding-top: 0px; }
  .collapsable-section-root.not-connected {
    opacity: 0.6;
    pointer-events: none; }
    .collapsable-section-root.not-connected .section-actions {
      pointer-events: auto; }
.slack-scheduled-notification {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px; }
  .slack-scheduled-notification__header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 8px; }
  .slack-scheduled-notification .slack-scheduled-notification__controls {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
    width: 100%; }
    .slack-scheduled-notification .slack-scheduled-notification__controls .slack-scheduled-notification__control-field {
      display: flex;
      flex-direction: column;
      gap: 8px;
      flex: 1;
      min-width: 0;
      width: 100%; }
      .slack-scheduled-notification .slack-scheduled-notification__controls .slack-scheduled-notification__control-field .control-field-label {
        font-size: 14px;
        font-weight: 500;
        margin: 0;
        color: #000000; }
      .slack-scheduled-notification .slack-scheduled-notification__controls .slack-scheduled-notification__control-field > div {
        width: 100%; }
  .slack-scheduled-notification .label {
    font-size: 14px;
    font-weight: 500;
    margin: 0; }
  .slack-scheduled-notification .schedule-label {
    color: #000000;
    margin-bottom: 4px; }
  .slack-scheduled-notification .slack-scheduled-notification__header-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%; }
    .slack-scheduled-notification .slack-scheduled-notification__header-text .header-text-label-row {
      display: flex;
      align-items: center;
      gap: 8px; }
      .slack-scheduled-notification .slack-scheduled-notification__header-text .header-text-label-row .header-text-reset-button {
        display: flex;
        align-items: center;
        gap: 4px;
        padding: 4px 8px;
        margin-left: auto;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 14px;
        color: #000000;
        transition: opacity 0.2s; }
        .slack-scheduled-notification .slack-scheduled-notification__header-text .header-text-label-row .header-text-reset-button:hover:not(:disabled) {
          opacity: 0.7; }
        .slack-scheduled-notification .slack-scheduled-notification__header-text .header-text-label-row .header-text-reset-button:disabled {
          opacity: 0.5;
          cursor: not-allowed; }
    .slack-scheduled-notification .slack-scheduled-notification__header-text .header-text-hint {
      font-size: 12px;
      color: #959595;
      margin: 0; }
  .slack-scheduled-notification .settings-next {
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    color: #959595; }
  .slack-scheduled-notification .MuiTextField-root {
    margin-top: 0 !important; }
  .slack-scheduled-notification .MuiInputBase-root {
    height: 100% !important; }
  .slack-scheduled-notification .slack-scheduled-notification__channels {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%; }
  .slack-scheduled-notification .slack-scheduled-notification__selected-channels {
    display: flex;
    flex-direction: column;
    gap: 8px; }
    .slack-scheduled-notification .slack-scheduled-notification__selected-channels .selected-channels-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      min-height: 40px;
      padding: 8px;
      border: 1px solid #e0e0e0;
      border-radius: 4px;
      background-color: #fafafa; }
      .slack-scheduled-notification .slack-scheduled-notification__selected-channels .selected-channels-list .channel-chip {
        background-color: #3431AC;
        color: #ffffff; }
        .slack-scheduled-notification .slack-scheduled-notification__selected-channels .selected-channels-list .channel-chip .MuiChip-deleteIcon {
          color: #ffffff; }
    .slack-scheduled-notification .slack-scheduled-notification__selected-channels .no-channels-selected {
      padding: 8px;
      color: #959595;
      font-size: 14px;
      min-height: 40px;
      display: flex;
      align-items: center;
      border: 1px solid #e0e0e0;
      border-radius: 4px;
      background-color: #fafafa; }
  .slack-scheduled-notification .slack-scheduled-notification__channel-search {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%; }
    .slack-scheduled-notification .slack-scheduled-notification__channel-search .channel-autocomplete {
      width: 100% !important; }
      .slack-scheduled-notification .slack-scheduled-notification__channel-search .channel-autocomplete.MuiAutocomplete-hasPopupIcon {
        width: 100% !important; }
      .slack-scheduled-notification .slack-scheduled-notification__channel-search .channel-autocomplete .MuiAutocomplete-inputRoot {
        padding: 4px 8px; }
    .slack-scheduled-notification .slack-scheduled-notification__channel-search .channel-hint {
      font-size: 12px;
      color: #959595;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 4px; }
      .slack-scheduled-notification .slack-scheduled-notification__channel-search .channel-hint .channel-hint-icon {
        font-size: 14px;
        color: #959595;
        flex-shrink: 0; }
  .slack-scheduled-notification .slack-scheduled-notification__divider {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0; }
  .slack-scheduled-notification .slack-scheduled-notification__schedule {
    display: flex;
    flex-direction: column;
    gap: 12px; }
.slack-preview-modal {
  display: flex;
  flex-direction: column;
  padding: 24px;
  width: 45vw; }
  .slack-preview-modal .slack-preview-header {
    font-size: 18px;
    font-weight: 600;
    color: #090b0f; }
  .slack-preview-modal .slack-preview-subtext {
    color: #606369;
    font-size: 14px;
    margin-bottom: 18px; }
  .slack-preview-modal .slack-close-modal {
    position: absolute;
    right: 24px;
    top: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #6b7280;
    transition: background-color 0.2s, color 0.2s; }
    .slack-preview-modal .slack-close-modal:hover {
      background-color: #f2f2f2;
      color: #111827; }
.slack-interviewing-notifications {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%; }
  .slack-interviewing-notifications .slack-interviewing-notifications__header {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .slack-interviewing-notifications .slack-interviewing-notifications__header .slack-interviewing-notifications__title {
      font-weight: 600;
      font-size: 18px;
      color: #000000; }
    .slack-interviewing-notifications .slack-interviewing-notifications__header .slack-interviewing-notifications__subtitle {
      font-size: 14px;
      color: #444444;
      margin-top: 4px;
      max-width: 520px; }
  .slack-interviewing-notifications .slack-interviewing-notifications__content {
    display: flex;
    flex-direction: column;
    gap: 12px; }
  .slack-interviewing-notifications .notification-referral-candidate {
    display: flex;
    gap: 25px;
    justify-content: flex-end; }
  .slack-interviewing-notifications .rp-candidate-notif-col-label {
    color: #444444 !important;
    font-weight: 500;
    font-size: 14px; }
  .slack-interviewing-notifications .label-switch-cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%; }
    .slack-interviewing-notifications .label-switch-cont .label {
      color: #444444;
      font-weight: 500;
      padding-bottom: 0; }
  .slack-interviewing-notifications .label {
    color: #444444;
    font-weight: 500;
    font-size: 14px; }
  .slack-interviewing-notifications .dark-color-bold {
    color: #444444 !important;
    font-weight: 500 !important;
    font-size: 14px !important; }
  .slack-interviewing-notifications .text-highlight {
    text-decoration: underline;
    font-style: italic;
    color: inherit; }
  .slack-interviewing-notifications .sub-label-sm {
    font-size: 12px !important;
    font-weight: 400 !important;
    color: #808080 !important; }
  .slack-interviewing-notifications .notification-container-display {
    display: flex;
    gap: 70px;
    justify-content: flex-end; }
  .slack-interviewing-notifications .tooltip-switch-wrapper {
    display: inline-flex; }
  .slack-interviewing-notifications .referral-p {
    font-size: 14px !important;
    font-weight: 400;
    margin: 0;
    margin-top: 5px;
    color: #444444 !important;
    font-style: italic;
    margin-left: -0.02rem; }
  .slack-interviewing-notifications .referral-note {
    color: #444444 !important;
    font-style: normal;
    font-weight: 500;
    font-size: 14px; }
  .slack-interviewing-notifications .link-text {
    color: #0f73bc;
    text-decoration: underline; }
  .slack-interviewing-notifications .slack-interviewing-notifications__divider {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0; }
  .slack-interviewing-notifications .slack-interviewing-notifications__channels {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%; }
    .slack-interviewing-notifications .slack-interviewing-notifications__channels .schedule-label {
      font-weight: 500;
      font-size: 14px;
      color: #444444;
      margin: 0; }
    .slack-interviewing-notifications .slack-interviewing-notifications__channels .slack-interviewing-notifications__selected-channels {
      display: flex;
      flex-direction: column;
      gap: 8px; }
      .slack-interviewing-notifications .slack-interviewing-notifications__channels .slack-interviewing-notifications__selected-channels .selected-channels-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        min-height: 40px;
        padding: 8px;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        background-color: #fafafa; }
        .slack-interviewing-notifications .slack-interviewing-notifications__channels .slack-interviewing-notifications__selected-channels .selected-channels-list .channel-chip {
          background-color: #3431AC;
          color: #ffffff; }
          .slack-interviewing-notifications .slack-interviewing-notifications__channels .slack-interviewing-notifications__selected-channels .selected-channels-list .channel-chip .MuiChip-deleteIcon {
            color: #ffffff; }
    .slack-interviewing-notifications .slack-interviewing-notifications__channels .slack-interviewing-notifications__channel-search {
      display: flex;
      flex-direction: column;
      gap: 8px;
      width: 100%; }
      .slack-interviewing-notifications .slack-interviewing-notifications__channels .slack-interviewing-notifications__channel-search .channel-autocomplete {
        width: 100% !important; }
        .slack-interviewing-notifications .slack-interviewing-notifications__channels .slack-interviewing-notifications__channel-search .channel-autocomplete.MuiAutocomplete-hasPopupIcon {
          width: 100% !important; }
        .slack-interviewing-notifications .slack-interviewing-notifications__channels .slack-interviewing-notifications__channel-search .channel-autocomplete .channel-input-no-top {
          margin-top: 0px !important; }
        .slack-interviewing-notifications .slack-interviewing-notifications__channels .slack-interviewing-notifications__channel-search .channel-autocomplete .MuiAutocomplete-inputRoot {
          padding: 4px 8px; }
      .slack-interviewing-notifications .slack-interviewing-notifications__channels .slack-interviewing-notifications__channel-search .channel-hint {
        font-size: 12px;
        color: #959595;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 4px; }
        .slack-interviewing-notifications .slack-interviewing-notifications__channels .slack-interviewing-notifications__channel-search .channel-hint .channel-hint-icon {
          font-size: 14px;
          color: #959595;
          flex-shrink: 0; }
.slack-user-sync__header {
  margin-bottom: 20px; }

.slack-user-sync__title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px; }

.slack-user-sync__subtitle {
  font-size: 14px;
  color: #6b7280; }

.slack-user-sync__content {
  display: flex;
  flex-direction: column;
  gap: 20px; }

.slack-user-sync__toggle-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: #f9fafb;
  border-radius: 8px; }

.slack-user-sync__toggle-label {
  flex: 1; }

.slack-user-sync__label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin: 0 0 4px 0; }

.slack-user-sync__description {
  font-size: 13px;
  color: #6b7280;
  margin: 0; }

.slack-user-sync__force-sync {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px; }

.slack-user-sync__force-btn {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0; }
  .slack-user-sync__force-btn:hover:not(:disabled) {
    background: #f9fafb;
    border-color: #9ca3af; }
  .slack-user-sync__force-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed; }

.slack-user-sync__force-hint {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  flex: 1; }
.slack-sync-modal {
  width: 480px;
  max-width: 100%;
  background: #ffffff;
  border-radius: 16px; }
  .slack-sync-modal__header {
    padding: 24px 24px 16px;
    background: #fafbfc;
    border-bottom: 1px solid #f0f1f3; }
  .slack-sync-modal__title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #111827; }
  .slack-sync-modal__body {
    padding: 24px; }
  .slack-sync-modal__toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px; }
  .slack-sync-modal__toggle-label {
    flex: 1; }
  .slack-sync-modal__toggle-text {
    font-size: 14px;
    font-weight: 500;
    color: #374151; }
  .slack-sync-modal__note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 20px;
    padding: 12px;
    background: #f3f4f6;
    border-radius: 8px;
    font-size: 13px;
    color: #6b7280; }
  .slack-sync-modal__note-icon {
    flex-shrink: 0;
    font-size: 18px !important;
    color: #9ca3af; }
  .slack-sync-modal__footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 16px;
    padding: 16px 24px;
    background: #fafbfc;
    border-top: 1px solid #f0f1f3; }
  .slack-sync-modal__btn {
    min-width: 100px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease; }
    .slack-sync-modal__btn.cancel-btn {
      background: #ffffff;
      border: 1px solid #d1d5db;
      color: #374151; }
      .slack-sync-modal__btn.cancel-btn:hover {
        background: #f9fafb;
        border-color: #9ca3af; }
    .slack-sync-modal__btn.btn-primary {
      background: #3431ac;
      border: 1px solid #3431ac;
      color: #ffffff; }
      .slack-sync-modal__btn.btn-primary:hover {
        background: #2a2889;
        border-color: #2a2889; }
.drag-alert-modal .modal-body {
  text-align: center; }
  .drag-alert-modal .modal-body svg {
    display: block;
    margin: 0 auto 16px; }
.AfterHiredArchivedModal__container .modal-body {
  text-align: center; }
  .AfterHiredArchivedModal__container .modal-body svg {
    display: block;
    margin: 0 auto 16px; }

.AfterHiredArchivedModal__container .modal-footer {
  padding: 16px 24px; }
.overview-payment-modal-content {
  width: 65%; }
  .overview-payment-modal-content .inner-content {
    margin-top: 25px; }
    .overview-payment-modal-content .inner-content .icon-container {
      margin-top: 30px;
      margin-bottom: 30px; }
    .overview-payment-modal-content .inner-content .aligned-text .select-reward {
      display: inline-block;
      margin-bottom: 5px; }
    .overview-payment-modal-content .inner-content .aligned-text label {
      display: flex;
      align-items: center;
      cursor: pointer; }
      .overview-payment-modal-content .inner-content .aligned-text label input {
        cursor: pointer;
        margin: 0 5px; }
    .overview-payment-modal-content .inner-content .aligned-text .invoice-body {
      padding-left: 20px; }
    .overview-payment-modal-content .inner-content .aligned-text .payment-amount {
      display: flex;
      -moz-column-gap: 200px;
           column-gap: 200px;
      justify-content: space-between; }
      .overview-payment-modal-content .inner-content .aligned-text .payment-amount .reward-greyed {
        color: #808080; }
    .overview-payment-modal-content .inner-content .aligned-text .payment-divider {
      background-color: #eeeeee;
      height: 1px;
      padding-right: 24px; }
    .overview-payment-modal-content .inner-content .summary-modal {
      display: flex;
      flex-direction: column;
      row-gap: 8px; }
      .overview-payment-modal-content .inner-content .summary-modal .payment-header {
        font-size: 16px;
        letter-spacing: 0.5px;
        margin-top: 16px; }
      .overview-payment-modal-content .inner-content .summary-modal .payment-header-currency {
        font-size: 14px;
        letter-spacing: 0.5px;
        margin-top: 16px; }
      .overview-payment-modal-content .inner-content .summary-modal .pl-4 {
        padding-left: 24px; }
      .overview-payment-modal-content .inner-content .summary-modal.payment-info {
        margin-top: 10px;
        color: #d85147; }
.payment-info {
  color: #666;
  font-size: 14px;
  margin-top: 10px;
  padding: 10px;
  background-color: #f5f5f5;
  border-radius: 4px; }

.payment-date-picker {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease; }
  .payment-date-picker:hover {
    border-color: #3431AC; }
  .payment-date-picker:focus {
    outline: none;
    border-color: #3431AC;
    box-shadow: 0 0 0 3px rgba(52, 49, 172, 0.1); }

.react-datepicker {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden; }

.react-datepicker__header {
  background: linear-gradient(135deg, #3431AC 0%, #2a2889 100%);
  border-bottom: none;
  padding: 16px 12px 12px;
  border-radius: 0; }

.react-datepicker__current-month {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px; }

.react-datepicker__day-names {
  margin-top: 8px; }

.react-datepicker__day-name {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 500;
  width: 36px;
  line-height: 36px;
  margin: 2px; }

.react-datepicker__navigation {
  top: 16px; }
  .react-datepicker__navigation--previous {
    left: 12px; }
  .react-datepicker__navigation--next {
    right: 12px; }

.react-datepicker__navigation-icon::before {
  border-color: #fff;
  border-width: 2px 2px 0 0; }

.react-datepicker__month {
  margin: 12px; }

.react-datepicker__day {
  width: 36px;
  line-height: 36px;
  margin: 2px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #374151;
  transition: all 0.15s ease; }
  .react-datepicker__day:hover {
    background-color: #eeedf7;
    color: #3431AC;
    border-radius: 8px; }
  .react-datepicker__day--selected {
    background: linear-gradient(135deg, #3431AC 0%, #2a2889 100%);
    color: #fff;
    font-weight: 600; }
    .react-datepicker__day--selected:hover {
      background: linear-gradient(135deg, #2a2889 0%, #1e1b5e 100%);
      color: #fff; }
  .react-datepicker__day--keyboard-selected {
    background-color: #e8e7f5;
    color: #3431AC; }
  .react-datepicker__day--today {
    font-weight: 600;
    color: #3431AC;
    background-color: #eeedf7; }
    .react-datepicker__day--today.react-datepicker__day--selected {
      color: #fff; }
  .react-datepicker__day--disabled {
    color: #d1d5db;
    cursor: not-allowed; }
    .react-datepicker__day--disabled:hover {
      background-color: transparent;
      color: #d1d5db; }
  .react-datepicker__day--outside-month {
    color: #9ca3af; }

.react-datepicker__triangle {
  display: none; }

.react-datepicker-popper {
  z-index: 1400; }

.react-datepicker-popper[data-placement^='bottom'] {
  padding-top: 8px; }

.react-datepicker-popper[data-placement^='top'] {
  padding-bottom: 8px; }
.selected-values {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px; }
  .selected-values .value {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    gap: 6px;
    background: rgba(52, 49, 172, 0.05);
    border: 1px solid #3431AC;
    border-radius: 200px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #3431AC; }
    .selected-values .value .close-icon {
      height: 17px;
      width: 17px;
      cursor: pointer; }
.selectedOptionsCont {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px; }

.selectedOption {
  border: 1px solid #3431AC;
  border-radius: 200px;
  background-color: rgba(52, 49, 172, 0.05);
  padding: 0px 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  padding: 4px 7px; }

.selectedLabel {
  font-size: 12px;
  font-weight: 700;
  color: #3431AC;
  margin: 0; }

.removeIcon {
  cursor: pointer;
  display: flex; }
.DueDateCalendar__container {
  display: flex;
  align-items: center; }
  .DueDateCalendar__container .from-date {
    width: 50px;
    height: 30px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    font-family: Roboto;
    font-size: 12px;
    background-color: #E9F9F1;
    color: #1A1C21;
    font-weight: 600; }
  .DueDateCalendar__container .question-text {
    border: 1px solid #E9F9F1;
    display: inline-block;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    width: 100%;
    height: 30px; }
  .DueDateCalendar__container .MuiDrawer-paper {
    width: 27%; }
  .DueDateCalendar__container .MuiTextField-root {
    width: 100%;
    margin-top: 0% !important; }
  .DueDateCalendar__container .MuiInputBase-inputMarginDense {
    padding-top: 6px !important;
    padding-left: 6px !important; }
.ReactDatePicker___container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%; }
  .ReactDatePicker___container .date-picker-legend, .ReactDatePicker___container .date-picker-lagend {
    position: absolute;
    top: -9px;
    left: 12px;
    background: #ffffff;
    padding: 0 6px;
    z-index: 101;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.4px;
    color: #6b7280;
    font-weight: 500; }
  .ReactDatePicker___container .react-datepicker-wrapper {
    width: 100%; }
  .ReactDatePicker___container .modern-date-input {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #1f2937;
    width: 100%;
    height: 44px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0 14px;
    cursor: pointer;
    transition: all 0.2s ease; }
    .ReactDatePicker___container .modern-date-input:hover {
      border-color: #3431AC; }
    .ReactDatePicker___container .modern-date-input:focus {
      outline: none;
      border-color: #3431AC;
      box-shadow: 0 0 0 3px rgba(52, 49, 172, 0.12); }
    .ReactDatePicker___container .modern-date-input::-moz-placeholder {
      color: #9ca3af;
      font-weight: 400; }
    .ReactDatePicker___container .modern-date-input::placeholder {
      color: #9ca3af;
      font-weight: 400; }

.react-datepicker {
  font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  border: none;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: #fff; }

.react-datepicker__header {
  background: linear-gradient(135deg, #3431AC 0%, #2a2889 100%);
  border-bottom: none;
  padding: 20px 16px 16px;
  border-radius: 0; }

.react-datepicker__current-month {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.3px; }

.react-datepicker__day-names {
  margin-top: 8px;
  display: flex;
  justify-content: space-around; }

.react-datepicker__day-name {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 600;
  width: 40px;
  line-height: 40px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px; }

.react-datepicker__navigation {
  top: 20px; }
  .react-datepicker__navigation--previous {
    left: 16px; }
  .react-datepicker__navigation--next {
    right: 16px; }

.react-datepicker__navigation-icon::before {
  border-color: #fff;
  border-width: 2px 2px 0 0;
  width: 8px;
  height: 8px; }

.react-datepicker__month-container {
  background: #fff; }

.react-datepicker__month {
  margin: 16px; }

.react-datepicker__week {
  display: flex;
  justify-content: space-around; }

.react-datepicker__day {
  width: 40px;
  line-height: 40px;
  margin: 3px 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  transition: all 0.15s ease; }
  .react-datepicker__day:hover {
    background-color: #eeedf7;
    color: #3431AC;
    border-radius: 10px; }
  .react-datepicker__day--selected {
    background: linear-gradient(135deg, #3431AC 0%, #2a2889 100%) !important;
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(52, 49, 172, 0.35); }
    .react-datepicker__day--selected:hover {
      background: linear-gradient(135deg, #2a2889 0%, #1e1b5e 100%) !important;
      color: #fff !important; }
  .react-datepicker__day--keyboard-selected {
    background-color: #e8e7f5;
    color: #3431AC; }
  .react-datepicker__day--today {
    font-weight: 700;
    color: #3431AC;
    background-color: #eeedf7;
    position: relative; }
    .react-datepicker__day--today::after {
      content: '';
      position: absolute;
      bottom: 6px;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: 4px;
      background: #3431AC;
      border-radius: 50%; }
    .react-datepicker__day--today.react-datepicker__day--selected {
      color: #fff;
      background: linear-gradient(135deg, #3431AC 0%, #2a2889 100%); }
      .react-datepicker__day--today.react-datepicker__day--selected::after {
        background: #fff; }
  .react-datepicker__day--in-range, .react-datepicker__day--in-selecting-range {
    background-color: #e8e7f5 !important;
    color: #1e1b5e !important;
    border-radius: 0; }
    .react-datepicker__day--in-range:hover, .react-datepicker__day--in-selecting-range:hover {
      background-color: #c4c1e8 !important;
      color: #1e1b5e !important; }
  .react-datepicker__day--range-start, .react-datepicker__day--range-end {
    background: linear-gradient(135deg, #3431AC 0%, #2a2889 100%) !important;
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(52, 49, 172, 0.35); }
    .react-datepicker__day--range-start:hover, .react-datepicker__day--range-end:hover {
      background: linear-gradient(135deg, #2a2889 0%, #1e1b5e 100%) !important;
      color: #fff !important; }
  .react-datepicker__day--range-start {
    border-radius: 10px 0 0 10px; }
    .react-datepicker__day--range-start.react-datepicker__day--range-end {
      border-radius: 10px; }
  .react-datepicker__day--range-end {
    border-radius: 0 10px 10px 0; }
  .react-datepicker__day--disabled {
    color: #d1d5db;
    cursor: not-allowed; }
    .react-datepicker__day--disabled:hover {
      background-color: transparent;
      color: #d1d5db; }
  .react-datepicker__day--outside-month {
    color: #9ca3af;
    opacity: 0.5; }

.react-datepicker__triangle {
  display: none; }

.react-datepicker-popper {
  z-index: 1400; }

.react-datepicker-popper[data-placement^='bottom'] {
  padding-top: 10px; }

.react-datepicker-popper[data-placement^='top'] {
  padding-bottom: 10px; }

.ArchivedDate__container {
  display: flex;
  align-items: center;
  position: relative; }
  .ArchivedDate__container .date-picker-lagend {
    padding: 10px 12px;
    background: linear-gradient(135deg, #eeedf7 0%, #e8e7f5 100%);
    border: 1px solid #c4c1e8;
    border-right: none;
    border-radius: 10px 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    color: #1e1b5e; }
  .ArchivedDate__container .react-datepicker-wrapper {
    flex: 1; }
  .ArchivedDate__container .custom-input {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0 10px 10px 0;
    width: 100%;
    padding: 10px 32px 10px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease; }
    .ArchivedDate__container .custom-input:hover {
      border-color: #3431AC; }
    .ArchivedDate__container .custom-input:focus {
      outline: none;
      border-color: #3431AC;
      box-shadow: 0 0 0 3px rgba(52, 49, 172, 0.12); }
    .ArchivedDate__container .custom-input::-moz-placeholder {
      color: #9ca3af;
      font-weight: 400; }
    .ArchivedDate__container .custom-input::placeholder {
      color: #9ca3af;
      font-weight: 400; }
  .ArchivedDate__container .clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s ease; }
    .ArchivedDate__container .clear:hover {
      background-color: #fee2e2; }
    .ArchivedDate__container .clear svg {
      height: 12px;
      width: 12px;
      color: #6b7280; }
.archive-confirm-modal {
  width: 560px; }
  .archive-confirm-modal__body {
    text-align: left; }
  .archive-confirm-modal .reasons-block {
    margin-bottom: 16px; }
    .archive-confirm-modal .reasons-block.hidden {
      display: none; }
  .archive-confirm-modal .reason-ask {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a2e;
    margin-bottom: 12px; }
  .archive-confirm-modal .reason-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px; }
  .archive-confirm-modal .reason-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.15s ease; }
    .archive-confirm-modal .reason-option:hover {
      border-color: #3431ac;
      background: #f8f7ff; }
  .archive-confirm-modal .reason-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    flex-shrink: 0;
    transition: all 0.15s ease; }
    .archive-confirm-modal .reason-radio.checked {
      border-color: #3431ac;
      background: #3431ac;
      box-shadow: inset 0 0 0 3px #fff; }
  .archive-confirm-modal .reason-label {
    font-weight: 600; }
  .archive-confirm-modal .note-input {
    margin-top: 8px; }
    .archive-confirm-modal .note-input input {
      width: 100%;
      padding: 10px 14px;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      font-size: 14px;
      color: #374151;
      outline: none;
      transition: border-color 0.15s ease; }
      .archive-confirm-modal .note-input input:focus {
        border-color: #3431ac; }
      .archive-confirm-modal .note-input input::-moz-placeholder {
        color: #9ca3af; }
      .archive-confirm-modal .note-input input::placeholder {
        color: #9ca3af; }
.lane-header {
  height: 30px;
  color: #18332f;
  font-size: 16px;
  font-weight: 700;
  padding: 30px 0px 0px;
  padding-top: 0px;
  margin: 0;
  width: 100%;
  display: flex; }
  .lane-header .lane-count-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding-left: 5px; }
  .lane-header .attention-lane-count {
    justify-content: space-between; }
  .lane-header .attention-count {
    background-color: #ff5454;
    color: white;
    display: flex;
    min-width: 22px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 8px;
    font-size: 11px;
    line-height: 13px;
    padding: 4px;
    margin-top: 2px;
    height: 20px; }
  .lane-header .lane-count {
    font-size: 14px;
    color: #959595;
    font-weight: 500;
    padding: 5px;
    line-height: 16px;
    display: flex;
    justify-content: center; }
@keyframes card-skeleton-shimmer {
  0% {
    background-position: -200% 0; }
  100% {
    background-position: 200% 0; } }

.card-skeleton {
  cursor: default;
  pointer-events: none;
  padding: 14px 14px 16px;
  position: relative;
  min-height: 120px;
  border-radius: 10px; }
  .card-skeleton .card-skeleton__bar,
  .card-skeleton .card-skeleton__circle {
    background: linear-gradient(90deg, #f0f0f0 25%, #fafafa 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: card-skeleton-shimmer 1.8s ease-in-out infinite; }
  .card-skeleton .card-skeleton__bar {
    height: 12px;
    border-radius: 6px;
    margin-bottom: 12px; }
    .card-skeleton .card-skeleton__bar:last-of-type {
      margin-bottom: 0; }
  .card-skeleton .card-skeleton__bar--top {
    width: 75%;
    max-width: 170px;
    height: 14px; }
  .card-skeleton .card-skeleton__bar--short {
    width: 45%;
    max-width: 100px; }
  .card-skeleton .card-skeleton__bar--mid {
    width: 60%;
    max-width: 130px; }
  .card-skeleton .card-skeleton__circles {
    display: flex;
    align-items: center;
    margin-top: 18px; }
  .card-skeleton .card-skeleton__circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-left: -4px;
    border: 2px solid #fff;
    box-sizing: content-box; }
    .card-skeleton .card-skeleton__circle:first-child {
      margin-left: 0; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.tracker-filters-wrapper-payout {
  margin-top: 15px;
  margin-bottom: 20px; }
  .tracker-filters-wrapper-payout .Select {
    width: inherit;
    display: inline-block; }
    .tracker-filters-wrapper-payout .Select .Select-input {
      display: none !important; }
    .tracker-filters-wrapper-payout .Select .Select-placeholder {
      display: none; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.tracker-filters-wrapper {
  margin-top: 15px;
  margin-bottom: 20px; }
  .tracker-filters-wrapper .Select {
    width: inherit;
    display: inline-block; }
    .tracker-filters-wrapper .Select .Select-input {
      display: none !important; }
    .tracker-filters-wrapper .Select .Select-placeholder {
      display: none; }
.empty-list-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: calc(50% - 45px);
  left: calc(50% - 175px); }
  .empty-list-content .empty-list-content-title {
    color: #343a4e;
    font-family: Roboto;
    font-size: 20px;
    font-weight: 400; }
  .empty-list-content .empty-list-content-button {
    background-color: #FFFFFF;
    border-radius: 3px;
    color: #22c76f;
    margin-top: 20px;
    margin-right: 9px;
    margin-left: 9px; }
  .empty-list-content .btn {
    padding: 13px 30px; }
@charset "UTF-8";
.city.input {
  border-bottom: 1px solid #727272;
  width: 50%; }
  .city.input::-moz-placeholder {
    color: #727272;
    opacity: 1; }
  .city.input::placeholder {
    color: #727272;
    opacity: 1; }

/* Shared with AppSearchField.scss — list headers + integrations search */
/* Neutralize Chrome/Safari autofill yellow/blue tint on MUI outlined inputs */
.tracker article {
  border-bottom: none;
  min-width: inherit;
  margin-bottom: 20px; }

.tracker .custom-title {
  display: flex;
  align-items: center;
  gap: 10px; }

.tracker .trello-card {
  border-radius: 10px;
  background-color: #ffffff;
  padding: 14px 14px 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 8px;
  position: relative;
  min-height: 110px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease; }
  .tracker .trello-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    transform: translateY(-1px);
    border-color: rgba(0, 0, 0, 0.1); }
  .tracker .trello-card:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04); }
  .tracker .trello-card .attention-required {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 12px; }
  .tracker .trello-card .status-container {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0; }
    .tracker .trello-card .status-container .status-pill {
      display: inline-flex;
      align-items: center;
      border-radius: 100px;
      padding: 2px 10px;
      white-space: nowrap;
      letter-spacing: 0.3px;
      font-weight: 500;
      font-size: 11px;
      height: 22px;
      transition: opacity 0.15s ease; }
      .tracker .trello-card .status-container .status-pill.paid {
        background-color: #ededfc;
        color: #3431ac; }
      .tracker .trello-card .status-container .status-pill.open {
        background-color: #e0f7fa;
        color: #00838f; }
      .tracker .trello-card .status-container .status-pill.past_due {
        background-color: #fce4ec;
        color: #c62828; }
      .tracker .trello-card .status-container .status-pill.due {
        background-color: #fff3e0;
        color: #e65100; }
      .tracker .trello-card .status-container .status-pill.na {
        background: #f5f5f5;
        color: #78909c; }
      .tracker .trello-card .status-container .status-pill.ineligible {
        background: #f5f5f5;
        color: #78909c; }
    .tracker .trello-card .status-container .archive-btn {
      display: flex !important;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      width: 24px;
      height: 24px;
      border-radius: 6px;
      transition: background-color 0.15s ease; }
      .tracker .trello-card .status-container .archive-btn:hover {
        background-color: #f0f0f0; }
      .tracker .trello-card .status-container .archive-btn svg {
        width: 16px;
        height: 16px; }
        .tracker .trello-card .status-container .archive-btn svg path {
          fill: #9e9e9e;
          transition: fill 0.15s ease; }
      .tracker .trello-card .status-container .archive-btn:hover svg path {
        fill: #616161; }
    .tracker .trello-card .status-container .star-btn {
      display: flex !important;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      width: 24px;
      height: 24px;
      border-radius: 6px;
      padding: 0;
      transition: background-color 0.15s ease; }
      .tracker .trello-card .status-container .star-btn:hover {
        background-color: #fff8e1; }
  .tracker .trello-card header {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #1a1a2e;
    padding-bottom: 4px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; }
    .tracker .trello-card header .trello-card-user-name {
      max-width: 100%;
      white-space: break-spaces;
      margin-right: 8px;
      word-break: break-word; }
  .tracker .trello-card .trello-card-description {
    display: flex;
    min-height: 20px;
    align-items: center;
    gap: 6px; }
    .tracker .trello-card .trello-card-description svg {
      fill: #78909c;
      height: 14px;
      flex-shrink: 0;
      vertical-align: middle; }
    .tracker .trello-card .trello-card-description .job-title-text {
      font-weight: 400;
      font-size: 13px;
      color: #78909c;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      line-height: 18px; }
    .tracker .trello-card .trello-card-description .job-ids-info {
      background-color: #1a1a2e;
      width: -moz-fit-content;
      width: fit-content;
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 11px;
      font-weight: 500;
      color: #fff;
      display: none;
      white-space: nowrap; }

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-2px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
    .tracker .trello-card .trello-card-description:hover .job-ids-info {
      display: flex;
      animation: fadeIn 0.25s ease-out; }
  .tracker .trello-card .trello-card-icons {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    padding-top: 8px;
    width: 100%;
    overflow: hidden;
    min-height: 32px; }
    .tracker .trello-card .trello-card-icons svg {
      fill: #546e7a; }
      .tracker .trello-card .trello-card-icons svg use {
        fill: #546e7a; }
    .tracker .trello-card .trello-card-icons .divider {
      height: 18px;
      border: none;
      border-left: 1px solid #e0e0e0;
      margin: 0 2px; }
    .tracker .trello-card .trello-card-icons a {
      font-weight: 500;
      font-size: 11px;
      line-height: 14px;
      text-align: center;
      color: #546e7a;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 4px 8px;
      gap: 4px;
      background: #f8f9fb;
      border: 1px solid #e8eaed;
      border-radius: 6px;
      cursor: pointer;
      max-height: 24px;
      transition: all 0.15s ease; }
      .tracker .trello-card .trello-card-icons a svg use {
        stroke: unset; }
      .tracker .trello-card .trello-card-icons a:hover {
        background: #eef0f4;
        border-color: #d0d4da;
        color: #37474f; }
    .tracker .trello-card .trello-card-icons a:first-child {
      margin-left: 0; }
  .tracker .trello-card .referrer-users-container {
    display: flex;
    align-items: center; }
  .tracker .trello-card .referrer-users {
    display: flex;
    align-items: center;
    margin-top: 8px; }
    .tracker .trello-card .referrer-users .no-referrer {
      font-size: 12px;
      line-height: 16px;
      color: #9e9e9e;
      font-style: italic; }
    .tracker .trello-card .referrer-users .referrer-user-avatar {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      font-weight: 600;
      font-size: 9px;
      line-height: 1;
      letter-spacing: 0.3px;
      border: 2px solid #fff;
      color: #fff !important;
      margin-left: -6px;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
      transition: transform 0.15s ease; }
      .tracker .trello-card .referrer-users .referrer-user-avatar:hover {
        transform: scale(1.1);
        z-index: 1; }
      .tracker .trello-card .referrer-users .referrer-user-avatar.referrer_count {
        background-color: #eceff1 !important;
        color: #546e7a !important;
        font-weight: 600;
        font-size: 10px; }
      .tracker .trello-card .referrer-users .referrer-user-avatar.primary {
        margin-left: 0; }
  .tracker .trello-card .tracker-display-tags-cont {
    margin-top: 10px;
    max-height: 50px;
    overflow: hidden; }

.atsWarning {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%; }

.referralProviderAtsWarning {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%; }

.integration-favicon-logo {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.15s ease; }
  .integration-favicon-logo:hover {
    opacity: 1; }
.list-view-container {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  height: calc(100vh - 240px);
  overflow-y: auto;
  overflow-x: auto;
  box-shadow: none !important; }

.list-view-loading,
.list-view-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 240px);
  font-size: 16px;
  color: #959595; }

.list-view-table {
  width: 100%;
  border-collapse: collapse; }
  .list-view-table thead {
    position: sticky;
    top: 0;
    background: #f9fafb;
    z-index: 10; }
    .list-view-table thead tr {
      border-bottom: 1px solid #e5e7eb; }
    .list-view-table thead th {
      padding: 12px 16px;
      text-align: left;
      font-size: 12px;
      font-weight: 600;
      color: #6b7280;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      white-space: nowrap; }
      .list-view-table thead th.col-candidate {
        width: 25%;
        min-width: 200px; }
      .list-view-table thead th.col-job {
        width: 20%;
        min-width: 150px; }
      .list-view-table thead th.col-referrer {
        width: 15%;
        min-width: 120px; }
      .list-view-table thead th.col-stage {
        width: 20%;
        min-width: 150px; }
  .list-view-table tbody tr {
    border-bottom: 1px solid #f0f1f5;
    transition: background-color 0.15s ease;
    cursor: pointer; }
    .list-view-table tbody tr:last-child {
      border-bottom: none; }
    .list-view-table tbody tr:hover {
      background-color: #f9fafb; }
  .list-view-table tbody td {
    padding: 12px 16px;
    font-size: 13px;
    color: #374151;
    text-align: left;
    vertical-align: middle; }
    .list-view-table tbody td.col-candidate .candidate-info {
      display: flex;
      flex-direction: column;
      gap: 4px; }
      .list-view-table tbody td.col-candidate .candidate-info .candidate-name {
        font-weight: 500;
        color: #1f2937; }
      .list-view-table tbody td.col-candidate .candidate-info .candidate-tags {
        display: flex;
        gap: 4px;
        flex-wrap: wrap; }
        .list-view-table tbody td.col-candidate .candidate-info .candidate-tags .tag {
          background-color: #e8f4f8;
          color: #0077b6;
          padding: 2px 8px;
          border-radius: 12px;
          font-size: 11px;
          font-weight: 500; }
        .list-view-table tbody td.col-candidate .candidate-info .candidate-tags .tag-more {
          color: #959595;
          font-size: 11px;
          padding: 2px 4px; }
    .list-view-table tbody td.col-job .job-info {
      display: flex;
      flex-direction: column;
      gap: 2px; }
      .list-view-table tbody td.col-job .job-info .job-title {
        font-weight: 500;
        color: #1f2937; }
      .list-view-table tbody td.col-job .job-info .job-id {
        font-size: 12px;
        color: #6b7280; }
    .list-view-table tbody td.col-referrer {
      color: #6b7280; }
    .list-view-table tbody td.col-stage .stage-label {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 4px;
      font-size: 13px;
      font-weight: 500;
      background-color: #f9fafb;
      color: #6b7280; }
.DueDateCalendar__container {
  display: flex;
  align-items: center;
  position: relative; }
  .DueDateCalendar__container .date-picker-lagend {
    padding: 5.5px 8px;
    background: #e9f9f1;
    border: 1px solid #e9f9f1;
    border-radius: 4px 0px 0px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    color: #1a1c21; }
  .DueDateCalendar__container .DatePicker {
    width: 100%;
    z-index: unset; }
    .DueDateCalendar__container .DatePicker .custom-input {
      background: #fbfcfd;
      border: 1px solid #e9f9f1;
      border-radius: 0px 4px 4px 0px;
      width: 100%;
      padding: 6.5px 7px; }
  .DueDateCalendar__container .custom-calendar {
    background: #ffffff;
    box-shadow: 0px 2px 4px rgba(147, 157, 177, 0.25);
    border-radius: 0px 0px 4px 4px; }
  .DueDateCalendar__container .-selected {
    background-color: #0fbc72 !important;
    border-radius: 4px !important; }
  .DueDateCalendar__container .custom-today-day::after {
    visibility: hidden;
    /* hide small border under the text */ }
  .DueDateCalendar__container .clear {
    position: absolute;
    right: 10px;
    top: 7px;
    cursor: pointer;
    z-index: 999; }
    .DueDateCalendar__container .clear svg {
      height: 12px;
      width: 12px; }
