/* start new css */
:root {
    --accent-background: linear-gradient(254.39deg, #E77A7A -80.26%, #E77A7A 35.62%, #FF8AC2 219.01%);
    --accent-background-hovered: linear-gradient(254.39deg, #FAB4B4 -64.71%, #E77A7A 179.27%, #FFBADB 218.18%, #FFBADB 218.18%);
    --white: #ffffff;
    --main-font: "Inter", sans-serif;
}

* {
    font-family: var(--main-font);
    scrollbar-color: #757575 var(--white);
    scrollbar-width: thin;
    font-weight: 300;
}

body {
    overflow-x: hidden;
}

a {
    color: #000;
}

a:hover {
    text-decoration: none;
    color: #000;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* header */

header {
    height: 70px;
    padding: 15px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: var(--white);
    width: 100%;
}

header > section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.website_link {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    padding: 10px;
}

.logo {
    width: 143px;
}
  
.logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
}

.header_contacts, .header_nav {
    display: flex;
    align-items: center;
    font-size: 12px;
}

.burger_contacts {
    padding-top: 20px;
}

.header_contacts li {
    align-items: center;
    padding-right: 12px;
}

.header_contacts li:last-child {
    padding-right: 0;
}

.header_contacts li a,
.burger_contacts li a {
    display: flex;
    align-items: center;
}

.header_contacts li span,
.burger_contacts li span {
    padding-left: 6px;
    color: #757575;
    font-size: 12px;
    line-height: 15.84px;
}

.burger_contacts li {
    padding-bottom: 16px;
}

.header_nav {
    gap: 8px;
}

.header_nav li a:not(.dropdown_lang_item),
.dropdown_lang_btn {
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.header_nav li.cart {
    position: relative;
}

.header_nav li.cart span {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #E77A7A;
    color: white;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.header_btn,
.btn {
    cursor: pointer;
    background: var(--accent-background);
    color: var(--white);
    border-radius: 8px;
    height: 40px;
    text-align: center;
    font-size: 14px;
    padding: 10px 12px;
    border: none;
    user-select: none;
    transition: none;
    outline: none;
    box-shadow: none;
    line-height: 20.44px;
}

.header_btn:hover,
.btn:hover {
    color: var(--white);
    box-shadow: 0px 2px 2px 0px #0000001F;
    background: linear-gradient(254.39deg, #FAB4B4 -64.71%, #E77A7A 179.27%, #FFBADB 218.18%, #FFBADB 218.18%);
}

.header_btn:focus,
.btn:focus,
.btn_transparent:focus {
    outline: none;
    box-shadow: none;
}

.header_btn.mobile {
    display: none;
}

.dropdown_lang_btn {
    font-size: 14px;
    line-height: 20px;
    gap: 8px;
    align-items: center;
}

.dropdown_lang {
    position: relative;
}

.dropdown_lang svg {
    transition: all .3s linear;
    transform: rotate(0deg);
}
  
.dropdown_lang.show svg {
    transform: rotate(180deg);
}

.dropdown_lang_menu {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 220px;
    color: #242326;
    text-align: left;
    border-radius: 8px;
    border: 1px solid #E9E9E9;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.05);
    background-color: var(--white);
    overflow-x: hidden;
    max-height: 220px;
    overflow-y: auto;
}

.dropdown_lang_menu.show {
    display: block;
}

.dropdown_lang_menu .dropdown_lang_item {
    padding: 12px;
    font-size: 14px;
    line-height: 18px;
    transition: .2s ease-in-out;
    display: block;
    width: 100%;
    white-space: nowrap;
}

.dropdown_lang_menu .dropdown_lang_item:hover {
    background: rgba(231, 122, 122, 0.1);
}

.burger_btn {
    display: none;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    z-index: 10000;
    padding: 8px;
    border-radius: 8px;
}

.burger_btn svg {
	width: 20px;
}

#top-line,
#bottom-line,
#middle-line {
	transform-box: fill-box;
	transform-origin: center;
}

.burger_btn.opened svg {
	#top-line {
		animation: down-rotate 0.6s ease-out both;
	}
	#bottom-line {
		animation: up-rotate 0.6s ease-out both;
	}
	#middle-line {
		animation: hide 0.6s ease-out forwards;
	}
}

@keyframes up-rotate {
	0% {
		animation-timing-function: cubic-bezier(0.16, -0.88, 0.97, 0.53);
		transform: translateY(0px);
	}
	30% {
		transform-origin: center;
		animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
		transform: translateY(-15px);
	}
	100% {
		transform-origin: center;
		transform: translateY(-15px) rotate(44deg) scale(0.9);
	}
}

@keyframes down-rotate {
	0% {
		animation-timing-function: cubic-bezier(0.16, -0.88, 0.97, 0.53);
		transform: translateY(0px);
	}
	30% {
		transform-origin: center;
		animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
		transform: translateY(15px);
	}
	100% {
		transform-origin: center;
		transform: translateY(15px) rotate(-45deg) scale(0.9);
	}
}

@keyframes hide {
	29% {
		opacity: 1;
	}
	30% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

.burger_menu {
    width: 100dvw;
    height: 100dvh;
    position: absolute;
    top: 0;
    left: -150%;
    background: var(--white);
    z-index: 1000;
    transition: .4s ease-in-out;
    padding: 0 20px 20px;
}

.burger_menu.opened {
    left: 0;
}

.burger_menu .headline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px 8px 48px;
}

.burger_menu .header_btn {
    display: block;
    width: 100%;
}

.animated_background {
    background: linear-gradient(119.87deg, #FFF1F4 12.9%, #FCD0D0 65.4%), linear-gradient(238.95deg, rgba(255, 219, 226, 0) 5.33%, #FFBADB 148.26%);
    height: 100dvh;
    width: 100%;
    animation: background_gradient infinite 15s ease-in-out;
    background-size: 400% 400%;
    position: relative;
    overflow: hidden;
}

.burger_menu .animated_background {
    height: calc(100dvh - 216px);
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
}

@keyframes background_gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.circle {
    border-radius: 50%;
    position: absolute;
}

.circle:nth-child(1) {
    width: 600px;
    height: 600px;
    background: radial-gradient(74.83% 74.83% at 56.6% 38.72%, #FFFFFF 0%, #FDE4E4 35.72%, #FAB4B4 100%);
    top: -100%;
    left: -120%;
    animation: circle_1 infinite 20s linear,
    delay-animation infinite 40s linear;
}

.circle:nth-child(2) {
    width: 400px;
    height: 400px;
    background: radial-gradient(50% 50% at 50% 50%, #FFFAFA 0%, #FFDBE2 100%);
    bottom: -100%;
    left: 20%;
    animation: circle_2 infinite 20s linear 20s,
    delay-animation infinite 40s linear 20s;
}

@keyframes circle_1 {
	0% {
		top: -100%;
        left: -120%;
        transform: scale(1);
	}
	100% {
		top: 150%;
        left: -50%;
        transform: scale(1.5);
	}
}

@keyframes circle_2 {
	0% {
		bottom: -100%;
        left: 20%;
        transform: scale(1.5);
	}
	100% {
		bottom: 100%;
        left: 60%;
        transform: scale(1);
	}
}

@keyframes delay-animation {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 1;
    }
    50.01% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
}

/* end new css */

.header_info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dropButton {
  display: block;
  background-color: none;
  width: 100%;
  border: 2px solid #e77e1f;
  border-radius: 10px;
}

.sliderAmount {
  border: none;
  background: none;
}

.logo {
  /* line-height: 100px;
  float: left;
  text-align: center; */
  width: 143px;
}

.img_logo {
  /* max-height: 75px; */
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
}

.social {
  /* line-height: 100px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%); */
    font-size: 12px;
}

.social ul {
    display: flex;
    margin: 0;
}

.social > ul li {
    list-style: none;
    /* padding: 0 10px; */
    align-items: center;
    padding-right: 12px;
}

.social > ul li:last-child {
    padding-right: 0;
}

.social > ul > li a {
    display: flex;
    align-items: center;
    /* color: #000; */
}

.social > ul > li a:hover {
    text-decoration: none;
}

.social > ul > li i {
    font-size: 25px;
}

.social > ul > li span {
    /* padding: 0 5px; */
    padding-left: 6px;
    color: #757575;
    font-weight: 400;
    line-height: 15.84px;
}

/* .button {
    float: right;
    line-height: 100px;
    width: 25%;
    text-align: center;
} */

.button .header_btn {
    /* background-color: transparent;
    border: 2px solid #e77e1f;
    width: 100%; */
    cursor: pointer;
    background: var(--accent-background);
    color: var(--white);
    border-radius: 8px;
    height: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 12px;
    border: none;
    transition: all .5s ease-in-out;
    outline: none;
    box-shadow: none;
    line-height: 20.44px;
}

.button .header_btn:hover {
    /* background-color: #e77e1f; */
    opacity: 0.85;
}

/*Navigation Bar*/

section#navigation {
    display: flex;
    align-items: center;
}

nav {
  /* width: 100%;
  height: 5vh;
  line-height: 5vh;
  background-color: #fff; */
  display: flex;
  align-items: center;
  gap: 16px;
}

nav ul {
    display: flex;
}

.lang-link {
  /* text-transform: uppercase;
  font-weight: 600; */
  font-size: 14px;
  line-height: 17.92px;
}

.navbar .navbar-nav a {
  color: #000;
}

.navbar-toggler {
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin: auto;
}
/* Icon/arrow_drop_up */


/* .dropdown-toggle::after {
  font-family: FontAwesome;
  content: "\f078";
  color: #e77e1f;
  border: 0;
  vertical-align: 0;
} */

.dropdown svg {
    transition: all .3s linear;
    transform: rotate(0deg);
}

.dropdown.show svg {
    transform: rotate(180deg);
}

.dropdown-menu {
  border: 0;
}

.dropdown_menu {
    position: absolute;
    top: 100%;
    right: 12px;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 220px;
    margin: .125rem 0 0;
    color: #212529;
    text-align: left;
    border-radius: 8px;
    border: 1px solid #E9E9E9;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.05);
    background-color: var(--white);
}

.dropdown_menu.show {
    display: block;
}

.dropdown_menu .dropdown-item {
    padding: 12px;
    font-size: 14px;
    line-height: 18px;
}

.dropdown_menu .dropdown-item:hover {
  /* border-bottom: 1px solid #505050 !important; */
  background: rgba(231, 122, 122, 0.1);

}

.navbar-toggler:focus {
  outline: none;
}   

.navbar-toggler .burger span {
  width: 30px;
  height: 4px;
  background: #000;
  display: block;
  margin-bottom: 6px;
  margin-left: 10px;
  -webkit-box-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
  box-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar-toggler.active .burger span:nth-child(2) {
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
  opacity: 0;
}

.navbar-toggler.active .burger span:nth-child(1) {
  -webkit-transform: rotateY(180deg) rotateZ(45deg) translate(7px, 7px);
  transform: rotateY(180deg) rotateZ(45deg) translate(7px, 7px);
}

.navbar-toggler.active .burger span:nth-child(3) {
  -webkit-transform: rotateY(180deg) rotateZ(-45deg) translate(7px, -7px);
  transform: rotateY(180deg) rotateZ(-45deg) translate(7px, -7px);
}

.navbar-nav .nav-item {
  align-items: center;
  display: flex;
  padding: 0 15px;
}

/*Navigation End*/

/*Main Body*/

.mainBody {
  width: 100%;
  /* padding: 5% 2%; */
  padding: 102px 32px;
  display: grid;
  grid-template-columns: 220px calc(100% - 244px);
  gap: 24px;
  transition: all .5s ease-in-out;
}

.list_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list_header h3 {
    font-size: 32px;
    line-height: 41.28px;
    font-weight: 600;
    margin: 0;
}

.list_nav {
    display: flex;
    width: max-content;
    justify-content: flex-end;
    align-items: center;
}

.list_nav .btn_transparent {
    height: 38px;
    margin-right: 10px;
    border-radius: 12px;
}

.list_nav .filter_btn_mobile,
.list_nav .search_btn_mobile {
    display: none;
    margin-right: 10px;
    border-radius: 8px;
}

.search a {
    display: none;
    margin-right: 10px;
    border-radius: 8px;
}

.list_nav .search {
    position: relative;
    min-width: 220px;
}

.list_nav .search input {
    padding: 8px 12px 8px 34px;
    background: #F8F8F8;
    color: rgba(117, 117, 117, 1);
    letter-spacing: 0.25px;
    font-size: 16px;
    line-height: 21.12px;
    text-align: start;
    border: 1px solid rgba(34, 34, 34, 0.1);
    width: 100%;
    height: 38px;
    border-radius: 12px;
    font-weight: 300;
}

.list_nav .search svg {
    position: absolute;
    left: 12px;
    top: 11px;
}

.list_container .list {
    display: grid;
    grid-auto-rows: minmax(152px, max-content);
    grid-template-columns: repeat(2, calc(100% / 2 - 8px));
    gap: 16px;
    padding-top: 24px;
}

.list_footer {
    padding-top: 24px;
    display: flex;
    justify-content: flex-end;
}

.list_card {
    width: 100%;
    border-radius: 20px;
    background: rgba(231, 122, 122, 0.05);
    border: none;
    min-height: 100%;
    display: flex;
    height: max-content;
}

.card_image {
    width: 152px;
    height: auto;
    min-height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.card_image img {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.card_body {
    padding: 12px;
    width: calc(100% - 152px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    line-height: 15.84px;
    width: 100%;
}

.card_header p {
    margin: 0;
}

.card_actions {
    display: flex;
    width: max-content;
    gap: 8px;
}

.card_actions li button {
    padding: 8px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: transparent;
}

.card_actions .btn_transparent {
    width: max-content;
    height: 32px;
    line-height: 12px;
}

.card_actions li button:not(.cart):hover,
.header_nav li a:hover,
.burger_btn:hover,
.website_link:hover,
.dropdown_lang_btn:hover,
.list_nav .filter_btn_mobile:hover,
.list_nav .search_btn_mobile:hover,
.modal_nav li a:not(.cart):hover {
    background:#E77A7A0D;
}

.card_actions li button:not(.cart):active,
.card_actions li button.active,
.header_nav li a:active,
.header_nav li a.active,
.burger_btn:active,
.website_link:active,
.dropdown_lang_btn:active,
.list_nav .filter_btn_mobile:active,
.list_nav .search_btn_mobile:active,
.modal_nav li a:not(.cart):active,
.modal_nav li a.active {
    background: #E77A7A33;
}

.card_actions li button:not(.cart):active svg path,
.card_actions li button.active svg path,
.header_nav li a:active svg path,
.header_nav li a.active svg path,
.burger_btn:active svg path,
.website_link:active svg path,
.dropdown_lang_btn:active svg path,
.list_nav .filter_btn_mobile:active svg path,
.list_nav .search_btn_mobile:active svg path,
.modal_nav li a:not(.cart):active svg path,
.modal_nav li a.active svg path {
    fill: #E77A7A;
}

.card_actions li svg {
    width: 16px;
    height: 16px;
}

.card_chips.basket {
    justify-content: space-between;
    align-items: center;
}

.card_chips {
    display: flex;
    justify-content: flex-start;
    gap: 4px;
    width: 100%;
    font-size: 12px;
    flex-wrap: wrap;
}

.card_chips.basket > div {
    display: flex;
    justify-content: flex-start;
    gap: 4px;
    width: max-content;
    font-size: 12px;
    flex-wrap: wrap;
}

.card_chips.basket .oocyts_reserved {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
}

.card_chips.basket .oocyts_reserved span {
    font-weight: 700;
}

.card_chips li {
    border: 1px solid #E9E9E9;
    padding: 2px 8px;
    border-radius: 24px;
    line-height: 16.84px;
    height: 24px;
}

.card_chips li.race {
    background: var(--white);
}

.card_chips li.crio {
    background: #DCF3FF;
}

.card_chips li.fresh {
    background: #E5F5E8;
}

.card_chips li.blood {
    background: #E77A7A1A;
    display: flex;
    align-items: center;
}

.card_chips li.blood svg {
    margin-right: 4px;
}

.donor_comment {
    font-size: 12px;
    margin-top: 8px;
    color: #757575;
}

.donor_comment > p {
    margin: 0;
    color: #242326;
}

.card_header, .card_chips {
    padding-bottom: 8px;
}

.card_main {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 12px 32px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    gap: 8px;
}

.card_option span {
    color: rgba(117, 117, 117, 1);
    font-size: 12px;
    font-weight: 400;
    line-height: 15.84px;
}

.card_option p {
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    margin: 0;
    color: rgba(36, 35, 38, 1);
}

.card_option p::first-letter {
    text-transform: uppercase;
}

.list_card .card_button {
    display: none;
    padding: 0 8px 8px 8px;
}

.filter_container {
    padding-top: 24px;
    transition: all .4s ease-in-out;
    white-space: nowrap;
    overflow: hidden;
}

.filter_container h6 {
    font-size: 12px;
    font-weight: 400;
    margin: 0;
}

.filter_container h6 a {
    display: none;
}

.filters {
    padding: 16px 0;
}

.filter_item {
    padding: 20px 0;
    border-bottom: 1px solid #E9E9E9;
    transition: .5s ease-in-out;
    max-height: 2000px;
    overflow: hidden;
}

.filter_item.closed {
    max-height: 60px;
}

.filter_item.closed .filter_title svg {
    transform: rotate(180deg)
}

.filter_title {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.filter_title svg {
    transform: rotate(0deg);
    transition: .5s ease-in-out;
}

.filter_item_options {
    padding-top: 20px;
    user-select: none;
}

.filter_item_option span::first-letter {
    text-transform: uppercase;
}

.filter_item_option {
    display: flex;
    align-items: center;
    font-size: 12px;
    margin-bottom: 0;
    line-height: normal;
    cursor: pointer;
    user-select: none;
}

.filter_item_option span {
    font-weight: 400;
}

.filter_item_option input[type="checkbox"] {
    display: none;
}

.filter_item_option .checkmark_wrapper {
    display: inline-block;
    width: 32px;
    height: 32px;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2px;
}

.filter_item_option:hover .checkmark_wrapper {
    background: #E77A7A0D;
}

.filter_item_option .checkmark_wrapper .checkmark {
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: transparent;
    border: 1px solid #000;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.filter_item_option .checkmark_wrapper .checkmark::after {
    content: '';
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    display: none;
}

.filter_item_option input[type="checkbox"]:active + .checkmark_wrapper {
    background-color: #E77A7A;
    border-color: #E77A7A;
    background: #E77A7A0D;
}

.filter_item_option input[type="checkbox"]:checked + .checkmark_wrapper .checkmark {
    background-color: #E77A7A;
    border-color: #E77A7A;
}

.filter_item_option input[type="checkbox"]:checked + .checkmark_wrapper .checkmark::after {
    display: block;
}

.filter_item_options .slider_inputs {
    display: flex;
    gap: 11px;
}

.slider_inputs input {
    width: 50%;
    border: 1px solid #D9D9D9;
    height: 32px;
    padding: 7px 12px;
    color: #757575;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
    outline: none;
}
.filters_btn {
    width: 100%;
    background: white;
}

.btn_transparent {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    width: 100%;
    height: 40px;
    background: transparent;
    border: 1px solid #E77A7A;
    color: #E77A7A;
    cursor: pointer;
    outline: none;
    font-size: 14px;
    text-align: center;
    line-height: normal;
}

.btn_transparent:hover {
    cursor: pointer;
    background: #E77A7A1A;
    border-color: #D25B5B;
    box-shadow: 0px 2px 2px 0px #0000001F;
    color: #E77A7A;
}

.btn_transparent:active {
    background: #E77A7A33;
    box-shadow: none;
}

/* rzslider */

.rzslider {
    margin: 20px 0 15px 0 !important;
}

.rzslider .rz-bubble.rz-limit,
.rzslider .rz-bubble {
    display: none !important;
}

.rzslider .rz-bar {
    background: #E77A7A33 !important;
}

.rzslider .rz-pointer,
.rzslider .rz-selection {
    background: #E77A7A !important;
}

.rzslider .rz-pointer {
    width: 12px !important;
    height: 12px !important;
    top: -5px !important;
    outline: none !important;
}

.rzslider .rz-pointer:after {
    content: none !important;
}

.modal_open {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(3px);
    z-index: 1000;
    overflow: hidden;
    background: #0000008f;
}

.modal_open.show {
    display: block;
}

.loader {
    margin: 80% auto;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #E77A7A;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* donor modal */

.donor_modal {
    position: fixed;
    right: -100%;
    top: 8px;
    height: calc(100dvh - 16px);
    width: calc(50vw - 8px);
    transition: all .5s ease-in-out;
    /* display: none; */
    z-index: 10000;
    background: #FFF;
    border-radius: 16px;
    overflow: hidden;
}

.donor_modal.opened {
    right: 8px;
    /* display: block; */
}

.modal_header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 32px;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal_header h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    margin: 0;
}

.modal_nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2px;
}

.modal_nav li a {
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal_nav li .tab {
    height: 40px;
}

.modal_nav li .tab.active {
    color: #E77A7A;
}

.modal_body {
    position: absolute;
    top: 108px;
    bottom: 92px;
    left: 0;
    right: 0;
    padding: 0 20px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.modal_body section {
    margin-bottom: 20px;
    width: 100%;
}

.modal_body section.two_columns {
    display: flex;
    gap: 8px;
}

.modal_body section.two_columns > div {
    width: 50%;
}

.modal_body section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #242326;
    margin-bottom: 8px;
}

.modal_img {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.modal_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.modal_info_block {
    background: #F8F8F8;
    border-radius: 20px;
    padding: 20px 24px;
}

.modal_info_block.main {
    height: max-content;
}

.section_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info_block_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    margin-bottom: 4px;
    border-bottom: 1px solid #E9E9E9;
}

.info_block_column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 0;
}

.modal_info_block.main .info_block_row {
    border: none;
    margin-bottom: 0;
}

.modal_info_block.main .info_block_row.btn_wrap {
    justify-content: center;
}

.modal_info_block.main .info_block_row textarea,
.donor_comment p textarea {
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #D9D9D9;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 12px;
}

.modal_info_block.main .info_block_row > span,
.info_block_column > span {
    margin-bottom: 2px;
    width: 100%;
}

.modal_info_block.main .info_block_row > h5 {
    width: max-content;
}

.info_block_column > h5 {
    width: 100%;
}

.modal_info_block.main .info_block_row > h5 input[type="number"] {
    -moz-appearance: textfield;
}

.modal_info_block.main .info_block_row > h5 input[type="number"]::-webkit-outer-spin-button,
.modal_info_block.main .info_block_row > h5 input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.oocyts_count_input {
    display: flex;
    gap: 8px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #D9D9D9;
}

.oocyts_count_input input[type="number"],
.oocyts_count_input button {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    text-align: center;
}

.oocyts_reserved input[type="number"],
.oocyts_reserved button {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    text-align: center;
    max-width: 30px;
}

.oocyts_reserved input[type="number"] {
    font-weight: 600;
}

.modal_info_block input:not([type="number"]),
.modal_info_block select {
    background: transparent;
    border: none;
    border-bottom: 1px solid #242326;
    margin-bottom: 8px;
    width: 100%;
    min-height: 52px;
    padding: 12px 0;
    font-size: 14px;
    outline: none;
}

.modal_info_block input::placeholder {
    color: #757575;
}

.form_btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
}

.form_btns .btn_transparent {
    width: 20%;
    height: 32px;
    font-size: 12px;
    padding: 0;
}

.form_btns.member .btn_transparent {
    width: 35%;
}

.form_btns .btn {
    width: 78%;
    height: 32px;
    font-size: 12px;
    padding: 0;
}

.form_btns.member .btn {
    width: 63%;
}

.info_block_row > span,
.info_block_row > h5 {
    width: 49%;
}

.info_block_row > span,
.info_block_column > span {
    font-size: 12px;
    font-weight: 400;
}

.info_block_row > h5,
.info_block_column > h5 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.invite_btn_wrapper {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 8px;
}

.invite_btn_wrapper .btn_transparent {
    width: max-content;
}

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

.exp_date {
    border: 1px solid #E9E9E9;
    padding: 2px 8px;
    border-radius: 24px;
    line-height: 16.84px;
    height: 24px;
    font-size: 12px;
}

.exp_date.red {
    background: #E77A7A1A;
}

.exp_date.blue {
    background: #DCF3FF;
}

.exp_date.green {
   background: #E5F5E8;
}

.profile_body > h5 {
    font-size: 14px;
    font-weight: 600;
}

.profile_body .list_card {
    flex-direction: column;
    margin-bottom: 8px;
    padding: 12px;
}

.modal_info_block p {
    font-size: 12px;
    font-weight: 400;
    margin: 0;
}

.modal_buttons {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px 20px 20px;
    background: white;
}

.modal_buttons button:first-child {
    width: 35%;
    display: inline-block;
}

.modal_buttons button:last-child {
    width: 64%;
    outline: none;
}

#profile_modal .loader {
    margin: 40% auto;
}

#profile_modal .modal_body {
    scrollbar-width: none;
}

.invite_form,
.invite_form form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.invite_form h4,
.invite_form form h4 {
    font-size: 1em;
    margin-bottom: 20px;
}

.invite_form > div,
.invite_form form > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
}

.invite_form form > div:last-child {
    padding-bottom: 15px;
}

.invite_form > div > label,
.invite_form form > div > label {
    position: absolute;
    top: -10px;
    font-size: 14px;
    padding: 0 5px;
    background: white;
    left: 10px;
    border-radius: 15px;
}

.invite_form > div input[type="text"],
.invite_form > div input[type="date"],
.invite_form > div input[type="password"],
.invite_form form > div input[type="password"],
.invite_form > div select {
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    color: #757575;
    font-size: 14px;
    padding: 10px 14px;
    width: 280px;
    height: 38px;
    outline: none;
}

.invite_form > div input[type="text"]:hover,
.invite_form > div input[type="password"]:hover,
.invite_form form > div input[type="password"]:hover {
    border: 1px solid #000;
    cursor: pointer;
}

.invite_form > div input[type="text"]:focus,
.invite_form > div input[type="password"]:focus,
.invite_form form > div input[type="password"]:focus {
    border: 2px solid #E77A7A;
}

form input.ng-invalid-compare-to.ng-dirty {
    border-bottom: 2px solid #e80b0b;
    background-color: #ffdcdc8e;
}

form span.form_error {
    color: #e80b0b;
    font-size: 12px;
    /* position: absolute;
    bottom: -6px; */
    text-align: center;
    line-height: normal;
    /* width: max-content; */
    margin-bottom: 6px;
    display: block;
}

.invite_form .btn_transparent {
    width: 200px;
    margin-top: 20px;
}
.member_status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
    display: inline-block;
}

.member_status.red {
    background: red;
}

.member_status.green {
    background: lightgreen;
}

.member_status.yellow {
    background: yellow;
}

.setting_btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100000;
}

