@import "fonts.css";
html {
  display: none;
  opacity: 1;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: TEEE, sans-serif;
  background-color: #f8f8f8;
}

.nav-logo img {
  height: 32px;
}

img {
  image-orientation: none;
}

.side-nav {
  text-align: center;
  background-color: #fff;
}
.side-nav .logo {
  padding: 30px 15px;
}
.side-nav .logo img {
  height: 32px;
}
.side-nav-link {
  margin: 0 auto;
  padding: 15px 10px;
  opacity: 0.25;
  transition: all 0.6s;
  display: inline-block;
  max-width: 60px;
  filter: grayscale(60%);
}
.side-nav-link:hover {
  opacity: 0.7;
  filter: grayscale(0%);
}
.side-nav-link.active {
  opacity: 1;
  filter: grayscale(0%);
}
.side-nav-separator {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.side-nav-top, .side-nav-bottom {
  padding: 10px;
}
@media (max-width: 991px) {
  .side-nav {
    display: none !important;
  }
}

main .logo img {
  height: 28px;
}

.top-nav {
  position: absolute;
  padding: 26px 40px;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
}
@media (max-width: 991px) {
  .top-nav {
    padding: 0;
    position: relative;
  }
  .top-nav .form-control {
    height: 40px;
  }
}

h1,
.h1 {
  font-size: 40px;
  line-height: 55px;
  font-weight: 600;
  margin-bottom: 5px;
}

h2,
.h2 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}

h3,
.h3 {
  font-size: 20px;
}

h4,
.h4 {
  font-size: 14px;
  line-height: 20px;
}

h5 {
  font-size: 10px;
  line-height: 15px;
}

a.disabled {
  pointer-events: none;
  cursor: default;
}

.btn {
  font-size: 16px;
  line-height: 20px;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 4px;
  border: none;
}
.btn-primary {
  background-color: #253292;
}
.btn-primary:hover {
  background-color: rgb(26.6885245902, 36.0655737705, 105.3114754098);
}
.btn-secondary {
  background-color: #fff;
  color: #253292;
}
.btn-secondary:hover {
  color: #253292;
  background-color: rgb(242.25, 242.25, 242.25);
}
.btn-secondary-neutral {
  color: #000 !important;
}
.btn-secondary-gray {
  background-color: #f8f8f8;
}
.btn-secondary.disabled {
  background-color: #f8f8f8;
  border-color: #f8f8f8;
  color: #888888 !important;
}
.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 4px;
}
.btn-suffix {
  padding-left: 15px;
  padding-right: 15px;
}
.btn-suffix img {
  max-width: 18px;
}

/** Responsive button blocks */
@media all and (min-width: 992px) and (max-width: 1199px) {
  .btn-lg-block {
    width: 100% !important;
    display: block !important;
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media all and (min-width: 768px) and (max-width: 991px) {
  .btn-md-block {
    width: 100% !important;
    display: block !important;
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media all and (min-width: 576px) and (max-width: 767px) {
  .btn-sm-block {
    width: 100% !important;
    display: block !important;
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media all and (max-width: 575px) {
  .btn-xs-block {
    width: 100% !important;
    display: block !important;
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
.widget {
  border-radius: 4px;
  background: #fff;
  height: 100%;
  padding: 30px;
}
.widget-auto {
  height: auto;
}
.widget-tight {
  padding: 20px 30px;
}
@media (max-width: 768px) {
  .widget-tight {
    padding: 10px 15px;
  }
}
.widget-loose {
  padding: 40px;
}
.widget-header {
  font-size: 22px;
  line-height: 24px;
}
.widget.upload-widget.highlight {
  background-color: #f0f0f0;
}
.widget .chart-content {
  position: relative;
  width: 80%;
  margin: 0 auto;
}
.widget .chart-content .chart-label {
  position: absolute;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.widget .chart-content canvas {
  max-height: auto;
  max-width: 100%;
  margin: 0 auto;
}
.widget .chart-content-unchained {
  max-width: 100%;
}
.widget-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .widget-fill {
    position: relative;
  }
}
.widget-in-grid {
  margin-bottom: 30px;
  height: calc(100% - 30px);
}

.p-40 {
  padding: 40px;
}
@media (max-width: 991px) {
  .p-40 {
    padding: 30px;
  }
}

.pt-40-px40 {
  padding: 40px;
}
@media (max-height: 900px) {
  .pt-40-px40 {
    padding: 40px 40px 0px 40px;
  }
}
@media (max-width: 991px) {
  .pt-40-px40 {
    padding: 30px 30px 0px 30px;
  }
}

.px40 {
  padding: 0px 40px;
}
@media (max-width: 991px) {
  .px40 {
    padding: 0px 30px;
  }
}

.button-more {
  opacity: 0.2;
}

.user-avatar img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 22px;
}
@media (max-width: 768px) {
  .user-avatar img {
    width: 30px;
    height: 30px;
  }
}
.user-avatar .uploading {
  width: 44px;
  height: 44px;
  background: #ffb200;
  border-radius: 50%;
}
.user-avatar-active {
  display: inline-block;
  position: relative;
  /*
  &:after {
      content: '';
      width: 12px;
      height: 12px;
      position: absolute;
      bottom: 0;
      right: 0;
      z-index: 2;
      background-color: $success;
      border-radius: 50%;;
  }
  */
}
.user-avatar-active img {
  border-style: solid;
  border-width: 2px;
  border-color: #00bfa5;
}

.notification-active::after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  background-color: #ff3a29;
  border-radius: 50%;
}

@keyframes spinneranim {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.spinner {
  animation: 1.5s linear infinite spinneranim;
  animation-play-state: inherit;
  border: solid 3px #ffb200;
  border-bottom-color: #ffffff;
  border-radius: 50%;
  position: relative;
  top: 7px;
  left: 7px;
  content: "";
  height: 30px;
  width: 30px;
}

.form-search .form-control {
  background: none;
  border: none;
  outline: none;
  box-shadow: none !important;
}

.search-input {
  max-width: 180px;
}

.dropdown-menu-right {
  border: none;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  text-align: right;
}
.dropdown-menu-right .dropdown-item {
  padding: 0.5rem 1.5rem;
  transition: all 0.6s !important;
}
.dropdown-menu-left {
  border: none;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  text-align: left;
}
.dropdown-menu-left .dropdown-item {
  padding: 0.5rem 1.5rem;
  transition: all 0.6s !important;
}

.hidden-scrollbar::-webkit-scrollbar {
  display: none;
}

.hidden-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.font-weight-heavy {
  font-weight: 700;
}

.font-weight-medium {
  font-weight: 600;
}

.split-top {
  padding-top: 45px;
  padding-bottom: 30px;
}

.companio-image {
  /*
  height: calc(100% - 15px);
  width:auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);;
  */
  position: relative;
  bottom: 0;
  max-height: 240px;
  max-width: 100%;
  border-radius: 4px;
}

.headline-image {
  height: calc(100% - 15px);
  max-height: 200px;
  width: auto;
}

.pagination {
  margin-top: 20px;
  text-align: right;
  justify-content: flex-end;
}
.pagination .page-item {
  margin: 0 10px;
}
.pagination .page-item:first-child {
  margin-left: 0;
}
.pagination .page-item:last-child {
  margin-right: 0;
}
.pagination .page-item.disabled img {
  opacity: 0.2;
}
.pagination .page-link {
  line-height: 32px;
  width: 32px;
  padding: 0;
  border-radius: 4px;
  border: none;
  text-align: center;
  color: #cccccc;
}

.rounded {
  border-radius: 4px;
}

.banner-below-image {
  padding: 0 0 0 30px;
}
.banner-below-image img {
  transform: translateY(-24px);
  max-height: 160px;
  object-fit: contain;
}
.banner-below-content {
  padding: 30px;
  color: #fff;
}
.banner-below-cta {
  padding: 30px;
}

.bank-icon {
  max-width: 64px;
}

.contact-row th,
.contact-row td {
  vertical-align: middle;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  order: 2;
  font-size: 14px;
  line-height: 20px;
  padding: 20px 12px;
}
@media (max-width: 768px) {
  .contact-row th:first-child,
  .contact-row td:first-child {
    padding-right: 45px;
  }
  .contact-row th:last-child,
  .contact-row td:last-child {
    position: absolute;
    border: none;
    top: 0;
    right: 0;
  }
  .contact-row th:nth-last-child(2),
  .contact-row td:nth-last-child(2) {
    border: none;
  }
}
.contact-row th.tight,
.contact-row td.tight {
  width: 1px;
}
.contact-row-primary {
  margin: 0;
}
.contact-row-secondary {
  opacity: 0.4;
  margin: 0;
}
@media (max-width: 768px) {
  .contact-row {
    /* background: #f8f8f8; */
    border-radius: 4px;
    display: block;
    margin: 8px 0;
    display: flex;
    flex-direction: column;
    position: relative;
  }
}

.overflow-scroll {
  overflow: auto;
}

.notification-alert {
  padding: 20px;
  color: #999999;
}
.notification-alert-icon {
  margin-right: 20px;
}
.notification-alert img {
  width: 50px;
}

.upload-preview {
  position: relative;
  display: block;
  border-radius: 100px;
  overflow: hidden;
  width: 130px;
  height: 130px;
  margin-bottom: 30px;
  background-image: url(../icons/icon-upload-preview.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.upload-preview-sm {
  width: 100px;
  height: 100px;
  margin-bottom: 8px;
}

.company-logo {
  width: 90px;
  height: 90px;
  margin-bottom: 30px;
  border-radius: 100px;
  background-image: url(../icons/icon-upload-preview.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}
.form-group label {
  color: rgba(0, 0, 0, 0.4);
  font-size: 18px;
}
.form-group label.label-small {
  font-size: 16px !important;
}

.label-small {
  word-wrap: break-word !important;
  white-space: normal !important;
}

.form-control {
  background-color: #f8f8f8 !important;
  border: none;
  height: 50px;
  border-radius: 4px;
  transition: all 0.3s;
  padding-left: 20px;
}
.form-control-light {
  background-color: #fff !important;
}
.form-control[type=text], .form-control[type=password] {
  /** font-size: 14px; **/
  /** color: rgba(#000, .4); **/
}
.form-control + label {
  position: absolute;
  top: 14px;
  left: 21px;
  color: #000;
  opacity: 0.4;
  font-size: 14px;
  transition: all 0.3s;
  pointer-events: none;
}
.form-control:focus:not(:placeholder-shown) + label, .form-control:not(:placeholder-shown) + label {
  top: -16px;
  font-size: 10px;
  left: 0px;
}
.form-control::placeholder {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.4);
}
.form-control[disabled], .form-control.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.form-control[disabled] + label, .form-control.disabled + label {
  opacity: 0.2 !important;
}
.form-control[disabled].keep-opaque, .form-control.disabled.keep-opaque {
  opacity: 1;
}
.form-control[disabled].keep-opaque + label, .form-control.disabled.keep-opaque + label {
  opacity: 0.4 !important;
}

textarea.form-control {
  height: 130px;
}

.add-ticket-textarea {
  height: 20rem;
}

.update-ticket-textarea {
  height: 6rem;
}
@media (min-width: 991px) {
  .update-ticket-textarea {
    height: 30rem;
  }
}

.wysiwyg-icons-area {
  position: absolute;
  top: 0.5rem;
  right: 0;
}
.wysiwyg-icons-area img {
  width: 24px;
  height: 24px;
}

select.form-control {
  border-right: 1rem solid #f8f8f8;
}

.custom-select + label {
  position: absolute;
  top: 14px;
  left: 21px;
  color: #000;
  opacity: 0.4;
  font-size: 14px;
  transition: all 0.3s;
  pointer-events: none;
}
.custom-select:focus + label, .custom-select:not([value=""]):valid + label {
  top: -16px;
  font-size: 10px;
  left: 0px;
}

.custom-control {
  padding-left: 30px;
  min-height: 30px;
}

.custom-control-label {
  white-space: nowrap;
  padding-left: 20px;
}
.custom-control-label::before {
  width: 30px;
  height: 30px;
  margin-top: -8px;
  left: -30px;
}
.custom-control-label::after {
  margin-top: -8px;
  width: 30px;
  height: 30px;
  left: -30px;
}

.custom-file-input {
  height: 50px;
}

.custom-file-label {
  border: none;
  line-height: 50px;
  color: rgba(0, 0, 0, 0.4);
}
.custom-file-label::after {
  content: "Upload" !important;
  height: 50px;
  line-height: 20px;
  padding: 15px 28px;
  border: none;
  border-radius: 4px;
  background-color: #253292;
  color: #fff;
}
@media (max-width: 767px) {
  .custom-file-label {
    position: relative;
    line-height: 1.5rem;
    margin-top: -3rem;
    padding-left: 0;
    padding-right: 0;
  }
  .custom-file-label::after {
    position: relative;
    margin-top: 1rem;
    text-align: center;
  }
}

.info-dot {
  width: 14px;
  height: 14px;
  display: inline-block;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 40px;
  margin-bottom: -2px;
}
.info-dot-success {
  background-color: #00bfa5;
}
.info-dot-warning {
  background-color: #ffb200;
}
.info-dot-primary {
  background-color: #253292;
}
.info-dot-danger {
  background-color: #ff3a29;
}

.change-month {
  line-height: 16px;
}
.change-month-btn {
  vertical-align: middle;
  display: inline-block;
  margin-top: -5px;
  opacity: 0.2;
  transition: all 0.3s;
}
.change-month-btn:hover {
  opacity: 0.5;
}

.upload-drop {
  height: 20vw;
  border: 2px dashed #d8d8d8;
  border-radius: 4px;
  opacity: 0.4;
  font-size: 22px;
  color: rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: all 300ms ease-in-out;
}

.card {
  border: none;
  border-radius: 4px;
  min-height: calc(100% - 30px);
  margin-bottom: 30px;
}
.card-header {
  padding: 30px 20px;
  background: none;
  border: none;
}
.card-body {
  padding: 0 20px;
}
.card-footer {
  padding: 30px 20px;
  background: none;
  border: none;
}
.card-auto {
  height: auto !important;
  min-height: 0;
}
.card.card-bg-danger {
  background-color: rgba(255, 90, 90, 0.2);
}
.card.card-bg-warning {
  background-color: #ffe5d3;
}
.card.card-border-danger {
  border: 2px solid #ff3a29;
}
.card.card-border-warning {
  border: 2px solid #ffb200;
}
.card.card-border-success {
  border: 2px solid #00bfa5;
}

.badge {
  color: #000;
  border-radius: 6px;
  padding: 5px 13px;
  font-size: 10px;
  font-weight: 7000;
}
.badge-success {
  background: #d6fffa;
}
.badge-notification {
  background: #ff3a29;
  color: white;
  padding: 3px 5px;
  border-radius: 50%;
  position: relative;
  top: -2px;
}
.badge-notes {
  background: #253292;
  color: white;
  padding: 3px 5px;
  border-radius: 50%;
  position: relative;
  top: -2px;
}
.badge-danger {
  background: rgba(255, 90, 90, 0.2);
}
.badge-primary {
  background: #ebf0ff;
}

.customer-flag {
  position: absolute;
}
.customer-flag img {
  bottom: 1rem;
  left: -0.5rem;
  width: 20px;
  height: auto;
  position: relative;
  border-radius: 0;
}

.text-muted {
  color: #000;
  opacity: 0.4;
}

.text-faded {
  opacity: 0.4;
}

.text-success {
  color: #00bfa5 !important;
}

.text-danger {
  color: #ff3a29 !important;
}

.text-info {
  color: #17a2b8 !important;
}

main.scroll {
  max-height: 100%;
  overflow: auto;
}

.v-top {
  vertical-align: top !important;
}

.bg-primary {
  background-color: #253292 !important;
}
.bg-primary-light {
  background-color: #ebf0ff !important;
}
.bg-success {
  background-color: #00bfa5 !important;
}
.bg-success-light {
  background-color: #d6fffa !important;
}
.bg-danger {
  background-color: #ff3a29 !important;
}
.bg-danger-light {
  background-color: rgba(255, 90, 90, 0.2) !important;
}

.btn + .btn {
  margin-left: 30px;
}

.payment-method {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #fff;
  padding: 30px;
}
.payment-method-wrap {
  position: relative;
  padding-bottom: 58%;
  margin-bottom: 2rem;
}
.payment-method-credit-card {
  background: transparent url(../images/payment-method-credit-card.jpg) center center no-repeat;
  background-size: contain;
}
.payment-method-bank-account {
  background: transparent url(../images/payment-method-bank-account.jpg) center center no-repeat;
  background-size: contain;
}

.custom-select {
  background: #f8f8f8 url(../icons/icon-chevron.svg) no-repeat right 0.75rem center/17px 10px;
  border: none;
  height: 50px;
  border-radius: 4px;
  transition: all 0.3s;
  padding-left: 20px;
}

.input-group-text {
  background-color: #f8f8f8;
  border: none;
  color: rgba(0, 0, 0, 0.4);
}

.grey {
  opacity: 0.4;
}

.text-grey {
  color: rgba(0, 0, 0, 0.4);
}

.settings-nav {
  background-color: #fff;
  border-radius: 4px;
}
.settings-nav .nav-link {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.4);
}
.settings-nav .nav-link.active {
  color: #000;
}
.settings-nav .nav-item {
  padding: 0 24px;
}
.settings-nav .nav-item:last-child .nav-link {
  border: none;
}

.custom-radio .custom-control-label {
  padding-left: 30px;
}
.custom-radio .custom-control-label:before, .custom-radio .custom-control-label:after {
  width: 30px;
  height: 30px;
  margin-top: -9px;
}
.custom-radio .custom-control-input:checked + label {
  color: #000;
}

.ticket-message {
  padding: 20px 30px;
  border-radius: 4px;
  margin-top: 30px;
  margin-bottom: 60px;
  position: relative;
}
@media (min-width: 991px) {
  .ticket-message-list {
    margin: 0 -22px;
    padding: 0 22px;
  }
}
@media (max-width: 1300px) {
  .ticket-message .btn {
    width: 100%;
    line-break: anywhere;
  }
}
.ticket-message-incoming {
  background: #ebf0ff;
}
.ticket-message-incoming .user-avatar {
  right: -15px;
  position: absolute;
  top: 0;
  transform: translateY(-50%);
}
.ticket-message-incoming time {
  font-size: 10px;
  color: #888888;
  line-height: 15px;
  position: absolute;
  top: -22px;
  left: 0;
}
.ticket-message-outgoing {
  background: #f8f8f8;
}
.ticket-message-outgoing .user-avatar {
  left: -15px;
  position: absolute;
  top: 0;
  transform: translateY(-50%);
}
.ticket-message-outgoing time {
  font-size: 10px;
  color: #888888;
  line-height: 15px;
  position: absolute;
  top: -22px;
  right: 0;
}
.ticket-message-error {
  background: rgba(255, 90, 90, 0.2);
}
.ticket-message-success {
  background: #d6fffa;
}
.ticket-message-warning {
  background: #ffe5d3;
}
.ticket-message-loading {
  background: #f8f8f8;
}

.navbar-toggler {
  padding: 0;
}
.navbar-toggler:focus {
  outline: 5px auto #ebf0ff;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2841, 98, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .nav-link span {
  opacity: 0.25;
}
.navbar-light .nav-link img {
  opacity: 0.25;
  width: 16px;
  height: 16px;
}
.navbar-light .nav-link.active img {
  opacity: 1;
}
.navbar-light .nav-link.active span {
  opacity: 1;
}

.progress {
  height: 8px;
}

/* Datepicker */
.datepicker {
  border-radius: 0.375rem;
  direction: ltr;
}

.datepicker-inline {
  width: 220px;
}

.datepicker-rtl {
  direction: rtl;
}
.datepicker-rtl.dropdown-menu {
  left: auto;
}
.datepicker-rtl table tr td span {
  float: right;
}

.datepicker-dropdown {
  top: 0;
  left: 0;
  padding: 20px 22px;
  box-shadow: 0 50px 100px rgba(50, 50, 93, 0.1), 0 15px 35px rgba(50, 50, 93, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
}
.datepicker-dropdown.datepicker-orient-left:before {
  left: 6px;
}
.datepicker-dropdown.datepicker-orient-left:after {
  left: 7px;
}
.datepicker-dropdown.datepicker-orient-right:before {
  right: 6px;
}
.datepicker-dropdown.datepicker-orient-right:after {
  right: 7px;
}
.datepicker-dropdown.datepicker-orient-bottom:before {
  top: -7px;
}
.datepicker-dropdown.datepicker-orient-bottom:after {
  top: -6px;
}
.datepicker-dropdown.datepicker-orient-top:before {
  bottom: -7px;
  border-top: 7px solid white;
  border-bottom: 0;
}
.datepicker-dropdown.datepicker-orient-top:after {
  bottom: -6px;
  border-top: 6px solid #fff;
  border-bottom: 0;
}

.datepicker table {
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.datepicker table tr td {
  border-radius: 50%;
}
.datepicker table tr th {
  font-weight: 500;
  border-radius: 0.375rem;
}
.datepicker table tr td,
.datepicker table tr th {
  font-size: 0.875rem;
  width: 36px;
  height: 36px;
  transition: all 0.15s ease;
  text-align: center;
  border: none;
}

.table-cell-sm {
  max-width: 8rem;
}

.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: transparent;
}

.datepicker table tr td.old, .datepicker table tr td.new {
  color: #adb5bd;
}
.datepicker table tr td.day:hover, .datepicker table tr td.focused {
  cursor: pointer;
  background: white;
}
.datepicker table tr td.disabled {
  cursor: default;
  color: #dee2e6;
  background: none;
}
.datepicker table tr td.disabled:hover {
  cursor: default;
  color: #dee2e6;
  background: none;
}
.datepicker table tr td.highlighted {
  border-radius: 0;
}
.datepicker table tr td.highlighted.focused {
  background: #2962ff;
}
.datepicker table tr td.highlighted.disabled {
  color: #ced4da;
  background: #2962ff;
}
.datepicker table tr td.highlighted.disabled:active {
  color: #ced4da;
  background: #2962ff;
}
.datepicker table tr td.today {
  background: white;
}
.datepicker table tr td.today.focused {
  background: white;
}
.datepicker table tr td.today.disabled {
  color: #8898aa;
  background: white;
}
.datepicker table tr td.today.disabled:active {
  color: #8898aa;
  background: white;
}
.datepicker table tr td.range {
  color: #fff;
  border-radius: 0;
  background: #2962ff;
}
.datepicker table tr td.range.focused {
  background: #3b53de;
}
.datepicker table tr td.range.disabled {
  color: #8a98eb;
  background: #324cdd;
}
.datepicker table tr td.range.disabled:active {
  color: #8a98eb;
  background: #324cdd;
}
.datepicker table tr td.range.day.disabled:hover {
  color: #8a98eb;
  background: #324cdd;
}
.datepicker table tr td.range.highlighted.focused {
  background: #cbd3da;
}
.datepicker table tr td.range.highlighted.disabled {
  color: #dee2e6;
  background: #f5f6f8;
}
.datepicker table tr td.range.highlighted.disabled:active {
  color: #dee2e6;
  background: #f5f6f8;
}
.datepicker table tr td.range.today.disabled {
  color: #fff;
  background: #2962ff;
}
.datepicker table tr td.range.today.disabled:active {
  color: #fff;
  background: #2962ff;
}
.datepicker table tr td.day.range-start {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.datepicker table tr td.day.range-end {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.datepicker table tr td.day.range-start.range-end {
  border-radius: 50%;
}
.datepicker table tr td.selected {
  color: #fff;
  background: #2962ff;
}
.datepicker table tr td.selected.highlighted, .datepicker table tr td.selected:hover, .datepicker table tr td.selected.highlighted:hover {
  color: #fff;
  background: #2962ff;
}
.datepicker table tr td.day.range:hover {
  color: #fff;
  background: #2962ff;
}
.datepicker table tr td.active {
  color: #fff;
  background: #2962ff;
  box-shadow: none;
}
.datepicker table tr td.active.highlighted, .datepicker table tr td.active:hover, .datepicker table tr td.active.highlighted:hover {
  color: #fff;
  background: #2962ff;
  box-shadow: none;
}
.datepicker table tr td span {
  line-height: 54px;
  display: block;
  float: left;
  width: 23%;
  height: 54px;
  margin: 1%;
  cursor: pointer;
  border-radius: 4px;
}
.datepicker table tr td span:hover, .datepicker table tr td span.focused {
  background: #f5f6f8;
}
.datepicker table tr td span.disabled {
  cursor: default;
  color: #dee2e6;
  background: none;
}
.datepicker table tr td span.disabled:hover {
  cursor: default;
  color: #dee2e6;
  background: none;
}
.datepicker table tr td span.active {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td span.active:hover {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td span.active.disabled {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td span.active.disabled:hover {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td span.old, .datepicker table tr td span.new {
  color: #8898aa;
}
.datepicker .datepicker-switch {
  width: 145px;
  cursor: pointer;
}
.datepicker .prev,
.datepicker .next,
.datepicker tfoot tr th {
  cursor: pointer;
}
.datepicker .datepicker-switch:hover,
.datepicker .prev:hover,
.datepicker .next:hover,
.datepicker tfoot tr th:hover {
  background: #f5f6f8;
}
.datepicker .prev.disabled,
.datepicker .next.disabled {
  visibility: hidden;
}
.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}

/** Sweet alert */
.swal2-popup .swal2-title {
  font-size: 1.2em;
}

/** loading animation */
.loading-animation-container {
  position: relative;
}

.dot-flashing {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #253292;
  color: #253292;
  animation: dotFlashing 1s infinite linear alternate;
  animation-delay: 0.5s;
}
.dot-flashing::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: -15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #253292;
  color: #253292;
  animation: dotFlashing 1s infinite alternate;
  animation-delay: 0s;
}
.dot-flashing::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #253292;
  color: #253292;
  animation: dotFlashing 1s infinite alternate;
  animation-delay: 1s;
}

@keyframes dotFlashing {
  0% {
    background-color: #253292;
  }
  50%, 100% {
    background-color: #ebf0ff;
  }
}
/** rating */
.rating-star {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../icons/empty-star.svg);
}
.rating-star-selected {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../icons/star.svg);
}
.rating-star-empty {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../icons/empty-star.svg);
}
.rating-star-unselected {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../icons/hover-star.svg);
}
.rating:hover .rating-star :not(.fixed-rate) {
  background-image: url(../icons/star.svg);
}
.rating .rating-star:hover ~ .rating-star :not(.fixed-rate) {
  background-image: url(../icons/empty-star.svg);
}

/** Quill WYSIWYG editor **/
.ql-toolbar {
  background-color: #f8f8f8;
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 1px solid #d8d8d8;
  -moz-border-radius: 0px;
  -webkit-border-radius: 4px 4px 0px 0px;
  border-radius: 4px 4px 0px 0px;
}

.ql-container.ql-snow {
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  border-radius: 4px;
}

.ql-editor {
  background-color: #f8f8f8;
  border-radius: 4px;
  font-family: "TEEE";
  font-size: 1rem;
}

.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 {
  line-height: 1.5rem;
  margin-bottom: 0.5rem !important;
}

.ql-editor.ql-blank::before {
  font-style: normal;
  color: #d8d8d8;
}

@media (max-width: 434px) {
  .mt-xxs-5 {
    margin-top: 3rem !important;
  }
}

[data-theme=dark] {
  background-color: #111 !important;
  color: #f7f7f7;
}

[data-theme=dark] .widget {
  background-color: #2c2c2c !important;
}

[data-theme=dark] .upload-drop {
  color: rgba(255, 255, 255, 0.8) !important;
}

[data-theme=dark] .bg-black {
  background-color: #fff !important;
}

[data-theme=dark] .bg-dark {
  background-color: #eee !important;
}

[data-theme=dark] .bg-light {
  background-color: #222 !important;
}

[data-theme=dark] .bg-white {
  background-color: #000 !important;
}

[data-theme=dark] .text-grey {
  color: rgba(255, 255, 255, 0.8) !important;
}

[data-theme=dark] .settings-nav {
  background-color: #111 !important;
  color: #fff !important;
}

[data-theme=dark] .settings-nav .nav-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

[data-theme=dark] .form-control:focus:not(:placeholder-shown) + label,
[data-theme=dark] .form-control:not(:placeholder-shown) + label label {
  color: rgba(255, 255, 255, 0.8);
}

[data-theme=dark] label {
  color: #6c757d;
}

[data-theme=dark] .table {
  color: #babed3;
}

[data-theme=dark] .form-control {
  background: #b8b8b8 !important;
}

[data-theme=dark] .form-search img {
  filter: brightness(0) invert(1) !important;
}

[data-theme=dark] .form-search input {
  background: #111 !important;
}

[data-theme=dark] .form-search input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

[data-theme=dark] .button-more img {
  filter: brightness(0) invert(1) !important;
}

[data-theme=dark] .card {
  background-color: #222 !important;
}

[data-theme=dark] .side-nav {
  background-color: #222 !important;
}
[data-theme=dark] .side-nav img:not(.mainLogo) {
  filter: brightness(0) invert(1) !important;
}

[data-theme=dark] .nav-link {
  background-color: #000 !important;
  color: rgba(255, 255, 255, 0.8) !important;
}
[data-theme=dark] .nav-link img:not(.mainLogo) {
  filter: brightness(0) invert(1) !important;
}

[data-theme=dark] .change-month-btn {
  opacity: 1;
}
[data-theme=dark] .change-month-btn.disabled {
  opacity: 0.4 !important;
}
[data-theme=dark] .change-month-btn img:not(.mainLogo) {
  filter: brightness(0) invert(1) !important;
  opacity: 1;
}

[data-theme=dark] .contact-row td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

[data-theme=dark] .ticket-message-outgoing {
  background: #a1a1a1;
}

[data-theme=dark] .ticket-message-incoming {
  background: #f0f0f0;
  color: #111;
}

[data-theme=dark] .payment-method-credit-card,
[data-theme=dark] .payment-method-bank-account {
  border-radius: 20px;
}

[data-theme=dark] .ql-editor {
  color: #000 !important;
}

[data-theme=dark] .text-muted {
  color: #888888 !important;
  opacity: 1;
}

[data-theme=dark] .contact-row-secondary {
  opacity: 0.8 !important;
}

[data-theme=dark] .page-item.disabled .page-link {
  background: #888888;
}

[data-theme=dark] .pagination .page-item.disabled img {
  opacity: 0.4;
}

[data-theme=dark] .grey {
  opacity: 0.8;
}

[data-theme=dark] .badge {
  color: #fff !important;
}
[data-theme=dark] .badge-danger {
  background-color: rgba(255, 90, 90, 0.4) !important;
}
[data-theme=dark] .badge-success {
  background-color: rgba(214, 255, 250, 0.4) !important;
}
[data-theme=dark] .badge-light {
  background-color: rgba(248, 249, 250, 0.4) !important;
}
[data-theme=dark] .badge-info {
  background-color: #dbf7fc !important;
}
[data-theme=dark] .badge-primary {
  background-color: rgba(235, 240, 255, 0.4) !important;
}
[data-theme=dark] .badge-warning {
  background-color: rgba(255, 193, 7, 0.4) !important;
}

.position-absolute-y-center-r {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 4px auto;
}

.rounded-border-light-gray {
  border: 1px solid #dfe0eb !important;
  border-radius: 8px !important;
}

[data-theme=dark] .rounded-border-light-gray {
  border: 1px solid #2c2c2c !important;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-30 {
  margin-top: 30px !important;
}

.text-small-bold-gray {
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 20px !important;
  color: #4b506d !important;
}

[data-theme=dark] .text-small-bold-gray {
  color: #babed3 !important;
}

.text-tiny-bold-gray {
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 16px !important;
  color: #4b506d !important;
}

.text-blue-subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: #253292;
}

[data-theme=dark] .text-blue-subtitle {
  color: #007bff !important;
}

.topic-number {
  color: #FF4EA1;
}

.input-referral-link {
  width: 100%;
  padding: 16px 11px !important;
  background-color: #fcfdfe;
  opacity: 0.4;
}

[data-theme=dark] .input-referral-link {
  background-color: #000000;
}

.referral-middle-responsive-container {
  flex-wrap: nowrap !important;
  display: flex !important;
  flex-direction: row !important;
  margin-bottom: 30px;
  width: 100%;
}
.referral-middle-responsive-container :first-child {
  margin-right: 10px;
}
.referral-middle-responsive-container :last-child {
  margin-left: 10px;
}
@media (max-width: 1200px) {
  .referral-middle-responsive-container {
    flex-direction: column !important;
  }
  .referral-middle-responsive-container :first-child {
    margin: 0px;
  }
  .referral-middle-responsive-container :last-child {
    margin-left: 0px;
    margin-top: 20px;
  }
}

.referral-top-responsive-container {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  margin: 0px 0px 30px 0px !important;
}
.referral-top-responsive-container .referral-top-right-side {
  width: 50%;
  margin-right: 10px;
}
.referral-top-responsive-container .referral-top-left-side {
  width: 50%;
  margin-left: 10px;
}
@media (max-width: 768px) {
  .referral-top-responsive-container {
    flex-direction: column-reverse;
  }
  .referral-top-responsive-container .referral-top-right-side {
    width: 100%;
    margin-right: 10px;
  }
  .referral-top-responsive-container .referral-top-left-side {
    width: 100%;
    margin-left: 0px;
  }
}

[data-theme=dark] .referral-top-responsive-container .referral-top-right-side {
  background-color: #2c2c2c !important;
}
[data-theme=dark] .referral-top-responsive-container .referral-top-left-side div {
  background-color: #2c2c2c !important;
}

.referral-step-box-responsive {
  padding: 30px 30px 0px 30px !important;
  width: 100% !important;
  background-color: #ffffff;
  display: flex;
}
.referral-step-box-responsive img {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .referral-step-box-responsive {
    flex-direction: column !important;
  }
  .referral-step-box-responsive :last-child {
    margin-left: 0px;
  }
}
@media (max-width: 576px) {
  .referral-step-box-responsive {
    padding: 10px;
  }
}

[data-theme=dark] .referral-step-box-responsive {
  background-color: #2c2c2c !important;
}

.referral-stats {
  display: flex !important;
  justify-content: space-between;
}
.referral-stats div {
  padding: 40px;
}
.referral-stats div:first-child {
  margin-right: 10px;
}
.referral-stats div:last-child {
  margin-left: 10px;
}
@media (max-width: 1200px) {
  .referral-stats div {
    padding: 30px;
  }
}
@media (max-width: 992px) {
  .referral-stats div {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .referral-stats {
    margin-bottom: 30px;
  }
  .referral-stats div {
    padding: 30px;
  }
}
@media (max-width: 576px) {
  .referral-stats {
    flex-direction: column;
  }
  .referral-stats div {
    margin: 0px 0px 0px 0px !important;
  }
  .referral-stats div:first-child {
    margin-bottom: 30px !important;
  }
}

.share-social-media-container {
  width: 100%;
  display: flex !important;
  align-items: center;
}
@media (max-width: 576px) {
  .share-social-media-container {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .share-social-media-container :last-child {
    margin-left: 0px !important;
  }
}

.social-media-icon {
  all: unset !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.social-media-icon :hover {
  cursor: pointer;
}

.placeholder-o-40::placeholder {
  opacity: 0.4 !important;
  font-weight: 900 !important;
}
.placeholder-o-40::-webkit-input-placeholder {
  opacity: 0.4 !important;
  font-weight: 900 !important;
}
.placeholder-o-40:-ms-input-placeholder {
  opacity: 0.4 !important;
  font-weight: 900 !important;
}

.referral-stats-values {
  font-weight: bold;
  color: #252733;
  font-size: 28px;
}

[data-theme=dark] .referral-stats-values {
  color: #ffffff !important;
}

.referral-link {
  color: #253292 !important;
  font-size: 14px;
  font-weight: 500;
}

[data-theme=dark] .referral-link {
  color: #007bff !important;
}

.modal-button-contained {
  background: #FF4EA1;
  border-radius: 31px;
  color: #ffffff;
  border: none;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  width: 155px;
  height: 48px;
  box-shadow: 0px 4px 12px rgba(55, 81, 255, 0.24);
}
.modal-button-contained:hover {
  text-decoration: none;
}

.modal-button-outlined {
  background: #FFFFFF;
  border-radius: 31px;
  color: #253292;
  border: 1px solid #253292;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  width: 155px;
  height: 48px;
}
.modal-button-outlined:hover {
  text-decoration: none;
}

.modal-button-link {
  border: none;
  background-color: transparent;
  color: #9FA2B4;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
.modal-button-link:disabled {
  opacity: 0.5;
}
.modal-button-link:focus {
  outline: none;
}
.modal-button-link:hover {
  text-decoration: underline;
}

.modal-button-contained:disabled {
  opacity: 0.5;
}

.modal-button-outlined:disabled {
  opacity: 0.5;
}

.modal-button-contained:focus {
  outline: none;
}

.modal-button-outlined:focus {
  outline: none;
}

.bank_filter_btn_selected {
  border-radius: 8px !important;
  background-color: #253292 !important;
  text-transform: uppercase;
  color: white;
  font-size: 11px;
  width: 128px !important;
  height: 32px !important;
  font-weight: 700;
  outline: none !important;
  border: unset !important;
}
@media (max-width: 768px) {
  .bank_filter_btn_selected {
    width: 100% !important;
    display: inline-block;
  }
}

.bank_filter_btn {
  border: #DFE0EB 1px solid;
  border-radius: 8px !important;
  background-color: transparent !important;
  text-transform: uppercase;
  color: #9FA2B4;
  font-size: 11px;
  width: 128px !important;
  height: 32px !important;
  font-weight: 700;
  outline: none !important;
}
@media (max-width: 768px) {
  .bank_filter_btn {
    width: 100% !important;
    display: inline-block;
  }
}

.onboarding-bank-cards {
  width: 238px;
  height: 221px;
  border-radius: 8px;
  border: #DFE0EB 1px solid;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  padding: 24px;
}
.onboarding-bank-cards p {
  font-weight: 400;
  font-size: 11px;
  color: #9FA2B4;
}
.onboarding-bank-cards a {
  font-weight: 700;
  font-size: 12px;
}
@media (max-width: 576px) {
  .onboarding-bank-cards {
    width: 200px;
  }
}

.btn-bank-connect {
  width: 83px;
  height: 24px;
  border-radius: 20px;
  background-color: #253292;
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease-in-out 300ms;
  outline: none !important;
}
.btn-bank-connect:hover {
  text-decoration: none;
  opacity: 0.8;
}
.btn-bank-connect:focus {
  outline: none !important;
}
@media (max-width: 768px) {
  .btn-bank-connect {
    margin: 0 0.25rem 0 0.25rem;
  }
}

.btn-bank-open {
  width: 83px;
  height: 24px;
  border-radius: 20px;
  border: #253292 1px solid;
  color: #253292;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease-in-out 300ms;
  outline: none !important;
}
.btn-bank-open:hover {
  text-decoration: none;
  opacity: 0.8;
}
.btn-bank-open:focus {
  outline: none !important;
}
@media (max-width: 768px) {
  .btn-bank-open {
    margin: 0 0.25rem 0 0.25rem;
  }
}

.owl-stage-outer {
  display: flex;
  flex-basis: 100%;
  width: 0;
}

.owl-stage {
  display: flex;
  flex-basis: 100%;
  width: 0;
}

.force-d-none {
  display: none !important;
}

@media (max-width: 768px) {
  .w-md-100 {
    width: 100% !important;
  }
}

.onboarding-btn-primary {
  height: 48px;
  border: none;
  background-color: #FF4EA1;
  box-shadow: 0 4px 12px rgba(55, 81, 255, 0.24);
  border-radius: 31px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  outline: none !important;
}
.onboarding-btn-primary:focus {
  outline: none !important;
}
@media (max-width: 768px) {
  .onboarding-btn-primary {
    width: 100% !important;
  }
}

.onboarding-btn-primary:disabled {
  opacity: 0.5;
}

.onboarding-btn-secondary {
  width: 255px;
  height: 48px;
  border: 1px solid #253292;
  background-color: #ffffff;
  border-radius: 31px;
  color: #253292;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  outline: none !important;
}
.onboarding-btn-secondary:focus {
  outline: none !important;
}
@media (max-width: 768px) {
  .onboarding-btn-secondary {
    width: 100% !important;
  }
}

.onboarding-btn-secondary:disabled {
  opacity: 0.5;
}

@media (max-width: 768px) {
  .onboarding-md-title-small {
    font-size: 19px !important;
  }
}

@media (max-width: 768px) {
  .onboarding-md-text-small {
    font-size: 12px !important;
  }
}

.onboarding-steps-text {
  color: #4B506D;
  font-weight: 400;
  font-size: 14px;
}

.onboarding-steps-title {
  color: #253292;
  font-weight: 500;
  font-size: 16px;
}

@media (max-width: 768px) {
  .onboarding-md-subtitle {
    font-size: 16px !important;
  }
}

.onboarding-checkbox input[type=checkbox]:not(:checked) {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #DFE0EB;
  border-radius: 5px;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  flex-shrink: 0;
}

.onboarding-checkbox input[type=checkbox]:checked {
  flex-shrink: 0;
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background-image: url("../../assets/icons/checked.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-color: #253292;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.onboarding-checkbox input[type=checkbox]:disabled {
  border-color: #c0c0c0;
  background-color: #c0c0c0;
}

.onboarding-checkbox input[type=checkbox]:not(:checked):hover {
  border: 2px solid #DFE0EB;
}

.onboarding-dropdown {
  width: 295px;
  height: 40px;
  border: 1px solid #F0F1F7;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .onboarding-dropdown {
    width: 100% !important;
  }
}
.onboarding-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  padding: 0 1rem 0 1rem;
  font-weight: 400;
  font-size: 14px;
  color: #4B506D;
  opacity: 0.4;
}
.onboarding-dropdown a:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .onboarding-dropdown a {
    width: 100% !important;
  }
}
.onboarding-dropdown .onboarding-dropdown-menu {
  border: 1px solid #F0F1F7 !important;
  border-radius: 8px !important;
  background: #ffffff;
  width: 295px !important;
  overflow-y: scroll;
  height: 250px;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.onboarding-dropdown .onboarding-dropdown-menu::-webkit-scrollbar {
  display: none;
}
.onboarding-dropdown .onboarding-dropdown-menu .onboarding-dropdown-item {
  height: 50px !important;
  justify-content: start;
  font-size: 14px !important;
  color: #253292 !important;
  font-weight: 700 !important;
  opacity: 1 !important;
  padding: 0.5rem 1.5rem !important;
  transition: all 0.6s !important;
}
.onboarding-dropdown .onboarding-dropdown-menu .onboarding-dropdown-item:hover {
  background-color: #DDE2FF;
}

.form-label {
  color: #9FA2B4;
  font-weight: 700;
  font-size: 12px !important;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  height: 42px;
  font-weight: 400;
  background-color: #FCFDFE;
  border-radius: 8px;
  color: #4B506D;
  border: 1px solid #F0F1F7;
  padding: 10px;
  text-align: left;
  transition: all 300ms ease-in-out;
}
.form-input:focus {
  outline: none;
  border: 2px solid #253292;
}
.form-input::placeholder {
  opacity: 40%;
  font-size: 14px;
  font-weight: 400;
  color: #4B506D;
}

.form-input input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-input input[type=number] {
  -moz-appearance: textfield;
}

.form-dropdown {
  width: 100%;
  height: 42px;
  border: 1px solid #F0F1F7;
  border-radius: 8px;
  padding: 10px;
  background-color: #FCFDFE;
}
@media (max-width: 768px) {
  .form-dropdown {
    width: 100% !important;
  }
}
.form-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  padding: 0 1rem 0 1rem;
  font-weight: 400;
  font-size: 14px;
  color: #4B506D;
  opacity: 0.4;
}
.form-dropdown a:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .form-dropdown a {
    width: 100% !important;
  }
}
.form-dropdown .form-dropdown-menu {
  border: 1px solid #F0F1F7 !important;
  border-radius: 8px !important;
  background: #ffffff;
  width: 295px !important;
  overflow-y: scroll;
  height: 250px;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.form-dropdown .form-dropdown-menu::-webkit-scrollbar {
  display: none;
}
.form-dropdown .form-dropdown-menu .form-dropdown-item {
  height: 50px !important;
  justify-content: start;
  font-size: 14px !important;
  color: #253292 !important;
  font-weight: 700 !important;
  opacity: 1 !important;
  padding: 0.5rem 1.5rem !important;
  transition: all 0.6s !important;
}
.form-dropdown .form-dropdown-menu .form-dropdown-item:hover {
  background-color: #DDE2FF;
}

.input-append-text {
  width: auto;
  height: 42px;
  padding: 10px;
  border: none;
  color: rgba(0, 0, 0, 0.4);
}

.text-purple {
  color: #9A53CB;
}

.text-blue {
  color: #018EFF;
}

.text-navy-blue {
  color: #253292;
}

.text-dark-gray {
  color: #4B506D;
}

.text-red-danger {
  color: #FE2142;
}

.text-yellow-warning {
  color: #FEA500;
}

.text-green-success {
  color: #00DA8B;
}

.text-size-24 {
  font-size: 24px;
}

.text-size-19 {
  font-size: 19px;
}

.text-size-16 {
  font-size: 16px;
}

.text-size-14 {
  font-size: 14px;
}

.rounded-8 {
  border-radius: 8px;
}

.rounded-12 {
  border-radius: 12px;
}

.bg-pink {
  background: #FF4EA1;
}

.onboarding-a {
  all: unset;
  color: #253292;
  font-weight: 500;
  font-size: 14px;
}

.onboarding-a:hover {
  text-decoration: underline;
  cursor: pointer;
}

.text-black {
  color: #252733;
}

.text-gray {
  color: #9FA2B4;
}

.text-light-gray {
  color: #9FA2B4;
}

.text-ultra-light-gray {
  color: #C5C7CD;
}

.text-size-12 {
  font-size: 12px;
}

.list-item {
  transition: all 300ms ease-in-out;
}

.list-item:hover {
  background: #F6F7FB;
}

.filter-sort-btn {
  all: unset;
  transition: all 300ms ease-in-out;
}

.filter-sort-btn:focus {
  outline: none;
}

.status-badge-separator {
  height: 2px;
  background: #DFE0EB;
  width: 100%;
}

.status-step-badge {
  background: #EBEDF0;
  border-radius: 8px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
}
.status-step-badge span {
  font-size: 11px;
  font-weight: 700;
  color: #9FA2B4;
  text-transform: uppercase;
  white-space: nowrap;
}
.status-step-badge img {
  display: none;
  margin-right: 0.5rem;
}
@media (max-width: 991px) {
  .status-step-badge span {
    font-size: 10px;
    white-space: pre-wrap;
    text-align: center;
  }
}

.status-step-badge.active {
  background: #253292;
  border: none;
}
.status-step-badge.active span {
  color: white;
}
.status-step-badge.active img {
  display: none;
}

.status-step-badge.done {
  background: white;
  border: 2px solid #DFE0EB;
}
.status-step-badge.done span {
  color: #9FA2B4;
}
.status-step-badge.done img {
  display: inline-block;
}

.accordion-button img.arrow-collapsed {
  transition: all 300ms ease-in-out;
}

.accordion-button.show img.arrow-collapsed {
  transform: rotate(180deg);
}

.pointer {
  cursor: pointer !important;
}

.wb-break {
  word-break: break-word;
}

.bg-light-blue {
  background: #E7EAFF;
}

.b-ultra-light-gray {
  border: 1px solid #C5C7CD;
}

.text-size-14 {
  font-size: 14px;
}

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

.bg-ultra-light-gray {
  background: #F0F1F7;
}

.border-lightest-gray {
  border: 1px solid #F0F1F7;
}

.bg-gray-divider-graph {
  background: #EBEDF0;
}

.bg-gray-dark {
  background: #4B506D;
}

.border-gray-dark {
  border: 1px solid #4B506D;
}

.h-fit {
  height: fit-content !important;
}

.text-size-10 {
  font-size: 10px;
}

.text-size-11 {
  font-size: 11px;
}

.rounded-31 {
  border-radius: 31px;
}

.bg-red-danger {
  background: #FE2142;
}

.bg-green-success {
  background: #00DA8B;
}

.bg-yellow-warning {
  background: #FEA500;
}

.bg-navy-blue {
  background: #253292;
}

.bg-purple {
  background: #9A53CB;
}

.bg-pastel-purple {
  background: #8000FF;
}

.bg-blue {
  background: #018EFF;
}

.bg-pastel-green {
  background-color: #93EDCA;
}

.bg-pastel-blue {
  background-color: #A6DEFF;
}

.bg-pastel-red {
  background-color: #FFB0B0;
}

.bg-pastel-yellow {
  background-color: #F6D061;
}

.bg-extra-light-gray {
  background: #FCFDFE;
}

.w-fit {
  width: fit-content !important;
}
@media (max-width: 768px) {
  .w-fit {
    width: 100% !important;
  }
}

.accordion-header.done {
  cursor: default;
}
.accordion-header.done .accordion-button {
  cursor: default;
}
.accordion-header.done .arrow-collapsed {
  display: none;
}
.accordion-header.done div .arrow-collapsed {
  display: none;
}

.employee-migration-table-container {
  border: 1px solid #DFE0EB;
  background: #fff;
  border-radius: 8px;
  margin-top: 60px;
}

.employee-migration-table-header {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  padding: 32px;
  border-radius: 8px 8px 0 0;
  align-items: center;
  background: #FFF;
}
.employee-migration-table-header h5 {
  font-style: normal;
  font-weight: 700;
  font-size: 19px;
  line-height: 23px;
  letter-spacing: 0.4px;
  color: #252733;
  margin-right: auto;
}
.employee-migration-table-header label {
  margin: 0;
  padding: 0;
}

.employee-migration-search-input {
  background: url("../icons/magnifying-glass.svg") no-repeat center, white;
  background-position: 24px center;
  background-size: 16px 16px;
  border: 1px solid #F0F1F7 !important;
  border-radius: 8px;
  padding: 0 20px 0 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 244px;
  height: 40px;
  color: #4B506D;
  transition: all 300ms ease;
}
.employee-migration-search-input::placeholder {
  color: #B5B8C5;
  opacity: 0.4;
}
.employee-migration-search-input:focus {
  outline: unset;
  border-color: #253292 !important;
}

.new-table-content {
  display: flex;
  flex-direction: column;
  background: #FFF;
  border-radius: 0 0 8px 8px;
}

.new-table-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 8px 32px 13px;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.2px;
  color: #9FA2B4;
  border-bottom: 1.5px solid #DFE0EB;
  background: #FFF;
}

.new-table-inner-content {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.migration-employee-new-table-item, .employee-new-table-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #DFE0EB;
  padding: 24px 32px;
}

.employee-info-container {
  display: flex;
  gap: 24px;
}
.employee-info-container img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.employee-info-container div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
}
.employee-info-container div strong {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: #252733;
}
.employee-info-container div span {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1px;
}

.migrated-to-column {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: #4B506D;
}

.residence-column {
  display: flex;
  gap: 8px;
}
.residence-column strong {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: #253292;
}
.residence-column span {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1px;
  color: #C5C7CD;
}

.salary-column {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: #253292;
}

.dates-column {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  line-height: 13px;
  letter-spacing: 0.1px;
  color: #4B506D;
}

.scheduled-column {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 30px;
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  line-height: 13px;
  width: 54px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.employee-status-color-green {
  color: #00DA8B;
}

.employee-status-color-gray {
  color: #C5C7CD !important;
}

.employee-status-color-yellow {
  color: #FEA500;
}

.employee-status-color-red {
  color: #FE2142;
}

.scheduled-red {
  background: #FE2142;
}

.scheduled-green {
  background: #00DA8B;
}

.employee-type-status-column {
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  line-height: 13px;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 8px;
}

.type-status-grey {
  color: #9FA2B4;
  background: #F0F1F7;
}

.type-status-purple {
  color: #FFFFFF;
  background: #253292;
}

.type-status-pink {
  color: #000000;
  background: #ffe5d3;
}

.employee-options-button {
  border: none;
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 24px;
  height: 24px;
  background: url("../icons/icon-more-vertical.svg") no-repeat center;
  background-size: 24px 24px;
  cursor: pointer;
  z-index: 1;
}
.employee-options-button:hover {
  box-shadow: 0px 0px 0px 3px #DFE0EB;
}
.employee-options-button:focus {
  outline: none;
}

.employee-options-modal {
  position: absolute;
  display: none;
  top: 36px;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 226px;
  background: #FFFFFF;
  border: 1px solid #DFE0EB;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  z-index: 10;
}
.employee-options-modal a {
  display: flex;
  padding-left: 15px;
  width: 100%;
  height: 50px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  align-items: center;
  letter-spacing: 0.2px;
  color: #9FA2B4;
}
.employee-options-modal a:hover {
  color: #253292;
  background: #E7EAFF;
  border: none;
  border-radius: 4px;
  text-decoration: none;
}

.terminate-contract {
  border-top: 1px solid #DFE0EB;
  color: #FE2142 !important;
}

.employee-migration-table-column-1 {
  flex-basis: 40%;
  overflow: hidden;
}

.employee-migration-table-column-2 {
  flex-basis: 20%;
  overflow: hidden;
}

.employee-migration-table-column-3 {
  flex-basis: 30%;
  overflow: hidden;
}

.employee-migration-table-column-4 {
  flex-basis: 30%;
}

.table-column-1 {
  flex-basis: 40%;
  margin-right: 2%;
  overflow: hidden;
}

.table-column-2 {
  flex-basis: 20%;
  margin-right: 2%;
  overflow: hidden;
}

.table-column-3 {
  flex-basis: 30%;
  margin-right: 2%;
  overflow: hidden;
}

.table-column-4 {
  flex-basis: 30%;
}

.employee-table-column-1 {
  flex-basis: 30%;
}

.employee-table-column-2 {
  flex-basis: 22%;
}

.employee-table-column-3 {
  flex-basis: 10%;
}

.employee-table-column-4 {
  flex-basis: 18%;
  display: flex;
  justify-content: center;
}

.employee-table-column-5 {
  flex-basis: 18.6%;
  display: flex;
  justify-content: center;
}

.employee-table-column-6 {
  flex-basis: 1.4%;
  margin-left: 9px;
  margin-right: -9px;
  position: relative;
}

.employee-new-table-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  padding-right: 41px;
  border-radius: 0 0 8px 8px;
  height: 72px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: right;
  letter-spacing: 0.3px;
  color: #9FA2B4;
}
.employee-new-table-footer button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8px;
  height: 14px;
  border: none;
  background: url("../icons/semi-arrow-left.svg") no-repeat center;
  cursor: pointer;
}
.employee-new-table-footer button + button {
  background: url("../icons/semi-arrow-right.svg") no-repeat center;
}

.employee-filter-container, .payroll-filter-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #F7F8FC;
  border-radius: 8px;
  height: 40px;
  width: 110px;
  cursor: pointer;
}

.employee-filter-container-active, .payroll-filter-container-active {
  background: #DDE2FF;
}

.employee-filter-icon, .payroll-filter-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  background: url("../icons/icon_filter.svg") no-repeat center;
}

.employee-filter-label, .payroll-filter-label {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: #4B506D;
}

.employee-filter-modal, .payroll-filter-modal, .employee-migration-filter-modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.06);
  position: absolute;
  top: 59px;
  width: 205px;
  height: 205px;
  border: 1px solid #DFE0EB;
  border-radius: 6px;
}
.employee-filter-modal label, .payroll-filter-modal label, .employee-migration-filter-modal label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  flex-basis: 100%;
  width: 100%;
  padding-left: 10px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  letter-spacing: 0.2px;
  color: #253292;
  cursor: pointer;
}
.employee-filter-modal input[type=checkbox], .payroll-filter-modal input[type=checkbox], .employee-migration-filter-modal input[type=checkbox] {
  width: 18px;
  height: 18px;
  border: 1px solid #C5C7CD;
  border-radius: 4px;
  accent-color: #253292;
  cursor: pointer;
}

.employee-migration-filter-modal {
  height: 102px;
}

.employee-filter-modal-placeholder, .payroll-filter-modal-placeholder, .employee-migration-filter-modal-placeholder {
  display: none;
  position: absolute;
  background: transparent;
  top: 0;
  width: 205px;
  height: 224px;
  z-index: 10;
}

.employee-migration-filter-modal-placeholder {
  height: 121px;
}

.modal-button-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: nowrap;
  align-items: center;
}

