

/* Start:/local/components/styledent/appointment.form.new/templates/.default/style.css?175447997131915*/
@charset "UTF-8";
:root {
  --white: #fff;
  --primary-text-color: #0a0a0a;
  --primary-bg-color: var(--white);
  --secondary-bg-color: #f5f5f5;
  --violet: #5C068C;
  --font-family: Inter, sans-serif;
  --container-width: 1420px;
  --container-padding: 20px;
  --container-final-size: calc(
    var(--container-width) + (var(--container-padding) * 2)
  );
}

body,
html {
  padding: 0;
  margin: 0;
}

* {
  box-sizing: border-box;
  font-family: var(--font-family);
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--container-final-size);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.blueBtn {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 0 30px;
  height: 48px;
  min-height: 48px;
  border-radius: 12px;
  background-color: var(--violet);
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: var(--white);
  transition: opacity 0.3s ease;
}
.blueBtn.circle {
  width: 48px;
  min-width: 48px;
  max-width: 48px;
  padding: 12px;
  border-radius: 50%;
}
.blueBtn * {
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  white-space: nowrap;
}
.blueBtn:hover {
  opacity: 0.8;
}


.h1Title {
  font-size: 48px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0%;
  margin: 0;
  font-family: var(--font-family);
  color: var(--primary-text-color);
}
@media screen and (max-width: 768px) {
  .h1Title {
    font-size: 32px;
  }
}

.titleWithLine {
  display: flex;
  width: 100%;
  gap: 40px;
  align-items: center;
}
.titleWithLine h2 {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
  padding: 0;
}
.titleWithLine::after {
  content: "";
  display: flex;
  flex: 1 1 auto;
  height: 1px;
  background: rgba(10, 10, 10, 0.2392156863);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .titleWithLine::after {
    display: none;
  }
}

.defaultSection {
  display: flex;
  width: 100%;
  margin-bottom: 150px;
}
.defaultSection.gray {
  background: var(--secondary-bg-color);
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .defaultSection.gray {
    padding: 50px 0;
  }
}
@media screen and (max-width: 768px) {
  .defaultSection {
    margin-bottom: 50px;
  }
}

.text {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  margin: 0;
  color: var(--primary-text-color);
}
.text.w600 {
  font-weight: 600;
}
.text.w700 {
  font-weight: 700;
}
.text.h100 {
  line-height: 100%;
}
.text.h140 {
  line-height: 140%;
}
.text.s16 {
  font-size: 16px;
}
.text.s14 {
  font-size: 14px;
}
.text.s10 {
  font-size: 10px;
}
.text.s12 {
  font-size: 12px;
}
.text.s11 {
  font-size: 11px;
}
.text.s20 {
  font-size: 20px;
}
.text.s24 {
  font-size: 24px;
}
.text.s32 {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .text.as14 {
    font-size: 14px;
  }
  .text.as16 {
    font-size: 16px;
  }
  .text.as20 {
    font-size: 20px;
  }
}
.text.blue {
  color: var(--violet);
}
.text.white {
  color: var(--white);
}
.text.red {
  color: #e13320;
}
.text.center {
  text-align: center;
}
.text.opacity {
  opacity: 0.64;
}

.tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .tabs {
    flex-wrap: wrap;
  }
}