.info_block_row.setting input {
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    color: #757575;
    font-size: 14px;
    padding: 10px 14px;
    width: 49%;
    height: 38px;
    outline: none;
}

.info_block_row.setting a {
    width: 49%;
}

.profile_modal_btns {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px 20px 20px;
    background: white;
    display: flex;
    justify-content: flex-end;
}

.profile_modal_btns .btn_transparent {
    width: max-content;
}

/* end new home css */

/* .pageTitle {
  display: flex;
  flex-direction: row-reverse;
}

.pageTitle div:first-child {
  display: flex;
  justify-content: flex-end;
}

.siteMap {
  color: #000;
}

.siteMap:hover {
  color: #000;
} */

/* .pageText {
        display: grid;
        grid-template-columns: 75% 25%;
        grid-column-gap: 20px;
        padding: 15px;
    } */

/* .gridItemBig {
  color: #505050;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.gridItemSmall {
  color: #505050;
  grid-template-columns: 100%;
  grid-gap: 20px;
} */

.slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    min-height: 400px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.arrow {
    position: absolute;
    z-index: 1002;
    display: block;
    top: 50%;
    width: 32px;
    height: 32px;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    background-color: #FFFFFF4D;
    border-radius: 8px;
    transform: translate(0, -50%);
}

.arrow.prev {
    left: 8px;
    transition: 0.2s linear all;
}

