.loader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.loader__spinner {
  width: 36px;
  height: 36px;
  border: 4px solid #848D9E;
  border-top-color: #304EF2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.center-screen-loader {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  z-index: 1000;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animation-flat-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  /* Скрываем скроллбары */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}
.animation-flat-list::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}
.animation-flat-list--horizontal {
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 10px;
}
.animation-flat-list__loader {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
}
.animation-flat-list__spinner {
  width: 24px;
  height: 24px;
  border: 3px solid #848D9E;
  border-top-color: #304EF2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.animation-flat-list--horizontal .animation-flat-list-item {
  flex-shrink: 0;
}
.animation-flat-list-item--no-animation {
  opacity: 1;
  transform: none;
}
.animation-flat-list-item--animating {
  opacity: 0;
  transform: translateY(10px) translateX(3.33px);
  animation: fadeInUp 0.25s ease forwards;
}
.animation-flat-list-item--visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px) translateX(3.33px);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.text-bold {
  color: #282F3F;
  font-family: 'Inter-Bold';
  font-size: 16px;
}

.text-medium {
  color: #282F3F;
  font-family: 'Inter-Medium';
  font-size: 16px;
}

.text-regular {
  color: #282F3F;
  font-family: 'Inter-Regular';
  font-size: 14px;
}

.text-description {
  color: #848D9E;
  font-family: 'Inter-Regular';
  font-size: 14px;
}

.accordion-item {
  border-radius: 16px !important;
  background-color: #FFFFFF;
  overflow: hidden;
  border: none;
}
.accordion-item--active .accordion-item__header {
  background-color: rgba(0, 0, 0, 0.02);
}
.accordion-item__header {
  width: 100%;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s;
}
.accordion-item__header:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
.accordion-item__inner {
  flex: 1;
}
.accordion-item__text-container {
  display: flex;
  align-items: center;
}
.accordion-item__title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #333333;
}
.accordion-item__icon {
  width: 24px;
  height: 24px;
  margin-left: 16px;
  flex-shrink: 0;
}
.accordion-item__icon img {
  width: 100%;
  height: 100%;
}
.accordion-item__body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
}
.accordion-item__body--active {
  max-height: 500px;
  padding: 0 16px 16px 16px;
  opacity: 1;
}
.accordion-item__body-text {
  line-height: 1.5;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.back-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.back-button:hover {
  opacity: 0.8;
}
.back-button:active {
  opacity: 0.6;
}

.button {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  gap: 10px;
  height: 56px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: opacity 0.5s ease;
}
.button:hover:not(.button--disabled):not(.button--loading) {
  opacity: 0.9;
}
.button:active:not(.button--disabled):not(.button--loading) {
  opacity: 0.8;
}
.button--primary {
  background: #304EF2;
}
.button--outline {
  background: transparent;
  border: 1px solid #304EF2;
}
.button--outline .button__title {
  color: #304EF2;
}
.button--outline .button__loader {
  border-color: #304EF2;
  border-top-color: transparent;
}
.button--small {
  height: 32px;
  padding: 6px 12px;
}
.button--flex {
  width: 100%;
}
.button--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.button--loading {
  cursor: wait;
}
.button__title {
  font-family: 'Inter-Medium', 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: -0.5px;
  color: #FFFFFF;
}
.button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.button__loader {
  width: 16px;
  height: 16px;
  border: 2px solid #FFFFFF;
  border-top-color: transparent;
  border-radius: 50%;
  animation: button-spin 0.8s linear infinite;
  flex-shrink: 0;
}
@keyframes button-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.input {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.input__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 16px;
  gap: 10px;
  width: 100%;
  height: 56px;
  background: #FFFFFF;
  border-radius: 100px;
  box-sizing: border-box;
}
.input__field {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Inter-Regular', 'Inter', sans-serif;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.5px;
  color: #282F3F;
}
.input__field::placeholder {
  color: #848D9E;
}
.input__clear {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.input__clear:hover {
  opacity: 0.7;
}
.input__clear img {
  width: 24px;
  height: 24px;
}

.input-password {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.input-password__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 16px;
  gap: 10px;
  width: 100%;
  height: 56px;
  background: #FFFFFF;
  border-radius: 100px;
  box-sizing: border-box;
}
.input-password__field {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Inter-Regular', 'Inter', sans-serif;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.5px;
  color: #282F3F;
}
.input-password__field::placeholder {
  color: #848D9E;
}
.input-password__field::-ms-reveal,
.input-password__field::-ms-clear {
  display: none;
}
.input-password__field::-webkit-credentials-auto-fill-button {
  visibility: hidden;
}
.input-password__toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.input-password__toggle:hover {
  opacity: 0.7;
}
.input-password__toggle img {
  width: 24px;
  height: 24px;
}

.input-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.input-phone__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 16px;
  gap: 10px;
  width: 100%;
  height: 56px;
  background: #FFFFFF;
  border-radius: 100px;
  box-sizing: border-box;
}
.input-phone__field {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Inter-Regular', 'Inter', sans-serif;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.5px;
  color: #282F3F;
}
.input-phone__field::placeholder {
  color: #848D9E;
}
.input-phone__clear {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.input-phone__clear:hover {
  opacity: 0.7;
}
.input-phone__clear img {
  width: 24px;
  height: 24px;
}

.main-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  position: relative;
  padding-bottom: 10px;
}
.main-menu__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0;
  gap: 8px;
  height: 30px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.main-menu__item:hover {
  opacity: 0.7;
}
.main-menu__item--active .main-menu__item-title {
  color: #333333;
}
.main-menu__item-title {
  font-family: 'Inter-Regular';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: -0.005em;
  color: #333333;
  white-space: nowrap;
}
.main-menu__indicator {
  position: absolute;
  bottom: 0;
  height: 3px;
  background: #304EF2;
  border-radius: 100px;
  transition: left 0.3s ease, width 0.5s ease;
}
.main-menu--vertical {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding-bottom: 0;
}
.main-menu--vertical .main-menu__item {
  width: 100%;
  padding-top: 16px;
  padding-bottom: 4px;
  height: auto;
  border-bottom: 1px solid #FFFFFF;
}
.main-menu--vertical .main-menu__item:last-child {
  border-bottom: none;
}
.main-menu--vertical .main-menu__item-title {
  font-size: 28px;
  line-height: 34px;
}
.main-menu--vertical .main-menu__indicator {
  border-radius: 100px;
  transition: left 0.3s ease, width 0.5s ease, top 0.7s ease;
}

.menu-item {
  border-radius: 100px;
  background-color: #FFFFFF;
  height: 56px;
  display: flex;
  align-items: center;
  border: 1px solid #FFFFFF;
  cursor: pointer;
  transition: border-color 0.5s ease, opacity 0.5s ease;
}
.menu-item:hover {
  opacity: 0.8;
}
.menu-item:active {
  opacity: 0.6;
}
.menu-item--active {
  border-color: #304EF2;
}
.menu-item__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-right: 8px;
  width: 100%;
  overflow: hidden;
}
.menu-item__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding-left: 4px;
  flex: 1;
  min-width: 0;
}
.menu-item__icon-block {
  border-radius: 100px;
  width: 48px;
  height: 48px;
  background-color: #EFF2F7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.menu-item__icon {
  width: 24px;
  height: 24px;
}
.menu-item__text-container {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.menu-item__title {
  font-family: 'Inter-Medium', 'Inter', sans-serif;
  color: #282F3F;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menu-item__icons-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: 8px;
}
.menu-item__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.5s ease;
}
.menu-item__icon-btn:hover {
  opacity: 0.7;
}
.menu-item__icon-btn img {
  width: 24px;
  height: 24px;
}
.menu-item-wrapper--expanded {
  background-color: #FFFFFF;
  border-top-left-radius: 45px;
  border-top-right-radius: 45px;
}

