@import url(./ummc-title.css);
@import url(./ummc-switch.css);
@import url(./ummc-description.css);
@import url(./ummc-notification.css);
@import url(./ummc-list.css);
@import url(./notification-panel.css);
@import url(./ummc-drawer.css);
@import url(./notification-permission.css);
@import url(./notifications-disabled.css);
@import url(./ummc-paid-label.css);
@import url(./ummc-price.css);

.cabinet {
  overflow-y: auto;
  scrollbar-width: none;
}
.cabinet::-webkit-scrollbar {
  display: none;
}
.feed-details::-webkit-scrollbar {
  display: none;
}
.toast {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  height: auto;
  padding: .5vh;
  background-color: #FD364E;
  box-shadow: 0 0 24px -1px rgba(56, 56, 56, 1);
  text-align: center;
  font-family: var(--medium-font);
  font-size: 2vh;
  color: #F0F0F0;
}
.bg-gray {
  background-color: #EDF3F6;
}
.bg-white {
  background-color: #FFF;
}
/* Header */
.header-cabinet {
  background-color: #EDF2F5;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 80px;
}
.header-cabinet .container {
  height: inherit;
}
.header-cabinet--white {
  background-color: #FFF;
}
.header-cabinet__content {
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-cabinet__payment-systems {
  max-height: 15px;
}
.header-cabinet__payment-systems img {
  margin-right: 10px;
  max-height: inherit;
}
header .icon-container {
  display: none;
}
@media (max-width: 991px) {
  .header-cabinet {
    height: 60px;
  }
  header .icon-container {
    display: block;
  }
}
/* Header Cabinet */
.cabinet-header-page__return {
  background: url(../assets/images/cabinet/arrow__return.svg) no-repeat center left;
  width: 20px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
.cabinet-header-page__text {
  font-family: var(--medium-font);
  font-size: 18px;
  line-height: 24px;
  color: #232427;
  display: inline-block;
  vertical-align: middle;
}
/* Search */
.cabinet-search {
  width: 100%;
  margin: 20px 0;
}
.cabinet-search__input {
  position: relative;
}
.search-results__tabs {
  display: flex;
  flex-wrap: wrap;
}
.search-results__tab {
  font-family: var(--medium-font), sans-serif;
  font-size: 18px;
  line-height: 20px;
  color: #95A6B3;
  cursor: pointer;
  padding: 8px 0;
}
.search-results__tab + .search-results__tab {
  margin-left: 35px;
}
.search-results__tab--active {
  color: #232427;
}
.search-results__total {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 30px;
}
.search-results__refresh {
  margin-left: 10px;
  color: var(--main-color);
  cursor: pointer;
}
/* input */
.cabinet-search__input input {
  display: inline-block;
  width: 100%;
  padding: 15px 35px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: var(--regular-font);
  font-size: 16px;
}
.cabinet-search__input input:focus {
  border-color: var(--second-main-color);
}
/* icons */
.cabinet-search__input i {
  position: absolute;
  top: 50%;
  font-size: 22px;
  transform: translateY(-55%);
  transition: .2s color;
  cursor: pointer;
}
.cabinet-search__input .icon-search {
  left: 0;
  color: #BEC8D0;
}
.cabinet-search__input .icon-search-close {
  display: none;
  right: 0;
  font-size: 30px;
  color: #BEC8D0;
}
.cabinet-search__input .icon-search-close:hover {
  color: var(--main-color);
}
/* active state */
.cabinet-search--active .icon-search {
  color: #232427;
}
.cabinet-search--active .icon-search-close {
  display: inline-block;
}
.cabinet-search--active input {
  border-color: #BFD2E2;
}
/* user */
.cabinet-search__user {
  color: var(--main-color);
  position: relative;
  cursor: pointer;
}
.cabinet-search__change-user {
  flex-direction: column;
  width: 320px;
  padding: 20px;
  background-color: #FFF;
  border: 1px solid #E1E4E7;
  border-radius: 4px;
  color: #232427;
}
.cabinet-search__change-user .base-checkbox:not(:last-of-type) {
  padding-bottom: 15px;
}
@media (max-width: 991px) {
  .cabinet-search .icon-search {
    font-size: 20px;
  }
  .cabinet-search__input input {
    padding: 10px 30px;
  }
  .cabinet-search .icon-search-close {
    font-size: 16px;
    font-weight: bold;
    color: #95A6B3;
  }
}
@media (max-width: 424px) {
  .search-results__tab {
    flex: 1 1 auto;
  }
  .search-results__tab + .search-results__tab {
    margin: 0;
  }
}
/* Container */
.cabinet__content {
  width: calc(100% - 300px);
}
.cabinet__content .container {
  width: 900px;
}
@media (max-width: 1200px) {
  .cabinet__content .container,
  .feed-card__details .container {
    width: auto;
  }
}
@media (max-width: 991px) {
  .cabinet__content {
    width: 100%;
  }
}
/* Sidebar */
.cabinet__sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  border-left: 1px solid #E2E9ED;
  z-index: 100;
}
.cabinet__sidebar-header {
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E2E9ED;
}
.cabinet__sidebar-header img {
  max-width: 110px;
}
.cabinet__sidebar-counter {
  font-size: 12px;
  color: #7C90A0;
}
.icon-container.active .cabinet__sidebar-counter {
  color: #232427;
}
.cabinet__sidebar-content {
  text-align: center;
  overflow-y: auto;
  scrollbar-width: none;
}
.cabinet__sidebar-content::-webkit-scrollbar {
  display: none;
}
.cabinet__sidebar-content .icon-container {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  text-align: left;
  font-family: var(--medium-font);
  font-size: 14px;
  cursor: pointer;
  transition: background-color .3s, color .3s;
}
.cabinet__sidebar-content .icon-container:hover {
  color: var(--main-color);
}
.cabinet__sidebar-content .icon-container.active {
  padding-left: 22px;
  background-color: var(--extra-light-color);
  border-left: 3px solid var(--main-color);
  color: var(--main-color);
}
.cabinet__sidebar-buttons {
  padding: 60px 0;
}
.cabinet__sidebar-buttons button {
  width: 250px;
}
.cabinet__sidebar-buttons button + button {
  margin-top: 25px;
}
.cabinet__sidebar-exit {
  margin-top: auto;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFF;
  border-top: 1px solid #E2E9ED;
  font-family: var(--medium-font);
  font-size: 14px;
  line-height: 30px;
  transition: color .3s;
  cursor: pointer;
}
.mobile-menu__button > i,
.cabinet__sidebar-exit > i {
  color: #BEC8D0;
  font-size: 20px;
  transition: color .3s;
}
.cabinet__sidebar-exit:hover,
.cabinet__sidebar-exit:hover > i {
  color: var(--main-color);
}
@media (max-width: 991px) {
  .cabinet__sidebar {
    display: none;
  }
}
/* Icons */
.icon-container > i {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: #BEC8D0;
  transition: color .3s;
  cursor: pointer;
}
.icon-container:hover > i,
.icon-container.active > i,
.bottom-bar .icon-container:hover,
.bottom-bar .icon-container.active {
  color: var(--main-color);
}
.icon-container.RNMobile{
  color: #95A6B3 !important;
}
.icon-container.RNMobile > i {
  color: #BEC8D0 !important;
}
.cabinet__sidebar-content .icon-container i {
  margin-bottom: 0;
  margin-right: 20px;
}
.cabinet__show-notifications {
  position: fixed;
  right: 24px;
  top: 29px;
  z-index: 100;
}
@media (max-width: 991px) {
  .cabinet__show-notifications {
    position: absolute;
    right: 20px;
    top: 18px;
    padding: 0px 0px 20px 40px;
  }
  .cabinet__show-notifications {
    top: 18px;
  }
  .notification-panel__head {
    padding: 20px 24px;
  }
}
.cabinet__notification-panel {
  position: fixed;
  width: 300px;
  right: 0;
  top: 0;
  z-index: 101;
  background-color: white;
  height: calc(100% - 71px);
}
@media (max-width: 991px) {
  .cabinet__notification-panel {
    left: 0;
    width: 100%;
    height: auto;
    bottom: 56px;
    transform: translateY(100vh);
  }

  .cabinet__notification-panel_visible {
    transition: transform .45s ease-in;
    transform: translateY(0);
  }
}

@media (min-width: 992px) {
  .cabinet__notification-panel {
    right: 0;
    width: 300px;
    height: auto;
    bottom: 56px;
    transform: translateY(100vh);
  }

  .cabinet__notification-panel_visible {
    transition: transform .45s ease-in;
    transform: translateY(0);
  }
}

.icon-container i .unread {
  position: absolute;
  top: -7px;
  right: -7px;
  background-color: var(--second-main-color);
  border: 3px solid #FFF;
  border-radius: 50%;
  height: 16px;
  width: 16px;
}
header .icon-cabinet-notification .unread {
  /* border-color: #EF5; */
}
/* Footer */
.bottom-bar {
  display: none;
  position: fixed;
  top: calc(100% - 3.5rem);
  width: 100%;
  background-color: #FFF;
  align-items: center;
  z-index: 1001;
  top: calc(100% - 3.5rem - env(safe-area-inset-bottom));
  transform: translateY(0%);
  transition: transform .3s ease-out;
}

.bottom-bar_slided_down {
  transform: translateY(100%);
}

.bottom-bar--iphone {
  top: calc(100% - 4.8rem);
  margin: 0 10px;
  width: calc(100% - 20px);
  border-radius: 10px;
  box-shadow: 0 8px 35px rgba(155, 178, 190, .3);
  height: 4rem;
}
.bottom-bar .icon-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0 7px;
  font-family: var(--regular-font);
  font-size: 11px;
  color: #95A6B3;
  height: 3.5rem;
}
.bottom-bar.bottom-bar--hide {
  display: none;
}
.mobile-menu {
  max-width: 425px;
  position: fixed;
  border-radius: 8px;
  left: 20px;
  right: 20px;
  background-color: #FFF;
  border-bottom: 1px solid #E1E4E7;
  z-index: 100;
  bottom: calc(72px + env(safe-area-inset-bottom));
  width: inherit;
  margin:0 auto;
}
.mobile-menu__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-family: var(--medium-font);
  font-size: 15px;
  line-height: 52px;
  position: relative;
}
.mobile-menu__button--unread::after {
  /* position: absolute; */
  /* right: 0; */
  color: var(--second-main-color);
  content: '\25CF';
  font-size: 14px;
}
.mobile-menu__button-container {
  padding: 5px 15px 15px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu__button:not(:last-child) {
  border-bottom: 1px solid #E1E4E7;
}
@media (max-width: 991px) {
  .bottom-bar {
    display: flex;
    box-shadow: 0 50px 0 0 white;
    border-top: 1px solid #E2E9ED99;
  }
}
/* Feed */
.feed {
  background-color: #EDF2F5;
}
@media (min-width: 991px) {
  .feed.payments {
    margin-top: 40px;
  }
}
.feed__title {
  font-family: var(--medium-font);
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.icon-container:not(.active):hover > .icon-cabinet-filters {
  color: #BEC8D0;
}
.feed__warning {
  border: 1px solid #BEC8D0;
  box-sizing: border-box;
  border-radius: 6px;
  padding: 20px 40px 20px 70px;
  background: url('../assets/images/cabinet/feed-warning.svg') 20px no-repeat;
  font-size: 14px;
  color: #95A6B3;
}
.feed__warning ~ .feed__warning {
  margin-top: 20px;
}
.feed__warning a {
  color: var(--main-color);
  transition: color .3s;
}
.feed__warning a:hover {
  color: var(--dark-color);
}
@media (max-width: 500px) {
  .feed__warning {
    padding: 15px 15px 15px 60px;
    background-position-x: 15px;
  }
}
.feed__filters {
  margin-top: 35px;
  display: flex;
  align-items: center;
}
.feed__filter-month {
  margin-left: 35px;
}
.feed__filter-sort {
  margin-left: 20px;
}
.feed__filter-date {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.feed__filter-date input {
  display: none;
}
.feed__filter-date > div {
  transition: color .3s;
  cursor: pointer;
}
.feed__filter-date > div:hover {
  color: var(--main-color);
}
.feed__filter-date .icon-cabinet-date-filter {
  font-size: 18px;
  color: #95A6B3;
  margin-right: 10px;
}
.feed__filter-date .icon-close {
  margin-left: 10px;
  font-size: 12px;
  transition: color .3s;
  cursor: pointer;
}
.feed__filter-date .icon-close:hover {
  color: var(--main-color);
}
.feed__no-records-content {
  font-family: var(--medium-font);
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #BEC8D0;
  margin-top: 50px;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.feed__no-records-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
}
.feed__new-user {
  text-align: center;
  font-family: var(--regular-font);
  font-size: 14px;
  line-height: 24px;
}
.feed__new-user img {
  margin-bottom: 20px;
}
.feed__new-user-title {
  font-family: var(--medium-font);
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 30px;
}
.feed__new-user .base-btn {
  margin-top: 40px;
}
.feed__main {
  display: flex;
  flex-direction: column;
  flex: 1 0 100%;
  max-width: 100%;
  padding-bottom: 50px;
}
.feed__future-appointments {
  width: 100%;
  color: var(--main-color);
  position: relative;
  height: 66px;
  margin-top: 20px;
}
.feed__future-appointments:hover {
  cursor: pointer;
}
.feed__future-appointments > div {
  padding: 10px 25px;
  background-color: #FFF;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, .05),
    0 2px 3px rgba(74, 162, 216, .1);
  border-radius: 6px;
  left: 0;
  top: 0;
  width: 100%;
  font-family: var(--medium-font);
  font-size: 14px;
  position: absolute;
}
.feed__future-appointments :nth-child(1) {
  z-index: 3;
}
.feed__future-appointments :nth-child(2) {
  z-index: 2;
  margin-top: 28px;
}
.feed__future-appointments :nth-child(3) {
  z-index: 1;
  margin-top: 36px;
}
.feed__month {
  margin-top: 20px;
  font-family: var(--bold-font);
  font-size: 16px;
  text-transform: uppercase;
  color: #95A6B3;
  text-align: center;
}
.feed__day {
  margin-top: 30px;
}
.feed__day-documents{
  margin-bottom: 24px;
}
@media (max-width: 1400px) {
  .feed__day {
    margin-top: 45px;
  }
}
@media (max-width: 991px) {
  .feed__month {
    text-align: left;
  }
  .feed__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .feed__filters {
    flex-direction: column;
    align-items: flex-start;
  }
  .feed__filters .base-checkbox,
  .feed__filter-month,
  .feed__filter-sort {
    margin-top: 10px;
    margin-left: 0;
  }
  .filter-section_container {
    width: 100%;
    overflow-y: hidden;
    white-space: nowrap;
  }
}
.feed__button--bottom {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
/* Feed cards */
.feed-card {
  background-color: #FFF;
  border-radius: 6px;
  padding: 25px;
  position: relative;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  transition: box-shadow .3s;
}
.feed-card + .feed-card {
  margin-top: 30px;
}
.feed-card--empty {
  display: block;
  background-color: transparent;
  padding: 20px 0;
  margin-top: -15px;
}
.feed-card--empty span {
  font-family: var(--medium-font);
  font-size: 14px;
  line-height: 24px;
  color: #95A6B3;
}
.feed-card__separator {
  display: flex;
  align-items: center;
  text-align: center;
}
.feed-card__separator::before,
.feed-card__separator::after {
  content: '';
  flex: 1;
  border-bottom: 2px solid #E2E9ED;
}
.feed-card__separator::before {
  margin-right: 1.25em;
}
.feed-card__separator::after {
  margin-left: 1.25em;
}
.feed-card:not(.feed-card--empty):hover {
  color: var(--main-color);
  box-shadow: 0 10px 25px rgba(184, 202, 212, .33);
  cursor: pointer;
}
/* Wraps file icon and content */
.feed-card__content-wrapper {
  display: flex;
  flex: 1;
}
.feed-card__date {
  position: sticky;
  margin-left: -95px;
  top: 100px;
  font-family: var(--medium-font);
  font-size: 15px;
  line-height: 24px;
  color: #95A6B3;
  z-index: 90;
}
.feed-card:not(:first-of-type) .feed-card__date {
  display: none;
}
.feed-card__date--today {
  background: #414D5C;
  color: #FFF;
  border-radius: 6px;
  width: 110px;
  height: 40px;
  left: -120px;
  top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.toggle-container {
  display: flex;
  gap: 20px;
  width: max-content;
}

.toggle-btn {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-family: var(--medium-font);
  color: #232427;
  background-color: transparent;
  transition: background-color 0.3s, color 0.3s;
}
.toggle-btn.active {
  background-color: #6CAFF8;
  color: white;
  border-radius: 3px
}

/* Wraps title, description, etc. */
.feed-card__content {
  margin-left: 25px;
  flex-grow: 1;
}
.feed-card__time {
  font-family: var(--medium-font);
  font-size: 16px;
  transition: color .3s;
  color: #232427;
}
.feed-card__time--past {
  color: #7C90A0;
}
.feed-card__status {
  margin-top: 20px;
  font-family: var(--regular-font);
  font-size: 14px;
  line-height: 24px;
  color: #7C90A0;
}
.feed-card__status > i {
  margin-right: 10px;
  line-height: 18px;
  color: #BFD2E2
}
.feed-card__status > .icon-check-round {
  color: #27AE60;
}
.feed-card__patient {
  margin-left: auto;
  margin-bottom: auto;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 24px;
  color: #7C90A0;
}
.feed-card__patient > i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  width: 24px;
  height: 24px;
  background-color: #F4F5F7;
  border-radius: 50%;
}
.payments .feed-card__patient {
  margin-left: 0;
}
.feed-card__title {
  font-family: var(--medium-font);
  font-size: 16px;
  transition: color .3s;
}
.feed-card__address {
  margin-top: 15px;
  font-family: var(--regular-font);
  font-size: 14px;
  color: #7C90A0;
}
@media (max-width: 1400px) {
  .feed-card + .feed-card {
    margin-top: 24px;
  }
  .feed-card__date {
    margin: 0 0 12px 10px;
    position: static;
  }
  .feed-card__date--today {
    display: none;
  }
  .feed-card--empty {
    margin-top: -30px;
  }
  .feed-card--empty span {
    background: #414D5C;
    border-radius: 6px;
    color: #FFF;
    font-size: 15px;
    width: 210px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .feed-card {
    padding: 20px;
  }
  .feed-card--empty {
    padding: 20px 0;
  }
  .feed-card__content-wrapper {
    flex-direction: column;
    max-width: 100%;
  }
  .feed-card__time {
    margin-bottom: 10px;
  }
  .feed-card__address {
    margin-top: 10px;
  }
  .feed-card__status {
    margin-top: 15px;
  }
  .feed-card__content {
    margin-top: 10px;
    margin-left: 0;
  }
  .feed-card__patient {
    margin-left: 0;
    margin-right: auto;
    justify-content: start;
    position: absolute;
    right: 20px;
  }
}
/* Analyses card */
.feed-card--analyses .feed-card__content {
  display: flex;
  flex-direction: column;
}
.feed-card__file {
  width: 40px;
  padding-top: 30px;
  background-position: center top;
  background-repeat: no-repeat;
  text-align: center;
  font-family: var(--medium-font);
  font-size: 12px;
  font-weight: bold;
  color: #BEC8D0;
  transition: color .3s, background-image .3s;
}
.feed-card:hover .feed-card__file {
  color: var(--main-color);
}
.feed-card__file--doc {
  background-image: url('../assets/images/cabinet/doc.svg');
}
.feed-card__file--analyse {
  background-image: url('../assets/images/cabinet/analyse.svg');
}
.feed-card__specialist,
.feed-card__unknown-file {
  margin-top: 5px;
  font-family: var(--regular-font);
  font-size: 14px;
  color: #7C90A0;
}
.feed-card__commentary-btn {
  padding: 10px;
  margin: 5px -10px 0;
  font-family: var(--medium-font);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.feed-card__commentary-btn img {
  margin-right: 10px;
}
.feed-card__commentary-btn--active {
  background-color: var(--extra-light-color);
  border-radius: 6px;
}
.feed-card__commentary {
  display: none;
}
.feed-card__commentary-btn--active ~ .feed-card__commentary {
  display: block;
}
.feed-card__commentary-date {
  font-family: var(--regular-font);
  font-size: 14px;
  color: #909EAA;
  margin-top: 20px;
}
.feed-card__commentary-text {
  font-family: var(--regular-font);
  font-size: 14px;
  color: #414D5C;
  margin-top: 10px;
}
.feed-card__commentary-attachment {
  font-family: var(--medium-font);
  font-weight: 500;
  font-size: 14px;
  color: var(--main-color);
  padding-left: 26px;
  background: url('../assets/images/cabinet/attachment.svg') left center no-repeat;
  margin-top: 15px;
}
.feed-card__file-select {
  display: none;
  position: absolute;
  right: 10%;
  top: 65%;
  z-index: 10;
  width: 275px;
  padding: 20px 25px;
  background-color: #FFF;
  border: 1px solid #E1E4E7;
  box-shadow: 0 10px 35px rgba(155, 178, 190, .2);
  border-radius: 4px;
  font-family: var(--medium-font);
  font-size: 14px;
  line-height: 32px;
  color: #7C90A0;
}
.feed-card--active .feed-card__file-select {
  display: block;
}
.feed-card__file-name {
  color: #232427;
  cursor: pointer;
  word-break: break-word;
  transition: color .3s;
}
.feed-card__file-name:hover {
  color: var(--main-color);
}
@media (max-width: 991px) {
  .feed-card__file {
    text-align: unset;
    background: none;
    padding: 0;
    position: relative;
    transform: none;
  }
  .feed-card:hover .feed-card__file {
    background: none;
  }
}
/* Payments */
.feed-card--payments {
  padding-right: 80px;
}
.feed-card--payments .feed-card__content {
  display: flex;
  align-items: center;
}
.feed-card__services {
  margin-left: 20px;
  font-family: var(--medium-font);
  font-size: 12px;
  line-height: 12px;
  color: #95A6B3;
}
.feed-card__trigger {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 40px 20px;
  border-left: 1px solid #EDF2F5;
  display: flex;
  align-items: center;
}
.feed-card__trigger--active {
  background-color: var(--extra-light-color);
  border-color: var(--extra-light-color);
  align-items: flex-end;
}
.feed-card__trigger-mobile {
  display: none;
  width: 100%;
  align-items: center;
  padding: 10px 15px 10px 35px;
  margin: 10px -10px 0 0;
  font-family: var(--medium-font);
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
  color: #232427;
  border-radius: 6px;
}
.feed-card__trigger-mobile.feed-card__trigger--active {
  background-color: var(--extra-light-color);
}
.feed-card--payments .icon-dropdown {
  width: 12px;
  height: 12px;
  margin-left: auto;
  font-size: 12px;
  color: #95A6B3;
  transition: transform .3s, color .3s;
}
.feed-card--payments .feed-card__trigger--active .icon-dropdown {
  color: var(--main-color);
  transform: rotate(180deg);
}
.feed-card__trigger--active ~ .payment-list {
  display: block;
}
.payments__group + .payments__group {
  margin-top: 45px;
}
.payments__group-name {
  font-family: var(--medium-font);
  font-size: 12px;
  line-height: 26px;
  text-transform: uppercase;
  color: #95A6B3;
  margin-bottom: 25px;
  margin-top: 15px;
}
.payments__group .feed__day {
  margin-top: 25px;
}
.payment-list {
  display: none;
  width: 100%;
  padding-left: 20px;
}
.payment-list li {
  display: flex;
  padding: 10px 0 10px 43px;
  position: relative;
}
.payment-list li img {
  margin-right: 15px;
}
.payment-list__check {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: var(--second-main-color);
}
.payment-list__name {
  font-family: var(--regular-font);
  font-size: 14px;
  color: #414D5C;
  max-width: 80%;
}
.payment-list__price {
  font-family: var(--regular-font);
  font-size: 14px;
  line-height: 20px;
  text-align: right;
  color: #7C90A0;
  white-space: nowrap;
  margin-left: auto;
}
.payment-list li.payment-list__patient {
  padding-bottom: 0;
}
.payment-list .payment-list__information {
  justify-content: space-between;
  align-items: unset;
  font-family: var(--regular-font);
  font-size: 14px;
  line-height: 20px;
  color: #7C90A0;
}
.payment__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
}
.payment__paid {
  font-family: var(--medium-font);
  font-size: 16px;
  line-height: 24px;
  color: #27AE60;
}
.payment__paid > i {
  margin-right: 10px;
  font-size: 14px;
  line-height: 20px;
}
.payment__total-price {
  font-family: var(--medium-font);
  font-size: 20px;
  margin-right: 25px;
  transition: color .3s;
}
.feed-card--paid-payments .payment__total-price {
  color: #95A6B3;
}
@media (max-width: 991px) {
  .feed-card--payments {
    padding-right: 20px;
  }
  .feed-card__services {
    display: none;
  }
  .payment__footer {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
  }
  .feed-card__trigger {
    display: none;
  }
  .feed-card__trigger-mobile {
    display: flex;
  }
  .payments__info {
    display: block;
  }
  .payments__group + .payments__group {
    margin-top: 35px;
  }
  .payments__group-name {
    margin-bottom: 20px;
  }
  .payments__group .feed__day {
    margin-top: 20px;
  }
  .payment-list {
    padding-left: 0;
  }
  .payment-list li {
    padding-left: 35px;
  }
  .payment-list .payment-list__information {
    flex-direction: column;
  }
  .payment-list__information div + div {
    margin-top: 10px;
  }
}
/* Notifications */
.notifications {
  position: fixed;
  right: -100%;
  top: 0;
  bottom: 60px;
  width: 300px;
  background-color: #FFF;
  flex-direction: column;
  transition: right .5s;
  overflow: auto;
  z-index: 101;
  border-left: 1px solid #E2E9ED;
  -ms-overflow-style: none;
}
.notifications::-webkit-scrollbar {
  display: none;
}
body.show-notifications .notifications {
  right: 0;
}
.notifications__header {
  background-color: #FFF;
  padding: 20px;
  border-bottom: 1px solid #E1E4E7;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.notifications__title {
  font-family: var(--medium-font);
  font-size: 18px;
  line-height: 20px;
  display: flex;
}
.notifications__badge {
  margin-left: 10px;
  background-color: var(--second-main-color);
  width: 20px;
  height: 20px;
  border-radius: 80px;
  text-align: center;
  font-family: var(--medium-font);
  font-size: 12px;
  color: #FFF;
}
.notifications__filter {
  margin-left: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F4F5F7 url('../assets/images/cabinet/filter.svg') center no-repeat;
  cursor: pointer;
}
.notifications__filter:hover,
.notifications__filter.active {
  background-color: var(--extra-light-color);
  background-image: url('../assets/images/cabinet/filter-active.svg');
}
.notifications__close {
  margin-left: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F4F5F7 url('../assets/images/cabinet/close.svg') center no-repeat;
  cursor: pointer;
}
.notifications__close:hover {
  background-color: var(--extra-light-color);
  background-image: url('../assets/images/cabinet/close-active.svg');
}
.notifications__item {
  padding: 0 10px;
}
.notifications__list-item {
  padding: 20px;
  display: flex;
  flex-flow: row wrap;
  align-items: baseline;
  position: relative;
}
.notifications__list-item:hover {
  background-color: var(--extra-light-color);
}
.notifications__list-item:not(:last-of-type) {
  border-bottom: 1px solid #EDF2F5;
}
.notifications__list-unread {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--second-main-color);
  border-radius: 50%;
  width: 6px;
  height: 6px;
}
.notifications__list-title {
  flex-basis: 80%;
  font-family: var(--regular-font);
  font-size: 15px;
}
.notifications__list-date {
  flex-basis: 20%;
  text-align: right;
  font-family: var(--regular-font);
  font-size: 12px;
  color: #7C90A0;
}
.notifications__list-text {
  flex-basis: 80%;
  font-family: var(--regular-font);
  font-size: 13px;
  color: #7C90A0;
  margin-top: 5px;
}
.notifications__list-success {
  flex-basis: 100%;
  font-family: var(--medium-font);
  font-size: 13px;
  color: var(--second-main-color);
  margin-top: 15px;
}
.notifications__list-item .base-btn {
  flex-basis: 50%;
  margin-top: 20px;
}
.notifications__list-price {
  flex-basis: 50%;
  text-align: right;
  font-family: var(--medium-font);
  font-size: 18px;
  line-height: 24px;
}
.notifications__filter .filter-bottom {
  position: absolute;
  padding: 20px;
  background-color: #FFF;
  border: 1px solid #E1E4E7;
  box-shadow: 0 10px 35px rgba(155, 178, 190, .2);
  border-radius: 6px;
  z-index: 10;
  top: 60px;
  right: 80px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-15px);
  animation: filter-bottom--out .3s ease-out forwards;
}
@keyframes filter-bottom--in {
  from {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}
.notifications__filter.active .filter-bottom {
  animation: filter-bottom--in .3s ease-out forwards;
}
@keyframes filter-bottom--out {
  from {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  to {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-15px);
  }
}
.filter-bottom .base-checkbox:not(:last-of-type) {
  display: block;
  margin-bottom: 15px;
  font-family: var(--regular-font);
  font-size: 14px;
}
.filter-bottom .base-checkbox__text {
  padding-left: 35px;
}
@media (max-width: 991px) {
  .notifications {
    width: 100%;
  }
}
/* Personal */
.personal__main {
  padding-top: 30px;
}
.personal__separator {
  border: none;
  height: 1px;
  color: #E2E9ED;
  background-color: #E2E9ED;
}
.personal__balance,
.personal__data,
.personal__relatives,
.personal__insurance {
  padding: 40px 0;
}
.personal__title {
  font-family: var(--medium-font);
  font-size: 20px;
  line-height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.personal__main .base-label {
  margin-bottom: 15px;
}
.personal__main .base-input {
  margin-bottom: 25px;
}
.personal__top-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.personal__settings-btn > i {
  color: #BEC8D0;
  cursor: pointer;
  font-size: 18px;
}
.personal__id {
  font-family: var(--regular-font);
  font-size: 14px;
  line-height: 20px;
  color: #95A6B3;
}
.personal__name {
  margin-bottom: 45px;
}
.personal__name .item {
  font-family: var(--medium-font);
  font-size: 24px;
  line-height: 32px;
}
@media (max-width: 424px) {
  .personal__name {
    margin-bottom: 30px;
  }
}
/* Tabs */
.personal__tabs {
  display: flex;
  align-items: center;
  overflow-x: auto;
  margin: -15px;
}
.personal__tabs::-webkit-scrollbar {
  display: none;
}
.personal__tab {
  padding: 15px;
  white-space: nowrap;
  font-family: var(--medium-font);
  font-size: 18px;
  line-height: 20px;
  color: #95A6B3;
  cursor: pointer;
}
.personal__tab--active {
  color: #232427;
}
/* Data Tab */
.personal__data-form {
  display: flex;
  flex-wrap: wrap;
}
.personal__data-input {
  width: 33.33%;
  padding-right: 20px;
}
.personal__phone {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.personal__newsletter {
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 20px;
}
.personal__newsletter label {
  margin-bottom: 20px;
  width: 50%;
}
.personal__tooltip {
  position: relative;
  font-size: 18px;
  color: #BEC8D0;
  transition: color .3s;
  cursor: pointer;
}
.personal__tooltip:hover {
  color: var(--main-color);
}
.personal__tooltip-inner {
  display: none;
  position: absolute;
  top: 30px;
  right: -10px;
  z-index: 1;
  width: 340px;
  padding: 20px;
  background-color: #FFF;
  border: 1px solid #E1E4E7;
  box-shadow: 0 10px 25px rgba(184, 202, 212, .33);
  border-radius: 6px;
  font-family: var(--regular-font);
  font-size: 14px;
  line-height: 20px;
  color: #232427;
}
.personal__phone .personal__tooltip-inner {
  width: 240px;
}
/* arrow-up */
.personal__tooltip-inner::before {
  content: '';
  display: block;
  position: absolute;
  right: 10px;
  bottom: 100%;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom-color: #E1E4E7;
}
.personal__tooltip-inner::after {
  content: '';
  display: block;
  position: absolute;
  right: 11px;
  bottom: 100%;
  width: 0;
  height: 0;
  border: 9px solid transparent;
  border-bottom-color: #FFF;
}
.personal__tooltip:hover .personal__tooltip-inner {
  display: block;
}
@media (max-width: 1400px) {
  .personal__tooltip-inner {
    width: 280px;
  }
}
@media (max-width: 991px) {
  .personal__title {
    font-size: 20px;
    line-height: 32px;
  }
  .personal__data-input {
    width: 100%;
    padding-right: 0;
  }
  .personal__data-input + .personal__data-input {
    margin-top: 20px;
  }
  .personal__newsletter label {
    margin-bottom: unset;
    width: unset;
  }
}
/* Bonus Tab */
.personal__container {
  background-color: #FFF;
  box-shadow: 0 10px 35px rgba(155, 178, 190, .2);
  border-radius: 8px;
}
.personal__block {
  padding: 30px 20px;
}
.personal__block-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.personal__block-data {
  padding-left: 90px;
  background: 10px center / contain no-repeat;
}

.personal__block-data--bonus {
  background-image: url('../assets/images/cabinet/personal-bonus.png');
}
.personal__block-title {
  display: flex;
  align-items: center;
  font-family: var(--regular-font);
  font-size: 16px;
}
.personal__block-title .personal__tooltip {
  margin-left: 10px;
}
.personal__block-count {
  margin-top: 5px;
  font-family: var(--medium-font);
  font-size: 32px;
  line-height: 32px;
}
.personal__block-count span {
  white-space: nowrap;
}
.personal__block-links {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: right;
}
.personal__block-links .base-link + .base-link {
  margin-top: 10px;
}
.personal__block > .base-link {
  display: block;
  margin-top: 20px;
  text-align: right;
}
.transactions {
  margin-top: 50px;
  width: 100%;
  display: grid;
  font-family: var(--regular-font);
  font-size: 14px;
  line-height: 24px;
  color: #232427;
}
.transactions__title {
  font-family: var(--medium-font);
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 15px;
}
.transactions .loader {
  margin: 15px 0;
}
.transactions ul {
  overflow: auto;
  max-height: 40vh;
  padding-right: 15px;
}
.transactions li {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
}
.transactions__tran-type {
  font-family: var(--medium-font);
  font-size: 18px;
  line-height: 28px;
}
.transactions__date {
  font-family: var(--regular-font);
  font-size: 14px;
  color: #7C90A0;
}
.transactions__amount {
  font-family: var(--medium-font);
  font-size: 18px;
  line-height: 28px;
}
.transactions .base-link {
  text-align: right;
}
.personal__certificates {
  margin-top: 50px;
}
.personal__certificates-links .base-btn {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .personal__block-header {
    flex-direction: column;
  }
  .personal__block-data {
    padding-left: 70px;
    background-position-x: left;
    background-size: 55px;
  }
  .personal__block-links {
    margin-top: 30px;
  }
  .transactions {
    padding-right: 0;
  }
}
@media (max-width: 424px) {
  .personal__block-links {
    text-align: left;
  }
  .transactions {
    margin-top: 20px;
  }
}
/* Insurance Tab */
.insurance-card-wrapper {
  background-color: #EDF2F5;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
}
.insurance-card {
  background: #FFF;
  border-radius: 6px;
  padding: 20px;
}
.insurance-card__insurer {
  margin-bottom: 20px;
}
.insurance-card__number {
  font-family: var(--medium-font);
  font-size: 20px;
  line-height: 20px;
  color: #232427;
  margin-bottom: 10px;
}
.insurance-card__holder {
  font-family: var(--regular-font);
  font-size: 16px;
  line-height: 20px;
  color: #28292B;
}
@media (min-width: 991px) {
  .insurance-card {
    width: 100%;
  }
  .insurance-card-wrapper {
    padding: 65px;
  }
}
/* Relatives Tab */
.personal__relatives-text {
  font-family: var(--regular-font);
  font-size: 14px;
  line-height: 20px;
  color: #95A6B3;
}
.relatives-table {
  width: 100%;
}
.relatives-table__id,
.relatives-table__action {
  font-family: var(--regular-font);
  font-size: 14px;
  line-height: 20px;
  color: #95A6B3;
}
.relatives-table td {
  padding: 7px 0;
}
.personal__relatives .base-btn {
  margin-top: 35px;
}
@media (min-width: 991px) {
  .personal__relatives-text {
    width: 50%;
    margin-bottom: 35px;
  }
}
/* Feed card details */
.feed-details {
  width: calc(100% - 300px);
  position: fixed;
  overflow-y: scroll;
  left: 0;
  top: 0;
  bottom: 0;
  padding: 25px 0 100px;
  background-color: #FFF;
  border-bottom: 1px solid #E1E4E7;
  z-index: 100;
}
.feed-details__documents,
.feed-details__feedback,
.feed-details__specialist,
.feed-details__map {
  padding-top: 40px;
}
.feed-details .title {
  padding-bottom: 5px;
  border-bottom: 1px solid #E2E9ED;
  margin-bottom: 15px;
  font-family: var(--medium-font);
  font-size: 12px;
  line-height: 26px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #95A6B3;
}
.feed-details__header {
  display: flex;
  justify-content: space-between;
}
.feed-details__header h2 {
  font-family: var(--medium-font);
  font-size: 24px;
  line-height: 32px;
  max-width: 80%;
}
.feed-details__service {
  font-family: var(--regular-font);
  font-size: 16px;
  line-height: 28px;
  margin-top: 5px;
}
.feed-details__return {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F4F5F7 url('../assets/images/cabinet/return.svg') center no-repeat;
  cursor: pointer;
}
.feed-details__links {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 15px;
}
.feed-details__links-controls {
  margin-left: auto;
}
.feed-details__links .base-link {
  display: inline-block;
  font-size: 13px;
  line-height: 24px;
}
.feed-details__links .base-link + .base-link {
  margin-left: 25px;
}
.feed-details__status {
  margin-right: 30px;
  font-family: var(--medium-font);
}
.feed-details__status > i {
  margin-right: 10px;
  line-height: 20px;
  color: #BFD2E2
}
.feed-details__status > .icon-check-round {
  color: #27AE60;
}
.feed-details__price {
  font-family: var(--medium-font);
}
.feed-details__price > .icon-price {
  margin-right: 10px;
  line-height: 20px;
  color: #BFD2E2
}
.feed-details__document {
  padding: 15px 15px 15px 50px;
  background: #F4F5F7 url('../assets/images/cabinet/record-attachment.svg') left 15px center no-repeat;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--medium-font);
  font-size: 14px;
  line-height: 24px;
  cursor: pointer;
}
.feed-details__document + .feed-details__document {
  margin-top: 15px;
}
.feed-details__attachment {
  font-family: var(--medium-font);
  font-size: 12px;
  line-height: 20px;
  color: #7C90A0;
}
.feed-details__grades {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.feed-details__grades-title {
  min-width: 197px;
}
.record-grade{
  margin-right: 5px;
  font-size: 30px;
  line-height: 30px;
  cursor: pointer;
  padding: 5px;
  border: 1px solid transparent;
  border-radius: 12px;
}
.record-grade:hover {
  background-color: #EDF2F5;
}
.record-grade-checked {
  background-color: var(--extra-light-color);
  border: 1px solid var(--main-color);
}
.record-grade img{
  width: 50px;
}
.grade-error{
  margin-top: 10px;
  color: red;
  display: inline-block;
}
.feedback-aspects {
  margin-top: 15px;
  margin-bottom: 15px;
}

.feedback-aspects-title {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--main-color);
}

.feedback-aspects-list label {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
}

.feedback-aspects-list input[type="checkbox"] {
  margin-right: 8px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.feed-details__feedback textarea {
  margin-top: 15px;
  font-family: var(--regular-font);
  font-size: 16px;
  line-height: 26px;
  min-height: 90px;
}
.feed-details__feedback textarea::placeholder {
  color: #7C90A0;
}
.feed-details__specialist-data {
  display: flex;
  align-items: center;
}
.feed-details__description {
  flex: 1;
  cursor: pointer;
}
.feed-details__specialist-image {
  background: #EDF2F5 url('../assets/images/specialist-placeholder.png') center 5px no-repeat;
  background-size: contain;
  border-radius: 12px;
  width: 85px;
  height: 85px;
  margin-right: 20px;
}
.feed-details__specialist-name {
  font-family: var(--medium-font);
  font-size: 14px;
  line-height: 20px;
  transition: color .3s;
}
.feed-details__description:hover .feed-details__specialist-name {
  color: var(--main-color);
}
.feed-details__specialist-speciality {
  font-family: var(--regular-font);
  font-size: 14px;
  line-height: 20px;
  color: #7C90A0;
  margin-top: 10px;
  transition: color .3s;
}
.feed-details__description:hover .feed-details__specialist-speciality {
  color: #232427;
}
.feed-details__specialisation {
  margin-top: 25px;
}
.feed-details__specialisation h4 {
  font-family: var(--bold-font);
  font-size: 14px;
  line-height: 20px;
}
.feed-details__address {
  font-family: var(--regular-font);
  font-size: 14px;
  line-height: 24px;
}
.feed-details__map .map__block {
  margin-top: 10px;
  height: 300px;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
@media (min-width: 1400px) {
  .feed-details__return {
    position: absolute;
    left: 65px;
  }
}
@media (max-width: 991px) {
  .feed-details__feedback textarea {
    min-height: 50px;
  }
  .feed-details__specialist {
    padding-top: 50px;
  }
  .feed-details__map .map__block {
    background-size: cover;
  }
  .feed-details__grades {
    justify-content: left;
  }
  .feed-details__grades label {
    padding: 10px 15px 10px 15px;
    margin-right: 5px;
  }
}
@media (max-width: 767px) {
  .feed-details__links {
    flex-direction: column;
    align-items: unset;
  }
  .feed-details__price {
    margin-top: 10px;
  }
  .feed-details__links-controls {
    margin-top: 10px;
    margin-left: unset;
  }
  .feed-details__map .map__block {
    height: 140px;
  }
}
@media (max-width: 560px) {
  .feed-details__grades-title {
    max-width: 149px;
    min-width: 149px;
  }
}
@media (max-width: 490px) {
  .feed-details__grades {
    flex-wrap: wrap;
  }
  .feed-details__grades-title {
    max-width: none;
    min-width: auto;
    width: 100%;
  }
}
.map-modal {
  position: fixed;
  width: calc(100% - 300px);
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: none;
}
.map-modal--active {
  display: block;
}
.map-modal #map {
  width: 100%;
  height: 100vh;
}
.map-modal__close {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #7C90A0B3 url('../assets/images/cabinet/return-white.svg') center no-repeat;
  cursor: pointer;
  z-index: 5;
}
@media (max-width: 991px) {
  .feed-details,
  .map-modal {
    width: 100%;
  }
}
/* payment_bonuses */
.payment_bonuses {
  background: #FFF;
  border-radius: 8px;
  z-index: 102;
}
.payment_bonuses__inner {
  text-align: center;
}
.payment_bonuses__title {
  font-family: var(--medium-font);
  font-size: 24px;
  line-height: 32px;
  color: #232427;
}
.payment_bonuses__description {
  font-size: 14px;
  line-height: 24px;
  padding-bottom: 10px;
}
.payment_bonuses__input {
  position: relative;
}
.payment_bonuses__input-write-off {
  position: absolute;
  font-family: var(--bold-font);
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--main-color);
  right: 15px;
  top: 15px;
  cursor: pointer;
}
.payment_bonuses__input-write-off:active {
  top: 17px;
}
/* Chrome, Safari, Edge, Opera */
input[name=bonuses]::-webkit-outer-spin-button,
input[name=bonuses]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[name=bonuses] {
  -moz-appearance: textfield;
}
.payment_bonuses .popup__row.popup__row--validatio {
  text-align: left;
  padding-bottom: 15px;
}
/* Contacts page */
.contacts-page_list .phone-box__item {
  padding: 10px 0;
}
.contacts-page .phone-box__phone-number {
  color: var(--main-color);
}
.contacts-page #contacts-map {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  margin-bottom: 3.5rem;
}
.contacts-page .contacts-page_list {
  margin-top: 65px
}
.contacts-page .contacts_button-container {
  margin: auto;
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  top: 70px;
  background: white;
  display: flex;
  max-width: 450px;
  cursor: pointer;
}
@media (min-width: 991px) {
  .contacts-page .contacts_button-container {
    top: 100px;
    left: -300px;
    right: 0;
  }
  .contacts-page .contacts-page_list {
    margin-top: 85px
  }
  .contacts-page #contacts-map {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 300px;
    width: calc(100% - 300px);
    margin-bottom: 0;
  }
}
.contacts-page .toggle-button {
  font-family: var(--medium-font);
  font-size: 14px;
  line-height: 20px;
  border: 1px solid rgba(144, 158, 170, .3);
}
.contacts-page .toggle-button_active {
  border-color: var(--main-color);
}
.contacts-page .contact-list {
  margin-top: 20px;
}
.contacts-page .contact-list__item {
  display: flex;
  align-items: center;
  border-top: 1px solid #E2E9ED;
  justify-content: space-between;
}
.contacts-page .contact-list__item .info-wrapper {
  padding: 20px 10px 20px 0;
}
.contacts-page .contact-list__item .name {
  font-family: var(--medium-font), sans-serif;
  line-height: 32px;
  color: #232427;
}
.contacts-page .contact-list__item .tel {
  font-family: var(--regular-font), sans-serif;
  line-height: 32px;
}
.contacts-page .contact-list__item .schedule {
  font-family: var(--regular-font), sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: #95A6B3;
}
.contacts-page .license-button {
  display: inline-block;
  padding: 20px 0 20px 35px;
  background: url('../assets/images/icons/conclusion_orange.svg') left center no-repeat;
}
.contacts-page .distance-block {
  background-image: url(../assets/images/cabinet/vector.png);
  background-repeat: no-repeat;
  background-position: top;
  padding-top: 25px;
}
.phone-box__note {
  font-size: 12px;
  line-height: 32px;
  color: #95A6B3;
}
/* Contacts map */
.zoom {
  display: flex;
  flex-direction: column;
  width: 40px;
  box-shadow: 0 4px 4px #4F4F4F1A;
  border-radius: 90px;
}
.zoom__in,
.zoom__out {
  height: 45px;
  padding: 0;
  background-color: #FFF;
  border: none;
  text-align: center !important;
  font-size: 16px;
  color: var(--main-color);
}
.zoom__in:active,
.zoom__out:active {
  background-color: #EDF3F6
}
.zoom__in {
  border-radius: 90px 90px 0 0;
}
.zoom__out {
  border-radius: 0 0 90px 90px;
}
ymaps[class*=copyright] {
  display: none;
}
#modalPaymentsInfo .popup__row {
  font-size: 14px;
  line-height: 24px;
}
#modalPaymentsInfo .popup__row-title {
  font-family: var(--medium-font);
  font-size: 16px;
  margin-bottom: 15px;
}
#modalPaymentsInfo .popup__row--footer {
  font-size: 12px;
  line-height: 18px;
  color: #7C90A0;
}
#modalPaymentsInfo .dot-list {
  margin-left: 0;
  margin-bottom: 60px;
}
#modalPaymentsInfo .popup__row--separator {
  border-bottom: 1px solid #E2E9ED;
  margin: 40px 45px 30px;
}
@media (max-width: 991px) {
  #modalPaymentsInfo .popup__row--separator {
    margin-right: 15px;
    margin-left: 15px;
  }
}
/* App Changes */
.app-changes .app-changes__overlay {
  display: block;
  position: fixed;
  overflow: hidden;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: .5;
  z-index: 101;
}
.app-changes .app-changes__close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 16px;
  height: 16px;
  background-image: url(../assets/images/icons/popup-close.png);
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  background-color: transparent;
  cursor: pointer;
  z-index: 102;
}
.app-changes .app-changes__container {
  touch-action: pan-y;
  background: #FFF;
  position: fixed;
  bottom: 0;
  z-index: 1002;

  width: 100%;
  border-radius: 12px 12px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(120%);
  transition: transform .5s;
}
.app-changes .app-changes__container.app-changes__container--collapse {
  transform: translateY(0);
}
.app-changes .app-changes__control {
  background: #E2E9ED;
  border-radius: 4px;
  width: 32px;
  height: 4px;
  margin: 12px 0 30px;
}
.app-changes .app-changes__title {
  font-family: var(--medium-font), sans-serif;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: #232427;
  margin-top: 20px;
}
.app-changes .app-changes__text {
  font-size: 14px;
  line-height: 20px;
  padding: 15px 15px 0 25px;
  color: #232427;
  margin-top: 20px;
}
.app-changes .app-changes__button {
  width: 250px;
  margin: 30px;
}
.no-scroll {
  overflow: hidden;
}
/* Favorites */
.favorite-page {
  margin-top: 40px;
}
.favorite__title {
  font-family: var(--medium-font);
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 30px;
}
.favorite__tabs {
  display: flex;
  margin-bottom: 40px;
}
.favorite__tab {
  font-family: var(--medium-font);
  font-size: 18px;
  line-height: 20px;
  color: #95A6B3;
  cursor: pointer;
}
.favorite__tab + .favorite__tab {
  margin-left: 30px;
}
.favorite__tab--active {
  color: #232427;
}
.favorite__block-title {
  font-family: var(--medium-font);
  font-size: 12px;
  line-height: 26px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #95A6B3;
  margin-bottom: 20px;
}
.favorite-card + .favorite-card {
  margin-top: 15px;
}
.favorite-card:last-child {
  margin-bottom: 40px;
}
.favorite-card__сontent {
  background-color: #FFF;
  border-radius: 6px;
  padding: 15px 80px 15px 20px;
  position: relative;
  max-width: 100%;
  display: flex;
}
.favorite-card__image {
  object-fit: cover;
  object-position: center;
  width: 56px;
  height: 56px;
  padding: 10px;
  margin-right: 20px;
  background: #EDF2F5 center 5px no-repeat;
  border-radius: 12px;
}
.favorite-card__image--photo {
  padding: 4px 2px 0;
}
.favorite-card__image.favorite-card__not--image{
  object-fit: contain;
  height: 56px;
  width: 56px;
}
.favorite-card__description {
  flex: 1;
}
.favorite-card__name {
  font-size: 16px;
  line-height: 20px;
  color: #232427;
  cursor: pointer;
}
.favorite-card__description {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: .02em;
  color: #7C90A0;
}
.favorite-card__description {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.favorite-card__record-info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-end;
}
.favorite-card__price {
  font-family: var(--medium-font);
  font-size: 16px;
  line-height: 20px;
  text-align: right;
  color: #232427;
}
@media (max-width: 767px) {
  .favorite-card__сontent {
    flex-wrap: wrap;
  }
  .favorite-card__record-info {
    flex-basis: 100%;
    margin-top: 25px;
    padding-left: 75px;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (max-width: 424px) {
  .favorite-card__сontent {
    padding-right: 20px;
  }
}
/* Password modal */
.feed__filter-profile {
  margin-left: auto;
}
.feed__filter-profile .item {
  font-family: var(--regular-font);
  font-size: 14px;
}
.feed__tooltip-container {
  font-size: 16px;
}
.feed__tooltip-container .tooltip-link {
  text-decoration: none;
  color: #95A6B3;
  vertical-align: baseline;
}
.tooltip-wrap:hover .tooltip-link {
  color: var(--main-color);
}
.feed__tooltip-container .tooltip__text {
  font-family: var(--regular-font);
  font-size: 12px;
  line-height: 18px;
  color: #7C90A0;
}
.feed__tooltip-container a {
  color: var(--main-color);
}
.feed__tooltip-container .tooltip-bottom {
  right: -150px;
  padding: 20px;
  width: 250px;
  z-index: 5;
}
.selectize-control span {
  font-size: 14px;
  line-height: 24px;
  color: #7C90A0;
}
.feed__filters .flatpickr-wrapper {
  margin-right: 35px;
}
@media (max-width: 767px) {
  .feed__filter-profile {
    margin-left: 0;
    margin-top: 5px;
  }
  .feed__filters .base-checkbox {
    margin-top: 15px;
  }
  .feed__filters .base-checkbox__text {
    padding-left: 30px;
  }
  .feed__filters .base-checkbox__text::before {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 425px) {
  .feed__filters {
    margin-top: 24px;
  }
}
.exit-demo {
  border-radius: unset;
}
@media (min-width: 425px) {
  .exit-demo {
    display: none;
  }
}
.notification__info-message {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 10px;
  border-bottom: 1px solid #EDF2F5;
  padding: 10px;
}
.notification__info-message--title {
  font-size: 16px;
  line-height: 24px;
  font-family: var(--medium-font), sans-serif;
  position: relative;
}
.notification__info-message--title i {
  font-size: 18px;
  color: #BEC8D0;
  position: absolute;
}
.notification__info-message--title i.icon-cabinet-notification {
  left: -20px;
  top: 2px;
}
.notification__info-message--title i.line-through {
  top: 20px;
  left: -20px;
}
.notification__info-message--title i.line-through::after {
  content: "";
  position: absolute;
  border: 1px solid #FFF;
  width: 20px;
  transform: rotate(-45deg);
  transform-origin: 0% 0%;
}
.icon-cabinet-notification__container {
  position: relative;
}
.icon-cabinet-notification__container i.line-through {
  top: 20px;
  left: -20px;
}
.icon-cabinet-notification__container i.line-through::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  border: 1px solid #FFF;
  width: 20px;
  transform: rotate(-45deg);
  transform-origin: 0% 0%;
}
.notification__info-message--description {
  margin-top: 15px;
  font-size: 14px;
  line-height: 20px;
  font-family: var(--regular-font);
}
.notification__info-message > button {
  margin-top: 15px;
}
.notification-toggle__container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.notification-toggle__card {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: baseline;
  padding: 32px 0;
  border-bottom: 1px solid #EDF2F5;
}
.toggle-card__description {
  display: flex;
  flex-direction: column;
}
.toggle-card__description-text {
  font-size: 14px;
  font-family: var(--regular-font);
  line-height: 18px;
}
.toggle-card__description-text--title {
  font-size: 18px;
  font-family: var(--medium-font), sans-serif;
  line-height: 32px;
}
.toggle-card__control {
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.toggle-card__control > .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
  user-select: none;
}
.toggle-card__control > .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-card__control .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #CCC;
  -webkit-transition: .4s;
  transition: .4s;
}
.toggle-card__control .slider::before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  bottom: 1px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
.toggle-card__control input:checked + .slider {
  background-color: var(--main-color);
}
.toggle-card__control input:focus + .slider {
  box-shadow: 0 0 1px var(--main-color);
}
.toggle-card__control input:checked + .slider::before {
  -webkit-transform: translateX(23px);
  -ms-transform: translateX(23px);
  transform: translateX(23px);
}
.toggle-card__control .slider.round {
  border-radius: 53px;
}
.toggle-card__control .slider.round::before {
  border-radius: 50%;
}

.settings-icon-container > i {
  font-size: 16px;
}

.settings-icon-container:hover > i {
  color: #BEC8D0;
}

.settings-icon-container.active:hover > i {
  color: var(--main-color);
}

.close-icon-container > i {
  font-size: 14px;
}

.notification-control-icon {
  font-size: 16px;
}

.notification-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.notification-title__text {
  font-family: var(--medium-font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}

.notification-title__count {
  background: var(--second-main-color);
  border-radius: 80px;
  height: 20px;
  padding: 6px;
  display: flex;
  align-items: center;
  font-size: 12px;
  color: white;
  font-weight: bold;
}
.notification-header__controls {
  display: flex;
  gap: 15px;
  align-items: center;
}
