.bc-app-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
}
.bc-branch-select .inactive-branch {
  cursor: pointer;
}
.bc-branch-select .branch-title {
  margin-left: 50px;
  font-size: 16px;
  font-weight: 500;
}
.bc-branch-select .branch-title .warning-icon {
  color: #faad14;
}
.bc-branch-select .branch-title .lock-icon {
  color: #ff4d4f;
}
.bc-branch-select .ant-collapse-header {
  align-items: center;
}
.bc-branch-select .ant-collapse-header .ant-collapse-header-text {
  margin-top: 2px;
  color: rgba(0, 0, 0, 0.65);
}
.ui-input-wrapper {
  padding: 0;
  margin: 0;
  border: 0;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  height: max-content;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.ui-input-wrapper, .ui-input-wrapper:before, .ui-input-wrapper:after {
  box-sizing: border-box;
}
.ui-input-wrapper .ui-input-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
}
.ui-input-wrapper .ui-input-label {
  margin-bottom: 11px;
}
.ui-input-wrapper .ui-input-description {
  margin-top: 6px !important;
}
.ui-input-wrapper .ui-input {
  outline: none;
  padding: 0;
  margin: 0;
  border: 0;
  width: 100%;
  font-style: normal;
  font-family: "Roboto", sans-serif;
  transition: all 0.2s ease-in-out;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  transition: all 0.2s ease-in-out;
}
.ui-input-wrapper .ui-input::-webkit-outer-spin-button, .ui-input-wrapper .ui-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.ui-input-wrapper .ui-input::-webkit-outer-spin-button, .ui-input-wrapper .ui-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.ui-input-wrapper .ui-input[type=time]::-webkit-calendar-picker-indicator {
  background: none;
}
.ui-input-wrapper .ui-input::placeholder {
  color: #979797;
}
.ui-input-wrapper .ui-input:-webkit-autofill, .ui-input-wrapper .ui-input:-webkit-autofill:focus {
  transition: background-color 600000s 0s, color 600000s 0s;
  -webkit-box-shadow: 0 0 0px 1000px inherit inset;
}
/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */

.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  

  --pswp-root-z-index: 100000;
  
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;

  --pswp-error-text-color: var(--pswp-icon-color);
}


/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/

.pswp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--pswp-root-z-index);
	display: none;
	touch-action: none;
	outline: 0;
	opacity: 0.003;
	contain: layout style size;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
	display: block;
}

.pswp,
.pswp__bg {
	transform: translateZ(0);
	will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
	background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
	overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
	width: auto;
	height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
	cursor: -webkit-zoom-out;
	cursor: -moz-zoom-out;
	cursor: zoom-out;
}


/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pswp__item {
	/* z-index for fade transition */
	z-index: 1;
	overflow: hidden;
}

.pswp__hidden {
	display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}
.pswp__content > * {
  pointer-events: auto;
}


/*

  PhotoSwipe UI

*/

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}
.pswp__error-msg {
	margin: auto;
	font-size: 1em;
	line-height: 1;
	color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
	opacity: 0.005;
	will-change: opacity;
	transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
	z-index: 10; /* always overlap slide content */
	pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
	opacity: 1;
	pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
	position: relative;
	display: block;
	width: 50px;
	height: 60px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 0.85;
	-webkit-appearance: none;
	-webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
	outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
	background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	display: flex;
  flex-direction: row;
  justify-content: flex-end;
	z-index: 10;

	/* allow events to pass through top bar itself */
	pointer-events: none !important;
}
.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}


/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}


/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}
.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}


/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

.FooterSkeleton {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.FooterSkeleton__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
}
.FooterSkeleton__action.ant-skeleton.ant-skeleton-element {
  flex: 0 0 auto;
}
.FooterSkeleton__action.ant-skeleton.ant-skeleton-element .ant-skeleton-button {
  width: 100%;
  min-width: 0;
  height: 24px;
}
.FooterSkeleton__tasks {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.FooterSkeleton__tasks-title.ant-skeleton.ant-skeleton-element {
  width: 90px;
}
.FooterSkeleton__tasks-title.ant-skeleton.ant-skeleton-element .ant-skeleton-input {
  width: 100%;
  min-width: 0;
  height: 11px;
}
.FooterSkeleton__tasks-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  min-width: 0;
}
.FooterSkeleton__task-row.ant-skeleton.ant-skeleton-element {
  width: 100%;
}
.FooterSkeleton__task-row.ant-skeleton.ant-skeleton-element .ant-skeleton-button {
  width: 100%;
  min-width: 0;
  height: 36px;
  border-radius: 6px;
}
.FooterSkeleton__composer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.FooterSkeleton__integration.ant-skeleton.ant-skeleton-element {
  width: 200px;
  max-width: 100%;
}
.FooterSkeleton__integration.ant-skeleton.ant-skeleton-element .ant-skeleton-input {
  width: 100%;
  min-width: 0;
  height: 12px;
}
.FooterSkeleton__textarea.ant-skeleton.ant-skeleton-element {
  width: 100%;
}
.FooterSkeleton__textarea.ant-skeleton.ant-skeleton-element .ant-skeleton-input {
  width: 100%;
  min-width: 0;
  height: 40px;
  border-radius: 6px;
}
.FooterSkeleton__composer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}
.FooterSkeleton__composer-icon.ant-skeleton.ant-skeleton-element .ant-skeleton-button {
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.FooterSkeleton__composer-send.ant-skeleton.ant-skeleton-element .ant-skeleton-button {
  width: 100%;
  min-width: 0;
  height: 24px;
}
.ActionButtons {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  min-width: 0;
}
.ActionButtons__button {
  flex: 0 0 auto;
  font-size: 11px;
}
.IntegrationSelector {
  display: flex;
  align-items: center;
  gap: 3px;
  min-width: 0;
  font-size: 11px;
}
.IntegrationSelector__label {
  flex: 0 0 auto;
  color: rgba(0, 0, 0, 0.55);
}
.IntegrationSelector__no-integration {
  min-width: 0;
  overflow: hidden;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.45);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.IntegrationSelector__trigger {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: 240px;
  height: auto;
  padding: 0;
  font-size: 11px;
  gap: 3px;
}
.IntegrationSelector__trigger-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.IntegrationSelector__skeleton {
  flex: 1 1 120px;
  min-width: 96px;
  max-width: 180px;
}
.IntegrationSelector__skeleton .ant-skeleton-input {
  width: 100% !important;
  height: 14px !important;
  min-width: 0;
}
.IntegrationSelector__dropdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 250px;
  max-width: min(500px, 100vw - 32px);
  padding: 6px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.IntegrationSelector__search {
  flex: none;
}
.IntegrationSelector__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: min(600px, 80vh);
  margin: 0;
  padding: 0;
  overflow-y: auto;
  list-style: none;
}
.IntegrationSelector__list::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.IntegrationSelector__list::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #b1c4df;
}
.IntegrationSelector__option {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
  padding: 4px 6px;
  font: inherit;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: none;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}