.arrow.next {
    right: 8px;
    transition: 0.2s linear all;
}

.arrow.prev:hover {
    background-color: #E77A7A33;
}

.arrow.next:hover {
    background-color: #E77A7A33;
}

.slider .nav {
    text-align: center;
    display: block;
    position: absolute;
    z-index: 1002;
    left: 50%;
    bottom: 6px;
    height: 10px;
    padding: 2px;
    border-radius: 4px;
    background-color: #FFFFFF33;
}

.nonDraggableImage{
    -webkit-user-drag: none;
}

/* .nav .wrapper {
    margin: 0 auto;
    width: 100%;
    padding: 1em 0 .8em;
} */

.nav ul {
    margin: 0;
    width: 100%;
}

.nav .dot, .nav .dot a {
    display: inline-block;
    zoom: 1;
}

.dots .dot {
    position: relative;
    margin: 0 1px;
    width: 6px;
    height: 6px;
}

.dots .dot a {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    white-space: nowrap;
    overflow: hidden;
    background-color: #757575;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: background-color 0.3s ease-in-out;
    -moz-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

.dots .dot a.active {
    background-color: #E77A7A;
}

/* comparison */

.toggle_label {
    font-size: 12px;
    padding-right: 6px;
}

.toggle {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 20px;
    margin: 0;
  }
  
  .toggle-input {
    display: none;
  }
  
  .toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #C4C4C4;
    border-radius: 10px;
    transition: 0.4s;
    box-shadow: 0px 2px 2px 2px #0000000F inset;
    width: 35px;
    height: 20px;
  }
  
  .toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 1px;
    bottom: 1px;
    background-color: white;
    border-radius: 12px;
    transition: 0.4s;
  }
  
  .toggle-input:checked + .toggle-slider {
    background-color: #E77A7A;
  }
  
  .toggle-input:checked + .toggle-slider:before {
    transform: translateX(14px);
  }

