.tx-color-main {
  color: #325F48;
}

.tx-color-main-light {
  color: #3a835e;
}

.tx-color-dark {
  color: #1E1E1E;
}

.tx-color-light {
  color: #FFFFFF;
}

.tx-color-grey {
  color: #787878;
}

.tx-color-grey_light {
  color: #C8C8C8;
}

.tx-color-grey_bg {
  color: #F8F8F8;
}

.bg-color-main {
  background: #325F48;
}

.bg-color-main-light {
  background: #3a835e;
}

.bg-color-main-dark {
  background: #1E1E1E;
}

.bg-color-main-light {
  background: #FFFFFF;
}

.bg-color-main-grey {
  background: #787878;
}

.bg-color-main-grey_light {
  background: #C8C8C8;
}

.bg-color-main-grey_bg {
  background: #F8F8F8;
}

#main-content {
  display: flex;
  flex-direction: column;
}
#main-content #header-full {
  width: 100%;
  z-index: 9;
  background: #FFFFFF;
  border-bottom: 1px solid #F8F8F8;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
}
#main-content #header-full #header {
  display: flex;
  align-items: center;
  padding: 6px 0;
  position: relative;
}
#main-content #header-full #header .logo-content {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
}
#main-content #header-full #header .logo-content #logo {
  height: 48px;
}
#main-content #header-full #header .logo-content .logo-text {
  font-size: 13px;
  line-height: 16px;
  color: #325F48;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  width: max-content;
  max-width: 194px;
  min-height: 38px;
  font-weight: 500;
}
#main-content #header-full #header .logo-content .logo-text:hover {
  background-color: #F8F8F8;
}
#main-content #header-full #header .logo-content .logo-text .logo-select {
  top: 100%;
  position: absolute;
  width: max-content;
  min-width: 100%;
  left: 0;
  background: white;
  box-shadow: 4px 0 10px 0 rgba(30, 30, 30, 0.1);
  padding: 6px 0;
  display: none;
  flex-direction: column;
  gap: 4px;
  box-sizing: border-box;
  border-radius: 4px;
}
#main-content #header-full #header .logo-content .logo-text .logo-select .branch-item {
  padding: 6px;
  display: flex;
  gap: 6px;
  align-items: center;
}
#main-content #header-full #header .logo-content .logo-text .logo-select .branch-item-logo {
  width: 48px;
  height: 28px;
  flex-shrink: 0;
}
#main-content #header-full #header .logo-content .logo-text .logo-select .branch-item-logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
#main-content #header-full #header .logo-content .logo-text .logo-select .branch-item-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-width: 170px;
}
#main-content #header-full #header .logo-content .logo-text .logo-select .branch-item:hover {
  background: #F8F8F8;
}
#main-content #header-full #header .logo-content .logo-text:hover .logo-select {
  display: flex;
}
#main-content #header-full #header .logo-content .down-button {
  height: 100%;
  display: flex;
  align-items: center;
}
#main-content #header-full #header .logo-content .down-button svg {
  fill: #325F48;
}
#main-content #header-full #header #menu-button {
  display: none;
}
#main-content #header-full #header #header-menu {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
  position: relative;
  gap: 16px;
}
#main-content #header-full #header #header-menu .menu-item {
  padding: 2px 0 2px;
  font-size: 14px;
  color: #325F48;
  font-family: Arial-bold;
  cursor: pointer;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
}
#main-content #header-full #header #header-menu .menu-item:after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #3a835e;
  left: 0;
  bottom: 0;
  border-radius: 2px;
  transition: width 0.2s;
}
#main-content #header-full #header #header-menu .menu-item:hover {
  color: #3a835e;
  border-bottom-color: #3a835e;
}
#main-content #header-full #header #header-menu .menu-item:hover:after {
  width: 100%;
}
#main-content #header-full #header #header-menu .menu-item.menu-item-clinic {
  margin-left: auto;
  margin-right: 24px;
  padding: 8px 10px;
  background: #325F48;
  border-radius: 6px;
  color: white;
}
@media only screen and (max-width: 1024px) {
  #main-content #header-full #header #header-menu .menu-item.menu-item-clinic {
    margin-right: unset;
    margin-left: unset;
  }
}
#main-content #header-full #header #header-menu #menu-close {
  display: none;
}
#main-content #header-full #header #header-menu #header-section {
  display: flex;
  align-items: center;
  width: fit-content;
}
#main-content #header-full #header #header-menu #header-section .section-menu-item {
  margin-right: 12px;
  padding: 6px;
  font-size: 12px;
  cursor: pointer;
  color: #325F48;
}
#main-content #header-full #header #header-menu #header-section .section-menu-item:hover {
  color: #3a835e;
}
#main-content #header-full #header #header-menu #header-section #lang-block {
  margin: auto;
  top: 0;
  bottom: 0;
}
#main-content #content {
  height: 300px;
  width: 100%;
  background: grey;
}
#main-content #footer {
  border-top: 1px solid #C8C8C8;
  width: 100%;
  padding-top: 36px;
  background: #F8F8F8;
}
#main-content #footer #footer-content {
  display: flex;
  gap: 24px;
}
#main-content #footer #footer-content .footer-item {
  width: 100%;
}
#main-content #footer #footer-content .footer-item:not(.footer-contacts) {
  max-width: 256px;
}
#main-content #footer #footer-content .footer-item .footer-title {
  font-family: Arial-bold;
  font-size: 16px;
}
#main-content #footer #footer-content .footer-item .footer-list-item {
  margin-top: 12px;
  padding-left: 20px;
  position: relative;
  line-height: 20px;
  cursor: pointer;
  width: fit-content;
}
#main-content #footer #footer-content .footer-item .footer-list-item:after {
  width: 8px;
  height: 8px;
  border-radius: 6px;
  background: #325F48;
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  margin: auto;
}
#main-content #footer #footer-content .footer-item .footer-list-item:hover {
  color: #3a835e;
}
#main-content #footer #footer-content .footer-item .footer-list-item:hover:after {
  background: #3a835e;
}
#main-content #footer #footer-content .footer-item.footer-contacts #footer-social-icons {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
#main-content #footer #footer-content .footer-item.footer-contacts #footer-social-icons a:hover svg path {
  fill: #3a835e;
}
#main-content #footer #footer-content .footer-item.footer-contacts .footer-list-item-a.footer-address {
  margin-top: 0;
}
#main-content #footer #footer-line {
  width: 100%;
  padding: 12px 0;
  background: #325F48;
  font-size: 12px;
  text-align: center;
  color: #FFFFFF;
}
#main-content #footer #footer-line a:hover {
  color: #ff325c;
}
#main-content .footer-list-item-a {
  margin-top: 12px;
  line-height: 22px;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 24px;
  padding-left: 32px;
  max-width: 314px;
}
#main-content .footer-list-item-a:after {
  display: none;
}
#main-content .footer-list-item-a.footer-address {
  background-image: url("../images/build.svg");
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
#main-content .footer-list-item-a.footer-address svg {
  width: 20px;
  height: 20px;
  color: #0c63e3;
  flex-shrink: 0;
}
#main-content .footer-list-item-a.footer-phones {
  background-image: url("../images/phone.svg");
  white-space: pre-line;
}
#main-content .footer-list-item-a.footer-email {
  background-image: url("../images/email.svg");
}