.menu-select-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.mob-sub-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  padding: 0;
  gap: 10px;
  width: 100%;
  overflow: hidden;
}
.mob-sub-menu__item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 10px;
  flex: 1 1 calc(33.333% - 7px);
  max-width: calc(25% - 8px);
  min-width: calc(33.333% - 7px);
  min-height: 88px;
  background: #FFFFFF;
  border-radius: 16px;
  cursor: pointer;
  transition: border-color 0.5s ease, background-color 0.7s ease;
  border: 1px solid transparent;
}
.mob-sub-menu__item--active {
  border: 1px solid #304EF2;
}
.mob-sub-menu__item--active .mob-sub-menu__icon-wrapper {
  background: #304EF2;
}
.mob-sub-menu__item--active .mob-sub-menu__icon {
  filter: brightness(0) invert(1);
}
.mob-sub-menu__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 8px;
  width: 100%;
}
.mob-sub-menu__icon-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #EFF2F7;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.5s ease;
}
.mob-sub-menu__icon {
  width: 24px;
  height: 24px;
  transition: filter 0.5s ease;
}
.mob-sub-menu__title {
  font-family: 'Inter-Regular', 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: -0.005em;
  text-align: center;
  color: #333333;
  white-space: nowrap;
}
/* При ширине > 375px показываем 4 элемента в строке */
@media (min-width: 400px) {
  .mob-sub-menu__item {
    flex: 1 1 calc(25% - 8px);
    min-width: calc(25% - 8px);
    max-width: calc(20% - 8px);
  }
}
@media (min-width: 600px) {
  .mob-sub-menu__item {
    flex: 1 1 calc(20% - 8px);
    min-width: calc(20% - 8px);
    max-width: calc(16.666% - 9px);
  }
}
@media (min-width: 800px) {
  .mob-sub-menu__item {
    flex: 1 1 calc(16.666% - 9px);
    min-width: calc(16.666% - 9px);
  }
}

.select-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.select-list__item {
  width: 100%;
  cursor: pointer;
  transition: opacity 0.5s ease;
}
.select-list__item:hover {
  opacity: 0.8;
}
.select-list__item:active {
  opacity: 0.6;
}
.select-list-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 14px;
  border: 1px solid transparent;
  transition: border-color 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}
.select-list-item--active {
  border-color: #304EF2;
}
.select-list-item__row {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
}
.select-list-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.select-list-item__icon img {
  width: 24px;
  height: 24px;
}
.select-list-item__text-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 95%;
}
.select-list-item__text-block--with-right {
  width: 85%;
}
.select-list-item__header {
  font-family: 'Inter-Regular', 'Inter', sans-serif;
  font-size: 12px;
  text-align: left;
  color: #282F3F;
}
.select-list-item__title {
  font-family: 'Inter-Medium', 'Inter', sans-serif;
  font-size: 16px;
  text-align: left;
  color: #282F3F;
}

.select-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.select-button--horizontal {
  flex-direction: row;
  overflow-x: auto;
}
.select-button--horizontal::-webkit-scrollbar {
  display: none;
}
.select-button__item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  height: 32px;
  border-radius: 100px;
  border: none;
  background-color: #FFFFFF;
  color: #333333;
  font-family: 'Inter-Regular';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: -0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.select-button__item:hover {
  opacity: 0.8;
}
.select-button__item--active {
  background-color: #282F3F;
  color: #FFFFFF;
}