.comparison_container {
    padding: 102px 32px;
}

.comparison_list {
    padding-top: 32px;
}

.comparison_header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.comparison_header_card {
    display: flex;
    background: #E77A7A0D;
    border-radius: 20px;
    padding: 12px;
    overflow: hidden;
    width: 100%;
}

.comparison_header_card .card_image {
    width: 74px;
    height: 74px;
    overflow: hidden;
    background: #E77A7A;
    border-radius: 20px;
}

.comparison_header_card .card_image img {
    min-height: unset;
}

.comparison_header_card .card_body {
    width: calc(100% - 74px);
}

.comparison_header_card .card_main {
    padding: 3px 12px;
}

.comparison_header_card .card_body {
    padding: 0 12px;
}

.comparison_body {
    padding: 32px 0;
}

.comparison_body section > h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 8px;
}

.comparison_body section > div {
    width: 100%;
    background: #F8F8F8;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 8px;
}

.comparison_body section > div h6 {
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    margin: 8px 0;
}

.comparison_body section > div h6:first-child {
    margin-top: 0;
}

.comparison_row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
    border-bottom: 1px solid #D9D9D9;
    margin-bottom: 4px;
    padding-bottom: 12px;
}

.comparison_body section > div .comparison_row:last-child {
    border-bottom: none;
    margin: 0;
    padding: 0;
}