.migration-explanation-container {
  display: flex;
  flex-direction: column;
  margin: 60px 0 0;
  border: 1px solid #DFE0EB;
  border-radius: 8px;
}
.migration-explanation-container article {
  padding: 50px 32px;
  font-style: normal;
  border-bottom: 1px solid #DFE0EB;
}
.migration-explanation-container article h3 {
  font-weight: 700;
  font-size: 19px;
  line-height: 23px;
  letter-spacing: 0.4px;
  color: #252733;
  margin: 0;
  padding: 0;
}
.migration-explanation-container article a {
  display: flex;
  width: fit-content;
  margin-top: 50px;
}
.migration-explanation-container article:first-of-type {
  padding-top: 32px;
}
.migration-explanation-container article:last-of-type {
  border-bottom: none;
}

.migration-explanation-text-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 50px 0 0;
}
.migration-explanation-text-container ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding-left: 16px;
}
.migration-explanation-text-container p, .migration-explanation-text-container li {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: #9FA2B4;
  padding: 0;
  margin: 0;
}

.migration-animation-container {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.change-z-index-for-animation {
  z-index: -10;
}

.add-contract-or-employee-container {
  margin-top: 60px;
  font-style: normal;
}
.add-contract-or-employee-container h3 {
  font-weight: 700;
  font-size: 19px;
  line-height: 23px;
  letter-spacing: 0.4px;
  color: #252733;
  margin-bottom: 36px;
}
.add-contract-or-employee-container p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: #9FA2B4;
}
.add-contract-or-employee-container p a {
  color: #253DD9;
  text-decoration: underline;
}
.add-contract-or-employee-container p + p {
  margin: 0 0 23px;
}

.employee-type-container {
  display: flex;
  align-items: center;
  border: 1px solid #DFE0EB;
  margin-top: 36px;
  border-radius: 10px;
  background: #FFFFFF;
  padding: 15px 31px 14px;
  gap: 40px;
  cursor: pointer;
}

.employee-type-description {
  display: flex;
  flex: 1;
  justify-content: flex-start;
  flex-direction: column;
  gap: 9px;
}
.employee-type-description strong {
  font-style: normal;
  font-weight: 700;
  font-size: 19px;
  line-height: 23px;
  letter-spacing: 0.4px;
  color: #253292;
}
.employee-type-description span {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.2px;
  color: #9FA2B4;
}

.employee-type-selected {
  border: 1px solid #253DD9;
}

.employee-type-arrow-icon {
  width: 24px;
  height: 18px;
}

.employee-type-arrow-icon-selected {
  background: url("../icons/arrow_left_icon_blue.svg") center no-repeat;
  background-size: 24px 18px;
}

.employee-type-arrow-icon-deselected {
  background: url("../icons/arrow_left_icon.svg") center no-repeat;
  background-size: 24px 18px;
}

.secondary-button {
  border: none;
  background: transparent;
  color: #9FA2B4;
  padding: 10px 5px;
}
.secondary-button:hover {
  text-decoration: none;
  color: #253292;
}

.employee-type-button-container {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-self: flex-end;
  align-self: flex-end;
  margin-top: 48px;
}
.employee-type-button-container a {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.2px;
}
.employee-type-button-container button:disabled, .employee-type-button-container button[disabled] {
  cursor: not-allowed;
  background: #F4BDE7;
}

.employee-details-container {
  border: 1px solid #DFE0EB;
  border-radius: 8px;
  margin-top: 60px;
  background: #FFFFFF;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.2px;
  color: #252733;
}
.employee-details-container header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 32px;
}
.employee-details-container header a {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  white-space: nowrap;
  align-items: center;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.2px;
  text-decoration: none;
  color: #9FA2B4;
  border: 1px solid #C5C7CD;
  border-radius: 30px;
  padding: 11px 24px 9px;
}
.employee-details-container header a:hover {
  border-color: #253292;
  border-radius: 30px;
  color: #253292;
}

.employee-details-container-activity {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.1px;
  color: #9FA2B4;
}

.employee-info-section {
  padding: 32px;
  display: grid;
  column-gap: 32px;
}

.employee-info-section-1 {
  border-bottom: 1px solid #DFE0EB;
  grid-template: "email taxid" auto "address address" auto/1fr 1fr;
}
.employee-info-section-1 div:last-of-type {
  grid-area: address;
}

.employee-info-section-2 {
  grid-template: "heading heading" 66px "iban bic" auto "bank netwate" auto/1fr 1fr;
}
.employee-info-section-2 h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.3px;
  color: #9FA2B4;
  grid-area: heading;
  margin: 0;
}

.employee-info-entry {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.employee-info-entry h5 {
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #9FA2B4;
}
.employee-info-entry p {
  background: #FCFDFE;
  border: 1px solid #F0F1F7;
  border-radius: 8px;
  padding: 11px 16px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: #4B506D;
}

.employee-info-copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.payrolls-details-container {
  border: 1px solid #DFE0EB;
  border-radius: 8px;
  background: #FFFFFF;
}
.payrolls-details-container header h3 {
  margin-right: auto;
}

.table-date-picker {
  background: #F7F8FC;
  border-radius: 8px;
  padding: 11px 22px 9px 23px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.2px;
  color: #4B506D;
}

.payroll-table-column-1 {
  flex-basis: 20%;
}

.payroll-table-column-2 {
  flex-basis: 20%;
}

.payroll-table-column-3 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 20%;
}

.payroll-table-column-4 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 20%;
}

.payroll-table-column-5 {
  flex-basis: 20%;
}

.payroll-table-column-6 {
  position: relative;
  margin-left: auto;
}

.payroll-table-item-amount {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 4px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: #253292;
}
.payroll-table-item-amount span {
  display: flex;
  align-items: center;
}
.payroll-table-item-amount span + span {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1px;
  color: #C5C7CD;
}

