*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
:root {
--blue: #02409b;
--blue-dark: #163472;
--blue-light: #2962b8;
--accent: #2962b8;
--white: #ffffff;
--gray-bg: #f5f7fa;
--gray-border: #e2e8f0;
--text: #1a1a2e;
--text-muted: #64748b;
--radius: 10px;
--shadow: 0 2px 18px rgba(31, 76, 146, 0.10);
--shadow-card: 0 4px 24px rgba(31, 76, 146, 0.11);
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Montserrat', sans-serif;
color: var(--text);
background: var(--white);
line-height: 1.6;
}
img {
max-width: 100%;
display: block;
}
a {
color: inherit;
text-decoration: none;
}
ul {
list-style: none;
}
button {
cursor: pointer;
border: none;
background: none;
font-family: inherit;
}
.container {
max-width: 1240px;
margin: 0 auto;
padding: 0 20px;
}
.section-label {
font-size: 20px;
font-weight: 600;
letter-spacing: 1.5px;
text-transform: uppercase;
color: var(--blue);
margin-bottom: 12px;
} .header {
position: sticky;
top: 0;
z-index: 1000;
background: var(--white);
box-shadow: 0 1px 8px rgba(0, 0, 0, 0.07);
} .header__top {
border-bottom: 1px solid var(--gray-border);
}
.header__top-inner {
display: flex;
align-items: center;
height: 64px;
gap: 20px;
} .header__logo {
display: flex;
align-items: center;
flex-shrink: 0;
text-decoration: none;
}
.header__logo-img {
height: 48px;
width: auto;
display: block;
} .header__top-right {
display: flex;
align-items: center;
gap: 20px;
margin-left: auto;
flex-shrink: 0;
} .header__socials {
display: flex;
gap: 6px;
align-items: center;
}
.social-btn {
display: flex;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
border-radius: 50%;
border: none;
background: none;
padding: 0;
opacity: 1;
transition: opacity .15s;
}
.social-btn:hover {
opacity: .8;
} .header__phones {
display: flex;
flex-direction: row;
align-items: center;
gap: 20px;
}
.header__phones-icon {
display: inline-flex;
align-items: center;
justify-content: center;
color: var(--blue);
flex-shrink: 0;
margin-right: 2px;
}
.header__phones a {
font-size: 14px;
font-weight: 500;
gap: 5px;
display: flex;
align-items: center;
color: var(--text);
white-space: nowrap;
line-height: 1;
}
.header__phones a:hover {
color: var(--blue);
}
.phone-ext {
color: var(--text);
font-size: 14px;
font-weight: 500;
} .btn-results {
background-image: linear-gradient(0.25turn, #1d4788 0%, #2866c6 100%);
color: white;
font-size: 13px;
font-weight: 600;
padding: 10px 22px;
border-radius: 12px;
white-space: nowrap;
transition: opacity .2s;
}
.btn-results:hover {
opacity: .88;
} .cart-icon {
position: relative;
display: flex;
align-items: center;
text-decoration: none;
color: var(--blue);
flex-shrink: 0;
}
.cart-icon__price {
position: absolute;
left: 100%;
margin-left: 8px;
top: 50%;
transform: translateY(-50%);
font-size: 12px;
font-weight: 600;
color: var(--blue);
white-space: nowrap;
display: none;
}
.cart-icon:hover .cart-icon__price {
display: block;
}
.cart-icon__wrap {
position: relative;
width: 50px;
height: 50px;
background: white;
border: 1.5px solid var(--gray-border);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.cart-icon__badge {
position: absolute;
top: -4px;
right: -4px;
background: #02409b;
color: white;
font-size: 10px;
font-weight: 700;
width: 16px;
height: 16px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
line-height: 1;
} .header__nav-bar {
border-top: 1px solid #d1d1d1;
border-bottom: 1px solid var(--gray-border);
}
.header__nav {
display: flex;
align-items: center;
justify-content: space-between;
height: 42px;
}
.header__nav a {
font-size: 13px;
font-weight: 400;
color: var(--text);
padding: 0 6px;
height: 42px;
display: flex;
align-items: center;
white-space: nowrap;
transition: color .15s;
border-bottom: 2px solid transparent;
}
.header__nav a:hover {
color: var(--blue);
border-bottom-color: var(--blue);
}
.burger {
display: none;
flex-direction: column;
gap: 5px;
padding: 6px;
margin-left: auto;
}
.burger span {
display: block;
width: 24px;
height: 2px;
background: var(--text);
border-radius: 2px;
transition: transform .3s ease, opacity .2s ease;
}
.burger.open span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
opacity: 0;
transform: scaleX(0);
}
.burger.open span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: white;
border-bottom: 1px solid var(--gray-border);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
padding: 28px 20px 36px;
z-index: 999;
opacity: 0;
transform: translateY(-10px);
pointer-events: none;
transition: opacity .25s ease, transform .25s ease;
}
.mobile-menu.open {
opacity: 1;
transform: translateY(0);
pointer-events: auto;
}
.mobile-menu__nav {
display: flex;
flex-direction: column;
align-items: center;
gap: 2px;
}
.mobile-menu__nav a {
display: block;
width: 100%;
text-align: center;
padding: 12px 16px;
font-size: 16px;
font-weight: 500;
color: var(--text);
border-radius: 8px;
transition: color .15s, background .15s;
}
.mobile-menu__nav a:hover {
color: var(--blue);
background: var(--gray-bg);
}
.mobile-menu__bottom {
margin-top: 24px;
border-top: 1px solid var(--gray-border);
padding-top: 24px;
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
}
.mobile-menu__socials {
display: flex;
gap: 10px;
align-items: center;
}
.mobile-menu__phone {
font-size: 17px;
font-weight: 600;
color: var(--text);
transition: color .15s;
}
.mobile-menu__phone:hover {
color: var(--blue);
}
.mobile-menu__btn {
display: inline-block;
} .hero-wrap {
position: relative;
background: #fafafa;
} .hero-swiper {
width: 100%;
} .hero-swiper .swiper-slide {
background: #fafafa;
display: flex;
align-items: center;
justify-content: center;
padding: 54px 20px 42px;
height: 100%;
box-sizing: border-box;
} .hero-slide-inner {
position: relative;
max-width: 1200px;
width: 100%;
height: 100%;
min-height: 0;
border-radius: 24px;
overflow: hidden;
flex-shrink: 0;
display: flex;
flex-direction: column;
} .hero-slide-img {
width: 100%;
flex: 1;
min-height: 0;
object-fit: cover;
object-position: center bottom;
display: block;
vertical-align: middle;
}
.hero-slide-img--mob {
display: none;
}
.hero-slide__more {
position: absolute;
bottom: 24px;
right: 100px;
display: inline-block;
padding: 14px 32px;
font-size: 16px;
font-weight: 600;
color: #fff;
background: var(--blue);
border-radius: 8px;
text-decoration: none;
box-shadow: 0 4px 14px rgba(29, 71, 136, 0.4);
transition: background 0.2s, transform 0.2s;
z-index: 5;
}
.hero-slide__more:hover {
background: #1a3a6b;
color: #fff;
transform: translateY(-2px);
} .hero-btn-prev,
.hero-btn-next {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 20;
width: 30px;
height: 30px;
border-radius: 50%;
background: #fff;
border: none;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
transition: box-shadow .2s;
cursor: pointer;
}
.hero-btn-prev:hover,
.hero-btn-next:hover {
box-shadow: 0 3px 12px rgba(0, 0, 0, 0.22);
}
.hero-btn-prev {
left: 30px;
}
.hero-btn-next {
right: 30px;
}
.hero-pagination .swiper-pagination-bullet {
width: 8px;
height: 8px;
background: #ccc;
opacity: 1;
transition: background .2s, width .2s;
}
.hero-pagination .swiper-pagination-bullet-active {
background: var(--blue);
width: 22px;
border-radius: 4px;
}
.hero__address {
display: flex;
align-items: flex-start;
gap: 8px;
font-size: 14px;
opacity: .9;
margin-bottom: 26px;
line-height: 1.6;
}
.hero__address svg {
flex-shrink: 0;
margin-top: 2px;
}
.hero__btns {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.btn-hero-primary {
background: white;
color: var(--blue);
font-size: 13.5px;
font-weight: 700;
padding: 12px 24px;
border-radius: 8px;
transition: .2s;
display: inline-block;
}
.btn-hero-primary:hover {
background: #e8eef7;
}
.btn-hero-outline {
border: 2px solid rgba(255, 255, 255, 0.55);
color: white;
font-size: 13.5px;
font-weight: 600;
padding: 12px 24px;
border-radius: 8px;
transition: .2s;
display: inline-block;
}
.btn-hero-outline:hover {
background: rgba(255, 255, 255, 0.1);
border-color: white;
} .hero__dots {
position: absolute;
bottom: 18px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 7px;
z-index: 10;
}
.hero__dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.35);
border: none;
cursor: pointer;
transition: .25s;
}
.hero__dot.active {
background: white;
width: 24px;
border-radius: 4px;
} .catalog {
padding: 42px 0 60px;
background: var(--gray-bg);
}
.catalog__tabs {
display: flex;
margin-bottom: 20px;
border: 1.5px solid var(--blue);
border-radius: 10px;
overflow: hidden;
}
.cat-tab {
flex: 1;
font-size: 18px;
font-weight: 500;
color: var(--blue);
padding: 20px 28px;
background: white;
border: none;
border-right: 1.5px solid var(--blue);
transition: background .15s, color .15s;
white-space: nowrap;
text-align: center;
}
.cat-tab:last-child {
border-right: none;
}
.cat-tab.active {
background: var(--blue);
color: white;
}
.cat-tab:not(.active):hover {
background: #eef3fb;
}
.cat-pane {
display: none;
}
.cat-pane.active {
display: block;
}
.catalog__layout {
display: flex;
gap: 28px;
align-items: flex-start;
}
.catalog__sidebar {
width: 220px;
flex-shrink: 0;
background: white;
border-radius: var(--radius);
border: 1px solid var(--gray-border);
padding: 18px 16px;
}
.filter__title {
font-size: 13px;
font-weight: 700;
color: var(--blue);
margin-bottom: 14px;
display: flex;
justify-content: space-between;
align-items: center;
}
.filter__list {
display: flex;
flex-direction: column;
gap: 4px;
}
.filter__list label {
display: flex;
align-items: start;
gap: 8px;
font-size: 12.5px;
cursor: pointer;
padding: 4px 6px;
border-radius: 5px;
transition: background .15s;
}
.filter__list label:hover {
background: var(--gray-bg);
}
.filter__list input {
accent-color: var(--blue);
margin-top: 4px;
}
.catalog__main {
flex: 1;
min-width: 0;
}
.catalog__search-row {
display: flex;
gap: 12px;
margin-bottom: 20px;
}
.search-inp {
display: block;
width: 100%;
box-sizing: border-box;
padding: 12px 18px;
border: 1.5px solid var(--gray-border);
border-radius: 10px;
font-size: 14px;
font-family: inherit;
outline: none;
background: #f4f6fa;
margin-bottom: 20px;
transition: border-color .2s, background .2s;
}
.search-inp:focus {
border-color: var(--blue);
background: white;
}
.sort-sel {
padding: 10px 14px;
border: 1.5px solid var(--gray-border);
border-radius: 8px;
font-size: 13px;
font-family: inherit;
background: white;
outline: none;
cursor: pointer;
}
.products-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
}
.pagination-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 6px;
margin-top: 24px;
}
.pagination-container a {
display: flex;
align-items: center;
justify-content: center;
min-width: 34px;
height: 34px;
padding: 0 8px;
font-size: 14px;
font-weight: 500;
color: var(--text);
text-decoration: none;
border-radius: 6px;
background: white;
border: 1px solid var(--gray-border);
transition: background .15s, color .15s, border-color .15s;
}
.pagination-container a:hover {
background: var(--gray-bg);
border-color: var(--blue);
color: var(--blue);
}
.pagination-container a.active {
background: var(--blue);
color: white;
border-color: var(--blue);
}
.product-card {
background: white;
border: 1px solid var(--gray-border);
border-radius: var(--radius);
padding: 18px;
display: flex;
flex-direction: column;
gap: 10px;
transition: box-shadow .2s, transform .2s;
}
.product-card:hover {
box-shadow: var(--shadow-card);
transform: translateY(-2px);
}
.product-card h6 {
font-size: 13.5px;
font-weight: 700;
color: var(--text);
line-height: 1.4;
}
.product-card p {
font-size: 12px;
color: var(--text-muted);
line-height: 1.5;
flex: 1;
}
.product-card-footer {
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
flex-wrap: wrap;
margin-top: 4px;
padding-top: 10px;
border-top: 1px solid var(--gray-border);
}
.product-price {
font-size: 17px;
font-weight: 800;
color: var(--blue);
}
.product-actions {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 6px;
}
.btn-details {
display: inline-flex;
align-items: center;
font-size: 11.5px;
padding: 6px 10px;
border-radius: 6px;
border: 1.5px solid var(--gray-border);
color: var(--text-muted);
font-family: inherit;
text-decoration: none;
transition: .15s;
}
.btn-details:hover {
border-color: var(--blue);
color: var(--blue);
}
.btn-add {
font-size: 11.5px;
padding: 6px 12px;
border-radius: 6px;
background: linear-gradient(0.25turn, rgba(29, 71, 136, 1) 0%, rgba(40, 102, 198, 1) 100%);
color: white;
font-family: inherit;
font-weight: 600;
border: none;
transition: opacity .15s;
}
.btn-add:hover {
opacity: .9;
}
.btn-add.added {
background: #16a34a;
} .catalog .product-actions .add_to_cart_button,
.catalog .product-actions .button.product_type_simple,
.catalog .product-actions a[href*="add-to-cart"] {
display: flex;
align-items: center;
font-size: 11.5px;
padding: 6px 12px;
border-radius: 6px;
background: linear-gradient(0.25turn, rgba(29, 71, 136, 1) 0%, rgba(40, 102, 198, 1) 100%);
color: white !important;
font-family: inherit;
font-weight: 600;
border: none;
width: 100%;
height: 100%;
justify-content: center;
text-decoration: none;
cursor: pointer;
transition: opacity 0.15s;
}
.catalog .product-actions .add_to_cart_button:hover,
.catalog .product-actions .button.product_type_simple:hover {
opacity: 0.9;
color: white !important;
}
.catalog .product-actions .add_to_cart_button.added,
.catalog .product-actions .btn-add.added,
.catalog .product-actions .button.added,
.catalog .product-actions a[href*="add-to-cart"].added {
background: #16a34a;
} .pagination-container .page-numbers {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 34px;
height: 34px;
padding: 0 8px;
font-size: 14px;
font-weight: 500;
color: var(--text);
text-decoration: none;
border-radius: 6px;
background: white;
border: 1px solid var(--gray-border);
transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.pagination-container a.page-numbers:hover {
background: var(--gray-bg);
border-color: var(--blue);
color: var(--blue);
}
.pagination-container .page-numbers.current,
.pagination-container span.current {
background: var(--blue);
color: white;
border-color: var(--blue);
pointer-events: none;
} .about {
padding: 80px 0;
background: white;
}
.about__inner {
display: grid;
grid-template-columns: 1fr auto;
gap: 64px;
align-items: center;
}
.about__text h2 {
font-size: 34px;
font-weight: 800;
color: var(--text);
line-height: 1.25;
margin-bottom: 20px;
}
.about__text p {
font-size: 15px;
color: var(--text-muted);
margin-bottom: 14px;
line-height: 1.7;
}
.about__stats {
display: flex;
gap: 24px;
margin-top: 32px;
}
.about__stat {
background: var(--blue);
color: white;
border-radius: var(--radius);
padding: 18px 22px;
text-align: center;
min-width: 90px;
}
.about__stat-num {
font-size: 28px;
font-weight: 800;
}
.about__stat-label {
font-size: 12px;
opacity: .8;
margin-top: 2px;
}
.about__image {
border-radius: 16px;
overflow: hidden;
width: fit-content;
box-shadow: var(--shadow-card);
}
.about__image img {
width: 100%;
height: 480px;
} .doctors {
padding: 72px 0;
background: var(--gray-bg);
}
.doctors__grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
margin-top: 24px;
}
.doctor-card {
background: #1d4788;
border-radius: 18px;
overflow: visible;
box-shadow: 0 4px 20px rgba(29, 71, 136, 0.25);
height: 260px;
}
.doctor-card__content {
display: flex;
align-items: stretch;
position: relative;
height: 100%;
}
.doctor-card__info {
flex: 1;
padding: 28px 24px 24px;
display: flex;
flex-direction: column;
gap: 8px;
}
.doctor-card__info h3 {
font-size: 20px;
font-weight: 700;
color: white;
margin: 0 0 4px 0;
line-height: 1.3;
white-space: nowrap;
}
.doctor-card__spec {
font-size: 16px;
color: rgba(255, 255, 255, 0.95);
line-height: 1.5;
margin: 0;
}
.doctor-card__exp {
display: inline-flex;
align-self: flex-start;
padding: 6px 14px;
font-size: 16px;
font-weight: 600;
color: #1d4788;
background: white;
border: 1.5px solid #1d4788;
border-radius: 10px;
margin-top: 4px;
}
.doctor-card__loc {
display: flex;
align-items: center;
gap: 6px;
font-size: 13px;
color: rgba(255, 255, 255, 0.95);
margin: auto 0 0 0;
}
.doctor-card__loc svg {
flex-shrink: 0;
color: white;
}
.doctor-card__photo {
position: relative;
width: 39%;
flex-shrink: 0;
}
.doctor-card__photo img {
height: 120%;
width: auto;
max-width: none;
border-radius: 0 18px 18px 0;
position: absolute;
right: 0;
bottom: 0;
display: block;
}
.doctor-nophoto {
width: 100%;
height: 100%;
min-height: 200px;
background: rgba(255, 255, 255, 0.1);
display: flex;
align-items: center;
justify-content: center;
border-radius: 0 18px 18px 0;
} .pamphlet {
padding: 72px 0;
background: white;
}
.pamphlet__layout {
display: grid;
grid-template-columns: 450px 1fr;
gap: 24px;
align-items: start;
margin-top: 24px;
}
.pamphlet__tabs {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}
.pamphlet-tab {
display: flex;
justify-content: center;
padding: 20px 14px;
font-size: 14px;
font-weight: 500;
text-align: left;
color: var(--blue);
background: white;
border: 1.5px solid var(--blue);
border-radius: 10px;
cursor: pointer;
transition: background .15s, color .15s, border-color .15s;
}
.pamphlet-tab:hover {
background: #f0f4fa;
}
.pamphlet-tab.active {
background: var(--blue);
color: white;
border-color: var(--blue);
}
.pamphlet__content-wrap {
min-width: 0;
background: white;
border: 1px solid var(--gray-border);
border-radius: var(--radius);
overflow: hidden;
}
.pamphlet__content {
display: none;
padding: 32px 36px;
overflow-wrap: break-word;
word-break: break-word;
}
.pamphlet__content.active {
display: block;
}
.pamphlet__content h3 {
font-size: 25px;
font-weight: 700;
color: var(--text);
margin-bottom: 16px;
}
.pamphlet__content p {
font-size: 16px;
color: var(--text-muted);
margin-bottom: 12px;
}
.pamphlet__content ul {
display: flex;
flex-direction: column;
gap: 10px;
}
.pamphlet__content li {
font-size: 16px;
color: var(--text-muted);
line-height: 1.6;
padding-left: 18px;
position: relative;
}
.pamphlet__content li::before {
content: '→';
position: absolute;
left: 0;
color: var(--blue);
font-size: 12px;
}
.pamphlet__content strong {
color: var(--text);
font-weight: 600;
} .corporate {
background: linear-gradient(135deg, var(--blue-dark) 0%, #1f4c92 60%, #2a60b0 100%);
padding: 72px 0;
color: white;
}
.corporate__inner {
display: grid;
grid-template-columns: 1fr 460px;
gap: 60px;
align-items: center;
}
.corporate__text h2 {
font-size: 30px;
font-weight: 800;
margin-bottom: 16px;
line-height: 1.3;
}
.corporate__text h3 {
font-size: 17px;
font-weight: 700;
margin: 22px 0 14px;
}
.corporate__text p {
font-size: 14.5px;
opacity: .88;
line-height: 1.7;
margin-bottom: 10px;
}
.corporate__text p a {
color: #7ab3ff;
text-decoration: underline;
}
.corporate__benefits {
display: flex;
flex-direction: column;
gap: 8px;
}
.corp-benefit {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 14px;
opacity: .9;
}
.corp-benefit span {
color: #7fff7f;
font-size: 16px;
font-weight: 700;
flex-shrink: 0;
}
.corporate__image {
border-radius: 14px;
overflow: hidden;
box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}
.corporate__image img {
width: 100%;
height: auto;
object-fit: cover;
} .news {
padding: 72px 0;
background: var(--gray-bg);
}
.news__grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-top: 24px;
}
.newsbullet__grid {
margin-top: 20px;
}
.feed-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
border: 1px solid var(--gray-border);
display: flex;
flex-direction: column;
transition: box-shadow .2s, transform .2s;
}
.feed-card:hover {
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
transform: translateY(-2px);
}
.feed-card__imgwrap {
position: relative;
overflow: hidden;
aspect-ratio: 1;
background: var(--gray-bg);
}
.feed-card__img {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
}
.feed-card__body {
display: flex;
flex-direction: column;
padding: 20px;
min-height: 140px;
}
.feed-card__title {
font-size: 18px;
font-weight: 600;
color: var(--text);
line-height: 1.4;
margin-bottom: 8px;
}
.feed-card__title a {
color: inherit;
}
.feed-card__title a:hover {
color: var(--blue);
}
.feed-card__descr {
font-size: 13px;
color: var(--text-muted);
line-height: 1.5;
flex: 1;
margin-bottom: 12px;
}
.feed-card__date {
font-size: 10px;
color: var(--text-muted);
margin-top: auto;
font-weight: 600;
} .addresses {
padding: 72px 0;
background: white;
}
.addr-tabs {
display: grid;
grid-template-columns: repeat(4, 1fr);
margin-top: 16px;
margin-bottom: 16px;
border: 1.5px solid var(--blue);
border-radius: 10px;
overflow: hidden;
}
.addr-tab {
font-size: 18px;
font-weight: 500;
padding: 12px 16px;
border: none;
border-right: 1.5px solid var(--blue);
color: var(--blue);
background: white;
transition: background .15s, color .15s;
text-align: center;
}
.addr-tab:last-child {
border-right: none;
}
.addr-tab.active {
background: var(--blue);
color: white;
}
.addr-tab:hover:not(.active) {
background: #f0f4fa;
}
.addr-search {
margin-top: 0;
margin-bottom: 20px;
}
.addr-pane {
display: none;
}
.addr-pane.active {
display: block;
}
.addr-table-scroll {
overflow-x: auto;
}
.addr-table {
width: 100%;
border-collapse: collapse;
font-size: 16px;
}
.addr-table th {
background: var(--blue);
color: white;
padding: 11px 14px;
text-align: left;
font-weight: 600;
}
.addr-table td {
padding: 11px 14px;
border-bottom: 1px solid var(--gray-border);
color: var(--text);
}
.addr-table tr:hover td {
background: var(--gray-bg);
}
.addr-tag {
display: inline-block;
background: var(--blue);
color: white;
font-size: 10px;
font-weight: 700;
padding: 2px 6px;
border-radius: 4px;
margin-left: 6px;
vertical-align: middle;
}
.addr-map {
margin-top: 28px;
border-radius: 14px;
overflow: hidden;
border: 1px solid var(--gray-border);
}
.addr-map iframe {
width: 100%;
height: 320px;
border: none;
display: block;
} .vacancy-page {
min-height: 60vh;
}
.vacancy {
padding: 60px 0 80px;
background: white;
}
.vacancy__title {
font-size: 28px;
font-weight: 700;
color: var(--text);
line-height: 1.4;
margin-bottom: 40px;
max-width: 800px;
}
.vacancy-list {
display: flex;
flex-direction: column;
gap: 20px;
}
.vacancy-card {
background: white;
border: 1px solid var(--gray-border);
border-radius: 12px;
box-shadow: var(--shadow);
}
.vacancy-card:hover {
box-shadow: var(--shadow-card);
}
.vacancy-card__trigger {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 24px 28px;
text-align: left;
background: none;
border: none;
cursor: pointer;
font-family: inherit;
}
.vacancy-card__label {
display: flex;
flex-direction: column;
gap: 4px;
}
.vacancy-card__title {
font-size: 22px;
font-weight: 700;
color: var(--blue);
}
.vacancy-card__location {
font-size: 14px;
font-weight: 400;
color: var(--text-muted);
}
.vacancy-card__toggle {
flex-shrink: 0;
width: 24px;
height: 24px;
position: relative;
color: var(--blue);
transition: transform .25s ease;
}
.vacancy-card__toggle::before,
.vacancy-card__toggle::after {
content: '';
position: absolute;
background: currentColor;
top: 50%;
left: 50%;
}
.vacancy-card__toggle::before {
width: 14px;
height: 2px;
transform: translate(-50%, -50%);
}
.vacancy-card__toggle::after {
width: 2px;
height: 14px;
transform: translate(-50%, -50%);
transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.vacancy-card.open .vacancy-card__toggle::after {
transform: translate(-50%, -50%) rotate(90deg);
}
.vacancy-card__content {
overflow: hidden;
max-height: 0;
border-top: 1px solid transparent;
transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), border-top-color 0.35s ease;
}
.vacancy-card.open .vacancy-card__content {
max-height: 2000px;
border-top-color: var(--gray-border);
}
.vacancy-card__content-inner {
padding: 20px 28px 24px;
}
.vacancy-card__content-inner>*:first-child {
margin-top: 0;
}
.vacancy-card__content-inner h3,
.vacancy-card__content h3 {
font-size: 15px;
font-weight: 600;
color: var(--text);
margin: 18px 0 8px;
}
.vacancy-card__content-inner h3:first-child,
.vacancy-card__content h3:first-child {
margin-top: 0;
}
.vacancy-card__content-inner ul,
.vacancy-card__content ul {
margin: 0 0 0 20px;
padding: 0;
}
.vacancy-card__content-inner li,
.vacancy-card__content li {
font-size: 14px;
color: var(--text-muted);
line-height: 1.7;
margin-bottom: 4px;
}
.vacancy-card__content-inner li::marker,
.vacancy-card__content li::marker {
color: var(--blue);
}
.vacancy-card__contact {
font-size: 14px;
margin-top: 16px;
margin-bottom: 4px;
}
.vacancy-card__contact a {
color: var(--blue);
}
.vacancy-card__contact a:hover {
text-decoration: underline;
} .footer {
background: linear-gradient(135deg, #0d1f45 0%, #1a3672 100%);
color: white;
padding: 52px 0 32px;
}
.footer__inner {
display: grid;
grid-template-columns: 1.6fr 1fr 1fr 1fr;
gap: 40px;
}
.footer__logo {
display: inline-block;
margin-bottom: 14px;
}
.footer__logo-img {
height: 42px;
width: auto;
filter: brightness(0) invert(1);
}
.footer__socials {
display: flex;
gap: 8px;
margin-bottom: 14px;
}
.footer__social-btn {
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
color: white;
opacity: .9;
transition: opacity .15s;
}
.footer__social-btn:hover {
opacity: 1;
}
.footer__bottom {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 8px 24px;
margin-top: 32px;
padding-top: 24px;
border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.footer__bottom a {
font-size: 13px;
opacity: .7;
transition: opacity .15s;
}
.footer__bottom a:hover {
opacity: 1;
}
.footer__col p {
font-size: 13px;
opacity: .7;
line-height: 1.6;
margin-bottom: 8px;
}
.footer__license {
font-size: 10.5px;
opacity: .5;
line-height: 1.5;
margin-top: 14px;
}
.footer__col h4 {
font-size: 13px;
font-weight: 700;
margin-bottom: 14px;
opacity: .9;
}
.footer__col ul {
display: flex;
flex-direction: column;
gap: 7px;
}
.footer__col ul li a {
font-size: 13px;
opacity: .7;
transition: opacity .15s;
}
.footer__col ul li a:hover {
opacity: 1;
}
.footer__col a {
font-size: 13px;
} .results-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.5);
z-index: 2000;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
}
.results-overlay.open {
opacity: 1;
visibility: visible;
}
.results-popup {
position: fixed;
inset: 0;
z-index: 2001;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
pointer-events: none;
}
.results-popup.open {
pointer-events: auto;
}
.results-popup__inner {
background: white;
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
max-width: 620px;
width: 100%;
max-height: calc(100vh - 40px);
overflow-y: auto;
padding: 40px 48px 44px;
position: relative;
transform: scale(0.95);
opacity: 0;
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.results-popup.open .results-popup__inner {
transform: scale(1);
opacity: 1;
}
.results-popup__close {
position: absolute;
top: 16px;
right: 16px;
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
color: var(--text-muted);
background: none;
border: none;
cursor: pointer;
border-radius: 8px;
transition: color 0.15s, background 0.15s;
}
.results-popup__close:hover {
color: var(--text);
background: var(--gray-bg);
}
.results-popup__title {
font-size: 26px;
font-weight: 700;
color: var(--blue);
margin-bottom: 12px;
padding-right: 40px;
}
.results-popup__text {
font-size: 16px;
color: var(--text-muted);
line-height: 1.6;
margin-bottom: 28px;
}
.results-popup__form {
display: flex;
flex-direction: column;
gap: 20px;
}
.results-popup__label {
display: flex;
flex-direction: column;
gap: 8px;
font-size: 15px;
font-weight: 500;
color: var(--text);
}
.results-popup__input {
width: 100%;
padding: 14px 16px;
font-size: 16px;
font-family: inherit;
border: 1px solid var(--gray-border);
border-radius: 8px;
transition: border-color 0.15s;
}
.results-popup__input:focus {
outline: none;
border-color: var(--blue);
}
.results-popup__input::placeholder {
color: var(--text-muted);
}
.results-popup__submit {
margin-top: 12px;
width: 100%;
padding: 16px 24px;
font-size: 16px;
font-weight: 600;
color: var(--text);
background: var(--gray-border);
border: none;
border-radius: var(--radius);
cursor: pointer;
transition: background 0.15s;
}
.results-popup__submit:hover {
background: #cbd5e1;
}
.results-popup__form--filled .results-popup__submit {
background: linear-gradient(0.25turn, #1d4788 0%, #2866c6 100%);
color: white;
}
.results-popup__form--filled .results-popup__submit:hover {
opacity: 0.92;
background: linear-gradient(0.25turn, #1d4788 0%, #2866c6 100%);
}
.results-popup__policy {
font-size: 13px;
color: var(--text-muted);
margin-top: 24px;
line-height: 1.5;
}
.results-popup__policy a {
color: var(--blue);
}
.results-popup__policy a:hover {
text-decoration: underline;
} .cart-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.5);
z-index: 9998;
display: none;
pointer-events: none;
}
.cart-overlay.open {
display: block;
pointer-events: auto;
}
.cart-sidebar {
position: fixed;
top: 0;
right: 0;
width: 380px;
height: 100vh;
background: white;
z-index: 9999;
transform: translateX(100%);
transition: transform .3s ease;
display: flex;
flex-direction: column;
box-shadow: -4px 0 32px rgba(0, 0, 0, 0.15);
}
.cart-sidebar.open {
transform: translateX(0);
}
.cart-sidebar__head {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px 24px;
border-bottom: 1px solid var(--gray-border);
}
.cart-sidebar__head h3 {
font-size: 18px;
font-weight: 700;
}
.cart-sidebar__head button {
font-size: 20px;
color: var(--text-muted);
line-height: 1;
}
.cart-sidebar__items {
flex: 1;
overflow-y: auto;
padding: 16px 24px;
}
.cart-empty {
color: var(--text-muted);
font-size: 14px;
text-align: center;
padding: 40px 0;
}
.cart-item {
display: flex;
align-items: center;
gap: 10px;
padding: 12px 10px;
border-bottom: 1px solid var(--gray-border);
}
.cart-item-name {
flex: 1;
font-size: 13px;
}
a.cart-item-name {
color: inherit;
text-decoration: none;
}
a.cart-item-name:hover {
text-decoration: underline;
}
.cart-item-price {
font-size: 14px;
font-weight: 700;
color: var(--blue);
white-space: nowrap;
}
.cart-item-remove {
color: #e53e3e;
font-size: 14px;
padding: 4px;
flex-shrink: 0;
}
.cart-item-quantity {
display: inline-block;
margin-left: 4px;
font-size: 12px;
color: var(--text-muted);
font-weight: 500;
}
.cart-item--blood {
background-color: #f8f9fa;
}
.cart-sidebar__foot {
padding: 16px 24px 24px;
border-top: 1px solid var(--gray-border);
}
.cart-total {
font-size: 16px;
font-weight: 600;
margin-bottom: 14px;
display: flex;
justify-content: space-between;
}
.btn-cart-order {
width: 100%;
background: var(--blue);
color: white;
font-size: 15px;
font-weight: 700;
padding: 14px;
border-radius: 8px;
transition: background .2s;
}
.btn-cart-order:hover {
background: var(--blue-dark);
} .cart-page {
min-height: 50vh;
padding: 48px 0 80px;
background: var(--gray-bg);
}
.cart-page__title {
font-size: 28px;
font-weight: 700;
color: var(--blue);
margin-bottom: 28px;
}
.cart-page__list {
background: white;
border-radius: 12px;
padding: 24px 28px;
margin-bottom: 24px;
box-shadow: var(--shadow);
}
.cart-page__list .cart-empty {
padding: 48px 20px;
margin: 0;
color: var(--text-muted);
font-size: 16px;
}
.cart-page__list .cart-item {
padding: 16px 0;
font-size: 15px;
}
.cart-page__list .cart-item-name {
font-size: 15px;
}
.cart-page__list .cart-item-price {
font-size: 16px;
}
.cart-page__list .cart-item-remove {
padding: 6px;
font-size: 16px;
}
.cart-page__foot {
background: white;
border-radius: 12px;
padding: 24px 28px;
margin-bottom: 24px;
box-shadow: var(--shadow);
}
.cart-page__total {
font-size: 18px;
font-weight: 600;
margin-bottom: 16px;
display: flex;
justify-content: space-between;
align-items: center;
}
.cart-page__total strong {
font-size: 22px;
color: var(--blue);
}
.cart-page__order {
width: 100%;
padding: 16px 24px;
font-size: 16px;
}
.cart-page__back {
margin: 0;
font-size: 15px;
}
.cart-page__back a {
color: var(--blue);
}
.cart-page__back a:hover {
text-decoration: underline;
}
.cart-page__head-wrap {
margin-bottom: 16px;
} .product-page__section {
padding: 24px 0 48px;
}
.product-page__bar {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 16px;
}
.product-page__back-link {
font-size: 14px;
color: var(--blue);
text-decoration: none;
}
.product-page__back-link:hover {
text-decoration: underline;
}
.product-page__close {
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
color: var(--text-muted);
background: none;
border: none;
cursor: pointer;
border-radius: 6px;
transition: color 0.15s, background 0.15s;
}
.product-page__close:hover {
color: var(--text);
background: var(--gray-bg);
}
.product-page__head {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 20px;
flex-wrap: wrap;
margin-bottom: 20px;
}
.product-page__title {
margin: 0;
font-size: 28px;
font-weight: 700;
line-height: 1.3;
color: var(--text);
}
.product-page__meta {
display: flex;
align-items: center;
gap: 12px;
flex-shrink: 0;
} .product-page__meta.product-page__card-wrap {
flex-direction: row;
}
.product-page__price {
font-size: 22px;
font-weight: 700;
color: var(--text);
}
.product-page__currency {
font-size: 16px;
font-weight: 600;
color: var(--text-muted);
}
.product-page__tabs {
display: flex;
gap: 0;
border-bottom: 1px solid var(--gray-border);
margin-bottom: 24px;
}
.product-page__tab {
padding: 12px 0;
margin-right: 24px;
font-size: 15px;
font-weight: 600;
color: var(--text-muted);
background: none;
border: none;
border-bottom: 2px solid transparent;
cursor: pointer;
transition: color 0.15s;
}
.product-page__tab:hover {
color: var(--text);
}
.product-page__tab.active {
color: var(--blue);
border-bottom-color: var(--blue);
}
.product-page__grid {
display: grid;
grid-template-columns: 1fr 300px;
gap: 32px;
align-items: start;
}
.product-page__main {
min-width: 0;
}
.product-page__pane {
display: none;
font-size: 14px;
line-height: 1.6;
color: var(--text);
}
.product-page__pane.active {
display: block;
}
.product-page__pane p {
margin: 0 0 0.75em;
}
.product-page__pane p:last-child,
.product-page__pane ul:last-child {
margin-bottom: 0;
}
.product-page__pane ul {
margin: 0.5em 0 1em;
padding-left: 1.25em;
}
.product-page__pane strong {
color: var(--text);
}
.product-page__aside {
position: sticky;
top: 90px;
}
.product-page__articles {
background: #f8fafc;
border-radius: 12px;
padding: 20px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
border: 1px solid var(--gray-border);
}
.product-page__articles-title {
margin: 0 0 14px;
font-size: 16px;
font-weight: 700;
color: var(--text);
}
.product-page__articles-list {
list-style: none;
margin: 0;
padding: 0;
}
.product-page__articles-list li {
margin-bottom: 12px;
font-size: 14px;
line-height: 1.4;
}
.product-page__articles-list li:last-child {
margin-bottom: 0;
}
.product-page__articles-list a {
color: var(--blue);
text-decoration: none;
}
.product-page__articles-list a:hover {
text-decoration: underline;
}
.product-page__articles-date {
display: block;
margin-top: 2px;
font-size: 12px;
color: var(--text-muted);
}
.product-page__related {
margin-top: 40px;
padding-top: 32px;
border-top: 1px solid var(--gray-border);
}
.product-page__related-title {
margin: 0 0 20px;
font-size: 18px;
font-weight: 700;
color: var(--text);
}
.product-page__related-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}
.product-page__card {
background: #fff;
border: 1px solid var(--gray-border);
border-radius: 10px;
padding: 20px;
display: flex;
flex-direction: column;
align-items: stretch;
}
.product-page__card-title {
margin: 0 0 12px;
font-size: 14px;
font-weight: 600;
line-height: 1.35;
color: var(--text);
flex: 1;
}
.product-page__card-price {
margin-bottom: 12px;
font-size: 16px;
font-weight: 700;
color: var(--text);
}
.product-page__card-add {
width: 100%;
justify-content: center;
}
@media (max-width: 1024px) {
.product-page__grid {
grid-template-columns: 1fr;
}
.product-page__aside {
position: static;
}
.product-page__related-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 640px) {
.product-page__section {
padding: 20px 0 40px;
}
.product-page__head {
flex-direction: column;
align-items: flex-start;
margin-bottom: 16px;
}
.product-page__title {
font-size: 22px;
}
.product-page__meta {
width: 100%;
}
.product-page__tab {
margin-right: 16px;
font-size: 14px;
padding: 10px 0;
}
.product-page__related-grid {
grid-template-columns: 1fr;
gap: 16px;
}
.product-page__related-title {
font-size: 16px;
margin-bottom: 16px;
}
} .single {
padding: 24px 0 48px;
}
.single__breadcrumb {
font-size: 13px;
color: var(--text-muted);
margin-bottom: 20px;
}
.single__breadcrumb a {
color: var(--blue);
text-decoration: none;
}
.single__breadcrumb a:hover {
text-decoration: underline;
}
.single__breadcrumb-sep {
margin: 0 6px;
color: var(--gray-border);
}
.single__breadcrumb-current {
color: var(--text-muted);
}
.single__grid {
display: grid;
grid-template-columns: 1fr 280px;
gap: 40px;
align-items: start;
}
.single__main {
min-width: 0;
}
.single__header {
margin-bottom: 24px;
}
.single__title {
margin: 0 0 12px;
font-size: 28px;
font-weight: 700;
line-height: 1.3;
color: var(--text);
}
.single__lead {
margin: 0;
font-size: 16px;
color: var(--text-muted);
font-weight: 500;
}
.single__grid--full {
grid-template-columns: 1fr;
}
.single__meta {
display: flex;
align-items: center;
gap: 16px;
flex-wrap: wrap;
font-size: 14px;
color: var(--text-muted);
}
.single__date {
font-style: normal;
}
.single__category {
color: var(--text);
text-decoration: none;
}
.single__thumb {
margin-bottom: 28px;
border-radius: 10px;
overflow: hidden;
background: var(--gray-bg);
}
.single__thumb:empty {
display: none;
}
.single__thumb img {
display: block;
width: 100%;
height: auto;
vertical-align: top;
}
.single__content {
font-size: 16px;
line-height: 1.65;
color: var(--text);
} .single__content.entry-content p {
margin: 0 0 1em;
}
.single__content.entry-content p:last-child {
margin-bottom: 0;
}
.single__content.entry-content h2 {
margin: 1.5em 0 0.5em;
font-size: 20px;
font-weight: 700;
color: var(--text);
line-height: 1.35;
}
.single__content.entry-content h2:first-child {
margin-top: 0;
}
.single__content.entry-content h3 {
margin: 1.35em 0 0.45em;
font-size: 18px;
font-weight: 700;
color: var(--text);
line-height: 1.35;
}
.single__content.entry-content ul,
.single__content.entry-content ol {
margin: 0.75em 0 1em;
padding-left: 1.5em;
}
.single__content.entry-content li {
margin-bottom: 0.35em;
}
.single__content.entry-content li:last-child {
margin-bottom: 0;
}
.single__content.entry-content blockquote {
margin: 1.5em 0;
padding: 16px 20px;
border-left: 4px solid var(--blue);
background: var(--gray-bg);
border-radius: 0 8px 8px 0;
font-style: italic;
color: var(--text);
}
.single__content.entry-content blockquote p {
margin: 0;
}
.single__content.entry-content blockquote p+p {
margin-top: 0.5em;
}
.single__content.entry-content a {
color: var(--blue);
text-decoration: none;
}
.single__content.entry-content a:hover {
text-decoration: underline;
}
.single__content.entry-content img {
max-width: 100%;
height: auto;
border-radius: 8px;
margin: 1em 0;
}
.single__content.entry-content figure {
margin: 1.5em 0;
}
.single__content.entry-content figcaption {
font-size: 14px;
color: var(--text-muted);
margin-top: 8px;
text-align: center;
}
.single__sidebar {
position: sticky;
top: 90px;
}
.single__sidebar-title {
margin: 0 0 16px;
font-size: 17px;
font-weight: 700;
color: var(--text);
}
.single__list {
list-style: none;
margin: 0;
padding: 0;
}
.single__list li {
margin-bottom: 14px;
padding-bottom: 14px;
border-bottom: 1px solid var(--gray-border);
font-size: 14px;
line-height: 1.4;
}
.single__list li:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}
.single__list a {
color: var(--text);
text-decoration: none;
display: block;
margin-bottom: 4px;
}
.single__list a:hover {
color: var(--blue);
}
.single__list-date {
display: block;
font-size: 12px;
color: var(--text-muted);
}
@media (max-width: 1024px) {
.single__grid {
grid-template-columns: 1fr;
}
.single__sidebar {
position: static;
}
}
@media (max-width: 640px) {
.single {
padding: 20px 0 40px;
}
.single__breadcrumb {
font-size: 12px;
margin-bottom: 16px;
}
.single__title {
font-size: 22px;
}
.single__meta {
font-size: 13px;
}
.single__thumb {
margin-bottom: 20px;
}
.single__content {
font-size: 15px;
}
.single__content.entry-content h2 {
font-size: 18px;
}
.single__content.entry-content h3 {
font-size: 16px;
}
}
.cart-page__container {
display: grid;
grid-template-columns: 1fr 320px;
gap: 32px;
align-items: start;
}
.cart-page__head {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 12px;
}
.cart-page__clear {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 14px;
color: var(--text-muted);
background: none;
border: none;
cursor: pointer;
padding: 6px 0;
transition: color 0.15s;
}
.cart-page__clear:hover {
color: var(--blue);
}
.cart-page__clear svg {
flex-shrink: 0;
}
.cart-page__list {
margin-bottom: 20px;
}
.cart-page-item {
background: white;
border: 1px solid var(--gray-border);
border-radius: 12px;
padding: 20px 24px;
margin-bottom: 16px;
transition: box-shadow 0.2s ease;
}
.cart-page-item:hover {
box-shadow: var(--shadow);
}
.cart-page-item__row {
display: flex;
align-items: center;
gap: 12px;
flex-wrap: wrap;
}
.cart-page-item__name {
flex: 1;
min-width: 0;
font-size: 16px;
font-weight: 700;
color: var(--blue);
}
a.cart-page-item__name {
text-decoration: none;
}
.cart-page-item__price {
font-size: 14px;
color: var(--text-muted);
white-space: nowrap;
}
.cart-page-item__remove {
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
color: var(--text-muted);
background: none;
border: none;
cursor: pointer;
border-radius: 8px;
transition: color 0.15s, background 0.15s;
}
.cart-page-item__remove:hover {
color: #e53e3e;
background: var(--gray-bg);
}
.cart-page-item--blood {
border-left: 4px solid var(--blue, #2563eb);
padding: 12px 20px;
margin-bottom: 10px;
}
.cart-page-item--blood .cart-page-item__row {
gap: 8px;
}
.cart-page-item--blood .cart-page-item__name {
font-size: 15px;
}
.cart-page-item--blood .cart-page-item__price {
font-size: 13px;
}
.cart-page-item--blood .cart-page-item__accordions {
margin-top: 0;
padding-top: 0;
border-top: none;
min-height: 0;
}
.cart-page-item__blood-note {
margin: 6px 0 0;
font-size: 13px;
color: var(--text-muted);
line-height: 1.35;
}
.cart-page-item__blood-quantity {
display: inline-block;
margin-left: 6px;
font-size: 14px;
color: var(--text-muted);
font-weight: 500;
}
.cart-page-item__accordions {
margin-top: 16px;
padding-top: 16px;
border-top: 1px solid var(--gray-border);
}
.cart-page-accordion {
border: 1px solid var(--gray-border);
border-radius: 8px;
margin-bottom: 8px;
overflow: hidden;
}
.cart-page-accordion:last-child {
margin-bottom: 0;
}
.cart-page-accordion__trigger {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
padding: 12px 14px;
font-size: 14px;
font-weight: 600;
color: var(--text);
background: var(--gray-bg);
border: none;
cursor: pointer;
text-align: left;
transition: background 0.15s;
}
.cart-page-accordion__trigger:hover {
background: #e2e8f0;
}
.cart-page-accordion__icon {
width: 16px;
height: 16px;
position: relative;
flex-shrink: 0;
}
.cart-page-accordion__icon::before,
.cart-page-accordion__icon::after {
content: '';
position: absolute;
background: currentColor;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.cart-page-accordion__icon::before {
width: 10px;
height: 2px;
}
.cart-page-accordion__icon::after {
width: 2px;
height: 10px;
transition: transform 0.25s ease;
}
.cart-page-accordion.open .cart-page-accordion__icon::after {
transform: translate(-50%, -50%) rotate(90deg);
}
.cart-page-accordion__content {
overflow: hidden;
max-height: 0;
transition: max-height 0.35s ease;
}
.cart-page-accordion.open .cart-page-accordion__content {
max-height: 500px;
}
.cart-page-accordion__inner {
padding: 14px 18px;
font-size: 13px;
color: var(--text);
line-height: 1.6;
border-top: 1px solid var(--gray-border);
}
.cart-page__sidebar {
position: sticky;
top: 90px;
background: white;
border-radius: 12px;
padding: 24px;
box-shadow: var(--shadow);
border: 1px solid var(--gray-border);
}
.cart-page__sidebar-title {
font-size: 18px;
font-weight: 700;
color: var(--blue);
margin: 0 0 20px;
}
.cart-page__your-cart {
font-size: 14px;
color: var(--text-muted);
margin: 0 0 8px;
}
.cart-page__foot .cart-page__total {
margin-bottom: 20px;
}
.cart-page__empty-msg {
font-size: 14px;
color: var(--text-muted);
margin: 0;
line-height: 1.5;
} .homevisit-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.5);
z-index: 2000;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
}
.homevisit-overlay.open {
opacity: 1;
visibility: visible;
}
.homevisit-popup {
position: fixed;
inset: 0;
z-index: 2001;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
pointer-events: none;
}
.homevisit-popup.open {
pointer-events: auto;
}
.homevisit-popup__inner {
background: white;
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
max-width: 600px;
width: 100%;
max-height: calc(100vh - 40px);
overflow-y: auto;
padding: 40px 90px;
position: relative;
transform: scale(0.95);
opacity: 0;
transition: transform 0.3s ease, opacity 0.3s ease;
}
.homevisit-popup.open .homevisit-popup__inner {
transform: scale(1);
opacity: 1;
}
.homevisit-popup__close {
position: absolute;
top: 12px;
right: 12px;
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
color: var(--text-muted);
background: none;
border: none;
cursor: pointer;
border-radius: 8px;
transition: color 0.15s, background 0.15s;
}
.homevisit-popup__close:hover {
color: var(--text);
background: var(--gray-bg);
}
.homevisit-popup__title {
font-size: 22px;
font-weight: 700;
color: var(--blue);
margin: 0 0 24px;
text-align: center;
}
.homevisit-popup__form {
display: flex;
flex-direction: column;
gap: 14px;
align-items: stretch;
}
.homevisit-popup__label {
display: block;
}
.homevisit-popup__field {
position: relative;
display: block;
isolation: isolate;
}
.homevisit-popup__field .homevisit-popup__input {
position: relative;
z-index: 0;
}
.homevisit-popup__field-icon {
position: absolute;
left: 14px;
top: 50%;
transform: translateY(-50%);
width: 16px;
height: 16px;
display: flex;
align-items: center;
justify-content: center;
pointer-events: none;
z-index: 2;
}
.homevisit-popup__field-icon svg {
width: 100%;
height: 100%;
display: block;
flex-shrink: 0;
}
.homevisit-popup__input {
width: 100%;
min-height: 44px;
padding: 12px 14px 12px 40px;
font-size: 15px;
font-family: inherit;
border: 1px solid var(--blue);
border-radius: 8px;
transition: border-color 0.15s;
box-sizing: border-box;
}
.homevisit-popup__field .homevisit-popup__select {
padding-left: 40px;
}
.homevisit-popup__input:focus {
outline: none;
border-color: var(--blue-dark);
}
.homevisit-popup__input::placeholder {
color: var(--text-muted);
}
.homevisit-popup__select {
cursor: pointer;
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 14px center;
padding-right: 36px;
padding-left: 40px;
}
.homevisit-popup__checkbox {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 12px;
color: var(--text-muted);
line-height: 1.5;
cursor: pointer;
margin-top: 4px;
}
.homevisit-popup__checkbox input {
margin-top: 3px;
flex-shrink: 0;
}
.homevisit-popup__checkbox a {
color: var(--blue);
text-decoration: underline;
}
.homevisit-popup__checkbox a:hover {
color: #1a3a6b;
}
.homevisit-popup__submit {
margin-top: 10px;
width: 100%;
padding: 14px 24px;
font-size: 15px;
font-weight: 600;
color: white;
background: var(--blue);
border: none;
border-radius: 8px;
cursor: pointer;
transition: background 0.15s;
}
.homevisit-popup__submit:hover {
background: var(--blue-dark);
} @media (max-width: 1200px) {
.container {
padding: 0 24px;
}
.catalog {
padding: 36px 0 48px;
}
.cat-tab {
font-size: 14px;
padding: 12px 16px;
}
.pamphlet__layout {
grid-template-columns: 220px 1fr;
}
.doctors__grid {
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.doctor-card__info h3 {
font-size: 16px;
}
.doctor-card__photo {
width: 50%;
}
.doctor-card__info h3 {
white-space: wrap;
}
.news__grid,
.newsbullet__grid {
gap: 16px;
}
.feed-card__body {
padding: 16px;
min-height: 130px;
}
.feed-card__title {
font-size: 14px;
}
.feed-card__descr {
font-size: 12px;
}
.section-label {
font-size: 18px;
}
.about,
.doctors,
.pamphlet,
.addresses,
.news {
padding: 56px 0;
}
.addr-table {
font-size: 13px;
}
.addr-table th,
.addr-table td {
padding: 10px 12px;
}
.footer__inner {
gap: 32px;
}
.footer__bottom {
margin-top: 28px;
padding-top: 20px;
gap: 6px 20px;
}
}
@media (max-width: 1100px) {
.header__nav a {
font-size: 12px;
padding: 8px 10px;
}
.products-grid {
grid-template-columns: repeat(2, 1fr);
}
.about__inner {
grid-template-columns: 1fr auto;
gap: 40px;
}
.corporate__inner {
grid-template-columns: 1fr 340px;
gap: 40px;
}
.footer__inner {
grid-template-columns: 1.4fr 1fr 1fr;
gap: 28px;
}
.footer__inner .footer__col:last-child {
grid-column: span 2;
}
.header__logo-img {
height: 42px;
}
.pamphlet__layout {
grid-template-columns: 1fr;
}
.pamphlet__tabs {
width: 100%;
max-width: 100%;
}
}
@media (max-width: 970px) {
.container {
padding: 0 20px;
}
.header__nav-bar {
display: none;
}
.header__socials {
display: none;
}
.header__phones {
display: none;
}
.header__top-right .btn-results {
display: none;
}
.cart-page__container {
grid-template-columns: 1fr;
}
.mobile-menu .btn-results {
display: inline-block;
}
.cart-icon__price {
display: block;
left: auto;
right: 100%;
margin-left: 0;
margin-right: 8px;
}
.header__top-inner {
gap: 0;
} .hero-pagination {
bottom: -1px !important;
}
.header__top-right {
gap: 0;
padding-right: 15px;
}
.burger {
display: flex;
margin-left: 0;
}
.results-popup {
padding: 16px;
}
.results-popup__inner {
max-width: 100%;
padding: 32px 36px 36px;
}
.results-popup__title {
font-size: 24px;
padding-right: 36px;
}
.results-popup__text {
font-size: 15px;
margin-bottom: 24px;
}
.results-popup__form {
gap: 18px;
}
.results-popup__label {
font-size: 14px;
}
.results-popup__input {
padding: 12px 14px;
font-size: 15px;
}
.results-popup__submit {
padding: 14px 24px;
font-size: 15px;
}
.results-popup__policy {
font-size: 12px;
margin-top: 20px;
}
.hero-btn-prev,
.hero-btn-next {
width: 28px;
height: 28px;
}
.hero-btn-next {
right: 10px;
}
.catalog {
padding: 32px 0 40px;
}
.catalog__sidebar {
display: none;
}
.cat-tab {
font-size: 13px;
padding: 11px 12px;
}
.about__inner {
display: flex;
flex-direction: column;
gap: 32px;
}
.about__image {
width: 60%;
}
.about__image img {
height: auto;
}
.about__stats {
flex-wrap: wrap;
gap: 14px;
}
.corporate__inner {
grid-template-columns: 1fr;
}
.corporate__image {
display: none;
}
.pamphlet__layout {
grid-template-columns: 1fr;
}
.pamphlet__tabs {
grid-template-columns: repeat(4, 1fr);
}
.pamphlet-tab {
font-size: 12px;
padding: 10px 8px;
}
.doctors__grid {
grid-template-columns: 1fr;
gap: 16px;
}
.doctor-card__content {
min-height: 160px;
}
.doctor-card__info {
padding: 20px 16px;
}
.doctor-card__photo img {
height: 100%;
}
.doctor-nophoto {
min-height: 160px;
}
.addr-tabs {
grid-template-columns: repeat(2, 1fr);
}
.addr-tab {
font-size: 13px;
padding: 10px 12px;
}
.addr-table-scroll {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.addr-table {
min-width: 600px;
font-size: 12px;
}
.addr-table th,
.addr-table td {
padding: 8px 10px;
}
.news__grid {
grid-template-columns: repeat(2, 1fr);
gap: 14px;
}
.feed-card__body {
padding: 14px;
min-height: 120px;
}
.feed-card__title {
font-size: 13px;
}
.section-label {
font-size: 16px;
}
.about,
.doctors,
.pamphlet,
.addresses,
.news {
padding: 48px 0;
}
.vacancy {
padding: 48px 0 60px;
}
.vacancy__title {
font-size: 22px;
margin-bottom: 28px;
}
.vacancy-card__trigger {
padding: 20px;
}
.vacancy-card__title {
font-size: 18px;
}
.vacancy-card__content-inner {
padding: 16px 20px 20px;
}
.footer__inner {
grid-template-columns: 1fr 1fr;
gap: 24px;
}
.footer__col:first-child {
grid-column: span 2;
}
.footer__bottom {
flex-direction: row;
justify-content: space-between;
margin-top: 24px;
padding-top: 20px;
gap: 12px 16px;
}
.footer__bottom a {
font-size: 12px;
}
.cart-sidebar {
width: 100%;
}
}
@media (max-width: 640px) {
.hero-slide-img--desktop {
display: none;
}
.hero-slide-img--mob {
display: block;
}
}
@media (max-width: 680px) {
.container {
padding: 0 16px;
}
.results-popup {
padding: 12px;
}
.results-popup__inner {
padding: 28px 24px 32px;
max-height: calc(100vh - 24px);
border-radius: 14px;
}
.results-popup__close {
top: 12px;
right: 12px;
width: 36px;
height: 36px;
font-size: 18px;
}
.results-popup__title {
font-size: 22px;
margin-bottom: 10px;
padding-right: 32px;
}
.results-popup__text {
font-size: 14px;
margin-bottom: 22px;
}
.results-popup__form {
gap: 16px;
}
.results-popup__label {
font-size: 14px;
gap: 6px;
}
.results-popup__input {
padding: 12px 14px;
font-size: 15px;
}
.results-popup__submit {
margin-top: 10px;
padding: 14px 20px;
font-size: 15px;
}
.results-popup__policy {
font-size: 12px;
margin-top: 18px;
}
.homevisit-popup__inner {
padding: 20px;
}
.cart-page__sidebar {
position: static;
}
.cart-page {
padding: 32px 0 56px;
}
.cart-page__title {
font-size: 24px;
margin-bottom: 20px;
}
.cart-page__list {
padding: 20px;
}
.cart-page-item {
padding: 16px 20px;
}
.cart-page-item__row {
display: grid;
grid-template-columns: 1fr auto;
grid-template-rows: auto auto;
gap: 8px 12px;
align-items: start;
}
.cart-page-item__name {
grid-column: 1;
grid-row: 1;
flex: none;
}
.cart-page-item__remove {
grid-column: 2;
grid-row: 1;
align-self: flex-start;
flex-shrink: 0;
}
.cart-page-item__price {
grid-column: 1 / -1;
grid-row: 2;
width: 100%;
}
.cart-page-item--blood .cart-page-item__row {
gap: 6px 12px;
}
.cart-page__list .cart-empty {
padding: 36px 16px;
font-size: 15px;
}
.cart-page__foot {
padding: 20px;
}
.cart-page__total {
font-size: 16px;
}
.cart-page__total strong {
font-size: 20px;
}
.header__top-inner {
height: 56px;
}
.header__logo-img {
height: 36px;
}
.hero-wrap {
padding: 16px 0 20px;
}
.hero-slide-inner {
border-radius: 14px;
}
.hero-wrap .swiper-slide {
padding: 24px 12px 20px;
}
.hero-slide__more {
bottom: 30px;
right: 50%;
padding: 12px 26px;
font-size: 15px;
transform: translateX(50%);
}
.hero-slide__more:hover {
transform: translateX(50%);
}
.hero-btn-prev,
.hero-btn-next {
display: none;
}
.catalog {
padding: 28px 0 36px;
}
.catalog__tabs {
margin-bottom: 16px;
}
.cat-tab {
font-size: 12px;
padding: 10px 8px;
}
.footer__col--brand {
grid-column: 1/2;
}
.search-inp {
padding: 10px 14px;
font-size: 13px;
margin-bottom: 16px;
}
.products-grid {
grid-template-columns: 1fr;
gap: 12px;
}
.product-card {
padding: 14px;
}
.product-card h6 {
font-size: 13px;
}
.pagination-container {
margin-top: 20px;
gap: 4px;
}
.pagination-container a {
min-width: 32px;
height: 32px;
font-size: 13px;
}
.pamphlet__tabs {
grid-template-columns: repeat(2, 1fr);
}
.pamphlet-tab {
font-size: 11px;
padding: 10px 6px;
}
.pamphlet__content {
padding: 24px 20px;
}
.pamphlet__content h3 {
font-size: 17px;
}
.doctors__grid {
gap: 12px;
}
.doctor-card__info {
padding: 16px 12px;
}
.doctor-card__info h3 {
font-size: 15px;
}
.doctor-card__spec {
font-size: 12px;
}
.about__image {
width: 100%;
}
.doctor-card__photo img {
height: 100%;
right: 50%;
transform: translateX(50%);
}
.doctor-card__photo {
width: 100%;
height: 250px;
}
.doctor-card__content {
min-height: 140px;
flex-direction: column;
}
.doctor-card {
height: auto;
}
.doctor-card__photo img,
.doctor-nophoto {
min-height: 140px;
}
.addr-tabs {
grid-template-columns: 1fr;
}
.addr-tab {
padding: 12px;
}
.addr-table {
font-size: 11px;
}
.addr-table th,
.addr-table td {
padding: 8px 6px;
}
.news__grid {
grid-template-columns: 1fr;
gap: 12px;
}
.feed-card__body {
padding: 14px 16px;
min-height: auto;
}
.feed-card__title {
font-size: 14px;
}
.about__stat {
min-width: 100%;
}
.feed-card__descr {
font-size: 12px;
}
.section-label {
font-size: 15px;
margin-bottom: 10px;
}
.about,
.doctors,
.pamphlet,
.addresses,
.news {
padding: 40px 0;
}
.vacancy {
padding: 40px 0 50px;
}
.vacancy__title {
font-size: 20px;
margin-bottom: 24px;
}
.vacancy-card__trigger {
padding: 18px 16px;
}
.vacancy-card__title {
font-size: 17px;
}
.vacancy-card__content-inner {
padding: 14px 16px 18px;
}
.vacancy-card__content-inner h3,
.vacancy-card__content h3 {
font-size: 14px;
}
.vacancy-card__content-inner li,
.vacancy-card__content li {
font-size: 13px;
}
.footer__inner {
grid-template-columns: 1fr 1fr;
gap: 20px;
}
.footer__logo-img {
height: 36px;
}
.footer__bottom {
flex-direction: column;
align-items: flex-start;
margin-top: 20px;
padding-top: 16px;
gap: 10px;
}
.footer__bottom a {
font-size: 12px;
}
}
@media (max-width: 480px) {
.container {
padding: 0 14px;
}
.results-popup {
padding: 10px;
}
.results-popup__inner {
padding: 24px 20px 28px;
max-height: calc(100vh - 20px);
border-radius: 12px;
}
.results-popup__close {
top: 10px;
right: 10px;
width: 34px;
height: 34px;
font-size: 18px;
}
.results-popup__title {
font-size: 20px;
margin-bottom: 8px;
padding-right: 30px;
}
.results-popup__text {
font-size: 13px;
margin-bottom: 20px;
}
.results-popup__form {
gap: 14px;
}
.results-popup__label {
font-size: 13px;
gap: 5px;
}
.results-popup__input {
padding: 11px 12px;
font-size: 16px;
}
.results-popup__submit {
margin-top: 8px;
padding: 13px 20px;
font-size: 14px;
}
.results-popup__policy {
font-size: 11px;
margin-top: 16px;
}
.cart-page {
padding: 24px 0 40px;
}
.cart-page__title {
font-size: 22px;
margin-bottom: 16px;
}
.cart-page__list {
padding: 16px;
}
.cart-page__list .cart-item {
padding: 12px 0;
flex-wrap: wrap;
gap: 8px;
}
.cart-page__list .cart-item-name {
font-size: 14px;
order: 1;
width: 100%;
}
.cart-page__list .cart-item-price {
font-size: 15px;
}
.cart-page__foot {
padding: 16px;
}
.cart-page__total strong {
font-size: 18px;
}
.cart-page__order {
padding: 14px;
font-size: 15px;
}
.cart-page__back {
font-size: 14px;
}
.cart-page-item {
padding: 14px 16px;
}
.cart-page-item__name {
font-size: 15px;
}
.cart-page-accordion__trigger {
padding: 10px 12px;
font-size: 13px;
}
.cart-page__sidebar {
padding: 20px;
}
.section-label {
font-size: 14px;
letter-spacing: 1px;
}
.catalog {
padding: 24px 0 32px;
}
.cat-tab {
font-size: 11px;
padding: 10px 6px;
}
.product-card-footer {
flex-direction: column;
align-items: stretch;
gap: 8px;
}
.btn-add,
.btn-details {
width: 100%;
justify-content: center;
}
.doctor-card__content {
min-height: 120px;
}
.doctor-card__info {
padding: 14px 12px;
}
.doctor-card__info h3 {
font-size: 14px;
}
.doctor-card__exp {
font-size: 11px;
padding: 5px 10px;
}
.pamphlet__content h3 {
font-size: 16px;
}
.pamphlet__content ul {
gap: 8px;
}
.pamphlet__content li {
font-size: 13px;
}
.about,
.doctors,
.pamphlet,
.addresses,
.news {
padding: 32px 0;
}
.footer__bottom a {
font-size: 11px;
}
} .results-page {
padding: 40px 0;
min-height: calc(100vh - 200px);
}
.results-page__iframe-wrapper {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
padding: 20px;
}
.results-page__iframe-wrapper iframe {
max-width: 100%;
width: 100%;
border: none;
padding: 30px;
border-radius: var(--radius);
box-shadow: var(--shadow-card);
} .license-slider-wrapper {
margin: 30px 0;
max-width: 100%;
position: relative;
}
#licenseSwiper {
width: 100%;
padding-bottom: 50px;
padding: 30px 0;
position: relative;
overflow: hidden;
}
#licenseSwiper .swiper-wrapper {
display: flex;
}
#licenseSwiper .swiper-slide {
height: auto;
display: flex;
align-items: center;
justify-content: center;
}
.license-slide {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
width: 100%;
padding: 0 10px;
}
.license-image {
width: 100%;
max-width: 400px;
height: auto;
max-height: 500px;
object-fit: contain;
border: 1px solid var(--gray-border);
border-radius: 8px;
background: var(--white);
box-shadow: var(--shadow);
display: block;
cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.license-image:hover {
transform: scale(1.02);
box-shadow: var(--shadow-card);
}
.license-title {
margin-top: 12px;
font-size: 14px;
color: var(--text-muted);
line-height: 1.4;
}
#licenseSwiper .swiper-button-prev,
#licenseSwiper .swiper-button-next {
color: var(--blue);
width: 40px;
height: 40px;
margin-top: 0;
top: 50%;
transform: translateY(-50%);
}
#licenseSwiper .swiper-button-prev {
left: 10px;
}
#licenseSwiper .swiper-button-next {
right: 10px;
}
#licenseSwiper .swiper-button-prev:after,
#licenseSwiper .swiper-button-next:after {
font-size: 20px;
font-weight: bold;
}
#licenseSwiper .swiper-pagination {
bottom: 10px;
position: absolute;
}
#licenseSwiper .swiper-pagination-bullet {
background: var(--gray-border);
opacity: 1;
width: 10px;
height: 10px;
}
#licenseSwiper .swiper-pagination-bullet-active {
background: var(--blue);
}
.license-info {
margin-top: 30px;
padding-top: 20px;
border-top: 1px solid var(--gray-border);
}
@media (max-width: 768px) {
.license-image {
max-width: 100%;
max-height: 400px;
}
#licenseSwiper .swiper-button-prev,
#licenseSwiper .swiper-button-next {
width: 32px;
height: 32px;
}
#licenseSwiper .swiper-button-prev:after,
#licenseSwiper .swiper-button-next:after {
font-size: 16px;
}
#licenseSwiper .swiper-button-prev {
left: 5px;
}
#licenseSwiper .swiper-button-next {
right: 5px;
}
} .license-popup {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
}
.license-popup.open {
opacity: 1;
visibility: visible;
}
.license-popup__overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.9);
cursor: pointer;
}
.license-popup__content {
position: relative;
max-width: 90%;
max-height: 90%;
z-index: 10000;
display: flex;
align-items: center;
justify-content: center;
}
.license-popup__image {
max-width: 100%;
max-height: 90vh;
object-fit: contain;
border-radius: 8px;
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}
.license-popup__close {
position: absolute;
top: 0px;
right: -50px;
width: 40px;
height: 40px;
background: var(--white);
border: none;
border-radius: 50%;
color: var(--text);
font-size: 24px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
z-index: 10001;
transition: background 0.2s ease, transform 0.2s ease;
line-height: 1;
padding: 0;
}
.license-popup__close:hover {
background: var(--blue);
color: var(--white);
transform: rotate(90deg);
}
@media (max-width: 768px) {
.license-popup__content {
max-width: 95%;
max-height: 95%;
padding: 20px;
}
.license-popup__image {
max-height: 85vh;
}
.license-popup__close {
top: -40px;
width: 36px;
height: 36px;
font-size: 20px;
}
} .cookie-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 9999;
padding: 16px;
background: rgba(29, 71, 136, 0.98);
color: #fff;
box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
transform: translateY(100%);
transition: transform 0.35s ease;
}
.cookie-popup.is-visible {
transform: translateY(0);
}
.cookie-popup__inner {
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 16px;
}
.cookie-popup__text {
flex: 1;
min-width: 280px;
margin: 0;
font-size: 14px;
line-height: 1.5;
}
.cookie-popup__text a {
color: #b7d8f7;
text-decoration: underline;
}
.cookie-popup__text a:hover {
color: #fff;
}
.cookie-popup__btn {
flex-shrink: 0;
padding: 12px 24px;
font-size: 15px;
font-weight: 600;
color: #1d4788;
background: #fff;
border: none;
border-radius: 8px;
cursor: pointer;
transition: background 0.2s, color 0.2s;
}
.cookie-popup__btn:hover {
background: #e8f0fe;
}
@media (max-width: 680px) {
.cookie-popup__inner {
flex-direction: column;
align-items: stretch;
text-align: center;
}
.cookie-popup__btn {
width: 100%;
}
}