.customInput {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 56px;
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 16px;
  position: relative;
  transition: all 0.3s ease;
}
.customInput:has(input:focus) {
  background: transparent;
  border-color: rgba(10, 10, 10, 0.2392156863);
}
.customInput:has(textarea:focus) {
  border-color: rgba(10, 10, 10, 0.2392156863);
  background: transparent;
}
.customInput.error:not(.customInput.error:has(input:focus)) {
  background-color: rgba(225, 51, 32, 0.0784313725);
  border-color: #e13320;
}
.customInput.error:not(.customInput.error:has(input:focus)) .customInput__errorText {
  visibility: visible;
  opacity: 1;
}
.customInput.error:not(.customInput.error:has(input:focus)) .customInput__subInfo {
  opacity: 0;
}
.customInput__errorText {
  display: inline;
  font-weight: 500;
  font-size: 12px !important;
  line-height: 100%;
  color: #e13320 !important;
  position: absolute;
  top: calc(100% + 4px) !important;
  left: 0 !important;
  transition: all 0.3s ease;
  transform: none !important;
  visibility: hidden;
  opacity: 0;
}
.customInput:hover > span {
  transform: translateY(-20px);
  font-size: 12px;
  color: rgba(10, 10, 10, 0.6392156863);
}
.customInput textarea {
  resize: none;
  padding-top: 25px;
  height: auto;
  max-height: 200px;
}
.customInput:has(textarea) textarea:not(:-moz-placeholder-shown) ~ span {
  top: 8px;
  transform: none;
  font-size: 12px;
  color: rgba(10, 10, 10, 0.6392156863);
}
.customInput:has(textarea) textarea:focus ~ span, .customInput:has(textarea) textarea:not(:placeholder-shown) ~ span {
  top: 8px;
  transform: none;
  font-size: 12px;
  color: rgba(10, 10, 10, 0.6392156863);
}
.customInput:has(textarea):hover > span {
  top: 8px;
  transform: none;
  font-size: 12px;
  color: rgba(10, 10, 10, 0.6392156863);
}
.customInput input, .customInput textarea {
  display: flex;
  flex-grow: 1;
  background-color: transparent;
  border: none;
  padding-inline: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
}
.customInput input:not(:-moz-placeholder-shown) ~ span, .customInput textarea:not(:-moz-placeholder-shown) ~ span {
  transform: translateY(-20px);
  font-size: 12px;
  color: rgba(10, 10, 10, 0.6392156863);
}
.customInput input:focus ~ span, .customInput input:not(:placeholder-shown) ~ span, .customInput textarea:focus ~ span, .customInput textarea:not(:placeholder-shown) ~ span {
  transform: translateY(-20px);
  font-size: 12px;
  color: rgba(10, 10, 10, 0.6392156863);
}
.customInput input:focus, .customInput textarea:focus {
  outline: none;
}
.customInput input:not(:-moz-placeholder-shown) {
  padding-top: 10px;
}
.customInput input:focus, .customInput input:not(:placeholder-shown) {
  padding-top: 10px;
}
.customInput span {
  font-size: 16px;
  color: rgba(10, 10, 10, 0.3215686275);
  font-weight: 500;
  line-height: 100%;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  transform-origin: 0;
}
.customInput.gray {
  background: var(--secondary-bg-color);
  border: 1px solid rgba(10, 10, 10, 0.0784313725);
}
.customInput__symbolsCounter {
  position: absolute;
  top: calc(100% + 5px) !important;
  right: 0 !important;
  left: auto !important;
  width: -moz-fit-content;
  width: fit-content;
  transform: none !important;
  color: rgba(10, 10, 10, 0.6392156863) !important;
}
.customInput__subInfo {
  position: absolute;
  top: calc(100% + 10px) !important;
  left: 0 !important;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px !important;
  transform: none !important;
  color: rgba(10, 10, 10, 0.6392156863) !important;
  transition: all 0.3s ease;
}

.backdrop {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(10, 10, 10, 0.3019607843);
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.backdrop.active {
  visibility: visible;
  opacity: 1;
}

.scrollWrap {
  max-height: calc(100vh - 240px);
  overflow: auto;
  scrollbar-width: thin;
}

.adaptiveBlueBtnWrapper {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: start;
  padding: 10px 20px 0 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .adaptiveBlueBtnWrapper {
    display: flex;
  }
}
@media screen and (max-width: 425px) {
  .adaptiveBlueBtnWrapper button {
    width: 100%;
  }
}

.daysRadioBtn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  padding: 10px 12px;
  min-width: 85px;
  min-height: 56px;
  background: transparent;
  border: 1px solid rgba(10, 10, 10, 0.2392156863);
  transition: all 0.3s ease;
  border-radius: 12px;
  cursor: pointer;
}
.daysRadioBtn input {
  display: none;
}
.daysRadioBtn:has(input:checked) {
  border-color: #5C068C;
  background: #f2f2fb;
}
.daysRadioBtn:has(input:checked) span {
  color: #5C068C;
  opacity: 1;
}
.daysRadioBtn span {
  transition: all 0.3s ease;
}
.daysRadioBtn__opacitySpan {
  opacity: 0.64;
}