.slide-switch {
  display: flex;
  width: 100%;
}
.slide-switch__container {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  height: 45px;
  background-color: transparent;
  border-radius: 50px;
  border: 1px solid #848D9E;
  overflow: hidden;
}
.slide-switch__indicator {
  position: absolute;
  height: 100%;
  background-color: #282F3F;
  border-radius: 45px;
  top: 0;
  left: 0;
  transition: transform 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
.slide-switch__indicator--no-transition {
  transition: none;
}
.slide-switch__element {
  flex: 1;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
  padding: 0 16px;
}
.slide-switch__element:hover {
  opacity: 0.8;
}
.slide-switch__text {
  font-family: 'Inter-Regular', 'Inter', sans-serif;
  font-size: 14px;
  color: #848D9E;
  transition: color 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
.slide-switch__element--active .slide-switch__text {
  color: #FFFFFF;
}

.switch {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.switch--disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.switch__track {
  position: relative;
  width: 50px;
  height: 32px;
  border-radius: 16px;
  background-color: #848D9E;
  transition: background-color 0.3s ease;
  padding: 2px;
  box-sizing: border-box;
}
.switch__track--active {
  background-color: #304EF2;
}
.switch__thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #FFFFFF;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.switch__thumb--active {
  transform: translateX(18px);
}

.swipe-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
  filter: none;
}
.swipe-modal--visible {
  opacity: 1;
}
.swipe-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #252525;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s ease;
}
.swipe-modal__overlay--visible {
  opacity: 0.8;
}
.swipe-modal__panel {
  position: relative;
  width: 426px;
  height: 100%;
  background: #FFFFFF;
  border-radius: 20px 0 0 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s ease;
}
.swipe-modal__panel--visible {
  transform: translateX(0);
}
.swipe-modal__header {
  position: absolute;
  top: 0;
  right: 20px;
  z-index: 10;
  padding: 30px 0 0 30px;
  background: transparent;
  display: flex;
}
.swipe-modal__close {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 6px;
}
.swipe-modal__close:hover {
  background-color: #EFF2F7;
}
.swipe-modal__close_img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  padding: 6px;
}
.swipe-modal__close_img_light {
  width: 32px;
  height: 32px;
  background: transparent;
  border-radius: 6px;
  padding: 6px;
  transition: background 0.3s ease;
}
.swipe-modal__close_img_light:hover {
  background: #FFFFFF;
}
.swipe-modal__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 70px;
  padding-bottom: 40px;
}
.swipe-modal__body--centered {
  justify-content: center;
  align-items: center;
}
.swipe-modal__image {
  width: 386px;
  height: 290px;
  border-radius: 20px;
  overflow: hidden;
}
.swipe-modal__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}
.swipe-modal__content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.swipe-modal__content--centered {
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .swipe-modal__panel {
    width: 100%;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
    touch-action: pan-y;
  }
  .swipe-modal__panel--visible {
    transform: translateY(40px);
  }
}

.time-input {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 140px;
}
.time-input__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.time-input__input {
  font-size: 28px;
  font-family: 'Inter-Bold';
  color: #333333;
  width: 60px;
  text-align: center;
  padding: 8px 0;
  border: none;
  background: transparent;
  outline: none;
}
.time-input__input::-webkit-outer-spin-button,
.time-input__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.time-input__input[type='number'] {
  -moz-appearance: textfield;
}
.time-input__separator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 16px;
  margin: 0 12px;
}
.time-input__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #282F3F;
  margin: 6px 0;
}
.time-input__button {
  width: 40px;
  height: 48px;
  border-radius: 50%;
  background-color: #EFF2F7;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease;
}
.time-input__button:hover {
  background-color: #dee4ef;
}
.time-input__button:active {
  background-color: #cdd6e6;
}
.time-input__button-text {
  font-family: 'Inter-Bold';
  font-size: 28px;
  color: #282F3F;
  line-height: 1;
}

