.notifications {
  border: none;
  background: none;
  position: relative;
}

.avatar {
  border-radius: 50%;
  background-color: #F3F5FC;
  width: 56px;
  height: 56px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.avatar-text {
  margin: 0;
}

.avatar-image {
  margin: 0;
  object-fit: cover;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.notifications .active {
  display: none;
}

.notifications .identifier {
  display: none;
}

.active-notifications .none {
  display: none;
}

.active-notifications .active {
  display: block;
}

.active-notifications .identifier {
  display: block;
}

.identifier {
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background-color: #D946D1;
  position: absolute;
  top: 12px;
  right: 5px;
}

.tab-block {
  display: none;
  opacity: 0;
  transition: opacity .3s linear;
}

.account-block {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
}

.card {
  border-radius: 20px;
  background-color: #F9F9F9;
  border: none;
  padding: 24px;
  color: #000150;
}

.sidebar__btn {
  width: 100%;
  text-align: left;
  border-radius: 12px;
  padding: 12px 20px;
  background-color: #fff;
}

.sidebar__btn:not(:last-child) {
  margin-bottom: 5px;
}

.sidebar-control {
  height: 100%;
}

.sidebar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: sticky;
  top: 117px;
}

.sidebar__bar-block {
  height: 63vh;
  padding-right: 11px;
}

.sidebar__bottom-block {
  padding-top: 30px;
  padding-bottom: 40px;
}

.sidebar__btn-bottom {
  background-color: #F9F9F9;
}

.card__header {
  margin-bottom: 22px;
}

.project-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.statistic-blocks {
  display: flex;
}

.statistic-block:not(:last-child) {
  margin-right: 45px;
}

.statistic-block {
  display: flex;
}

.statistic-info-header {
  color: #7F7F7F;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 4px;
}

.statistic-info {
  color: #11263C;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}

.statistic-color-block {
  height: 22px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.statistic-color {
  width: 30px;
  height: 4px;
  background-color: #030573;
  border-radius: 3px;
}

.pink {
  background-color: #D946D1;
}

.form__title {
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 18px;
}

.input-file-btn {
  position: relative;
  cursor: pointer;
  text-align: center;
  border-radius: 8px;
  line-height: 22px;
  padding: 10px;
  color: #353535;
  border: none;
  margin: 0;
  transition: background 0.2s linear;
  text-align: left;
  font-size: 16px;
  line-height: 20px;
  max-width: 250px;
}

.input-file-btn:hover {
  
  background: #F3F5FC;
}

.input-file-btn svg {
  position: relative;
  bottom: 2px;
}

.input-file-btn path {
  transition: stroke .2s linear;
}

.input-file {
  position: relative;
  width: 100%;
}

.input-file input[type=file] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}

.error-message .form_error-message {
  opacity: 1;
}

.form_error-message {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px;
  color: #CA3227;
  margin-bottom: 4px;
  opacity: 0;
  transition: opacity .3s linear;
}

.form__input {
  padding: 14px 16px;
  width: 100%;
  background: #f4f5fd;
  color: #353535;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
}

.form__input:focus {
  outline: none;
  border-color: #000150;
  box-shadow: 0 2px 6px rgba(0, 1, 80, 0.1);
  background: #f4f5fd;
}

.form__input::placeholder {
  color: #64748B;
  font-weight: 400;
}

.form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 10px;
  gap: 0 10px;
}

.form__title {
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 18px;
}

.form__input-block.full-width {
  grid-column: 1 / -1;
}

.preview {
  object-fit: cover;
  margin-bottom: 0;
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  margin: 0;
  color: #000150;
  text-align: center;
}

.logo-block {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}

.choices:focus {
  outline: none;
}

.is-focused .choices__inner, .is-open .choices__inner {
  border: 1px solid #F3F5FC;
  border-radius: 8px;
}
 
.choices {
  margin-bottom: 0;
  margin-right: 0;
}

.choices__placeholder {
  opacity: 1;
}

.choices__list--dropdown, .choices__list[aria-expanded] {
  background-color: #F3F5FC;
  border: 1px solid #dbe3ff !important;
  border-radius: 8px;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: #edf1ff;
}

.choices__inner {
  border-radius: 8px;
  border: 1px solid #F3F5FC;
  background-color: #F3F5FC;
  color: #353535 !important;
}

.error-message .choices__inner {
  border: 1px solid #CA3227;
}

.form__textarea {
  min-height: 137px;
}

.form__textarea--short {
  height: 48px;
  padding: 14px 16px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.form__textarea--short:focus {
  outline: none;
  border-color: #000150;
  box-shadow: 0 2px 6px rgba(0, 1, 80, 0.1);
  background: #FFFFFF;
}

.form__textarea--short::placeholder {
  color: #64748B;
  font-weight: 400;
}

.form__counter {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 12px;
  line-height: 18px;
}

.form__textarea-block {
  position: relative;
  max-width: 100%;
}

.form__company-btn {
  border: none;
  background: none;
  cursor: pointer;
}

.form__company-btn path{
  transition: stroke .2s linear;
}

.form__company-btn:hover path{
  stroke: #CA3227;
}

.form__company {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.form__btn-about-company {
  max-width: 306px;
  width: 100%;
}

.analog-block {
  max-width: 576px;
}

.form__companies {
  margin-top: 16px;
  margin-bottom: 32px;
}

.explanation__tabs-block {
  display: inline-flex;
  background-color: #F8FAFC;
  border-radius: 12px;
  padding: 4px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
}

.explanation__tabs-btns {
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #64748B;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  position: relative;
}

.explanation__tabs-btns:hover {
  color: #334155;
  background-color: #F1F5F9;
}

.active-tab-btn {
  background: #FFFFFF !important;
  color: #000150 !important;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #E2E8F0;
}

.active-tab-display {
  display: grid;
}

.active-tab-opacity {
  opacity: 1;
}

.sidebar-menu-block {
  display: none;
  width: 100%;
  margin-bottom: 32px;
}

.sidebar-menu {
  max-width: 333px;
  width: 100%;
  border-radius: 8px;
}

.chart__time {
  display: flex;
  justify-content: end;
}

.chart__choose-time {
  border: 1px solid var(--Primary-blue-5, #C5C6EE);
  padding: 8px 10px;
  display: flex;
  align-items: center;
}

.chart__choose-time span {
  margin-right: 10px;
}

.chart__choose-time {
  margin-left: 12px;
}

@media (max-width: 1090px) {
  .account-block {
    display: block;
    position: relative;
  }

  .chart__time {
    justify-content: start;
  }

  .sidebar {
    position: absolute;
    top: 70px;
    z-index: 5;
    padding: 13px;
    background-color: #fff;
    width: calc(100% - 5px);
    border-radius: 20px;
    max-width: 333px;
    margin: 0 auto;
  }

  .sidebar-control {
    display: none;
    justify-content: center;
  }

  .sidebar-control {
    height: auto;
  }

  .sidebar__bar-block {
    height: auto;
  }

  .sidebar__bar-block {
    margin-bottom: 60px;
  }
  

  .sidebar__bottom-block {
    padding-top: 0;
    padding-bottom: 0;
  }

  .sidebar-menu-block {
    display: flex;
    justify-content: center;
  }

  .form__row {
    display: block;
  }

  .save-btn-block {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .analog-block {
    max-width: none;
  }

  .avatar {
    width: 34px;
    height: 34px;
    margin-right: 15px;
  }

  .statistic-blocks {
    display: block;
  }
}


/* Form Sections */
.form__section {
  margin-bottom: 24px;
  padding: 20px;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.form__section-title {
  font-size: 18px;
  font-weight: 600;
  color: #000150;
  margin: 0 0 16px 0;
}

.form__checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form__checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 16px;
  color: #353535;
  transition: color 0.2s ease;
}

.form__checkbox-label:hover {
  color: #000150;
}

.form__checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #000150;
}

.form__checkbox-label span {
  user-select: none;
}