.IntegrationSelector__option:hover {
  background: #f5faff;
}
.IntegrationSelector__option--selected {
  background: #e6f4ff;
}
.IntegrationSelector__option--selected:hover {
  background: #e6f4ff;
}
.IntegrationSelector__option-icon {
  flex: none;
  margin-top: 1px;
}
.IntegrationSelector__option-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.IntegrationSelector__option-name {
  font-size: 12px;
  line-height: 15px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.88);
  overflow-wrap: anywhere;
}
.IntegrationSelector__option-branch {
  font-size: 11px;
  line-height: 14px;
  color: rgba(0, 0, 0, 0.45);
  overflow-wrap: anywhere;
}
.IntegrationSelector__empty {
  padding: 8px 6px;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.45);
  text-align: center;
}
@container message-composer (max-width: 359px) {
  .IntegrationSelector__label {
    display: none;
  }
}
.BranchSelectorSkeleton {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}
.BranchSelectorSkeleton__scroll {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding-bottom: 3px;
  overflow: hidden;
}
.BranchSelectorSkeleton__branch-button.ant-skeleton.ant-skeleton-element {
  flex: 0 0 auto;
}
.BranchSelectorSkeleton__branch-button.ant-skeleton.ant-skeleton-element .ant-skeleton-button {
  width: 100%;
  min-width: 0;
  height: 24px;
}
.BranchSelectorSkeleton__add-button.ant-skeleton.ant-skeleton-element {
  flex: 0 0 auto;
}
.BranchSelectorSkeleton__add-button.ant-skeleton.ant-skeleton-element .ant-skeleton-button {
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.BranchSelector {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}
.BranchSelector__scroll {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding-bottom: 3px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}
.BranchSelector__branch-button {
  flex: 0 0 auto;
  max-width: 200px;
  font-size: 11px;
}
.BranchSelector__branch-name {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.BranchSelector__empty {
  flex: 0 0 auto;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.55);
}
.BranchSelector__add-button {
  flex: 0 0 auto;
}

@media screen and (max-width: 1000px) {
  .BranchSelector__scroll {
    gap: 5px;
    padding-bottom: 2px;
  }
  .BranchSelector__branch-button {
    max-width: 160px;
  }
}
.AddActions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  min-width: 0;
}
.AddActions__button {
  min-width: 0;
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.AddActions__button--full-width {
  grid-column: 1/-1;
}
@media screen and (max-width: 560px) {
  .AddActions {
    grid-template-columns: 1fr;
  }
  .AddActions__button {
    grid-column: 1/-1;
  }
}
.AddFileModal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.AddFileModal__dragger {
  padding: 12px 0;
}
.AddFileModal__helper {
  font-size: 12px;
}
.AddFileModal__files-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 240px;
  overflow-y: auto;
}
.AddFileModal__file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 4px 8px;
  background: #fafafa;
  border-radius: 4px;
}
.AddFileModal__file-name {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 1;
}
.CheckboxSection {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.CheckboxSection__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  min-width: 0;
}
.CheckboxSection__title {
  margin: 0;
  overflow: hidden;
  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
  color: rgba(0, 0, 0, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.CheckboxSection__controls {
  display: flex;
  flex: none;
  align-items: center;
  gap: 2px;
}
.CheckboxSection__control {
  height: auto;
  padding: 0 4px;
  font-size: 10px;
  line-height: 14px;
}
.CheckboxSection__list {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.CheckboxSection__row {
  min-width: 0;
}
.CheckboxSection__row-label {
  overflow: hidden;
  font-size: 11px;
  line-height: 14px;
  color: rgba(0, 0, 0, 0.88);
  overflow-wrap: anywhere;
}
.LeadCard {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
}
.LeadCard__grid {
  display: grid;
  grid-template-columns: minmax(224px, 250px) minmax(520px, 1fr) minmax(200px, 230px);
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
.LeadCard--without-lead-list .LeadCard__grid {
  grid-template-columns: minmax(520px, 1fr) minmax(300px, 360px);
}
.LeadCard__lead-list-column, .LeadCard__user-details-column {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #fff;
}
.LeadCard__lead-list-column {
  border-right: 1px solid #d9d9d9;
}
.LeadCard__user-details-column {
  border-left: 1px solid #d9d9d9;
}
.LeadCard__drawer .ant-drawer-body {
  display: flex;
  min-height: 0;
  overflow: hidden;
  padding: 0;
}
.LeadCard__drawer-header {
  padding: 4px !important;
}
.LeadCard__drawer-header .ant-drawer-title {
  font-size: 14px !important;
}
.LeadCard > .LeadCard__drawer-root.ant-drawer {
  position: absolute;
}
@media screen and (max-width: 1350px) {
  .LeadCard__grid {
    grid-template-columns: minmax(192px, 224px) minmax(520px, 1fr) minmax(260px, 320px);
  }
  .LeadCard--without-lead-list .LeadCard__grid {
    grid-template-columns: minmax(520px, 1fr) minmax(260px, 320px);
  }
}
@media screen and (max-width: 1200px) {
  .LeadCard__grid {
    grid-template-columns: minmax(520px, 1fr) minmax(260px, 320px);
  }
  .LeadCard__lead-list-column {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .LeadCard__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .LeadCard__user-details-column {
    display: none;
  }
}
.LayoutLogin {
  min-height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.LayoutLogin .ant-layout-footer {
  padding: 0;
}
.LayoutLogin__header {
  background: linear-gradient(90deg, #6767fd, #4040c4, #0f0f93);
  padding: 0 16px;
  height: 70px;
}
@media (min-width: 1320px) {
  .LayoutLogin__header {
    padding: 0 40px;
  }
}
.LayoutLogin__header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.LayoutLogin__header-left {
  display: flex;
  align-items: center;
  gap: 32px;
}
.LayoutLogin__logo {
  display: flex;
  align-items: center;
}
.LayoutLogin__logo img {
  width: 80px;
  height: 80px;
  margin-top: 10px;
}
.LayoutLogin__header-nav {
  display: none;
  gap: 20px;
  margin-left: 40px;
}
@media (min-width: 1320px) {
  .LayoutLogin__header-nav {
    display: flex;
  }
}
.LayoutLogin__header-nav-link {
  color: #fff;
  font-weight: 600;
}
.LayoutLogin__header-nav-link:hover {
  color: rgba(255, 255, 255, 0.85);
}
.LayoutLogin__header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 1320px) {
  .LayoutLogin__header-actions {
    gap: 60px;
  }
}
.LayoutLogin__social-links {
  display: none;
}
@media (min-width: 1320px) {
  .LayoutLogin__social-links {
    display: flex;
  }
}
.LayoutLogin__auth-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.LayoutLogin__auth-btn {
  background: #fff;
  color: #2a4ae0;
  font-weight: 500;
}
.LayoutLogin__auth-btn--active {
  color: #fff;
  background: #1409b7;
}
.LayoutLogin__burger-menu {
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 18px;
}
@media (min-width: 1320px) {
  .LayoutLogin__burger-menu {
    display: none;
  }
}
.LayoutLogin__content {
  padding: 20px 16px;
  flex: 1 1 auto;
}
@media (min-width: 1320px) {
  .LayoutLogin__content {
    padding: 20px 40px;
  }
}
.LayoutLogin__breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
}
.LayoutLogin__content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  position: relative;
}
.LayoutLogin__footer {
  background: #1a1a91;
  color: #fff;
  padding: 0;
}
.LayoutLogin__footer-columns-desktop {
  display: none;
}
@media (min-width: 1320px) {
  .LayoutLogin__footer-columns-desktop {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 40px;
  }
}
.LayoutLogin__footer-columns-inner {
  display: flex;
  gap: 32px;
}
.LayoutLogin__footer-columns-mobile {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 16px;
}
@media (min-width: 1320px) {
  .LayoutLogin__footer-columns-mobile {
    display: none;
  }
}
.LayoutLogin__footerCol {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.LayoutLogin__footer-brand-logo {
  display: block;
  height: 126px;
  width: 150px;
}
.LayoutLogin__footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 16px;
  background-color: #0a0a62;
  position: relative;
}
@media (min-width: 1320px) {
  .LayoutLogin__footer-bottom {
    padding: 40px;
  }
}
.LayoutLogin__footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 1320px) {
  .LayoutLogin__footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.LayoutLogin__footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.LayoutLogin__footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
}
.LayoutLogin__footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.LayoutLogin__footer-version {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1320px) {
  .LayoutLogin__footer-version {
    justify-content: space-between;
    text-align: right;
  }
}
.LayoutLogin__app-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1320px) {
  .LayoutLogin__app-links {
    flex-direction: row;
    gap: 20px;
  }
}
.LayoutLogin__app-link {
  display: flex;
}
.LayoutLogin__app-link img {
  display: block;
  width: 120px;
  height: auto;
}
.LayoutLogin__footer-dev-text {
  font-weight: 600;
  color: #fff;
}
.LayoutLogin__circles-wrapper {
  display: none;
}
@media (min-width: 1320px) {
  .LayoutLogin__circles-wrapper {
    display: block;
    position: absolute;
    right: calc(50% - 300px);
    top: 0;
    z-index: 1;
    width: 600px;
    height: 206px;
    overflow: hidden;
  }
}
.LayoutLogin__circles-group {
  position: absolute;
  right: calc(50% - 300px);
  top: -250px;
  height: 600px;
  width: 600px;
}
.LayoutLogin__footer-decor-logo {
  display: none;
}
@media (min-width: 1320px) {
  .LayoutLogin__footer-decor-logo {
    display: block;
    position: absolute;
    right: calc(50% - 100px);
    top: 0;
    height: 200px;
    width: 200px;
  }
}

.RegisterHint {
  display: none;
  position: absolute;
  align-items: flex-start;
  background: linear-gradient(180deg, #4b6fff 0%, #001a99 100%);
  color: #fff;
  padding: 20px 24px;
  border-radius: 12px;
  max-width: 280px;
  box-shadow: 0 8px 20px rgba(0, 26, 153, 0.2);
  right: calc(50% - 550px);
  top: 300px;
}
@media (min-width: 1320px) {
  .RegisterHint {
    display: inline-flex;
  }
}
.RegisterHint__icon {
  position: absolute;
  top: -12px;
  left: -12px;
  font-size: 20px;
  color: #4b6fff;
  transform: rotate(-20deg);
  background: #fff;
  border-radius: 50%;
  padding: 3px;
}
.RegisterHint__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.RegisterHint__title {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  margin: 0;
}
.RegisterHint__text {
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.9;
  margin: 0;
}

.LogoSpace {
  display: flex;
  align-items: center;
  gap: 16px;
}
.LogoSpace__link {
  display: flex;
  align-items: center;
}
.LogoSpace__link img {
  width: 24px;
  height: 24px;
  border-radius: 5px;
}

.NavigationColumn h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}
.NavigationColumn ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.NavigationColumn ul li {
  font-size: 14px;
  margin-bottom: 6px;
}
.NavigationColumn ul li a {
  color: #c8c8e0;
}
.NavigationColumn ul li a:hover {
  color: #fff;
}

.ContactInformation h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}
.ContactInformation__details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  color: #c8c8e0;
  font-size: 14px;
}

.LegalInformation h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}
.LegalInformation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.LegalInformation ul li {
  font-size: 14px;
  margin-bottom: 6px;
}
.LegalInformation ul li a {
  color: #c8c8e0;
}
.LegalInformation ul li a:hover {
  color: #fff;
}
.bc-billing-blocked-stub {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 60vh;
  padding: 24px;
  background: #f5f5f5;
}
.bc-billing-blocked-stub__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: min(100%, 460px);
  padding: 28px 24px;
  text-align: center;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
}
.bc-billing-blocked-stub__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 48px;
  height: 48px;
  color: #faad14;
  font-size: 24px;
  background: #fff7e6;
  border: 1px solid #ffd591;
  border-radius: 10px;
}
.bc-billing-blocked-stub__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.bc-billing-blocked-stub__title {
  margin: 0;
  color: rgba(0, 0, 0, 0.88);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}
.bc-billing-blocked-stub__description {
  max-width: 360px;
  margin: 0;
  color: rgba(0, 0, 0, 0.55);
  font-size: 13px;
  line-height: 20px;
}
.bc-billing-blocked-stub__hints {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 360px;
  margin: 0;
  padding: 16px 0 0;
  list-style: none;
  border-top: 1px solid #f0f0f0;
}
.bc-billing-blocked-stub__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 12px;
  line-height: 16px;
  text-align: left;
}
.bc-billing-blocked-stub__hint-icon {
  flex: none;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
}
.bc-billing-status-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 40px 12px 16px;
  background: #fff2cc;
  color: #1e1e1e;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  line-height: 1.5;
  text-align: center;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.bc-billing-status-banner--visible {
  transform: translateY(0);
  opacity: 1;
}
.bc-billing-status-banner__icon {
  font-size: 16px;
}
.bc-billing-status-banner__text {
  color: #1e1e1e;
}
.bc-billing-status-banner__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: none;
  background: transparent;
  color: rgba(30, 30, 30, 0.65);
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.bc-billing-status-banner__close:hover {
  color: #1e1e1e;
}

/*# sourceMappingURL=main~1.21b5646e.css.map*/