parent
7dc959c687
commit
085accd36d
@ -0,0 +1,722 @@ |
|||||||
|
/* Authors */ |
||||||
|
.authors { |
||||||
|
padding-bottom: 120px; |
||||||
|
} |
||||||
|
|
||||||
|
.authors h2 { |
||||||
|
font-weight: bold; |
||||||
|
font-size: 64px; |
||||||
|
line-height: 120%; |
||||||
|
color: white; |
||||||
|
text-transform: uppercase; |
||||||
|
margin-bottom: 36px; |
||||||
|
} |
||||||
|
|
||||||
|
.authors ul { |
||||||
|
display: flex; |
||||||
|
flex-wrap: wrap; |
||||||
|
align-items: stretch; |
||||||
|
justify-content: center; |
||||||
|
gap: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.authors li { |
||||||
|
background: #F5F5F5; |
||||||
|
border-radius: 48px; |
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
align-items: center; |
||||||
|
text-align: center; |
||||||
|
width: calc(100% / 3 - 16px); |
||||||
|
} |
||||||
|
|
||||||
|
.authors a { |
||||||
|
padding: 52px 17px 57px; |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
align-items: center; |
||||||
|
} |
||||||
|
|
||||||
|
.authors .main-img { |
||||||
|
width: 200px; |
||||||
|
height: 200px; |
||||||
|
border-radius: 50%; |
||||||
|
overflow: hidden; |
||||||
|
flex-shrink: 0; |
||||||
|
margin-bottom: 31px; |
||||||
|
} |
||||||
|
|
||||||
|
.authors .main-img img { |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
object-fit: cover; |
||||||
|
} |
||||||
|
|
||||||
|
.authors-name { |
||||||
|
font-size: 24px; |
||||||
|
font-weight: bold; |
||||||
|
text-transform: uppercase; |
||||||
|
line-height: 28px; |
||||||
|
color: #121212; |
||||||
|
margin-bottom: 5px; |
||||||
|
} |
||||||
|
|
||||||
|
.authors-type { |
||||||
|
color: #121212; |
||||||
|
font-size: 24px; |
||||||
|
font-weight: 500; |
||||||
|
line-height: 32px; |
||||||
|
margin-bottom: 31px; |
||||||
|
} |
||||||
|
|
||||||
|
.authors p { |
||||||
|
color: #666666; |
||||||
|
font-weight: 500; |
||||||
|
font-size: 20px; |
||||||
|
line-height: 24px; |
||||||
|
} |
||||||
|
/* Authors end */ |
||||||
|
|
||||||
|
/* author-head */ |
||||||
|
.author-head { |
||||||
|
padding-bottom: 36px; |
||||||
|
} |
||||||
|
|
||||||
|
.author-head-content { |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
gap: 31px; |
||||||
|
margin-bottom: 17.5px; |
||||||
|
} |
||||||
|
|
||||||
|
.author-head .main-img { |
||||||
|
width: 278px; |
||||||
|
height: 278px; |
||||||
|
flex-shrink: 0; |
||||||
|
border-radius: 48px; |
||||||
|
overflow: hidden; |
||||||
|
} |
||||||
|
|
||||||
|
.author-head .main-img img { |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
object-fit: cover; |
||||||
|
} |
||||||
|
|
||||||
|
.author-name { |
||||||
|
font-size: 24px; |
||||||
|
font-weight: bold; |
||||||
|
line-height: 28px; |
||||||
|
color: white; |
||||||
|
margin-bottom: 5px; |
||||||
|
text-transform: uppercase; |
||||||
|
} |
||||||
|
|
||||||
|
.author-type { |
||||||
|
font-size: 24px; |
||||||
|
font-weight: 500; |
||||||
|
line-height: 32px; |
||||||
|
color: white; |
||||||
|
margin-bottom: 5px; |
||||||
|
} |
||||||
|
|
||||||
|
.author-description { |
||||||
|
font-size: 24px; |
||||||
|
font-weight: 500; |
||||||
|
line-height: 32px; |
||||||
|
color: white; |
||||||
|
margin-bottom: 45px; |
||||||
|
} |
||||||
|
|
||||||
|
.author-head p { |
||||||
|
font-size: 20px; |
||||||
|
font-weight: 500; |
||||||
|
line-height: 24px; |
||||||
|
color: white; |
||||||
|
} |
||||||
|
|
||||||
|
.author-head h2 { |
||||||
|
font-size: 64px; |
||||||
|
font-weight: bold; |
||||||
|
line-height: 120%; |
||||||
|
color: white; |
||||||
|
} |
||||||
|
/* author-head end */ |
||||||
|
|
||||||
|
.home-title { |
||||||
|
font-size: 82px; |
||||||
|
font-weight: bold; |
||||||
|
line-height: 96px; |
||||||
|
color: var(--main_white); |
||||||
|
margin-bottom: 16px; |
||||||
|
} |
||||||
|
|
||||||
|
.home-description { |
||||||
|
font-size: 32px; |
||||||
|
font-weight: bold; |
||||||
|
line-height: 40px; |
||||||
|
color: var(--main_white); |
||||||
|
text-transform: uppercase; |
||||||
|
margin-bottom: 68px; |
||||||
|
} |
||||||
|
|
||||||
|
.home-swp { |
||||||
|
position: relative; |
||||||
|
} |
||||||
|
|
||||||
|
.home-swp__btn { |
||||||
|
position: absolute; |
||||||
|
bottom: 22px; |
||||||
|
left: 50%; |
||||||
|
transform: translateX(-50%); |
||||||
|
z-index: 2; |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
gap: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.home-swp__btn button { |
||||||
|
border: 1px solid var(--main_black); |
||||||
|
background: var(--main_white); |
||||||
|
width: 56px; |
||||||
|
height: 56px; |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
justify-content: center; |
||||||
|
border-radius: 20px; |
||||||
|
} |
||||||
|
|
||||||
|
.home-swp .swiper-slide:not(.swiper-slide-active) { |
||||||
|
height: 0; |
||||||
|
overflow: hidden; |
||||||
|
} |
||||||
|
|
||||||
|
.home-card { |
||||||
|
border-radius: 60px; |
||||||
|
overflow: hidden; |
||||||
|
display: flex; |
||||||
|
align-items: flex-start; |
||||||
|
gap: 24px; |
||||||
|
position: relative; |
||||||
|
} |
||||||
|
|
||||||
|
.home-card.bg-yellow { |
||||||
|
background: var(--orange_80); |
||||||
|
} |
||||||
|
|
||||||
|
.home-card.bg-green { |
||||||
|
background: var(--green_90); |
||||||
|
} |
||||||
|
|
||||||
|
.home-card.bg-violet { |
||||||
|
background: var(--violet_90); |
||||||
|
} |
||||||
|
|
||||||
|
.home-card__img { |
||||||
|
width: 395px; |
||||||
|
border-radius: 60px; |
||||||
|
overflow: hidden; |
||||||
|
height: 393px; |
||||||
|
flex-shrink: 0; |
||||||
|
} |
||||||
|
|
||||||
|
.home-card__img img { |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
object-fit: cover; |
||||||
|
} |
||||||
|
|
||||||
|
.home-card__content { |
||||||
|
padding: 32px 79px 0 0; |
||||||
|
} |
||||||
|
|
||||||
|
.home-card__content-title { |
||||||
|
font-size: 36px; |
||||||
|
font-weight: bold; |
||||||
|
line-height: 40px; |
||||||
|
text-transform: uppercase; |
||||||
|
max-width: 660px; |
||||||
|
margin-bottom: 10px; |
||||||
|
color: var(--interface_title); |
||||||
|
} |
||||||
|
|
||||||
|
.home-card__content-description { |
||||||
|
color: var(--interface_title); |
||||||
|
margin-bottom: 10px; |
||||||
|
font-size: 20px; |
||||||
|
font-weight: 500; |
||||||
|
line-height: 24px; |
||||||
|
display: -webkit-box; |
||||||
|
-webkit-line-clamp: 3; |
||||||
|
-webkit-box-orient: vertical; |
||||||
|
overflow: hidden; |
||||||
|
text-overflow: ellipsis; |
||||||
|
} |
||||||
|
|
||||||
|
.home-card__content-body { |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
flex-wrap: wrap; |
||||||
|
gap: 12px; |
||||||
|
} |
||||||
|
|
||||||
|
.home-card__content-body__alerts { |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
flex-wrap: wrap; |
||||||
|
gap: 12px; |
||||||
|
} |
||||||
|
|
||||||
|
.home-card__content-body__alerts li { |
||||||
|
background: var(--interface_hover); |
||||||
|
color: var(--background); |
||||||
|
border-radius: 16px; |
||||||
|
padding: 6px 8px; |
||||||
|
font-size: 16px; |
||||||
|
font-weight: 500; |
||||||
|
line-height: 20px; |
||||||
|
} |
||||||
|
|
||||||
|
.home-card__content-body__day { |
||||||
|
color: var(--interface_hover); |
||||||
|
font-size: 14px; |
||||||
|
font-weight: 500; |
||||||
|
line-height: 16px; |
||||||
|
} |
||||||
|
|
||||||
|
.home-card__content-body__time { |
||||||
|
font-size: 14px; |
||||||
|
font-weight: 500; |
||||||
|
line-height: 16px; |
||||||
|
color: var(--interface_hover); |
||||||
|
} |
||||||
|
|
||||||
|
.home-card__content-body__data { |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
gap: 12px; |
||||||
|
} |
||||||
|
|
||||||
|
.home-card__content-body__data>div { |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
gap: 4px; |
||||||
|
font-size: 14px; |
||||||
|
font-weight: 500; |
||||||
|
line-height: 16px; |
||||||
|
color: var(--interface_hover); |
||||||
|
} |
||||||
|
|
||||||
|
.home-card__content-body__data>div .main-img { |
||||||
|
width: 32px; |
||||||
|
height: 32px; |
||||||
|
border-radius: 50%; |
||||||
|
object-fit: cover; |
||||||
|
} |
||||||
|
|
||||||
|
.home-card__content-body__link { |
||||||
|
border: 1px solid #000000; |
||||||
|
border-radius: 28px; |
||||||
|
background: var(--main_white); |
||||||
|
position: absolute; |
||||||
|
right: 37px; |
||||||
|
bottom: 26px; |
||||||
|
padding: 8.5px 16px 12.5px; |
||||||
|
font-style: 20px; |
||||||
|
font-weight: 500; |
||||||
|
line-height: 24px; |
||||||
|
} |
||||||
|
/* Home end */ |
||||||
|
|
||||||
|
|
||||||
|
/* Anons */ |
||||||
|
.anons { |
||||||
|
background: var(--main_white); |
||||||
|
border-radius: 60px; |
||||||
|
padding: 51px 0; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-theme__title { |
||||||
|
color: var(--main_black); |
||||||
|
font-size: 24px; |
||||||
|
font-weight: bold; |
||||||
|
line-height: 28px; |
||||||
|
text-transform: uppercase; |
||||||
|
margin-bottom: 20px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-theme { |
||||||
|
margin-bottom: 60px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-theme ul { |
||||||
|
max-width: 1022px; |
||||||
|
display: flex; |
||||||
|
flex-wrap: wrap; |
||||||
|
gap: 12px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-theme ul a { |
||||||
|
font-size: 20px; |
||||||
|
font-weight: 600; |
||||||
|
line-height: 24px; |
||||||
|
color: var(--main_black); |
||||||
|
padding: 4px 24px; |
||||||
|
border: 1px solid #000; |
||||||
|
border-radius: 20px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-theme ul a:hover, |
||||||
|
.anons-theme ul a.active { |
||||||
|
background: var(--main_black); |
||||||
|
color: var(--main_white); |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best { |
||||||
|
margin-bottom: 60px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__title { |
||||||
|
font-size: 36px; |
||||||
|
line-height: 40px; |
||||||
|
font-weight: bold; |
||||||
|
color: var(--main_black); |
||||||
|
margin-bottom: 20px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card-wrap { |
||||||
|
display: grid; |
||||||
|
grid-template-columns: repeat(3, minmax(0, 1fr)); |
||||||
|
gap: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card { |
||||||
|
padding-top: 293px; |
||||||
|
border-radius: 48px; |
||||||
|
overflow: hidden; |
||||||
|
position: relative; |
||||||
|
z-index: 1; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card.light { |
||||||
|
padding-top: 0; |
||||||
|
border-radius: 0; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card .main-img { |
||||||
|
position: absolute; |
||||||
|
top: 0; |
||||||
|
left: 0; |
||||||
|
width: 100%; |
||||||
|
height: 360px; |
||||||
|
z-index: -1; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card .main-img img { |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
object-fit: cover; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card.light .main-img { |
||||||
|
position: static; |
||||||
|
height: 265px; |
||||||
|
} |
||||||
|
.anons-best__card.light .main-img img { |
||||||
|
border-radius: 30px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card-alerts { |
||||||
|
position: absolute; |
||||||
|
top: 21px; |
||||||
|
left: 17px; |
||||||
|
width: calc(100% - 34px); |
||||||
|
display: flex; |
||||||
|
flex-wrap: wrap; |
||||||
|
gap: 7px; |
||||||
|
z-index: 1; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card-alerts li { |
||||||
|
padding: 6px 8px; |
||||||
|
font-size: 16px; |
||||||
|
line-height: 20px; |
||||||
|
font-weight: 500; |
||||||
|
color: var(--background); |
||||||
|
background: var(--main_black); |
||||||
|
border-radius: 30px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card-body { |
||||||
|
background: var(--accent-1); |
||||||
|
padding: 30px 17px 22px; |
||||||
|
border-radius: 48px 48px 0 0; |
||||||
|
color: var(--main_white); |
||||||
|
position: relative; |
||||||
|
height: 100%; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card.light .anons-best__card-body { |
||||||
|
background: transparent; |
||||||
|
color: var(--main_black); |
||||||
|
padding: 12px 0 34px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card-body__title { |
||||||
|
font-size: 28px; |
||||||
|
font-weight: bold; |
||||||
|
line-height: 32px; |
||||||
|
text-transform: uppercase; |
||||||
|
margin-bottom: 14px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card.light .anons-best__card-body__title { |
||||||
|
font-size: 26px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card-body__datas { |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
flex-wrap: wrap; |
||||||
|
gap: 6px 10px; |
||||||
|
max-width: 264px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card.light .anons-best__card-body__datas { |
||||||
|
color: var(--placeholder); |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card-body__datas p { |
||||||
|
font-size: 14px; |
||||||
|
line-height: 16px; |
||||||
|
font-weight: 500; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card-body__datas ul { |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
gap: 10px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card-body__datas ul li { |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
gap: 4px; |
||||||
|
font-size: 14px; |
||||||
|
line-height: 16px; |
||||||
|
font-weight: 500; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card-body__datas ul .logo img { |
||||||
|
width: 24px; |
||||||
|
height: 24px; |
||||||
|
border-radius: 50%; |
||||||
|
object-fit: cover; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-article { |
||||||
|
margin-bottom: 40px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-article__title { |
||||||
|
font-size: 36px; |
||||||
|
line-height: 40px; |
||||||
|
font-weight: bold; |
||||||
|
color: var(--main_black); |
||||||
|
margin-bottom: 20px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-article__card-wrap { |
||||||
|
display: grid; |
||||||
|
grid-template-columns: repeat(3, minmax(0, 1fr)); |
||||||
|
gap: 40px 25px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-article__more-link { |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
justify-content: center; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-article__more-link a { |
||||||
|
background: var(--accent-3); |
||||||
|
color: var(--main_white); |
||||||
|
border-radius: 20px; |
||||||
|
border: 1px solid var(--main_white); |
||||||
|
padding: 16px 24px; |
||||||
|
font-size: 20px; |
||||||
|
font-weight: 600; |
||||||
|
line-height: 24px; |
||||||
|
text-transform: uppercase; |
||||||
|
} |
||||||
|
/* Anons end */ |
||||||
|
|
||||||
|
|
||||||
|
/* Стили для планшетов */ |
||||||
|
@media only screen and (max-width: 992px) { |
||||||
|
|
||||||
|
.authors h2 { |
||||||
|
font-size: 48px; |
||||||
|
margin-bottom: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.authors li { |
||||||
|
border-radius: 32px; |
||||||
|
width: calc(50% - 12px); |
||||||
|
} |
||||||
|
|
||||||
|
.authors .main-img { |
||||||
|
margin-bottom: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.author { |
||||||
|
padding-bottom: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.author h2 { |
||||||
|
font-size: 48px; |
||||||
|
} |
||||||
|
|
||||||
|
.author-head-content { |
||||||
|
flex-direction: column; |
||||||
|
align-items: flex-start; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* Стили для планшетов */ |
||||||
|
@media only screen and (max-width: 992px) { |
||||||
|
|
||||||
|
.author { |
||||||
|
padding: 188px 0 36px; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@media only screen and (max-width: 576px) { |
||||||
|
.anons-best__title { |
||||||
|
font-size: 26px; |
||||||
|
line-height: 32px; |
||||||
|
margin-bottom: 12px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card { |
||||||
|
padding-top: 205px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card .main-img { |
||||||
|
height: 300px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card-body { |
||||||
|
padding: 20px 17px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card-body__title { |
||||||
|
font-size: 20px; |
||||||
|
line-height: 24px; |
||||||
|
margin-bottom: 16px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card.light .main-img { |
||||||
|
height: 197px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card.light .anons-best__card-body__title { |
||||||
|
font-size: 20px; |
||||||
|
line-height: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.authors { |
||||||
|
padding-bottom: 138px; |
||||||
|
} |
||||||
|
|
||||||
|
.authors h2 { |
||||||
|
font-size: 32px; |
||||||
|
line-height: 38px; |
||||||
|
margin-bottom: 15px; |
||||||
|
} |
||||||
|
|
||||||
|
.authors li { |
||||||
|
border-radius: 24px; |
||||||
|
width: 100%; |
||||||
|
} |
||||||
|
|
||||||
|
.authors a { |
||||||
|
padding: 32px 17px 52px; |
||||||
|
} |
||||||
|
|
||||||
|
.authors .main-img { |
||||||
|
width: 180px; |
||||||
|
height: 180px; |
||||||
|
margin-bottom: 20px; |
||||||
|
} |
||||||
|
|
||||||
|
.authors-name { |
||||||
|
font-size: 20px; |
||||||
|
line-height: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.authors-type { |
||||||
|
font-size: 18px; |
||||||
|
line-height: 24px; |
||||||
|
margin-bottom: 20px; |
||||||
|
} |
||||||
|
|
||||||
|
.authors p { |
||||||
|
font-size: 16px; |
||||||
|
line-height: 20px; |
||||||
|
} |
||||||
|
|
||||||
|
.author-head { |
||||||
|
padding-bottom: 15px; |
||||||
|
} |
||||||
|
|
||||||
|
.author-head-content { |
||||||
|
margin-bottom: 23px; |
||||||
|
} |
||||||
|
|
||||||
|
.author-head .main-img { |
||||||
|
width: 100%; |
||||||
|
} |
||||||
|
|
||||||
|
.author-head h2 { |
||||||
|
font-size: 32px; |
||||||
|
line-height: 38px; |
||||||
|
} |
||||||
|
|
||||||
|
.author-name { |
||||||
|
font-size: 20px; |
||||||
|
line-height: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.author-type { |
||||||
|
font-size: 18px; |
||||||
|
line-height: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.author-description { |
||||||
|
font-size: 18px; |
||||||
|
line-height: 24px; |
||||||
|
margin-bottom: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.author-head p { |
||||||
|
font-size: 16px; |
||||||
|
line-height: 20px; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,120 +0,0 @@ |
|||||||
/* Стили для мобильных устройств */ |
|
||||||
@media only screen and (max-width: 576px) { |
|
||||||
.anons-best__title { |
|
||||||
font-size: 26px; |
|
||||||
line-height: 32px; |
|
||||||
margin-bottom: 12px; |
|
||||||
} |
|
||||||
|
|
||||||
.anons-best__card { |
|
||||||
padding-top: 205px; |
|
||||||
} |
|
||||||
|
|
||||||
.anons-best__card .main-img { |
|
||||||
height: 300px; |
|
||||||
} |
|
||||||
|
|
||||||
.anons-best__card-body { |
|
||||||
padding: 20px 17px; |
|
||||||
} |
|
||||||
|
|
||||||
.anons-best__card-body__title { |
|
||||||
font-size: 20px; |
|
||||||
line-height: 24px; |
|
||||||
margin-bottom: 16px; |
|
||||||
} |
|
||||||
|
|
||||||
.anons-best__card.light .main-img { |
|
||||||
height: 197px; |
|
||||||
} |
|
||||||
|
|
||||||
.anons-best__card.light .anons-best__card-body__title { |
|
||||||
font-size: 20px; |
|
||||||
line-height: 24px; |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.authors { |
|
||||||
padding-bottom: 138px; |
|
||||||
} |
|
||||||
|
|
||||||
.authors h2 { |
|
||||||
font-size: 32px; |
|
||||||
line-height: 38px; |
|
||||||
margin-bottom: 15px; |
|
||||||
} |
|
||||||
|
|
||||||
.authors li { |
|
||||||
border-radius: 24px; |
|
||||||
width: 100%; |
|
||||||
} |
|
||||||
|
|
||||||
.authors a { |
|
||||||
padding: 32px 17px 52px; |
|
||||||
} |
|
||||||
|
|
||||||
.authors .main-img { |
|
||||||
width: 180px; |
|
||||||
height: 180px; |
|
||||||
margin-bottom: 20px; |
|
||||||
} |
|
||||||
|
|
||||||
.authors-name { |
|
||||||
font-size: 20px; |
|
||||||
line-height: 24px; |
|
||||||
} |
|
||||||
|
|
||||||
.authors-type { |
|
||||||
font-size: 18px; |
|
||||||
line-height: 24px; |
|
||||||
margin-bottom: 20px; |
|
||||||
} |
|
||||||
|
|
||||||
.authors p { |
|
||||||
font-size: 16px; |
|
||||||
line-height: 20px; |
|
||||||
} |
|
||||||
|
|
||||||
.author-head { |
|
||||||
padding-bottom: 15px; |
|
||||||
} |
|
||||||
|
|
||||||
.author-head-content { |
|
||||||
margin-bottom: 23px; |
|
||||||
} |
|
||||||
|
|
||||||
.author-head .main-img { |
|
||||||
width: 100%; |
|
||||||
} |
|
||||||
|
|
||||||
.author-head h2 { |
|
||||||
font-size: 32px; |
|
||||||
line-height: 38px; |
|
||||||
} |
|
||||||
|
|
||||||
.author-name { |
|
||||||
font-size: 20px; |
|
||||||
line-height: 24px; |
|
||||||
} |
|
||||||
|
|
||||||
.author-type { |
|
||||||
font-size: 18px; |
|
||||||
line-height: 24px; |
|
||||||
} |
|
||||||
|
|
||||||
.author-description { |
|
||||||
font-size: 18px; |
|
||||||
line-height: 24px; |
|
||||||
margin-bottom: 24px; |
|
||||||
} |
|
||||||
|
|
||||||
.author-head p { |
|
||||||
font-size: 16px; |
|
||||||
line-height: 20px; |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,44 +0,0 @@ |
|||||||
/* Стили для планшетов */ |
|
||||||
@media only screen and (max-width: 992px) { |
|
||||||
|
|
||||||
.authors h2 { |
|
||||||
font-size: 48px; |
|
||||||
margin-bottom: 24px; |
|
||||||
} |
|
||||||
|
|
||||||
.authors li { |
|
||||||
border-radius: 32px; |
|
||||||
width: calc(50% - 12px); |
|
||||||
} |
|
||||||
|
|
||||||
.authors .main-img { |
|
||||||
margin-bottom: 24px; |
|
||||||
} |
|
||||||
|
|
||||||
.author { |
|
||||||
padding-bottom: 24px; |
|
||||||
} |
|
||||||
|
|
||||||
.author h2 { |
|
||||||
font-size: 48px; |
|
||||||
} |
|
||||||
|
|
||||||
.author-head-content { |
|
||||||
flex-direction: column; |
|
||||||
align-items: flex-start; |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* Стили для планшетов */ |
|
||||||
@media only screen and (max-width: 992px) { |
|
||||||
|
|
||||||
.author { |
|
||||||
padding: 188px 0 36px; |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
} |
|
Before Width: | Height: | Size: 458 B |
Before Width: | Height: | Size: 1.9 KiB |
@ -1,10 +0,0 @@ |
|||||||
@media(max-width:600px) { |
|
||||||
.article-content h2 { |
|
||||||
max-width: 661px; |
|
||||||
font-size: 24px!important; |
|
||||||
line-height: 40px; |
|
||||||
font-weight: bold; |
|
||||||
text-transform: uppercase; |
|
||||||
color: var(--grey-black); |
|
||||||
} |
|
||||||
} |
|
@ -1 +0,0 @@ |
|||||||
/* Стили для планшетов */ |
|
@ -1,4 +0,0 @@ |
|||||||
/* Стили для ультрашироких экранов */ |
|
||||||
@media only screen and (min-width: 1400px) { |
|
||||||
|
|
||||||
} |
|
@ -1,11 +0,0 @@ |
|||||||
@media (max-width: 1200px) { |
|
||||||
.header-navs { |
|
||||||
gap: 12px; |
|
||||||
} |
|
||||||
.header-navs__link { |
|
||||||
font-size: 14px; |
|
||||||
} |
|
||||||
.header-right { |
|
||||||
gap: 4px; |
|
||||||
} |
|
||||||
} |
|
@ -1,96 +0,0 @@ |
|||||||
/* Стили для планшетов */ |
|
||||||
@media only screen and (max-width: 992px) { |
|
||||||
.home-swp__btn { |
|
||||||
bottom: auto; |
|
||||||
top: 93px; |
|
||||||
left: -10px; |
|
||||||
width: calc(100% + 20px); |
|
||||||
justify-content: space-between; |
|
||||||
transform: translateX(0); |
|
||||||
} |
|
||||||
|
|
||||||
.home-swp__btn button { |
|
||||||
width: 48px; |
|
||||||
height: 48px; |
|
||||||
border-radius: 20px; |
|
||||||
} |
|
||||||
|
|
||||||
.home-card { |
|
||||||
flex-direction: column; |
|
||||||
border-radius: 24px; |
|
||||||
gap: 17px; |
|
||||||
} |
|
||||||
|
|
||||||
.home-card__img { |
|
||||||
height: 234px; |
|
||||||
width: 100%; |
|
||||||
border-radius: 24px; |
|
||||||
} |
|
||||||
|
|
||||||
.home-card__content { |
|
||||||
padding: 0 16px 89px; |
|
||||||
} |
|
||||||
|
|
||||||
.home-card__content-title { |
|
||||||
font-size: 20px; |
|
||||||
line-height: 24px; |
|
||||||
margin-bottom: 15px; |
|
||||||
} |
|
||||||
|
|
||||||
.home-card__content-description { |
|
||||||
font-size: 16px; |
|
||||||
line-height: 20px; |
|
||||||
margin-bottom: 15px; |
|
||||||
display: -webkit-box; |
|
||||||
-webkit-line-clamp: 5; |
|
||||||
-webkit-box-orient: vertical; |
|
||||||
overflow: hidden; |
|
||||||
text-overflow: ellipsis; |
|
||||||
} |
|
||||||
|
|
||||||
.home-card__content-body { |
|
||||||
gap: 7px; |
|
||||||
} |
|
||||||
|
|
||||||
.home-card__content-body__alerts { |
|
||||||
gap: 7px; |
|
||||||
} |
|
||||||
|
|
||||||
.home-card__content-body__alerts li { |
|
||||||
font-size: 14px; |
|
||||||
line-height: 16px; |
|
||||||
padding: 8px; |
|
||||||
} |
|
||||||
|
|
||||||
.home-card__content-body__day { |
|
||||||
font-size: 14px; |
|
||||||
line-height: 16px; |
|
||||||
} |
|
||||||
|
|
||||||
.home-card__content-body__time { |
|
||||||
font-size: 14px; |
|
||||||
line-height: 16px; |
|
||||||
} |
|
||||||
|
|
||||||
.home-card__content-body__data { |
|
||||||
gap: 7px; |
|
||||||
} |
|
||||||
|
|
||||||
.home-card__content-body__data>div { |
|
||||||
gap: 4px; |
|
||||||
font-size: 14px; |
|
||||||
line-height: 16px; |
|
||||||
} |
|
||||||
|
|
||||||
.home-card__content-body__data .main-img { |
|
||||||
width: 32px; |
|
||||||
height: 32px; |
|
||||||
} |
|
||||||
|
|
||||||
.home-card__content-body__link { |
|
||||||
right: 50%; |
|
||||||
bottom: 27px; |
|
||||||
transform: translateX(50%); |
|
||||||
width: max-content; |
|
||||||
} |
|
||||||
} |
|
@ -1,145 +0,0 @@ |
|||||||
@media (max-width: 992px) { |
|
||||||
.discount { |
|
||||||
padding: 32px 24px; |
|
||||||
border-radius: 32px; |
|
||||||
margin-bottom: 48px; |
|
||||||
} |
|
||||||
|
|
||||||
.discount-title { |
|
||||||
font-size: 26px; |
|
||||||
line-height: 32px; |
|
||||||
margin-bottom: 21px; |
|
||||||
} |
|
||||||
|
|
||||||
.discount-bg { |
|
||||||
display: none; |
|
||||||
} |
|
||||||
|
|
||||||
.discount-bg.mb { |
|
||||||
display: inline-block; |
|
||||||
position: static; |
|
||||||
margin-bottom: 21px; |
|
||||||
} |
|
||||||
|
|
||||||
.discount-form { |
|
||||||
flex-direction: column; |
|
||||||
gap: 21px; |
|
||||||
margin-bottom: 21px; |
|
||||||
} |
|
||||||
|
|
||||||
.discount-form img { |
|
||||||
display: none; |
|
||||||
} |
|
||||||
|
|
||||||
.discount-form input { |
|
||||||
width: 100%; |
|
||||||
text-align: center; |
|
||||||
} |
|
||||||
|
|
||||||
.discount-form button { |
|
||||||
width: 100%; |
|
||||||
text-align: center; |
|
||||||
} |
|
||||||
|
|
||||||
.discount-descriptions { |
|
||||||
display: flex; |
|
||||||
flex-direction: column-reverse; |
|
||||||
} |
|
||||||
|
|
||||||
p.discount-description__2 { |
|
||||||
font-size: 18px; |
|
||||||
line-height: 24px; |
|
||||||
font-weight: 500; |
|
||||||
grid-area: 21px; |
|
||||||
margin-bottom: 21px; |
|
||||||
} |
|
||||||
|
|
||||||
p.discount-description__1 { |
|
||||||
margin-bottom: 0; |
|
||||||
font-size: 12px; |
|
||||||
line-height: 120%; |
|
||||||
} |
|
||||||
|
|
||||||
.article-home { |
|
||||||
padding-bottom: 36px; |
|
||||||
} |
|
||||||
|
|
||||||
.article-home .container { |
|
||||||
display: flex; |
|
||||||
flex-direction: column; |
|
||||||
} |
|
||||||
|
|
||||||
.article-home h1 { |
|
||||||
order: 1; |
|
||||||
font-size: 32px; |
|
||||||
line-height: 38px; |
|
||||||
margin-bottom: 15px; |
|
||||||
} |
|
||||||
|
|
||||||
.article-home__card { |
|
||||||
order: 2; |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
.article-home__card img { |
|
||||||
border-radius: 32px; |
|
||||||
} |
|
||||||
|
|
||||||
.article-home__data { |
|
||||||
gap: 8px 16px; |
|
||||||
order: 3; |
|
||||||
margin: 15px 0 0; |
|
||||||
} |
|
||||||
|
|
||||||
.article-home__data-alerts { |
|
||||||
gap: 16px; |
|
||||||
} |
|
||||||
|
|
||||||
.article-home__data-alerts a { |
|
||||||
padding: 6px 8px; |
|
||||||
} |
|
||||||
|
|
||||||
.article-content { |
|
||||||
padding: 48px 0; |
|
||||||
border-radius: 64px; |
|
||||||
} |
|
||||||
|
|
||||||
.comment .comment-block { |
|
||||||
padding: 20px 24px; |
|
||||||
margin-top: 28px; |
|
||||||
} |
|
||||||
|
|
||||||
.comment .comment-title { |
|
||||||
padding-bottom: 20px; |
|
||||||
} |
|
||||||
|
|
||||||
.comment .answer-block { |
|
||||||
margin: 10px 0 0 42px; |
|
||||||
} |
|
||||||
|
|
||||||
.comment .comment-user h6 { |
|
||||||
font-size: 16px; |
|
||||||
line-height: 24px; |
|
||||||
} |
|
||||||
|
|
||||||
.comment .comment-block p { |
|
||||||
font-size: 16px; |
|
||||||
line-height: 24px; |
|
||||||
} |
|
||||||
|
|
||||||
.comment .comment-btns { |
|
||||||
gap: 14px; |
|
||||||
} |
|
||||||
|
|
||||||
.comment .comment-btns button { |
|
||||||
font-size: 12px; |
|
||||||
line-height: 16px; |
|
||||||
} |
|
||||||
|
|
||||||
.comment .comment-user span { |
|
||||||
font-size: 12px; |
|
||||||
line-height: 16px; |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
} |
|
@ -1,4 +0,0 @@ |
|||||||
/* Стили для планшетов */ |
|
||||||
@media only screen and (max-width: 992px) { |
|
||||||
|
|
||||||
} |
|
@ -1,143 +0,0 @@ |
|||||||
// Функция для показа модальных окон
|
|
||||||
function showModal(modalClass) { |
|
||||||
|
|
||||||
|
|
||||||
const modal = document.querySelector('.' + modalClass); |
|
||||||
if (modal) { |
|
||||||
modal.style.display = 'flex'; |
|
||||||
|
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
// Функция для закрытия модальных окон
|
|
||||||
function closeModals() { |
|
||||||
const modals = document.querySelectorAll('.mform'); |
|
||||||
modals.forEach(modal => { |
|
||||||
modal.style.display = 'none'; |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
// Инициализация после загрузки DOM
|
|
||||||
document.addEventListener('DOMContentLoaded', function() { |
|
||||||
// Обработчики для кнопок закрытия
|
|
||||||
const closeButtons = document.querySelectorAll('.close-button'); |
|
||||||
closeButtons.forEach(button => { |
|
||||||
button.addEventListener('click', function() { |
|
||||||
closeModals(); |
|
||||||
}); |
|
||||||
}); |
|
||||||
|
|
||||||
// Закрытие при клике вне контента
|
|
||||||
window.addEventListener('click', function(event) { |
|
||||||
|
|
||||||
const modals = document.querySelectorAll('.mform'); |
|
||||||
modals.forEach(modal => { |
|
||||||
if (event.target === modal) { |
|
||||||
modal.style.display = 'none'; |
|
||||||
} |
|
||||||
}); |
|
||||||
}); |
|
||||||
}); |
|
||||||
|
|
||||||
// Закрытие при клике вне контента
|
|
||||||
window.addEventListener('click', function(event) { |
|
||||||
const modals = document.querySelectorAll('.modal-success, .modal-offer'); |
|
||||||
modals.forEach(modal => { |
|
||||||
if (event.target === modal) { |
|
||||||
modal.style.display = 'none'; |
|
||||||
} |
|
||||||
}); |
|
||||||
}); |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
jQuery(document).ready(function($) { |
|
||||||
$('.form-process').submit(function(event) { |
|
||||||
event.preventDefault(); |
|
||||||
let validate = validateForm(this); |
|
||||||
if (validate){ |
|
||||||
action = $(this).attr('action') |
|
||||||
let formData = $(this).serialize(); |
|
||||||
$.ajax({ |
|
||||||
type: 'POST', |
|
||||||
url: '/wp-admin/admin-ajax.php', |
|
||||||
data: { |
|
||||||
action: action, |
|
||||||
formData: formData |
|
||||||
}, |
|
||||||
success: function(response) { |
|
||||||
closeModals() |
|
||||||
showModal('mform-success') |
|
||||||
|
|
||||||
} |
|
||||||
}); |
|
||||||
} |
|
||||||
}); |
|
||||||
}); |
|
||||||
|
|
||||||
const metaLocale = document.querySelector('meta[property="og:locale"]'); |
|
||||||
const localeValue = metaLocale.getAttribute('content'); |
|
||||||
|
|
||||||
|
|
||||||
// Функция валидации формы
|
|
||||||
function validateForm(form) { |
|
||||||
// Очищаем предыдущие сообщения об ошибках внутри этой формы
|
|
||||||
clearErrorMessages(form); |
|
||||||
let validated = true |
|
||||||
// Валидация поля имени
|
|
||||||
const nameInput = form.querySelector('input[name="name"]'); |
|
||||||
|
|
||||||
if (nameInput && !nameInput.value.trim()) { |
|
||||||
if(localeValue == 'en_US'){ |
|
||||||
showError(nameInput, 'The name is requeried field'); |
|
||||||
} |
|
||||||
if(localeValue == 'ru_RU'){ |
|
||||||
showError(nameInput, 'Поле имени обязательно для заполнения.'); |
|
||||||
} |
|
||||||
validated = false |
|
||||||
} |
|
||||||
|
|
||||||
// Валидация поля email
|
|
||||||
const emailInput = form.querySelector('input[name="email"]'); |
|
||||||
const emailPattern = /^[^\s@]+@[^\s@]+\.[^\s@]+$/; |
|
||||||
if (emailInput && !emailPattern.test(emailInput.value.trim())) { |
|
||||||
|
|
||||||
if(localeValue == 'en_US'){ |
|
||||||
showError(emailInput, 'Email is incorrect.'); |
|
||||||
} |
|
||||||
if(localeValue == 'ru_RU'){ |
|
||||||
showError(emailInput, 'Введите корректный email.'); |
|
||||||
} |
|
||||||
validated = false |
|
||||||
} |
|
||||||
|
|
||||||
// Валидация поля телефона
|
|
||||||
const phoneInput = form.querySelector('input[name="phone"]'); |
|
||||||
const phonePattern = /^\+?\d{10,15}$/; |
|
||||||
if (phoneInput && !phonePattern.test(phoneInput.value.trim())) { |
|
||||||
if(localeValue == 'en_US'){ |
|
||||||
showError(phoneInput, 'The phone is incorrect.'); |
|
||||||
} |
|
||||||
if(localeValue == 'ru_RU'){ |
|
||||||
showError(phoneInput, 'Введите корректный номер телефона.'); |
|
||||||
} |
|
||||||
validated = false |
|
||||||
} |
|
||||||
return validated |
|
||||||
} |
|
||||||
|
|
||||||
// Функция для отображения сообщения об ошибке
|
|
||||||
function showError(input, message) { |
|
||||||
const errorMessage = document.createElement('div'); |
|
||||||
errorMessage.className = 'error-message'; |
|
||||||
errorMessage.textContent = message; |
|
||||||
input.insertAdjacentElement('afterend', errorMessage); |
|
||||||
} |
|
||||||
|
|
||||||
// Функция для очистки сообщений об ошибках внутри конкретной формы
|
|
||||||
function clearErrorMessages(form) { |
|
||||||
const errorMessages = form.querySelectorAll('.error-message'); |
|
||||||
errorMessages.forEach(errorMessage => { |
|
||||||
errorMessage.remove(); |
|
||||||
}); |
|
||||||
} |
|
File diff suppressed because one or more lines are too long
@ -1,32 +0,0 @@ |
|||||||
/* Стили для планшетов */ |
|
||||||
@media only screen and (max-width: 992px) { |
|
||||||
.header-navs { |
|
||||||
display: none; |
|
||||||
} |
|
||||||
|
|
||||||
.header-container { |
|
||||||
height: 56px; |
|
||||||
padding: 0; |
|
||||||
} |
|
||||||
|
|
||||||
.header-bars { |
|
||||||
display: flex; |
|
||||||
align-items: center; |
|
||||||
justify-content: center; |
|
||||||
} |
|
||||||
|
|
||||||
.header-logo { |
|
||||||
font-size: 16px; |
|
||||||
line-height: 20px; |
|
||||||
gap: 8px; |
|
||||||
} |
|
||||||
|
|
||||||
.header-logo img { |
|
||||||
width: 31px; |
|
||||||
flex-shrink: 0; |
|
||||||
} |
|
||||||
|
|
||||||
.header-lang { |
|
||||||
display: none; |
|
||||||
} |
|
||||||
} |
|
@ -1,4 +0,0 @@ |
|||||||
/* Стили для ультрашироких экранов */ |
|
||||||
@media only screen and (min-width: 1400px) { |
|
||||||
|
|
||||||
} |
|
@ -1,11 +0,0 @@ |
|||||||
@media (max-width: 1200px) { |
|
||||||
.header-navs { |
|
||||||
gap: 12px; |
|
||||||
} |
|
||||||
.header-navs__link { |
|
||||||
font-size: 14px; |
|
||||||
} |
|
||||||
.header-right { |
|
||||||
gap: 4px; |
|
||||||
} |
|
||||||
} |
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,336 +0,0 @@ |
|||||||
/* Стили для мобильных устройств */ |
|
||||||
@media only screen and (max-width: 720px) { |
|
||||||
/* product */ |
|
||||||
.product__item{ |
|
||||||
width: calc(100% - 24px); |
|
||||||
} |
|
||||||
/* product */ |
|
||||||
|
|
||||||
/* modal */ |
|
||||||
.modal__basket{ |
|
||||||
width: 100%; |
|
||||||
} |
|
||||||
.modal__filter{ |
|
||||||
width: 100%; |
|
||||||
} |
|
||||||
.modal__to-know, |
|
||||||
.modal__to-know-submit{ |
|
||||||
width: 100%; |
|
||||||
} |
|
||||||
.modal__button .to-know{ |
|
||||||
display: flex; |
|
||||||
|
|
||||||
background: none; |
|
||||||
} |
|
||||||
.modal__basket .modal__header { |
|
||||||
height: calc(100% - 156px); |
|
||||||
margin-bottom: -36px; |
|
||||||
} |
|
||||||
.modal-basket-item__block-image{ |
|
||||||
position: absolute; |
|
||||||
width: 80px; |
|
||||||
} |
|
||||||
.modal-basket-item__image{ |
|
||||||
width: 48px; |
|
||||||
} |
|
||||||
.modal-basket-item__content{ |
|
||||||
margin-left: 0; |
|
||||||
|
|
||||||
padding-left: 96px; |
|
||||||
} |
|
||||||
.modal-basket-item__control{ |
|
||||||
margin-left: -80px; |
|
||||||
} |
|
||||||
.modal-basket-item__title{ |
|
||||||
min-height: 40px; |
|
||||||
|
|
||||||
font-size: 16px; |
|
||||||
} |
|
||||||
.modal-basket__item--return{ |
|
||||||
flex-direction: column; |
|
||||||
align-items: start; |
|
||||||
} |
|
||||||
.modal-basket__item--return .modal-basket-item__title{ |
|
||||||
margin-right: auto; |
|
||||||
} |
|
||||||
.notification--width-584{ |
|
||||||
width: 100%; |
|
||||||
} |
|
||||||
.notification__title{ |
|
||||||
font-size: 20px; |
|
||||||
} |
|
||||||
.notification__text--center-pc{ |
|
||||||
text-align: start; |
|
||||||
} |
|
||||||
.notification__img{ |
|
||||||
height: 360px; |
|
||||||
} |
|
||||||
.notification__title{ |
|
||||||
padding-right: 96px; |
|
||||||
} |
|
||||||
.modal-form__buttons--two{ |
|
||||||
flex-wrap: wrap; |
|
||||||
} |
|
||||||
.modal-form__buttons--two button, .modal-form__buttons--two input{ |
|
||||||
margin-top: 24px; |
|
||||||
width: 100%; |
|
||||||
} |
|
||||||
.modal-form__buttons--two button:first-child, .modal-form__buttons--two input:first-child{ |
|
||||||
margin-top: 0; |
|
||||||
} |
|
||||||
.modal-map__control{ |
|
||||||
flex-wrap: wrap; |
|
||||||
} |
|
||||||
.modal-map-control__item{ |
|
||||||
width: calc(100% - 24px); |
|
||||||
} |
|
||||||
.form__full-mobile{ |
|
||||||
width: 100%; |
|
||||||
border-radius: 0; |
|
||||||
border: none; |
|
||||||
} |
|
||||||
|
|
||||||
.modal-form-content__line--three .modal-form-content-line__element:nth-child(1){ |
|
||||||
width: 69px; |
|
||||||
} |
|
||||||
.modal-form-content__line--three .modal-form-content-line__element:nth-child(2){ |
|
||||||
|
|
||||||
} |
|
||||||
.modal-form-content__line--three .modal-form-content-line__element:nth-child(3){ |
|
||||||
width: 82px; |
|
||||||
} |
|
||||||
.form__input{ |
|
||||||
padding: 12px 14px; |
|
||||||
} |
|
||||||
.modal-form--height-100-phone{ |
|
||||||
min-height: 100%; |
|
||||||
} |
|
||||||
/* modal */ |
|
||||||
|
|
||||||
/* footer */ |
|
||||||
.footer__about{ |
|
||||||
display: none; |
|
||||||
} |
|
||||||
.footer__wrapper{ |
|
||||||
flex-direction: column; |
|
||||||
} |
|
||||||
.footer__content{ |
|
||||||
width: 100%; |
|
||||||
} |
|
||||||
.footer__form{ |
|
||||||
margin-top: 24px; |
|
||||||
margin-left: 0; |
|
||||||
|
|
||||||
width: 100%; |
|
||||||
} |
|
||||||
.footer__social-media{ |
|
||||||
display: block; |
|
||||||
|
|
||||||
margin-top: 24px; |
|
||||||
} |
|
||||||
.footer-about__text{ |
|
||||||
padding-top: 35px; |
|
||||||
display: block; |
|
||||||
text-align: left; |
|
||||||
} |
|
||||||
.footer__list{ |
|
||||||
margin-top: 20px; |
|
||||||
} |
|
||||||
/* footer */ |
|
||||||
|
|
||||||
/* detail */ |
|
||||||
.toggle__table--two .toggle-table__block{ |
|
||||||
width: 100%; |
|
||||||
} |
|
||||||
.toggle__table--two .toggle-table__block:nth-child(even){ |
|
||||||
margin-top: 32px; |
|
||||||
margin-left: 0; |
|
||||||
} |
|
||||||
.toggle__table--three .toggle-table__block:nth-child(1){ |
|
||||||
width: 31%; |
|
||||||
} |
|
||||||
/* detail */ |
|
||||||
|
|
||||||
/* cabinet */ |
|
||||||
.cabinet-card__title{ |
|
||||||
font-size: 20px; |
|
||||||
} |
|
||||||
.cabinet-card__no-orders{ |
|
||||||
margin-top: 16px; |
|
||||||
} |
|
||||||
.cabinet-card-order__header{ |
|
||||||
flex-direction: column; |
|
||||||
} |
|
||||||
.cabinet-card-order__payment{ |
|
||||||
margin-top: 16px; |
|
||||||
} |
|
||||||
.cabinet-card-order-detail__main{ |
|
||||||
flex-direction: column; |
|
||||||
} |
|
||||||
.cabinet-card-order-detail-main__links{ |
|
||||||
margin-top: 24px; |
|
||||||
|
|
||||||
align-items: start; |
|
||||||
} |
|
||||||
.cabinet-card-order-detail-main-product__img{ |
|
||||||
width: 70px; |
|
||||||
height: 70px; |
|
||||||
} |
|
||||||
.cabinet-card-order-detail-main__product{ |
|
||||||
margin-top: 16px; |
|
||||||
|
|
||||||
align-items: start; |
|
||||||
} |
|
||||||
.cabinet-card-order-detail-main-product__content{ |
|
||||||
margin-left: 16px; |
|
||||||
|
|
||||||
flex-wrap: wrap; |
|
||||||
|
|
||||||
position: relative; |
|
||||||
} |
|
||||||
.cabinet-card-order-detail-main-product__description{ |
|
||||||
width: 100%; |
|
||||||
} |
|
||||||
.cabinet-card-order-detail-main-product__count{ |
|
||||||
position: absolute; |
|
||||||
left: 116px; |
|
||||||
bottom: 0; |
|
||||||
} |
|
||||||
.cabinet-card-order-detail-main-product__price{ |
|
||||||
position: absolute; |
|
||||||
left: 153px; |
|
||||||
bottom: 0; |
|
||||||
} |
|
||||||
.cabinet-card__content{ |
|
||||||
padding-right: 19px; |
|
||||||
} |
|
||||||
.cabinet-card-order-main__date{ |
|
||||||
font-size: 20px; |
|
||||||
} |
|
||||||
/* .cabinet-card__order.active */ |
|
||||||
/* .cabinet-card__order.active */ |
|
||||||
/* cabinet */ |
|
||||||
} |
|
||||||
|
|
||||||
@media only screen and (max-width: 576px) { |
|
||||||
/* header */ |
|
||||||
|
|
||||||
/* header */ |
|
||||||
|
|
||||||
/* product */ |
|
||||||
.product__header{ |
|
||||||
flex-direction: column; |
|
||||||
align-items: start; |
|
||||||
} |
|
||||||
.product__header .button{ |
|
||||||
margin-top: 48px; |
|
||||||
} |
|
||||||
/* product */ |
|
||||||
|
|
||||||
/* modal */ |
|
||||||
.modal__aside{ |
|
||||||
left: 0; |
|
||||||
} |
|
||||||
.form-input-radio__title span{ |
|
||||||
display: block; |
|
||||||
width: 100%; |
|
||||||
|
|
||||||
color: var(--text-grey); |
|
||||||
} |
|
||||||
.modal-form__title{ |
|
||||||
font-size: 20px; |
|
||||||
} |
|
||||||
/* modal */ |
|
||||||
|
|
||||||
/* detail */ |
|
||||||
.detail-block-form__item, |
|
||||||
.detail-block-form__submit{ |
|
||||||
min-width: 100%; |
|
||||||
} |
|
||||||
/* detail */ |
|
||||||
|
|
||||||
/* cabinet */ |
|
||||||
|
|
||||||
.cabinet-card-order-detail-main-product__img{ |
|
||||||
width: 40px; |
|
||||||
height: 40px; |
|
||||||
} |
|
||||||
|
|
||||||
.cabinet-card-order-detail-main-product__count{ |
|
||||||
left: auto; |
|
||||||
right: 71px; |
|
||||||
} |
|
||||||
.cabinet-card-order-detail-main-product__price{ |
|
||||||
left: auto; |
|
||||||
right: 0; |
|
||||||
} |
|
||||||
.cabinet-card-order__detail-short{ |
|
||||||
transition-delay: 0; |
|
||||||
transition-duration: 0; |
|
||||||
} |
|
||||||
/* cabinet */ |
|
||||||
} |
|
||||||
|
|
||||||
@media only screen and (max-width: 720px) { |
|
||||||
.subscription__item{ |
|
||||||
flex-direction: column; |
|
||||||
} |
|
||||||
|
|
||||||
.subscription__item > p:first-child{ |
|
||||||
font-size: 16px; |
|
||||||
color: var(--text-6); |
|
||||||
} |
|
||||||
.subscription__item > p:last-child{ |
|
||||||
margin-top: 6px; |
|
||||||
} |
|
||||||
|
|
||||||
.subscription__add-title { |
|
||||||
font-size: 20px; |
|
||||||
} |
|
||||||
|
|
||||||
.subscription__add-product{ |
|
||||||
flex-wrap: wrap; |
|
||||||
} |
|
||||||
|
|
||||||
.subscription__add-product > *:not(:first-child){ |
|
||||||
padding-top: 0; |
|
||||||
} |
|
||||||
.subscription__add-product .cabinet-card-order-detail-main-product__img{ |
|
||||||
width: 73px; |
|
||||||
height: 66px; |
|
||||||
} |
|
||||||
.subscription__add-product .cabinet-card-order-detail-main-product-description__what{ |
|
||||||
font-size: 12px; |
|
||||||
display: -webkit-box; |
|
||||||
-webkit-line-clamp: 2; |
|
||||||
-webkit-box-orient: vertical; |
|
||||||
overflow: hidden; |
|
||||||
} |
|
||||||
.subscription__add-product .cabinet-card-order-detail-main-product-description__with-what{ |
|
||||||
margin-top: 8px; |
|
||||||
|
|
||||||
font-size: 12px; |
|
||||||
} |
|
||||||
.subscription__add-product .cabinet-card-order-detail-main-product__description { |
|
||||||
width: calc(100% - 73px); |
|
||||||
} |
|
||||||
.subscription__add-product .cabinet-card-order-detail-main-product__content{ |
|
||||||
position: static; |
|
||||||
margin-top: -10px; |
|
||||||
margin-left: auto; |
|
||||||
width: calc(100% - 73px); |
|
||||||
|
|
||||||
display: flex; |
|
||||||
justify-content: space-between; |
|
||||||
align-items: center; |
|
||||||
} |
|
||||||
.subscription__add-product .cabinet-card-order-detail-main-product__count{ |
|
||||||
position: static; |
|
||||||
font-size: 12px; |
|
||||||
} |
|
||||||
.subscription__add-product .cabinet-card-order-detail-main-product__price{ |
|
||||||
position: static; |
|
||||||
font-size: 16px; |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
@ -1,241 +0,0 @@ |
|||||||
.order{ |
|
||||||
display: flex; |
|
||||||
} |
|
||||||
.order__title{ |
|
||||||
font-family: var(--font-family); |
|
||||||
font-weight: 700; |
|
||||||
font-size: 24px; |
|
||||||
line-height: 117%; |
|
||||||
text-transform: uppercase; |
|
||||||
color: var(--text-black); |
|
||||||
} |
|
||||||
.order__contacts{ |
|
||||||
width: calc(50% - 0.5px); |
|
||||||
|
|
||||||
padding: 24px; |
|
||||||
|
|
||||||
border-right: 1px solid #121212; |
|
||||||
} |
|
||||||
.order-contacts__header{ |
|
||||||
display: flex; |
|
||||||
justify-content: space-between; |
|
||||||
align-items: center; |
|
||||||
} |
|
||||||
.order-contacts__form{ |
|
||||||
margin-top: 24px; |
|
||||||
} |
|
||||||
.order-contacts__delivery{ |
|
||||||
margin-top: 47.5px; |
|
||||||
|
|
||||||
padding-top: 48px; |
|
||||||
|
|
||||||
border-top: 1px solid var(--background-grey); |
|
||||||
} |
|
||||||
|
|
||||||
.order-contacts-deliver__item{ |
|
||||||
margin-top: 24px; |
|
||||||
} |
|
||||||
.order-contacts-deliver__date{ |
|
||||||
padding: 8px; |
|
||||||
|
|
||||||
border-radius: 24px; |
|
||||||
|
|
||||||
background: var(--background-grey); |
|
||||||
} |
|
||||||
.order-contacts-deliver__date .form-input-radio__item{ |
|
||||||
margin-top: 24px; |
|
||||||
} |
|
||||||
.order-contacts-deliver__date .form-input-radio__item:first-child{ |
|
||||||
margin-top: 0; |
|
||||||
} |
|
||||||
.order__your{ |
|
||||||
width: calc(50% - 0.5px); |
|
||||||
|
|
||||||
padding: 24px 24px 24px 48px; |
|
||||||
|
|
||||||
background: var(--background-grey); |
|
||||||
} |
|
||||||
.order-your__products{ |
|
||||||
margin-top: 48px; |
|
||||||
} |
|
||||||
.order-your-products__item{ |
|
||||||
margin-top: 16px; |
|
||||||
|
|
||||||
display: flex; |
|
||||||
justify-content: space-between; |
|
||||||
} |
|
||||||
.order-your-products__left{ |
|
||||||
display: flex; |
|
||||||
} |
|
||||||
.order-your-products__img{ |
|
||||||
width: 40px; |
|
||||||
aspect-ratio: 1; |
|
||||||
|
|
||||||
border-radius: 16px; |
|
||||||
} |
|
||||||
.order-your-products__content{ |
|
||||||
margin-left: 16px; |
|
||||||
} |
|
||||||
.order-your-products__name{ |
|
||||||
font-family: var(--font-family); |
|
||||||
font-weight: 500; |
|
||||||
font-size: 12px; |
|
||||||
line-height: 133%; |
|
||||||
color: var(--text-black); |
|
||||||
|
|
||||||
text-decoration: none; |
|
||||||
} |
|
||||||
.order-your-products__description{ |
|
||||||
margin-top: 8px; |
|
||||||
|
|
||||||
font-family: var(--font-family); |
|
||||||
font-weight: 500; |
|
||||||
font-size: 12px; |
|
||||||
line-height: 133%; |
|
||||||
color: var(--text-6); |
|
||||||
} |
|
||||||
.order-your-products__description span{ |
|
||||||
font-weight: 700; |
|
||||||
} |
|
||||||
.order-your-products__description span::before{ |
|
||||||
margin-left: 3px; |
|
||||||
|
|
||||||
content: 'x '; |
|
||||||
} |
|
||||||
.order-your-products__right{ |
|
||||||
display: flex; |
|
||||||
} |
|
||||||
.order-your-products__count{ |
|
||||||
font-family: var(--font-family); |
|
||||||
font-weight: 700; |
|
||||||
font-size: 12px; |
|
||||||
line-height: 133%; |
|
||||||
text-align: right; |
|
||||||
color: var(--text-6); |
|
||||||
} |
|
||||||
.order-your-products__count::before{ |
|
||||||
content: 'x'; |
|
||||||
} |
|
||||||
.order-your-products__price{ |
|
||||||
margin-left: 16px; |
|
||||||
|
|
||||||
font-family: var(--font-family); |
|
||||||
font-weight: 700; |
|
||||||
font-size: 12px; |
|
||||||
line-height: 133%; |
|
||||||
text-align: right; |
|
||||||
color: var(--text-black); |
|
||||||
} |
|
||||||
.order-your-products__price::after{ |
|
||||||
content: 'Р'; |
|
||||||
} |
|
||||||
.order-your__calculation{ |
|
||||||
margin-top: 48px; |
|
||||||
} |
|
||||||
.order-your__promo{ |
|
||||||
display: flex; |
|
||||||
} |
|
||||||
.order-your-promo__button{ |
|
||||||
margin-left: 8px; |
|
||||||
} |
|
||||||
.order-your-calculation__item{ |
|
||||||
margin-top: 24px; |
|
||||||
|
|
||||||
display: flex; |
|
||||||
justify-content: space-between; |
|
||||||
align-items: center; |
|
||||||
} |
|
||||||
.order-your-calculation__title{ |
|
||||||
font-family: var(--font-family); |
|
||||||
font-weight: 500; |
|
||||||
font-size: 20px; |
|
||||||
line-height: 120%; |
|
||||||
color: var(--text-black); |
|
||||||
} |
|
||||||
.order-your-calculation__value{ |
|
||||||
font-family: var(--font-family); |
|
||||||
font-weight: 700; |
|
||||||
font-size: 20px; |
|
||||||
line-height: 200%; |
|
||||||
text-transform: uppercase; |
|
||||||
text-align: right; |
|
||||||
color: var(--text-black); |
|
||||||
} |
|
||||||
.order-your-calculation__value--price::after{ |
|
||||||
content: ' ₽'; |
|
||||||
} |
|
||||||
.order-your-calculation__value--discount{ |
|
||||||
background: var(--gradient-red); |
|
||||||
background-clip: text; |
|
||||||
-webkit-background-clip: text; |
|
||||||
-webkit-text-fill-color: transparent; |
|
||||||
} |
|
||||||
.order-your-calculation__value--discount::before{ |
|
||||||
content: '- '; |
|
||||||
} |
|
||||||
.order-your-calculation__description{ |
|
||||||
font-family: var(--font-family); |
|
||||||
font-weight: 500; |
|
||||||
font-size: 12px; |
|
||||||
line-height: 133%; |
|
||||||
text-align: right; |
|
||||||
color: var(--text-9); |
|
||||||
} |
|
||||||
.order-your-calculation__line{ |
|
||||||
margin-top: 23px; |
|
||||||
border: 1px solid var(--background-9); |
|
||||||
} |
|
||||||
.order-your-calculation__result{ |
|
||||||
font-family: var(--font-family); |
|
||||||
font-weight: 700; |
|
||||||
font-size: 24px; |
|
||||||
line-height: 117%; |
|
||||||
text-transform: uppercase; |
|
||||||
color: var(--text-black); |
|
||||||
} |
|
||||||
.order-your-calculation__submit{ |
|
||||||
margin-top: 48px; |
|
||||||
} |
|
||||||
|
|
||||||
@media only screen and (max-width: 1200px) { |
|
||||||
.order{ |
|
||||||
display: block; |
|
||||||
} |
|
||||||
.order__contacts, .order__your{ |
|
||||||
border: none; |
|
||||||
width: 100%; |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
@media only screen and (max-width: 720px) { |
|
||||||
.order__title{ |
|
||||||
max-width: 181px; |
|
||||||
|
|
||||||
font-size: 20px; |
|
||||||
line-height: 120%; |
|
||||||
} |
|
||||||
.order__your{ |
|
||||||
margin-top: 16px; |
|
||||||
} |
|
||||||
.order__contacts{ |
|
||||||
padding: 24px 16px; |
|
||||||
} |
|
||||||
.order__your{ |
|
||||||
padding: 40px 16px 9px 16px; |
|
||||||
} |
|
||||||
.order-your__promo{ |
|
||||||
display: block; |
|
||||||
} |
|
||||||
.order-your-promo__button{ |
|
||||||
margin-left: 0; |
|
||||||
margin-top: 24px; |
|
||||||
|
|
||||||
width: 100%; |
|
||||||
} |
|
||||||
.order-your-products__content{ |
|
||||||
max-width: 164px; |
|
||||||
} |
|
||||||
.order-your-products__count, .order-your-products__price{ |
|
||||||
flex-shrink: 0; |
|
||||||
} |
|
||||||
} |
|
@ -1,348 +0,0 @@ |
|||||||
/* Стили для планшетов */ |
|
||||||
@media only screen and (max-width: 1200px) { |
|
||||||
/* header */ |
|
||||||
main{ |
|
||||||
padding-top: 64px; |
|
||||||
} |
|
||||||
.main-menu{ |
|
||||||
display: none; |
|
||||||
} |
|
||||||
.header__open-menu{ |
|
||||||
display: block; |
|
||||||
} |
|
||||||
.lang{ |
|
||||||
display: none; |
|
||||||
} |
|
||||||
.header__logo{ |
|
||||||
width: 136px; |
|
||||||
height: 29px; |
|
||||||
} |
|
||||||
.header__content{ |
|
||||||
height: auto; |
|
||||||
|
|
||||||
padding: 8px 16px; |
|
||||||
} |
|
||||||
.mini-profile__item:nth-child(2){ |
|
||||||
margin-left: 0; |
|
||||||
} |
|
||||||
.header::after{ |
|
||||||
left: 0; |
|
||||||
|
|
||||||
width: 100%; |
|
||||||
} |
|
||||||
.header__pc-menu{ |
|
||||||
display: none; |
|
||||||
} |
|
||||||
.header__phone-menu{ |
|
||||||
display: block; |
|
||||||
} |
|
||||||
.header__menu-block{ |
|
||||||
top: 56px; |
|
||||||
} |
|
||||||
.header__content::after{ |
|
||||||
left: 0; |
|
||||||
right: 0; |
|
||||||
width: 100%; |
|
||||||
} |
|
||||||
/* header */ |
|
||||||
|
|
||||||
/* footer */ |
|
||||||
.footer{ |
|
||||||
margin-top: 0; |
|
||||||
|
|
||||||
padding: 24px 16px; |
|
||||||
} |
|
||||||
/* footer */ |
|
||||||
|
|
||||||
/* breadcrumbs */ |
|
||||||
.breadcrumbs{ |
|
||||||
display: none; |
|
||||||
} |
|
||||||
/* breadcrumbs */ |
|
||||||
|
|
||||||
/* product */ |
|
||||||
.product{ |
|
||||||
padding: 12px; |
|
||||||
padding-top: 20px; |
|
||||||
} |
|
||||||
.product__title{ |
|
||||||
font-weight: 700; |
|
||||||
font-size: 26px; |
|
||||||
line-height: 123%; |
|
||||||
text-transform: uppercase; |
|
||||||
} |
|
||||||
.to-know p { |
|
||||||
font-size: 18px; |
|
||||||
} |
|
||||||
.toggle-table__title{ |
|
||||||
font-weight: 700; |
|
||||||
font-size: 12px; |
|
||||||
line-height: 133%; |
|
||||||
} |
|
||||||
.toggle-table__item p{ |
|
||||||
font-weight: 500; |
|
||||||
font-size: 12px; |
|
||||||
line-height: 133%; |
|
||||||
} |
|
||||||
.toggle-table-item__line{ |
|
||||||
margin-top: 12px; |
|
||||||
} |
|
||||||
.detail{ |
|
||||||
margin: 24px 16px; |
|
||||||
} |
|
||||||
.back-detail{ |
|
||||||
display: inline; |
|
||||||
} |
|
||||||
.detail-catalot__title{ |
|
||||||
font-size: 22px; |
|
||||||
} |
|
||||||
.product__footer--error{ |
|
||||||
margin: 48px 0px 24px; |
|
||||||
} |
|
||||||
/* product */ |
|
||||||
|
|
||||||
/* modal */ |
|
||||||
.modal{ |
|
||||||
padding: 0; |
|
||||||
} |
|
||||||
.modal__text{ |
|
||||||
padding-right: 0; |
|
||||||
} |
|
||||||
.form__button-pc{ |
|
||||||
display: none; |
|
||||||
} |
|
||||||
.form__button-mobile{ |
|
||||||
display: block; |
|
||||||
} |
|
||||||
.modal-form{ |
|
||||||
/* min-height: 100%; |
|
||||||
width: 100%; |
|
||||||
|
|
||||||
border-radius: 0; |
|
||||||
border: none; */ |
|
||||||
} |
|
||||||
.modal__notification{ |
|
||||||
margin: 24px; |
|
||||||
} |
|
||||||
.form-input-phone__list{ |
|
||||||
left: 0; |
|
||||||
} |
|
||||||
|
|
||||||
.modal-form-content__line--two{ |
|
||||||
flex-wrap: wrap; |
|
||||||
} |
|
||||||
.modal-form-content__line--two .modal-form-content-line__element{ |
|
||||||
margin-top: 24px; |
|
||||||
|
|
||||||
width: 100%; |
|
||||||
} |
|
||||||
.modal-form-content__line--two .modal-form-content-line__element:first-child{ |
|
||||||
margin-top: 0; |
|
||||||
} |
|
||||||
.modal-map{ |
|
||||||
width: 100%; |
|
||||||
|
|
||||||
flex-direction: column; |
|
||||||
|
|
||||||
border-radius: 0; |
|
||||||
} |
|
||||||
.modal-map__left, .modal-map__right{ |
|
||||||
width: 100%; |
|
||||||
} |
|
||||||
.modal-map__map iframe { |
|
||||||
width: 100%; |
|
||||||
height: 528px; |
|
||||||
} |
|
||||||
.modal-map-form__button{ |
|
||||||
display: none; |
|
||||||
} |
|
||||||
.modal-map-form__sub-button{ |
|
||||||
margin-top: 64px; |
|
||||||
|
|
||||||
padding: 0 24px; |
|
||||||
|
|
||||||
display: flex; |
|
||||||
} |
|
||||||
/* modal */ |
|
||||||
|
|
||||||
/* cabinet */ |
|
||||||
.cabinet{ |
|
||||||
flex-direction: column; |
|
||||||
|
|
||||||
position: relative; |
|
||||||
} |
|
||||||
.cabinet__control{ |
|
||||||
display: flex; |
|
||||||
|
|
||||||
position: relative; |
|
||||||
} |
|
||||||
.cabinet__orders, .cabinet__profile{ |
|
||||||
width: calc(100% - 48px); |
|
||||||
} |
|
||||||
.cabinet__orders, .cabinet__profile{ |
|
||||||
position: absolute; |
|
||||||
opacity: 0; |
|
||||||
|
|
||||||
transition: opacity .2s ease-out; |
|
||||||
} |
|
||||||
.cabinet-content{ |
|
||||||
pointer-events:none; |
|
||||||
} |
|
||||||
.cabinet__orders.active, .cabinet__profile.active{ |
|
||||||
opacity: 1; |
|
||||||
} |
|
||||||
.cabinet__orders.hide, .cabinet__profile.hide{ |
|
||||||
position: static; |
|
||||||
display: block; |
|
||||||
pointer-events:auto; |
|
||||||
|
|
||||||
width: 100%; |
|
||||||
} |
|
||||||
.cabinet__subscription-pc{ |
|
||||||
display: none; |
|
||||||
} |
|
||||||
.cabinet__subscription-mobile{ |
|
||||||
display: block; |
|
||||||
|
|
||||||
margin: 24px 24px 0 24px; |
|
||||||
} |
|
||||||
.cabinet__orders .cabinet-card:nth-child(2){ |
|
||||||
margin-top: 0; |
|
||||||
} |
|
||||||
.cabinet__orders--no-cab .cabinet-card:nth-child(2){ |
|
||||||
margin-top: 32px; |
|
||||||
} |
|
||||||
/* cabinet */ |
|
||||||
} |
|
||||||
|
|
||||||
@media only screen and (max-width: 980px) { |
|
||||||
/* product */ |
|
||||||
.product__item{ |
|
||||||
width: calc(50% - 24px); |
|
||||||
} |
|
||||||
/* product */ |
|
||||||
|
|
||||||
|
|
||||||
/* detail */ |
|
||||||
.detail{ |
|
||||||
flex-direction: column; |
|
||||||
} |
|
||||||
.detail__images{ |
|
||||||
display: none; |
|
||||||
} |
|
||||||
.detail__content{ |
|
||||||
width: 100%; |
|
||||||
} |
|
||||||
.detail__content{ |
|
||||||
margin-left: 0; |
|
||||||
} |
|
||||||
|
|
||||||
.detail__images-phone{ |
|
||||||
display: block; |
|
||||||
|
|
||||||
margin-top: 48px; |
|
||||||
margin-bottom: 48px; |
|
||||||
|
|
||||||
position: relative; |
|
||||||
|
|
||||||
overflow: hidden; |
|
||||||
} |
|
||||||
.detail__images-phone .swiper-slide{ |
|
||||||
display: flex; |
|
||||||
justify-content: center; |
|
||||||
} |
|
||||||
.detail-images-phone__image-block{ |
|
||||||
width: 100%; |
|
||||||
aspect-ratio: 1; |
|
||||||
max-width: 500px; |
|
||||||
|
|
||||||
display: flex; |
|
||||||
justify-content: center; |
|
||||||
align-items: center; |
|
||||||
|
|
||||||
background: var(--background-grey); |
|
||||||
border-radius: 16px; |
|
||||||
} |
|
||||||
|
|
||||||
.detail__images-phone .swiper-pagination-bullet{ |
|
||||||
width: 8px; |
|
||||||
height: 8px; |
|
||||||
|
|
||||||
border-radius: 50%; |
|
||||||
|
|
||||||
border: 1px solid #666; |
|
||||||
background-color: #666; |
|
||||||
|
|
||||||
opacity: 1; |
|
||||||
} |
|
||||||
.detail__images-phone .swiper-pagination-bullet.swiper-pagination-bullet-active{ |
|
||||||
background-color: var(--background-white); |
|
||||||
} |
|
||||||
|
|
||||||
.detail__images-phone .swiper-pagination{ |
|
||||||
margin-bottom: 19px; |
|
||||||
} |
|
||||||
.detail__title{ |
|
||||||
font-size: 26px; |
|
||||||
line-height: 123%; |
|
||||||
} |
|
||||||
.gallery__slider .swiper-pagination { |
|
||||||
display: block; |
|
||||||
} |
|
||||||
.gallery__pagination{ |
|
||||||
display: none; |
|
||||||
} |
|
||||||
|
|
||||||
.gallery__slider .swiper-pagination-bullet{ |
|
||||||
width: 8px; |
|
||||||
height: 8px; |
|
||||||
border-radius: 50%; |
|
||||||
border: 1px solid #666; |
|
||||||
background-color: #666; |
|
||||||
opacity: 1; |
|
||||||
} |
|
||||||
.gallery__wrapper .gallery-button{ |
|
||||||
display: none; |
|
||||||
} |
|
||||||
|
|
||||||
.gallery__slider .swiper-pagination-bullet.swiper-pagination-bullet-active{ |
|
||||||
background-color: var(--background-white); |
|
||||||
} |
|
||||||
|
|
||||||
.gallery__slider{ |
|
||||||
margin-left:0; |
|
||||||
padding: 0px 0px 50px 0px; |
|
||||||
/* padding: 40px; */ |
|
||||||
} |
|
||||||
.gallery__block { |
|
||||||
width: 100%; |
|
||||||
aspect-ratio: 1; |
|
||||||
height: auto; |
|
||||||
} |
|
||||||
/* detail */ |
|
||||||
} |
|
||||||
|
|
||||||
@media only screen and (max-width: 750px) { |
|
||||||
/* cabinet */ |
|
||||||
.cabinet-card-order__open-detail{ |
|
||||||
margin-top: 144px; |
|
||||||
} |
|
||||||
.cabinet-card-order__detail-short{ |
|
||||||
right: auto; |
|
||||||
left: 0; |
|
||||||
bottom: 48px; |
|
||||||
} |
|
||||||
.cabinet-card-order-detail-short__item{ |
|
||||||
margin-left: -27px; |
|
||||||
} |
|
||||||
.cabinet-card-order-detail-short__item:first-child{ |
|
||||||
margin-left: 0; |
|
||||||
} |
|
||||||
.cabinet-card__order.active .cabinet-card-order__open-detail{ |
|
||||||
margin-top: 24px; |
|
||||||
} |
|
||||||
.cabinet-card-order__link{ |
|
||||||
margin-top: 144px; |
|
||||||
} |
|
||||||
/* cabinet */ |
|
||||||
} |
|
@ -1,4 +0,0 @@ |
|||||||
/* Стили для ультрашироких экранов */ |
|
||||||
@media only screen and (min-width: 1400px) { |
|
||||||
|
|
||||||
} |
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,276 @@ |
|||||||
|
/* Footer */ |
||||||
|
.footer { |
||||||
|
background: var(--main_black); |
||||||
|
padding: 40px 0 38px; |
||||||
|
color: var(--main_white); |
||||||
|
} |
||||||
|
|
||||||
|
.footer-top { |
||||||
|
display: flex; |
||||||
|
align-items: stretch; |
||||||
|
justify-content: space-between; |
||||||
|
gap: 48px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-top .logo { |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
gap: 10px; |
||||||
|
font-size: 20px; |
||||||
|
font-weight: 500; |
||||||
|
text-transform: uppercase; |
||||||
|
background: var(--accent-1); |
||||||
|
color: transparent; |
||||||
|
-webkit-background-clip: text; |
||||||
|
background-clip: text; |
||||||
|
margin-bottom: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content__address { |
||||||
|
font-size: 24px; |
||||||
|
font-weight: 500; |
||||||
|
line-height: 32px; |
||||||
|
margin-bottom: 32px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content { |
||||||
|
width: 100%; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content ul { |
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
gap: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content ul li { |
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
gap: 4px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content ul p { |
||||||
|
font-size: 16px; |
||||||
|
font-weight: bold; |
||||||
|
line-height: 20px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content ul a { |
||||||
|
font-size: 24px; |
||||||
|
font-weight: 500; |
||||||
|
line-height: 32px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content__wrap { |
||||||
|
display: flex; |
||||||
|
align-items: flex-end; |
||||||
|
justify-content: space-between; |
||||||
|
width: 100%; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-top__link { |
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
gap: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-top__link .link-black { |
||||||
|
padding: 7px 15px; |
||||||
|
color: var(--main_white); |
||||||
|
font-size: 24px; |
||||||
|
line-height: 32px; |
||||||
|
font-weight: 500; |
||||||
|
white-space: nowrap; |
||||||
|
border: 1px solid var(--main_white); |
||||||
|
border-radius: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-top__link .link-white { |
||||||
|
width: 100%; |
||||||
|
text-align: center; |
||||||
|
background: var(--main_white); |
||||||
|
color: var(--main_black); |
||||||
|
font-size: 20px; |
||||||
|
font-weight: 600; |
||||||
|
line-height: 24px; |
||||||
|
padding: 12px; |
||||||
|
border-radius: 20px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-contact { |
||||||
|
width: 364px; |
||||||
|
flex-shrink: 0; |
||||||
|
background: var(--accent-1); |
||||||
|
border-radius: 24px; |
||||||
|
padding: 24px; |
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
gap: 16px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-contact__title { |
||||||
|
color: var(--main_black); |
||||||
|
font-size: 24px; |
||||||
|
font-weight: 500; |
||||||
|
line-height: 32px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-contact__submit { |
||||||
|
width: 100%; |
||||||
|
text-align: center; |
||||||
|
height: 48px; |
||||||
|
border-radius: 16px; |
||||||
|
background: var(--main_black); |
||||||
|
font-size: 20px; |
||||||
|
font-weight: 600; |
||||||
|
line-height: 24px; |
||||||
|
color: var(--main_white); |
||||||
|
} |
||||||
|
|
||||||
|
.footer-bottom { |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
justify-content: space-between; |
||||||
|
padding-top: 17px; |
||||||
|
margin-top: 19px; |
||||||
|
border-top: 1px solid var(--main_white); |
||||||
|
} |
||||||
|
|
||||||
|
.footer-network { |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
gap: 32px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-bottom a { |
||||||
|
font-size: 16px; |
||||||
|
line-height: 20px; |
||||||
|
font-weight: 500; |
||||||
|
color: var(--main_white); |
||||||
|
opacity: 0.6; |
||||||
|
text-decoration: underline; |
||||||
|
} |
||||||
|
/* Footer end */ |
||||||
|
.modal__aside { |
||||||
|
position: fixed; |
||||||
|
top: 0; |
||||||
|
right: 0; |
||||||
|
width: 0; |
||||||
|
height: 100%; |
||||||
|
overflow: hidden; |
||||||
|
transition: width .4s ease-out; |
||||||
|
} |
||||||
|
|
||||||
|
.modal__item { |
||||||
|
height: 100%; |
||||||
|
padding: 24px; |
||||||
|
background: var(--background-white); |
||||||
|
position: relative; |
||||||
|
display: none; |
||||||
|
filter: blur(10px); |
||||||
|
transition: filter .2s ease-out; |
||||||
|
} |
||||||
|
|
||||||
|
.modal__login { |
||||||
|
max-width: 100vw; |
||||||
|
width: 400px; |
||||||
|
} |
||||||
|
|
||||||
|
.modal__item.active { |
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
justify-content: space-between; |
||||||
|
} |
||||||
|
|
||||||
|
.modal__close { |
||||||
|
position: absolute; |
||||||
|
top: 32px; |
||||||
|
right: 24px; |
||||||
|
width: 24px; |
||||||
|
height: 24px; |
||||||
|
border: none; |
||||||
|
background: none; |
||||||
|
} |
||||||
|
|
||||||
|
.login_wrap { |
||||||
|
height: 100%; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
.social-media__icon { |
||||||
|
width: 32px; |
||||||
|
aspect-ratio: 1; |
||||||
|
} |
||||||
|
|
||||||
|
.login_btn { |
||||||
|
margin-bottom: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
@media only screen and (max-width: 576px) { |
||||||
|
.footer { |
||||||
|
padding: 24px 0 58px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-top { |
||||||
|
align-items: flex-start; |
||||||
|
text-align: left; |
||||||
|
gap: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content__wrap { |
||||||
|
align-items: flex-start; |
||||||
|
gap: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content { |
||||||
|
align-items: flex-start; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content .logo { |
||||||
|
font-size: 20px; |
||||||
|
margin-bottom: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content__address { |
||||||
|
font-size: 18px; |
||||||
|
line-height: 24px; |
||||||
|
margin-bottom: 32px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content ul { |
||||||
|
gap: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content ul p { |
||||||
|
font-size: 16px; |
||||||
|
line-height: 20px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content ul a { |
||||||
|
font-size: 24px; |
||||||
|
line-height: 32px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-top__link .link-white { |
||||||
|
display: none; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-contact { |
||||||
|
width: 100%; |
||||||
|
padding: 16px; |
||||||
|
border-radius: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-contact__title { |
||||||
|
color: var(--main_white); |
||||||
|
} |
||||||
|
|
||||||
|
.footer-bottom { |
||||||
|
margin-top: 0; |
||||||
|
padding-top: 24px; |
||||||
|
border: 0; |
||||||
|
align-items: flex-start; |
||||||
|
gap: 17px; |
||||||
|
} |
||||||
|
} |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,170 @@ |
|||||||
|
|
||||||
|
* { |
||||||
|
padding: 0; |
||||||
|
margin: 0; |
||||||
|
box-sizing: border-box; |
||||||
|
-webkit-tap-highlight-color: transparent !important; |
||||||
|
} |
||||||
|
|
||||||
|
a { |
||||||
|
text-decoration: none; |
||||||
|
color: inherit; |
||||||
|
display: inline-block; |
||||||
|
cursor: pointer; |
||||||
|
} |
||||||
|
|
||||||
|
img { |
||||||
|
max-width: 100%; |
||||||
|
} |
||||||
|
|
||||||
|
span, |
||||||
|
label { |
||||||
|
display: inline-block; |
||||||
|
} |
||||||
|
|
||||||
|
html { |
||||||
|
scroll-behavior: smooth; |
||||||
|
} |
||||||
|
|
||||||
|
input, |
||||||
|
textarea { |
||||||
|
outline: none; |
||||||
|
border: 0; |
||||||
|
background: transparent; |
||||||
|
} |
||||||
|
|
||||||
|
button, |
||||||
|
select { |
||||||
|
border: none; |
||||||
|
cursor: pointer; |
||||||
|
background: transparent; |
||||||
|
outline: 0; |
||||||
|
} |
||||||
|
|
||||||
|
address { |
||||||
|
font-style: normal; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
ul, |
||||||
|
ol, |
||||||
|
dl { |
||||||
|
list-style: none; |
||||||
|
padding: 0; |
||||||
|
margin: 0; |
||||||
|
} |
||||||
|
|
||||||
|
p, |
||||||
|
h1, |
||||||
|
h2, |
||||||
|
h3, |
||||||
|
h4, |
||||||
|
h5, |
||||||
|
h6 { |
||||||
|
padding: 0; |
||||||
|
margin: 0; |
||||||
|
font-weight: 500; |
||||||
|
} |
||||||
|
|
||||||
|
input[type=number]::-webkit-inner-spin-button, |
||||||
|
input[type=number]::-webkit-outer-spin-button { |
||||||
|
-webkit-appearance: none; |
||||||
|
-moz-appearance: none; |
||||||
|
margin: 0; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
:root { |
||||||
|
/* Colors */ |
||||||
|
--radial: radial-gradient(261.43% 263.03% at 124% -28.000000000000004%,rgb(15, 88, 129),rgb(30, 164, 156) 36.979%,rgb(118, 206, 117) 66.667%,rgb(236, 243, 159) 91.146%); |
||||||
|
--accent-1: radial-gradient(142.43% 141.42% at 100% 0%, #188892 0%, #1EA49C 45%, #76CE75 90%, #BBE38D 100%); |
||||||
|
--accent-2: radial-gradient(2700.48% 141.42% at 100% 0%,rgb(122, 217, 231),rgb(126, 231, 225) 25%,rgb(181, 228, 180) 80%,rgb(215, 238, 170) 100%); |
||||||
|
--accent-3: linear-gradient(6deg, rgb(244, 66, 66) 7.584%,rgb(86, 158, 240) 72.371%); |
||||||
|
--linear: linear-gradient(-7.39deg, rgb(244, 241, 240) 23.643%,rgba(244, 241, 240, 0.3) 59.827%); |
||||||
|
--btn-bg: radial-gradient(100% 174.56% at 100% 0%, #7AD9E7 0%, #7EE7E1 25%, #B5E4B4 80%, #D7EEAA 100%); |
||||||
|
|
||||||
|
|
||||||
|
--main_white: #FFFFFF; |
||||||
|
--creme-white: #F4F1F0; |
||||||
|
--grey-f5: #F5F5F5; |
||||||
|
--main_black: #121212; |
||||||
|
--grey-black: #121212; |
||||||
|
--bg-light-grey: #F5F5F5; |
||||||
|
--interface_title: #333333; |
||||||
|
--interface_hover: #666666; |
||||||
|
--orange_80: #FFDF99; |
||||||
|
--green_90: #D9FFCC; |
||||||
|
--green-dark: #76CE75; |
||||||
|
--violet_90: #E7CAFF; |
||||||
|
--blue_90: #CCE2FF; |
||||||
|
--background: #F4F1F0; |
||||||
|
--placeholder: #999999; |
||||||
|
/* Fonts */ |
||||||
|
--font-abel: 'Abel', serif; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
body.bg-white { |
||||||
|
background: var(--main_white); |
||||||
|
} |
||||||
|
|
||||||
|
.container { |
||||||
|
max-width: 1232px; |
||||||
|
margin: 0 auto; |
||||||
|
|
||||||
|
@media (max-width: 1264px) { |
||||||
|
max-width: calc(100% - 32px); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
body.bg-white { |
||||||
|
background: var(--main_white); |
||||||
|
} |
||||||
|
|
||||||
|
.form-inp { |
||||||
|
height: 48px; |
||||||
|
width: 100%; |
||||||
|
border: 1px solid var(--placeholder); |
||||||
|
border-radius: 20px; |
||||||
|
background: var(--main_white); |
||||||
|
padding: 0 16px; |
||||||
|
color: var(--main_black); |
||||||
|
font-size: 20px; |
||||||
|
font-weight: 400; |
||||||
|
line-height: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.form-inp::placeholder { |
||||||
|
color: var(--placeholder); |
||||||
|
} |
||||||
|
|
||||||
|
.form-inp:hover, |
||||||
|
.form-inp:focus { |
||||||
|
border-color: var(--main_black); |
||||||
|
} |
||||||
|
|
||||||
|
.form-textarea { |
||||||
|
height: 96px; |
||||||
|
width: 100%; |
||||||
|
resize: none; |
||||||
|
background: var(--main_white); |
||||||
|
border: 1px solid var(--placeholder); |
||||||
|
padding: 12px 16px; |
||||||
|
border-radius: 20px; |
||||||
|
color: var(--main_black); |
||||||
|
font-size: 20px; |
||||||
|
font-weight: 400; |
||||||
|
line-height: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.form-textarea::placeholder { |
||||||
|
color: var(--placeholder); |
||||||
|
} |
||||||
|
|
||||||
|
.form-textarea:hover, |
||||||
|
.form-textarea:focus { |
||||||
|
border-color: var(--main_black); |
||||||
|
} |
||||||
|
|
||||||
|
/* Основные стили для компьютера */ |
||||||
|
|
@ -0,0 +1,76 @@ |
|||||||
|
* { |
||||||
|
padding: 0; |
||||||
|
margin: 0; |
||||||
|
box-sizing: border-box; |
||||||
|
-webkit-tap-highlight-color: transparent !important; |
||||||
|
} |
||||||
|
|
||||||
|
a { |
||||||
|
text-decoration: none; |
||||||
|
color: inherit; |
||||||
|
display: inline-block; |
||||||
|
cursor: pointer; |
||||||
|
} |
||||||
|
|
||||||
|
img { |
||||||
|
max-width: 100%; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
html { |
||||||
|
scroll-behavior: smooth; |
||||||
|
} |
||||||
|
|
||||||
|
input, |
||||||
|
textarea { |
||||||
|
outline: none; |
||||||
|
border: 0; |
||||||
|
background: transparent; |
||||||
|
} |
||||||
|
|
||||||
|
button, |
||||||
|
select { |
||||||
|
border: none; |
||||||
|
cursor: pointer; |
||||||
|
background: transparent; |
||||||
|
outline: 0; |
||||||
|
} |
||||||
|
|
||||||
|
address { |
||||||
|
font-style: normal; |
||||||
|
} |
||||||
|
|
||||||
|
ul, |
||||||
|
ol, |
||||||
|
dl { |
||||||
|
list-style: none; |
||||||
|
padding: 0; |
||||||
|
margin: 0; |
||||||
|
} |
||||||
|
|
||||||
|
p, |
||||||
|
h1, |
||||||
|
h2, |
||||||
|
h3, |
||||||
|
h4, |
||||||
|
h5, |
||||||
|
h6 { |
||||||
|
padding: 0; |
||||||
|
margin: 0; |
||||||
|
font-weight: 500; |
||||||
|
} |
||||||
|
|
||||||
|
input[type=number]::-webkit-inner-spin-button, |
||||||
|
input[type=number]::-webkit-outer-spin-button { |
||||||
|
-webkit-appearance: none; |
||||||
|
-moz-appearance: none; |
||||||
|
margin: 0; |
||||||
|
} |
||||||
|
|
||||||
|
main.wrapper{ |
||||||
|
padding-top: 40px; |
||||||
|
} |
||||||
|
|
||||||
|
.checkout-inline-error-message{ |
||||||
|
display: none; |
||||||
|
} |
@ -0,0 +1,810 @@ |
|||||||
|
.main-menu{ |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
|
||||||
|
list-style-type: none; |
||||||
|
margin-bottom: 0; |
||||||
|
} |
||||||
|
.main-menu li{ |
||||||
|
margin-bottom: 0; |
||||||
|
} |
||||||
|
.lang p{ |
||||||
|
margin-bottom: 0; |
||||||
|
} |
||||||
|
.main-menu__item{ |
||||||
|
margin-left: 24px; |
||||||
|
|
||||||
|
transition: opacity .2s ease-out; |
||||||
|
} |
||||||
|
.main-menu__item:first-child{ |
||||||
|
margin-left: 0; |
||||||
|
} |
||||||
|
.main-menu__item:hover{ |
||||||
|
opacity: .8; |
||||||
|
|
||||||
|
background: #f2f2f2; |
||||||
|
border-radius: 24px; |
||||||
|
} |
||||||
|
.header.white .main-menu__item:hover .main-menu__link{ |
||||||
|
color: #000 |
||||||
|
} |
||||||
|
.main-menu__item:active{ |
||||||
|
opacity: 1; |
||||||
|
} |
||||||
|
.main-menu__link{ |
||||||
|
display: block; |
||||||
|
|
||||||
|
padding: 8px 12px; |
||||||
|
|
||||||
|
font-family: var(--font-family); |
||||||
|
font-weight: 700; |
||||||
|
font-size: 16px; |
||||||
|
line-height: 125%; |
||||||
|
color: #000 |
||||||
|
|
||||||
|
text-decoration: none; |
||||||
|
|
||||||
|
transition: color .2s ease-out; |
||||||
|
} |
||||||
|
.main-menu__button{ |
||||||
|
padding: 8px 32px 8px 12px; |
||||||
|
|
||||||
|
font-family: var(--font-family); |
||||||
|
font-weight: 700; |
||||||
|
font-size: 16px; |
||||||
|
line-height: 125%; |
||||||
|
color: #000 |
||||||
|
|
||||||
|
border: none; |
||||||
|
border-radius: 24px; |
||||||
|
|
||||||
|
background: var(--gradient-turquoise); |
||||||
|
|
||||||
|
position: relative; |
||||||
|
} |
||||||
|
.main-menu__button::before{ |
||||||
|
content: ''; |
||||||
|
|
||||||
|
position: absolute; |
||||||
|
top: 14px; |
||||||
|
right: 14px; |
||||||
|
|
||||||
|
width: 13px; |
||||||
|
height: 8px; |
||||||
|
|
||||||
|
background-image: url(../img/arrow-black.svg); |
||||||
|
background-repeat: no-repeat; |
||||||
|
background-size: contain; |
||||||
|
} |
||||||
|
|
||||||
|
/* lang*/ |
||||||
|
.lang{ |
||||||
|
position: relative; |
||||||
|
} |
||||||
|
.lang__open{ |
||||||
|
padding: 12px 15px; |
||||||
|
|
||||||
|
width: 74px; |
||||||
|
|
||||||
|
background: none; |
||||||
|
border: none; |
||||||
|
|
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
|
||||||
|
transition: opacity .2s ease-out; |
||||||
|
} |
||||||
|
.lang__open:hover{ |
||||||
|
opacity: .8; |
||||||
|
} |
||||||
|
.lang-open p{ |
||||||
|
font-family: var(--font-family); |
||||||
|
font-weight: 700; |
||||||
|
font-size: 16px; |
||||||
|
line-height: 125%; |
||||||
|
|
||||||
|
text-align: start; |
||||||
|
|
||||||
|
color: #000 |
||||||
|
} |
||||||
|
.lang-open__arrow{ |
||||||
|
margin-left: 7.25px; |
||||||
|
|
||||||
|
display: flex; |
||||||
|
justify-content: center; |
||||||
|
align-items: center; |
||||||
|
} |
||||||
|
.lang-open__black{ |
||||||
|
|
||||||
|
} |
||||||
|
.lang-open__white{ |
||||||
|
display: none; |
||||||
|
} |
||||||
|
.lang__content{ |
||||||
|
position: absolute; |
||||||
|
top: 33px; |
||||||
|
left: -13px; |
||||||
|
|
||||||
|
height: 0; |
||||||
|
|
||||||
|
border-radius: 6px; |
||||||
|
|
||||||
|
transition: height .2s ease-out; |
||||||
|
box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1), 0 0 2px 0 rgba(0, 0, 0, 0.2); |
||||||
|
overflow: hidden; |
||||||
|
|
||||||
|
background-color: #fff; |
||||||
|
|
||||||
|
z-index: 100; |
||||||
|
} |
||||||
|
.lang__list{ |
||||||
|
width: 104px; |
||||||
|
|
||||||
|
padding: 8px; |
||||||
|
|
||||||
|
list-style-type: none; |
||||||
|
} |
||||||
|
.lang-item{ |
||||||
|
margin-top: 8px; |
||||||
|
} |
||||||
|
.lang-item:first-child{ |
||||||
|
margin-top: 0; |
||||||
|
} |
||||||
|
.lang-item a{ |
||||||
|
display: block; |
||||||
|
|
||||||
|
width: 100%; |
||||||
|
text-transform: uppercase; |
||||||
|
padding: 4px; |
||||||
|
|
||||||
|
border-radius: 6px; |
||||||
|
|
||||||
|
font-family: var(--font-family); |
||||||
|
font-weight: 400; |
||||||
|
font-size: 20px; |
||||||
|
line-height: 120%; |
||||||
|
color: var(--text-dark); |
||||||
|
|
||||||
|
text-decoration: none; |
||||||
|
|
||||||
|
position: relative; |
||||||
|
|
||||||
|
transition: background-color .2s ease-out; |
||||||
|
} |
||||||
|
.lang-item a:hover, |
||||||
|
.lang-item.current-lang a{ |
||||||
|
background-color: var(--background-grey); |
||||||
|
} |
||||||
|
.lang-item.current-lang a::before{ |
||||||
|
content: ''; |
||||||
|
|
||||||
|
position: absolute; |
||||||
|
top: 10px; |
||||||
|
right: 8px; |
||||||
|
|
||||||
|
width: 16px; |
||||||
|
height: 12px; |
||||||
|
|
||||||
|
background-image: url(../img/arrow-selected.svg); |
||||||
|
} |
||||||
|
/* lang */ |
||||||
|
/* mini-profile */ |
||||||
|
.mini-profile{ |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
} |
||||||
|
.mini-profile__item{ |
||||||
|
margin-left: 8px; |
||||||
|
} |
||||||
|
.mini-profile__item:first-child{ |
||||||
|
margin-left: 0; |
||||||
|
} |
||||||
|
.mini-profile__button{ |
||||||
|
display: block; |
||||||
|
|
||||||
|
padding: 8px; |
||||||
|
|
||||||
|
display: flex; |
||||||
|
justify-content: center; |
||||||
|
align-items: center; |
||||||
|
|
||||||
|
background: none; |
||||||
|
border: none; |
||||||
|
|
||||||
|
transition: opacity .2s ease-out; |
||||||
|
} |
||||||
|
.mini-profile__button:hover{ |
||||||
|
opacity: .8; |
||||||
|
} |
||||||
|
.mini-profile__icon{ |
||||||
|
width: 24px; |
||||||
|
aspect-ratio: 1; |
||||||
|
} |
||||||
|
.mini-profile__icon.white{ |
||||||
|
display: none; |
||||||
|
} |
||||||
|
/* mini-profile */ |
||||||
|
|
||||||
|
|
||||||
|
/* header start */ |
||||||
|
|
||||||
|
.header{ |
||||||
|
position: relative; |
||||||
|
|
||||||
|
background-color: #fff; |
||||||
|
|
||||||
|
position: fixed; |
||||||
|
left: 0; |
||||||
|
top: 0; |
||||||
|
right: 0; |
||||||
|
|
||||||
|
z-index: 200; |
||||||
|
} |
||||||
|
.header::after{ |
||||||
|
content: ''; |
||||||
|
|
||||||
|
position: absolute; |
||||||
|
left: auto; |
||||||
|
right: auto; |
||||||
|
bottom: 0; |
||||||
|
|
||||||
|
width: 100%; |
||||||
|
height: 1px; |
||||||
|
|
||||||
|
background: var(--text-3); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
.header__content{ |
||||||
|
height: 72px; |
||||||
|
|
||||||
|
padding: 14px 24px; |
||||||
|
|
||||||
|
display: flex; |
||||||
|
justify-content: space-between; |
||||||
|
align-items: center; |
||||||
|
position: relative; |
||||||
|
z-index: 101; |
||||||
|
} |
||||||
|
|
||||||
|
.header__open-menu{ |
||||||
|
display: none; |
||||||
|
|
||||||
|
width: 24px; |
||||||
|
aspect-ratio: 1; |
||||||
|
|
||||||
|
position: relative; |
||||||
|
|
||||||
|
border: none; |
||||||
|
background: none; |
||||||
|
} |
||||||
|
.header__open-menu::before{ |
||||||
|
content: ''; |
||||||
|
|
||||||
|
position: absolute; |
||||||
|
top: 8px; |
||||||
|
left: 4px; |
||||||
|
|
||||||
|
width: 16px; |
||||||
|
height: 2px; |
||||||
|
|
||||||
|
background: #000; |
||||||
|
border-radius: 1px; |
||||||
|
|
||||||
|
} |
||||||
|
.header__open-menu::after{ |
||||||
|
content: ''; |
||||||
|
|
||||||
|
position: absolute; |
||||||
|
left: 4px; |
||||||
|
bottom: 8px; |
||||||
|
|
||||||
|
width: 16px; |
||||||
|
height: 2px; |
||||||
|
|
||||||
|
background: #000; |
||||||
|
border-radius: 1px; |
||||||
|
} |
||||||
|
|
||||||
|
.header__logo{ |
||||||
|
width: 182px; |
||||||
|
height: 40px; |
||||||
|
} |
||||||
|
.header__logo-black, |
||||||
|
.header__logo-white{ |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
} |
||||||
|
.header__logo-white{ |
||||||
|
display: none; |
||||||
|
} |
||||||
|
|
||||||
|
.header__menu-block{ |
||||||
|
position: absolute; |
||||||
|
top: 56px; |
||||||
|
left: 0; |
||||||
|
|
||||||
|
width: 100%; |
||||||
|
height: 0; |
||||||
|
|
||||||
|
overflow: hidden; |
||||||
|
transition: height .2s ease-out; |
||||||
|
|
||||||
|
background-color: #fff; |
||||||
|
|
||||||
|
z-index: 100; |
||||||
|
} |
||||||
|
|
||||||
|
.header__pc-menu{ |
||||||
|
padding: 40px 46px; |
||||||
|
|
||||||
|
display: flex; |
||||||
|
justify-content: center; |
||||||
|
|
||||||
|
position: relative; |
||||||
|
|
||||||
|
} |
||||||
|
.header__pc-menu::before{ |
||||||
|
content: ''; |
||||||
|
|
||||||
|
position: absolute; |
||||||
|
bottom: 0; |
||||||
|
left: 46px; |
||||||
|
|
||||||
|
width: 330px; |
||||||
|
height: 248px; |
||||||
|
|
||||||
|
background-image: url(../img/cat.png); |
||||||
|
background-repeat: no-repeat; |
||||||
|
} |
||||||
|
.header__pc-menu::after{ |
||||||
|
content: ''; |
||||||
|
|
||||||
|
position: absolute; |
||||||
|
bottom: 0; |
||||||
|
right: 46px; |
||||||
|
|
||||||
|
width: 330px; |
||||||
|
height: 248px; |
||||||
|
|
||||||
|
background-image: url(../img/dog.png); |
||||||
|
background-repeat: no-repeat; |
||||||
|
} |
||||||
|
.header-pc-menu__content{ |
||||||
|
width: 600px; |
||||||
|
|
||||||
|
display: flex; |
||||||
|
justify-content: space-between; |
||||||
|
} |
||||||
|
.header-pc-menu__item{ |
||||||
|
|
||||||
|
} |
||||||
|
.header-pc-menu__title{ |
||||||
|
font-family: var(--font-family); |
||||||
|
font-weight: 700; |
||||||
|
font-size: 26px; |
||||||
|
line-height: 123%; |
||||||
|
text-transform: uppercase; |
||||||
|
color: #000 |
||||||
|
|
||||||
|
text-decoration: none; |
||||||
|
} |
||||||
|
.header-pc-menu__list{ |
||||||
|
margin-top: 16px; |
||||||
|
|
||||||
|
list-style-type: none; |
||||||
|
padding-left: 0; |
||||||
|
} |
||||||
|
.header-pc-menu__list-li{ |
||||||
|
margin-top: 25px; |
||||||
|
margin-bottom: 0; |
||||||
|
} |
||||||
|
.header-pc-menu__list-li:first-child{ |
||||||
|
margin-top: 0; |
||||||
|
} |
||||||
|
.header-pc-menu__list-li a{ |
||||||
|
font-family: var(--font-family); |
||||||
|
font-weight: 600; |
||||||
|
font-size: 20px; |
||||||
|
line-height: 120%; |
||||||
|
color: var(--text-0); |
||||||
|
|
||||||
|
text-decoration: none; |
||||||
|
} |
||||||
|
.header__phone-menu{ |
||||||
|
display: none; |
||||||
|
|
||||||
|
padding: 24px 16px; |
||||||
|
|
||||||
|
height: calc(100vh - 56px); |
||||||
|
|
||||||
|
overflow-x: auto; |
||||||
|
} |
||||||
|
.header-phone-menu__item{ |
||||||
|
padding: 16px 0; |
||||||
|
|
||||||
|
border-top: 1px solid #f4f1f0; |
||||||
|
border-bottom: 1px solid #f4f1f0; |
||||||
|
|
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
} |
||||||
|
.header-phone-menu__item:first-child{ |
||||||
|
border-top: 0; |
||||||
|
} |
||||||
|
.header-phone-menu__item:last-child{ |
||||||
|
border-bottom: 0; |
||||||
|
} |
||||||
|
.header-phone-menu__title{ |
||||||
|
font-family: var(--font-family); |
||||||
|
font-weight: 700; |
||||||
|
font-size: 20px; |
||||||
|
line-height: 120%; |
||||||
|
color: #000 |
||||||
|
|
||||||
|
text-decoration: none; |
||||||
|
} |
||||||
|
.header-phone-menu__title--gradient{ |
||||||
|
background: var(--gradient-blue); |
||||||
|
background-clip: text; |
||||||
|
-webkit-background-clip: text; |
||||||
|
-webkit-text-fill-color: transparent; |
||||||
|
} |
||||||
|
.header-phone-menu__category{ |
||||||
|
margin-top: 16px; |
||||||
|
|
||||||
|
font-family: var(--font-family); |
||||||
|
font-weight: 500; |
||||||
|
font-size: 18px; |
||||||
|
line-height: 133%; |
||||||
|
color: #000 |
||||||
|
|
||||||
|
text-decoration: none; |
||||||
|
} |
||||||
|
.header-phone-menu__list{ |
||||||
|
margin-top: 24px; |
||||||
|
|
||||||
|
padding-left: 32px; |
||||||
|
|
||||||
|
list-style-type: none; |
||||||
|
} |
||||||
|
.header-phone-menu__list-item{ |
||||||
|
margin-top: 16px; |
||||||
|
} |
||||||
|
.header-phone-menu__list-item:first-child{ |
||||||
|
margin-top: 0; |
||||||
|
} |
||||||
|
.header-phone-menu__list-item a{ |
||||||
|
font-family: var(--font-family); |
||||||
|
font-weight: 500; |
||||||
|
font-size: 16px; |
||||||
|
line-height: 125%; |
||||||
|
color: #121212; |
||||||
|
color: #000 |
||||||
|
|
||||||
|
text-decoration: none; |
||||||
|
} |
||||||
|
.header.white{ |
||||||
|
background: none; |
||||||
|
} |
||||||
|
.header.white .header__logo-black{ |
||||||
|
display: none; |
||||||
|
} |
||||||
|
.header.white .header__logo-white{ |
||||||
|
display: block; |
||||||
|
} |
||||||
|
.header.white .main-menu__link{ |
||||||
|
color: #fff; |
||||||
|
} |
||||||
|
.header.white .main-menu__button{ |
||||||
|
background: #fff; |
||||||
|
} |
||||||
|
.header.white .lang__open{ |
||||||
|
color: #fff; |
||||||
|
} |
||||||
|
.header.white::after{ |
||||||
|
background: #fff; |
||||||
|
} |
||||||
|
.header.white .lang-open__black{ |
||||||
|
display: none; |
||||||
|
} |
||||||
|
.header.white .lang-open__white{ |
||||||
|
display: block; |
||||||
|
} |
||||||
|
.header.white .mini-profile__icon.white{ |
||||||
|
display: block; |
||||||
|
} |
||||||
|
.header.white .mini-profile__icon.black{ |
||||||
|
display: none; |
||||||
|
} |
||||||
|
.header.white .header__open-menu::before, |
||||||
|
.header.white .header__open-menu::after{ |
||||||
|
background: #fff; |
||||||
|
} |
||||||
|
.header__phone-menu::-webkit-scrollbar { |
||||||
|
width: 0px; |
||||||
|
} |
||||||
|
|
||||||
|
.modal__login { |
||||||
|
width: 412px; |
||||||
|
} |
||||||
|
.login_back { |
||||||
|
position: absolute; |
||||||
|
top: 24px; |
||||||
|
left: 24px; |
||||||
|
cursor: pointer; |
||||||
|
} |
||||||
|
.login_wrap { |
||||||
|
height: 100%; |
||||||
|
} |
||||||
|
.login_wrap.hide { |
||||||
|
display: none; |
||||||
|
} |
||||||
|
.login_inner { |
||||||
|
display: none; |
||||||
|
margin-top: 128px; |
||||||
|
} |
||||||
|
.login_inner.active { |
||||||
|
display: block; |
||||||
|
} |
||||||
|
.login_title { |
||||||
|
color: #121212; |
||||||
|
font-size: 24px; |
||||||
|
line-height: 28px; |
||||||
|
text-transform: uppercase; |
||||||
|
} |
||||||
|
.login_subtitle { |
||||||
|
color: #575775; |
||||||
|
font-size: 20px; |
||||||
|
line-height: 24px; |
||||||
|
margin-top: 16px; |
||||||
|
} |
||||||
|
.login_subtitle span { |
||||||
|
display: block; |
||||||
|
margin-top: 8px; |
||||||
|
} |
||||||
|
.login_input { |
||||||
|
margin-top: 40px; |
||||||
|
} |
||||||
|
.login_input.error input { |
||||||
|
border-color: #FA0505; |
||||||
|
} |
||||||
|
.login_error { |
||||||
|
font-size: 12px; |
||||||
|
line-height: 16px; |
||||||
|
color: #FA0505; |
||||||
|
display: none; |
||||||
|
} |
||||||
|
.login_input.error .login_error { |
||||||
|
display: block; |
||||||
|
} |
||||||
|
.login_input input { |
||||||
|
border: 1px solid #999999; |
||||||
|
color: #999999; |
||||||
|
border-radius: 20px; |
||||||
|
padding: 12px 16px; |
||||||
|
width: 100%; |
||||||
|
font-size: 20px; |
||||||
|
line-height: 24px; |
||||||
|
} |
||||||
|
.login_btn { |
||||||
|
padding: 12px 24px; |
||||||
|
border-radius: 20px; |
||||||
|
display: block; |
||||||
|
width: 100%; |
||||||
|
height: 54px; |
||||||
|
text-transform: none; |
||||||
|
font-size: 20px; |
||||||
|
line-height: 24px; |
||||||
|
text-align: center; |
||||||
|
} |
||||||
|
.login_btn.btn_gradient { |
||||||
|
margin-top: 24px; |
||||||
|
background: radial-gradient(100% 174.56% at 100% 0%, #7AD9E7 0%, #7EE7E1 25%, #B5E4B4 80%, #D7EEAA 100%); |
||||||
|
} |
||||||
|
.login_btn.account_link { |
||||||
|
background: #121212; |
||||||
|
color: #fff; |
||||||
|
} |
||||||
|
.login_privacy { |
||||||
|
font-size: 12px; |
||||||
|
line-height: 16px; |
||||||
|
color: #333333; |
||||||
|
position: absolute; |
||||||
|
bottom: 24px; |
||||||
|
left: 24px; |
||||||
|
right: 24px; |
||||||
|
} |
||||||
|
.login_privacy a { |
||||||
|
color: #333333; |
||||||
|
text-decoration: underline; |
||||||
|
} |
||||||
|
.login_inner.step_2 .login_subtitle, |
||||||
|
.login_success .login_subtitle, |
||||||
|
.login_auth .login_subtitle { |
||||||
|
color: #121212; |
||||||
|
} |
||||||
|
.login_timer { |
||||||
|
font-size: 20px; |
||||||
|
line-height: 24px; |
||||||
|
margin-top: 24px; |
||||||
|
color: #121212; |
||||||
|
} |
||||||
|
.js-repeat-code { |
||||||
|
display: none; |
||||||
|
} |
||||||
|
.login_success img { |
||||||
|
margin: 40px 0; |
||||||
|
} |
||||||
|
/* |
||||||
|
.wptelegram-login-output-wrap.container { |
||||||
|
position: relative; |
||||||
|
} |
||||||
|
.wptelegram-login-output-wrap.container:after { |
||||||
|
content: 'Войти через Telegram'; |
||||||
|
position: absolute; |
||||||
|
left: 0; |
||||||
|
background: radial-gradient(100% 174.56% at 100% 0%, #7AD9E7 0%, #7EE7E1 25%, #B5E4B4 80%, #D7EEAA 100%); |
||||||
|
display: flex; |
||||||
|
justify-content: center; |
||||||
|
align-items: center; |
||||||
|
width: 100%; |
||||||
|
height: 54px; |
||||||
|
top: 0; |
||||||
|
border-radius: 20px; |
||||||
|
font-weight: var(--btn-font-weight); |
||||||
|
font-family: var(--btn-font-family); |
||||||
|
font-style: var(--btn-font-style); |
||||||
|
font-size: 20px; |
||||||
|
line-height: 24px; |
||||||
|
cursor: pointer; |
||||||
|
} |
||||||
|
*/ |
||||||
|
.wptelegram-login-output-wrap { |
||||||
|
display: flex; |
||||||
|
margin-top: 15px; |
||||||
|
justify-content: center; |
||||||
|
} |
||||||
|
@media(max-width: 480px) { |
||||||
|
.modal__login { |
||||||
|
width: 100%; |
||||||
|
} |
||||||
|
.login_title { |
||||||
|
font-size: 19px; |
||||||
|
line-height: 24px; |
||||||
|
} |
||||||
|
} |
||||||
|
/* header end */ |
||||||
|
|
||||||
|
|
||||||
|
/* Стили для планшетов */ |
||||||
|
@media only screen and (max-width: 1200px) { |
||||||
|
/* header */ |
||||||
|
.main-menu{ |
||||||
|
display: none; |
||||||
|
} |
||||||
|
.header__open-menu{ |
||||||
|
display: block; |
||||||
|
} |
||||||
|
.lang{ |
||||||
|
display: none; |
||||||
|
} |
||||||
|
.header__logo{ |
||||||
|
width: 136px; |
||||||
|
height: 29px; |
||||||
|
} |
||||||
|
.header__content{ |
||||||
|
height: auto; |
||||||
|
|
||||||
|
padding: 8px 16px; |
||||||
|
} |
||||||
|
.mini-profile__item:nth-child(2){ |
||||||
|
margin-left: 0; |
||||||
|
} |
||||||
|
.header::after{ |
||||||
|
left: 0; |
||||||
|
|
||||||
|
width: 100%; |
||||||
|
} |
||||||
|
.header__pc-menu{ |
||||||
|
display: none; |
||||||
|
} |
||||||
|
.header__phone-menu{ |
||||||
|
display: block; |
||||||
|
} |
||||||
|
.header__menu-block{ |
||||||
|
top: 36px; |
||||||
|
} |
||||||
|
.header__content::after{ |
||||||
|
left: 0; |
||||||
|
right: 0; |
||||||
|
width: 100%; |
||||||
|
} |
||||||
|
/* header */ |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
@media only screen and (max-width: 720px) { |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.mini-profile__button--counter { |
||||||
|
display: flex |
||||||
|
; |
||||||
|
flex-direction: row; |
||||||
|
justify-content: center; |
||||||
|
align-items: center; |
||||||
|
padding: 2px; |
||||||
|
position: absolute; |
||||||
|
background: var(--gradient-turquoise); |
||||||
|
border-radius: 10px; |
||||||
|
width: 16px; |
||||||
|
height: 16px; |
||||||
|
border-radius: 50%; |
||||||
|
right: 3px; |
||||||
|
bottom: 2px; |
||||||
|
font-style: normal; |
||||||
|
font-weight: 700; |
||||||
|
font-size: 9px; |
||||||
|
line-height: 16px; |
||||||
|
color: #121212; |
||||||
|
} |
||||||
|
|
||||||
|
.mini-profile__button--counter.disabled{ |
||||||
|
display: none; |
||||||
|
} |
||||||
|
|
||||||
|
.mini-profile__button{ |
||||||
|
position: relative; |
||||||
|
} |
||||||
|
|
||||||
|
#telegram-widget-container { |
||||||
|
text-align: center; |
||||||
|
} |
||||||
|
|
||||||
|
@media (max-width: 1200px) { |
||||||
|
.header-navs { |
||||||
|
gap: 12px; |
||||||
|
} |
||||||
|
.header-navs__link { |
||||||
|
font-size: 14px; |
||||||
|
} |
||||||
|
.header-right { |
||||||
|
gap: 4px; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@media only screen and (max-width: 992px) { |
||||||
|
.header-navs { |
||||||
|
display: none; |
||||||
|
} |
||||||
|
|
||||||
|
.header-container { |
||||||
|
height: 56px; |
||||||
|
padding: 0; |
||||||
|
} |
||||||
|
|
||||||
|
.header-bars { |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
justify-content: center; |
||||||
|
} |
||||||
|
|
||||||
|
.header-logo { |
||||||
|
font-size: 16px; |
||||||
|
line-height: 20px; |
||||||
|
gap: 8px; |
||||||
|
} |
||||||
|
|
||||||
|
.header-logo img { |
||||||
|
width: 31px; |
||||||
|
flex-shrink: 0; |
||||||
|
} |
||||||
|
|
||||||
|
.header-lang { |
||||||
|
display: none; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,735 @@ |
|||||||
|
/** |
||||||
|
* Swiper 11.0.5 |
||||||
|
* Most modern mobile touch slider and framework with hardware accelerated transitions |
||||||
|
* https://swiperjs.com |
||||||
|
* |
||||||
|
* Copyright 2014-2023 Vladimir Kharlampidi |
||||||
|
* |
||||||
|
* Released under the MIT License |
||||||
|
* |
||||||
|
* Released on: November 22, 2023 |
||||||
|
*/ |
||||||
|
|
||||||
|
/* FONT_START */ |
||||||
|
@font-face { |
||||||
|
font-family: 'swiper-icons'; |
||||||
|
src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA'); |
||||||
|
font-weight: 400; |
||||||
|
font-style: normal; |
||||||
|
} |
||||||
|
/* FONT_END */ |
||||||
|
:root { |
||||||
|
--swiper-theme-color: #007aff; |
||||||
|
/* |
||||||
|
--swiper-preloader-color: var(--swiper-theme-color); |
||||||
|
--swiper-wrapper-transition-timing-function: initial; |
||||||
|
*/ |
||||||
|
} |
||||||
|
:host { |
||||||
|
position: relative; |
||||||
|
display: block; |
||||||
|
margin-left: auto; |
||||||
|
margin-right: auto; |
||||||
|
z-index: 1; |
||||||
|
} |
||||||
|
.swiper { |
||||||
|
margin-left: auto; |
||||||
|
margin-right: auto; |
||||||
|
position: relative; |
||||||
|
overflow: hidden; |
||||||
|
list-style: none; |
||||||
|
padding: 0; |
||||||
|
/* Fix of Webkit flickering */ |
||||||
|
z-index: 1; |
||||||
|
display: block; |
||||||
|
} |
||||||
|
.swiper-vertical > .swiper-wrapper { |
||||||
|
flex-direction: column; |
||||||
|
} |
||||||
|
.swiper-wrapper { |
||||||
|
position: relative; |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
z-index: 1; |
||||||
|
display: flex; |
||||||
|
transition-property: transform; |
||||||
|
transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial); |
||||||
|
box-sizing: content-box; |
||||||
|
} |
||||||
|
.swiper-android .swiper-slide, |
||||||
|
.swiper-ios .swiper-slide, |
||||||
|
.swiper-wrapper { |
||||||
|
transform: translate3d(0px, 0, 0); |
||||||
|
} |
||||||
|
.swiper-horizontal { |
||||||
|
touch-action: pan-y; |
||||||
|
} |
||||||
|
.swiper-vertical { |
||||||
|
touch-action: pan-x; |
||||||
|
} |
||||||
|
.swiper-slide { |
||||||
|
flex-shrink: 0; |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
position: relative; |
||||||
|
transition-property: transform; |
||||||
|
display: block; |
||||||
|
} |
||||||
|
.swiper-slide-invisible-blank { |
||||||
|
visibility: hidden; |
||||||
|
} |
||||||
|
/* Auto Height */ |
||||||
|
.swiper-autoheight, |
||||||
|
.swiper-autoheight .swiper-slide { |
||||||
|
height: auto; |
||||||
|
} |
||||||
|
.swiper-autoheight .swiper-wrapper { |
||||||
|
align-items: flex-start; |
||||||
|
transition-property: transform, height; |
||||||
|
} |
||||||
|
.swiper-backface-hidden .swiper-slide { |
||||||
|
transform: translateZ(0); |
||||||
|
-webkit-backface-visibility: hidden; |
||||||
|
backface-visibility: hidden; |
||||||
|
} |
||||||
|
/* 3D Effects */ |
||||||
|
.swiper-3d.swiper-css-mode .swiper-wrapper { |
||||||
|
perspective: 1200px; |
||||||
|
} |
||||||
|
.swiper-3d .swiper-wrapper { |
||||||
|
transform-style: preserve-3d; |
||||||
|
} |
||||||
|
.swiper-3d { |
||||||
|
perspective: 1200px; |
||||||
|
} |
||||||
|
.swiper-3d .swiper-slide, |
||||||
|
.swiper-3d .swiper-cube-shadow { |
||||||
|
transform-style: preserve-3d; |
||||||
|
} |
||||||
|
/* CSS Mode */ |
||||||
|
.swiper-css-mode > .swiper-wrapper { |
||||||
|
overflow: auto; |
||||||
|
scrollbar-width: none; |
||||||
|
/* For Firefox */ |
||||||
|
-ms-overflow-style: none; |
||||||
|
/* For Internet Explorer and Edge */ |
||||||
|
} |
||||||
|
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar { |
||||||
|
display: none; |
||||||
|
} |
||||||
|
.swiper-css-mode > .swiper-wrapper > .swiper-slide { |
||||||
|
scroll-snap-align: start start; |
||||||
|
} |
||||||
|
.swiper-css-mode.swiper-horizontal > .swiper-wrapper { |
||||||
|
scroll-snap-type: x mandatory; |
||||||
|
} |
||||||
|
.swiper-css-mode.swiper-vertical > .swiper-wrapper { |
||||||
|
scroll-snap-type: y mandatory; |
||||||
|
} |
||||||
|
.swiper-css-mode.swiper-free-mode > .swiper-wrapper { |
||||||
|
scroll-snap-type: none; |
||||||
|
} |
||||||
|
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide { |
||||||
|
scroll-snap-align: none; |
||||||
|
} |
||||||
|
.swiper-css-mode.swiper-centered > .swiper-wrapper::before { |
||||||
|
content: ''; |
||||||
|
flex-shrink: 0; |
||||||
|
order: 9999; |
||||||
|
} |
||||||
|
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide { |
||||||
|
scroll-snap-align: center center; |
||||||
|
scroll-snap-stop: always; |
||||||
|
} |
||||||
|
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child { |
||||||
|
margin-inline-start: var(--swiper-centered-offset-before); |
||||||
|
} |
||||||
|
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before { |
||||||
|
height: 100%; |
||||||
|
min-height: 1px; |
||||||
|
width: var(--swiper-centered-offset-after); |
||||||
|
} |
||||||
|
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child { |
||||||
|
margin-block-start: var(--swiper-centered-offset-before); |
||||||
|
} |
||||||
|
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before { |
||||||
|
width: 100%; |
||||||
|
min-width: 1px; |
||||||
|
height: var(--swiper-centered-offset-after); |
||||||
|
} |
||||||
|
/* Slide styles start */ |
||||||
|
/* 3D Shadows */ |
||||||
|
.swiper-3d .swiper-slide-shadow, |
||||||
|
.swiper-3d .swiper-slide-shadow-left, |
||||||
|
.swiper-3d .swiper-slide-shadow-right, |
||||||
|
.swiper-3d .swiper-slide-shadow-top, |
||||||
|
.swiper-3d .swiper-slide-shadow-bottom, |
||||||
|
.swiper-3d .swiper-slide-shadow, |
||||||
|
.swiper-3d .swiper-slide-shadow-left, |
||||||
|
.swiper-3d .swiper-slide-shadow-right, |
||||||
|
.swiper-3d .swiper-slide-shadow-top, |
||||||
|
.swiper-3d .swiper-slide-shadow-bottom { |
||||||
|
position: absolute; |
||||||
|
left: 0; |
||||||
|
top: 0; |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
pointer-events: none; |
||||||
|
z-index: 10; |
||||||
|
} |
||||||
|
.swiper-3d .swiper-slide-shadow { |
||||||
|
background: rgba(0, 0, 0, 0.15); |
||||||
|
} |
||||||
|
.swiper-3d .swiper-slide-shadow-left { |
||||||
|
background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); |
||||||
|
} |
||||||
|
.swiper-3d .swiper-slide-shadow-right { |
||||||
|
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); |
||||||
|
} |
||||||
|
.swiper-3d .swiper-slide-shadow-top { |
||||||
|
background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); |
||||||
|
} |
||||||
|
.swiper-3d .swiper-slide-shadow-bottom { |
||||||
|
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); |
||||||
|
} |
||||||
|
.swiper-lazy-preloader { |
||||||
|
width: 42px; |
||||||
|
height: 42px; |
||||||
|
position: absolute; |
||||||
|
left: 50%; |
||||||
|
top: 50%; |
||||||
|
margin-left: -21px; |
||||||
|
margin-top: -21px; |
||||||
|
z-index: 10; |
||||||
|
transform-origin: 50%; |
||||||
|
box-sizing: border-box; |
||||||
|
border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color)); |
||||||
|
border-radius: 50%; |
||||||
|
border-top-color: transparent; |
||||||
|
} |
||||||
|
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader, |
||||||
|
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader { |
||||||
|
animation: swiper-preloader-spin 1s infinite linear; |
||||||
|
} |
||||||
|
.swiper-lazy-preloader-white { |
||||||
|
--swiper-preloader-color: #fff; |
||||||
|
} |
||||||
|
.swiper-lazy-preloader-black { |
||||||
|
--swiper-preloader-color: #000; |
||||||
|
} |
||||||
|
@keyframes swiper-preloader-spin { |
||||||
|
0% { |
||||||
|
transform: rotate(0deg); |
||||||
|
} |
||||||
|
100% { |
||||||
|
transform: rotate(360deg); |
||||||
|
} |
||||||
|
} |
||||||
|
/* Slide styles end */ |
||||||
|
.swiper-virtual .swiper-slide { |
||||||
|
-webkit-backface-visibility: hidden; |
||||||
|
transform: translateZ(0); |
||||||
|
} |
||||||
|
.swiper-virtual.swiper-css-mode .swiper-wrapper::after { |
||||||
|
content: ''; |
||||||
|
position: absolute; |
||||||
|
left: 0; |
||||||
|
top: 0; |
||||||
|
pointer-events: none; |
||||||
|
} |
||||||
|
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after { |
||||||
|
height: 1px; |
||||||
|
width: var(--swiper-virtual-size); |
||||||
|
} |
||||||
|
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after { |
||||||
|
width: 1px; |
||||||
|
height: var(--swiper-virtual-size); |
||||||
|
} |
||||||
|
:root { |
||||||
|
--swiper-navigation-size: 44px; |
||||||
|
/* |
||||||
|
--swiper-navigation-top-offset: 50%; |
||||||
|
--swiper-navigation-sides-offset: 10px; |
||||||
|
--swiper-navigation-color: var(--swiper-theme-color); |
||||||
|
*/ |
||||||
|
} |
||||||
|
.swiper-button-prev, |
||||||
|
.swiper-button-next { |
||||||
|
position: absolute; |
||||||
|
top: var(--swiper-navigation-top-offset, 50%); |
||||||
|
width: calc(var(--swiper-navigation-size) / 44 * 27); |
||||||
|
height: var(--swiper-navigation-size); |
||||||
|
margin-top: calc(0px - (var(--swiper-navigation-size) / 2)); |
||||||
|
z-index: 10; |
||||||
|
cursor: pointer; |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
justify-content: center; |
||||||
|
color: var(--swiper-navigation-color, var(--swiper-theme-color)); |
||||||
|
} |
||||||
|
.swiper-button-prev.swiper-button-disabled, |
||||||
|
.swiper-button-next.swiper-button-disabled { |
||||||
|
opacity: 0.35; |
||||||
|
cursor: auto; |
||||||
|
pointer-events: none; |
||||||
|
} |
||||||
|
.swiper-button-prev.swiper-button-hidden, |
||||||
|
.swiper-button-next.swiper-button-hidden { |
||||||
|
opacity: 0; |
||||||
|
cursor: auto; |
||||||
|
pointer-events: none; |
||||||
|
} |
||||||
|
.swiper-navigation-disabled .swiper-button-prev, |
||||||
|
.swiper-navigation-disabled .swiper-button-next { |
||||||
|
display: none !important; |
||||||
|
} |
||||||
|
.swiper-button-prev svg, |
||||||
|
.swiper-button-next svg { |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
object-fit: contain; |
||||||
|
transform-origin: center; |
||||||
|
} |
||||||
|
.swiper-rtl .swiper-button-prev svg, |
||||||
|
.swiper-rtl .swiper-button-next svg { |
||||||
|
transform: rotate(180deg); |
||||||
|
} |
||||||
|
.swiper-button-prev, |
||||||
|
.swiper-rtl .swiper-button-next { |
||||||
|
left: var(--swiper-navigation-sides-offset, 10px); |
||||||
|
right: auto; |
||||||
|
} |
||||||
|
.swiper-button-next, |
||||||
|
.swiper-rtl .swiper-button-prev { |
||||||
|
right: var(--swiper-navigation-sides-offset, 10px); |
||||||
|
left: auto; |
||||||
|
} |
||||||
|
.swiper-button-lock { |
||||||
|
display: none; |
||||||
|
} |
||||||
|
/* Navigation font start */ |
||||||
|
.swiper-button-prev:after, |
||||||
|
.swiper-button-next:after { |
||||||
|
font-family: swiper-icons; |
||||||
|
font-size: var(--swiper-navigation-size); |
||||||
|
text-transform: none !important; |
||||||
|
letter-spacing: 0; |
||||||
|
font-variant: initial; |
||||||
|
line-height: 1; |
||||||
|
} |
||||||
|
.swiper-button-prev:after, |
||||||
|
.swiper-rtl .swiper-button-next:after { |
||||||
|
content: 'prev'; |
||||||
|
} |
||||||
|
.swiper-button-next, |
||||||
|
.swiper-rtl .swiper-button-prev { |
||||||
|
right: var(--swiper-navigation-sides-offset, 10px); |
||||||
|
left: auto; |
||||||
|
} |
||||||
|
.swiper-button-next:after, |
||||||
|
.swiper-rtl .swiper-button-prev:after { |
||||||
|
content: 'next'; |
||||||
|
} |
||||||
|
/* Navigation font end */ |
||||||
|
:root { |
||||||
|
/* |
||||||
|
--swiper-pagination-color: var(--swiper-theme-color); |
||||||
|
--swiper-pagination-left: auto; |
||||||
|
--swiper-pagination-right: 8px; |
||||||
|
--swiper-pagination-bottom: 8px; |
||||||
|
--swiper-pagination-top: auto; |
||||||
|
--swiper-pagination-fraction-color: inherit; |
||||||
|
--swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25); |
||||||
|
--swiper-pagination-progressbar-size: 4px; |
||||||
|
--swiper-pagination-bullet-size: 8px; |
||||||
|
--swiper-pagination-bullet-width: 8px; |
||||||
|
--swiper-pagination-bullet-height: 8px; |
||||||
|
--swiper-pagination-bullet-border-radius: 50%; |
||||||
|
--swiper-pagination-bullet-inactive-color: #000; |
||||||
|
--swiper-pagination-bullet-inactive-opacity: 0.2; |
||||||
|
--swiper-pagination-bullet-opacity: 1; |
||||||
|
--swiper-pagination-bullet-horizontal-gap: 4px; |
||||||
|
--swiper-pagination-bullet-vertical-gap: 6px; |
||||||
|
*/ |
||||||
|
} |
||||||
|
.swiper-pagination { |
||||||
|
position: absolute; |
||||||
|
text-align: center; |
||||||
|
transition: 300ms opacity; |
||||||
|
transform: translate3d(0, 0, 0); |
||||||
|
z-index: 10; |
||||||
|
} |
||||||
|
.swiper-pagination.swiper-pagination-hidden { |
||||||
|
opacity: 0; |
||||||
|
} |
||||||
|
.swiper-pagination-disabled > .swiper-pagination, |
||||||
|
.swiper-pagination.swiper-pagination-disabled { |
||||||
|
display: none !important; |
||||||
|
} |
||||||
|
/* Common Styles */ |
||||||
|
.swiper-pagination-fraction, |
||||||
|
.swiper-pagination-custom, |
||||||
|
.swiper-horizontal > .swiper-pagination-bullets, |
||||||
|
.swiper-pagination-bullets.swiper-pagination-horizontal { |
||||||
|
bottom: var(--swiper-pagination-bottom, 8px); |
||||||
|
top: var(--swiper-pagination-top, auto); |
||||||
|
left: 0; |
||||||
|
width: 100%; |
||||||
|
} |
||||||
|
/* Bullets */ |
||||||
|
.swiper-pagination-bullets-dynamic { |
||||||
|
overflow: hidden; |
||||||
|
font-size: 0; |
||||||
|
} |
||||||
|
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet { |
||||||
|
transform: scale(0.33); |
||||||
|
position: relative; |
||||||
|
} |
||||||
|
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active { |
||||||
|
transform: scale(1); |
||||||
|
} |
||||||
|
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main { |
||||||
|
transform: scale(1); |
||||||
|
} |
||||||
|
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev { |
||||||
|
transform: scale(0.66); |
||||||
|
} |
||||||
|
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev { |
||||||
|
transform: scale(0.33); |
||||||
|
} |
||||||
|
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next { |
||||||
|
transform: scale(0.66); |
||||||
|
} |
||||||
|
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next { |
||||||
|
transform: scale(0.33); |
||||||
|
} |
||||||
|
.swiper-pagination-bullet { |
||||||
|
width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px)); |
||||||
|
height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px)); |
||||||
|
display: inline-block; |
||||||
|
border-radius: var(--swiper-pagination-bullet-border-radius, 50%); |
||||||
|
background: var(--swiper-pagination-bullet-inactive-color, #000); |
||||||
|
opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2); |
||||||
|
} |
||||||
|
button.swiper-pagination-bullet { |
||||||
|
border: none; |
||||||
|
margin: 0; |
||||||
|
padding: 0; |
||||||
|
box-shadow: none; |
||||||
|
-webkit-appearance: none; |
||||||
|
appearance: none; |
||||||
|
} |
||||||
|
.swiper-pagination-clickable .swiper-pagination-bullet { |
||||||
|
cursor: pointer; |
||||||
|
} |
||||||
|
.swiper-pagination-bullet:only-child { |
||||||
|
display: none !important; |
||||||
|
} |
||||||
|
.swiper-pagination-bullet-active { |
||||||
|
opacity: var(--swiper-pagination-bullet-opacity, 1); |
||||||
|
background: var(--swiper-pagination-color, var(--swiper-theme-color)); |
||||||
|
} |
||||||
|
.swiper-vertical > .swiper-pagination-bullets, |
||||||
|
.swiper-pagination-vertical.swiper-pagination-bullets { |
||||||
|
right: var(--swiper-pagination-right, 8px); |
||||||
|
left: var(--swiper-pagination-left, auto); |
||||||
|
top: 50%; |
||||||
|
transform: translate3d(0px, -50%, 0); |
||||||
|
} |
||||||
|
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet, |
||||||
|
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet { |
||||||
|
margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0; |
||||||
|
display: block; |
||||||
|
} |
||||||
|
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, |
||||||
|
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic { |
||||||
|
top: 50%; |
||||||
|
transform: translateY(-50%); |
||||||
|
width: 8px; |
||||||
|
} |
||||||
|
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, |
||||||
|
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet { |
||||||
|
display: inline-block; |
||||||
|
transition: 200ms transform, |
||||||
|
200ms top; |
||||||
|
} |
||||||
|
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, |
||||||
|
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet { |
||||||
|
margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px); |
||||||
|
} |
||||||
|
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, |
||||||
|
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic { |
||||||
|
left: 50%; |
||||||
|
transform: translateX(-50%); |
||||||
|
white-space: nowrap; |
||||||
|
} |
||||||
|
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, |
||||||
|
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet { |
||||||
|
transition: 200ms transform, |
||||||
|
200ms left; |
||||||
|
} |
||||||
|
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet { |
||||||
|
transition: 200ms transform, |
||||||
|
200ms right; |
||||||
|
} |
||||||
|
/* Fraction */ |
||||||
|
.swiper-pagination-fraction { |
||||||
|
color: var(--swiper-pagination-fraction-color, inherit); |
||||||
|
} |
||||||
|
/* Progress */ |
||||||
|
.swiper-pagination-progressbar { |
||||||
|
background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25)); |
||||||
|
position: absolute; |
||||||
|
} |
||||||
|
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill { |
||||||
|
background: var(--swiper-pagination-color, var(--swiper-theme-color)); |
||||||
|
position: absolute; |
||||||
|
left: 0; |
||||||
|
top: 0; |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
transform: scale(0); |
||||||
|
transform-origin: left top; |
||||||
|
} |
||||||
|
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill { |
||||||
|
transform-origin: right top; |
||||||
|
} |
||||||
|
.swiper-horizontal > .swiper-pagination-progressbar, |
||||||
|
.swiper-pagination-progressbar.swiper-pagination-horizontal, |
||||||
|
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, |
||||||
|
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite { |
||||||
|
width: 100%; |
||||||
|
height: var(--swiper-pagination-progressbar-size, 4px); |
||||||
|
left: 0; |
||||||
|
top: 0; |
||||||
|
} |
||||||
|
.swiper-vertical > .swiper-pagination-progressbar, |
||||||
|
.swiper-pagination-progressbar.swiper-pagination-vertical, |
||||||
|
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, |
||||||
|
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite { |
||||||
|
width: var(--swiper-pagination-progressbar-size, 4px); |
||||||
|
height: 100%; |
||||||
|
left: 0; |
||||||
|
top: 0; |
||||||
|
} |
||||||
|
.swiper-pagination-lock { |
||||||
|
display: none; |
||||||
|
} |
||||||
|
:root { |
||||||
|
/* |
||||||
|
--swiper-scrollbar-border-radius: 10px; |
||||||
|
--swiper-scrollbar-top: auto; |
||||||
|
--swiper-scrollbar-bottom: 4px; |
||||||
|
--swiper-scrollbar-left: auto; |
||||||
|
--swiper-scrollbar-right: 4px; |
||||||
|
--swiper-scrollbar-sides-offset: 1%; |
||||||
|
--swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1); |
||||||
|
--swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5); |
||||||
|
--swiper-scrollbar-size: 4px; |
||||||
|
*/ |
||||||
|
} |
||||||
|
.swiper-scrollbar { |
||||||
|
border-radius: var(--swiper-scrollbar-border-radius, 10px); |
||||||
|
position: relative; |
||||||
|
touch-action: none; |
||||||
|
background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1)); |
||||||
|
} |
||||||
|
.swiper-scrollbar-disabled > .swiper-scrollbar, |
||||||
|
.swiper-scrollbar.swiper-scrollbar-disabled { |
||||||
|
display: none !important; |
||||||
|
} |
||||||
|
.swiper-horizontal > .swiper-scrollbar, |
||||||
|
.swiper-scrollbar.swiper-scrollbar-horizontal { |
||||||
|
position: absolute; |
||||||
|
left: var(--swiper-scrollbar-sides-offset, 1%); |
||||||
|
bottom: var(--swiper-scrollbar-bottom, 4px); |
||||||
|
top: var(--swiper-scrollbar-top, auto); |
||||||
|
z-index: 50; |
||||||
|
height: var(--swiper-scrollbar-size, 4px); |
||||||
|
width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%)); |
||||||
|
} |
||||||
|
.swiper-vertical > .swiper-scrollbar, |
||||||
|
.swiper-scrollbar.swiper-scrollbar-vertical { |
||||||
|
position: absolute; |
||||||
|
left: var(--swiper-scrollbar-left, auto); |
||||||
|
right: var(--swiper-scrollbar-right, 4px); |
||||||
|
top: var(--swiper-scrollbar-sides-offset, 1%); |
||||||
|
z-index: 50; |
||||||
|
width: var(--swiper-scrollbar-size, 4px); |
||||||
|
height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%)); |
||||||
|
} |
||||||
|
.swiper-scrollbar-drag { |
||||||
|
height: 100%; |
||||||
|
width: 100%; |
||||||
|
position: relative; |
||||||
|
background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5)); |
||||||
|
border-radius: var(--swiper-scrollbar-border-radius, 10px); |
||||||
|
left: 0; |
||||||
|
top: 0; |
||||||
|
} |
||||||
|
.swiper-scrollbar-cursor-drag { |
||||||
|
cursor: move; |
||||||
|
} |
||||||
|
.swiper-scrollbar-lock { |
||||||
|
display: none; |
||||||
|
} |
||||||
|
/* Zoom container styles start */ |
||||||
|
.swiper-zoom-container { |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
display: flex; |
||||||
|
justify-content: center; |
||||||
|
align-items: center; |
||||||
|
text-align: center; |
||||||
|
} |
||||||
|
.swiper-zoom-container > img, |
||||||
|
.swiper-zoom-container > svg, |
||||||
|
.swiper-zoom-container > canvas { |
||||||
|
max-width: 100%; |
||||||
|
max-height: 100%; |
||||||
|
object-fit: contain; |
||||||
|
} |
||||||
|
/* Zoom container styles end */ |
||||||
|
.swiper-slide-zoomed { |
||||||
|
cursor: move; |
||||||
|
touch-action: none; |
||||||
|
} |
||||||
|
/* a11y */ |
||||||
|
.swiper .swiper-notification { |
||||||
|
position: absolute; |
||||||
|
left: 0; |
||||||
|
top: 0; |
||||||
|
pointer-events: none; |
||||||
|
opacity: 0; |
||||||
|
z-index: -1000; |
||||||
|
} |
||||||
|
.swiper-free-mode > .swiper-wrapper { |
||||||
|
transition-timing-function: ease-out; |
||||||
|
margin: 0 auto; |
||||||
|
} |
||||||
|
.swiper-grid > .swiper-wrapper { |
||||||
|
flex-wrap: wrap; |
||||||
|
} |
||||||
|
.swiper-grid-column > .swiper-wrapper { |
||||||
|
flex-wrap: wrap; |
||||||
|
flex-direction: column; |
||||||
|
} |
||||||
|
.swiper-fade.swiper-free-mode .swiper-slide { |
||||||
|
transition-timing-function: ease-out; |
||||||
|
} |
||||||
|
.swiper-fade .swiper-slide { |
||||||
|
pointer-events: none; |
||||||
|
transition-property: opacity; |
||||||
|
} |
||||||
|
.swiper-fade .swiper-slide .swiper-slide { |
||||||
|
pointer-events: none; |
||||||
|
} |
||||||
|
.swiper-fade .swiper-slide-active { |
||||||
|
pointer-events: auto; |
||||||
|
} |
||||||
|
.swiper-fade .swiper-slide-active .swiper-slide-active { |
||||||
|
pointer-events: auto; |
||||||
|
} |
||||||
|
.swiper-cube { |
||||||
|
overflow: visible; |
||||||
|
} |
||||||
|
.swiper-cube .swiper-slide { |
||||||
|
pointer-events: none; |
||||||
|
-webkit-backface-visibility: hidden; |
||||||
|
backface-visibility: hidden; |
||||||
|
z-index: 1; |
||||||
|
visibility: hidden; |
||||||
|
transform-origin: 0 0; |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
} |
||||||
|
.swiper-cube .swiper-slide .swiper-slide { |
||||||
|
pointer-events: none; |
||||||
|
} |
||||||
|
.swiper-cube.swiper-rtl .swiper-slide { |
||||||
|
transform-origin: 100% 0; |
||||||
|
} |
||||||
|
.swiper-cube .swiper-slide-active, |
||||||
|
.swiper-cube .swiper-slide-active .swiper-slide-active { |
||||||
|
pointer-events: auto; |
||||||
|
} |
||||||
|
.swiper-cube .swiper-slide-active, |
||||||
|
.swiper-cube .swiper-slide-next, |
||||||
|
.swiper-cube .swiper-slide-prev { |
||||||
|
pointer-events: auto; |
||||||
|
visibility: visible; |
||||||
|
} |
||||||
|
.swiper-cube .swiper-cube-shadow { |
||||||
|
position: absolute; |
||||||
|
left: 0; |
||||||
|
bottom: 0px; |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
opacity: 0.6; |
||||||
|
z-index: 0; |
||||||
|
} |
||||||
|
.swiper-cube .swiper-cube-shadow:before { |
||||||
|
content: ''; |
||||||
|
background: #000; |
||||||
|
position: absolute; |
||||||
|
left: 0; |
||||||
|
top: 0; |
||||||
|
bottom: 0; |
||||||
|
right: 0; |
||||||
|
filter: blur(50px); |
||||||
|
} |
||||||
|
.swiper-cube .swiper-slide-next + .swiper-slide { |
||||||
|
pointer-events: auto; |
||||||
|
visibility: visible; |
||||||
|
} |
||||||
|
/* Cube slide shadows start */ |
||||||
|
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top, |
||||||
|
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, |
||||||
|
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, |
||||||
|
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right { |
||||||
|
z-index: 0; |
||||||
|
-webkit-backface-visibility: hidden; |
||||||
|
backface-visibility: hidden; |
||||||
|
} |
||||||
|
/* Cube slide shadows end */ |
||||||
|
.swiper-flip { |
||||||
|
overflow: visible; |
||||||
|
} |
||||||
|
.swiper-flip .swiper-slide { |
||||||
|
pointer-events: none; |
||||||
|
-webkit-backface-visibility: hidden; |
||||||
|
backface-visibility: hidden; |
||||||
|
z-index: 1; |
||||||
|
} |
||||||
|
.swiper-flip .swiper-slide .swiper-slide { |
||||||
|
pointer-events: none; |
||||||
|
} |
||||||
|
.swiper-flip .swiper-slide-active, |
||||||
|
.swiper-flip .swiper-slide-active .swiper-slide-active { |
||||||
|
pointer-events: auto; |
||||||
|
} |
||||||
|
/* Flip slide shadows start */ |
||||||
|
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top, |
||||||
|
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, |
||||||
|
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, |
||||||
|
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right { |
||||||
|
z-index: 0; |
||||||
|
-webkit-backface-visibility: hidden; |
||||||
|
backface-visibility: hidden; |
||||||
|
} |
||||||
|
/* Flip slide shadows end */ |
||||||
|
.swiper-creative .swiper-slide { |
||||||
|
-webkit-backface-visibility: hidden; |
||||||
|
backface-visibility: hidden; |
||||||
|
overflow: hidden; |
||||||
|
transition-property: transform, opacity, height; |
||||||
|
} |
||||||
|
.swiper-cards { |
||||||
|
overflow: visible; |
||||||
|
} |
||||||
|
.swiper-cards .swiper-slide { |
||||||
|
transform-origin: center bottom; |
||||||
|
-webkit-backface-visibility: hidden; |
||||||
|
backface-visibility: hidden; |
||||||
|
overflow: hidden; |
||||||
|
} |
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue