.respona-new-logo--small {
  width: 24px;
  height: 24px;
}
.loader {
  font-size: 10px;
  margin: 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  background: -moz-linear-gradient(left, var(--loader-color), var(--loader-color));
  background: -webkit-linear-gradient(left, var(--loader-color), var(--loader-color));
  background: -o-linear-gradient(left, var(--loader-color), var(--loader-color));
  background: -ms-linear-gradient(left, var(--loader-color), var(--loader-color));
  background: linear-gradient(to right, var(--loader-color), var(--loader-color));
  position: relative;
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.loader--with-top-margin {
  margin-top: 20px;
}
.loader__full-screen-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}
.loader__full-block-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.loader:before {
  width: 50%;
  height: 50%;
  background: var(--background-color);
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

.loader:after {
  background: var(--background-color);
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 50%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.workspace-select {
  width: 51px;
  height: 51px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border-radius: 11px;
  position: relative;
  font-size: 18px;
  text-transform: uppercase;
  color: #221CB6;
  cursor: pointer;
}
.workspace-select__short-content {
  box-sizing: border-box;
  height: 47px;
  width: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  background: #DBE2FE;
  border-radius: 10px;
}
.workspace-select__short-content:hover {
  background: #221CB6;
  color: #FFFFFF;
}
.workspace-select__logo {
  width: 25px;
  height: 25px;
  border-radius: 100%;
}


/* =========================
   KEYFRAMES
========================= */

@keyframes sparkle-pulse-1 {
    0%, 100% {
        transform: scale(1) translateY(0);
        opacity: 0.85;
    }
    50% {
        transform: scale(1.08) translateY(-2px);
        opacity: 1;
    }
}

@keyframes sparkle-pulse-2 {
    0%, 100% {
        transform: scale(1) translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.12) translateY(-1px);
        opacity: 1;
    }
}

@keyframes sparkle-pulse-3 {
    0%, 100% {
        transform: scale(1) translateY(0);
        opacity: 0.75;
    }
    50% {
        transform: scale(1.15) translateY(-3px);
        opacity: 1;
    }
}

@keyframes sparkle-rotate-3d {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}


/* =========================
   CLASSES WITH ANIMATION
========================= */
.sparkle-pulse-1 {
    animation: sparkle-pulse-1 2.5s ease-in-out infinite;
}

.sparkle-pulse-2 {
    animation: sparkle-pulse-2 2s ease-in-out infinite 0.3s;
}

.sparkle-pulse-3 {
    animation: sparkle-pulse-3 1.8s ease-in-out infinite 0.6s;
}

.sparkle-rotate-3d {
    animation: sparkle-rotate-3d 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.label {
  border-radius: 20px;
  padding: 2px 5px;
  min-width: 20px;
  display: inline-flex;
  justify-content: center;
}
.label-color-blue {
  background-color: #DDDEF6;
  color: #221CB6;
}
.label-color-blue.label-hover:hover {
  cursor: pointer;
  background-color: #221CB6;
  color: #fff;
}
.label-color-blue_reversed {
  background-color: #221CB6;
  color: #fff;
}
.label-color-blue_reversed.label-hover:hover {
  cursor: pointer;
  background-color: #4e48dc;
  color: #fff;
}
.label-color-orange {
  background-color: #FEDDB7;
  color: #FC8619;
}
.label-color-orange.label-hover:hover {
  cursor: pointer;
  color: #fff;
  background-color: #fc8619;
}
.label-color-orange.label-hover:hover .sidebar-trial-counter__icon circle {
  stroke: white;
}
.label-color-orange.label-hover:hover .sidebar-trial-counter__icon rect,
.label-color-orange.label-hover:hover .sidebar-trial-counter__icon path {
  fill: white;
}
.label-color-success {
  background-color: #23E771;
  color: #FFFFFF;
}
.label-color-success.label-hover:hover {
  cursor: pointer;
  opacity: 0.8;
}
.label-color-success.label-hover:hover .sidebar-trial-counter__icon circle {
  stroke: white;
}
.label-color-success.label-hover:hover .sidebar-trial-counter__icon rect,
.label-color-success.label-hover:hover .sidebar-trial-counter__icon path {
  fill: white;
}
.label-color-red {
  background-color: rgba(237, 72, 61, 0.1);
  color: #ED483D;
}
.label-color-red.label-hover:hover {
  cursor: pointer;
  color: #fff;
  background-color: #f77b73;
}
.label-color-red.label-hover:hover .sidebar-trial-counter__icon circle {
  stroke: white;
}
.label-color-red.label-hover:hover .sidebar-trial-counter__icon rect,
.label-color-red.label-hover:hover .sidebar-trial-counter__icon path {
  fill: white;
}
.label-color-yellow {
  background-color: #FFEDC3;
  color: #A16A38;
}
.label-color-yellow.label-hover:hover {
  cursor: pointer;
  color: #704a27;
  background-color: #d3c096;
}
.label-color-yellow.label-hover:hover .sidebar-trial-counter__icon circle {
  stroke: white;
}
.label-color-yellow.label-hover:hover .sidebar-trial-counter__icon rect,
.label-color-yellow.label-hover:hover .sidebar-trial-counter__icon path {
  fill: white;
}
.label-color-green {
  background-color: rgba(88, 205, 149, 0.1);
  color: #13A861;
}
.label-color-green.label-hover:hover {
  cursor: pointer;
  color: #fff;
  background-color: #13A861;
}
.label-color-green.label-hover:hover .sidebar-trial-counter__icon circle {
  stroke: white;
}
.label-color-green.label-hover:hover .sidebar-trial-counter__icon rect,
.label-color-green.label-hover:hover .sidebar-trial-counter__icon path {
  fill: white;
}
.label-color-light-green {
  background-color: rgba(147, 255, 75, 0.1);
  color: #126E37;
}
.label-color-bright-green {
  background-color: #B4E5AE;
  color: #0A4723;
}
.label-color-dark-green {
  background-color: #2D8F5B;
  color: #E3EEDB;
}
.label-color-gray {
  background-color: rgba(189, 189, 189, 0.22);
  color: #8F9199;
}
.label-color-gray.label-hover:hover {
  cursor: pointer;
  color: #fff;
  background-color: #8F9199;
}
.label-color-gray.label-hover:hover .sidebar-trial-counter__icon circle {
  stroke: white;
}
.label-color-gray.label-hover:hover .sidebar-trial-counter__icon rect,
.label-color-gray.label-hover:hover .sidebar-trial-counter__icon path {
  fill: white;
}
.label-color-purple {
  background-color: #E5E4FF;
  color: #221CB6;
}
.label-color-gray {
  background-color: #ECECEC;
  color: #494949;
}
.label-color-black {
  background-color: rgba(32, 36, 48, 0.27);
  color: #202430;
}
.label-font-size-small {
  font-size: 10px;
  font-weight: 600;
  line-height: 10px;
}
.label-font-size-12 {
  font-size: 12px !important;
}
.label-position-moved-to-top {
  position: relative;
  top: -6px;
}
.label-squared {
  border-radius: 5px;
}
.sidebar-trial-counter {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-trial-counter__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8px;
  height: 8px;
  border-radius: 9px;
  cursor: pointer;
}
.sidebar-trial-counter:hover {
  color: #fff;
  background-color: #FC8619;
}
.sidebar-trial-counter:hover .sidebar-trial-counter__icon:hover circle {
  stroke: white;
}
.sidebar-trial-counter:hover .sidebar-trial-counter__icon:hover rect,
.sidebar-trial-counter:hover .sidebar-trial-counter__icon:hover path {
  fill: white;
}
.user-links-wrapper--blocked {
  pointer-events: none;
}

.user-link {
  display: flex;
  position: relative;
  align-items: center;
  font-size: 16px;
  color: #7b7b7b;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
  padding: 8px 16px;
  border-radius: 11px;
  margin: 5px -10px;
  cursor: pointer;
}
.user-link__icon {
  margin-right: 10px;
  height: 20px;
}
.user-link__icon svg {
  width: 20px;
  height: 20px;
}
.user-link__tooltip-content {
  padding: 15px;
  font-size: 16px;
}
.user-link--short {
  justify-content: center;
}
.user-link--short .user-link__icon {
  cursor: pointer;
  margin-right: 0;
}
.user-link--column {
  flex-direction: column;
}
.user-link__credits-number {
  color: #181616;
}
.user-link__credits-number--closed {
  color: #FFFFFF;
}
.user-link__notification-flag {
  display: inline-block;
  position: absolute;
  top: 5px;
  right: 15px;
  background-color: #3424EB;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.user-link:hover .label-color-blue {
  background-color: #221CB6;
  color: #fff;
}
.user-link:hover .user-link__icon circle,
.user-link:hover .user-link__icon path {
  stroke: black;
}
.user-link:hover .user-link__icon rect {
  fill: black;
}
.user-link:hover .label-color-orange {
  color: #fff;
  background-color: #fc8619;
}
.user-link:hover .label-color-orange .sidebar-trial-counter__icon circle {
  stroke: white;
}
.user-link:hover .label-color-orange .sidebar-trial-counter__icon rect,
.user-link:hover .label-color-orange .sidebar-trial-counter__icon path {
  fill: white;
}
.help-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 59px;
  width: 59px;
  border-radius: 10px;
  border: 0 solid rgba(224, 224, 224, 0.37);
  color: #221CB6;
  font-size: 12px;
  position: relative;
  cursor: pointer;
  background-color: #dbe2fe;
  padding: 0 15px;
}
.help-button:hover {
  background-color: #221CB6;
}
.help-button:hover .help-button__text {
  color: #ffffff;
}
.help-button:hover svg {
  filter: brightness(1000) saturate(100%) invert(0%) sepia(100%);
}
.help-button > svg {
  height: 18px;
  width: 18px;
}
.help-button__text {
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  color: #221CB6;
  margin-top: 5px;
}
.help-button--open:hover {
  background-color: #dbe2fe;
  color: #221CB6;
}
.help-button--open:hover svg {
  filter: none;
}
.help-button:not(.help-button--open) {
  flex-direction: column;
}
.help-button__tooltip {
  max-width: 235px;
}
.help-button__tooltip::after {
  top: 85% !important;
}
.help-button__option {
  display: flex;
  flex-direction: column;
  padding: 18px 18px 20px;
  cursor: pointer;
}
.help-button__option:first-of-type {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.help-button__option:last-of-type {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.help-button__option:not(:last-child) {
  border-bottom: 1px solid #494949;
}
.help-button__option:hover {
  background-color: #1b1b1b;
}
.help-button__option-icon {
  margin-right: 9px;
}
.help-button__option-title {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
}
.help-button__option-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.help-button__option-subtitle {
  margin-top: 8px;
  padding-left: 28px;
  font-weight: 400;
  font-size: 13px;
  line-height: 14px;
  color: rgba(255, 255, 255, 0.56);
}
.user-avatar-wrapper--size-xlsx {
  width: 15px;
  height: 15px;
  min-height: 15px;
  min-width: 15px;
}
.user-avatar-wrapper--size-xxs {
  width: 22px;
  height: 22px;
  min-height: 22px;
  min-width: 22px;
}
.user-avatar-wrapper--size-xs {
  width: 30px;
  height: 30px;
  min-height: 30px;
  min-width: 30px;
}
.user-avatar-wrapper--size-s {
  width: 36px;
  height: 36px;
  min-height: 36px;
  min-width: 36px;
}
.user-avatar-wrapper--size-sm {
  width: 40px;
  height: 40px;
  min-height: 40px;
  min-width: 40px;
}
.user-avatar-wrapper--size-sl {
  width: 46px;
  height: 46px;
  min-height: 46px;
  min-width: 46px;
}
.user-avatar-wrapper--size-m {
  width: 50px;
  height: 50px;
  min-height: 50px;
  min-width: 50px;
}
.user-avatar-wrapper--size-l {
  width: 86px;
  height: 86px;
  min-height: 86px;
  min-width: 86px;
}

.user-avatar {
  border-radius: 100%;
}
.user-avatar--size-xlsx {
  width: 15px;
  height: 15px;
  min-height: 15px;
  min-width: 15px;
}
.user-avatar--size-xxs {
  width: 22px;
  height: 22px;
  min-height: 22px;
  min-width: 22px;
}
.user-avatar--size-xs {
  width: 30px;
  height: 30px;
  min-height: 30px;
  min-width: 30px;
}
.user-avatar--size-xs:before {
  width: 30px;
  height: 30px;
  min-height: 30px;
  min-width: 30px;
}
.user-avatar--size-s {
  width: 36px;
  height: 36px;
  min-height: 36px;
  min-width: 36px;
}
.user-avatar--size-s:before {
  width: 36px;
  height: 36px;
  min-height: 36px;
  min-width: 36px;
}
.user-avatar--size-sm {
  width: 40px;
  height: 40px;
  min-height: 40px;
  min-width: 40px;
}
.user-avatar--size-sm:before {
  width: 40px;
  height: 40px;
  min-height: 40px;
  min-width: 40px;
}
.user-avatar--size-sl {
  width: 46px;
  height: 46px;
  min-height: 46px;
  min-width: 46px;
}
.user-avatar--size-sl:before {
  width: 46px;
  height: 46px;
  min-height: 46px;
  min-width: 46px;
}
.user-avatar--size-m {
  width: 50px;
  height: 50px;
  min-height: 50px;
  min-width: 50px;
}
.user-avatar--size-m:before {
  width: 50px;
  height: 50px;
  min-height: 50px;
  min-width: 50px;
}
.user-avatar--size-l {
  width: 86px;
  height: 86px;
  min-height: 86px;
  min-width: 86px;
}
.user-avatar--size-l:before {
  width: 86px;
  height: 86px;
  min-height: 86px;
  min-width: 86px;
}
.user-avatar:before {
  visibility: visible;
  content: " ";
  display: block;
  position: absolute;
  border-radius: 100%;
  background-color: #c4c4c4;
}

.named-avatar {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.named-avatar--square {
  border-radius: 6px;
}
.named-avatar__content {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 100%;
}
.named-avatar--size-xlsx {
  width: 15px;
  height: 15px;
  min-height: 15px;
  min-width: 15px;
}
.named-avatar--size-xlsx .named-avatar__content {
  font-size: 10px;
}
.named-avatar--size-xlsx.named-avatar--square {
  border-radius: 3px;
}
.named-avatar--size-xxs {
  width: 22px;
  height: 22px;
  min-height: 22px;
  min-width: 22px;
}
.named-avatar--size-xs {
  width: 30px;
  height: 30px;
  min-height: 30px;
  min-width: 30px;
}
.named-avatar--size-xs:before {
  width: 30px;
  height: 30px;
  min-height: 30px;
  min-width: 30px;
}
.named-avatar--size-xs .named-avatar__content {
  font-size: 12px;
}
.named-avatar--size-s {
  width: 34px;
  height: 34px;
  min-height: 34px;
  min-width: 34px;
}
.named-avatar--size-s:before {
  width: 34px;
  height: 34px;
  min-height: 34px;
  min-width: 34px;
}
.named-avatar--size-sm {
  width: 40px;
  height: 40px;
  min-height: 40px;
  min-width: 40px;
}
.named-avatar--size-sm:before {
  width: 40px;
  height: 40px;
  min-height: 40px;
  min-width: 40px;
}
.named-avatar--size-sl {
  width: 46px;
  height: 46px;
  min-height: 46px;
  min-width: 46px;
}
.named-avatar--size-sl:before {
  width: 46px;
  height: 46px;
  min-height: 46px;
  min-width: 46px;
}
.named-avatar--size-m {
  width: 50px;
  height: 50px;
  min-height: 50px;
  min-width: 50px;
}
.named-avatar--size-m:before {
  width: 50px;
  height: 50px;
  min-height: 50px;
  min-width: 50px;
}
.named-avatar--size-l {
  width: 86px;
  height: 86px;
  min-height: 86px;
  min-width: 86px;
}
.named-avatar--size-l:before {
  width: 86px;
  height: 86px;
  min-height: 86px;
  min-width: 86px;
}
.sidebar-footer {
  margin-top: auto;
  margin-bottom: 10px;
  position: relative;
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sidebar-footer::before {
  content: "";
  position: absolute;
  left: -20px;
  right: -20px;
  height: 1px;
  background-color: #BDBDBD;
  top: 0;
  opacity: 0.17;
}
.sidebar-footer--opened {
  padding-right: 20px;
}
.sidebar-footer__profile {
  margin-top: 15px;
  padding: 15px 0 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sidebar-footer__profile::before {
  content: "";
  position: absolute;
  left: -20px;
  right: -20px;
  height: 1px;
  background-color: #BDBDBD;
  top: 0;
  opacity: 0.17;
}
.sidebar-footer__profile--opened {
  justify-content: flex-start;
}
.sidebar-footer__profile-avatar {
  position: relative;
  cursor: pointer;
}
.sidebar-footer__profile-avatar .named-avatar__content {
  font-size: 14px;
}
.sidebar-footer__profile-avatar .logout-on-hover-avatar, .sidebar-footer__profile-avatar .background-on-hover-avatar {
  display: none;
}
.sidebar-footer__profile-avatar:hover .background-on-hover-avatar {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFEEEE;
  opacity: 1;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}
.sidebar-footer__profile-avatar:hover .logout-on-hover-avatar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.sidebar-footer__profile-name {
  margin-left: 10px;
  margin-right: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5rem;
}
.sidebar-footer__profile-logout-button {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.sidebar {
  position: relative;
  padding-left: 20px;
  box-sizing: border-box;
  transition: width 0.1s cubic-bezier(0, 0.5, 0.5, 1) 0.01s;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #f9f9f9;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.sidebar::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}
.sidebar::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.sidebar:hover::-webkit-scrollbar {
  background-color: #F5F5F5;
}
.sidebar:hover::-webkit-scrollbar-thumb {
  background-color: #eeeeee;
}
.sidebar__header {
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  width: 100%;
  position: sticky;
  top: 0;
  background-color: white;
  justify-content: center;
  z-index: 1;
}
.sidebar-footer {
  position: sticky;
  width: 100%;
  background-color: white;
  bottom: 10px;
  z-index: 10;
}
.sidebar__header-text {
  font-family: Mulish;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #221cb6;
  margin-left: 8px;
}
.sidebar__respona-big-logo {
  width: 99px;
}
.sidebar__logo {
  height: 24px;
}
.sidebar__logo svg {
  height: 24px;
  width: 24px;
}
.sidebar__logo--respona {
  display: inline-block;
}
.sidebar__logo--open {
  display: none;
}
.sidebar__logo--open svg {
  transform: rotate(180deg);
}
.sidebar__header-hide-btn {
  margin-left: 30px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.sidebar__workspace {
  position: relative;
  padding: 10px 0;
}
.sidebar__workspace--disabled {
  pointer-events: none;
}
.sidebar__pages {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.sidebar__pages::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #BDBDBD;
  top: 0;
  opacity: 0.17;
}
.sidebar__pages--disabled {
  pointer-events: none;
}
.sidebar__gnc-footer {
  padding-right: 20px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar__link {
  font-family: Mulish;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  color: #BDBDBD;
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 62px;
}
.sidebar .sidebar-link--active {
  color: #221cb6;
  position: relative;
  background-color: #DBE2FE;
}
.sidebar .sidebar-link--active:after {
  content: "";
  display: inline-block;
  width: 3px;
  position: absolute;
  top: 2px;
  right: 0;
  bottom: 2px;
  background-color: #221cb6;
  border-radius: 10px;
}
.sidebar .sidebar-link--active .sidebar-link__icon {
  filter: grayscale(0) opacity(1);
}
.sidebar .sidebar-link__beta-tag {
  margin-left: 10px;
  padding: 6px 10px;
  border: 1px solid rgba(189, 189, 189, 0.17);
  border-radius: 8px;
  font-family: "Oakes Grotesk";
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  text-align: center;
  letter-spacing: 0.5px;
  color: #BDBDBD;
}
.sidebar .sidebar-link__icon {
  margin-right: 12px;
  height: 24px;
  width: 24px;
}
.sidebar .sidebar-link__tooltip-content {
  padding: 15px;
  font-size: 16px;
}

.sidebar--closed {
  width: 95px;
  align-items: center;
  padding-left: 0;
  /*.sidebar__footer {
    height: 125px;
    flex-direction: column-reverse;
    padding-right: 0;
  }

  .sidebar__gnc-footer {
    padding-right: 0;
    flex-direction: column;
    height: 110px;
  }*/
}
.sidebar--closed .sidebar__pages {
  width: 100%;
}
.sidebar--closed .sidebar__link {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  white-space: nowrap;
}
.sidebar--closed .sidebar__link:hover {
  color: #221CB6;
}
.sidebar--closed .sidebar__link:hover .sidebar-link__icon {
  filter: grayscale(0) opacity(1);
}
.sidebar--closed .sidebar-link__icon {
  margin-right: 0;
  margin-bottom: 5px;
  filter: grayscale(100%) opacity(0.3);
}
.sidebar--closed .sidebar-link--active:hover {
  border-right: 0px solid #221CB6;
}

.sidebar--opened {
  width: 190px;
  min-width: 190px;
}
.sidebar--opened.sidebar .sidebar__logo--open {
  display: none;
}
.sidebar--opened.sidebar .sidebar__logo--respona {
  display: inline-block;
}
.page-wrapper {
  display: flex;
  height: 100vh;
}
.page-wrapper--disabled {
  pointer-events: none;
}
.page-wrapper__content {
  overflow-y: auto;
  position: relative;
  flex: 1;
}
.page-wrapper__content.padding-fixed {
  padding-top: 68px;
}
.page-wrapper__content.active-personalize {
  overflow-y: hidden;
}
.notifications-sidebar {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: 0 4px 50px rgba(18, 16, 68, 0.15);
  display: flex;
  flex-direction: column;
  z-index: 20;
  border-right: 1px solid #EAEAEA;
}
.notifications-sidebar__header {
  height: 80px;
  padding: 0 18px;
  border-bottom: 1px solid #EAEAEA;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: #333333;
}
.notifications-sidebar__close-icon {
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}
.notifications-sidebar__close-icon:hover {
  background-color: #F5F5F5;
  opacity: 0.8;
}
.notifications-sidebar__body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
}
.notifications-sidebar__notification {
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #EAEAEA;
  transition: all 0.2s ease;
  position: relative;
}
.notifications-sidebar__notification:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-color: #D0D0D0;
}
.notifications-sidebar__notification--unread {
  background-color: #F8F9FF;
  border-left: 3px solid #4A6FFF;
}
.notifications-sidebar__notification--read {
  background-color: #FFFFFF;
  opacity: 0.9;
}
.notifications-sidebar__close-notification {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  z-index: 1;
}
.notifications-sidebar__close-notification:hover {
  background-color: #F5F5F5;
  opacity: 0.9;
}
.notifications-sidebar__close-notification svg {
  width: 10px;
  height: 10px;
}
.notifications-sidebar__notification-content {
  cursor: pointer;
}
.notifications-sidebar__notification-title {
  margin: 0;
  line-height: 1.5rem;
  font-weight: 500;
  color: #333333;
  word-break: break-word;
}
.notifications-sidebar__notification-datetime {
  margin-top: 4px;
  font-size: 12px;
  color: #928E8D;
  font-style: italic;
}
.notifications-sidebar__notification-text {
  margin-top: 12px;
  text-decoration: none;
  color: #4A6FFF;
  cursor: pointer;
  font-weight: 500;
  display: inline-block;
}
.notifications-sidebar__notification-text:hover {
  text-decoration: underline;
}
.notifications-sidebar__no-notifications {
  text-align: center;
  color: #666666;
  margin-top: 40px;
  font-size: 14px;
}
.input {
  position: relative;
}
.input__field {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  border: 1px solid #C1C1C1;
  box-sizing: border-box;
  border-radius: 8px;
  width: 315px;
  height: 40px;
  color: #404040;
  font-size: 16px;
  padding-left: 19px;
}
.input__field:focus {
  border: 1px solid #221cb6;
  outline: none;
}
.input__field::before {
  content: attr(data-placeholder);
  position: relative;
}
.input__field::placeholder {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #C0C6CD;
}
.input--error .input__field {
  border: 1px solid #ed483d;
  color: #ed483d;
}
.input__error {
  display: block;
  margin: 4px 0 0 8px;
  font-size: 12px;
  color: #ed483d;
}
.input__icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.input__clear-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.input--inline {
  margin: 0 6px;
  display: inline-block;
}
.input--inline .input__field {
  width: 50px;
  height: 24px;
  padding-left: 7px;
  border-radius: 5px;
}
.input--with-icon .input__field {
  padding-left: 40px !important;
}
.input--clearable .input__field {
  padding-right: 30px;
}
.input--full-width .input__field {
  width: 100%;
}
.input--full-height .input__field {
  height: 100%;
}
.input__before-text {
  position: absolute;
  display: flex;
  align-items: center;
  height: 100%;
  top: 0;
  left: 15px;
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 16px;
  color: #8f9199;
  pointer-events: none;
}
.input--with-after-text .input__field {
  padding-right: 70px;
}
.input--with-after-text .input__after-text {
  position: absolute;
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  right: 10px;
  top: 10px;
  font-size: 16px;
  line-height: 100%;
  color: #8f9199;
}
.input--transparent .input__field {
  background-color: transparent;
  border: none;
}
.input--disabled .input__field {
  background-color: #F5F5F5;
  border: none;
  color: #C0C6CD;
}

.number-input--without-arrows {
  /*
    Disable in number input right arrows
  */
}
.number-input--without-arrows .input__field {
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
  -moz-appearance: textfield;
}
.number-input--without-arrows .input__field::-webkit-outer-spin-button, .number-input--without-arrows .input__field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
@keyframes rotate {
  from {
    transform: rotate(360deg);
  }
}
.spinner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.spinner svg {
  transition: all 0.5s ease;
  animation: rotate 1s linear infinite;
}
.button {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 200px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
}
.button:focus {
  outline: none;
}
.button--primary {
  background-color: #221CB6;
  color: #ffffff;
}
.button--primary:hover {
  background-color: #4e48dc;
}
.button--primary:disabled {
  background: rgba(219, 223, 231, 0.84);
}
.button--secondary {
  background-color: #f5f5f5;
  color: #7b7b7b;
}
.button--secondary:hover {
  opacity: 0.8;
}
.button--graph {
  background-color: #E9E9E9;
  color: #BDBDBD;
  min-width: 36px;
  height: 36px;
}
.button--white {
  background-color: #ffffff;
  color: #000000;
}
.button--white-shadow {
  background-color: #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0588235294);
}
.button--black {
  background-color: #181818;
  color: #eef3ff;
}
.button--grey {
  background: #181818;
  color: #7b7b7b;
}
.button--blue {
  background: #D9E3FF;
  color: #3424EB;
}
.button--bordered {
  border: 1px solid #221CB6;
  color: #221CB6;
  background-color: transparent;
}
.button--bordered:hover {
  background-color: #4e48dc;
  color: #ffffff;
}
.button--bordered.button--link:hover {
  color: #ffffff;
}
.button--bordered-grey {
  border: 1px solid #f0f0f0;
  color: #8f9199;
  background-color: transparent;
}
.button--bordered-grey:not(:disabled):hover {
  border-color: #8f9199;
}
.button--show-more {
  background-color: #ffffff;
  border: 1px solid rgba(140, 141, 141, 0.4117647059);
}
.button--ghost {
  display: inline-flex;
  border-radius: 0;
  width: auto;
  height: auto;
  background-color: transparent;
  padding: 0;
  border: none;
  color: #7974f7;
}
.button--ghost:hover {
  color: #4e48dc;
}
.button--additional {
  background-color: #e9eeff;
  color: #231db6;
}
.button--additional:hover {
  background-color: #231db6;
  color: #e9eeff;
}
.button--additional:hover svg {
  filter: brightness(600%);
}
.button--alert {
  background: #ed483d;
  color: #fff;
}
.button--alert:hover {
  background: #f77b73;
}
.button--confirm {
  background: #23e771;
  color: #fff;
}
.button--confirm:hover {
  background: #23e771;
  opacity: 0.9;
}
.button--disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.button--disabled:hover {
  opacity: 0.7;
}
.button--link {
  text-decoration: none;
}
.button--size-xs {
  width: auto;
  padding-right: 4px;
  padding-left: 4px;
}
.button--size-s, .button--size-m {
  width: auto;
  font-size: 16px;
  min-width: 82px;
}
.button--size-s {
  padding-right: 12px;
  padding-left: 12px;
  height: 35px;
}
.button--size-m {
  padding-right: 19px;
  padding-left: 19px;
  height: 40px;
}
.button--size-l {
  padding-right: 15px;
  padding-left: 15px;
  height: 45px;
}
.button--size-xl {
  padding-right: 23px;
  padding-left: 23px;
  height: 48px;
}
.button--size-xxl {
  padding: 8px 16px;
  min-width: 230px;
  height: 40px;
  justify-content: space-between;
}
.button--inline {
  width: auto;
  min-width: 20px;
  padding-right: 3px;
  padding-left: 3px;
}
.button > svg:not(:last-child) {
  margin-right: 8px;
}
.button > svg:last-child {
  margin-left: 8px;
}
.icon-name-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.workspaces-sidebar {
  position: absolute;
  top: 0;
  left: 0;
  width: 295px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: 0 4px 50px rgba(18, 16, 68, 0.09);
  display: flex;
  flex-direction: column;
  z-index: 20;
}
.workspaces-sidebar__header {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  height: 80px;
  padding: 0 18px;
  border-bottom: 1px solid #F4F4F4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
}
.workspaces-sidebar__close-icon {
  cursor: pointer;
}
.workspaces-sidebar__close-icon:hover {
  opacity: 0.5;
}
.workspaces-sidebar__body {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
}
.workspaces-sidebar__search {
  padding: 0 18px;
  padding-top: 18px;
  position: sticky;
  top: 0;
  background: white;
  z-index: 10;
}
.workspaces-sidebar__workspaces-list {
  margin-top: 20px;
}
.workspaces-sidebar__workspace-row {
  display: flex;
  position: relative;
  align-items: center;
  cursor: pointer;
  padding: 5px 18px;
}
.workspaces-sidebar__workspace-row:hover {
  background-color: #EEF3FF;
}
.workspaces-sidebar__workspace-info {
  margin-left: 13px;
  max-width: 180px;
}
.workspaces-sidebar__workspace-title {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 3px;
  max-width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
}
.workspaces-sidebar__workspace-members {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 14px;
  color: #7b7b7b;
}
.workspaces-sidebar__warning-triangle {
  position: absolute;
  left: 12px;
  top: 0;
}
.workspaces-sidebar__active-workspace {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  background-color: rgba(35, 231, 113, 0.12);
  border-radius: 100%;
  margin-left: auto;
}
.workspaces-sidebar__create-new-workspace {
  padding: 0 18px;
  margin-top: auto;
  display: flex;
  position: sticky;
  bottom: 0;
  background: white;
  padding-bottom: 18px;
}
.workspaces-sidebar__create-new-workspace .button {
  width: 100%;
}
.no-access-error {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 600px;
}
.no-access-error__title {
  margin-top: 50px;
}
.no-access-error__sub-title {
  margin-top: 21px;
}
.no-access-error__btn {
  padding: 12px 25px;
  margin-top: 41px;
}
.no-access-error__home {
  margin-top: 41px;
}
.question-tooltip__svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.question-tooltip__react-tooltip {
  z-index: 999999;
}
.question-tooltip__react-tooltip .question-tooltip__text {
  background: black;
}
.question-tooltip__react-tooltip::after {
  border-bottom-color: #3A3B3F !important;
}
.question-tooltip__text {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  color: #FFFFFF;
  max-width: 252px;
  padding: 20px;
  border-radius: 8px;
  background-color: #3A3B3F;
  line-height: 17.5px;
}
.question-tooltip .question-tooltip__is-light-theme {
  background: #fff;
  color: #000000;
}

.without-after::after {
  display: none;
}
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.modal {
  position: relative;
  border-radius: 8px;
  background: #FFFFFF;
  min-width: 400px;
  min-height: 220px;
  max-height: calc(100vh - 60px);
  max-width: 1070px;
  width: 100%;
}
.modal .modal__header {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-weight: 600;
  font-size: 20px;
  color: #1b1e22;
  height: 75px;
  display: flex;
  align-items: center;
  padding-left: 24px;
  border-bottom: 1px solid #f4f4f4;
}
.modal.fitWidthContent {
  width: auto;
}
.modal.scrollable {
  overflow-y: auto;
}
.modal__cross-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  cursor: pointer;
  z-index: 100;
}
.modal__cross-btn--scrollable {
  position: sticky;
  display: block;
  height: 0;
  margin-right: 25px;
  text-align: right;
}
.modal__cross-btn--scrollable svg {
  display: inline-block;
}
.modal__cross-btn:hover svg circle {
  stroke: #8d8f92;
}
.modal__cross-btn:hover svg rect,
.modal__cross-btn:hover svg path {
  fill: #8d8f92;
}
.video-frame-wrapper {
  width: 640px;
  height: 360px;
  position: relative;
  border-radius: 14px;
}

.video-frame {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  /*
    This is play video button like in Figma
    maybe will be usefull leter
   */
}
.tutorial-modal {
  padding: 24px;
}
.tutorial-modal__close-btn {
  top: 5px;
  right: 5px;
}
.boolean-toggler {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  border: 1px solid #f5f5f5;
  border-radius: 8px;
  background-color: #f5f5f5;
  cursor: pointer;
}
.boolean-toggler--reversed {
  flex-direction: row-reverse;
}
.boolean-toggler__button {
  white-space: nowrap;
  box-sizing: border-box;
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 14px;
  padding: 14px 15px;
  border-radius: 8px;
}
.boolean-toggler__button--active {
  background-color: #EEF3FF;
  border: 1px solid #221DB6;
  border-radius: 8px;
  color: #251fb6;
}
.header-filters {
  position: relative;
}
.header-filters__tooltip-button {
  display: flex;
  padding: 12px;
  color: #7B7B7B;
  background-color: #f5f5f5;
  border-radius: 8px;
  height: 40px;
}
.header-filters__tooltip-button:hover {
  color: #474747;
}
.header-filters__tooltip-button:hover svg path {
  fill: #474747;
}
.header-filters__tooltip-button svg {
  margin-right: 10px;
}
.header-filters__content-wrapper {
  min-width: 40px;
  border-radius: 10px !important;
  min-height: 40px;
}
.header-filters__content-wrapper:after {
  display: none;
}
.header-filters__throw-filters-button {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  top: -2px;
  right: -2px;
  cursor: pointer;
}
.filters-buttons {
  display: flex;
  justify-content: space-around;
}
.filters-buttons__button {
  flex: auto;
  width: auto;
  border-radius: 4px;
}
.filters-buttons__button:not(:first-child) {
  margin-left: 8px;
}
.team-filter {
  width: 100%;
}
.team-filter__input-wrapper {
  margin: 13px;
  border: 1px solid #272727;
  border-radius: 8px;
}
.team-filter__input-wrapper .input__field {
  color: #dadada;
  width: 100%;
}
.team-filter__everybody-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #DFE5FA;
  display: flex;
  justify-content: center;
  align-items: center;
}
.team-filter__everybody-icon svg circle {
  stroke: #2752EA;
}
.team-filter__everybody-icon svg rect,
.team-filter__everybody-icon svg path {
  fill: #2752EA;
}
.team-filter__everybody-title, .team-filter__person-item {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  cursor: pointer;
  color: #FFFFFF;
}
.team-filter__everybody-title {
  background-color: #181818;
  padding: 10px 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.team-filter__people-list {
  max-height: 260px;
  overflow-y: auto;
}
.team-filter__people-list::-webkit-scrollbar {
  width: 6px;
}
.team-filter__people-list::-webkit-scrollbar-thumb {
  background-color: #7b7b7b;
  border-radius: 20px;
  border: solid 0.3px #272727;
}
.team-filter__people-list::-webkit-scrollbar-track {
  background-color: transparent;
}
.team-filter__person-item {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-top: solid 1px #272727;
  font-weight: 400;
}
.team-filter__person-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.team-filter__person-name {
  margin-left: 12px;
}
.team-filter__chosen-person-icon {
  margin-left: auto;
}
.campaigns-filter-item {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  color: #FFFFFF;
  padding: 11px 22px 9px 20px;
  height: 41px;
  width: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid #272727;
}
.campaigns-filter-item--in-folder {
  padding-left: 44px;
}
.campaigns-filter-item svg {
  margin-left: auto;
}
.campaigns-filter-item__text {
  margin: 0;
  width: 90%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.insights-filters {
  background-color: black;
  border-radius: 8px;
  width: 272px;
}
.insights-filters__header {
  display: flex;
  flex-direction: column;
  padding: 17px 20px 0px 20px;
}
.insights-filters__search-input {
  display: flex;
  margin-bottom: 20px;
}
.insights-filters__search-input .input {
  width: 100%;
  border: 1px solid #272727;
  border-radius: 6px;
  padding: 5px 13px;
}
.insights-filters__search-input .input__field {
  color: #FFFFFF;
}
.insights-filters__toogle_buttons {
  margin-bottom: 20px;
}
.insights-filters__body {
  padding-bottom: 9px;
  max-height: 600px;
  overflow-y: auto;
}
/* Overlap styles */
.rdrDateRangePickerWrapper, .rdrCalendarWrapper {
  max-width: 400px;
  background-color: #000000;
  border-radius: 20px;
  font-weight: 600;
}
.rdrDateRangePickerWrapper .rdrDefinedRangesWrapper, .rdrCalendarWrapper .rdrDefinedRangesWrapper {
  background-color: transparent;
  border-right-color: #181818;
  padding-top: 1rem;
}
.rdrDateRangePickerWrapper .rdrStaticRange, .rdrCalendarWrapper .rdrStaticRange {
  background-color: transparent;
  color: #8d8f92;
  border: 0;
}
.rdrDateRangePickerWrapper .rdrStaticRange:hover .rdrStaticRangeLabel,
.rdrDateRangePickerWrapper .rdrStaticRange:focus .rdrStaticRangeLabel, .rdrCalendarWrapper .rdrStaticRange:hover .rdrStaticRangeLabel,
.rdrCalendarWrapper .rdrStaticRange:focus .rdrStaticRangeLabel {
  color: #eef3ff;
  background-color: transparent;
}
.rdrDateRangePickerWrapper .rdrInputRanges,
.rdrDateRangePickerWrapper .rdrDateDisplayWrapper, .rdrCalendarWrapper .rdrInputRanges,
.rdrCalendarWrapper .rdrDateDisplayWrapper {
  display: none;
}
.rdrDateRangePickerWrapper .rdrCalendarWrapper, .rdrCalendarWrapper .rdrCalendarWrapper {
  background-color: transparent;
}
.rdrDateRangePickerWrapper .rdrDayDisabled, .rdrCalendarWrapper .rdrDayDisabled {
  background-color: #000000;
}
.rdrDateRangePickerWrapper .rdrDayNumber span,
.rdrDateRangePickerWrapper .rdrMonthAndYearPickers select,
.rdrDateRangePickerWrapper .rdrWeekDay, .rdrCalendarWrapper .rdrDayNumber span,
.rdrCalendarWrapper .rdrMonthAndYearPickers select,
.rdrCalendarWrapper .rdrWeekDay {
  color: #eef3ff;
  font-weight: 900;
}
.rdrDateRangePickerWrapper .rdrMonthAndYearPickers option, .rdrCalendarWrapper .rdrMonthAndYearPickers option {
  background-color: #000000;
}
.rdrDateRangePickerWrapper .rdrMonthPicker,
.rdrDateRangePickerWrapper .rdrYearPicker, .rdrCalendarWrapper .rdrMonthPicker,
.rdrCalendarWrapper .rdrYearPicker {
  scrollbar-width: thin;
  scrollbar-color: #221CB6 #000000;
  scrollbar-face-color: #221CB6;
  scrollbar-track-color: #000000;
}
.rdrDateRangePickerWrapper .rdrMonthPicker ::-webkit-scrollbar,
.rdrDateRangePickerWrapper .rdrYearPicker ::-webkit-scrollbar, .rdrCalendarWrapper .rdrMonthPicker ::-webkit-scrollbar,
.rdrCalendarWrapper .rdrYearPicker ::-webkit-scrollbar {
  width: 5px;
}
.rdrDateRangePickerWrapper .rdrMonthPicker ::-webkit-scrollbar-thumb,
.rdrDateRangePickerWrapper .rdrYearPicker ::-webkit-scrollbar-thumb, .rdrCalendarWrapper .rdrMonthPicker ::-webkit-scrollbar-thumb,
.rdrCalendarWrapper .rdrYearPicker ::-webkit-scrollbar-thumb {
  background-color: #221CB6;
  border-radius: 30px;
}
.rdrDateRangePickerWrapper .rdrMonthPicker ::-webkit-scrollbar-track,
.rdrDateRangePickerWrapper .rdrYearPicker ::-webkit-scrollbar-track, .rdrCalendarWrapper .rdrMonthPicker ::-webkit-scrollbar-track,
.rdrCalendarWrapper .rdrYearPicker ::-webkit-scrollbar-track {
  background-color: #000000;
}
.rdrDateRangePickerWrapper .rdrDayPassive .rdrDayNumber span,
.rdrDateRangePickerWrapper .rdrDayDisabled .rdrDayNumber span, .rdrCalendarWrapper .rdrDayPassive .rdrDayNumber span,
.rdrCalendarWrapper .rdrDayDisabled .rdrDayNumber span {
  color: #7b7b7b;
}
.rdrDateRangePickerWrapper .rdrEndEdge,
.rdrDateRangePickerWrapper .rdrDayEndPreview, .rdrCalendarWrapper .rdrEndEdge,
.rdrCalendarWrapper .rdrDayEndPreview {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.rdrDateRangePickerWrapper .rdrStartEdge,
.rdrDateRangePickerWrapper .rdrDayStartPreview, .rdrCalendarWrapper .rdrStartEdge,
.rdrCalendarWrapper .rdrDayStartPreview {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.rdrDateRangePickerWrapper .rdrMonth, .rdrCalendarWrapper .rdrMonth {
  width: 22.667em;
}
.rdrDateRangePickerWrapper .rdrDefinedRangesWrapper, .rdrCalendarWrapper .rdrDefinedRangesWrapper {
  width: 134px;
}
.rdrDateRangePickerWrapper .rdrDayToday .rdrDayNumber span:after,
.rdrDateRangePickerWrapper .rdrDayToday:not(.rdrDayPassive) .rdrInRange ~ .rdrDayNumber span:after,
.rdrDateRangePickerWrapper .rdrDayToday:not(.rdrDayPassive) .rdrStartEdge ~ .rdrDayNumber span:after,
.rdrDateRangePickerWrapper .rdrDayToday:not(.rdrDayPassive) .rdrEndEdge ~ .rdrDayNumber span:after,
.rdrDateRangePickerWrapper .rdrDayToday:not(.rdrDayPassive) .rdrSelected ~ .rdrDayNumber span:after, .rdrCalendarWrapper .rdrDayToday .rdrDayNumber span:after,
.rdrCalendarWrapper .rdrDayToday:not(.rdrDayPassive) .rdrInRange ~ .rdrDayNumber span:after,
.rdrCalendarWrapper .rdrDayToday:not(.rdrDayPassive) .rdrStartEdge ~ .rdrDayNumber span:after,
.rdrCalendarWrapper .rdrDayToday:not(.rdrDayPassive) .rdrEndEdge ~ .rdrDayNumber span:after,
.rdrCalendarWrapper .rdrDayToday:not(.rdrDayPassive) .rdrSelected ~ .rdrDayNumber span:after {
  background: transparent;
}
.rdrDateRangePickerWrapper .rdrCalendarWrapper:not(.rdrDateRangeWrapper) .rdrDayHovered .rdrDayNumber:after,
.rdrDateRangePickerWrapper .rdrSelected, .rdrCalendarWrapper .rdrCalendarWrapper:not(.rdrDateRangeWrapper) .rdrDayHovered .rdrDayNumber:after,
.rdrCalendarWrapper .rdrSelected {
  border-radius: 5px !important;
}
.rdrDateRangePickerWrapper .rdrDayHovered .rdrDayNumber:after, .rdrCalendarWrapper .rdrDayHovered .rdrDayNumber:after {
  border-radius: 5px !important;
}
.rdrDateRangePickerWrapper .rdrDayEndOfMonth .rdrDayInPreview,
.rdrDateRangePickerWrapper .rdrDayEndOfMonth .rdrDayStartPreview,
.rdrDateRangePickerWrapper .rdrDayEndOfMonth .rdrInRange,
.rdrDateRangePickerWrapper .rdrDayEndOfMonth .rdrStartEdge,
.rdrDateRangePickerWrapper .rdrDayEndOfWeek .rdrDayInPreview,
.rdrDateRangePickerWrapper .rdrDayEndOfWeek .rdrDayStartPreview,
.rdrDateRangePickerWrapper .rdrDayEndOfWeek .rdrInRange,
.rdrDateRangePickerWrapper .rdrDayEndOfWeek .rdrStartEdge, .rdrCalendarWrapper .rdrDayEndOfMonth .rdrDayInPreview,
.rdrCalendarWrapper .rdrDayEndOfMonth .rdrDayStartPreview,
.rdrCalendarWrapper .rdrDayEndOfMonth .rdrInRange,
.rdrCalendarWrapper .rdrDayEndOfMonth .rdrStartEdge,
.rdrCalendarWrapper .rdrDayEndOfWeek .rdrDayInPreview,
.rdrCalendarWrapper .rdrDayEndOfWeek .rdrDayStartPreview,
.rdrCalendarWrapper .rdrDayEndOfWeek .rdrInRange,
.rdrCalendarWrapper .rdrDayEndOfWeek .rdrStartEdge {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.rdrDateRangePickerWrapper .rdrDayStartOfMonth .rdrInRange,
.rdrDateRangePickerWrapper .rdrDayStartOfMonth .rdrEndEdge,
.rdrDateRangePickerWrapper .rdrDayStartOfMonth .rdrDayInPreview,
.rdrDateRangePickerWrapper .rdrDayStartOfMonth .rdrDayEndPreview,
.rdrDateRangePickerWrapper .rdrDayStartOfWeek .rdrInRange,
.rdrDateRangePickerWrapper .rdrDayStartOfWeek .rdrEndEdge,
.rdrDateRangePickerWrapper .rdrDayStartOfWeek .rdrDayInPreview,
.rdrDateRangePickerWrapper .rdrDayStartOfWeek .rdrDayEndPreview, .rdrCalendarWrapper .rdrDayStartOfMonth .rdrInRange,
.rdrCalendarWrapper .rdrDayStartOfMonth .rdrEndEdge,
.rdrCalendarWrapper .rdrDayStartOfMonth .rdrDayInPreview,
.rdrCalendarWrapper .rdrDayStartOfMonth .rdrDayEndPreview,
.rdrCalendarWrapper .rdrDayStartOfWeek .rdrInRange,
.rdrCalendarWrapper .rdrDayStartOfWeek .rdrEndEdge,
.rdrCalendarWrapper .rdrDayStartOfWeek .rdrDayInPreview,
.rdrCalendarWrapper .rdrDayStartOfWeek .rdrDayEndPreview {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.rdrDateRangePickerWrapper .rdrEndEdge,
.rdrDateRangePickerWrapper rdrStartEdge,
.rdrDateRangePickerWrapper .rdrEndEdge,
.rdrDateRangePickerWrapper .rdrStartEdge, .rdrCalendarWrapper .rdrEndEdge,
.rdrCalendarWrapper rdrStartEdge,
.rdrCalendarWrapper .rdrEndEdge,
.rdrCalendarWrapper .rdrStartEdge {
  border-radius: 5px;
}
.rdrDateRangePickerWrapper .rdrDayNumber, .rdrCalendarWrapper .rdrDayNumber {
  font-weight: 400;
}
.rdrDateRangePickerWrapper .rdrInRange, .rdrCalendarWrapper .rdrInRange {
  opacity: 0.4;
}
.rdrDateRangePickerWrapper .rdrStartEdge, .rdrCalendarWrapper .rdrStartEdge {
  background: linear-gradient(0deg, #0c083a, #0c083a);
  border: 1px solid #3424eb;
}
.rdrDateRangePickerWrapper .rdrNextPrevButton, .rdrCalendarWrapper .rdrNextPrevButton {
  background-color: transparent;
}
.rdrDateRangePickerWrapper .rdrNextButton i, .rdrCalendarWrapper .rdrNextButton i {
  border-left-color: #eef3ff;
}
.rdrDateRangePickerWrapper .rdrPprevButton i, .rdrCalendarWrapper .rdrPprevButton i {
  border-right-color: #eef3ff;
}
.header-date-filter {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #7b7b7b;
  border: solid 1px #E8E8E8;
  border-radius: 8px;
  padding: 10px 10px 10px 14px;
  cursor: pointer;
  min-width: 235px;
  height: 40px;
  line-height: 19px;
}
.header-date-filter svg {
  margin-right: 0;
  margin-left: auto;
  margin-bottom: 1px;
  transform: rotate(180deg);
}

.react-tooltip--header-date-filter {
  background-color: #000000 !important;
}
.react-tooltip--header-date-filter:after {
  left: 95% !important;
}
.react-tooltip--header-date-filter .rdrDateRangePickerWrapper .rdrCalendarWrapper .rdrMonthsVertical .rdrDays .rdrDay {
  color: white !important;
}
.insights-header-actions {
  display: flex;
  align-items: center;
}
.insights-header-actions__date-filter {
  margin-right: 10px;
}
.how-to-use-button {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.how-to-use-button__text {
  margin-left: 5px;
  font-weight: 600;
  font-size: 11px;
  line-height: 14px;
  color: #c6c6c6;
}
.how-to-use-button:hover .how-to-use-button__text, .how-to-use-button:hover svg path {
  color: #251fb6;
  fill: #251fb6;
}
.back-arrow-button {
  min-width: auto;
  padding: 0 10px;
  margin-right: 7px;
  transition: background-color 150ms ease;
}
.back-arrow-button:hover svg circle {
  stroke: #8d8f92;
}
.back-arrow-button:hover svg rect,
.back-arrow-button:hover svg path {
  fill: #8d8f92;
}
.page-header {
  height: 68px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  background: white;
}
.page-header.is-fixed {
  position: fixed;
  top: 0;
  right: 0;
  left: 90px;
  z-index: 20;
}
.page-header:after {
  position: absolute;
  content: "";
  background-color: #f4f4f4;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 1px;
}
.page-header__with-close-btn {
  padding-left: 90px;
}
.page-header__with-close-btn .close-btn {
  left: 0;
  top: 0;
  position: absolute;
  background-color: transparent;
  width: 68px;
  height: 66px;
  border-radius: 0;
  border-right: 1px solid #E8E8E8;
}
.page-header__with-close-btn .close-btn:hover {
  background-color: #4e48dc;
}
.page-header__with-close-btn:after {
  left: 0;
}
.page-header__title {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  display: inline-flex;
  align-items: center;
}
.page-header__title .slide-toggle + .page-header-creation-wrapper__settings-name {
  margin-left: 10px;
}
.page-header__sub-title {
  font-size: 14px;
  color: #7b7b7b;
}
.page-header__title-with-how-to {
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
}
.page-header__title-with-backarrow {
  display: flex;
  align-items: center;
}
.page-header__title-with-backarrow .back-arrow-button {
  width: 26px;
  height: 26px;
  border-radius: 5px;
  margin-right: 11px;
}
.page-header__title-with-backarrow .back-arrow-button svg {
  flex-shrink: 0;
}
.page-header__title-with-backarrow .back-arrow-button:hover {
  background-color: #e5e4f6;
}
.page-header__title-with-backarrow .back-arrow-button:hover svg circle {
  stroke: #251fb6;
}
.page-header__title-with-backarrow .back-arrow-button:hover svg rect,
.page-header__title-with-backarrow .back-arrow-button:hover svg path {
  fill: #251fb6;
}
.page-header__actions {
  margin-left: auto;
}
.page-header-creation-wrapper__settings-name {
  display: flex;
  position: relative;
  align-items: center;
  margin-left: 15px;
  margin-right: auto;
}
.page-header-creation-wrapper__settings-name input {
  width: fit-content;
  min-width: 240px;
  height: 35px;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-right: 10px !important;
  padding-left: 10px;
  border-radius: 5px;
  border: 1px solid #dbe2fe;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  color: #000000;
}
.page-header-creation-wrapper__page-name-length {
  position: absolute;
  bottom: -5px;
  left: 39px;
  font-size: 12px;
  color: #8f9199;
}
.slide-toggler {
  position: relative;
  width: 32px;
  height: 20px;
  background-color: #DBE2FE;
  display: inline-block;
  border-radius: 31px;
  cursor: pointer;
}
.slide-toggler__pointer {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  display: inline-block;
  background: #AAB3DA;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.06);
  width: 14px;
  height: 14px;
  border-radius: 100%;
  transition: 0.5s;
}
.slide-toggler--active {
  background-color: #3424EB;
}
.slide-toggler--active .slide-toggler__pointer {
  transition: 0.5s;
  left: 15px;
}
.slide-toggler--disabled {
  background-color: #F5F5F5;
  cursor: not-allowed;
}
.slide-toggler--disabled .slide-toggler__pointer {
  background-color: #c4c6cd;
}
.analytics-email-report {
  padding: 25px;
}
.analytics-email-report__cards-row {
  display: flex;
  justify-content: space-around;
}
.analytics-email-report__empty {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #8d8f92;
}

.analytics-email-report-card {
  flex-grow: 1;
  padding: 20px 0;
  min-width: 190px;
  height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f9f9f9;
  border-radius: 8px;
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
}
.analytics-email-report-card:not(.analytics-email-report-card:last-child) {
  margin-right: 10px;
}
.analytics-email-report-card__title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
}
.analytics-email-report-card__diagram {
  margin-bottom: 12px;
  height: 38px;
}
.analytics-email-report-card__value {
  color: var(--card-color);
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 10px;
  margin-top: 10px;
}
.analytics-email-report-card__total {
  font-weight: 600;
  font-size: 14px;
  color: #8d8f92;
}
.analytics-email-report-card__basic {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 36px;
  font-weight: 500;
}
.analytics-email-report-card .analytics-report-container-values {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.analytics-email-report-card.custom-style {
  background-color: transparent;
  min-width: 50px;
  padding: 0;
  align-items: flex-start;
  position: relative;
}
.analytics-email-report-card.custom-style .title-base {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  color: #A0A0A0;
}
.analytics-email-report-card.custom-style .analytics-report-container-basic {
  display: flex;
  align-items: center;
}
.analytics-email-report-card.custom-style .analytics-report-container-basic .analytics-email-report-card__diagram {
  margin-bottom: 0;
}
.analytics-email-report-card.custom-style .analytics-report-container-basic .analytics-email-report-card__value {
  margin-bottom: 5px;
  margin-top: 0;
}
.analytics-email-report-card.custom-style .analytics-report-container-basic .analytics-email-report-card__total {
  font-size: 13px;
}
.analytics-email-report-card.custom-style .analytics-report-container-basic-values {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  margin-left: 12px;
}

.email-report-chart-legend {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}
.email-report-chart-legend__item {
  position: relative;
}
.email-report-chart-legend__item:after {
  content: "";
  width: 14px;
  height: 14px;
  background-color: var(--legend-item-color);
  position: absolute;
  top: 1px;
  left: -20px;
  border-radius: 100%;
}

.analytics-email-report-daily-chart {
  position: relative;
  margin-top: 20px;
  background: #f9f9f9;
  border-radius: 8px;
}
.analytics-email-report-daily-chart__header {
  height: 80px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  padding-right: 36px;
  border-bottom: 1px solid #e9ecf1;
}
.analytics-email-report-daily-chart__title {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-weight: 600;
  font-size: 18px;
}
.analytics-email-report-daily-chart__chart-toggler {
  margin-left: auto;
}
.analytics-email-report-daily-chart__chart {
  margin-top: 24px;
  padding-right: 20px;
}

.analytics-email-report-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 25px 0;
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  color: #000000;
}
@charset "UTF-8";
.colored-checkbox {
  position: var(--checkbox-position);
  right: 0;
  top: 0;
}
.colored-checkbox-round {
  position: relative;
}
.colored-checkbox-round label {
  background-color: transparent;
  border: 2px solid var(--checkbox-color);
  border-radius: 50%;
  cursor: pointer;
  height: 15px;
  left: 0;
  position: absolute;
  top: 0;
  width: 15px;
}
.colored-checkbox-round label:after {
  color: #fff;
  content: "✓";
  height: 15px;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 15px;
  font-family: system-ui;
  text-align: center;
  font-size: 11px;
}
.colored-checkbox-round input[type=checkbox] {
  visibility: hidden;
}
.colored-checkbox-round input[type=checkbox]:checked + label {
  background-color: var(--checkbox-color);
  border-color: var(--checkbox-color);
}
.colored-checkbox-round input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.earn-free-credits {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  box-shadow: 0 4px 90px rgba(201, 201, 201, 0.25);
  border-radius: 8px;
  margin-bottom: 27px;
  width: 100%;
}
.earn-free-credits__info {
  display: flex;
  width: 100%;
  padding: 40px 24px 16px 39px;
  border-bottom: 1px solid #f3f3f3;
}
.earn-free-credits__info-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 364px;
}
.earn-free-credits__info-text-title {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  color: #000000;
}
.earn-free-credits__info-text-highlight {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #221cb6;
}
.earn-free-credits__info-text-subtitle {
  margin-top: 14px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #8f8f8f;
}
.earn-free-credits__info-link {
  display: flex;
  margin-left: auto;
}
.earn-free-credits__info-link input {
  width: 264px;
  height: 48px;
  padding-right: 19px;
  background-color: #ffffff;
  border-color: #dbdfe7;
  color: #8f9199;
}
.earn-free-credits__info-link-button {
  margin-top: 20px;
  font-size: 14px;
  width: 154px;
  margin-left: 12px;
}
.earn-free-credits__stats-row {
  display: flex;
  width: 100%;
}
.earn-free-credits__stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 121px;
  flex: 1;
}
.earn-free-credits__stats-item:not(:last-of-type) {
  border-right: 1px solid #f3f3f3;
}
.earn-free-credits__stats-item-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.earn-free-credits__stats-item-title {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  color: #000000;
}
.earn-free-credits__stats-item-title span {
  margin-left: 6px;
}
.earn-free-credits__stats-item-value {
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  color: #221cb6;
}
.earn-free-credits__review-row {
  display: flex;
  gap: 20px;
}
.earn-free-credits__review-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 264px;
  padding: 30px 22px 25px;
  background-color: #ffffff;
  box-shadow: 0 4px 90px rgba(201, 201, 201, 0.25);
  border-radius: 8px;
  flex: 1;
}
.earn-free-credits__review-item-title {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 7px;
  padding: 0 6px;
  color: #000000;
}
.earn-free-credits__review-item-title svg {
  margin-right: 10px;
}
.earn-free-credits__review-item-button {
  margin-top: auto;
  width: 100%;
  font-size: 14px;
}
.earn-free-credits__button {
  font-size: 14px;
  color: #231db6;
  border: 1px solid rgba(34, 28, 182, 0.53);
  background-color: transparent;
}
.earn-free-credits__button:hover {
  background-color: #231db6;
  border-color: #231db6;
  color: #ffffff;
}
.dashboard {
  flex: 1;
  width: 100%;
  height: 100vh;
  min-width: 945px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: auto;
}
.dashboard .page-header {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  z-index: 1;
}
.dashboard__container {
  display: flex;
}
.dashboard__body {
  flex: 1;
  padding: 22px;
}
.dashboard__updates {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding: 30px 40px;
  margin-bottom: 4px;
  background-color: #f0effa;
  border-radius: 8px;
}
.dashboard__updates-title {
  position: relative;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
}
.dashboard__updates-title::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background: #231db6;
  box-shadow: 0 4px 90px rgba(201, 201, 201, 0.25);
  border-radius: 50%;
  right: -16px;
  top: 12px;
  margin: auto;
}
.dashboard__updates-subtitle {
  margin-bottom: 18px;
  max-width: 40%;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: #8f8f8f;
}
.dashboard__updates button {
  height: 42px;
  font-size: 14px;
}
.dashboard__updates-illustration {
  position: absolute;
  height: 100%;
  right: 8px;
  top: 0;
}
.dashboard__section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 16px;
  padding-top: 22px;
}
.dashboard__section-header-title {
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 24px;
  line-height: 20px;
  color: #000000;
}
.dashboard__section-header-subtitle {
  margin-bottom: 22px;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: #8f8f8f;
}
.dashboard__getting-started {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  min-height: 132px;
  padding: 29px 27px 33px;
  background-color: #ffffff;
  box-shadow: 0 4px 90px rgba(201, 201, 201, 0.25);
  border-radius: 8px;
  margin-bottom: 17px;
}
.dashboard__getting-started--complete {
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.dashboard__getting-started-completed-check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 53px;
  height: 53px;
  background: #23e771;
  border-radius: 50%;
  margin-right: 25px;
  font-weight: 600;
  font-size: 20px;
}
.dashboard__getting-started-order {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 53px;
  height: 53px;
  background-color: rgba(34, 28, 182, 0.07);
  border-radius: 50%;
  margin-right: 25px;
  font-weight: 600;
  font-size: 20px;
  color: #221cb6;
}
.dashboard__getting-started-text {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  max-width: 60%;
}
.dashboard__getting-started-text-title {
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}
.dashboard__getting-started-text-subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #8f8f8f;
}
.dashboard__getting-started-button {
  width: 141px;
  margin-left: auto;
}
.dashboard__getting-started-button--disabled {
  border-color: transparent !important;
  background-color: rgba(123, 123, 123, 0.08) !important;
  color: rgba(123, 123, 123, 0.65) !important;
  pointer-events: none;
  cursor: default;
}
.dashboard__insights {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 4px 90px rgba(201, 201, 201, 0.25);
  border-radius: 8px;
}
.dashboard__help-items-row {
  display: flex;
  gap: 20px;
  width: 100%;
  margin-bottom: 35px;
}
.dashboard__help-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 269px;
  padding: 28px 24px 32px;
  background-color: #ffffff;
  box-shadow: 0 4px 90px rgba(201, 201, 201, 0.25);
  border-radius: 8px;
}
.dashboard__help-item-header {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 16px;
}
.dashboard__help-item-header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  margin-right: 12px;
  border-radius: 16px;
}
.dashboard__help-item-header-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}
.dashboard__help-item-text-subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #8f8f8f;
}
.dashboard__help-item-button {
  width: 100%;
  height: 42px;
  margin-top: auto;
}
.dashboard__help-hire-va {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  width: 100%;
  padding: 30px 33px 29px;
  background-color: #eff8fe;
  border-radius: 8px;
}
.dashboard__help-hire-va-title {
  margin-bottom: 11px;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
}
.dashboard__help-hire-va-subtitle {
  max-width: 55%;
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #8f8f8f;
}
.dashboard__help-hire-va-button {
  height: 42px;
}
.dashboard__help-hire-va-illustration {
  position: absolute;
  right: 10px;
  top: 0;
  height: 100%;
}
.dashboard__button {
  font-size: 14px;
  color: #231db6;
  border: 1px solid rgba(34, 28, 182, 0.53);
  background-color: transparent;
}
.dashboard__button:hover {
  background-color: #231db6;
  border-color: #231db6;
  color: #ffffff;
}
.configurable-sidebar {
  width: 210px;
  height: 100vh;
  flex-shrink: 0;
  background-color: #fbfbfb;
  display: flex;
  flex-direction: column;
}
.configurable-sidebar__header {
  padding: 17px 14px 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #7b7b7b;
}
.configurable-sidebar__body {
  flex: 1;
  padding: 0 9px;
  overflow: auto;
}
.configurable-sidebar__footer {
  margin-top: auto;
}
.configurable-sidebar__group-title {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 16px;
  line-height: 20px;
  color: #7b7b7b;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.configurable-sidebar__group-action-icon {
  height: 20px;
  cursor: pointer;
}
.configurable-sidebar__group-action-icon:hover svg circle {
  stroke: #181818;
}
.configurable-sidebar__group-action-icon:hover svg rect,
.configurable-sidebar__group-action-icon:hover svg path {
  fill: #181818;
}
.configurable-sidebar__group:not(.configurable-sidebar__group:first-child) {
  margin-top: 30px;
}
.configurable-sidebar__link-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.configurable-sidebar__link-wrapper .configurable-sidebar__link {
  padding: 12px;
  width: 100%;
}
.configurable-sidebar__link-wrapper--active {
  color: #221cb6;
  background: #eaedf2;
  border-radius: 8.5px;
}
.configurable-sidebar__link {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  width: 95%;
}
.configurable-sidebar__link-icon {
  margin-right: 7px;
  display: flex;
  align-items: center;
}
.configurable-sidebar__link-icon svg {
  width: 16px;
  height: 16px;
}
.configurable-sidebar__link-text {
  white-space: nowrap;
}
.configurable-sidebar__link-text--cropped {
  width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.configurable-sidebar__group-pages {
  padding-top: 12px;
}
.header-search-input {
  height: 40px;
  display: flex;
  flex: 1;
  min-width: 190px;
  width: auto;
}
.header-search-input input {
  padding-right: 30px;
  width: 240px;
}
.header-search-input input::placeholder {
  color: #c0c6cd;
}
.header-search-input__container {
  position: relative;
}
.header-search-input__delete-btn {
  position: absolute;
  right: 7px;
  top: 12px;
  cursor: pointer;
}
.header-search-input__delete-btn svg path {
  fill: #DBDFE7;
}
.header-search-input__delete-btn:hover svg path {
  fill: #ed483d;
}
.campaign-templates-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: auto;
}
.campaign-templates-list .page-header__title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.campaign-templates-list__container {
  display: flex;
  overflow: hidden;
  height: 100vh;
}
.campaign-templates-list__sidebar {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background-color: #fbfbfb;
}
.campaign-templates-list__sidebar .configurable-sidebar {
  height: auto;
}
.campaign-templates-list__sidebar-header {
  padding: 17px 14px 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #7b7b7b;
}
.campaign-templates-list__header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.campaign-templates-list__header .input input {
  width: 240px;
}
.campaign-templates-list__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto-fill, 279px);
  width: 100%;
  height: 100%;
  gap: 18px;
  padding: 16px 20px;
  overflow: auto;
}
@media (min-width: 1260px) {
  .campaign-templates-list__content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1480px) {
  .campaign-templates-list__content {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1830px) {
  .campaign-templates-list__content {
    grid-template-columns: repeat(5, 1fr);
  }
}
.campaign-templates-list__advanced {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 279px;
  min-width: 261px;
  border: 1px dashed #251fb6;
  border-radius: 8px;
  cursor: pointer;
}
.campaign-templates-list__advanced--preview {
  background-color: rgba(37, 31, 182, 0.04);
}
.campaign-templates-list__advanced--preview svg path {
  fill: #221cb6;
}
.campaign-templates-list__advanced--preview .campaign-templates-list__advanced-text {
  color: #251fb6;
}
.campaign-templates-list__advanced:not(.campaign-templates-list__advanced--disabled):hover {
  background-color: rgba(37, 31, 182, 0.04);
}
.campaign-templates-list__advanced:not(.campaign-templates-list__advanced--disabled):hover svg path {
  fill: #221cb6;
}
.campaign-templates-list__advanced:not(.campaign-templates-list__advanced--disabled):hover .campaign-templates-list__advanced-text {
  color: #251fb6;
}
.campaign-templates-list__advanced--disabled {
  cursor: default;
  pointer-events: none;
  background-color: #ffffff;
}
.campaign-templates-list__advanced--disabled div {
  color: #251fb6;
}
.campaign-templates-list__advanced-text {
  margin-top: 15px;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  text-align: center;
  color: #8d8f92;
}
.campaign-templates-list__preview {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 279px;
  min-width: 261px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(201, 201, 201, 0.25);
  border-radius: 8px;
  transition: box-shadow 200ms ease;
  overflow: hidden;
  cursor: pointer;
}
.campaign-templates-list__preview:hover {
  box-shadow: 0 7px 25px rgba(0, 0, 0, 0.1);
}
.campaign-templates-list__preview-image {
  height: 153px;
  background-color: #251fb6;
}
.campaign-templates-list__preview-image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  padding-top: 8px;
  margin-top: 1px;
}
.campaign-templates-list__preview-info-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 18px 21px 19px;
  background-color: #ffffff;
}
.campaign-templates-list__preview-info-title {
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #000000;
}
.campaign-templates-list__preview-info-subtitle {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.54);
  margin-bottom: auto;
}
.campaign-templates-list__preview-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.campaign-templates-list__preview-info-tag {
  display: flex;
  align-items: center;
  padding: 5px 8px 5px 7px;
  background-color: #e9e9e9;
  border-radius: 5px;
  font-weight: 700;
  font-size: 10px;
  line-height: 10px;
  color: #4b4c4d;
}
.campaign-templates-list__preview-info-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-left: 7px;
  background-color: #23e771;
}
.campaign-templates-list__preview-info-tag-dot--red {
  background-color: #ed483d;
}
.campaign-templates-list__preview-info-tag-dot--orange {
  background-color: #ffc300;
}
.campaign-templates-list__preview-info-fav-icon {
  cursor: pointer;
}
.campaign-templates-list__preview-info-fav-icon--filled svg path {
  fill: #221cb6 !important;
}
.campaign-templates-list__preview-info-fav-icon--disabled {
  pointer-events: none;
}
.campaign-templates-list__preview-info-fav-icon svg path {
  fill: #d1d1d1;
}
.campaign-templates-list__preview-info-fav-icon svg:hover path {
  fill: #221cb6;
}
@keyframes gradient {
  0% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 50% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.gradient-background-loader {
  background: linear-gradient(135deg, #fafafa 10%, #c1c1c1 50%, #fafafa 90%);
  background-size: 400% 400%;
  animation: gradient 3s ease infinite;
  position: relative;
}
.subscription-payment-form__fields {
  display: flex;
  align-items: center;
  height: 72px;
  min-width: 400px;
  background: #ffffff;
  border-radius: 8px;
}
.subscription-payment-form__input-field-wrapper {
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding-left: 10px;
}
.subscription-payment-form__input-field {
  height: 72px;
  min-width: 80px;
}
.subscription-payment-form__input-field--card-number {
  min-width: 200px;
}
.subscription-payment-form__cancel-btn {
  width: 20px;
  height: 20px;
  background-color: #ED483D;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 36px;
}
.subscription-payment-form__cancel-btn svg path {
  stroke-width: 3;
}
.subscription-payment-form__cancel-btn:hover {
  cursor: pointer;
  filter: brightness(0.8);
}
.use-existing-card__details {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 16px;
  height: 72px;
  padding: 0 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
}
.use-existing-card__btn {
  margin-left: auto;
  width: 45px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #eaedf2;
  border-radius: 9px;
}
.use-existing-card__btn:hover {
  box-shadow: 0 2px 10px #ece9e9;
}
.use-card-to-pay {
  width: 100%;
  height: 100%;
}
.fixed-payment-footer {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: sticky;
  bottom: 0;
  left: 0;
  min-height: 72px;
  width: 100%;
  margin-top: 32px;
  padding-bottom: 10px;
  background-color: #ffffff;
}
.fixed-payment-footer .comment-section {
  margin: 20px auto;
}
.fixed-payment-footer__make-payment-block {
  width: 720px;
  height: 100%;
  box-shadow: 0 2px 20px #eaecf4;
  border-radius: 8px;
  margin-left: 10px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px 0 0;
}
.fixed-payment-footer__make-payment-block--grey {
  background-color: rgba(37, 31, 182, 0.04);
  box-shadow: none;
}
.fixed-payment-footer__make-payment-button {
  margin-left: 7px;
  white-space: nowrap;
  height: 40px;
  min-width: auto;
  font-size: 16px;
}
.fixed-payment-footer__make-payment-button--hidden {
  display: none;
}
.invoice-info {
  padding: 32px 70px 120px;
  position: relative;
  width: 850px;
  margin: 0 auto;
}
.invoice-info__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid #f4f4f4;
}
.invoice-info__header-info {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 16px;
  line-height: 20px;
}
.invoice-info__bill-info {
  margin-top: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #f4f4f4;
}
.invoice-info__bill-info-title {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-weight: 600;
  font-size: 48px;
}
.invoice-info__bill-info-content {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.invoice-info__bill-info-sub-title {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 21px;
}
.invoice-info__bill-to-content {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 16px;
  line-height: 22px;
}
.invoice-info__bill-details {
  margin-right: 60px;
}
.invoice-info__bill-details-row {
  width: 220px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.invoice-info__bill-details-label {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 16px;
  line-height: 20px;
}
.invoice-info__bill-details-value {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 16px;
  line-height: 20px;
  color: #8f9199;
}
.invoice-info__cost-grid {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 35px;
}
.invoice-info__cost-grid-title {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 14px;
  line-height: 18px;
  color: #8d8f92;
}
.invoice-info__cost-grid-title--righted {
  text-align: right;
}
.invoice-info__cost-grid-cell {
  margin-top: 5px;
  display: flex;
  align-items: center;
}
.invoice-info__cost-grid-cell--with-border {
  border-bottom: 1px solid #f4f4f4;
}
.invoice-info__cost-grid-cell--righted {
  justify-content: flex-end;
}
.invoice-info__comment {
  margin-top: 22px;
}
.invoice-info__additional-info {
  margin-top: 40px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f4f4f4;
}
.invoice-info__additional-info-label {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-weight: 600;
  color: #1b1e22;
}
.invoice-info__additional-info-value {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  color: #8d8f92;
  margin-left: 6px;
  margin-right: 30px;
}
.onboarding-step-icon {
  height: 67px;
  width: 67px;
  background-color: #F5F6FA;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
.onboarding-page-header {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.onboarding-page-header__icon {
  margin-bottom: 17px;
}
.onboarding-page-header__title, .onboarding-page-header__subtitle {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
}
.onboarding-page-header__title {
  font-weight: 600;
  font-size: 34px;
  color: #1B1E22;
  margin-bottom: 16px;
}
.onboarding-page-header__subtitle {
  font-size: 14px;
}
.onboarding-default-payment {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.onboarding-default-payment__content {
  width: 554px;
  margin-top: 57px;
  margin-bottom: 30px;
}
.onboarding-default-payment__subscription-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 620px;
  height: 78px;
  margin-bottom: 18px;
  font-size: 16px;
  padding: 0 25px;
  border: 1px solid rgba(219, 223, 231, 0.47);
  border-radius: 8px;
}
.onboarding-default-payment__subscription-info-details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.onboarding-default-payment__subscription-info-details-price {
  margin-bottom: 7px;
  font-weight: 600;
  font-size: 28px;
  line-height: 28px;
  text-align: center;
  color: #000000;
}
.onboarding-default-payment__subscription-info-details-date {
  font-weight: 600;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
  color: #8f9199;
}
.onboarding-default-payment__payment-info {
  width: 620px;
  height: 78px;
  background: #f5f6fa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 16px;
  padding: 0 25px;
}
.onboarding-default-payment__payment-price {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-weight: 600;
  font-size: 28px;
  color: #221CB6;
}
.onboarding-default-payment__payment-label {
  margin-bottom: 5px;
  padding-left: 5px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1px;
  color: #525979;
}
.onboarding-default-payment__payment-details-text {
  display: flex;
  align-items: center;
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-weight: 600;
  font-size: 14px;
  color: #3a3b3f;
  margin-bottom: 8px;
}
.onboarding-default-payment__payment-details-text-icon {
  display: flex;
  align-items: center;
  margin-left: 7px;
  cursor: pointer;
}
.onboarding-default-payment__payment-details-tooltip {
  width: 280px;
}
.onboarding-default-payment__payment-details-tooltip ul {
  padding-left: 30px;
  list-style: disc;
}
.onboarding-default-payment__payment-details-tooltip ul li {
  line-height: 18px;
  padding: 5px 0;
}
.onboarding-default-payment .onboarding-default-payment-form__fields {
  display: flex;
  align-items: center;
  height: 72px;
  background: #ffffff;
  box-shadow: 0 2px 20px #eaecf4;
  border-radius: 8px;
}
.onboarding-default-payment .onboarding-default-payment-form__input-field-wrapper {
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding-left: 10px;
}
@media screen and (max-width: 725px) {
  .onboarding-default-payment .onboarding-default-payment-form__input-field-wrapper {
    width: auto;
    font-size: 14px;
  }
  .onboarding-default-payment .onboarding-default-payment-form__input-field-wrapper #card-image {
    display: none;
  }
}
.onboarding-default-payment .onboarding-default-payment-form__input-field {
  height: 72px;
  font-size: 16px;
}
@media screen and (max-width: 725px) {
  .onboarding-default-payment .onboarding-default-payment-form__input-field {
    width: auto;
    font-size: 14px;
  }
}
.onboarding-default-payment .onboarding-default-payment-form__input-field-cvv {
  height: 72px;
  width: 60px;
  margin-right: 10px;
}
@media screen and (max-width: 725px) {
  .onboarding-default-payment .onboarding-default-payment-form__input-field-cvv {
    width: 60px;
    min-width: 60px;
  }
  .onboarding-default-payment .onboarding-default-payment-form__input-field-cvv input {
    font-size: 14px;
  }
}
.onboarding-default-payment .onboarding-default-payment-form__input-field-date {
  height: 72px;
  width: 90px;
}
@media screen and (max-width: 725px) {
  .onboarding-default-payment .onboarding-default-payment-form__input-field-date {
    width: 66px;
    min-width: 66px;
    font-size: 14px;
  }
}
.onboarding-default-payment .onboarding-default-payment-form__details-btn {
  color: #8f9199;
  width: 620px;
  height: 48px;
  border: 1px solid rgba(141, 143, 146, 0.19);
  border-radius: 8.5px;
  margin-top: 2rem;
}
.onboarding-default-payment .onboarding-default-payment-form__details-btn:hover {
  background-color: rgba(234, 234, 234, 0.19);
}
.onboarding-default-payment .onboarding-default-payment-form__submit-btn {
  margin-top: 19px;
  margin-bottom: 21px;
  width: 554px;
  height: 48px;
}
.onboarding-default-payment .onboarding-default-payment-form__submit-btn--hidden {
  opacity: 0;
}
.onboarding-default-payment .onboarding-default-payment-form__loader-after-click-to-pay {
  margin: 20px;
}
.onboarding-default-payment__bottom-promises-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.onboarding-default-payment__bottom-promise {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.onboarding-default-payment__bottom-promise-text {
  margin-left: 7px;
  color: #8f9199;
  font-size: 12px;
  font-weight: 600;
}

.login-container__validation-messages {
  margin-top: 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.login-container__validation-message {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e35252;
  font-size: 13px;
}
.login-container__validation-message svg {
  fill: #e35252;
}
.password-score {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 7px;
}
.password-score__label {
  font-weight: 600;
  font-size: 12px;
  line-height: 17px;
  text-align: center;
  color: #8E95AA;
}
.password-score__blocks-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.password-score__block {
  width: 20px;
  height: 5px;
  background-color: #dde4ee;
  border-radius: 35px;
  -moz-transition: background-color 300ms ease-in;
  /* WebKit */
  -webkit-transition: background-color 300ms ease-in;
  /* Opera */
  -o-transition: background-color 300ms ease-in;
  /* Standard */
  transition: background-color 300ms ease-in;
}
.password-score__block:not(.password-score__block:last-child) {
  margin-right: 12px;
}
.password-score--bad .password-score__label {
  color: #f64754;
}
.password-score--bad .password-score__block:nth-child(1) {
  background-color: #f64754;
}
.password-score--average .password-score__label {
  color: #f2884f;
}
.password-score--average .password-score__block:nth-child(1), .password-score--average .password-score__block:nth-child(2) {
  background-color: #f2884f;
}
.password-score--strong .password-score__label {
  color: #4fcf64;
}
.password-score--strong .password-score__block {
  background-color: #4fcf64;
}
.login-page-content {
  position: relative;
  max-width: 100%;
  min-width: 346px;
  padding-top: 100px;
  z-index: 1;
}
.login-page-content__title-svg {
  width: 100%;
  max-width: 507px;
  min-width: 300px;
  height: 157px;
  padding-right: 30px;
  margin-bottom: 50px;
}
.login-page-content__title {
  font-family: OakesGrotesk, sans-serif;
  font-weight: 600;
  font-size: 76px;
  line-height: 96px;
  color: #000;
}
.login-page-content__title-gradient {
  font-family: OakesGrotesk, sans-serif;
  font-weight: 600;
  font-size: 76px;
  line-height: 96px;
  background: -webkit-linear-gradient(#7f7aeb, #221cb6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.login-page-content__form-wrapper {
  width: 415px;
}
.login-page-content__google-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: rgba(0, 0, 0, 0.54);
}
.login-page-content__google-login-btn:hover {
  background: #ececec;
}
.login-page-content__google-icon {
  margin-right: 7px;
}
.login-page-content__forgot-password-link {
  text-align: right;
  margin-top: 10px;
  margin-bottom: 30px;
}
.login-page-content__link {
  transition: all 0.3s ease 0s;
  font-family: OakesGrotesk, sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: -0.1px;
  color: #8e95aa;
}
.login-page-content__link:hover {
  color: #221CB6;
}
.login-page-content__login-button {
  width: 100%;
  height: 62px;
  margin-bottom: 8px;
}
.login-page-content__footer {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.login-page-content__footer-link {
  font-family: Oakes Grotesk, serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: 0.5px;
  color: #251fb6;
  position: relative;
  text-decoration: none;
}
.login-page-content__footer-link:after {
  display: block;
  position: absolute;
  content: "";
  left: -2px;
  right: -2px;
  bottom: 5px;
  height: 12px;
  background: rgba(37, 31, 182, 0.09);
  transition: all 0.3s ease 0s;
}
.login-page-content__footer-link:hover:after {
  height: 22px;
}

@media screen and (max-width: 500px) {
  .login-page-content {
    padding-top: 30px;
  }
  .login-page-content__title {
    font-size: 46px;
    line-height: 1.4;
  }
  .login-page-content__form-wrapper {
    width: auto;
  }
  .login-page-content__footer {
    width: 100%;
    margin-top: 20px;
    line-height: 1.5rem;
  }
}
.login-page {
  flex: 1;
  padding: 50px;
  overflow: auto;
  align-items: baseline;
  display: flex;
  justify-content: center;
  width: 100vw;
  min-width: 320px;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.36);
}
@media screen and (max-width: 725px) {
  .login-page {
    padding: 0;
    background-color: transparent;
  }
}
.login-page__gradient {
  position: absolute;
  right: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (min-width: 725px) {
  .login-page__gradient {
    display: none;
  }
}

.login-modal {
  display: flex;
  align-items: center;
  padding-bottom: 37px;
  border-radius: 23px;
  background-color: #fbfbfb;
}
@media screen and (max-width: 725px) {
  .login-modal {
    width: 100%;
    height: auto;
    min-height: 100%;
    border-radius: 0;
    background-color: transparent;
  }
}

@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.login-container__left {
  width: 50%;
}
.login-container__left .login-container .login-container__logo-wrapper {
  position: relative;
  width: fit-content;
}
.login-container__left .login-container .login-container__logo-wrapper svg {
  position: absolute;
  top: 0;
  right: -10px;
}
@media (max-width: 520px) {
  .login-container__left {
    width: 100%;
  }
  .login-container__left .login-container__logo-wrapper,
  .login-container__left .login-container-content .login-container__title {
    text-align: center;
  }
  .login-container__left .login-container__subtitle {
    text-align: center;
    margin: 0 auto 40px;
  }
}

.login-container__right {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: end;
  position: relative;
  height: calc(100vh - 64px);
  width: calc(50% - 32px);
  margin: 20px 32px 44px 0;
  background: linear-gradient(180deg, rgb(124, 118, 255) 0%, rgb(43, 37, 187) 100%);
  border-radius: 25px;
}
.login-container__right__box {
  position: relative;
  width: 584px;
  height: 635px;
  max-width: 95%;
}
.login-container__right__box.concierge, .login-container__right__box.publisher {
  width: 636px;
  height: 554px;
}
.login-container__right__login-image-big {
  position: absolute;
  right: -1px;
  bottom: 0;
  z-index: 10;
  width: 100%;
}
@media (max-width: 520px) {
  .login-container__right {
    display: none;
  }
}

.login-page__container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 725px) {
  .login-page__container {
    overflow-x: auto;
    background-color: #ffffff;
  }
}

.login-background {
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}
.login-background-container {
  position: fixed;
  display: flex;
  flex-shrink: 0;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}
@media screen and (max-width: 725px) {
  .login-background-container {
    display: none;
  }
}

.login-container {
  max-width: 420px;
  width: 90%;
  margin: 0 auto;
  padding: 0;
  will-change: height;
  transition: height 200ms ease;
  box-sizing: content-box;
}
@media screen and (max-width: 725px) {
  .login-container {
    width: calc(100% - 40px);
    padding: 54px 20px !important;
    height: auto !important;
  }
}
.login-container--narrow {
  padding: 37px 33px 43px;
}
.login-container-content {
  width: 100%;
  animation: appear 300ms;
}
@media screen and (max-width: 725px) {
  .login-container-content {
    width: 100%;
    animation: appear 300ms;
    max-width: 419px;
  }
}
.login-container__logo {
  width: 172px;
  height: 40px;
  margin-bottom: 80px;
  cursor: pointer;
}
.login-container__title {
  font-weight: 600;
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 21px;
  color: #1b1e22;
}
@media screen and (max-width: 725px) {
  .login-container__title {
    font-size: 24px;
  }
}
.login-container__subtitle {
  width: 280px;
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.71);
}
.login-container__subtitle-link {
  color: rgba(0, 0, 0, 0.71);
}
.login-container__subtitle-link:hover {
  color: #251fb6;
}
.login-container__label {
  display: flex;
  align-items: center;
  align-self: flex-start;
  width: 100%;
  padding-left: 3px;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1px;
  /* #525979 */
  color: #525979;
}
.login-container__label > div {
  margin-left: 5px;
}
.login-container__label-link {
  margin-left: auto;
  margin-right: 5px;
}
.login-container__label-blue {
  margin-left: 0;
  color: #251fb6;
}
.login-container__label-link {
  margin-left: auto;
  font-weight: 600;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: -0.1px;
  color: #8e95aa;
  cursor: pointer;
}
.login-container__label-link:hover {
  text-decoration-line: underline;
}
.login-container__button-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-bottom: 80px;
}
.login-container__input-column {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 8px;
}
.login-container__input-column .input:not(:last-child) input {
  margin-bottom: 20px;
}
.login-container__onboarding_session-block {
  font-family: "Mulish", serif;
  width: 419px;
  height: 289px;
  border-radius: 13px;
  background: rgba(196, 198, 205, 0.17);
}
.login-container__onboarding_session-block__text {
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 135.5%;
  letter-spacing: -0.005em;
  padding: 25px 35px;
}
.login-container__onboarding_session-block__farzad {
  border-top: 1px solid rgba(170, 175, 185, 0.13);
  display: flex;
  align-items: center;
  height: 110px;
  padding: 0 25px;
}
.login-container__onboarding_session-block__farzad__text {
  flex-flow: column;
  display: flex;
  margin-left: 20px;
}
.login-container__onboarding_session-block__farzad__name {
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
}
.login-container__onboarding_session-block__farzad__position {
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  color: rgba(66, 79, 101, 0.41);
}
.login-container__button {
  width: 419px;
  height: 58px;
  background-color: #fff;
  box-shadow: 0 4px 13px rgba(0, 0, 0, 0.03);
  border-radius: 10px;
  font-size: 14px;
  color: #111a45;
  font-weight: 600;
  transition: box-shadow 200ms ease;
}
@media screen and (max-width: 725px) {
  .login-container__button {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }
}
.login-container__button:hover {
  background-color: #ffffff;
  box-shadow: 0 4px 13px rgba(0, 0, 0, 0.07);
}
.login-container__button svg {
  margin-top: -3px;
  margin-right: 0;
}
.login-container__button-img {
  width: 24px;
  height: 24px;
  margin-right: 13px;
}
.login-container__button-text {
  flex-direction: column;
  display: flex;
  align-items: start;
  margin-right: -68px;
  padding-left: 13px;
}
.login-container__button-sub-text {
  font-size: 12px;
  color: #8E95AA;
}
.login-container__login-button {
  width: 419px;
  height: 52px;
  margin-top: 22px;
  background-color: #251fb6;
  transition: box-shadow 300ms ease;
}
@media screen and (max-width: 725px) {
  .login-container__login-button {
    width: 100%;
  }
}
.login-container__login-button.button--disabled:hover {
  box-shadow: none;
}
.login-container__login-button:hover {
  background-color: #251fb6;
  box-shadow: 0 22px 40px -17px rgba(37, 31, 182, 0.32);
}
.login-container__divider {
  flex-grow: 1;
  height: 1px;
  background-color: #8e95aa;
}
.login-container__divider-row {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 12px;
  line-height: 17px;
  text-align: center;
  color: #8e95aa;
}
.login-container__divider-row span {
  opacity: 0.6;
  margin: 0 20px;
}
.login-container__input {
  width: 100%;
}
.login-container__input input {
  width: 100%;
  height: 57px;
  padding: 18px 23px 19px;
  border: 1px solid rgba(219, 223, 231, 0.47);
}
.login-container__input input::placeholder {
  color: #8e95aa;
  opacity: 0.5;
}
.login-container__input-password input::placeholder {
  line-height: 30px;
}
.login-container__input-message {
  margin-top: -15px;
}
.login-container__input .question-tooltip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: rgba(255, 195, 0, 0.25);
  border-radius: 50%;
}
.login-container__input .question-tooltip svg {
  width: 12px;
  height: 12px;
}
.login-container__input .input__after-text {
  top: 15px;
  right: 16px;
}
.login-container__switch-step {
  margin-top: 12px;
  font-weight: 600;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: -0.1px;
  color: #525979;
}
.login-container__switch-step span {
  color: #251fb6;
  cursor: pointer;
}
.login-container__switch-step span:hover {
  text-decoration: underline;
}
.login-container__code-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 5px;
  margin-top: 5px;
}
.login-container__code-button {
  font-weight: 600;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: -0.1px;
  color: #251fb6;
  cursor: pointer;
}
.login-container__code-button--disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
}
.login-container__code-button:hover {
  color: #4e48dc;
}
.login-container__logout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background-color: #dbe2fe;
  cursor: pointer;
  transition: background-color 160ms ease;
}
.login-container__logout-button:hover {
  box-shadow: 0 4px 13px rgba(0, 0, 0, 0.03);
}
.login-container__logout-button .question-tooltip__svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.login-container__logout-button .question-tooltip__react-tooltip::after {
  border-bottom-color: transparent !important;
}
.login-container__logout-button .question-tooltip__text {
  background-color: #222;
}
.login-container__logout-button svg {
  margin-right: -4px;
  width: 18px;
  height: 18px;
}

.login-payment-container {
  width: 554px;
}
@media screen and (max-width: 725px) {
  .login-payment-container {
    width: 100%;
  }
}
.login-payment-container .onboarding-page-header {
  margin-top: 0;
}
.login-payment-container .onboarding-step-icon {
  width: 105px;
  height: 105px;
}
.login-payment-container .onboarding-step-icon svg {
  width: 50px;
  height: 43px;
}
.login-payment-container .onboarding-page-header__title {
  margin-top: 9px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 30px;
  line-height: 30px;
  text-align: center;
  letter-spacing: -0.005em;
  color: #1b1e22;
}
.login-payment-container .onboarding-page-header__subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: rgba(0, 0, 0, 0.71);
}
.login-payment-container .onboarding-default-payment__content {
  margin: 28px 0 0;
}
@media screen and (max-width: 725px) {
  .login-payment-container .onboarding-default-payment__content {
    width: 100%;
  }
}
.login-payment-container .onboarding-default-payment__subscription-info {
  width: 554px;
}
@media screen and (max-width: 725px) {
  .login-payment-container .onboarding-default-payment__subscription-info {
    width: 100%;
    padding: 0 15px;
  }
  .login-payment-container .onboarding-default-payment__subscription-info-details {
    width: 80%;
  }
  .login-payment-container .onboarding-default-payment__subscription-info-details-date {
    text-align: right;
  }
}
.login-payment-container .onboarding-default-payment__payment-info {
  width: 554px;
}
@media screen and (max-width: 725px) {
  .login-payment-container .onboarding-default-payment__payment-info {
    width: 100%;
    padding: 0 15px;
  }
}
@media screen and (max-width: 725px) {
  .login-payment-container .onboarding-default-payment-form__submit-btn {
    width: 100%;
  }
}
@media screen and (max-width: 725px) {
  .login-payment-container .onboarding-page-header__title {
    font-size: 24px;
  }
}
.maintenance-page {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  min-width: 320px;
  min-height: 100vh;
  padding: 90px 60px 0;
  font-family: "Oakes Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  overflow: hidden;
}
@media (max-width: 915px) {
  .maintenance-page {
    padding: 60px 15px 0;
  }
}
.maintenance-page__gradient-left {
  position: absolute;
  top: 40%;
  left: -5%;
  width: 100%;
  max-width: 704px;
  max-height: 100%;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 1280px) {
  .maintenance-page__gradient-left {
    left: -35%;
    max-width: 100%;
  }
}
@media (max-width: 520px) {
  .maintenance-page__gradient-left {
    left: -50%;
  }
}
.maintenance-page__gradient-right {
  position: absolute;
  top: 0;
  right: 0;
  max-height: 100%;
  pointer-events: none;
  z-index: 0;
}
.maintenance-page__logo-container {
  position: absolute;
  width: auto;
  margin-bottom: 48px;
}
.maintenance-page__logo {
  height: 54px;
}
@media (max-width: 915px) {
  .maintenance-page__logo {
    height: 50px;
  }
}
@media (max-width: 520px) {
  .maintenance-page__logo {
    height: 40px;
  }
}
.maintenance-page__content {
  display: flex;
  flex-direction: column;
  max-width: 760px;
  width: 100%;
  height: 100%;
  padding-bottom: 60px;
}
.maintenance-page__message {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
}
.maintenance-page__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 38px;
  line-height: 53px;
  text-align: center;
  letter-spacing: -1px;
  color: #111a45;
}
@media (max-width: 915px) {
  .maintenance-page__title {
    line-height: 52px;
    letter-spacing: -0.5px;
  }
}
@media (max-width: 540px) {
  .maintenance-page__title {
    font-size: 26px;
    line-height: 36px;
    letter-spacing: -0.5px;
  }
}
.maintenance-page__sub-title {
  max-width: 100%;
  width: 100%;
  margin-top: 28px;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  letter-spacing: 0.5px;
  color: #525979;
}
@media (max-width: 540px) {
  .maintenance-page__sub-title {
    font-size: 14px;
    line-height: 18px;
    margin-top: 4px;
  }
}
.maintenance-page__sub-title-highlight {
  color: #251fb6;
}
.maintenance-page__contact {
  color: #8d8f92;
  font-size: 13px;
  line-height: 20px;
  margin-top: 8px;
}
.maintenance-page__list {
  display: flex;
  flex-direction: column;
  margin: 50px 0 41px;
}
@media (max-width: 915px) {
  .maintenance-page__list {
    margin: 30px 0 0;
  }
}
.maintenance-page__refresh-btn {
  margin-top: 20px;
  width: 180px;
}
@font-face {
    font-family: 'Oakes Grotesk';
    src: url(/c871dbf63f28bd95be4a486ff9662743.woff2) format('woff2'),
        url(/f987efd13dbdc537cdfda8cee8b4fc94.woff) format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oakes Grotesk';
    src: url(/48d22270225522868e47820e00538cfc.woff2) format('woff2'),
        url(/beb69677fe3c4eb74440a55a80e9c230.woff) format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


.external-unsubscribe-page {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
  min-width: 320px;
  min-height: 100vh;
  padding: 90px 60px 0;
  font-family: "Oakes Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  overflow: hidden;
}
@media (max-width: 915px) {
  .external-unsubscribe-page {
    padding: 60px 15px 0;
  }
}
.external-unsubscribe-page__gradient-left {
  position: absolute;
  top: 40%;
  left: -5%;
  width: 100%;
  max-width: 704px;
  max-height: 100%;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 1280px) {
  .external-unsubscribe-page__gradient-left {
    left: -35%;
    max-width: 100%;
  }
}
@media (max-width: 520px) {
  .external-unsubscribe-page__gradient-left {
    left: -50%;
  }
}
.external-unsubscribe-page__gradient-right {
  position: absolute;
  top: 0;
  right: 0;
  max-height: 100%;
  pointer-events: none;
  z-index: 0;
}
.external-unsubscribe-page__logo-container {
  width: auto;
  margin-bottom: 48px;
}
.external-unsubscribe-page__logo {
  height: 54px;
}
@media (max-width: 915px) {
  .external-unsubscribe-page__logo {
    height: 50px;
  }
}
@media (max-width: 520px) {
  .external-unsubscribe-page__logo {
    height: 40px;
  }
}
.external-unsubscribe-page__content {
  display: flex;
  flex-direction: column;
  max-width: 650px;
  width: 100%;
  padding-bottom: 30px;
}
.external-unsubscribe-page__message {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.external-unsubscribe-page__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 38px;
  line-height: 59px;
  text-align: center;
  letter-spacing: -1px;
  color: #111a45;
}
@media (max-width: 915px) {
  .external-unsubscribe-page__title {
    line-height: 52px;
    letter-spacing: -0.5px;
  }
}
@media (max-width: 540px) {
  .external-unsubscribe-page__title {
    font-size: 26px;
    line-height: 36px;
    letter-spacing: -0.5px;
  }
}
.external-unsubscribe-page__sub-title {
  max-width: 90%;
  width: 100%;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  letter-spacing: 0.5px;
  color: #525979;
}
@media (max-width: 540px) {
  .external-unsubscribe-page__sub-title {
    font-size: 14px;
    line-height: 18px;
    margin-top: 4px;
  }
}
.external-unsubscribe-page__sub-title-email {
  color: #251fb6;
}
.external-unsubscribe-page__list {
  display: flex;
  flex-direction: column;
  margin: 50px 0 41px;
}
@media (max-width: 915px) {
  .external-unsubscribe-page__list {
    margin: 30px 0 0;
  }
}
.external-unsubscribe-page__list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 520px) {
  .external-unsubscribe-page__list-item {
    padding: 20px 0;
  }
}
.external-unsubscribe-page__list-item:not(:last-child) {
  border-bottom: 1px solid #eeeeee;
}
.external-unsubscribe-page__list-item-text-wrapper {
  display: flex;
  flex-direction: column;
}
.external-unsubscribe-page__list-item-title {
  font-size: 19px;
  line-height: 40px;
  letter-spacing: 0.5px;
  color: #111a45;
}
@media (max-width: 520px) {
  .external-unsubscribe-page__list-item-title {
    line-height: 26px;
    margin-bottom: 6px;
  }
}
.external-unsubscribe-page__list-item-subtitle {
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.5px;
  color: #8e95aa;
}
.external-unsubscribe-page__list-item-toggle {
  margin-left: 60px;
}
@media (max-width: 520px) {
  .external-unsubscribe-page__list-item-toggle {
    margin-left: 30px;
  }
}
.external-unsubscribe-page__button-save {
  font-family: Oakes Grotesk, serif;
  width: 100%;
  height: 60px;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.5px;
}
.external-unsubscribe-page__button-unsubscribe-all {
  font-family: Oakes Grotesk, serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.5px;
  color: #251fb6;
  position: relative;
  text-decoration: none;
  margin: 0 auto;
  cursor: pointer;
}
.external-unsubscribe-page__button-unsubscribe-all:after {
  display: block;
  position: absolute;
  content: "";
  left: -2px;
  right: -2px;
  bottom: 5px;
  height: 12px;
  background: rgba(37, 31, 182, 0.09);
  transition: all 0.3s ease 0s;
  transform-origin: center;
}
.external-unsubscribe-page__button-unsubscribe-all--loading:after, .external-unsubscribe-page__button-unsubscribe-all:hover:after {
  left: -17px;
  right: -17px;
  bottom: -6px;
  height: 45px;
  border-radius: 11px;
}
.external-unsubscribe-page__slider-container {
  width: 46px;
  height: 28px;
}
.external-unsubscribe-page__slider-container--active {
  background: linear-gradient(69.17deg, #7f7aeb 15.42%, #221cb6 80.43%);
}
.external-unsubscribe-page__slider {
  width: 22px;
  height: 22px;
  top: 3px;
  left: 3px;
}
.external-unsubscribe-page__slider--active {
  background-color: #ffffff;
  left: auto !important;
  right: 3px;
}
.unsubscribed-page {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  min-width: 320px;
  min-height: 100vh;
  padding: 90px 60px 0;
  font-family: "Oakes Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  overflow: hidden;
}
@media (max-width: 915px) {
  .unsubscribed-page {
    padding: 60px 15px 0;
  }
}
.unsubscribed-page__gradient-left {
  position: absolute;
  top: 40%;
  left: -5%;
  width: 100%;
  max-width: 704px;
  max-height: 100%;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 1280px) {
  .unsubscribed-page__gradient-left {
    left: -35%;
    max-width: 100%;
  }
}
@media (max-width: 520px) {
  .unsubscribed-page__gradient-left {
    left: -50%;
  }
}
.unsubscribed-page__gradient-right {
  position: absolute;
  top: 0;
  right: 0;
  max-height: 100%;
  pointer-events: none;
  z-index: 0;
}
.unsubscribed-page__logo-container {
  position: absolute;
  width: auto;
  margin-bottom: 48px;
}
.unsubscribed-page__logo {
  height: 54px;
}
@media (max-width: 915px) {
  .unsubscribed-page__logo {
    height: 50px;
  }
}
@media (max-width: 520px) {
  .unsubscribed-page__logo {
    height: 40px;
  }
}
.unsubscribed-page__content {
  display: flex;
  flex-direction: column;
  max-width: 670px;
  width: 100%;
  height: 100%;
  padding-bottom: 60px;
}
.unsubscribed-page__message {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
}
.unsubscribed-page__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 64px;
  line-height: 106px;
  text-align: center;
  letter-spacing: -3.5px;
  color: #111a45;
}
@media (max-width: 915px) {
  .unsubscribed-page__title {
    line-height: 52px;
    letter-spacing: -0.5px;
  }
}
@media (max-width: 540px) {
  .unsubscribed-page__title {
    font-size: 26px;
    line-height: 36px;
    letter-spacing: -0.5px;
  }
}
.unsubscribed-page__sub-title {
  max-width: 100%;
  width: 100%;
  font-weight: 500;
  font-size: 20px;
  line-height: 36px;
  text-align: center;
  letter-spacing: 0.5px;
  color: #525979;
}
@media (max-width: 540px) {
  .unsubscribed-page__sub-title {
    font-size: 14px;
    line-height: 18px;
    margin-top: 4px;
  }
}
.unsubscribed-page__sub-title-highlight {
  color: #251fb6;
}
.unsubscribed-page__list {
  display: flex;
  flex-direction: column;
  margin: 50px 0 41px;
}
@media (max-width: 915px) {
  .unsubscribed-page__list {
    margin: 30px 0 0;
  }
}
.select {
  position: relative;
}
.select__icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.select.select-grey .css-eqy8aq-control {
  background: #F0F0F0;
  border-color: #F0F0F0;
}
.select.select-grey .select__icon svg path {
  stroke: #8F9199;
}
.date-range-select {
  position: relative;
}
.date-range-select__add-value-btn {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  color: #2aa4cb;
  cursor: pointer;
}
.date-range-select__add-value-btn:hover {
  color: #221CB6;
}
.date-range-select__picker {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
}
.filters-tooltip-raw {
  display: flex;
  align-items: center;
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  height: 40px;
}
.filters-tooltip-raw:not(:last-child) {
  margin-bottom: 20px;
}
.filters-tooltip-raw .select {
  flex: 1;
  width: auto;
}
.filters-tooltip-raw__select--joins, .filters-tooltip-raw__select--fields, .filters-tooltip-raw__select--operations {
  margin-right: 10px;
}
.filters-tooltip-raw__select--joins {
  width: auto;
  min-width: 100px;
}
.filters-tooltip-raw__select--fields {
  width: auto;
  min-width: 120px;
}
.filters-tooltip-raw__select--operations {
  width: auto;
  min-width: 100px;
}
.filters-tooltip-raw__input {
  flex: 1;
  border: 1px solid #282828;
  border-radius: 8px;
}
.filters-tooltip-raw__input .input__field {
  color: #FFFFFF;
  width: 100%;
  height: 36px;
}
.filters-tooltip-raw__cross {
  margin-left: 10px;
  cursor: pointer;
}
.filters-tooltip-raw .date-range-select__picker .rdrCalendarWrapper .rdrMonthsVertical .rdrDays .rdrDay {
  color: white !important;
}

.campaign-report-filter .filters-tooltip-raw.is-additional-row .select {
  width: fit-content;
}
.campaign-report-filter .filters-tooltip-raw.is-additional-row .select:first-child {
  flex-grow: 0;
}
.campaign-report-filter .filters-tooltip-raw.is-additional-row .select:nth-child(2) {
  flex-grow: 3;
}
.campaign-report-filter .filters-tooltip-raw.is-additional-row .select:nth-child(4) {
  flex-grow: 2;
}
.more-actions-tooltip {
  padding: 10px 0;
}
.more-actions-tooltip__action {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  min-width: 150px;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  position: relative;
}
.more-actions-tooltip__action svg {
  margin-right: 9px;
}
.more-actions-tooltip__action:hover {
  background-color: #181818;
}
.more-actions-tooltip__action .input {
  color: #fff;
}
.more-actions-tooltip__select {
  width: 100%;
}

.actions-menu__header {
  display: flex;
  justify-content: center;
}
.actions-menu__button {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 14px;
  color: #2aa4cb;
  display: flex;
  justify-content: center;
}

.header-actions__more-actions-btn {
  color: #7b7b7b;
  background-color: #f5f5f5;
  white-space: nowrap;
  height: 40px;
  padding-left: 12px;
}
.header-actions__more-actions-btn svg {
  height: 16px;
  margin-right: 16px;
  margin-left: 8px;
}
.header-actions__more-actions-btn:hover {
  background-color: #f5f5f5;
  color: #474747;
}
.header-actions__more-actions-btn:hover svg {
  filter: none;
}
.header-actions__more-actions-btn:hover svg path {
  fill: #474747;
}
.header__search {
  min-width: 190px;
  max-width: 240px;
}

.campaign-filters-tooltip-content {
  background-color: #000000;
  border-radius: 8px;
  width: 600px;
}
.campaign-filters-tooltip-content__body {
  padding: 20px 16px;
}
.campaign-filters-tooltip-content__footer {
  padding: 12px 24px 24px 24px;
  display: flex;
  padding-top: 24px;
  border-top: 1px solid #282828;
}
.campaign-filters-tooltip-content__footer svg {
  margin-right: 1rem;
}
.campaign-filters-tooltip-content .relationships-filters-tooltip-content__footer {
  padding: 12px 24px 24px 24px;
  display: flex;
  padding-top: 20px;
  border-top: 1px solid #282828;
}
.campaign-filters-tooltip-content .relationships-filters-tooltip-content__footer .relationships-filters-tooltip-content__btn-apply-filters {
  margin-left: 20px;
}
.campaign-filters-tooltip-content__btn-apply-filters {
  margin-left: 20px;
}

.page-header__actions-wrapper {
  display: flex;
  align-items: center;
  margin-left: 50px;
  gap: 12px;
}
.page-header__actions-wrapper .header__search .input__field {
  width: 100%;
}
.page-header__button {
  white-space: nowrap;
}
.page-header__button--smaller {
  padding-left: 12px;
  padding-right: 12px;
}
.page-header__separator {
  width: 2px;
  height: 45px;
  background: #f4f4f4;
}
.table {
  width: 100%;
  border-collapse: collapse;
}