.payroll-table-item-status {
  display: flex;
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  line-height: 13px;
  align-items: center;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.payroll-table-item-status span {
  padding: 5px 12px;
  border-radius: 8px;
  color: #FFFFFF;
}

.payroll-table-item-matched {
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  line-height: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.payroll-table-item-matched span {
  padding: 5px 12px;
  border-radius: 8px;
}

.green-background-item {
  background: #00DA8B;
}

.orange-background-item {
  background: #FEA500;
}

.red-background-item {
  background: #FE2142;
}

.payroll-table-item-tax {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 4px;
  font-style: normal;
  letter-spacing: 0.1px;
  color: #253292;
  line-height: 16px;
  font-weight: 400;
  font-size: 12px;
}
.payroll-table-item-tax span {
  display: flex;
  align-items: center;
  color: #4B506D;
}
.payroll-table-item-tax span + span {
  color: #C5C7CD;
}

.copy-icon {
  outline: none !important;
  display: flex;
  background: url("../icons/copy-icon.svg");
  background-size: 12px 12px;
  width: 12px;
  height: 12px;
  border: none;
}

.employee-migration-dropdown {
  border-radius: 8px;
  background: #FCFDFE;
  display: flex;
  position: relative;
  width: 153px;
  height: 40px;
  border: 1px solid #F0F1F7;
  overflow: visible;
}

.employee-migration-dropdown-toggle {
  display: flex;
  align-items: center;
  background: #FCFDFE;
  justify-content: space-between;
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  text-decoration: none !important;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: #4B506D;
  outline: unset !important;
}

.employee-migration-dropdown-toggle-icon {
  width: 8px;
  height: 8px;
  background: url("../icons/arrow_down.svg") no-repeat;
  background-size: 8px 8px;
  background-position: center;
}

.show-dropdown {
  display: flex !important;
}

.employee-migration-dropdown-menu {
  display: none;
  background: #FFF;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  width: 158px;
  position: absolute;
  top: 45px;
  left: 50%;
  -ms-transform: translate(-50%);
  transform: translateX(-50%);
  border-radius: 5px;
  flex-direction: column;
  list-style: none;
  padding: 0;
  z-index: 10;
}
.employee-migration-dropdown-menu li {
  display: flex;
  align-items: center;
  padding: 13px 16px;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.2px;
  cursor: pointer;
}
.employee-migration-dropdown-menu li:hover {
  background: #E7EAFF;
  border-radius: 5px;
  color: #253292;
}
.employee-migration-dropdown-menu li:not(:first-child) {
  border-top: 0.5px solid #DFE0EB;
}

.add-contractor-container {
  margin-top: 60px;
  gap: 24px;
}

.add-employee-state-container {
  display: flex;
  align-items: center;
}

.add-employee-state-info {
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  line-height: 13px;
  display: flex;
  align-items: center;
  text-align: center;
  border-radius: 8px;
  border: 0.5px solid #DFE0EB;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: #FFFFFF;
  padding: 9px 12px;
  color: #9FA2B4;
}

.add-employee-state-dash {
  width: 20px;
  border-top: 1px dashed #9FA2B4;
}

.add-employee-data-container {
  background: #FFFFFF;
  border: 1px solid #DFE0EB;
  border-radius: 8px;
  font-style: normal;
}

.add-employee-heading {
  font-style: normal;
  font-weight: 700;
  font-size: 19px;
  line-height: 23px;
  letter-spacing: 0.4px;
  color: #252733;
  margin: 32px 32px 16px;
  padding: 0;
}

.add-employee-image-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px;
  border-bottom: 1px solid #DFE0EB;
}

.add-employee-image {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.add-employee-input-container, .edit-employee-avatar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}
.add-employee-input-container label, .edit-employee-avatar-container label {
  white-space: nowrap;
  margin: 0;
  background: #fff;
  border: 1px solid #253292;
  border-radius: 31px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: #253292;
  padding: 11px 24px 9px;
  text-align: center;
  cursor: pointer;
}
.add-employee-input-container label:hover, .edit-employee-avatar-container label:hover {
  color: #253DD9;
  border-color: #253DD9;
}
.add-employee-input-container input, .edit-employee-avatar-container input {
  width: 100%;
  height: 100%;
}

.add-employee-image-1 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.add-employee-image-1 strong {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.1px;
  color: #9FA2B4;
}
.add-employee-image-1 span {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1px;
  color: #9FA2B4;
}

.add-employee-image-inner-container {
  display: flex;
  align-items: center;
  gap: 20px;
}
.add-employee-image-inner-container img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.add-employee-form-step {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px 34px;
  padding: 32px;
}

.flex-span-full {
  flex: 100%;
}

.flex-span-half {
  flex: calc(50% - 17px);
}

.flex-span-third {
  flex: 31%;
}

.add-employee-label-input {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  margin: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.3px;
  color: #9FA2B4;
  transition: all 300ms ease;
}
.add-employee-label-input label {
  text-transform: uppercase;
}
.add-employee-label-input input[type=text],
.add-employee-label-input input[type=number] {
  display: flex;
  align-items: center;
  background: #FCFDFE;
  border: 1px solid #F0F1F7;
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 14px;
  outline: none;
  color: #4B506D;
}
.add-employee-label-input input[type=text]:focus,
.add-employee-label-input input[type=number]:focus {
  border-color: #253292;
}
.add-employee-label-input input[type=text]::placeholder,
.add-employee-label-input input[type=number]::placeholder {
  opacity: 0.4;
}
.add-employee-label-input label {
  margin: 0;
}

.scheduled-salary-container {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  margin-top: 12px;
  gap: 13px;
}
.scheduled-salary-container label {
  text-transform: capitalize;
}
.scheduled-salary-container input[type=checkbox] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.add-employee-confirm-container {
  display: flex;
  align-items: center;
  gap: 14px;
}
.add-employee-confirm-container input {
  background: #FCFDFE;
  border-radius: 5px;
  width: 20px;
  height: 20px;
}
.add-employee-confirm-container label {
  margin: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1px;
  color: #9FA2B4;
}

.app-dropdown {
  height: 40px;
  background: #FCFDFE;
  border: 1px solid #F0F1F7;
  position: relative;
  border-radius: 8px;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: #4B506D;
}
.app-dropdown a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 40px;
  padding: 0 1rem 0 1rem;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: #4B506D;
  text-transform: none;
}
.app-dropdown a:disabled, .app-dropdown a[disabled] {
  cursor: not-allowed !important;
}
.app-dropdown a:hover {
  text-decoration: none;
}
.app-dropdown a img {
  margin-left: auto;
}
.app-dropdown .app-dropdown-menu {
  border: 1px solid #F0F1F7;
  border-radius: 8px;
  background: #fff;
  width: 100%;
  overflow-y: scroll;
  height: 250px;
}
.app-dropdown .app-dropdown-menu .app-dropdown-item, .app-dropdown .app-dropdown-menu .app-dropdown-item-country,
.app-dropdown .app-dropdown-menu .app-dropdown-item-type,
.app-dropdown .app-dropdown-menu .app-dropdown-item-currency {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 5px;
  height: 46px;
  opacity: 1;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.2px;
  justify-content: start;
  color: #4B506D;
  background: #FFFFFF;
}
.app-dropdown .app-dropdown-menu .app-dropdown-item:hover, .app-dropdown .app-dropdown-menu .app-dropdown-item-country:hover,
.app-dropdown .app-dropdown-menu .app-dropdown-item-type:hover,
.app-dropdown .app-dropdown-menu .app-dropdown-item-currency:hover {
  color: #253292;
  background: #E7EAFF;
}

.app-dropdown-item:hover, .app-dropdown-item-country:hover,
.app-dropdown-item-type:hover,
.app-dropdown-item-currency:hover {
  color: #253292;
  background: #E7EAFF;
}

.add-employee-button-container {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 16px 32px 32px;
}
.add-employee-button-container span {
  flex: 1;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.3px;
}

.employee-state-active {
  background: #253292;
  border: none;
  color: #fff;
}

.add-employee-visa-container {
  border-top: 1px solid #DFE0EB;
  font-style: normal;
  color: #9FA2B4;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
}
.add-employee-visa-container h4 {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.3px;
  margin: 0;
}
.add-employee-visa-container span {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: #9FA2B4;
}

.add-visa-container {
  width: 100%;
}

.visa-area-1 {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  gap: 9px;
  align-items: center;
  border: 1px dashed #C5C7CD;
  border-radius: 8px;
  height: 88px;
  cursor: pointer;
  margin: 0;
}
.visa-area-1 .upload-icon {
  display: block;
  background: url("../icons/upload_icon.svg") center no-repeat;
  background-size: 25px 25px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.visa-area-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  gap: 20px;
  border: none;
  border-radius: 8px;
  background: #F7F8FC;
  border-radius: 8px;
  height: 88px;
  margin: 0;
  padding: 0 41px;
}
.visa-area-2 button {
  display: block;
  background: url("../icons/icon_trash.svg") no-repeat;
  background-size: 25px 25px;
  background-position: 50% 50%;
  border: none;
  padding: 0;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.visa-area-2 span {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  border: 1px solid #253292;
  border-radius: 8px;
  padding: 9px 0;
  margin: 0;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: flex-end;
  letter-spacing: 0.2px;
  color: #253292;
}

.edit-employee-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px 34px;
  padding: 32px;
  border-top: 1px solid #DFE0EB;
}

.app-dropdown-type {
  border: 1px solid #f0f1f7;
  border-radius: 8px;
  background: #fff;
  width: 100%;
  overflow-y: scroll;
  height: fit-content;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.app-dropdown-type::-webkit-scrollbar {
  display: none;
}

.edit-employee-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px 32px;
}

.edit-employee-button-container {
  display: flex;
  align-items: center;
  gap: 22px;
}

.upload-employee-document-button {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: #9FA2B4;
}

.upload-document-employee-icon {
  background: url("../icons/clip-icon.svg") center no-repeat;
  background-size: 10px 20px;
  width: 10px;
  height: 20px;
}

.proof-residence-button {
  display: flex;
  align-items: center;
  width: 100%;
  border: none;
  padding: 0;
  margin: 0;
  background: #fff;
  color: #9fa2b4;
  outline: none !important;
  border-radius: 0 0 4px 4px;
  cursor: pointer;
}
.proof-residence-button:hover {
  outline: none;
  color: #253292;
  background: #e7eaff;
  border-radius: 4px;
}
.proof-residence-button label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  height: 50px;
  width: 100%;
  padding-left: 15px;
  cursor: pointer;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  align-items: center;
  letter-spacing: 0.2px;
}

.migration-salary-update {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  box-sizing: border-box;
  overflow: visible;
}
.migration-salary-update input {
  border: 1px solid #f0f1f7 !important;
  box-shadow: 0 0 0 2px #F12B2C;
  border-radius: 8px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 100%;
  max-width: 130px;
  color: #4b506d;
  outline: none !important;
}
.migration-salary-update input:focus {
  box-shadow: 0 0 0 2px #F12B2C;
}
.migration-salary-update span {
  color: red;
  font-size: 12px;
}

.migration-employee-error-message {
  white-space: nowrap;
  margin-right: auto;
  font-size: 14px;
  margin-left: 32px;
}

.gap-20 {
  gap: 20px;
}

.proof-of-residencei-icon {
  background: url("../icons/important_icon.svg") center no-repeat;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
}

.payrolls-date-picker {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  width: 147px;
  height: 40px;
  border-radius: 8px;
  position: relative;
}
.payrolls-date-picker label {
  position: absolute;
  visibility: hidden;
  padding: 0;
}
.payrolls-date-picker input {
  border: none;
  border-radius: 8px;
  width: 100%;
  background: #F7F8FC;
  outline: none;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  padding: 0;
  text-align: center;
  letter-spacing: 0.2px;
  height: 100%;
  color: #4B506D;
  cursor: pointer;
}

.payroll-filter-modal {
  height: 123px;
}

.payroll-filter-modal-placeholder {
  height: 123px;
}

.input-append-text {
  width: auto;
  height: 42px;
  padding: 10px;
  border: none;
  color: rgba(0, 0, 0, 0.4);
}

.filter_btn {
  background-color: white !important;
  border: #DFE0EB 1px solid;
  border-radius: 8px !important;
  text-transform: uppercase;
  color: #9FA2B4;
  width: 100%;
  font-size: 11px;
  height: 32px;
  font-weight: 700;
  outline: none !important;
  transition: all 300ms ease-in-out;
}
@media (max-width: 768px) {
  .filter_btn {
    height: auto;
    padding: 1rem 0.5rem 1rem 0.5rem;
    white-space: break-spaces;
    width: 100% !important;
    display: inline-block;
  }
}
.filter_btn:hover {
  opacity: 0.7;
}

.filter_btn.selected {
  background-color: #253292 !important;
  color: white;
  border: unset !important;
}
.filter_btn.selected:hover {
  opacity: 1;
  cursor: default;
}

.border-top-light-gray {
  border-top: 1px solid #DFE0EB;
}

.border-bottom-light-gray {
  border-bottom: 1px solid #DFE0EB;
}

.bg-yellow-warning {
  background-color: #FEA500;
}

.bg-light-gray {
  background-color: #DFE0EB;
}