.custom-calendar {
  width: 100%;
  max-width: 350px;
  background: #fff;
  border: none;
  font-family: 'Inter-Medium';
  border-radius: 12px;
  padding: 16px;
}
.custom-calendar .react-calendar__navigation {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.custom-calendar .react-calendar__navigation button {
  min-width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333333;
  font-size: 18px;
  font-family: 'Inter-Medium';
  border-radius: 8px;
  transition: background-color 0.2s;
}
.custom-calendar .react-calendar__navigation button:hover {
  background-color: #f0f0f0;
}
.custom-calendar .react-calendar__navigation button:disabled {
  color: #848D9E;
  cursor: not-allowed;
}
.custom-calendar .react-calendar__navigation .react-calendar__navigation__label {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.custom-calendar .react-calendar__month-view__weekdays {
  text-align: center;
  font-size: 12px;
  color: #848D9E;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.custom-calendar .react-calendar__month-view__weekdays abbr {
  text-decoration: none;
}
.custom-calendar .react-calendar__month-view__days {
  display: grid !important;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.custom-calendar .react-calendar__tile {
  max-width: initial;
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #333333;
  font-size: 14px;
  font-family: 'Inter-Medium';
  border-radius: 8px;
  transition: background-color 0.2s, color 0.2s;
}
.custom-calendar .react-calendar__tile:hover {
  background-color: #f0f0f0;
}
.custom-calendar .react-calendar__tile:disabled {
  color: #848D9E;
  cursor: not-allowed;
  background: none;
}
.custom-calendar .react-calendar__tile--now {
  background: #f0f0f0;
  color: #304EF2;
}
.custom-calendar .react-calendar__tile--active,
.custom-calendar .react-calendar__tile--hasActive {
  background: #304EF2 !important;
  color: #FFFFFF !important;
}
.custom-calendar .react-calendar__tile--active:hover,
.custom-calendar .react-calendar__tile--hasActive:hover {
  background: #0e2fe1 !important;
}
.custom-calendar .react-calendar__tile--range {
  background: rgba(48, 78, 242, 0.2);
  color: #304EF2;
}
.custom-calendar .react-calendar__tile--rangeStart {
  background: #304EF2 !important;
  color: #FFFFFF !important;
  border-radius: 8px 0 0 8px;
}
.custom-calendar .react-calendar__tile--rangeEnd {
  background: #304EF2 !important;
  color: #FFFFFF !important;
  border-radius: 0 8px 8px 0;
}
.custom-calendar .react-calendar__tile--rangeBothEnds {
  border-radius: 8px;
}
.custom-calendar .react-calendar__month-view__days__day--weekend {
  color: #dc3545;
}
.custom-calendar .react-calendar__month-view__days__day--neighboringMonth {
  color: #848D9E;
}

.date-picker-row {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.date-picker-row__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 32px;
  padding-right: 32px;
}
.date-picker-row__arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #333333;
  border-radius: 8px;
  transition: background-color 0.2s, color 0.2s;
}
.date-picker-row__arrow:hover {
  background-color: #f0f0f0;
}
.date-picker-row__arrow:active {
  color: #304EF2;
}
.date-picker-row__value-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 140px;
}

.main-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 100%;
}
.main-modal__icon {
  width: 120px;
  height: 120px;
}
.main-modal__spinner {
  width: 120px;
  height: 120px;
  animation: spin 3s linear infinite;
}
.main-modal__spinner img {
  width: 100%;
  height: 100%;
}
.main-modal__text {
  padding: 24px 0 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
.main-modal__buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animated-page {
  animation: fadeIn 0.3s ease-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-header__main {
  position: relative;
  width: 100%;
  height: 56px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 10px;
  margin-bottom: 20px;
}
.auth-header__back {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.auth-header__title {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 40px;
}

.auth-call {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  gap: 12px;
  max-width: 420px;
  padding: 40px 0 40px 0;
}
.auth-call__logo_img {
  width: 120px;
  height: 120px;
}
.auth-call__phone_a {
  width: 100%;
  text-decoration: none;
}
.auth-call__logo_loader {
  width: 150px;
  height: 150px;
  animation: auth-call-rotate-scale 5s ease-in-out infinite;
}
@keyframes auth-call-rotate-scale {
  0% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(90deg) scale(1.05);
  }
  50% {
    transform: rotate(180deg) scale(1);
  }
  75% {
    transform: rotate(270deg) scale(0.95);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.auth-hello {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 420px;
  padding: 40px 0 40px 0;
  margin: 0;
}
.auth-hello__logo {
  margin-bottom: 20px;
}
.auth-hello__logo_img {
  width: 135px;
  height: 135px;
}
.auth-hello__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.auth-hello__buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 4px 0;
  gap: 12px;
  width: 100%;
  margin-top: 40px;
}

.auth-lead {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  gap: 16px;
  max-width: 420px;
  padding: 40px 0 40px 0;
}

.auth-select-contract {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  gap: 16px;
  max-width: 420px;
  padding: 40px 0 40px 0;
}
.auth-select-contract__logo_img {
  width: 120px;
  height: 120px;
}

.auth-password {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.auth-password__divider {
  height: 6px;
}

.auth-phone {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.auth-phone__divider {
  height: 6px;
}

.auth-select {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  max-width: 420px;
  padding: 40px 0 40px 0;
}

.footer {
  padding: 20px 0 50px 0;
  background-color: #3E4758;
  flex-shrink: 0;
}
.footer__phone {
  color: #FFFFFF;
}
.footer__description {
  color: #98a1b2;
}
.footer__gap {
  gap: 20px;
}
@media screen and (max-width: 576px) {
  .footer {
    display: none;
  }
}

.limit-info {
  padding-left: 8px;
  border-radius: 100px;
  min-height: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #FCD5CE;
  gap: 2px;
}
.limit-info__icon {
  width: 24px;
  height: 24px;
  opacity: 0.25;
}
.limit-info__text {
  width: 90%;
}

.service-info {
  padding-left: 8px;
  border-radius: 100px;
  min-height: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
  background-color: #EFF2F7;
  cursor: pointer;
}
.service-info__icon {
  width: 24px;
  height: 24px;
}
.service-info__text {
  width: 90%;
}

.balance__title {
  padding-bottom: 16px;
}
.balance__inner {
  border-radius: 16px;
  background-color: #FFFFFF;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.balance__block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
}
.balance__value {
  display: flex;
  flex-direction: row;
  align-items: baseline;
}
.balance__button {
  width: 106px;
  height: 32px;
  border-radius: 100px;
  background-color: #304EF2;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease;
}
.balance__button:hover {
  opacity: 0.8;
}
.balance__button-text {
  color: #FFFFFF;
}

.camera-view {
  width: 100%;
}
.camera-view__video {
  width: 100%;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.camera-view__video--loaded {
  height: 420px;
  opacity: 1;
}
.camera-view__iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.city-cameras {
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: #EFF2F7;
}
.city-cameras__buttons {
  padding-bottom: 12px;
}

.my-cameras {
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: #EFF2F7;
}
.my-cameras__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.add-contract {
  display: flex;
  flex-direction: column;
  background-color: #EFF2F7;
  flex: 1;
  padding: 20px;
}
.add-contract__info-block {
  flex: 1;
}
.add-contract__text-block {
  padding: 16px 0;
}
.add-contract__link {
  padding-top: 16px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.add-contract__link:hover {
  opacity: 1;
}
.add-contract__button {
  width: 100%;
  padding-top: 20px;
}

.my-contract-list {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  flex: 1;
  gap: 12px;
}
.my-contract-list__trash {
  width: 24px;
  height: 24px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.my-contract-list__trash:hover {
  opacity: 1;
}
.my-contract-list__trash img {
  width: 100%;
  height: 100%;
}
.my-contract-list__button {
  width: 100%;
}
.my-contract-list__modal {
  background-color: #EFF2F7;
}

.contract-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 15px;
  gap: 15px;
  width: 100%;
  background: #FFFFFF;
  border-radius: 20px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.contract-info:hover {
  opacity: 0.8;
}
.contract-info__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  gap: 5px;
  flex: 1;
}
.contract-info__arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.contract-info__arrow img {
  width: 100%;
  height: 100%;
}
.swipe-modal .swipe-modal__panel .swipe-modal__body .swipe-modal__content {
  width: 100% !important;
  align-items: stretch !important;
}
.contract-info-modal {
  display: flex;
  flex-direction: column;
  min-height: 500px;
  width: 100%;
  padding: 20px;
}
.contract-info-modal__inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}
.contract-info-modal__list {
  flex: 1;
  width: 100%;
}
.contract-info-modal__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  width: 100%;
}

.banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  gap: 15px;
  max-width: 100%;
  background: linear-gradient(270deg, #304EF2 0%, #9747FF 100%);
  border-radius: 16px;
}
.banner__titleRow {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.banner__title {
  font-family: 'Inter-Medium' 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  overflow-wrap: break-word;
}
.banner__buttonsRow {
  display: flex;
  gap: 10px;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
}
.banner__buttonWrapper {
  flex: 1;
}
.banner__customButton {
  width: 100%;
  background-color: #FFFFFF;
  border: none;
  border-radius: 100px;
  padding: 10px 15px;
  font-family: 'Inter-Regular' 'Inter', sans-serif;
  font-size: 14px;
  color: #282F3F;
  transition: background-color 0.3s ease;
}
.banner__customButton:hover {
  background-color: #f0f0f0;
}

.cameras-page {
  padding: 20px 0 20px 0;
  display: flex;
}
.cameras-page__left-block {
  flex-direction: column;
  display: flex;
  gap: 20px;
}
.cameras-page__right-block {
  flex-direction: column;
  display: flex;
  gap: 20px;
}
.cameras-page__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cameras-page__buttons_block {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}

.select-auto-date__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  cursor: pointer;
  background-color: #FFFFFF;
  border-radius: 20px;
}
.select-auto-date__info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}
.select-auto-date__icon {
  width: 24px;
  height: 24px;
}
.select-auto-date__modal {
  background-color: #EFF2F7;
}
.select-auto-date__modal_container {
  display: flex;
  gap: 16px;
  padding: 16px;
  flex-direction: column;
  align-items: center;
}

.select-auto-payment-card__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  cursor: pointer;
  background-color: #FFFFFF;
  border-radius: 20px;
}
.select-auto-payment-card__info {
  flex: 1;
}
.select-auto-payment-card__icon {
  width: 24px;
  height: 24px;
}
.select-auto-payment-card__modal {
  background-color: #EFF2F7;
}
.select-auto-payment-card__modal_container {
  display: flex;
  gap: 16px;
  padding: 16px;
  flex-direction: column;
  align-items: center;
}

.select-auto-time__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  cursor: pointer;
  background-color: #FFFFFF;
  border-radius: 20px;
}
.select-auto-time__info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}
.select-auto-time__icon {
  width: 24px;
  height: 24px;
}
.select-auto-time__modal {
  background-color: #EFF2F7;
}
.select-auto-time__modal_container {
  display: flex;
  gap: 16px;
  padding: 16px;
  flex-direction: column;
  align-items: center;
}

.add-auto-payment {
  padding: 16px;
}
.add-auto-payment__title {
  padding: 16px 0;
}
.add-auto-payment__input-block {
  height: 56px;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  border-radius: 20px;
  margin-bottom: 12px;
}
.add-auto-payment__input {
  width: 100%;
  padding: 0 16px;
  font-family: 'Inter-Medium';
  font-size: 20px;
  border: none;
  background: transparent;
  outline: none;
  color: #333333;
}
.add-auto-payment__button {
  margin-top: 16px;
}

.auto-payment-item {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 16px;
}
.auto-payment-item__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.auto-payment-item__info {
  flex: 1;
  cursor: pointer;
}
.auto-payment-item__icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.auto-payment-item__icon:hover {
  opacity: 1;
}

.auto-payment-list {
  background-color: #EFF2F7;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.auto-payment-list__desc {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
}
.auto-payment-list__button {
  margin-top: 16px;
}
.auto-payment-list__modal {
  background-color: #EFF2F7;
}

.cards-list {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
}
.cards-list__inner {
  display: flex;
  flex-direction: column;
}

.add-limit {
  min-height: 100%;
  background-color: #EFF2F7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.add-limit__inner {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 12px;
  background-color: #FFFFFF;
  border-radius: 16px;
}
.add-limit__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.add-limit__desc {
  padding: 0 40px;
  text-align: center;
}

.history-item {
  padding: 12px 16px;
  background: #FFFFFF;
  border-radius: 12px;
}
.history-item__inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.history-account {
  flex: 1;
}

.history-payment {
  flex: 1;
}

.history {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.history__actions {
  padding-top: 16px;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.history__calendar-btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.history__calendar-icon {
  width: 24px;
  height: 24px;
}
.history__modal {
  min-height: 500px;
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.history__calendar {
  flex: 1;
  padding: 16px 0;
}

.bank-select__modal {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bank-select__list {
  margin-top: 16px;
  max-height: 400px;
  overflow-y: auto;
}
.bank-select__desktop {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 400px;
  margin: 0 auto;
}
.bank-select__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.bank-select__description {
  color: #8a8a8a;
  line-height: 1.5;
}
.bank-select__qr-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.bank-select__qr-code {
  padding: 12px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.bank-select__qr-image {
  display: block;
  width: 250px;
  height: 250px;
  object-fit: contain;
}
.bank-select__actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contract-payment-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contract-select__header {
  padding: 16px;
  background: #FFFFFF;
  cursor: pointer;
  border-radius: 16px;
}
.contract-select__header-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.contract-select__modal {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contract-select__list {
  margin-top: 16px;
  max-height: 400px;
  overflow-y: auto;
}

.method-select__block {
  background: #FFFFFF;
  border-radius: 16px;
}
.method-select__block-inner {
  padding: 16px;
  height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.method-select__selected {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.method-select__selected-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.method-select__icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.method-select__button {
  width: 106px;
  height: 32px;
  border-radius: 100px;
  background-color: #304EF2;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.method-select__button-text {
  color: #FFFFFF;
}
.method-select__modal {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.method-select__modal-container {
  background-color: #EFF2F7;
}
.method-select__list {
  margin-top: 16px;
  max-height: 400px;
  overflow-y: auto;
}

.payment {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.payment__inner {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.payment__section-title {
  padding: 16px 0 8px 0;
}
.payment__input-block {
  height: 56px;
  background: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 16px;
  border-radius: 16px;
}
.payment__score-block {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
}
.payment__fast-sum-container {
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: start;
}

.payment-score {
  padding: 16px 0;
}
.payment-score__info-block {
  padding: 16px;
}
.payment-score__info {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.payment-score__middle {
  padding: 16px;
}
.payment-score__middle-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.payment-score__pay {
  padding: 16px;
}
.payment-score__slider-container {
  background: var(--background-secondary, #fff);
  border-radius: 12px;
  padding: 16px;
}
.payment-score__slider-container-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.payment-score__slider-info {
  display: flex;
  gap: 8px;
  align-items: center;
}
.payment-score__slider-info-right {
  display: flex;
  gap: 8px;
  align-items: center;
}
.payment-score__slider {
  width: 100%;
}
.payment-score__range-input {
  width: 100%;
  height: 4px;
  appearance: none;
  background: var(--border-color, #e0e0e0);
  border-radius: 2px;
  outline: none;
}
.payment-score__range-input::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--active-color, #4C9DFF);
  border-radius: 50%;
  cursor: pointer;
}
.payment-score__range-input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--active-color, #4C9DFF);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}
.payment-score__text-container {
  margin-top: 16px;
  padding: 16px;
  background: var(--background-secondary, #fff);
  border-radius: 12px;
}
.payment-score__text-block {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}
.payment-score__text-danger {
  color: var(--danger-color, #ff4444);
}
.payment-score__divider {
  height: 1px;
  background: var(--border-color, #e0e0e0);
  margin: 8px 0;
}

.profile-page {
  padding: 20px 0 20px 0;
  display: flex;
}
.profile-page__left-block {
  flex-direction: column;
  display: flex;
  gap: 20px;
}
.profile-page__right-block {
  flex-direction: column;
  display: flex;
  gap: 20px;
}
.profile-page__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.profile-page__buttons_block {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}
.profile-page__title {
  padding-bottom: 20px;
}

.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  overflow-y: auto;
}
.carousel-item {
  height: 126px;
  width: 106px;
  border-radius: 18px;
  border: 1px solid #304EF2;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.carousel-item:hover {
  opacity: 0.8;
}
.carousel-item-read {
  border: 1px solid transparent;
}
.carousel-item-image-block {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.carousel-item-image {
  border-radius: 16px;
  height: 120px;
  width: 100px;
  object-fit: cover;
}
.carousel-item-text {
  position: absolute;
  padding: 9px;
  padding-top: 7px;
  top: 0;
  left: 0;
  right: 0;
}

.service-block {
  min-height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-block__inner {
  display: flex;
  flex-direction: column;
}
.service-block__text {
  padding: 0 16px;
}
.service-block__text-title {
  padding-top: 16px;
}
.service-block__calendar {
  height: 56px;
  background-color: #EFF2F7;
  display: flex;
  align-items: center;
  margin-top: 16px;
  border-radius: 12px;
}
.service-block__calendar-inner {
  width: 100%;
  padding: 0 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: none;
  cursor: pointer;
}
.service-block__calendar-icon {
  width: 24px;
  height: 24px;
}
.service-block__modal-container {
  align-items: center;
  justify-content: center;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 16px;
}

.service-edit {
  min-height: 400px;
  padding: 16px;
}
.service-edit__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-edit__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.service-item__container {
  cursor: pointer;
  transition: opacity 0.5s;
}
.service-item__container:hover {
  opacity: 0.8;
}
.service-item__inner {
  background-color: #FFFFFF;
  padding: 16px;
  border-radius: 16px;
  height: 145px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}
.service-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-item__status {
  display: flex;
  gap: 4px;
  align-items: center;
}
.service-item__status-dot {
  height: 8px;
  width: 8px;
  border-radius: 16px;
}
.service-item__status-dot--active {
  background-color: #304EF2;
}
.service-item__status-dot--inactive {
  background-color: #FF4A4A;
}
.service-item__help-icon {
  height: 24px;
  width: 24px;
  opacity: 0.5;
}
.service-item__cost {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}
.service-item__cost--strikethrough {
  text-decoration: line-through;
  opacity: 0.5;
}
.service-item__cost-discount {
  display: flex;
  gap: 4px;
  align-items: center;
  padding-left: 8px;
  color: #304EF2;
}
.service-item__account-date {
  display: flex;
  gap: 4px;
  align-items: center;
}
.service-item__account-date-icon {
  height: 24px;
  width: 24px;
  opacity: 0.5;
}
.service-item__lower {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-item__title {
  width: 85%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.service-item__icon-block {
  width: 36px;
  height: 36px;
  background-color: #304EF2;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-item__icon {
  width: 24px;
  height: 24px;
}
.service-item__icon-promo {
  width: 36px;
  height: 36px;
}
.service-item__icons-inet-ktv {
  display: flex;
  gap: 8px;
}
.service-item__add-button {
  background-color: #FFFFFF;
  border: none;
  border-radius: 100px;
  padding: 12px;
  height: 44px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.5s;
}
.service-item__add-button:hover {
  opacity: 0.8;
}
.service-item__add-icon {
  height: 24px;
  width: 24px;
}
.service-item__modal {
  min-height: 400px;
  padding: 16px;
}
.service-item__modal-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-item__inner-modal {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.service-item__info-block {
  padding-top: 8px;
}
.service-item__danger-text {
  color: #FF4A4A;
}
.service-item__modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.service-item__small-card {
  border-radius: 16px;
  background-color: #FFFFFF;
  height: 100px;
  width: 100%;
}
.service-item__small-card-inner {
  display: flex;
  flex-direction: column;
  padding: 16px 12px;
  gap: 12px;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
}
.service-item__small-card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.services__title {
  padding-bottom: 10px;
}

.main-page {
  padding: 20px 0 20px 0;
  display: flex;
}
.main-page__left-block {
  flex-direction: column;
  display: flex;
  gap: 20px;
}
.main-page__right-block {
  flex-direction: column;
  display: flex;
  gap: 20px;
}

.news-item__inner {
  background-color: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
}
.news-item__inner__small {
  display: flex;
  flex-direction: row;
}
.news-item__inner--clickable {
  cursor: pointer;
  transition: opacity 0.7s;
}
.news-item__inner--clickable:hover {
  opacity: 0.7;
}
.news-item__image-block-detailed {
  height: 386px;
  width: 100%;
}
.news-item__image-block {
  height: 196px;
}
.news-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-item__text-block {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.news-item__title--clamped {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-item__description--clamped {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-page {
  padding: 20px 0 20px 0;
  display: flex;
}
.news-page__left-block {
  flex-direction: column;
  display: flex;
  gap: 20px;
}
.news-page__right-block {
  flex-direction: column;
  display: flex;
  gap: 20px;
}
.news-page__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 20px 10px;
}
.news-page__detailed_right_block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.news-page__detailed_left_block {
  padding-bottom: 8px;
}
.news-page__detailed {
  padding-bottom: 8px;
}
.news-page__buttons_block {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}
.news-page .animation-flat-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}
.news-page .animation-flat-list-item {
  width: calc(50% - 6px);
}
.news-page__item {
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.news-page__item:hover {
  opacity: 0.8;
}
.news-page__item:active {
  opacity: 0.7;
}
@media (max-width: 576px) {
  .news-page .animation-flat-list {
    gap: 8px;
  }
  .news-page .animation-flat-list-item {
    width: 100%;
  }
}

.office-item {
  background-color: #FFFFFF;
  border-radius: 20px;
  width: 100%;
}
.office-item__inner {
  width: 90%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.office-item__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.office-item__row--icons {
  gap: 8px;
}
.office-item__icon {
  height: 24px;
  width: 24px;
  flex-shrink: 0;
}
.office-item__icon-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.office-item__icon-btn:hover {
  opacity: 0.8;
}
.office-item__link {
  text-decoration: none;
  color: #304EF2;
}
.office-item__link:hover {
  text-decoration: underline;
}

.office-map {
  height: 300px;
  width: 100%;
  position: relative;
}
.office-map__container {
  height: 300px;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  background-color: #f0f0f0;
}
.ol-popup {
  position: absolute;
  background-color: white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #cccccc;
  bottom: 12px;
  left: -50px;
  min-width: 100px;
  white-space: nowrap;
  font-size: 14px;
  pointer-events: none;
}
.ol-popup::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top-color: white;
}

.offices {
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: #EFF2F7;
}
.offices__buttons {
  padding-bottom: 16px;
}
.offices__map {
  margin-bottom: 16px;
}
.offices__list {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.offices-page {
  padding: 20px 0 20px 0;
  display: flex;
}
.offices-page__left-block {
  flex-direction: column;
  display: flex;
  gap: 20px;
}
.offices-page__right-block {
  flex-direction: column;
  display: flex;
  gap: 20px;
}
.offices-page__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.offices-page__buttons_block {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}

.anketa {
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: #EFF2F7;
}
.anketa-item__inner {
  padding: 16px;
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.anketa-item__header {
  margin-bottom: 4px;
}
.anketa-item-value {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.anketa-item-value__title {
  opacity: 0.7;
}
.anketa-item-value__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 16px;
  background-color: #EFF2F7;
  border-radius: 45px;
}
.anketa-item-value__text {
  flex: 1;
  word-break: break-word;
  margin-right: 8px;
}
.anketa-item-value__copy-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.anketa-item-value__copy-btn:hover {
  opacity: 0.7;
}
.anketa-item-value__copy-text {
  position: absolute;
  top: 8px;
  right: 40px;
  white-space: nowrap;
  color: #848D9E;
}
.anketa-item-value__icon {
  width: 24px;
  height: 24px;
}
.anketa-item-value__icon path {
  stroke: #848D9E;
}

.contract-anketa {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contract-anketa__inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #FFFFFF;
  padding: 16px;
  border-radius: 16px;
}
.contract-anketa .anketa-item-value__text {
  font-size: 16px;
}

.document {
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: #EFF2F7;
  padding-top: 12px;
}
.document__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.document__item {
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 16px;
  opacity: 1;
  background-color: #FFFFFF;
  cursor: pointer;
  transition: opacity 0.5s;
}
.document__item:hover {
  opacity: 0.6;
}
.document__item-title {
  flex: 1;
  margin-right: 16px;
  word-break: break-word;
}
.document__item-arrow {
  flex-shrink: 0;
  color: #848D9E;
}
.detail-document {
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: #EFF2F7;
  padding-top: 12px;
}
.detail-document__inner {
  padding: 16px;
  background-color: #FFFFFF;
  border-radius: 20px;
}
.detail-document__body {
  line-height: 1.6;
  color: #333333;
}
.detail-document__body * {
  max-width: 100%;
}
.detail-document__body img {
  max-width: 100%;
  height: auto;
}
.detail-document__body a {
  color: #304EF2;
  text-decoration: none;
}
.detail-document__body a:hover {
  text-decoration: underline;
}
.detail-document__body p {
  margin-bottom: 12px;
}
.detail-document__body ul,
.detail-document__body ol {
  margin-bottom: 12px;
  padding-left: 24px;
}
.detail-document__body h1,
.detail-document__body h2,
.detail-document__body h3,
.detail-document__body h4,
.detail-document__body h5,
.detail-document__body h6 {
  margin-bottom: 12px;
}

.profile-page {
  padding: 20px 0 20px 0;
  display: flex;
}
.profile-page__left-block {
  flex-direction: column;
  display: flex;
  gap: 20px;
}
.profile-page__right-block {
  flex-direction: column;
  display: flex;
  gap: 20px;
}
.profile-page__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.profile-page__buttons_block {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}
.profile-page__title {
  padding-bottom: 20px;
}

.service-promo {
  background-color: #EFF2F7;
  min-height: 100%;
}
.service-promo__item-container {
  padding-top: 12px;
}
.service-promo__item-inner {
  background-color: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
}
@media (max-width: 768px) {
  .service-promo__item-inner {
    flex-direction: column;
  }
}
.service-promo__image-block {
  height: 400px;
  display: flex;
  flex: 0.5;
}
@media (max-width: 768px) {
  .service-promo__image-block {
    height: 200px;
    flex: none;
  }
}
.service-promo__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-promo__item-text-block {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-promo__button-block {
  padding: 0 16px 16px 16px;
}
.service-promo__section-title {
  padding-top: 16px;
}
.service-promo__right-block {
  display: flex;
  flex: 0.5;
  justify-content: center;
  flex-direction: column;
}
.service-promo__region-select {
  display: flex;
  gap: 8px;
  padding-top: 8px;
  overflow-x: auto;
}
.service-promo__region-select::-webkit-scrollbar {
  display: none;
}
.service-promo__region-button {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid #848D9E;
  background-color: transparent;
  color: #333333;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.service-promo__region-button--active {
  background-color: #304EF2;
  border-color: #304EF2;
  color: #FFFFFF;
}
.service-promo__region-button:hover {
  opacity: 0.8;
}
.service-promo__tariff-list {
  padding-top: 16px;
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  gap: 8px;
}
.service-promo__tariff-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 16px;
  min-height: 140px;
  width: 250px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  transition: opacity 0.5s ease;
}
.service-promo__tariff-card:hover {
  opacity: 0.8;
}
.service-promo__tariff-lower {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-promo__tariff-icon {
  width: 36px;
  height: 36px;
}
.service-promo__icons-row {
  display: flex;
  gap: 8px;
}
.service-promo__cost {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}
.service-promo__cost--strikethrough {
  text-decoration: line-through;
  opacity: 0.5;
}
.service-promo__cost-discount {
  display: flex;
  gap: 4px;
  align-items: center;
  padding-left: 8px;
  color: #304EF2;
}
.service-promo__info-block {
  padding-top: 8px;
}
.service-promo__faq-block {
  padding-top: 8px;
}
.service-promo__faq {
  border-radius: 16px;
  background-color: #FFFFFF;
  overflow: hidden;
}

.service-tab-list {
  flex: 1;
  overflow: auto;
}
.service-tab-list .animation-flat-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}
.service-tab-list .animation-flat-list-item {
  width: calc(50% - 6px);
}
.service-tab-list__item {
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.service-tab-list__item:hover {
  opacity: 0.8;
}
.service-tab-list__item:active {
  opacity: 0.7;
}
@media (max-width: 576px) {
  .service-tab-list .animation-flat-list {
    gap: 8px;
  }
  .service-tab-list .animation-flat-list-item {
    width: 100%;
  }
}

.service-page {
  padding: 20px 0 20px 0;
  display: flex;
}
.service-page__left-block {
  flex-direction: column;
  display: flex;
  gap: 20px;
}
.service-page__right-block {
  flex-direction: column;
  display: flex;
  gap: 20px;
}
.service-page__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-page__buttons_block {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.vacancies-item__inner {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding-bottom: 16px;
  cursor: pointer;
  transition: opacity 0.7s;
}
.vacancies-item__inner:hover {
  opacity: 0.9;
}
.vacancies-item__text-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}
.vacancies-item__skill-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.vacancies-item__icon {
  width: 24px;
  height: 24px;
  color: #848D9E;
}
.vacancies-item__container-desc {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vacancies-item__desc-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vacancies-item__button_block {
  padding: 16px 32px 16px 32px;
}
.vacancies-item__modal {
  background-color: #EFF2F7;
}

.response-vacancies {
  background-color: #EFF2F7;
  min-height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.response-vacancies__inner {
  flex: 1;
}
.response-vacancies__text-block {
  padding: 16px;
}
.response-vacancies__block-input {
  margin-bottom: 12px;
}

.detail-vacancies {
  background-color: #EFF2F7;
  padding: 16px;
}

.vacancies-page {
  padding: 20px 0 20px 0;
  display: flex;
}
.vacancies-page__left-block {
  flex-direction: column;
  display: flex;
  gap: 20px;
}
.vacancies-page__right-block {
  flex-direction: column;
  display: flex;
  gap: 20px;
}
.vacancies-page__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vacancies-page__detailed {
  padding-bottom: 8px;
}
.vacancies-page__buttons_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vacancies-page .animation-flat-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}
.vacancies-page .animation-flat-list-item {
  width: calc(50% - 6px);
}
.vacancies-page__item {
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.vacancies-page__item:hover {
  opacity: 0.8;
}
.vacancies-page__item:active {
  opacity: 0.7;
}
@media (max-width: 576px) {
  .vacancies-page .animation-flat-list {
    gap: 8px;
  }
  .vacancies-page .animation-flat-list-item {
    width: 100%;
  }
}

.mob-nav {
  display: flex;
  width: 40px;
  height: 40px;
  background-color: #FFFFFF;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.mob-nav__modal {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.notification-item {
  padding: 16px;
  margin-bottom: 12px;
  background: #FFFFFF;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background-color 0.2s ease;
}
.notification-item--unread {
  background: #e8f4fd;
}
.notification-item__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.notification-item__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.notification-item__title {
  font-weight: 500;
  line-height: 1.4;
  color: #333333;
}
.notification-item__date {
  opacity: 0.6;
}

.notifications-list {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.notifications-list__container {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.notifications-list__content {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  max-height: 90vh;
}
.notifications-list__actions {
  padding: 16px;
}
.notifications-list__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 32px;
  background: #FFFFFF;
  border-radius: 100px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.notifications-list__button:hover {
  opacity: 0.9;
}
.notifications-list__button:active {
  opacity: 0.8;
}
.notifications-list__empty {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
}
.notifications-list__load-more {
  padding: 16px;
  text-align: center;
  cursor: pointer;
  color: #304EF2;
}
.notifications-list__load-more:hover {
  opacity: 0.8;
}

.notify-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background-color: #FFFFFF;
  cursor: pointer;
  transition: opacity 0.2s ease;
  border-radius: 100px;
}
.notify-button:hover {
  opacity: 0.8;
}
.notify-button:active {
  opacity: 0.6;
}
.notify-button__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.notify-button__badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  color: #FFFFFF;
  background: #ff4444;
  border-radius: 9px;
}
.notify-button__modal {
  background: #EFF2F7;
}
.notify-button__modal_content {
  height: 100%;
}

.header {
  padding: 10px 10px 10px 10px;
  border-bottom: 1px solid #98a1b2 !important;
  opacity: 0;
  transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
.header__visible {
  opacity: 1;
}
.header__image-block {
  width: 48px;
  height: 48px;
  cursor: pointer;
}
.header__image-profile-block {
  display: flex;
  width: 40px;
  height: 40px;
  background-color: #FFFFFF;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.header__line {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.header__icon_block {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
@media screen and (max-width: 992px) {
  .header {
    border-bottom: 1px solid transparent !important;
    padding: 5px 10px 0 10px;
  }
}

@font-face {
  font-family: 'Inter-Regular';
  src: url(/assets/fonts/Inter-Regular.a416f467.otf) format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Inter-Medium';
  src: url(/assets/fonts/Inter-Medium.16eda82a.otf) format('opentype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Inter-Bold';
  src: url(/assets/fonts/Inter-Bold.29a77b7e.otf) format('opentype');
  font-weight: 700;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
}
body {
  background-color: #EFF2F7;
  color: #333333;
  overflow-y: scroll;
}
html::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #282F3F;
}
html::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.5);
}
html::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: rgba(249, 249, 253, 0.1);
}
img {
  display: block;
  max-width: 100%;
}
.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.main-content {
  flex: 1 0 auto;
}