.table-th {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  color: #8d8f92;
  text-align: left;
  font-size: 14px;
  line-height: 130%;
  white-space: nowrap;
  padding: 0 5px 16px 5px;
}

.table-td,
.table-th {
  padding-left: 5px;
}
.table-td:first-child,
.table-th:first-child {
  padding-left: 20px;
}
.table-td:last-child,
.table-th:last-child {
  padding-right: 30px;
}

.table-tr--is-selected {
  background-color: #eef3ff;
}
.pagination-wrapper {
  position: sticky;
  bottom: 0;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 20px;
}

.pagination-full-width {
  display: flex;
  align-content: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
}

.pagination__limit-select {
  display: flex;
  align-items: center;
  grid-column-gap: 7px;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #202430;
}
.pagination__limit-select .select {
  min-width: 100px;
}
.pagination__switch-buttons {
  display: flex;
  align-items: center;
}
.pagination__switch-buttons-button {
  width: 62px;
  height: 30px;
  margin-right: 7px;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  color: #ffffff;
  padding: 3px 0 2px;
  background-color: #251fb6;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
}
.pagination__switch-buttons-button:hover {
  background-color: #4e48dc;
}
.pagination__switch-buttons-button--disabled {
  background-color: #f5f5f5 !important;
  color: #535353;
  cursor: not-allowed;
}
.pagination__select {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #202430;
}
.pagination__select .input {
  width: 62px;
  margin: 0 6px;
}
.pagination__select .input:last-child {
  margin-right: 0px;
}
.pagination__select .input input {
  width: 100%;
  height: 28px;
  padding: 6px 10px;
  font-size: 16px;
  line-height: 16px;
  color: #202430;
}
.pagination__select .input input::-webkit-outer-spin-button, .pagination__select .input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pagination__select .input input[type=number] {
  -moz-appearance: textfield;
}
.pagination__select-last-page {
  color: #251fb6;
  cursor: pointer;
}
.pagination__select-last-page:hover {
  text-decoration: underline;
}

.pagination {
  display: flex;
  justify-content: center;
}
.pagination__button {
  box-sizing: border-box;
  background: none;
  box-shadow: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.pagination__button:focus {
  outline: none;
}
.pagination__button:not(.pagination__button--not-button):not(.pagination__button:not(.pagination__button--not-button).pagination__button--active):hover {
  background: #f5f5f5;
  border-radius: 8px;
}
.pagination__button:not(.pagination__button:last-child) {
  margin-right: 5px;
}
.pagination__button--not-button {
  cursor: auto;
}
.pagination__button--page-btn.pagination__button--active {
  background: #251fb6;
  border-radius: 8px;
  color: #fff;
  cursor: auto;
}
.pagination__button--edge-btn {
  border: 1px solid #9ba8f5;
  border-radius: 8px;
}
.pagination__button--edge-btn:hover {
  background: #e9eeff !important;
}
.pagination__button--disabled {
  border-color: #e9e9e9;
  cursor: not-allowed;
}
.pagination__button--disabled svg circle,
.pagination__button--disabled svg path {
  stroke: #e9e9e9;
}
.pagination__button--disabled svg rect {
  fill: #e9e9e9;
}
.pagination__button--disabled:hover {
  background: none !important;
}

.pagination-limit {
  position: absolute;
  display: flex;
  align-items: center;
  top: 0;
  bottom: 0;
  right: 30px;
}
.textarea {
  position: relative;
}
.textarea__field {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  border: 1px solid #C1C1C1;
  box-sizing: border-box;
  border-radius: 8px;
  width: 315px;
  height: 40px;
  color: #000;
  font-size: 16px;
  padding: 11px 20px;
  height: 48px;
  min-height: 48px;
  transition: height 250ms ease;
}
.textarea__field:focus {
  border: 1px solid #221cb6;
  outline: none;
}
.textarea--error .textarea__field {
  border: 1px solid #ed483d;
  color: #ed483d;
}
.textarea--disabled .textarea__field {
  color: #8d8f92;
}
.textarea--not-resizable .textarea__field {
  resize: none;
}
.textarea__error {
  display: none;
}
.textarea__clear-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.textarea--clearable .textarea__field {
  padding-right: 30px;
}
.textarea--full-width .textarea__field {
  width: 100%;
}
.textarea--full-height .textarea__field {
  height: 100%;
}
.textarea--transparent .input__field {
  background-color: transparent;
  border: none;
}
.orders-table {
  width: 100%;
}
.orders-table a {
  color: #221CB6;
}
.orders-table-website a {
  font-size: 12px;
}
.orders-table-article {
  display: flex;
  flex-direction: column;
  grid-row-gap: 5px;
}
.orders-table-tooltip {
  padding: 17px !important;
  background: #000000 !important;
  opacity: 1 !important;
  color: #FFFFFF !important;
  font-size: 11px !important;
  border-radius: 8px !important;
  max-width: 265px !important;
  pointer-events: auto !important;
}
.orders-table-tooltip__body {
  line-height: 13px !important;
}
.orders-table-icons {
  display: flex;
  align-items: center;
  gap: 5px;
}
.orders-table-icons a {
  color: #221CB6;
  font-size: 11px;
}
.orders-table .orders-table__row {
  cursor: pointer;
}
.orders-table .table__thead {
  position: sticky;
  top: 68px;
  background: white;
  z-index: 8;
}
.orders-table .table__thead .table__tr {
  border-bottom: none;
}
.orders-table .table__thead .table__tr .table__th {
  padding-top: 25px;
}
.orders-table .table__thead .table__tr .table__th #opportunity-column-title {
  background: black;
}
.orders-table .table__thead .table__tr .table__th #opportunity-column-title:after {
  display: none;
}
.orders-table .table-tr {
  border-bottom: 2px solid #F9F9F9;
}
.orders-table .table-tr .table-td {
  padding-bottom: 11px;
  padding-top: 11px;
}
.orders-table .table-tr .table-td:nth-child(3) {
  max-width: 25vw;
}
.orders-table .table-tr .table-td:nth-child(3) .orders-table__link {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.orders-table .table-tr .table-td .colored-toggler + .type-dark:after {
  display: none;
}
.orders-table .table-tr .table-td .total-cell,
.orders-table .table-tr .table-td .launched-cell,
.orders-table .table-tr .table-td .scheduled-cell,
.orders-table .table-tr .table-td .contacted-cell,
.orders-table .table-tr .table-td .opened-cell,
.orders-table .table-tr .table-td .replied-cell,
.orders-table .table-tr .table-td .created_on-cell {
  color: #393939;
}
.orders-table .table-tr .table-td .total-cell .subtitle-cell,
.orders-table .table-tr .table-td .launched-cell .subtitle-cell,
.orders-table .table-tr .table-td .scheduled-cell .subtitle-cell,
.orders-table .table-tr .table-td .contacted-cell .subtitle-cell,
.orders-table .table-tr .table-td .opened-cell .subtitle-cell,
.orders-table .table-tr .table-td .replied-cell .subtitle-cell,
.orders-table .table-tr .table-td .created_on-cell .subtitle-cell {
  color: #928e8d;
  font-size: 12px;
  display: block;
}
.orders-table .table-tr .table-td .opened-cell,
.orders-table .table-tr .table-td .replied-cell {
  display: flex;
  align-items: center;
  grid-column-gap: 6px;
}
.orders-table .table-tr .table-td .opened-cell > div,
.orders-table .table-tr .table-td .replied-cell > div {
  display: flex;
  flex-direction: column;
}
.orders-table .table-tr .table-td .created_on-cell p {
  margin-top: 3px;
  color: #928E8D;
  font-size: 12px;
}
.orders-table-header {
  display: flex;
  align-items: center;
  gap: 13px;
}
.orders-table__row {
  height: 80px;
}
.orders-table__row:hover {
  background-color: #eef3ff;
  cursor: pointer;
}
.orders-table .title-cell {
  display: flex;
  align-items: center;
  gap: 13px;
}
.orders-table .title-cell__body {
  grid-row-gap: 4px;
  display: flex;
  flex-direction: column;
}
.orders-table .title-cell__body.row-direction {
  flex-direction: row;
  align-items: center;
  grid-column-gap: 10px;
}
.orders-table .title-cell__title {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-weight: 500;
  font-size: 14px;
  color: #1b1e22;
  max-width: 600px;
  /*
    To make big titles overflow - ellipsis
   */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /*
    Or just line - height
   */
  line-height: 21px;
}
.orders-table .title-cell__title .subtitle-cell {
  color: #928e8d;
  font-size: 12px;
  display: block;
}
.orders-table .title-cell__folder {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 12px;
  line-height: 130%;
  color: #928e8d;
}
.orders-table .status-cell__header {
  cursor: pointer;
}
.orders-table .status-cell__header svg {
  width: 8px;
  margin-left: 4px;
  transform: rotate(180deg);
}
.orders-table .status-cell__header svg > path {
  fill: #8d8f92;
}
.orders-table .status-cell__header--active {
  color: #000000;
}
.orders-table .status-cell__status {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 12px;
  line-height: 16px;
  color: #4b4c4d;
  margin-bottom: 7px;
}
.orders-table .status-cell__filters {
  padding: 6px 14px;
}
.orders-table .status-cell__filters-tooltip {
  background-color: #000000;
}
.orders-table .status-cell__filters-row {
  display: flex;
  align-items: center;
  padding: 4px 6px;
  border-radius: 8px;
  margin: 2px 0;
  cursor: pointer;
}
.orders-table .status-cell__filters-row:hover, .orders-table .status-cell__filters-row--active {
  background-color: #282828;
}
.orders-table .status-cell__filters-row > span {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background-color: #8d8f92;
  border-radius: 50%;
  margin-right: 14px;
}
.orders-table .status-cell__filters-green {
  background-color: #58cd95 !important;
}
.orders-table .status-cell__filters-orange {
  background-color: #fc8619 !important;
}
.orders-table .status-cell__filters-purple {
  background-color: #cd58c3 !important;
}
.orders-table .delivered-cell {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 14px;
  line-height: 130%;
  color: #8d8f92;
}
.orders-table .shares-cell {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 10px;
}

.orders-illustration-wrapper .campaigns-empty-message {
  align-items: center;
  height: calc(100vh - 178px);
}

.orders-modal-wrapper {
  max-width: 486px;
  height: auto;
  min-height: 172px;
  border-radius: 8px;
}

.orders-modal__container {
  background-color: #fff;
  padding: 40px;
  position: relative;
}
.orders-modal__container .orders-modal__title h2 {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: #1B1E22;
  margin-bottom: 23px;
  margin-top: 0;
}
.orders-modal__container .orders-modal__header .orders-modal__title h2 {
  margin-bottom: 10px;
}
.orders-modal__container .orders-modal__subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #928E8D;
  margin-bottom: 37px;
}
.orders-modal__container .orders-modal__label {
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  color: #928E8D;
  margin-bottom: 11px;
  display: inline-block;
}
.orders-modal__container .textarea {
  margin-bottom: 20px;
}
.orders-modal__container .textarea textarea {
  min-height: 175px;
}
.orders-modal__container .textarea textarea::placeholder {
  color: rgba(26, 29, 33, 0.48);
}
.orders-modal__container .orders-modal__footer {
  display: flex;
  align-items: center;
  grid-column-gap: 10px;
}
.orders-modal__container .orders-modal__footer button {
  width: 196px;
  height: 47px;
}
.orders-modal__container .orders-modal__footer button:first-child {
  background-color: #FC8619;
  color: #FFFFFF;
}
.orders-modal__container .orders-modal__footer button:first-child:not(:disabled):hover {
  background-color: #fa963a;
}
.orders-modal__container .orders-modal__footer button:last-child {
  color: #ED483D;
}
.orders-modal__container .orders-modal__input-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.orders-modal__container .orders-modal__input-wrapper .input {
  width: 100%;
}
.orders-modal__container .orders-modal__input-wrapper .input input {
  height: 47px;
}
.orders-modal__container .orders-modal__input-wrapper button {
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
}

.status-label {
  padding: 0 10px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  grid-column-gap: 6px;
  width: fit-content;
  font-size: 11px;
  height: 24px;
}
.status-label .status-label-container {
  display: flex;
  align-items: center;
  grid-column-gap: 1px;
}
.status-label .status-label-container div {
  display: flex;
  align-items: center;
}
.status-label:has(.status-label-container) {
  padding-right: 2px;
}
.status-label .link-button {
  font-size: 7px;
  font-weight: bold;
  padding: 5px 7px 4px 8px;
  height: 18px;
  border-radius: 31px;
  width: fit-content;
  min-width: auto;
  border-color: #221CB6;
  color: #221CB6;
}
.status-label:hover .link-button {
  background: #221CB6;
  color: #FFFFFF;
}
.campaigns-empty-message {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 24px;
  line-height: 130%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin-bottom: 10%;
}
.campaigns-empty-message__message {
  color: #181818;
  margin-top: 3rem;
  line-height: normal;
  text-align: center;
}
.campaigns-empty-message__sub-message {
  color: #7b7b7b;
  font-size: 16px;
  margin-top: 0.2rem;
}
.campaigns-empty-message__link {
  margin-top: 1.5rem;
}
.colored-toggler {
  position: relative;
  width: 40px;
  height: 24px;
  border-radius: 31px;
  cursor: pointer;
}
.colored-toggler__big-size {
  width: 88px;
  display: flex;
}
.colored-toggler__big-size .colored-toggler__slider--active {
  left: 66px;
}
.colored-toggler__not-clickable {
  flex-direction: row-reverse;
  width: fit-content;
  padding-left: 11px;
}
.colored-toggler__not-clickable .colored-toggler__title {
  position: relative;
  margin-right: 11px;
  margin-left: 4px;
}
.colored-toggler__not-clickable.colored-toggler__approval {
  flex-direction: row;
  width: 142px;
  padding-left: 6px;
}
.colored-toggler__fit-size {
  width: 56px;
}
.colored-toggler__approval {
  width: 142px;
}
.colored-toggler__approval .colored-toggler__slider--reject {
  left: 117px !important;
}
.colored-toggler__approval .colored-toggler__slider--confirm {
  left: 96px !important;
}
.colored-toggler__title {
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  white-space: nowrap;
  margin: 6px 8px;
  position: absolute;
  left: 0;
}
.colored-toggler__title.right {
  right: 0;
  left: inherit;
}
.colored-toggler__slider {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.06);
  border-radius: 100%;
  transition: 1s;
}
.colored-toggler__slider .icon-name {
  width: 18px;
  height: 18px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
}
.colored-toggler__slider--loading {
  cursor: not-allowed;
}
.colored-toggler__slider--loading:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: " ";
  display: block;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #221CB6;
  border-color: #221CB6 transparent transparent transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
.colored-toggler__slider--active {
  transition: 1s;
  left: 19px;
}
.colored-toggler__slider--circled:not(.colored-toggler__slider--confirm):not(.colored-toggler__slider--reject) {
  width: fit-content;
  height: fit-content;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  position: relative;
  box-shadow: none;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.actions-tooltip-content__item {
  display: flex;
  align-items: center;
  padding: 7px 18px 7px 22px;
  /* Overlap styles */
}
.actions-tooltip-content__item:first-child {
  margin-top: 14px;
}
.actions-tooltip-content__item:last-child {
  margin-bottom: 14px;
}
.actions-tooltip-content__item span {
  white-space: nowrap;
}
.actions-tooltip-content__item:hover {
  background-color: #181818;
}
.actions-tooltip-content__item .input {
  margin: 0;
  width: 100%;
}
.actions-tooltip-content__item .input__field {
  color: #fff;
  padding-left: 0;
}
.actions-tooltip-content__item-icon {
  margin-right: 8px;
}
.actions-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid rgba(214, 214, 214, 0.35);
}
.actions-menu:hover {
  background-color: #eef3ff;
  color: #221cb6;
  cursor: pointer;
}
.actions-menu:hover .actions-menu__icon svg circle[stroke],
.actions-menu:hover .actions-menu__icon svg rect[stroke],
.actions-menu:hover .actions-menu__icon svg path[stroke] {
  stroke: #221cb6;
}
.actions-menu:hover .actions-menu__icon svg circle[fill],
.actions-menu:hover .actions-menu__icon svg rect[fill],
.actions-menu:hover .actions-menu__icon svg path[fill] {
  fill: #221cb6;
}
.actions-menu__icon {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.actions-menu__icon svg {
  height: 16px;
}
.actions-menu .react-tooltip:not(.react-tooltip--position-fixed) {
  position: absolute;
  top: auto !important;
  bottom: auto !important;
  left: -152px !important;
  border-radius: 8px;
}

.__react_component_tooltip.react-tooltip--position-fixed {
  position: fixed;
  z-index: 10002;
  border-radius: 8px;
  color: #fff;
  background: #222;
  padding: 0 !important;
}
.__react_component_tooltip.react-tooltip--position-fixed.show {
  opacity: 1 !important;
}
.__react_component_tooltip.react-tooltip--position-fixed .actions-tooltip-content:hover {
  cursor: pointer;
}
.page-table {
  display: flex;
  height: 100vh;

  .page-table__content {
    flex: 1;
    display: flex;
    flex-direction: column !important;
    position: relative;
    padding-top: 68px;

    .page-header.page-header__with-close-btn {
      left: 0;
    }
  }

  .page-table__content-header {
    display: flex;
    align-items: center;
    margin-left: 50px;
    gap: 12px;

    input {
      width: 100%;
    }
  }
}

.steps-links {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 19px;
  padding-left: 19px;
  padding-top: 10px;
  background-color: #FFFFFF;
}
.steps-links-logo {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps-links__order-name {
  margin: 0 auto 0 20px;
}
.steps-links__order-name-input input {
  min-width: 175px;
}
.steps-links__order-name-length {
  color: red;
  position: absolute;
  bottom: 2px;
}
.steps-links .step-link__container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: 31px;
}
.steps-links .step-link__container + svg {
  transform: rotate(90deg);
  margin: 0 17px;
}
.steps-links .step-link__container--completed .step-link__step {
  background-color: rgba(35, 231, 113, 0.19);
  border-color: rgba(35, 231, 113, 0);
  color: #ffffff;
}
.steps-links .step-link__container--completed .step-link--active .step-link__step {
  background-color: #23e771 !important;
  border-color: #23e771 !important;
}
.steps-links .step-link__container--disabled .step-link {
  cursor: default;
}
.steps-links .step-link__container--disabled .step-link__step {
  background: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #7b7b7b;
}
.steps-links .step-link {
  display: flex;
  align-items: center;
  gap: 7px;
  width: auto;
  position: relative;
  padding-right: 4px;
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  text-decoration: none;
  color: #7b7b7b;
}
.steps-links .step-link:hover {
  color: #8d8f92;
}
.steps-links .step-link__link-title {
  font-size: 14px;
  line-height: 14px;
  white-space: nowrap;
}
.steps-links .step-link__step {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 7px;
  font-size: 10px;
  line-height: 17px;
  background-color: rgba(34, 28, 182, 0.08);
  border: 1px solid rgba(34, 28, 182, 0.16);
  border-radius: 8px;
  color: #221cb6;
  font-weight: 600;
}
.steps-links .step-link__step--completed {
  background-color: #221cb6;
  color: #ffffff;
}
.steps-links .step-link__how-to {
  position: absolute;
  top: 38px;
  right: 0;
}
.steps-links .step-link:after {
  content: "";
  display: inline-block;
  position: absolute;
  background: #E9ECF1;
  bottom: -14px;
  left: 0;
  right: 0;
  height: 2px;
}
.steps-links .step-link--active svg path {
  fill: #ffffff;
}
.steps-links .step-link--active .step-link__step {
  background-color: #EEF3FF;
  color: #221cb6;
}
.steps-links .step-link--active:after {
  background: #221cb6;
}
.steps-links .step-link--active .step-link__link-title {
  color: #221cb6;
}
.steps-links .step-link--active-prev {
  color: #7B7B7B;
}
.steps-links .step-link--active-prev:after {
  background: #E9ECF1;
}
.steps-links .step-link--active-prev .step-link__link-title {
  color: #7B7B7B;
}
.steps-links .step-link--active-prev .step-link__step {
  background-color: #F5F5F5;
  border-color: #E8E8E8;
}
.steps-links__back-button-close:hover {
  color: #e9eeff;
  background-color: #4e48dc;
}
.steps-links__back-button-close:hover svg path {
  stroke: #e9eeff;
}
.website-step {
    height: 100%;
    display: flex;
    flex-direction: column;

    &.website-step--loading {
        justify-content: space-between;
    }
}

.website-step-container__dammy {
    flex: 0 1 80px;
    max-height: 80px; /* height of header */
}

.website-step-container {
    width: 100%;
    max-width: 452px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    flex: 1 1 auto;
    justify-content: center;

    h2 {
        font-size: 32px;
        font-weight: 500;
        margin-bottom: 11px;
    }

    p {
        text-align: center;
        font-size: 14px;
        color: rgba(0, 0, 0, 0.61);
        line-height: 150%;
    }

    .website-step-container__input {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
        width: 100%;

        .input,
        button {
            width: 100%;

            input {
                height: 64px;
            }
        }

        button {
            margin-top: 18px;
            height: 52px;
        }
    }
}

.number-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    width: fit-content;
}

.number-input-wrapper .number-input__before-text {
    margin-left: 13px;
    color: #344054;
    font-size: 16px;
}

.number-input-wrapper .number-input__before-text-gray {
    color: #6A7282;
}
.number-input-wrapper:has(.number-input__before-text) > .input input {
    padding-left: 5px;
}

.number-input-wrapper:has(.number-input__before-text) {
    padding-right: 10px;
}

.number-input-wrapper .input input {
    border: none;
    outline: none;
    font-size: 16px;
}

.number-input__custom-wrapper {
    position: relative;

    input {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: 1px solid #DBDFE7;
        border-radius: 8.5px;
        padding: 5px 10px;
        width: fit-content;
        background: #fff;
    }

    &.number-input__disabled {
        background: #f5f5f5;
    }

    .number-input__before-text {
        position: absolute;
        left: 10px;
        top: 11px;
        z-index: 10;
        font-weight: 400;
        font-size: 16px;
        color: #202430;

        & + .input input {
            padding-left: 20px;
        }
    }

    .number-input__arrows {
        position: absolute;
        right: 3px;
        top: 8px;
        display: flex;
        flex-direction: column;
        margin-left: 8px;
        grid-row-gap: 1px;
    }

    .number-input__arrows button {
        border: none;
        background: none;
        cursor: pointer;
        width: 18px !important;
        height: 12px !important;
        padding: 0;
        min-width: fit-content;

        svg {
            margin-right: 0;
            margin-left: 0;
        }

        &:hover {
            opacity: .7;
        }

        .up-arrow {
            transform: rotate(180deg);
        }
    }
}

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

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

:root {
    --fg: #111827;
    --muted: rgba(32, 36, 48, 0.73);
    --accent: #251FB6;
    --accent-soft: rgba(149, 146, 235, 0.21);
    --grid: #eef2f7;
    --line: rgba(149, 146, 235, 0.21);
    --card: #ffffff;
    --border: #e5e7eb;
}
.wrap-gaussian {
    .card {
        background: var(--card);
        padding: 16px;

        .row {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
            width: 100%;
            padding-bottom: 45px;
            position: absolute;
            bottom: 11px;
            left: 40px;

            .slider-wrapper {
                position: relative;

                input[type="number"] {
                    width: 110px;
                    padding: 8px 10px;
                    border-radius: 10px;
                    border: 1px solid var(--border);
                    background: #fff;
                }

                input[type="range"] {
                    -webkit-appearance: none;
                    width: 370px;
                    height: 8px;
                    background: transparent;
                    cursor: pointer;
                }

                input[type=range]::-webkit-slider-runnable-track {
                    height: 8px;
                    border-radius: 8px;
                }


                input[type=range]::-webkit-slider-thumb {
                    --c: #D5DFEF;
                    --w: 3px;
                    --h: 8px;
                    --r: calc(var(--h) / 2);
                    --dx: 7px;

                    -webkit-appearance: none;
                    width: 58px;
                    height: 25px;
                    border: none;
                    border-radius: 45px;
                    background: #fff;
                    margin-top: -8px;
                    position: relative;
                    box-shadow: 0 2px 8px rgba(0,0,0,.2);

                    background-image:
                            linear-gradient(var(--c), var(--c)),
                            linear-gradient(var(--c), var(--c)),
                            linear-gradient(var(--c), var(--c));
                    background-repeat: no-repeat;
                    background-size: var(--w) var(--h);
                    background-position:
                            50% 50%,
                            calc(50% - var(--dx)) 50%,
                            calc(50% + var(--dx)) 50%;
                }

                .badge {
                    display: inline-flex;
                    align-items: center;
                    gap: 8px;
                    background: #fff;
                    padding: 5px 10px;
                    border: 1px solid var(--border);
                    border-radius: 8px;
                    box-shadow: 0 1px 4px rgba(0,0,0,.04);
                    position: absolute;
                    bottom: 0;
                    font-size: 16px;
                    font-weight: 600;
                    color: #000000;
                    height: 28px;


                    .badge-price:focus-visible {
                        outline: none;
                    }
                }
            }

        }

        .big {
            font-size: 30px;
            font-weight: 700;
        }

        .muted {
            color: var(--muted);
        }

        .kpis {
            display:flex;
            align-items:center;
            gap:14px;
            margin-top:12px;
        }

        .chart {
            margin-top: 10px;
            margin-bottom: 15px;

            svg {
                g {
                    text,
                    text tspan {
                        font-size: 16px;
                    }
                }
            }
        }

        .hint {
            color: var(--muted);
            font-size: 12px;
            margin-top: 4px;
        }
    }
}

.website-step {
    height: 100%;
    display: flex;
    flex-direction: column;
}


.website-step-container.step-2 {
    width: 100%;
    max-width: 580px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px auto 0;

    h2 {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 11px;
    }

    p {
        text-align: center;
        font-size: 14px;
        color: rgba(0, 0, 0, 0.61);
        line-height: 150%;
    }

    .wrap-gaussian {
        width: 406px;
        height: 254px;
        margin: 50px 0  25px;

        .card {
          display: flex;
            flex-direction: column-reverse;
            position: relative;

            .row {
                padding-bottom: 30px;
                left: 36px;
            }
        }
    }

    .website-step-container__price {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
        padding-bottom: 54px;
        border-bottom: 1px solid #A4A3B233;
        margin-top: 50px;

        .website-step-container__price-values {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;

            .price-values-container {
                .price-label {
                    text-align: center;
                    font-size: 20px;
                    color: #43454C;
                }

                .price-subtitle,
                .price-subtitle p {
                    display: flex;
                    align-items: center;
                    grid-column-gap: 10px;
                    font-size: 12px;
                    color: #A4A3B2;

                }
            }

            .price-value {
                margin: 0 0;
                font-size: 45px;
                font-weight: 500;

                span {
                    font-size: 20px;
                }
            }
        }
    }

    .website-step-container__graph {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .website-step-container__trafic {
        max-width: 147px;
        width: 100%;

        .website-step-container__trafic-header {
            display: flex;
            align-items: center;
            grid-column-gap: 5px;
            margin: 0 auto 10px;
            justify-content: center;

            p {
                color: #1B1E22;
                font-size: 14px;
            }
        }
        .website-step-container__trafic-block {
            border: 1px solid rgba(136, 136, 136, 0.2);
            border-radius: 10px;
            padding: 14px 24px 16px 21px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            .label {
                padding: 8px 11px;
                width: fit-content;
                font-size: 15px;
                font-weight: 500;
            }

            .trafic-value {
                margin-top: 17px;
                text-align: center;

                span {
                    color: #A4A3B2;
                    font-size: 12px;
                    font-weight: 500;
                }

                p {
                    font-size: 15px;
                    color: #1B1E22;
                }
            }

        }
    }

    .website-step-container__calculation {
        width: 100%;
        margin-top: 25px;
        border-bottom: 1px solid #A4A3B233;
        padding-bottom: 45px;

        .website-step-container__calculation-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            grid-column-gap: 7px;
            margin-top: 35px;

            .item-container {
                display: flex;
                flex-direction: column;
                align-items: flex-start;

                .flex-content {
                    display: flex;
                    align-items: center;
                    grid-column-gap: 6px;
                }

                p {
                    margin-bottom: 3px;
                    color: #43454C;
                    font-weight: 500;
                    font-size: 20px;
                }

                span {
                    color: #A4A3B2;
                    font-size: 12px;
                    font-weight: 500;
                }
            }

            .number-input__custom-wrapper {
                max-width: 82px;
                width: 100%;

                .input {
                    input {
                        width: fit-content;
                        max-width: 82px;
                    }
                }
            }

            .slide-toggler {
                width: 26px;
                height: 14px;

                .slide-toggler__pointer {
                    width: 10px;
                    height: 10px;
                    top: 2px;

                }
            }
        }
    }

    .website-step-container__footer,
    .website-step-container__footer  button {
        width: 100%;
    }

    .website-step-container__footer  button {
        height: 52px;
    }
}

.price-busy-wrap {
  position: relative;
}

.price-busy-wrap.is-busy .price-values-container,
.price-busy-wrap.is-busy .price-value {
  filter: blur(8px);
  transition: filter 120ms ease-in-out;
}

.price-busy-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.price-busy-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(34, 28, 182, 0.2);
  border-top-color: #221cb6;
  border-radius: 50%;
  animation: priceSpin 0.8s linear infinite;
}

@keyframes priceSpin {
  to {
    transform: rotate(360deg);
  }
}

.website-step--step-three {
    height: 100%;
    display: flex;
    flex-direction: column;

    .website-step-container {
        width: 100%;
        max-width: 495px;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        padding-bottom: 15px;

        &.wide-content {
            max-width: 733px;
        }

        .website-step-container__title {
            font-size: 32px;
            font-weight: 600;
            margin-top: 53px;
            margin-bottom: 49px;
        }

        &.step-1 {
            h2 {
                margin-bottom: 11px;
            }
        }

        .website-step-container__block {
            width: 100%;
            margin-bottom: 28px;

            &.mb-0 {
                margin-bottom: 0;
            }

            .website-step-container__label {
                font-weight: 600;
                font-size: 14px;
                color: #8F9199;
                text-align: left;
            }

            &.website-step-container__block--top {
                margin-bottom: 53px;
                border: 1px solid rgba(99, 99, 99, 0.21);
                border-radius: 14px;
            }

            .website-step-container__header {
                border-bottom: 1px solid rgba(99, 99, 99, 0.21);
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 11px 29px;


                .title {
                    display: flex;
                    align-items: center;
                    font-size: 14px;
                    color: #1B1E22;

                    .logo,
                    .logo img {
                        background-color: #251FB6;
                        border-radius: 4px;
                        width: 15px;
                        height: 15px;
                    }

                    .logo {
                        display: inline-flex;
                        align-items: center;
                        justify-content: center;
                        margin-right: 7px;
                    }
                }

                .edit-btn {
                    max-width: 54px;
                    min-width: 54px;
                    font-size: 16px;
                    height: 30px;
                    border-radius: 6px;
                    opacity: 1;
                    color: #251FB6;
                    padding: 0;
                    grid-column-gap: 6px;

                    svg {
                        margin-right: 0;
                    }

                    &:hover {
                        cursor: pointer;
                        background: #EEF3FF;
                    }
                }

                p {
                    margin-bottom: 0;
                }

                .label {
                    font-size: 12px;
                    line-height: 21px;
                    padding-right: 7px;
                    padding-left: 7px;
                    border-radius: 6px;
                }
            }

            .website-step-container__content {
                display: flex;
                flex-direction: column;

                &.flex-content {
                    flex-direction: row;
                    justify-content: space-between;
                }

                .website-step-container__column {
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    padding: 36px 29px;

                    h4 {
                        font-size: 20px;
                        color: #202430;
                        font-weight: 400;
                        margin-bottom: 5px;
                        margin-top: 5px;
                    }

                    p {
                        font-size: 12px;
                        color: #202430;
                    }
                }

                .website-step-container__item {
                    position: relative;
                    display: flex;
                    align-items: center;
                    justify-content: flex-start;
                    padding: 12px 0;
                    grid-column-gap: 20px;

                    &.grid-column-none {
                        grid-column-gap: 0;
                        justify-content: center;
                    }

                    .website-step-container__input {
                        border: 1px solid #DBDFE7;
                        border-radius: 8px;
                        display: flex;
                        align-items: center;
                        flex-direction: row;
                        padding-left: 11px;
                        margin-top: 0;

                        &:first-child {
                            border-top-right-radius: 0;
                            border-bottom-right-radius: 0;
                            border-right: none;
                        }

                        &:last-child {
                            border-top-left-radius: 0;
                            border-bottom-left-radius: 0;
                        }

                        label {
                            font-size: 12px;
                            color: #00000036;
                        }

                        input {
                            border: none;
                            margin: 0 auto;
                            margin-right: 0;
                            text-align: right;
                            padding: 9px 11px;
                            border-radius: 8px;

                            &:focus-visible {
                                outline: none;
                            }
                        }
                    }

                    p {
                        font-size: 20px;
                        color: #43454C;
                        font-weight: 300;
                        font-family: 'Mulish', sans-serif;
                    }

                    &:last-child {
                        padding-bottom: 32px;
                    }

                    &:first-child {
                        padding-top: 23px;
                    }

                    &.pt-8 {
                        padding-top: 8px;

                        &:first-child,
                        &:last-child {
                            padding-top: 8px;
                        }
                    }

                    .select,
                    .input,
                    .input__field {
                        width: 100%;
                        border-color: #DBDFE7;
                    }

                    .input__field {
                        height: 36px;
                    }
                }
            }
        }

        .website-step-container__block--two-columns {
            display: flex;
            justify-content: space-between;
            width: 100%;
            margin-bottom: 30px;

            .website-step-container__block--two-columns__left,
            .website-step-container__block--two-columns__right {
                flex: 0 0 calc(50% - 10px);
            }
            /*.website-step-container__block--two-columns__left {*/
            /*    width: 337px;*/
            /*}*/

            /*.website-step-container__block--two-columns__right {*/
            /*    width: 280px;*/
            /*}*/
        }

        .website-step-container__textarea {
            width: 100%;
            margin-bottom: 21px;

            label {
                color: #4E4F52;
                font-size: 16px;
                font-weight: 500;
            }

            textarea {
                width: 100%;
                background: #FAFAFA;
                border: 1px solid rgba(99, 99, 99, 0.21);
                border-radius: 14px;
                font-size: 16px;
                min-height: 155px;
                margin-top: 11px;

                &::placeholder {
                    font-size: 16px;
                    color: #8D8F92;
                }
            }
        }

        .website-step-container__turnaround-time-label {
            position: absolute;
            top: 21px;
            right: 20px;
            z-index: 10;
            color: rgba(0, 0, 0, 0.21);
            font-size: 12px;
            font-weight: 500;
        }

        .website-step-container__label-category {
            margin-bottom: 7px;
        }

        .website-step-container__number-input {
            position: absolute;
            right: 0;
            width: 62px;

            &:before {
                content: '$';
                position: absolute;
                left: 7px;
                top: 13px;
                z-index: 1;
                color: #DBDFE7;
                font-size: 14px;
            }

            .input__field {
                padding-left: 17px;
            }
        }

        button {
            width: 100%;
            height: 52px;
        }
    }
}

.website-step {
    .website-step-container.step-4 {
        h2 {
            margin-bottom: 8px;
        }

        p {
            margin-bottom: 25px;
        }

        .dropdown-panel {
            width: 100%;
            margin-bottom: 17px;
            border-radius: 14px;

            .dropdown-panel__header {
                background: #FAFAFA;
                border: 1px solid rgba(99, 99, 99, 0.2);
                border-radius: 14px;
                height: 48px;

                .dropdown-panel__header-chevron {
                    svg {
                       path {
                           fill: #C4C6CD;
                       }
                    }
                }

                .recheck-btn {
                    display: flex;
                    align-items: center;
                    width: 100%;
                    grid-column-gap: 10px;

                    span {
                        font-size: 16px;
                        color: #303031;
                        font-weight: 400;
                    }

                    button {
                        max-width: 122px;
                        height: 26px;
                        border-radius: 8px;
                        border: 1px solid #E8E8E8;
                        padding: 2px;
                        background-color: transparent;
                        color: #767676;

                        span {
                            font-size: 12px;
                        }

                        svg {
                            width: 12px;
                        }
                    }
                }
            }

            .dropdown-panel__content {
                background: #FAFAFA;
                border-bottom-left-radius: 14px;
                border-bottom-right-radius: 14px;
                border: 1px solid rgba(99, 99, 99, 0.21);
                border-top: none;
            }

            &.dropdown-panel--opened {
                .dropdown-panel__header {
                    border-bottom-left-radius: 0;
                    border-bottom-right-radius: 0;
                }
            }

            .dropdown-text {
                color: #4E4F52;
                line-height: 180%;
                font-size: 14px;
            }

            .login-container__button,
            .button--download {
                margin-top: 15px;
                width: fit-content;
                font-size: 12px;
                color: #4E4F52;
                height: 48px;

                .login-container__button-img {
                    margin-right: 10px;
                }
            }

            .button--download {
                color: #ffffff;
            }
        }

        .code-block {
            padding: 10px;
            margin: 10px 0;
            border-radius: 10px;
            background-color: #ECECEC;
            color: #4E4F52;
            line-height: 170%;
            font-size: 14px;
            padding-left: 13px;
        }
    }

    .website-step-container__footer {
        width: 100%;
        margin: 15px 0;

        .website-step-container__footer-text {
            margin-top: 15px;
            color: #4E4F52;
            text-align: center;
            cursor: pointer;

            &:hover {
                color: #251fb6;
            }
        }

        button {
            width: 100%;
            height: 52px;
        }
    }
}

.dropdown-panel {
  background-color: #f5f6fa;
  border-radius: 8px;
}
.dropdown-panel__header {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  display: flex;
  align-items: center;
  height: 52px;
  padding-left: 16px;
  padding-right: 16px;
  cursor: pointer;
  border-radius: 8px;
}
.dropdown-panel__header:hover {
  background-color: #e9e9e9;
}
.dropdown-panel--opened .dropdown-panel__header {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.dropdown-panel__header-icon {
  height: 20px;
  margin-right: 12px;
}
.dropdown-panel__header-chevron {
  display: flex;
  margin-left: auto;
}
.dropdown-panel__header-chevron svg {
  transform: rotateX(180deg);
}
.dropdown-panel__content {
  padding: 24px;
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 16px;
  line-height: 16px;
}
.dropdown-panel--opened > div > .dropdown-panel__header-chevron:first-of-type svg {
  transform: rotateX(0);
}
.orders-table {
  width: 100%;
}
.orders-table-metrics {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}
.orders-table-metrics div {
  display: flex;
  align-items: center;
  grid-column-gap: 7px;
  font-size: 14px;
}
.orders-table-metrics div span {
  font-size: 12px;
  color: #928E8D;
  text-transform: uppercase;
}
.orders-table a {
  color: #221CB6;
}
.orders-table-tooltip {
  padding: 8px 10px !important;
  text-align: center;
}
.orders-table-cell p {
  font-size: 14px;
  font-weight: 400;
}
.orders-table-cell span {
  color: #928E8D;
  font-size: 12px;
}
.orders-table-website a {
  font-size: 12px;
}
.orders-table-langs p {
  display: flex;
  align-items: center;
  gap: 5px;
}
.orders-table-block .colored-block {
  border-radius: 31px;
  font-size: 10px;
  padding: 6px 13px;
  width: fit-content;
}
.orders-table-article {
  display: flex;
  flex-direction: column;
  grid-row-gap: 5px;
}
.orders-table-tooltip {
  padding: 7px 9px;
}
.orders-table-icons {
  display: flex;
  align-items: center;
  gap: 5px;
}
.orders-table-icons a {
  color: #221CB6;
  font-size: 11px;
}
.orders-table-added-on__created-by {
  margin-top: 3px;
  color: #928E8D;
  font-size: 12px;
}
.orders-table .orders-table__row {
  cursor: pointer;
}
.orders-table .table__thead {
  position: sticky;
  top: 68px;
  background: white;
  z-index: 8;
}
.orders-table .table__thead .table__tr {
  border-bottom: none;
}
.orders-table .table__thead .table__tr .table__th {
  padding-top: 25px;
}
.orders-table .table__thead .table__tr .table__th #opportunity-column-title {
  background: black;
}
.orders-table .table__thead .table__tr .table__th #opportunity-column-title:after {
  display: none;
}
.orders-table .table-tr {
  border-bottom: 2px solid #F9F9F9;
}
.orders-table .table-tr .table-td {
  padding-top: 11px;
  padding-bottom: 11px;
}
.orders-table .table-tr .table-td .colored-toggler + .type-dark:after {
  display: none;
}
.orders-table .table-tr .table-td .total-cell,
.orders-table .table-tr .table-td .launched-cell,
.orders-table .table-tr .table-td .scheduled-cell,
.orders-table .table-tr .table-td .contacted-cell,
.orders-table .table-tr .table-td .opened-cell,
.orders-table .table-tr .table-td .replied-cell,
.orders-table .table-tr .table-td .created_on-cell {
  color: #393939;
}
.orders-table .table-tr .table-td .total-cell .subtitle-cell,
.orders-table .table-tr .table-td .launched-cell .subtitle-cell,
.orders-table .table-tr .table-td .scheduled-cell .subtitle-cell,
.orders-table .table-tr .table-td .contacted-cell .subtitle-cell,
.orders-table .table-tr .table-td .opened-cell .subtitle-cell,
.orders-table .table-tr .table-td .replied-cell .subtitle-cell,
.orders-table .table-tr .table-td .created_on-cell .subtitle-cell {
  color: #928e8d;
  font-size: 12px;
  display: block;
}
.orders-table .table-tr .table-td .opened-cell,
.orders-table .table-tr .table-td .replied-cell {
  display: flex;
  align-items: center;
  grid-column-gap: 6px;
}
.orders-table .table-tr .table-td .opened-cell > div,
.orders-table .table-tr .table-td .replied-cell > div {
  display: flex;
  flex-direction: column;
}
.orders-table .table-tr .table-td .created_on-cell p {
  margin-top: 3px;
  color: #928E8D;
  font-size: 12px;
}
.orders-table .table-td.orders-table__actions-cell,
.orders-table .table-th.orders-table__actions-cell {
  max-width: 50px;
}
.orders-table-header {
  display: flex;
  align-items: center;
  gap: 13px;
}
.orders-table__row {
  height: 80px;
}
.orders-table__row:hover {
  background-color: #eef3ff;
  cursor: pointer;
}
.orders-table .title-cell {
  display: flex;
  align-items: center;
  gap: 13px;
}
.orders-table .title-cell__body {
  grid-row-gap: 4px;
  display: flex;
  flex-direction: column;
}
.orders-table .title-cell__body.row-direction {
  flex-direction: row;
  align-items: center;
  grid-column-gap: 10px;
}
.orders-table .title-cell__title {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-weight: 500;
  font-size: 14px;
  color: #1b1e22;
  max-width: 600px;
  /*
    To make big titles overflow - ellipsis
   */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /*
    Or just line - height
   */
  line-height: 21px;
}
.orders-table .title-cell__title .row-direction {
  flex-direction: row;
  align-items: center;
  grid-column-gap: 5px;
  display: flex;
}
.orders-table .title-cell__title .subtitle-cell {
  color: #928e8d;
  font-size: 12px;
  display: block;
}
.orders-table .title-cell__title .cell-color-label {
  font-size: 10px;
  padding: 2px 4px;
  border-radius: 31px;
  display: flex;
  align-items: center;
  grid-column-gap: 3px;
  width: fit-content;
}
.orders-table .title-cell__title .cell-color-label span {
  line-height: normal;
}
.orders-table .title-cell__title .cell-color-label.green-label {
  background-color: #ECFFF3;
  color: #23e771;
}
.orders-table .title-cell__title .cell-color-label.orange-label {
  background: rgba(252, 135, 25, 0.1);
  color: #FC8619;
}
.orders-table .title-cell__folder {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 12px;
  line-height: 130%;
  color: #928e8d;
}
.orders-table .status-cell__header {
  cursor: pointer;
}
.orders-table .status-cell__header svg {
  width: 8px;
  margin-left: 4px;
  transform: rotate(180deg);
}
.orders-table .status-cell__header svg > path {
  fill: #8d8f92;
}
.orders-table .status-cell__header--active {
  color: #000000;
}
.orders-table .status-cell__status {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 12px;
  line-height: 16px;
  color: #4b4c4d;
  margin-bottom: 7px;
}
.orders-table .status-cell__filters {
  padding: 6px 14px;
}
.orders-table .status-cell__filters-tooltip {
  background-color: #000000;
}
.orders-table .status-cell__filters-row {
  display: flex;
  align-items: center;
  padding: 4px 6px;
  border-radius: 8px;
  margin: 2px 0;
  cursor: pointer;
}
.orders-table .status-cell__filters-row:hover, .orders-table .status-cell__filters-row--active {
  background-color: #282828;
}
.orders-table .status-cell__filters-row > span {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background-color: #8d8f92;
  border-radius: 50%;
  margin-right: 14px;
}
.orders-table .status-cell__filters-green {
  background-color: #58cd95 !important;
}
.orders-table .status-cell__filters-orange {
  background-color: #fc8619 !important;
}
.orders-table .status-cell__filters-purple {
  background-color: #cd58c3 !important;
}
.orders-table .delivered-cell {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 14px;
  line-height: 130%;
  color: #8d8f92;
}
.orders-table .shares-cell {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 10px;
}