.bg-dark-gray {
  background-color: #4B506D;
}

.bg-gray {
  background-color: #9FA2B4;
}

.bg-black {
  background-color: #252733;
}

.rounded-4 {
  border-radius: 4px;
}

.button-outlined {
  background: #FFFFFF;
  border-radius: 31px;
  color: #253292;
  border: 1px solid #253292;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: all 300ms ease;
  height: fit-content;
  width: fit-content;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  font-size: 14px;
}
.button-outlined:disabled {
  opacity: 0.4;
}
.button-outlined:hover {
  border: unset;
  color: white;
  background: #253292;
  text-decoration: none;
}

.pill-pending {
  border: 1px solid #DFE0EB;
  color: #9FA2B4;
}

.modal-xxl {
  max-width: 95%;
}

.pill-not-started {
  border: 1px solid #9FA2B4;
  color: #9FA2B4;
}

.custom-control-label-subheader {
  white-space: nowrap;
  padding-left: 20px;
}

.custom-tight-checkbox {
  width: 30px;
  height: 30px;
  margin: 0;
}

.navigation_button {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease;
  outline: none !important;
}
.navigation_button :hover {
  cursor: pointer;
}

.link-keep-color-white-on-hover:hover {
  color: white;
  text-decoration: none;
}

.custom-drop-item, .custom-drop-item-blue, .custom-drop-item-red {
  color: #9FA2B4;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 17px !important;
  transition: all 0.6s !important;
  border-radius: 4px;
  border-bottom: 0.5px solid #DFE0EB;
}
.custom-drop-item:hover, .custom-drop-item-blue:hover, .custom-drop-item-red:hover {
  cursor: pointer;
  text-decoration: none;
  color: #253292;
  background: #E7EAFF;
}
.custom-drop-item-red {
  color: #FE2142;
}
.custom-drop-item-red:hover {
  background: #FFD7D7;
}
.custom-drop-item-blue {
  color: #253292;
}

.custom-dropdown-menu {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  border: 0.5px solid #DFE0EB;
  padding: 0;
}

.p-32 {
  padding: 32px;
}

.px-32 {
  padding: 0px 32px;
}

.mt-65 {
  margin-top: 65px;
}

.form-text-area {
  padding: 12px 17px;
  background: #FCFDFE;
  border: 1px solid #F0F1F7;
  border-radius: 8px;
  min-height: 208px;
  transition: all 300ms ease;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: #4B506D;
}
.form-text-area ::placeholder {
  opacity: 0.4;
}
.form-text-area:focus {
  border-color: #253292;
  outline: none;
}

.all-unset {
  all: unset;
}

.contract-area {
  height: 300px;
  padding: 32px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: #9FA2B4;
  background: #ffffff;
  border-bottom: 1px solid #DFE0EB;
  overflow-y: scroll;
  max-width: 800px;
  word-break: break-all;
}
.contract-area::-webkit-scrollbar {
  width: 8px;
}
.contract-area::-webkit-scrollbar-track {
  background-color: #FAFAFA;
}
.contract-area::-webkit-scrollbar-thumb {
  background-color: #C1C1C1;
  border-radius: 4px;
}
.contract-area::-webkit-scrollbar-thumb:hover {
  background-color: #4B506D;
}

.step-container {
  display: flex;
  padding-left: 50px;
}

.step-index {
  position: relative;
  height: 55px;
  width: 83px;
  display: inline-block;
  background-color: #f8f8f8 !important;
}

.step-bg {
  position: relative;
  width: 36.8px;
  height: 36.8px;
  border-radius: 18.4px;
  border: 2px solid #C5C7CD;
  background: #ffffff;
  top: 0;
  left: 0;
}

.step-index .step-bg:before {
  position: absolute;
  display: block;
  content: "";
  width: 25px;
  height: 1px;
  border: 2px dashed #C5C7CD;
  border-right: none;
  border-left: none;
  background: #FFFFFF;
  left: -25px;
  top: 18.4px;
  z-index: 2;
}

.step-index.first .step-bg:before {
  display: none;
}

.step-bg:after {
  position: absolute;
  display: block;
  content: "";
  width: 25px;
  height: 1px;
  border: 2px dashed #C5C7CD;
  border-left: none;
  border-right: none;
  background: #FFFFFF;
  right: -25px;
  top: 18.4px;
  z-index: 2;
}

.step-index.last .step-bg:after {
  display: none;
}

.step-index.last {
  width: 37px;
}

.step-num {
  position: absolute;
  top: 0;
  z-index: 4;
  width: 36.8px;
  height: 36.8px;
  border-radius: 18.4px;
  border: 2px solid #C5C7CD;
  background: #FFFFFF; /* Old browsers */
  opacity: 0.3;
  color: #C5C7CD;
  text-align: center;
  line-height: 36.8px;
  font-size: 18px;
  font-family: TEEE, sans-serif;
  font-style: normal;
}

.step-num,
.step-index.current .step-num {
  opacity: 1;
}

.step-num.finished {
  background-image: url("../../assets/icons/checked.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #00DA8B;
  border-color: #00DA8B;
  color: #FFFFFF;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.step-num.current {
  background-color: #253292;
  color: #fff;
  font-weight: 700;
  border: 1px solid #253292;
}

.heart-icon {
  height: 1rem;
  width: auto;
  margin-bottom: 3px;
}

.feature_icon {
  height: 6rem;
  width: auto;
}

.migration_explanation_step {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #DFE0EB;
}

.migration_explanation_step.active {
  background: #FF4EA1;
}

.migration-explanation-card {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.migration-explanation-image {
  width: 100%;
  height: 0;
  padding-bottom: 25%;
  background-image: url("../../assets/images/employee_migration_explanation_1.svg");
  background-size: cover;
  background-position: center;
}

.table-avatar-image {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.delete-company-avatar {
  margin-bottom: -25px;
  cursor: pointer;
}

.support-icon {
  width: 3rem;
  height: auto;
}

.faq-link {
  color: #0022ff;
}

.custom-validation-message {
  background: none;
  box-shadow: none;
  border: none;
  padding: 0 !important;
  color: red;
  font-size: 12px;
  font-weight: bold;
  text-align: left !important;
  margin: 0 15px 0 15px !important;
  justify-content: left !important;
}

.agreements-table-column {
  flex-basis: 15.83%;
  display: flex;
  justify-content: center;
}

.agreements-table-column-settings {
  flex-basis: 5%;
  display: flex;
  justify-content: end;
}

.agreements-icon-container {
  display: flex;
  justify-content: center;
  border-radius: 100%;
  padding: 15px;
}

.green-gradient-bg {
  background: linear-gradient(180deg, #FFFFFF 0%, #E9FFF3 100%);
}

.purple-gradient-bg {
  background: linear-gradient(180deg, #FFFFFF 0%, #F1EBFF 100%);
}

.blue-gradient-bg {
  background: linear-gradient(180deg, #FFFFFF 0%, #E5F5FF 100%);
}

.bg-mid-gray {
  background: #9FA2B4;
}

.radio-group {
  display: flex;
  gap: 10px;
}
.radio-group .radio-button {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 500;
  color: #9FA2B4;
  border: 1px solid #E0E0E0;
  border-radius: 25px;
  background-color: #F9F9F9;
  cursor: pointer;
  transition: all 0.3s ease;
}
.radio-group .radio-button input {
  display: none;
}
.radio-group .radio-button .radio-circle {
  width: 16px;
  height: 16px;
  border: 2px solid #9FA2B4;
  border-radius: 50%;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.radio-group .radio-button .radio-circle::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: transparent;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.radio-group .radio-button span {
  margin-left: 5px;
}
.radio-group .radio-button input:checked + .radio-circle {
  border-color: #253292;
}
.radio-group .radio-button input:checked + .radio-circle::after {
  background-color: #253292;
}
.radio-group .radio-button input:checked + .radio-circle + span {
  color: #253292;
  font-weight: 600;
}

.small-missing-documents-table-column {
  flex-basis: 15%;
  overflow: hidden;
}

.medium-missing-documents-table-column {
  flex-basis: 20%;
  overflow: hidden;
}

.big-missing-documents-table-column {
  flex-basis: 25%;
  overflow: hidden;
}

.small-missing-documents-table-header {
  flex-basis: 15%;
  overflow: hidden;
}

.medium-missing-documents-table-header {
  flex-basis: 20%;
  overflow: hidden;
}

.big-missing-documents-table-header {
  flex-basis: 25%;
  overflow: hidden;
}

.border-gray-light {
  border: 1px solid #DFE0EB;
}

.upload-area, .new-modal-upload-area {
  display: flex;
  border: 2px dashed #d8d8d8;
  border-radius: 8px;
  padding: 20px;
  cursor: pointer;
  color: #d8d8d8;
  margin-bottom: 10px;
  align-items: center;
  justify-content: center;
}

.upload-area:hover, .new-modal-upload-area:hover {
  background-color: #e9f5ff;
}

.file-name {
  font-size: 14px;
  color: #555;
  padding-bottom: 10px;
}

.new-modal-style-xl {
  max-width: 1009px;
  max-height: 610px;
  border-radius: 12px;
}

.modal-header-title {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  color: #252733;
}

.new-modal-upload-area {
  max-height: 80px;
  border-radius: 10px;
  border: 2px dashed #d8d8d8;
}

.marketplace-card {
  padding: 20px 16px;
  border: 1px solid #DFE0EB;
  border-radius: 8px;
}

.marketplace-card-title {
  font-weight: 600;
  font-size: 14px;
  color: #253292;
}

.marketplace-card-description {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
}

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

@media (max-width: 900px) {
  .marketplace-grid-container {
    grid-template-columns: 1fr;
  }
}
.wise-wrapper {
  width: 116px;
  max-height: 26px;
  position: relative;
}
.wise-wrapper img {
  display: block;
  max-height: 100%;
  max-width: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}

.payoneer-wrapper {
  width: 152px;
  max-height: 26px;
  position: relative;
}
.payoneer-wrapper img {
  display: block;
  max-height: 100%;
  max-width: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}

.marketplace-banner {
  border-radius: 8px;
  background: linear-gradient(to bottom, #B26EFF 0.29%, #642ADB 98.62%);
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.announcement-banner-button,
.marketplace-banner-button {
  border: unset;
  padding-inline: 2.75rem;
  margin-inline: unset;
  outline: none;
  min-width: 125px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.2px;
  transition: all 300ms ease;
  border-radius: 30px;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: none;
  height: 48px;
  line-height: 1;
  background: #FFFFFF;
  color: #253292;
  text-decoration: none !important;
}

@media (max-width: 900px) {
  .marketplace-banner div {
    flex-direction: column;
  }
}
.avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  flex-grow: 0;
  margin-right: 15px;
}

.announcement-banner {
  background-image: url(../images/background-banner-image.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 8px;
  padding: 1.5rem 1rem;
  display: flex;
  justify-content: space-between;
}

/*# sourceMappingURL=teee.css.map */