.timeRadioBtn {
  display: flex;
  align-items: center;
  height: 36px;
  padding: 0 12px;
  min-width: 70px;
  background: transparent;
  border: 1px solid #5C068C;
  transition: all 0.3s ease;
  border-radius: 12px;
  cursor: pointer;
}
.timeRadioBtn input {
  display: none;
}
.timeRadioBtn:has(input:checked) {
  border-color: #5C068C;
  background: #5C068C;
}
.timeRadioBtn:has(input:checked) span {
  color: #fff;
}
.timeRadioBtn span {
  color: #5C068C;
  transition: all 0.3s ease;
}

.customCheckbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.customCheckbox input {
  display: none;
}
.customCheckbox:has(input:checked) div svg:last-child {
  visibility: visible;
  opacity: 1;
}
.customCheckbox:has(input:checked) div svg:first-child {
  visibility: hidden;
  opacity: 0;
}
.customCheckbox div {
  width: 18px;
  min-width: 18px;
  height: 18px;
  position: relative;
}
.customCheckbox div svg {
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
}
.customCheckbox div svg:last-child {
  visibility: hidden;
  opacity: 0;
}
.customCheckbox div svg:first-child {
  visibility: visible;
  opacity: 1;
}
.customCheckbox a {
  color: #5C068C;
}