.orders-illustration-wrapper .campaigns-empty-message {
  align-items: center;
  height: calc(100vh - 178px);
}
.create-website-modal {
  padding: 24px;
  width: 500px;
  max-width: 100%;
}
.create-website-modal__title {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 600;
}
.create-website-modal__error {
  margin-bottom: 16px;
  padding: 8px 12px;
  background-color: #ffecec;
  color: #d32f2f;
  border-radius: 4px;
  font-size: 14px;
}
.create-website-modal__form .form-group {
  margin-bottom: 16px;
}
.create-website-modal__form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.create-website-modal__form .form-group .form-control {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}
.create-website-modal__form .form-group .form-control:focus {
  outline: none;
  border-color: #0056b3;
}
.create-website-modal__form .toggle-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.create-website-modal__form .toggle-group label {
  margin-bottom: 0;
}
.create-website-modal__form .toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}
.create-website-modal__form .toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.create-website-modal__form .toggle input:checked + .slider {
  background-color: #0056b3;
}
.create-website-modal__form .toggle input:checked + .slider:before {
  transform: translateX(26px);
}
.create-website-modal__form .toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}
.create-website-modal__form .toggle .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
.create-website-modal__form .form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}
.create-website-modal__form .form-actions .btn {
  padding: 8px 16px;
  border-radius: 4px;
  border: none;
  font-weight: 500;
  cursor: pointer;
}
.create-website-modal__form .form-actions .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.create-website-modal__form .form-actions .btn-primary {
  background-color: #0056b3;
  color: white;
}
.create-website-modal__form .form-actions .btn-primary:hover:not(:disabled) {
  background-color: #004494;
}
.create-website-modal__form .form-actions .btn-secondary {
  background-color: #f1f1f1;
  color: #333;
}
.create-website-modal__form .form-actions .btn-secondary:hover {
  background-color: #e1e1e1;
}
.page-table {
  display: flex;
  height: 100vh;

  .page-table__content {
    flex: 1;
    display: flex;
    flex-direction: column !important;
    position: relative;
    padding-top: 68px;

    .page-header.page-header__with-close-btn {
      left: 0;
    }
  }

  .page-table__content-header {
    display: flex;
    align-items: center;
    margin-left: 50px;
    gap: 12px;

    input {
      width: 100%;
    }
  }
}

.scroll-groups {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  min-height: 50px;
  /*
   Scrollbar
   */
}
.scroll-groups--with-bottom-border {
  border-bottom: 1px solid #e9ecf1;
}
.scroll-groups__children {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  margin-left: -30px;
  padding-left: 20px;
  padding-right: 20px;
}
.scroll-groups__children--no-scroll {
  width: 100%;
  margin-left: unset;
}
.scroll-groups__arrow {
  flex-shrink: 0;
  will-change: transform;
  position: fixed;
  transition: opacity linear 0.2s, z-index linear 0.2s;
  display: flex;
  align-items: center;
  padding: 0 3px;
}
.scroll-groups__arrow-container {
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.0705882353);
  z-index: 5;
  height: 30px;
  width: 30px;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.scroll-groups__arrow--right {
  position: sticky;
  right: 0;
  top: 0;
}
.scroll-groups__arrow--left {
  z-index: 100;
  opacity: 0;
  position: sticky;
  left: 0;
}
.scroll-groups__arrow--left svg {
  transform: rotateY(180deg);
}
.scroll-groups::-webkit-scrollbar {
  width: 1px;
  height: 1px;
}
.scroll-groups::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 0px;
}
.scroll-groups::-webkit-scrollbar-thumb:hover {
  background: transparent;
}
.scroll-groups::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 0px;
  box-shadow: inset 0px 0px 0px 0px transparent;
}
.section-select {
  position: relative;
  display: flex;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  width: calc(100% - 40px);
  margin: 0 20px 27px;
}
.section-select::before {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background-color: #f9f9f9;
}
.section-select__container {
  border-bottom: 0;
  margin: 0;
  padding: 0 !important;
}
.section-select__container .scroll-groups__children {
  padding-left: 0;
  padding-right: 0;
  margin: 0 auto;
}
.section-select__item {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 21px 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #7b7b7b;
  cursor: pointer;
}
.section-select__item:hover {
  color: #221cb6;
}
.section-select__item--active {
  text-shadow: 0 0 0.3px #221cb6;
  color: #221cb6;
}
.section-select__item--active::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #221cb6;
}
.folders__bar {
  margin-bottom: 0;
}
.folders__create-btn {
  display: flex;
  align-self: center;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 7px;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #7B7B7B;
  flex-grow: 0;
  flex-shrink: 0;
  margin-left: 10px;
}
.folders__create-btn--inactive:hover {
  background-color: #eef3ff;
  color: #221cb6;
  cursor: pointer;
}
.folders__create-input {
  width: 133px;
}
.folders__create-input input {
  width: 100%;
  height: 36px;
  border: 1px solid #717171;
  border-radius: 7px;
  padding: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
}
.folders__create-input-btn {
  width: 39px;
  min-width: 39px;
  height: 36px;
  margin-left: 5px;
  padding: 0;
}
.folders__item {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #7b7b7b;
  grid-column-gap: 15px;
  cursor: pointer;
}
.folders__item:has(.folders__item--active-btns) {
  padding: 12px;
}
.folders__item:hover {
  color: #221cb6;
}
.folders__item:hover svg circle[stroke],
.folders__item:hover svg rect[stroke],
.folders__item:hover svg path[stroke] {
  stroke: #221cb6;
}
.folders__item:hover svg circle[fill],
.folders__item:hover svg rect[fill],
.folders__item:hover svg path[fill] {
  fill: #221cb6;
}
.folders__item:hover .folders__item--active-btns {
  visibility: visible;
  opacity: 1;
}
.folders__item--active {
  text-shadow: 0 0 0.3px #221cb6;
  color: #221cb6;
}
.folders__item--active-btns {
  visibility: hidden;
  opacity: 0;
}
.folders__item--active-btns .actions-menu__icon svg circle[stroke],
.folders__item--active-btns .actions-menu__icon svg rect[stroke],
.folders__item--active-btns .actions-menu__icon svg path[stroke] {
  stroke: #BDBDBD;
}
.folders__item--active-btns .actions-menu__icon svg circle[fill],
.folders__item--active-btns .actions-menu__icon svg rect[fill],
.folders__item--active-btns .actions-menu__icon svg path[fill] {
  fill: #BDBDBD;
}
.folders__item--active::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #221cb6;
}
.page-table {
  display: flex;
  height: 100vh;

  .page-table__content {
    flex: 1;
    display: flex;
    flex-direction: column !important;
    position: relative;
    padding-top: 68px;

    .page-header.page-header__with-close-btn {
      left: 0;
    }
  }

  .page-table__content-header {
    display: flex;
    align-items: center;
    margin-left: 50px;
    gap: 12px;

    input {
      width: 100%;
    }
  }
}

.settings-sidebar {
  box-sizing: border-box;
  height: 100vh;
  background-color: #fbfbfb;
}
.settings-sidebar--disabled {
  pointer-events: none;
}
.tabs .scroll-groups__children {
  padding-left: 0;
  padding-right: 0;
}
.tabs__list {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e9ecf1;
  padding: 0 15px;
}
.tabs__tab-title {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 16px;
  color: #8f9199;
  padding-bottom: 12px;
  cursor: pointer;
  white-space: nowrap;
}
.tabs__tab-title:not(.tabs__tab-title:last-child) {
  margin-right: 20px;
}
.tabs__tab-title--active {
  color: #202430;
  border-bottom: 2px solid #221CB6;
}
.tabs__active-content {
  padding: 20px;
}
.wrapper-publisher-settings-billing {
    display: flex;

    .page-content {
        flex: 1;
        display: flex;
        flex-direction: column;

        .page-header {
            position: sticky;
            top: 0;
        }
    }

    .settings-billing {
        flex: 1;

        .page-header {
            position: sticky;
            top: 0;
        }

        .settings-billing-content-wrapper {
            display: flex;
            flex-wrap: wrap;
            grid-gap: 25px;
            margin-top: 28px;
            margin-left: 20px;

            .settings-billing__content-section {
                width: 48%;
                background: #FFFFFF;
                box-shadow: 0px 4px 90px rgba(201, 201, 201, 0.25);
                border-radius: 8px;

                .section-header {
                    padding: 14px 20px 15px 25px;
                    border-bottom: 1px solid #F3F3F3;

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

                        .section-header__left-side {
                            h4 {
                                margin-top: 0;
                                margin-bottom: 6px;
                                color: #000000;
                                font-weight: 600;
                                font-size: 18px;
                            }

                            span {
                                font-size: 12px;
                                color: #8D8F92;
                            }
                        }
                    }
                }

                &.billing-section-content {
                    display: flex;
                    flex-direction: column;

                    .section-header {
                        padding: 29px 15px 29px 29px;

                        .section-header__content {
                            align-items: center;

                            .section-header__left-side {
                                h4 {
                                    margin-bottom: 0;
                                }
                            }

                            .section-header__right-side {
                                .withdraw-btn,
                                .refresh-btn {
                                    background: #EEF3FF;

                                    svg {
                                        margin-right: 0;
                                    }
                                }
                            }
                        }
                    }

                    .section-content {
                        .section-content__item {

                            &:not(:first-child) {
                                margin-top: 24px;
                            }

                            .section-content__item-left-side {
                                h4 {
                                    font-size: 14px;
                                    margin-bottom: 0;
                                }

                                label {
                                    font-size: 14px;
                                    font-weight: 400;
                                    display: block;
                                }

                                .max-amount {
                                    font-size: 10px;
                                    margin-top: 4px;
                                }
                            }

                            .section-content__item-right-side {
                                h2 {
                                    font-size: 14px;
                                    color: #8D8F92;
                                }

                                &.input-content {
                                    display: flex;
                                    align-items: center;
                                    gap: 10px;

                                    .input {
                                        input {
                                            max-width: 80px;
                                        }
                                    }
                                }

                                .non-payment-billing {
                                    font-size: 14px;
                                    color: #8D8F92;
                                    display: flex;
                                    align-items: center;
                                    grid-column-gap: 4px;
                                }
                            }
                        }

                        &.centered-content {
                            flex: 1;
                            display: flex;
                            align-items: center;
                            justify-content: center;

                            .section-content__item-center {
                                justify-content: center;
                                display: flex;
                                flex-direction: column;
                                align-items: center;
                                width: 100%;
                            }
                        }
                    }
                }

                .section-content {
                    padding: 28px 26px 31px 25px;

                    .section-content__item {
                        display: flex;
                        justify-content: space-between;
                        align-items: flex-end;

                        .section-content__item-left-side {
                            h4 {
                                margin-top: 0;
                                margin-bottom: 6px;
                                font-size: 16px;
                                font-weight: 500;
                            }

                            span {
                                font-size: 12px;
                                color: #8D8F92;
                            }

                            p {
                                &.non-payment {
                                    font-size: 14px;

                                    &:last-child {
                                        margin-top: 24px;
                                    }
                                }
                            }
                        }

                        .section-content__item-right-side {
                            h2 {
                                color: #221CB6;
                                font-size: 24px;
                                font-weight: 500;
                                margin: 0;

                                span {
                                    font-size: 14px;
                                }
                            }

                            p {
                                &.non-payment {
                                    font-size: 14px;

                                    &:last-child {
                                        margin-top: 24px;
                                    }
                                }
                            }
                        }

                    }
                }
            }

        }
    }
}

.settings-publisher-billing-table-container {
    width: 100%;
    padding: 0 20px;
    margin-top: 28px;

    .tabs {
        .tabs__list {
            width: 100%;
            border-bottom: 2px solid #F9F9F9;
            padding: 0;

            .tabs__tab-title {
                padding: 10px 20px 20px;
                min-width: 157px;

                &:first-child {
                    text-align: center;
                }

                &:not(.tabs__tab-title:last-child) {
                    margin-right: 0;
                }

                &.tabs__tab-title--active {
                    color: #221CB6;


                    &.stroke-icon {
                        svg {
                            path {
                                stroke: #221CB6;
                            }
                        }
                    }

                    &.fill-icon {
                        svg {
                            path {
                                fill: #221CB6;
                            }
                        }
                    }

                }

                .fill-icon {
                    svg {
                        path {
                            fill: #7B7B7B;
                        }
                    }
                }

                .stroke-icon {
                    svg {
                        path {
                            stroke: #7B7B7B;
                        }
                    }
                }

                svg {
                    margin-right: 4px;
                    margin-bottom: -2px;
                }
            }
        }
    }

    .table {
        font-family: 'Mulish', sans-serif;

        th {
            text-align: left;

            &:last-child {
                text-align: center;
            }
        }

        tr {
            td {
                padding-left: 5px;
                padding-top: 13px;
                padding-bottom: 14px;

                &:first-child {
                    padding-left: 20px;
                }

                &:last-child {
                    padding-right: 20px;
                }

                .receipt-btn {
                    padding: 0;
                    width: 23px;
                    height: 24px;
                    border-radius: 4px;
                    margin: 0 auto;

                    svg {
                        margin-left: 0;
                    }
                }

                &.date-cell {
                    color: #8D8F92;
                    font-size: 14px;
                    font-weight: 400;
                    white-space: pre-line;
                    line-height: 130%;
                }
            }
        }
    }
}

html {
  --right-sidebar-width: 526px;
  --right-sidebar-animation-length: .3s;
}

.right-info-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  z-index: 220;
}
.right-info-sidebar__background {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: #000000;
  opacity: 0.3;
  animation: comeinBackground var(--right-sidebar-animation-length) linear;
}
.right-info-sidebar__sidebar {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: var(--right-sidebar-width);
  background: #FFFFFF;
  box-shadow: 0px 4px 50px rgba(18, 16, 68, 0.09);
  display: flex;
  flex-direction: column;
  animation: comeinSidebar var(--right-sidebar-animation-length) linear;
}
.right-info-sidebar__cross-svg-close {
  position: absolute;
  top: 25px;
  right: 25px;
  cursor: pointer;
}
.right-info-sidebar__header {
  overflow: hidden;
  padding: 19px 76px 18px 18px;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  border-bottom: 1px solid #ECECEC;
  display: flex;
  align-items: center;
}
.right-info-sidebar__header .sidebar-crm-header {
  padding: 0;
  border-bottom: none;
}
.right-info-sidebar__header.no-overflow {
  overflow: visible;
}
.right-info-sidebar__header.no-border {
  border: none;
}
.right-info-sidebar__body {
  flex: 1;
}

@keyframes comeinBackground {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.3;
  }
}
@keyframes comeinSidebar {
  from {
    right: calc(var(--right-sidebar-width) * -1);
  }
  to {
    right: 0;
  }
}
.billing-form-field {
  margin-bottom: 20px;
}
.billing-form-field__label {
  font-weight: 600;
  font-size: 14px;
  color: #8f9199;
  margin-bottom: 10px;
}
.publisher-change-billing-form {
  padding-top: 6px;
}

.change-billing-form {
  padding: 15px 20px 50px 20px;
  display: flex;
}
.change-billing-form__title {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 25px;
}
.change-billing-form__title.no-space {
  margin: 0;
}
.change-billing-form__address {
  max-width: 550px;
  position: relative;
  margin-right: 50px;
}
.change-billing-form__address-grid {
  display: grid;
  grid-template-areas: "name name" "addressLine1 addressLine1" "addressLine2 addressLine2" "city zipCode" "state country" "tax tax" "contactName contactEmail";
  grid-template-rows: repeat(6, auto);
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 13px;
}
.change-billing-form__name {
  grid-area: name;
}
.change-billing-form__addressLine1 {
  grid-area: addressLine1;
}
.change-billing-form__addressLine2 {
  grid-area: addressLine2;
}
.change-billing-form__city {
  grid-area: city;
}
.change-billing-form__zip-code {
  grid-area: zipCode;
}
.change-billing-form__state {
  grid-area: state;
}
.change-billing-form__country {
  grid-area: country;
}
.change-billing-form__tax {
  grid-area: tax;
}
.change-billing-form__contacts {
  margin-top: 25px;
}
.change-billing-form__contacts-grid {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-template-columns: 1fr;
}
.change-billing-form__contacts-grid button {
  height: 48px;
}
.change-billing-form__close-btn {
  cursor: pointer;
}

.settings-billing__payment-method {
  max-width: 480px;
  width: 50%;
}
.settings-billing__payment-method.editing-payment-method {
  max-width: 480px;
  min-height: calc(100vh - 64px);
  display: flex;
  flex: 1;
  flex-direction: column;
}
.settings-billing__payment-method .settings-billing__payment-method-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.settings-billing__payment-method .settings-billing__payment-method-header button {
  width: 54px;
  gap: 0;
  height: 30px;
  border-radius: 6px;
  background-color: #EEF3FF;
}
.settings-billing__payment-method .settings-billing__payment-method-header button:hover {
  background: #D9E3FF;
}
.settings-billing__payment-method .settings-billing__payment-method-content {
  background: #E4EFFF;
  border-radius: 8px;
  padding: 30px;
}
.settings-billing__payment-method .settings-billing__payment-method-content:not(:last-child) {
  margin-bottom: 10px;
}
.settings-billing__payment-method .settings-billing__payment-method-content--hover-paypal {
  cursor: pointer;
}
.settings-billing__payment-method .settings-billing__payment-method-content--hover-paypal:hover {
  background: #d9e3f3;
}
.settings-billing__payment-method .settings-billing__payment-method-content--hover-directDeposit {
  background: #F3F3F3;
}
.settings-billing__payment-method .settings-billing__payment-method-content--hover-stripe {
  background: rgba(52, 36, 235, 0.0588235294);
}
.settings-billing__payment-method .settings-billing__payment-method-content--hover-wise {
  background: #F3FCEE;
}
.settings-billing__payment-method .settings-billing__payment-method-content--coming-soon {
  position: relative;
  opacity: 0.5;
}
.settings-billing__payment-method .settings-billing__payment-method-content--coming-soon .coming-soon {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #8D8B8B;
  font-size: 12px;
  background: #FFFFFF;
  box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.031372549);
  border-radius: 7px;
  padding: 4px 6px;
}
.settings-billing__payment-method .settings-billing__payment-method-content--coming-soon .payment-text-title {
  opacity: 0.3;
}
.settings-billing__payment-method .settings-billing__payment-method-content--coming-soon .payment-text-details.editing-details {
  color: #8F9199 !important;
}
.settings-billing__payment-method .settings-billing__payment-method-content .payment-container {
  display: flex;
  align-items: center;
  grid-column-gap: 27px;
}
.settings-billing__payment-method .settings-billing__payment-method-content .payment-container img {
  width: 67px;
  height: 67px;
}
.settings-billing__payment-method .settings-billing__payment-method-content .payment-container .payment-text .payment-text-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 0;
}
.settings-billing__payment-method .settings-billing__payment-method-content .payment-container .payment-text .payment-text-details {
  font-size: 12px;
  font-weight: 500;
  color: #8F9199;
}
.settings-billing__payment-method .settings-billing__payment-method-content .payment-container .payment-text .payment-text-details.editing-details {
  font-size: 14px;
  color: #5B5E69;
  line-height: 134%;
}

.sidebar-crm__body {
  display: flex;
  flex-direction: column;
}
.sidebar-crm__body .settings-billing__payment-method-content {
  background: #E4EFFF;
  border-radius: 8px;
  padding: 30px;
  max-width: 481px;
  width: 100%;
  margin: 0 auto;
  margin-top: 23px;
}
.sidebar-crm__body .settings-billing__payment-method-content:not(:last-child) {
  margin-bottom: 10px;
}
.sidebar-crm__body .settings-billing__payment-method-content--hover-paypal {
  cursor: pointer;
}
.sidebar-crm__body .settings-billing__payment-method-content--hover-paypal:hover {
  background: #d9e3f3;
}
.sidebar-crm__body .settings-billing__payment-method-content--hover-directDeposit {
  background: #F3F3F3;
}
.sidebar-crm__body .settings-billing__payment-method-content--hover-stripe {
  background: rgba(52, 36, 235, 0.0588235294);
}
.sidebar-crm__body .settings-billing__payment-method-content--hover-wise {
  background: #F3FCEE;
}
.sidebar-crm__body .settings-billing__payment-method-content--coming-soon {
  position: relative;
  opacity: 0.5;
}
.sidebar-crm__body .settings-billing__payment-method-content--coming-soon .coming-soon {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #8D8B8B;
  font-size: 12px;
  background: #FFFFFF;
  box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.031372549);
  border-radius: 7px;
  padding: 4px 6px;
}
.sidebar-crm__body .settings-billing__payment-method-content--coming-soon .payment-text-title {
  opacity: 0.3;
}
.sidebar-crm__body .settings-billing__payment-method-content--coming-soon .payment-text-details.editing-details {
  color: #8F9199 !important;
}
.sidebar-crm__body .settings-billing__payment-method-content .payment-container {
  display: flex;
  align-items: center;
  grid-column-gap: 27px;
}
.sidebar-crm__body .settings-billing__payment-method-content .payment-container img {
  width: 67px;
  height: 67px;
}
.sidebar-crm__body .settings-billing__payment-method-content .payment-container .payment-text .payment-text-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 0;
}
.sidebar-crm__body .settings-billing__payment-method-content .payment-container .payment-text .payment-text-details {
  font-size: 12px;
  font-weight: 500;
  color: #8F9199;
}
.sidebar-crm__body .settings-billing__payment-method-content .payment-container .payment-text .payment-text-details.editing-details {
  font-size: 14px;
  color: #5B5E69;
  line-height: 134%;
}
.sidebar-crm__body .payment-details-description-wrapper {
  margin: 25px 21px auto;
  flex: 1;
}
.sidebar-crm__body .payment-details-description-wrapper .payment-details-description {
  font-size: 16px;
  color: #000000;
}
.sidebar-crm__body .payment-details-description-wrapper .payment-details-input-container {
  margin-top: 34px;
}
.sidebar-crm__body .payment-details-description-wrapper .payment-details-input-container .input-label {
  font-size: 14px;
  color: #8F9199;
  margin-bottom: 10px;
  display: inline-block;
}
.sidebar-crm__body .payment-details-description-wrapper .payment-details-input-container .input input {
  width: 100%;
  height: 48px;
}
.sidebar-crm__body .payment-details-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  bottom: 20px;
  margin: 30px 21px 0;
}
.sidebar-crm__body .payment-details-footer .connect-button {
  max-width: 256px;
  width: 100%;
  height: 47px;
}
.step-create-workspace__row {
  margin-top: 2rem;
}
.step-create-workspace__labels {
  display: flex;
  justify-content: space-between;
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  color: #8f9199;
}
.step-create-workspace__labels--main {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
}
.step-create-workspace__labels--additional {
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
}
.step-create-workspace__input {
  margin-top: 8px;
  height: 48px;
}
.step-create-workspace__button-continue {
  float: right;
  margin-top: 70px;
}


.settings-workspaces .page-header {
  position: sticky;
  top: 0;
  z-index: 10;
}