@media only screen and (max-width: 1160px) {
  #main-content #header-full #header {
    display: flex;
    align-items: center;
    position: relative;
  }
  #main-content #header-full #header #logo {
    margin-left: auto;
  }
  #main-content #header-full #header .register-button {
    margin-left: auto;
  }
  #main-content #header-full #header .search-button.m {
    margin-left: 0;
  }
  #main-content #header-full #header .header-menu-line {
    justify-content: flex-end;
  }
  #main-content #header-full #header #menu-button {
    display: flex;
    align-items: center;
  }
  #main-content #header-full #header #menu-button svg {
    height: 30px;
    width: 30px;
  }
  #main-content #header-full #header #header-menu {
    position: fixed;
    left: -100%;
    transition: 0.2s left;
    top: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    flex-direction: column;
    margin: 0;
    align-items: center;
    justify-content: center;
    z-index: 99999;
  }
  #main-content #header-full #header #header-menu #menu-close {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    right: 9px;
  }
}
@media only screen and (max-width: 1160px) and (max-width: 768px) {
  #main-content #header-full #header #header-menu #menu-close {
    right: -2px;
  }
}
@media only screen and (max-width: 1160px) {
  #main-content #header-full #header #header-menu #menu-close svg {
    width: 24px;
    height: 24px;
    color: #325F48;
  }
}
@media only screen and (max-width: 1160px) {
  #main-content #header-full #header #header-menu #header-section {
    position: unset;
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  #main-content #header-full #header #header-menu #header-section .section-menu-item {
    padding: 12px 18px;
    margin-right: unset;
    font-size: 14px;
    color: #325F48;
    font-family: Arial-bold;
    cursor: pointer;
    text-transform: uppercase;
  }
  #main-content #header-full #header #header-menu #header-section .section-menu-item:hover {
    color: #3a835e;
  }
  #main-content #header-full #header #header-menu #header-section #lang-block {
    position: absolute;
    top: 12px;
  }
}
@media only screen and (max-width: 1160px) {
  body.menu-open #main-content #header-full {
    z-index: 999999;
  }
  body.menu-open #main-content #header-full #header #header-menu {
    left: 0;
  }
}
@media only screen and (max-width: 768px) {
  #main-content #footer #footer-content {
    flex-wrap: wrap;
  }
  #main-content #footer #footer-content .footer-item {
    width: calc(50% - 12px);
  }
}
@media only screen and (max-width: 768px) {
  #main-content #footer #footer-content .footer-item {
    width: 100%;
  }
}
body.scrolled #main-content #header-full {
  position: sticky;
  top: 0;
  animation-name: header-anim;
  animation-duration: 0.5s;
}
@keyframes header-anim {
  from {
    top: -94px;
  }
  to {
    top: 0;
  }
}

/*# sourceMappingURL=main-items.css.map */