.comparison_body section p {
    width: 100%;
    margin-bottom: 0;
    font-size: 12px;
}

.comparison_row p img {
    display: none;
}

@media screen and (max-width: 1024px) {

    header {
        padding: 8px 20px;
    }

    header > section {
        gap: 8px;
    }

    .header_btn {
        height: 36px;
        line-height: 15px;
    }

    .list_nav .filter_btn_mobile {
        display: block;
    }

    .list_container .list {
        grid-auto-rows: minmax(160px, max-content);
        grid-template-columns: 100%;
        column-gap: 0;
    }

    .mainBody {
        padding: 90px 20px;
        grid-template-columns: 0 calc(100%);
        gap: 0;
    }

    .mainBody.opened_filters {
        grid-template-columns: 220px calc(100% - 244px);
        gap: 24px;
    }

    .filter_container h6 {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .filter_container h6 a {
        display: block;
    }

    .donor_modal {
        width: calc(60vw - 8px);
    }

    .modal_header {
        padding: 20px;
    }

    .modal_header h2 {
        font-size: 22px;
        line-height: 28px;
    }

    .modal_body section {
        margin-bottom: 16px;
    }

    .modal_buttons button:first-child {
        width: 40%;
    }
    
    .modal_buttons button:last-child {
        width: 59%;
        outline: none;
    }

    .comparison_header_card {
        flex-direction: column;
        height: max-content;
    }

    .comparison_header_card .card_image {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .comparison_header_card .card_body {
        width: 100%;
        padding: 8px 0 0 0;
    }

    .comparison_header_card .card_main {
        display: none;
    }

    .comparison_header_card .card_body .card_header {
        padding: 0;
    }

    /* .mainBody .filter_container {
        width: 0;
        overflow: hidden;
    }
    
    .mainBody.opened_filters .filter_container {
        width: 100%;
    } */

  /* header .button {
    width: 50%;
  }
  nav {
    margin-bottom: 10px;
  }
  .navbar-collapse {
    background-color: #fff;
    z-index: 1111111111;
    max-height: 290px;
    overflow-y: scroll;
  }
  .social {
    display: none !important;
  }
   .gridItemBig {
            grid-template-columns: 50% 50%;
        } */ 
}

@media screen and (max-width: 940px) {
    .burger_btn {
        display: block;
    }

    header > section .website_link,
    header > section .header_contacts,
    header > section .dropdown_lang {
        display: none;
    }

    .donor_modal {
        width: calc(70vw - 8px);
    }

}

@media all and (device-width: 820px) and (device-height: 1180px) and (orientation:portrait) {
    .burger_btn {
        display: block;
    }

    header > section .website_link,
    header > section .header_contacts,
    header > section .dropdown_lang {
        display: none;
    }

    .donor_modal {
        width: calc(70vw - 8px);
    }

  }

@media screen and (max-width: 600px) {
    .header_btn {
        display: none;
    }

    .header_btn.mobile {
        display: block;
        font-size: 12px;
        height: 32px;
        padding: 8px 12px;
    }

    .mainBody,
    .mainBody.opened_filters {
        padding: 76px 20px;
        grid-template-columns: 100%;
        gap: 0;
    }

    .mainBody.opened_filters .modal_open {
        display: block;
    }

    .mainBody .filter_container {
        position: fixed;
        bottom: -100%;
        background: var(--white);
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        padding: 20px;
        width: 100%;
        left: 0;
        transition: all .5s ease-in-out;
        height: 80dvh;
        overflow-y: auto;
        z-index: 10000;
        -ms-overflow-style: none;
        scrollbar-width: none;
        padding-top: 0;
    }

    .mainBody.opened_filters .filter_container {
        bottom: 0;
    }

    .mainBody .filters::-webkit-scrollbar {
        display: none;
    }

    .mainBody.opened_filters .filters_btn {
        width: calc(100% - 40px);
        background: white;
        padding: 12px 0;
        position: fixed;
        bottom: 0;
        z-index: 100000;
    }

    .mainBody .filters {
        padding: 40px 0;
    }

    .filter_container h6 {
        position: fixed;
        width: 100%;
        left: 0;
        padding: 12px 20px;
        background: white;
        z-index: 1000;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    .donor_modal {
        right: unset;
        top: unset;
        bottom: -100%;
        left: 0;
        height: calc(100dvh - 60px);
        width: 100%;
    }

    .donor_modal.opened {
        bottom: 0;
    }

    .modal_body {
        top: 102px;
    }

    .modal_body section.two_columns {
        flex-direction: column;
    }

    .modal_body section.two_columns > div {
        width: 100%;
    }

    .modal_img img {
        aspect-ratio: 1 / 1;
    }

    .modal_buttons button:first-child,
    .modal_buttons button:last-child {
        width: 49%;
        padding: 8px 4px;
    }

    .comparison_container {
        padding: 76px 20px;
    }

    .comparison_header, .comparison_row {
        display: grid;
        grid-template-columns: 50% 50%;
        gap: 12px;
    }

    .comparison_row p {
        background-color: #FFF;
        border-radius: 12px;
        padding: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-weight: 600;
        text-align: center;
    }

    .comparison_row p span {
        font-weight: 600;
    }

    .comparison_row p img {
        display: block;
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        object-position: top center;
        overflow: hidden;
        border-radius: 12px;
        max-width: 60px;
        margin-bottom: 8px;
    }

}

@media screen and (max-width: 450px) {

    header {
        height: 56px;
    }

    header > section:first-child,
    .header_nav {
        gap: 0;
    }
    
    header .logo {
        width: 106px;
    }

    /* .header_contacts,
    .dropdown_lang {
        display: none;
    } */

    .header_nav svg {
        width: 16px;
        height: 16px;
    }

    .header_nav li a:not(.dropdown_lang_item) {
        padding: 6px;
        height: 32px;
    }

    .list_header {
        position: relative;
    }

    .list_header h3 {
        font-size: 24px;
    }

    .list_nav .filter_btn_mobile,
    .list_nav .search_btn_mobile {
        margin: 0;
    }

    .list_nav .search_btn_mobile {
        display: block;
    }

    .search {
        position: absolute !important;
        right: -100%;
        top: 0;
        width: 100%;
        height: 100%;
        background: #FFF;
        transition: all .5s ease-in-out;
        display: none;
    }

    .search.opened {
        right: 0;
        display: block;
    }

    .search.opened a {
        display: block;
        text-align: end;
        float: right;
        position: absolute;
        top: -4px;
        right: 43px;
    }

    .list_container .list {
        grid-auto-rows: minmax(476px, max-content);
    }

    .list_card {
        flex-direction: column;
        max-height: unset;
        border-radius: 12px;
    }
    
    .card_image {
        width: 100%;
        height: auto;
        min-height: unset;
        border-radius: 20px;
        overflow: hidden;
        min-height: 280px;
    }

    .comparison_header_card .card_image {
        min-height: unset;
    }

    .card_body {
        width: 100%;
        padding: 6px 12px;
    }

    .card_header,
    .card_chips {
        padding-bottom: 6px;
    }

    .card_main {
        padding: 12px 24px;
    }

    .card_actions {
        gap: 0;
    }

    .card_actions .btn_transparent {
        display: none;
    }

    .list_card .card_button {
        display: block;
    }

  /* header .button {
    width: 100%;
  }
  header .logo {
    float: none;
    padding-top: 10px;
    display: flex;
    justify-content: center;
  } */
  /* .mainBody {
    padding: 5% 5%;
  } */
  /* .pageTitle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .pageTitle div:first-child {
    display: flex;
    justify-content: center;
  }
  .pageTitle button:focus {
    box-shadow: none;
    outline: none;
  }
  .pageText {
    grid-template-columns: 100%;
    grid-column-gap: 0;
    padding: 0;
  } */
  /* .gridItemBig {
            grid-template-columns: 100%;
        } */
}