@media screen and (max-width: 1300px) {
  .makeAppointment .container {
    padding: 0 5px;
  }
}
.ma__wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 1300px) {
  .ma__wrap {
    align-items: center;
  }
  .ma__wrap h1 {
    display: none;
  }
}
.ma__content {
  display: flex;
  gap: 10px;
  max-height: 700px;
}
@media screen and (max-width: 1300px) {
  .ma__content {
    justify-content: center;
  }
}
.ma__banner {
  width: 100%;
  max-width: 340px;
  min-width: 340px;
  background: var(--violet);
  border-radius: 24px 0 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 700px;
  padding: 30px;
  background-position-x: center;
  background-position-y: bottom;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1300px) {
  .ma__banner {
    border-radius: 24px;
  }
}
@media screen and (max-width: 375px) {
  .ma__banner {
    padding: 20px;
    max-width: calc(100% - 10px);
    min-width: 0;
  }
}
.ma__bannerTextContent {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ma__form {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1 1 auto;
  background: var(--secondary-bg-color);
  border-radius: 0 24px 24px 0;
  position: relative;
}
@media screen and (max-width: 1300px) {
  .ma__form {
    display: none;
  }
}
.ma__formTop {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  padding: 10px 10px 0 10px;
}
.ma__formTop.hidden {
  display: none;
}
.ma__searchInput {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #0a0a0a;
  min-height: 48px;
  width: 100%;
  position: relative;
}
.ma__searchInput:has(input:focus) {
  border-bottom: 1px solid #5C068C;
}
.ma__searchInput:has(input:focus) > svg:first-child path, .ma__searchInput:has(input:focus) > svg:first-child circle {
  stroke: #5C068C;
}
.ma__searchInput:has(input:-moz-placeholder-shown) button {
  display: none;
}
.ma__searchInput:has(input:placeholder-shown) button {
  display: none;
}
.ma__searchInput svg {
  min-width: 24px;
}
.ma__searchInput button {
  width: 24px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  position: absolute;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 1;
  visibility: visible;
}
.ma__searchInput button:hover {
  opacity: 0.8;
}
@starting-style {
  .ma__searchInput button {
    opacity: 0;
    visibility: hidden;
  }
}
.ma__searchInput input {
  background: none;
  border: none;
  outline: none;
  height: 100%;
  width: 100%;
  padding: 0 30px 0 12px;
  font-size: 16px;
  font-weight: 500;
  color: #0a0a0a;
}
.ma__searchInput input:focus {
  outline: none;
}
.ma__topRadios {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  max-width: 330px;
}
.ma__relativeWrap {
  display: flex;
  width: 100%;
  height: 100%;
  max-height: 100%;
  position: relative;
  overflow: hidden;
}
.ma__formScrollableWrap {
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow: auto;
  scrollbar-width: thin;
  padding: 0 30px;
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateX(0);
  display: none;
}
.ma__formScrollableWrap.active {
  display: flex;
}
@starting-style {
  .ma__formScrollableWrap {
    opacity: 0;
    transform: translateX(200px);
  }
}
.ma__selectDirectionWrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
  padding: 20px 0;
  height: -moz-fit-content;
  height: fit-content;
}
.ma__selectDirectionItem {
  background: var(--white);
  border-radius: 16px;
  padding: 0 20px;
  min-height: 88px;
  width: 100%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  cursor: pointer;
}
.ma__selectDirectionItem span {
  transition: all 0.3s ease;
}
.ma__selectDirectionItem:hover span {
  color: #5C068C;
}
.ma__selectDirectionSpecialists {
  display: flex;
  gap: 10px;
  align-items: center;
}
.ma__selectDirectionSpecialists img, .ma__selectDirectionSpecialists div {
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ma__doctorSelect {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.ma__doctorSelectItem {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px 20px 10px 20px;
  border-radius: 24px;
  gap: 20px;
  background: var(--white);
}
.ma__doctorInfo {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 20px;
}
.ma__doctorImage {
  display: flex;
  width: 100px;
  height: 100px;
  max-height: 100px;
  min-width: 100px;
  border-radius: 50%;
  overflow: hidden;
}
.ma__doctorImage img {
  width: 100%;
  margin-top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.ma__doctorInfoContent {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.ma__doctorInfoTextWrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ma__doctorInfoLink {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 32px;
  background: #e0e2ff;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 100px;
  transition: all 0.3s ease;
  background-image: url(/images/appointment/exclamation.svg);
  background-repeat: no-repeat;
  background-position: 8px 4px;  
}
.ma__doctorInfoLink span {
  color: #5C068C;
}
.ma__doctorInfoLink:hover {
  opacity: 0.8;
}
.ma__doctorAccordions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.ma__doctorAccordions--white .ma__doctorAccordionItem {
  background: var(--white);
}
.ma__doctorAccordionItem {
  display: flex;
  flex-direction: column;
  border: none;
  background: #f5f5f5;
  border-radius: 16px;
}
.ma__doctorAccordionItem.active .ma__doctorAccordionBtn span {
  color: #5C068C;
}
.ma__doctorAccordionItem.active .ma__doctorAccordionBtn div span:last-child {
  transform: translate(-50%, -50%) rotate(0);
}
.ma__doctorAccordionItem.active .ma__doctorAccordionContent {
  padding: 0 20px 20px 20px;
}
.ma__doctorAccordionBtn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 20px;
  border: none;
  background: none;
  cursor: pointer;
}
.ma__doctorAccordionBtn span {
  transition: all 0.3s ease;
  text-align: left;
}
.ma__doctorAccordionBtn div {
  display: block;
  width: 24px;
  min-width: 24px;
  height: 24px;
  position: relative;
}
.ma__doctorAccordionBtn div span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 2px;
  background: #5C068C;
  border-radius: 4px;
}
.ma__doctorAccordionBtn div span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}
.ma__doctorAccordionContent {
  height: 0;
  padding: 0 20px 0 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ma__daysRadioGroup {
  display: flex;
  gap: 10px;
  align-items: center;
}
.ma__multipleSelectWrap {
  display: flex;
  width: 100%;
  position: relative;
  height: 48px;
}
.ma__multipleSelectWrap button {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid #0a0a0a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  cursor: pointer;
}
.ma__multipleSelectWrap button svg {
  transition: all 0.3s ease;
}
.ma__multipleSelectWrap select {
  display: none;
}
.ma__multipleSelectWrap.popup-active .ma__multipleSelectPopup {
  visibility: visible;
  opacity: 1;
}
.ma__multipleSelectWrap.popup-active button svg {
  transform: rotateX(180deg);
}
.ma__multipleSelectPopup {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 40px);
  background: var(--white);
  border: 1px solid rgba(10, 10, 10, 0.0784313725);
  border-radius: 16px;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 20px;
  z-index: 10;
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
}
.ma__multipleSelectPopupContent {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ma__multipleSelectPopupCheckbox {
  display: flex;
  width: 100%;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}
.ma__multipleSelectPopupCheckbox--exampleNode {
  display: none;
}
.ma__multipleSelectPopupCheckbox input {
  display: none;
}
.ma__multipleSelectPopupCheckbox:hover .ma__checkboxTextInfo span:first-child {
  color: #5C068C;
}
.ma__multipleSelectPopupCheckbox:has(input:checked) .ma__multipleSelectCheckedIcon {
  display: block;
}
.ma__multipleSelectPopupCheckbox:has(input:checked) .ma__multipleSelectUncheckedIcon {
  display: none;
}
.ma__multipleSelectCheckedIcon {
  display: none;
  height: 24px;
}
.ma__multipleSelectUncheckedIcon {
  display: block;
  height: 24px;
}
.ma__checkboxTextInfo {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ma__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 30px 20px 0;
}
.ma__tabs.hidden {
  display: none;
}
.ma__tabItem {
  display: flex;
  align-items: center;
  padding: 0 12px;
  min-height: 30px;
  background: transparent;
  border: 1px solid rgba(10, 10, 10, 0.1607843137);
  border-radius: 100px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ma__tabItem span {
  transition: all 0.3s ease;
}
.ma__tabItem.active {
  border-color: #5C068C;
  background: #5C068C;
}
.ma__tabItem.active span {
  color: #fff;
}
.ma__tabItem.active:hover span {
  color: #fff;
}
.ma__tabItem.hidden {
  display: none;
}
.ma__tabItem:hover span {
  color: #5C068C;
}
.ma__showPreparation {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background: transparent;
  border: none;
  cursor: pointer;
  background-image: url(/images/appointment/exclamation.svg);
  background-repeat: no-repeat;
  padding-left: 28px;
}
.ma__showPreparation:hover span {
  color: #5C068C;
}
.ma__showPreparation span {
  transition: all 0.3s ease;
}
.ma__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.3019607843);
  z-index: 11;
  border-radius: 0 24px 24px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.ma__backdrop.active {
  opacity: 1;
  visibility: visible;
}
.ma__searchPopupResults {
  background: var(--white);
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 16px;
  width: calc(100% + 40px);
  height: auto;
  max-height: calc(100vh - 400px);
  padding: 20px;
  overflow: auto;
  scrollbar-width: thin;
  z-index: 12;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.ma__searchPopupResults.active {
  visibility: visible;
  opacity: 1;
}
.ma__searchResultGroup {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.ma__searchResultGroup:last-child {
  margin-bottom: 0;
}
.ma__searchResultGroup ul {
  padding: 8px 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.ma__searchResultGroup ul.default {
  gap: 20px;
}
.ma__searchResultGroup ul.default a:hover {
  color: var(--violet);
}
.ma__searchResultGroup ul.default a:hover span {
  color: var(--violet);
}
.ma__searchResultGroup ul li {
  list-style: none;
}
.ma__searchResultGroup ul li::marker {
  display: none;
}
.ma__searchResultTitle {
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  color: rgba(10, 10, 10, 0.3215686275);
  text-transform: uppercase;
}
.ma__searchResultPeople {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 0;
}
.ma__searchResultPeople div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ma__searchResultPeople img {
  width: 40px;
  min-width: 40px;
  height: 40px;
  border: 1px solid #f5f5f5;
  border-radius: 50%;
  overflow: hidden;
}
.ma__searchResultPeople:hover img {
  border: 1px solid var(--violet);
}
.ma__searchResultPeople:hover div span:first-child {
  color: var(--violet);
}
.ma__searchResultPrice {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
  justify-content: space-between;
}
.ma__searchResultPrice span:last-child {
  white-space: nowrap;
}
.ma__formTopBgWrap {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 10px 36px 10px 20px;
  margin-bottom: -10px;
  background: transparent;
  border-radius: 16px;
  position: relative;
  z-index: 12;
  transition: all 0.3s ease;
}
.ma__formTopBgWrap.active {
  background: var(--white);
}
.ma__simpleSelectWrap {
  display: flex;
  min-width: 300px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  height: 56px;
}
.ma__simpleSelectWrap.disabled button {
  background: var(--secondary-bg-color);
  pointer-events: none;
  padding-bottom: 11px;
  border: 1px solid rgba(10, 10, 10, 0.0784313725);
}
.ma__simpleSelectWrap.disabled button svg {
  display: none;
}
.ma__simpleSelectWrap button {
  width: auto;
  min-width: 300px;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 13px 20px 7.5px 20px;
  border-radius: 16px;
  cursor: pointer;
  background: var(--white);
  height: 56px;
}
.ma__simpleSelectWrap button div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.ma__simpleSelectWrap button svg {
  transition: all 0.3s ease;
}
.ma__simpleSelectWrap select {
  display: none;
}
.ma__simpleSelectWrap.popup-active .ma__simpleSelectPopup {
  visibility: visible;
  opacity: 1;
}
.ma__simpleSelectWrap.popup-active button svg {
  transform: rotateX(180deg);
}
.ma__simpleSelectPopup {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(10, 10, 10, 0.0784313725);
  border-radius: 16px;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 20px;
  z-index: 10;
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
}
.ma__simpleSelectPopupContent {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ma__simpleSelectPopupCheckbox {
  display: flex;
  width: 100%;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
}
.ma__simpleSelectPopupCheckbox--exampleNode {
  display: none;
}
.ma__simpleSelectPopupCheckbox input {
  display: none;
}
.ma__simpleSelectPopupCheckbox:hover .ma__checkboxTextInfo span:first-child {
  color: #5C068C;
}
.ma__generalFormWrap {
  padding: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.ma__backBtn {
  background: none;
  border: none;
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}
.ma__infoWrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ma__infoFlex {
  display: flex;
  gap: 10px;
  width: 100%;
}
.ma__infoDefaultBlock {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
}
.ma__infoDoctor {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
}
.ma__infoDoctorAvatar {
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #f5f5f5;
  background: radial-gradient(352.31% 170.59% at 50% 44.41%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.ma__infoDoctorAvatar img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ma__infoDoctorTextContent {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ma__generalFormInputs {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: var(--white);
  border-radius: 24px;
  padding: 20px 20px 40px 20px;
}
.ma__generalFormInputs--dms {
  padding-bottom: 20px;
}
.ma__generalFormInputsFlex {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.ma__generalFormInputsFlex--withMargin {
  margin-bottom: 40px;
}
.ma__checkboxGroup {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ma__submitBtn {
  width: -moz-fit-content;
  width: fit-content;
}
.ma__generalFormErrorBlock {
  display: flex;
  gap: 20px;
  padding: 12px 20px;
  width: 100%;
  border: 1px solid #e13320;
  border-radius: 12px;
  align-items: center;
}
.ma__successWrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
  height: 100%;
  padding-block: 30px;
}
.ma__successTopContent {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ma__successAnketLinkWrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ma__successAnketLinkWrap a {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 12px;
}
.ma__successAnketLinkWrap a svg {
  transition: all 0.3s ease;
}
.ma__successAnketLinkWrap a:hover svg {
  transform: translateX(10px);
}
.ma__successBotContent {
  display: flex;
  gap: 30px;
  align-items: center;
}
.ma__successBotLinkWrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ma__successBotLinkWrap a svg {
  transition: all 0.3s ease;
}
.ma__successBotLinkWrap a {
  display: flex;
  align-items: center;
  gap: 12px;
  width: -moz-fit-content;
  width: fit-content;
}
.ma__successBotLinkWrap a:hover svg {
  transform: translateX(10px);
}/*# sourceMappingURL=index.css.map */


.ma__dateTimeWrapItems {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.ma__doctorSectionItem {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.hidden {
	display: none!important;
}

.ma__payment {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ma__daysRadioGroup:first-child {
	margin-bottom: 15px;
}

.timeRadioBtn.disabled {
	pointer-events: none;
	background-color: #0A0A0A14;
	border-color: #0A0A0A14;
}

.timeRadioBtn.disabled span {
	color: #0A0A0AA3;	
}

.ma__generalFormInputs--gray,
.ma__infoDoctor--gray,
.ma__infoDefaultBlock--gray {
	background-color: #F5F5F5;
}

.ma__generalFormInputs--gray {
	padding-bottom: 22px;
}

.ma__generalFormInputs--gray input[type="text"] {
	background-color: #fff;
	border-radius: 16px;
}

.ma__reservationFormTime {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-top: 10px;
}

.ma__reservationFormTimeSlots {
	display: flex;
	gap: 10px;
	align-items: center;
	margin: 10px auto 0 0;
}

.ma__simpleSelectWrap button:disabled {
	background-color: #F5F5F5;
	border: 1px solid #0A0A0A14;
}

.ma__simpleSelectWrap button:disabled svg {
	display: none;
}

.ma__daysRadioGroup {
	flex-wrap: wrap;
}

.customInput__symbolsCounterValue {
	font-style: normal;
}

.ma__reservationFormTimeSelector {
	position: relative;
}

.ma__reservationFormTimeTrigger {
	display: flex;
	align-items: center;
	background: #F5F5F5;
	border: 1px solid #0A0A0A14;
	border-radius: 8px;
	padding: 6px 10px;
	cursor: pointer;
}

.ma__reservationFormTimeTrigger svg {
	margin-left: 10px;
}

.ma__reservationFormTimeSelectorPopup {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #fff;
	padding: 10px;
	max-height: 240px;
	overflow-y: scroll;
	scrollbar-width: thin;
	line-height: 1.5;
}

.ma__reservationFormTimeSelectorPopup label {
	cursor: pointer;
}

.ma__reservationFormTimeSelectorPopup label input {
	display: none;
}
.ma__backBtnWrap {
	padding: 20px 0 0 24px;
}

.ma__backBtnWrap--padding {
	padding-bottom: 20px;
}

.ma__doctorAccordionContentGrid {
	transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ma__doctorAccordionContentGrid--loading {
	position: relative;
	min-height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

@keyframes spin { 
	from { 
		transform: rotate(0deg); 
	} 
	to { 
		transform: rotate(360deg); 
	}
}

.ma__doctorAccordionContentGrid--loading:before {
	display: block;
	width: 50px;
	height: 48px;
	background: url("/images/appointment/app-loader.svg");
	content: "";
    animation-name: spin;
    animation-duration: 4000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;	
}

.ma__searchResultLink {
	display: flex;
	width: 100%;
}

.outlinedBtn {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 0 30px;
  height: 48px;
  min-height: 48px;
  border-radius: 12px;
  background-color: transparent;
  border: 1px solid var(--violet);
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  color: var(--violet);
  transition: background-color 0.3s ease;
}
.outlinedBtn * {
  text-decoration: none;
  color: var(--violet);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.outlinedBtn:hover {
  background-color: var(--violet);
  color: var(--white);
}

.outlinedBtn:hover span {
  color: var(--white);
}

.ma__globalLoader {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.3019607843);
    z-index: 110;
    border-radius: 0 24px 24px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ma__globalLoader.active {
  opacity: 1;
  visibility: visible;
}

.ma__globalLoader:before {
	display: block;
	width: 50px;
	height: 48px;
	background: url("/images/appointment/app-loader-white.png");
	content: "";
    animation-name: spin;
    animation-duration: 4000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;	
}

.ma__noServiceFilial {
	display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;	
}
/* End */
/* /local/components/styledent/appointment.form.new/templates/.default/style.css?175447997131915 */