.create-workspace-step {
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  line-height: unset;
  padding-top: 70px;
}
.create-workspace-step__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.create-workspace-step__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.create-workspace-step__icon {
  background-color: #f9f9f9;
  width: 67px;
  height: 67px;
  border-radius: 50%;
}
.create-workspace-step__icon svg {
  width: 25px;
  height: 25px;
}
.create-workspace-step__title {
  font-weight: 400;
  font-size: 34px;
  margin: 1rem 0 0 0;
}
.create-workspace-step__description {
  margin: 1rem 0 0 0;
}
.create-workspace-step__settings {
  min-width: 600px;
  margin-top: 50px;
}
.invoice-info {
  padding: 32px 70px 120px;
  position: relative;
  width: 850px;
  margin: 0 auto;
}
.invoice-info__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid #f4f4f4;
}
.invoice-info__header-info {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 16px;
  line-height: 20px;
}
.invoice-info__bill-info {
  margin-top: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #f4f4f4;
}
.invoice-info__bill-info-title {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-weight: 600;
  font-size: 48px;
}
.invoice-info__bill-info-content {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.invoice-info__bill-info-sub-title {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 21px;
}
.invoice-info__bill-to-content {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 16px;
  line-height: 22px;
}
.invoice-info__bill-details {
  margin-right: 60px;
}
.invoice-info__bill-details-row {
  width: 220px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.invoice-info__bill-details-label {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 16px;
  line-height: 20px;
}
.invoice-info__bill-details-value {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 16px;
  line-height: 20px;
  color: #8f9199;
}
.invoice-info__cost-grid {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 35px;
}
.invoice-info__cost-grid-title {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 14px;
  line-height: 18px;
  color: #8d8f92;
}
.invoice-info__cost-grid-title--righted {
  text-align: right;
}
.invoice-info__cost-grid-cell {
  margin-top: 5px;
  display: flex;
  align-items: center;
}
.invoice-info__cost-grid-cell--with-border {
  border-bottom: 1px solid #f4f4f4;
}
.invoice-info__cost-grid-cell--righted {
  justify-content: flex-end;
}
.invoice-info__comment {
  margin-top: 22px;
}
.invoice-info__additional-info {
  margin-top: 40px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f4f4f4;
}
.invoice-info__additional-info-label {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-weight: 600;
  color: #1b1e22;
}
.invoice-info__additional-info-value {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  color: #8d8f92;
  margin-left: 6px;
  margin-right: 30px;
}
.settings-members {
  padding-bottom: 20px;
  flex: 1;
}
.settings-members__header-items {
  display: flex;
  gap: 12px;
}
.settings-members__header-search {
  position: relative;
}
.settings-members__header-search input {
  width: 240px;
}
.settings-members__header-search input::placeholder {
  color: #c0c6cd;
}
.settings-members__toogler {
  margin-right: 20px;
}
.settings-members__table {
  margin-top: 13px;
}
.settings-members__table__row {
  height: 80px;
}
.settings-members__table__row--with-hover:hover {
  cursor: pointer;
  background-color: #eef3ff;
}
.settings-members__table__row:not(.settings-members__table__row:last-child) {
  border-bottom: 1px solid #f4f4f4;
}
.settings-members__table__row .table-td:last-child {
  padding-right: 0;
}
.settings-members__table__cell--name {
  display: flex;
  align-items: center;
}
.settings-members__table__cell--name-details {
  display: flex;
  flex-direction: column;
  max-width: 250px;
  margin-left: 13px;
}
.settings-members__table__cell--data {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #8d8f92;
}
.settings-members__table__cell--status {
  padding: 5px;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #ffffff;
  border-radius: 6px;
  flex-grow: 0;
}
.settings-members__table__cell--status--active {
  background-color: #23e771;
}
.settings-members__table__cell--status--expired {
  background-color: #ed483d;
}
.settings-members__table__member-name {
  margin-top: 1px;
  margin-bottom: 2px;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  color: #1b1e22;
}
.settings-members__table__member-email {
  white-space: nowrap;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #8d8f92;
  text-overflow: ellipsis;
  overflow: hidden;
}
.settings-members__table .table-td {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  color: #8d8f92;
  text-align: left;
  font-size: 14px;
}
.settings-members__table .table-td .actions-menu .react-tooltip:not(.react-tooltip--position-fixed) {
  left: -120px !important;
}
.settings-members__table-member-name {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-weight: 600;
  font-size: 14px;
  color: #1b1e22;
  margin-left: 12px;
}
.right-sidebar {
  z-index: 100;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  background: #ffffff;
  box-shadow: 0 4px 50px rgba(18, 16, 68, 0.09);
  padding-top: 29px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.right-sidebar--embedded {
  position: relative;
  z-index: unset;
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: none;
}
.right-sidebar__header {
  border-bottom: 1px solid #f4f4f4;
  padding-bottom: 32px;
}
.right-sidebar__title {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  display: flex;
  align-items: center;
  padding: 0 20px 0 20px;
  line-height: 30px;
  font-size: 24px;
  font-weight: 600;
}
.right-sidebar__subtitle {
  padding: 0 28px;
  margin-top: 20px;
  font-weight: 400;
  font-size: 16px;
  color: #8f8f8f;
  line-height: 125%;
}
.right-sidebar__close-btn {
  margin-right: 16px;
  cursor: pointer;
}
.right-sidebar__close-btn:hover svg circle,
.right-sidebar__close-btn:hover svg path {
  stroke: #c4c6cd;
}
.right-sidebar__close-btn:hover svg rect {
  fill: #c4c6cd;
}
.right-sidebar__footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  padding: 20px 20px 0 20px;
}
.right-sidebar__footer .button {
  padding: 0 10px;
  width: auto;
  min-width: 72px;
  height: 35px;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
}
.right-sidebar__footer .button:first-child {
  margin-right: 12px;
  margin-bottom: 10px;
}
.automation-position-tooltip {
  background-color: #000;
  padding: 12px;
  border-radius: 8px;
}
.automation-position-tooltip__scroll-wrapper {
  display: flex;
  flex-direction: column;
  max-height: 289px;
  overflow-y: auto;
}
.automation-position-tooltip__scroll-wrapper::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.automation-position-tooltip__scroll-wrapper::-webkit-scrollbar-thumb {
  background: #474747;
  border-radius: 30px;
}
.automation-position-tooltip__scroll-wrapper::-webkit-scrollbar-thumb:hover {
  background: #B3AFB3;
}
.automation-position-tooltip__scroll-wrapper::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 0;
  box-shadow: inset 0 0 0 0 #F0F0F0;
}
.automation-position-tooltip__item {
  display: flex;
  justify-content: space-between;
  width: 230px;
  padding: 7px;
  margin-top: 8px;
  background-color: #181818;
  border-radius: 6px;
}
.automation-position-tooltip__item svg {
  cursor: pointer;
}
.radio {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 14px;
  line-height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.radio__field {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.radio__field:checked ~ .radio__checkmark {
  background-color: #fff;
  border: 1px solid #3424eb;
}
.radio__field:checked ~ .radio__checkmark-inner {
  border-radius: 100%;
  background-color: #3424eb;
  background-size: cover;
  display: inline-block;
  position: absolute;
  top: 2px;
  left: 2px;
  bottom: 2px;
  margin: auto;
  width: 12px;
  height: 12px;
}
.radio__checkmark {
  background: #f5f6fa;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: inline-block;
  height: 16px;
  width: 16px;
  border: 1px solid #e3e3e3;
  box-sizing: border-box;
  border-radius: 100%;
}
.radio__checkmark-inner {
  display: none;
}
.invite-member-sidebar {
  padding-top: 20px;
}
.invite-member-sidebar__header {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 14px;
  line-height: 19px;
  color: #928E8D;
  padding: 0 20px 20px 20px;
  border-bottom: 1px solid #F4F4F4;
}
.invite-member-sidebar__field {
  padding: 20px;
  padding-bottom: 0;
}
.invite-member-sidebar__field-label {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-weight: 600;
  font-size: 14px;
  color: #8f9199;
  margin-bottom: 10px;
}
.invite-member-sidebar__field-value {
  font-weight: 800;
  color: #000000;
}
.invite-member-sidebar__emails-field {
  border: 1px solid #DBDFE7;
  border-radius: 8.5px;
  height: 117px;
  padding: 12px;
  overflow-y: auto;
  cursor: text;
}
.invite-member-sidebar__new-email-field {
  height: 24px;
}
.invite-member-sidebar__new-email-field:focus-visible {
  outline: none;
}
.invite-member-sidebar__email-item {
  background: #E9E9E9;
  border-radius: 6px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 5px;
}
.invite-member-sidebar__email-item:not(.invite-member-sidebar__email-item:last-child) {
  margin-bottom: 10px;
}
.invite-member-sidebar__email-remove svg {
  cursor: pointer;
}
.invite-member-sidebar__email-remove svg:hover {
  opacity: 0.8;
}
.invite-member-sidebar__email-text {
  max-width: 200px;
  overflow: hidden;
  margin-right: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 18px;
}
.invite-member-sidebar__role-field .radio {
  display: flex;
  height: auto;
}
.invite-member-sidebar__role-name {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 7px;
}
.invite-member-sidebar__role-desc {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 14px;
  line-height: 17px;
  color: #8f9199;
}
.remove-member-sidebar {
  padding-top: 20px;
}
.remove-member-sidebar__text-content {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 16px;
  line-height: 20px;
  color: #8F8F8F;
  padding: 0 20px;
}
.remove-member-sidebar__member-info {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  color: #221cb6;
  font-size: 12px;
  margin: 6px 20px;
  padding: 6px 8px;
  background: #E9EEFF;
  border-radius: 8.5px;
}
.remove-member-sidebar__member-info-name {
  font-weight: 700;
}
.remove-member-sidebar__recommended-label {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 12px;
  line-height: 15px;
  color: #FC8E0E;
  margin-bottom: 6px;
}
.remove-member-sidebar__remove-options {
  margin: 20px 8px 0 8px;
  padding: 12px;
  border: 1px solid #F4F4F4;
  border-radius: 8px;
}
.remove-member-sidebar__remove-options .radio {
  height: auto;
}
.remove-member-sidebar__remove-options .radio:last-child {
  margin-bottom: 0;
}
.remove-member-sidebar__member-select {
  margin: 10px 0;
}
.edit-member-sidebar {
  padding-top: 15px;
}
.edit-member-sidebar__row {
  padding: 0 20px;
}
.edit-member-sidebar__row:not(.edit-member-sidebar__row:last-child) {
  margin-bottom: 20px;
}
.edit-member-sidebar__field-label {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-weight: 600;
  font-size: 16px;
  color: #8d8f92;
  margin-bottom: 8px;
}
.profile-avatar {
  position: relative;
  width: 105px;
  height: 105px;
}
.profile-avatar__wrapper {
  width: 100%;
  height: 100%;
}
.profile-avatar__image {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  box-shadow: 1px 4px 9px 0 rgba(3, 3, 3, 0.2509803922);
}
.profile-avatar__image .named-avatar__content {
  font-size: 28px;
}
.profile-avatar__edit-svg {
  position: absolute;
  right: 3px;
  bottom: 0;
  cursor: pointer;
}
.profile-avatar__edit-svg-label {
  cursor: pointer;
}
.profile-avatar__input-field {
  display: none;
}
.profile-settings {
  display: flex;
  height: calc(100vh - 68px);
  padding: 26px 30px;
  overflow: auto;
}
.profile-settings__block {
  min-width: 509px;
  margin-bottom: 19px;
  padding: 37px 37px 29px 29px;
  border-radius: 8px;
  box-shadow: 0px 4px 90px 0px rgba(201, 201, 201, 0.2509803922);
  display: flex;
  flex-direction: column;
}
.profile-settings__block-title {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  margin: 0 0 25px 0;
}
.profile-settings__input {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 16px;
  padding: 15px 15px 17px 18px;
  height: 48px;
  width: 100%;
  border: 1px solid #dbdfe7;
  border-radius: 8.5px;
  outline-color: #dbdfe7;
}
.profile-settings__label {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  color: #8f9199;
  margin-bottom: 7px;
}
.profile-settings__personal-info-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 509px;
}
.profile-settings__personal-info {
  height: 273px;
}
.profile-settings__personal-info-content {
  flex: 1;
  display: flex;
  align-items: center;
}
.profile-settings__personal-info-inputs-block {
  margin-left: 43px;
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.profile-settings__username-info {
  padding-top: 24px;
  height: auto;
}
.profile-settings__password-info {
  padding-top: 24px;
  height: 169px;
}
.profile-settings__password-body {
  display: flex;
}
.profile-settings__password-inputs {
  width: 285px;
}
.profile-settings__password-block-right-column {
  flex: 1;
  margin-left: 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile-settings__password-button {
  margin-top: 21px;
  width: 150px;
  height: 48px;
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  padding: 0;
  color: #221CB6;
}
.profile-settings__password-error {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  color: red;
  padding: 8px;
  margin-top: 14px;
  background: #fff7f8;
  border: 1px solid;
  width: 150px;
  border-radius: 8px;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.profile-settings__email-subscriptions-wrapper {
  margin-left: 24px;
  height: 647px;
  width: 509px;
}
.profile-settings__email-subscriptions {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.profile-settings__email-subscription-item:not(:last-child) {
  border-bottom: 1px solid #eeeeee;
}
.profile-settings__email-subscription-item {
  padding-top: 21px;
  padding-bottom: 21px;
  display: flex;
}
.profile-settings__email-subscription-item-header {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 7px;
}
.profile-settings__email-subscription-item-text {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  color: #8f9199;
  font-weight: 400;
  width: 348px;
}
.profile-settings__email-subscription-item-toogler {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.settings-profile {
    .page-header {
        position: sticky;
        top: 0;
    }
}

.confirm-modal {
  padding: 32px 22px 23px;
  width: 442px;
}
.confirm-modal__close-btn {
  top: 32px;
  right: 22px;
}
.confirm-modal__title {
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  color: #1b1e22;
}
.confirm-modal__message {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #8f9199;
}
.confirm-modal__footer {
  display: flex;
  grid-gap: 10px;
  margin-top: 27px;
}
.confirm-modal__footer button {
  flex: 1;
}
.settings-workspaces-table {
  margin-top: 1rem;
}
.settings-workspaces-table__wrapper {
  height: 75vh;
}
.settings-workspaces-table__row {
  height: 60px;
  border-bottom: 1px solid #f5f5f5;
}
.settings-workspaces-table__row--with-hover:hover {
  cursor: pointer;
  background-color: #eef3ff;
}
.settings-workspaces-table__cell--title {
  display: flex;
  align-items: center;
}
.settings-workspaces-table__cell--title-details {
  display: flex;
  flex-direction: column;
  max-width: 250px;
  margin-left: 13px;
}
.settings-workspaces-table__workspace-title {
  margin-top: 1px;
  margin-bottom: 2px;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  color: #1b1e22;
}
.settings-workspaces-table .table-th:first-child {
  width: 2rem;
}
.settings-workspaces-table .table-td {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  color: #8D8F92;
  text-align: left;
  font-size: 14px;
}
.settings-workspaces-table .table-td .actions-menu .react-tooltip:not(.react-tooltip--position-fixed) {
  left: -120px !important;
}
.settings-workspaces-table .table-td:nth-child(2) {
  color: #1E1E20;
  font-weight: 600;
  width: 200px;
  max-width: 200px;
}
.settings-workspaces-table .table-td:last-child {
  width: 0;
}
.settings-workspaces-table .checkbox {
  margin-bottom: 0;
  display: none;
}
.settings-workspaces-table__workspace-title-wrapper {
  display: flex;
  align-items: center;
}
.settings-workspaces-table__workspace-image {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}
.settings-workspaces-table__workspace-title {
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.settings-workspaces-table .actions-tooltip-content svg {
  width: 1rem;
  height: 1rem;
}
.settings-workspaces {
  flex: 1;
}

.settings-workspace__search-and-button {
  display: flex;
  gap: 12px;
}
.settings-workspace__button-text {
  margin-left: 10px;
}
.edit-workspace-sidebar {
  padding-top: 15px;
}
.edit-workspace-sidebar__row {
  padding: 0 20px;
}
.edit-workspace-sidebar__row:not(.edit-workspace-sidebar__row:last-child) {
  margin-bottom: 20px;
}
.edit-workspace-sidebar__field-label {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  font-weight: 600;
  font-size: 16px;
  color: #8d8f92;
  margin-bottom: 8px;
}
.onboarding-flow__background {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.onboarding-flow {
  position: relative;
  z-index: 10;
  flex: 1;
  padding: 50px;
  overflow: auto;
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100vw;
  min-width: 320px;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(10px);
}
@media screen and (max-width: 725px) {
  .onboarding-flow {
    padding: 0;
    background-color: transparent;
  }
}
.onboarding-flow__gradient {
  position: absolute;
  right: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (min-width: 725px) {
  .onboarding-flow__gradient {
    display: none;
  }
}
.onboarding-flow__modal {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 620px;
  height: 696px;
  padding: 35px;
  border-radius: 23px;
  background-color: #fbfbfb;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (max-width: 725px) {
  .onboarding-flow__modal {
    width: 100%;
    height: auto;
    min-height: 100%;
    border-radius: 0;
    background-color: transparent;
  }
}
.onboarding-flow__header {
  margin-top: 75px;
  margin-bottom: 20px;
}
.onboarding-flow__header .onboarding-flow__logo {
  position: relative;
  padding-right: 14px;
}
.onboarding-flow__header .onboarding-flow__logo .respona-new-logo {
  width: 132px;
}
.onboarding-flow__header .onboarding-flow__logo .star-icon {
  position: absolute;
  top: 0;
  right: 0;
}
.onboarding-flow__header .onboarding-flow__logo .star-icon svg {
  width: 11px;
  height: 11px;
}

.onboarding-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.onboarding-step__title {
  margin: 0 auto 58px;
  font-size: 30px;
  font-weight: 600;
  line-height: 124%;
}
.onboarding-step__content {
  flex: 1;
  max-width: 417px;
  width: 100%;
  margin: 0 auto 20px;
}
.onboarding-step__footer {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}
.onboarding-step__options--grid {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 10px;
  justify-content: center;
}

.onboarding-step__one .onboarding-step__title {
  width: 335px;
}

.onboarding-step__one .onboarding-step__footer,
.onboarding-step__two .onboarding-step__footer,
.onboarding-step__three .onboarding-step__footer,
.onboarding-step__four .onboarding-step__footer {
  position: relative;
}
.onboarding-step__one .onboarding-step__footer:before,
.onboarding-step__two .onboarding-step__footer:before,
.onboarding-step__three .onboarding-step__footer:before,
.onboarding-step__four .onboarding-step__footer:before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 61px;
  height: 3px;
  background-color: rgb(37, 31, 182);
  border-radius: 3px;
}

.onboarding-step__two .onboarding-step__title {
  width: 444px;
}
.onboarding-step__two .onboarding-step__footer:before {
  width: 200px;
}

.onboarding-step__three .onboarding-step__title {
  width: 310px;
}
.onboarding-step__three .onboarding-step__content .onboarding-step__textarea textarea {
  min-height: 155px;
  width: 100%;
  padding: 20px 24px;
}
.onboarding-step__three .onboarding-step__content .onboarding-step__textarea textarea::placeholder {
  color: rgb(141, 143, 146);
  line-height: 125%;
  font-size: 16px;
}
.onboarding-step__three .onboarding-step__footer {
  position: relative;
}
.onboarding-step__three .onboarding-step__footer:before {
  width: 400px;
}

.onboarding-step__four .onboarding-step__footer {
  position: relative;
}
.onboarding-step__four .onboarding-step__footer:before {
  width: 100%;
}
.onboarding-step__four .onboarding-step__title {
  margin-bottom: 11px;
}
.onboarding-step__four .onboarding-step__subtitle {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.71);
  max-width: 280px;
  margin: 0 auto 72px;
  line-height: 155%;
}
.onboarding-step__four .onboarding-step__content .onboarding-call {
  border: 1px solid rgba(99, 99, 99, 0.21);
  border-radius: 14px;
  min-height: 180px;
  display: flex;
  align-items: center;
  padding: 26px 34px 26px 26px;
}
.onboarding-step__four .onboarding-step__content .onboarding-call .onboarding-call__card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.onboarding-step__four .onboarding-step__content .onboarding-call .onboarding-call__card__header {
  display: flex;
  align-items: center;
  grid-column-gap: 16px;
  margin-bottom: 30px;
}
.onboarding-step__four .onboarding-step__content .onboarding-call .onboarding-call__card__header .onboarding-call__text .onboarding-call__title {
  font-size: 18px;
  font-weight: 500;
  color: rgb(27, 30, 34);
  text-align: left;
  line-height: 125%;
}
.onboarding-step__four .onboarding-step__content .onboarding-call .onboarding-call__card a {
  width: 100%;
  text-decoration: none;
}
.onboarding-step__four .onboarding-step__content .onboarding-call .onboarding-call__card a button {
  width: 100%;
  height: 52px;
}
.onboarding-step__four .onboarding-step__content .onboarding-call .onboarding-call__card:hover a {
  text-decoration: none;
}

.onboarding-option {
  color: #1B1E22;
  border: 1px solid rgba(99, 99, 99, 0.21);
  cursor: pointer;
  padding: 14px;
  border-radius: 8px;
}
.onboarding-option.selected {
  background-color: rgba(37, 31, 182, 0.11);
  border-color: rgba(37, 31, 182, 0.43);
}
.onboarding-option--big {
  padding: 25px 32px;
  margin-bottom: 15px;
  border-radius: 14px;
  text-align: left;
}
.onboarding-option__title {
  margin-bottom: 2px;
  font-size: 18px;
  font-weight: 500;
}
.onboarding-option__label {
  font-size: 16px;
  font-weight: 500;
}
.onboarding-option__subtitle {
  color: #8F9199;
}
.notification-container {
  display: flex;
  align-items: center;
  max-width: 500px;
  margin-bottom: 7px;
  border-radius: 8px;
  box-shadow: 0 1px 5px #8f9199;
  padding-right: 44px;
  position: relative;
}

.notification {
  height: auto;
  min-height: 44px;
  border-radius: 8px;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform-origin: right;
  color: #fff;
}
.notification-container-icon {
  margin-right: 10px;
}
.notification--with-content {
  font-weight: bold;
  font-size: 16px;
}
.notification--with-actions {
  border-radius: 8px 8px 0 0;
}
.notification__content {
  color: #fff;
  padding: 0 16px 12px;
  font-weight: normal;
  font-size: 14px;
}
.notification__sign {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  margin-right: 8px;
}
.notification--info {
  background-color: #50abf1;
}
.notification--error {
  background-color: #ed483d;
}
.notification--success {
  background-color: #23e771;
}
.notification--warning {
  background-color: #fc8e0e;
}
.notification--announcement {
  background-color: #807beb;
}
.notification--announcement .notification__action-btn {
  background-color: #f0effa !important;
  color: #221CB6 !important;
  opacity: 1;
}
.notification--announcement .notification__action-btn:first-child:not(:last-child) {
  border-right: 1px solid #807beb;
}
.notification__close-btn {
  position: absolute;
  height: 20px;
  right: 15px;
  cursor: pointer;
}
.notification__action-btn-row {
  display: flex;
}
.notification__action-btn {
  display: flex;
  flex: 1;
  border-radius: 0;
  color: #FFFFFF !important;
  background: transparent;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  max-height: 22px;
}
.notification__action-btn:hover {
  opacity: 0.8;
}
.notifications {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 999999;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  white-space: pre-wrap; /* Allows text to wrap within the container */
  word-wrap: break-word; /* Ensures long words do not cause overflow */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

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

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

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

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
  /* 1 */
  overflow: visible;
}

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

button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

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

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type='checkbox'],
[type='radio'] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

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

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}

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

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

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

[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

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

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

.git-sha-tag {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 5px 12px;
  border-top-left-radius: 8px;
  background-color: #dbe2fe;
  max-width: 250px;
  min-height: 42px;

  font-size: 12px;
  line-height: 16px;
  text-align: right;
  white-space: nowrap;

  transition: max-width 300ms ease;
  overflow: hidden;
}

.git-sha-tag--collapsed {
  max-width: 42px;
}

.react-tooltip {
  border-radius: 8px!important;
}

.react-tooltip__keep-hover {
  pointer-events: auto !important;
  &:hover {
    visibility: visible !important;
    opacity: 1 !important;
  }
}

.ml-10 {
  margin-left: 10px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.bold-text {
  font-weight: 600;
}

.text-align-center {
  text-align: center;
}

.text-align-right {
  text-align: right;
}

.__react_component_tooltip {
  &:before {
    display: none;
  }
}

#card-image,
#card-image-sidebar {
  width: 64px;
  height: 42px;
  flex-shrink: 0;
  transform: scale(0.5);
  transition: max-width 200ms ease;
  max-width: 0;
}
#card-image.amex-lg, #card-image.amex-md, #card-image.american-express-md, #card-image.amex, #card-image.dinersclub-lg, #card-image.dinersclub-md, #card-image.diners-club-md, #card-image.dinersclub, #card-image.discover-lg, #card-image.discover-md, #card-image.discover, #card-image.jcb-lg, #card-image.jcb-md, #card-image.jcb, #card-image.mastercard-lg, #card-image.mastercard-md, #card-image.master-card-md, #card-image.mastercard, #card-image.visa-lg, #card-image.visa-md, #card-image.visa,
#card-image-sidebar.amex-lg,
#card-image-sidebar.amex-md,
#card-image-sidebar.american-express-md,
#card-image-sidebar.amex,
#card-image-sidebar.dinersclub-lg,
#card-image-sidebar.dinersclub-md,
#card-image-sidebar.diners-club-md,
#card-image-sidebar.dinersclub,
#card-image-sidebar.discover-lg,
#card-image-sidebar.discover-md,
#card-image-sidebar.discover,
#card-image-sidebar.jcb-lg,
#card-image-sidebar.jcb-md,
#card-image-sidebar.jcb,
#card-image-sidebar.mastercard-lg,
#card-image-sidebar.mastercard-md,
#card-image-sidebar.master-card-md,
#card-image-sidebar.mastercard,
#card-image-sidebar.visa-lg,
#card-image-sidebar.visa-md,
#card-image-sidebar.visa {
  max-width: 128px;
  background: url(/3062718a00456b1c1974d2ba45596cff.png) no-repeat;
  display: inline-block;
}
#card-image.amex-lg,
#card-image-sidebar.amex-lg {
  background-position: 0 0;
  width: 128px;
  height: 84px;
}
#card-image.amex-md, #card-image.american-express-md,
#card-image-sidebar.amex-md,
#card-image-sidebar.american-express-md {
  background-position: -129px 0;
  width: 64px;
  height: 42px;
}
#card-image.amex,
#card-image-sidebar.amex {
  background-position: -130px -44px;
  width: 32px;
  height: 21px;
}
#card-image.dinersclub-lg,
#card-image-sidebar.dinersclub-lg {
  background-position: -195px 0;
  width: 128px;
  height: 84px;
}
#card-image.dinersclub-md, #card-image.diners-club-md,
#card-image-sidebar.dinersclub-md,
#card-image-sidebar.diners-club-md {
  background-position: -325px 0;
  width: 64px;
  height: 42px;
}
#card-image.dinersclub,
#card-image-sidebar.dinersclub {
  background-position: -325px -43px;
  width: 32px;
  height: 21px;
}
#card-image.discover-lg,
#card-image-sidebar.discover-lg {
  background-position: 0 -87px;
  width: 128px;
  height: 84px;
}
#card-image.discover-md,
#card-image-sidebar.discover-md {
  background-position: -130px -87px;
  width: 64px;
  height: 42px;
}
#card-image.discover,
#card-image-sidebar.discover {
  background-position: -130px -132px;
  width: 32px;
  height: 21px;
}
#card-image.jcb-lg,
#card-image-sidebar.jcb-lg {
  background-position: -196px -89px;
  width: 128px;
  height: 84px;
}
#card-image.jcb-md,
#card-image-sidebar.jcb-md {
  background-position: -325px -90px;
  width: 64px;
  height: 42px;
}
#card-image.jcb,
#card-image-sidebar.jcb {
  background-position: -326px -134px;
  width: 32px;
  height: 21px;
}
#card-image.mastercard-lg,
#card-image-sidebar.mastercard-lg {
  background-position: 0 -176px;
  width: 128px;
  height: 84px;
}
#card-image.mastercard-md, #card-image.master-card-md,
#card-image-sidebar.mastercard-md,
#card-image-sidebar.master-card-md {
  background-position: -130px -177px;
  width: 64px;
  height: 42px;
}
#card-image.mastercard,
#card-image-sidebar.mastercard {
  background-position: -131px -221px;
  width: 32px;
  height: 21px;
}
#card-image.visa-lg,
#card-image-sidebar.visa-lg {
  background-position: -196px -177px;
  width: 128px;
  height: 84px;
}
#card-image.visa-md,
#card-image-sidebar.visa-md {
  background-position: -326px -179px;
  width: 64px;
  height: 42px;
}
#card-image.visa,
#card-image-sidebar.visa {
  background-position: -327px -223px;
  width: 32px;
  height: 21px;
}
