/* ------------------------- Headings ------------------------- */
h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.top_content .page_title h1 {
  font-size: 2.9375rem;
  line-height: 1.2;
  margin-bottom: 3rem;
  font-family: var(--font-extra);
}

h2 {
  font-size: 1.875rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

h2.heading {
  margin-bottom: 3.75rem;
  font-family: var(--font-extra);
  font-size: 2.375rem;
  line-height: 1.4;
  text-align: center;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem
}

.block_sign-field {
  font-size: 1.25rem;
  line-height: 1.6;
  text-align: center;
}

.heading + .block_sign-field {
  margin-top: -3rem;
}

/* ------------------------- Links ------------------------- */
a {
  color: var(--base-font-color);
  text-decoration: none;
  outline: none;
  transition: .2s ease;
  cursor: pointer;
}

a:hover,
a.is-active {
  color: var(--base-color);
}

.link a {
  color: var(--base-color)
}

.link a:hover {
  color: var(--base-color-hover);
}

.block-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
}

.phone .body-field a {
  position: relative;
  display: inline-flex;
  font-family: var(--font-extra);
  font-size: 1.3125rem;
  padding-left: 30px;
}

.phone .body-field a:hover {
  color: var(--font-color-extra);
}

.phone .body-field a:before {
  content: '';
  position: absolute;
  top: 14px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #00FF19;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ------------------------- Buttons ------------------------- */
.button {
  display: inline-flex;
  font-family: var(--font-extra);
  height: var(--button-height);
  line-height: var(--button-height);
  background-color: var(--base-color);
  padding: var(--button-padding);
  border: none;
  border-radius: 3px;
  font-weight: 500;
  white-space: nowrap;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  box-shadow: 0px 4px 10px rgba(255, 86, 33, 0.3);
  transition: .2s ease;
  cursor: pointer;
}

.button::selection {
  background-color: transparent;
}

.button:hover {
  background-color: var(--base-color-hover);
  color: #fff;
}

.button:focus {
  box-shadow: none;
}

.button[disabled] {
  background-color: var(--color-disabled);
  box-shadow: none;
  cursor: default;
  transition: background-color .2s ease;
}

.button--flat {
  color: var(--base-color);
  border: 2px solid var(--base-color);
  background-color: transparent;
  box-shadow: none;
}

.button--flat:hover {
  background-color: var(--base-color);
  color: #fff;
}

.button--flat--white {
  border-color: #fff;
  color: #fff;
}

.button--flat--white:hover {
  background-color: #fff;
  color: var(--base-color);
}

.button--big {
  height: calc(var(--button-height) * 1.182);
  line-height: calc(var(--button-height) * 1.182);
}

/* ------------------------- Breadcrumbs ------------------------- */
.breadcrumbs {
  margin-bottom: 2rem;
}

.breadcrumbs ol {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.breadcrumbs ol li {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: var(--color-gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 600px;
  font-size: 1.0625rem;
  color: var(--font-color-extra);
}

.breadcrumbs ol li:after {
  content: '';
  display: inline-flex;
  width: 9px;
  height: 1px;
  background-color: var(--color-gray);
  margin: 0 5px;
}

.breadcrumbs ol li:last-child {
  opacity: .7;
}

.breadcrumbs ol li:last-child:after {
  display: none;
}

.breadcrumbs ol li a {
  color: var(--font-color-extra);
}

.breadcrumbs ol li a:hover {
  color: var(--font-color-extra-hover);
}

/* ------------------------- Ajax throbber ------------------------- */
.ajax-progress-throbber {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin: -25px 0 0 -25px;
  font-size: 0;
  transform: scale(.8);
  z-index: 99;
}

.ajax-progress-throbber:after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  margin: 14px;
  border-radius: 50%;
  border: 2px solid var(--base-color);
  border-color: var(--base-color) var(--base-color) transparent;
  animation: loader .8s linear infinite;
}

/* ------------------------- Slick slider ------------------------- */
.slick-track {
  display: block; /*flex*/
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}

.slick-slide {
  outline: none;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  padding: 0;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0px 2px 10px rgba(209, 209, 209, 0.25);
  font-size: 0;
  border: none;
  outline: none;
  transition: .2s ease;
  z-index: 4;
  cursor: pointer;
}

.slick-arrow:hover {
  box-shadow: 0px 2px 20px rgba(209, 209, 209, 0.45);
}

.slick-arrow:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  background: var(--sprite) 6px -114px;
}

.slick-next {
  left: auto;
  right: 0;
}

.slick-next:before {
  transform: rotate(180deg);
}

.slick-dots {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
}

.slick-dots li {
  display: block;
  margin: 0 5px;
}

.slick-dots button {
  display: block;
  outline: none;
  font-size: 0;
  color: transparent;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  padding: 0;
  border: 1px solid var(--base-color);
  cursor: pointer;
  background-color: transparent;
  transition: .2s ease;
}

.slick-dots li:hover button {
  border-color: var(--base-color);
}

.slick-dots .slick-active button {
  background-color: var(--base-color);
  border-color: var(--base-color);
}

.has-background .slick-dots button {
  border-color: #fff;
}

.has-background .slick-dots li:hover button {
  border-color: rgba(255, 255, 255, .5);
}

.has-background .slick-dots .slick-active button {
  background-color: #fff;
  border-color: #fff;
}

/* ------------------------- Media ------------------------- */
.media-oembed-content {
  width: 100%;
  height: 320px;
}

/* ------------------------- Tabs ------------------------- */
.tab {
  cursor: pointer;
}

.tabcontent {
  display: none;
  animation: fadeIn .3s;
}

.tabcontent.is-visible {
  display: block;
}

/* ------------------------- Fluid table ------------------------- */
.body-field .table-fluid,
.body-field .table-fluid tbody,
.body-field .table-fluid td {
  display: block;
  background-color: transparent;
  border: none;
}

.body-field .table-fluid tr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
/* center photos slider */
.cphotos__item > a{
  display: block;
  padding: 0 5px;
}

/* --------- prices -------- */
/* common */
.multiprices{
  margin: 50px auto;
  /*padding: 0 15px;*/
  --prices-border: #c5cdd5;
  --prices-toggler-bg: #e9eef3;
  --prices-toggler-active-bg: #fcdf6d;
}

/* togglers */
.multiprices__toggler{
  display: inline-block;
  background: var(--prices-toggler-bg);
  padding: 10px 20px;
  margin: 0 10px 10px 0;
  border-radius: 20px;
  cursor: pointer;
}
.multiprices__toggler.active{
  background: var(--prices-toggler-active-bg);
}

/* prices */
.multiprices__prices__wrap{
  margin-top: 30px;
}
.multiprices__price{
  display: none;
  border: 1px solid var(--prices-border);
  background: white;
  overflow: auto;
  padding: 0 10px 10px;
}
.multiprices__price.active{
  display: block;
}

.multiprices__price table{
  margin: 0 auto;
  width: calc(100% - 1px);
}

.multiprices__price__row{
  display: flex;
}
.multiprices__price__row + .multiprices__price__row{
  border-top: 1px solid var(--prices-border);
}
.multiprices__price__row::after{
  content: '';
  display: block;
  clear: both;
}
.multiprices__price__row > *{
  display: block;
  width: auto;
  box-sizing: border-box;
  padding: 10px 15px;
}
.multiprices__price__row > * + *{
  border-left: 1px solid var(--prices-border);
}
.multiprices__price__row > .multiprices__price__name{
  flex-grow: 1;
}
.multiprices__price__row > .multiprices__price__cost{
  width: 25ch;
  text-align: center;
  flex-shrink: 0;
}
.multiprices__price__heading{
  text-align: center;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  display: block;
  padding: 5px 10px;
}
/* --------- prices end -------- */
/* ------ additional phone ----- */
.mobile-phonenum{
  text-align: center;
  font-size: 1.375rem;
  font-weight: 600;
  font-family: var(--font-extra);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding-top: 0.4rem;
  padding-bottom: 0.5rem;
  display: none;
  background: #fff;
  margin-top: -2px;
}
.mobile-phonenum a {
  color: var(--font-color-extra);
}
.mobile-phonenum a:hover{
  color: var(--base-color);
}

@media screen and (max-width: 1239px){
  .mobile-phonenum{
    display: block;
  }
  .header{
    padding-top: 130px;
  }
}
/* ---- additional phone end --- */
/* ---- services imgs float ---- */
.paragraph--content .body-field .media_image-field{
	text-align: center;
}
.paragraph--content .body-field .media_image-field img{
	box-shadow: 0 10px 25px rgb(0 0 0 / 25%);
	margin-bottom: 15px;
}
.paragraph--content .body-field .media_image-field + * + h2,
.paragraph--content .body-field .media_image-field + * + h3{
	clear: both;
}
.paragraph--content .body-field .media_image-field img[width="400"],
.paragraph--content .body-field .media_image-field img[height="251"]{
	float: left;
  margin: 0 20px 20px 0;
  max-height: 250px;
	object-fit: cover;
}
.paragraph--content .body-field .media_image-field img[width="401"],
.paragraph--content .body-field .media_image-field img[height="252"]{
	float: right;
  margin: 0 0 20px 20px;
  max-height: 250px;
	object-fit: cover;
}
/* -- services imgs float end -- */

/* whatsapp header btn */
.whatsapp_btn {
  margin: 0 auto auto;
  width: auto;
  height: 36px;
  line-height: 20px;
  color: #fff;
  padding: 8px 15px;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  border-radius: 25px;
  background: linear-gradient(90deg, #5a8cff -16.1%, #43d6ff 16.36%, #8f3fff 76.63%);
  /* background: linear-gradient(to bottom,#74ff6b 0%,#17d200 38%,#15c100 60%,#01c524 100%); */
  font-weight: 500;
}
.whatsapp_btn:hover{
  color: #fff;
}

.whatsapp_btn::before{
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  vertical-align: middle;
  /* filter: invert(1); */
  margin-top: -6px;
  background: url(/themes/custom/alfamed/assets/img/max-icon-white.svg) center / contain no-repeat;
}

.whatsapp_btn:hover {
  /* background: linear-gradient(to bottom,#b2ffad 0%,#4fe83b 38%,#2edc19 60%,#0cce2e 100%); */
  background: linear-gradient(90deg, #5a8cff -16.1%, #43d6ff 16.36%, #8f3fff 96.63%);
}

.whatsapp_btn .phraze {
  white-space: nowrap;
  font-size: 18px;
  line-height: 20px;
  display: inline-block;
}
/**/