1
/* BASIC LAYOUT
2
----------------------------------------------- */
3
.wrapper {min-width: 320px; position: relative;}
4
.wrapper-container {max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 20;}
5
.wrapper-main {padding: 0 var(--indent); min-height: 100vh; display: flex; flex-direction: column;}
6
.content {flex: 1 0 auto; padding: 30px 0;}
7
.header, .nav {background-color: var(--bg-lighter); box-shadow: var(--bsh); padding-top: 15px; padding-bottom: 15px;}
8
.header {gap: 20px 20px;}
9
.nav {border-top: 1px solid var(--bdc); position: relative; z-index: 600;}
10
.cols {display: grid; gap: 30px 30px; grid-template-columns: 260px minmax(0,1fr) 260px;}
11
.cols.x2 {grid-template-columns: minmax(0,1fr) 260px;}
12
.col-side {display: grid; gap: 30px; align-content: start; position: relative; z-index: 60;}
13
.footer {background-color: var(--bg-darker); color: var(--tt-lighter);
14
padding-top: 30px; padding-bottom: 30px;
font-size: 14px; line-height: 1.6;}
15
.content-block--bg {background-color: var(--bg-lighter); border-radius: 10px; padding: 40px;}
16
17
#scrolltop {position: fixed; width: 60px; height: 60px; line-height: 60px; right: 10px; bottom: 10px;
18
z-index: 990; display: none; background-color: var(--bg-lighter); color: var(--tt-lightest);
19
cursor: pointer; font-size: 24px; border-radius: 50%; text-align: center; box-shadow: var(--bsh);}
20
21
22
/* HEADER
23
----------------------------------------------- */
24
.logo {display: inline-flex; align-items: center; height: 40px; position: relative;
25
font-weight: 700; font-size: 28px; letter-spacing: 1px; padding-left: 40px; margin-right: 40px;
26
background: url(../images/logo1.webp) 0 3px / 34px no-repeat; color: var(--tt) !important;}
27
.logo span {font-weight: 400;
font-size: 10px; text-transform: uppercase; color: var(--tt-lightest);
28
position: absolute; right: -10px; top: 0;}
29
.search-block form {max-width: 400px; position: relative;}
30
.search-block__input[type="text"], .search-block__input[type="text"]:focus {border-radius: 20px; box-shadow: none;
31
border: 1px solid var(--bdc); background-color: var(--bg-lighter); height: 40px; line-height: 38px; padding: 0 50px 0 20px;}
32
.search-block__input[type="text"]:not(:focus)
:placeholder {color: var(--tt-lightest); opacity: 1;
font-size: 14px;}
33
.search-block__btn {position: absolute; right: 0; top: 0; width: 50px;
34
background: none; color: var(--tt); border-radius: 20px; padding: 0; font-size: 16px;}
35
36
37
/* NAV
38
----------------------------------------------- */
39
.nav__list {margin: 0 -40px;}
40
.nav__list > li, .side-nav > li {flex-grow: 1;
font-size: 14px; position: relative;}
41
.nav__list > li + li {border-left: 1px solid var(--bdc);}
42
.nav__list > li > a, .side-nav > li > a, .nav__list > li > span, .side-nav > li > span {height: 40px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; justify-content: center; padding: 0 20px; cursor: pointer;}
43
.nav__list-hidden {width: max-content; padding: 20px 40px; border-radius: 0 0 10px 10px; position: absolute; left: 0; top: calc(100% + 16px); background-color: var(--bg-lighter); box-shadow: 0 1px 1px 1px #0001; display: grid; gap: 10px; visibility: hidden; opacity: 0; transform: translateY(40px);}
44
.nav__list-hidden::before {content: ""; position: absolute; top: -20px; display: block; width: 100%; height: 20px}
45
.submenu > a::after, .submenu > span::after {content:"\f107"; font-weight: 300; font-family:'Font Awesome 5 Pro'; margin-left:7px; display: inline-block; color: inherit;}
46
.side-nav {border-radius: 6px; padding: 20px 0px; background-color: var(--bg-lighter);}
47
.side-nav .nav__list-hidden {left: 100%; top: -40px; border-radius: 0 10px 10px 0;}
48
.side-nav > li > a, .side-nav > li > span {justify-content: flex-start;}
49
/****/
50
.nav__list-hidden .nav__list-hidden {display: none;}
51
.submenu .submenu > a::after {content: none;}
52
.submenu > a > b {color: royalblue;}
53
/****/
54
55
/* TOP
56
----------------------------------------------- */
57
.top {gap: 15px 15px; margin-bottom: 30px;}
58
.top-item {flex: 1 1 30%; box-shadow: var(--bsh); border-radius: 6px; padding: 0;}
59
.top-item:nth-child(2), .top-item:nth-child(3) {flex-basis: 60%;}
60
.top-item__desc {position: relative; z-index: 5; min-height: 140px; padding: 20px; color: #fff; gap: 10px; max-width: 100%;}
61
.top-item__title {font-weight: 600; color: #fff !important;
font-size: 15px;}
62
.top-item__date {
font-size: 12px;}
63
.top-item::before {height: 100%; background: var(--gradient); opacity: 0.6;}
64
@media screen and (min-width: 1220px) {
65
.top {display: grid; grid-template-columns: repeat(6,1fr);}
66
.top-item {grid-column: span 1;}
67
.top-item:nth-child(3), .top-item:nth-child(4) {grid-column: span 2;}
68
.top-item:nth-child(1) {grid-column: span 3; grid-row: span 2;}
69
.top-item__desc {height: 100%;}
70
.top-item:nth-child(1) .top-item__title {font-size: 24px; margin-bottom: 30px;}
71
}
72
73
74
/* SECTION
75
----------------------------------------------- */
76
.sect__header {margin-bottom: 30px;}
77
.sect__sort {height: 36px;}
78
.sect__sort ul {height: 36px; background-color: var(--bg-lighter);
79
border-radius: 6px; position: relative; z-index: 50; cursor: pointer; text-align: center;}
80
.sect__sort ul li {height: 0; line-height: 36px; visibility: hidden; padding: 0 10px;
font-size: 13px;}
81
.sect__sort ul li:where(.asc,.desc), .sect__sort ul:hover li {height: 36px; visibility: visible;}
82
.sect__sort ul:hover {height: auto; box-shadow: var(--bsh);}
83
.sect__sort ul li::before {content: 'Сортировать по:'; margin-right: 6px;}
84
.sect__sort li:where(.asc,.desc) a::after {content: "\f063"; font-family: "Font Awesome 5 Pro";
85
display: inline-block; margin-left: 6px; font-weight: 300;
font-size: 10px;}
86
.sect__sort li.desc a::after {content: "\f062"}
87
.speedbar {margin-bottom: 15px; margin-top: -15px;
font-size: 13px; color: var(--tt-lightest);}
88
.descr {display: grid; grid-gap: 20px; line-height: 1.7; color: var(--tt-lighter); grid-column: 1 / -1; padding: 20px 0;}
89
.descr h1, .descr h2, .descr h3 {font-weight: 400; font-size: 18px; color: var(--tt); line-height: 1.3;}
90
.descr a {text-decoration: underline; color: var(--accent);}
91
.descr ul li {position: relative; padding-left: 25px; margin-left: 25px;}
92
.descr ul li::before {content:"\f00c"; font-weight: 300; font-family:'Font Awesome 5 Pro';
93
color: var(--accent); position: absolute; left: 0; top: 0;}
94
95
96
/* SHORT STORY
97
----------------------------------------------- */
98
.short {background-color: var(--bg-lighter); border-radius: 10px; overflow: hidden;}
99
.short__header, .short__desc {padding: 30px;}
100
.short__title {font-size: 24px; font-weight: 700;}
101
.short__meta {margin-top: 15px; gap: 10px 20px;
font-size: 12px; color: var(--tt-lighter);}
102
.short__meta-item a {color: var(--accent); text-decoration: underline;}
103
.short__meta .fal {margin-right: 6px; opacity: 0.6;}
104
.short__img {height: 260px; display: block;}
105
.short__text {color: var(--tt-lighter); line-height: 1.6; margin-bottom: 38px;}
106
.short.grid-item {position: relative; padding-bottom: 60px;}
107
.short.grid-item .short__header, .short.grid-item .short__desc {padding: 20px;}
108
.short.grid-item .short__header {padding-bottom: 0;}
109
.short.grid-item .short__title {font-size: 16px;}
110
.short.grid-item .short__img {height: 0;}
111
.short.grid-item .short__meta {gap: 10px 10px;}
112
.short.grid-item .short__text {
-webkit-line-clamp: 4;
font-size: 14px; margin: 0;}
113
.short__btn .fal {opacity: 1; font-size: 18px; margin: 0;}
114
.short__btn {padding: 0; width: 40px;}
115
.short__desc .short__meta {position: absolute; left: 0; right: 0; bottom: 0; padding: 20px;}
116
117
118
/* SIDEBAR
119
----------------------------------------------- */
120
.side-block__title {font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
121
margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid var(--bdc-darker);}
122
.side-block__content {display: grid; gap: 15px; grid-template-columns: repeat(auto-fill,minmax(240px,1fr));}
123
.side-block--sticky {position: sticky; left: 0; top: 20px;}
124
.popular {background-color: var(--bg-darker); border-radius: 6px; overflow: hidden; position: relative;}
125
.popular__desc {padding: 16px 20px; padding-top: 14px;}
126
.popular__title {font-weight: 700;}
127
.popular__text {
font-size: 13px; color: var(--tt-lighter); margin-top: 6px;
-webkit-line-clamp: 4;}
128
.attent {text-align: center; position: relative; border-radius: 6px; padding: 20px; background-color: var(--bg-lighter);}
129
.attent__title {font-weight: 700; margin: 20px 0;}
130
.attent .short__meta {margin: 0; margin-bottom: 20px;}
131
.int {position: relative; gap: 20px; height: 60px;}
132
.int__img {width: 60px; height: 60px; box-shadow: var(--bsh); border-radius: 6px;}
133
.int__title div {
-webkit-line-clamp: 3;
font-size: 14px;}
134
135
136
/* FOOTER, PAGINATION
137
----------------------------------------------- */
138
.footer__text {color: var(--tt);}
139
.footer__text a {margin: 0 20px 0 0; color: var(--accent);}
140
141
.pagination {text-align: center; display: grid; gap: 20px; padding-top: 15px;}
142
.pagination__btn-loader a, .pagination__btn-loader span {display: inline-flex; justify-content: center; align-items: center;
143
height: 60px; padding: 0 50px; border-radius: 30px; background: var(--bg-darker); color: var(--tt-lighter);
144
font-weight: 700; text-transform: uppercase;
font-size: 14px; letter-spacing: 1px; width: 400px; max-width: 100%;}
145
.pagination__pages {gap: 10px 10px;}
146
.pagination__pages a, .pagination__pages span {display: inline-block; line-height: 38px;
147
padding: 0 10px; min-width: 40px; font-size: 16px; border: 1px solid var(--bdc-darker); border-radius: 20px;}
148
.pagination__pages span:not(.nav_ext) {background: var(--accent); color: #fff; border-color: var(--accent);}
149
150
151
/* INNER PAGE
152
----------------------------------------------- */
153
154
.page__tags {font-size: 0; gap: 10px 4px; margin-top: 40px;}
155
.page__tags .fal {height: 30px; line-height: 30px; font-size: 16px; margin-right: 6px;}
156
.page__tags a {display: flex; align-items: center; white-space: nowrap; height: 30px; border-radius: 2px;
157
padding: 0 10px;
font-size: 11px; text-transform: uppercase;
158
color: var(--tt-lighter); border: 1px solid var(--bdc-darker);}
159
160
.page__tags + .page__footer {margin-top: -10px;}
161
.page__footer {
font-size: 14px; border-top: 1px solid var(--bdc); padding-top: 20px;}
162
.page__fav a {padding-left: 50px; position: relative; display: block;
163
color: var(--tt-lightest); line-height: 1.3;
font-size: 13px;}
164
.page__fav .fal {width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
165
border: 1px solid var(--bdc); border-radius: 50%; color: var(--accent);
166
position: absolute; left: 0; top: 50%; margin-top: -20px;}
167
.page__btn-comments {height: 30px; padding: 0 10px;
font-size: 11px;
168
text-transform: uppercase; margin-left: 20px;}
169
170
.page__prev-next {background-color: var(--bg-2); width: 300px; padding: 20px;
171
float: left; margin: 0 20px 10px 0; padding-bottom: 3px;}
172
.page__prev-next-link {line-height: 1.5; display: block; margin-bottom: 20px; font-weight: 300;}
173
.page__prev-next-link div {
font-size: 12px; color: var(--tt-lightest); margin-bottom: 5px;}
174
.popular-item__img {width: 100px; height: 60px; margin-right: 20px;}
175
.popular-item__title {line-height: 1.4;
-webkit-line-clamp: 3;}
176
.popular-item:hover, .page__prev-next-link:hover {text-decoration: underline;}
177
178
179
/* TEXT BLOCK, TYPOGRAPHY, VIDEO BLOCK
180
----------------------------------------------- */
181
.full-text {line-height: 1.5;
font-size: 15px; word-wrap: break-word;}
182
.full-text a {text-decoration: underline; color: #5278b1;}
183
.full-text img:not(.emoji), .full-text p, .full-text h1, .full-text h2, .full-text h3, .full-text h4, .full-text h5,
184
.full-text > ul, .full-text > ol, .full-text table, .page__title {
margin-block: .67em;}
185
.full-text > img[style*="left"], .full-text > .highslide img[style*="left"] {margin:0 10px 10px 0;}
186
.full-text > img[style*="right"], .full-text > .highslide img[style*="right"] {margin:0 0 10px 10px;}
187
.full-text > ul li, .full-text > ol li {padding-left: 30px; position: relative;}
188
.full-text > ul li:before {content: ''; width: 3px; height: 3px; border-radius: 50%;
189
border: 3px solid var(--accent); position: absolute; top: 8px; left: 5px;}
190
.full-text > ol {counter-reset: num;}
191
.full-text > ol li:before {content: counter(num); counter-increment: num; background-color: var(--accent); color: #fff;
192
position: absolute; top: 4px; left: 0; width: 18px; height: 14px;
font-size: 12px; font-weight: 600;
193
display: flex; justify-content: flex-end; align-items: center; padding-right: 2px; box-sizing: border-box;}
194
.full-text > ol li:after {content: ''; border: 0 solid transparent; border-left-color: var(--accent);
195
position: absolute; left: 18px; top: 4px; border-width: 7px 4px}
196
.full-text > ul li + li, .full-text > ol li + li {margin-top: 10px;}
197
.full-text table, .video-inside > * {width:100%;}
198
.full-text table tr td {padding:10px; border:2px solid #fff;}
199
.full-text table tr:nth-child(2n+1) {background-color:#f2f6f9;}
200
.full-text table tr:nth-child(1) {background-color:#cee0ed;}
201
.full-text table img:not(.emoji) {margin:0; max-width:350px}
202
.full-text > *:last-child {margin-bottom: 0;}
203
.video-responsive {padding-top: 60%; position: relative;}
204
.video-responsive > iframe, .video-responsive > video {position: absolute; left: 0; top: 0; width: 100%; height: 100%;}
205
.full-text h1 {font-size: 1.8em;}
206
.full-text h2 {font-size: 1.6em;}
207
.full-text h3 {font-size: 1.4em;}
208
.full-text h4 {font-size: 1.2em;}
209
.full-text h5 {font-size: 1em;}
210
.full-text h6 {font-size: .8em;}
211
.full-text iframe {width: 100%; height: 400px; margin-bottom: 1.5em;}
212
.fdl-btn {display: block; position: relative; box-shadow: 0 3px 10px rgba(0,0,0,0.1);
213
text-decoration: none !important; padding: 15px 15px 15px 130px;
214
background: linear-gradient(to top, #27ae60, #2ecc71); color: #fff !important; overflow: hidden;}
215
.fdl-btn-title {font-weight: 500; text-transform: uppercase; word-wrap: break-word;}
216
.fdl-btn-size {
font-size: 14px; margin-top: -2px; margin-bottom: 6px; opacity: 0.9;}
217
.fdl-btn-caption {opacity: 0.7;
font-size: 14px;}
218
.fdl-btn-dl {
font-size: 12px; text-transform: uppercase; margin-left: 15px;}
219
.fdl-btn > * {position: relative; z-index: 3;}
220
.fdl-btn-icon {width: 50px; height: 50px; border-radius: 50%; margin-top: -25px; font-size: 24px;
221
position: absolute; left: 40px; top: 50%; display: flex; align-items: center; justify-content: center;
222
box-shadow: 0 0 0 15px rgba(0,0,0,0.13), 0 0 0 30px rgba(0,0,0,0.08), 0 0 0 45px rgba(0,0,0,0.04);}
223
224
225
/* COMMENTS
226
----------------------------------------------- */
227
.page__comments {margin: 0; margin-top: 30px; padding: 20px; border-radius: 10px; background: var(--bg-lighter);}
228
.page__comments-title {font-size: 21px; font-weight: 700; margin-bottom: 20px;}
229
.page__comments-info {
font-size: 14px; margin-bottom: 15px; margin-top: -15px;
230
color: var(--tt-lighter); line-height: 1.5;}
231
.page__comments-info .fal {color: #eb4d4b; margin-right: 6px;}
232
.page__comments-header {position: relative; padding-right: 130px;}
233
.page__comments-btn {position: absolute; right: 0; top: 0;}
234
.ac-form {display: grid; gap: 20px; margin-bottom: 40px;}
235
.ac-form__bottom {gap: 10px 20px;}
236
.ac-form .message-info {margin: 0;}
237
.ac-form .tox-tinymce {height: 160px !important;}
238
.comments_subscribe + br {display: none;}
239
.mass_comments_action {display: flex; align-items: center; max-width: 800px; white-space: nowrap; margin-bottom: 20px;}
240
.mass_comments_action select {flex: 1 1 0; margin: 0 -8px 0 20px;}
241
.mass_comments_action .bbcodes {border-radius: 0; padding: 0 10px;}
242
.has-comms {margin-bottom: -20px;}
243
244
.comment-item__title {font-weight: 700; font-size: 18px; margin-bottom: 20px;}
245
.comment-item {margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid var(--bdc-darker);}
246
.comment-item__img {width: 40px; height: 40px; border-radius: 50%; margin-right: 10px;}
247
.comment-item__letter {width: 100%; height: 100%; text-transform: uppercase; font-weight: 700;
248
position: absolute; left: 0; top: 0; z-index: 5; color: #fff; font-size: 18px;}
249
.comment-item__author {font-weight: 600;
font-size: 14px;}
250
.comment-item__date {color: var(--tt-lightest); margin-top: 4px;
font-size: 12px;}
251
.comment-item__main {margin: 8px 0 6px 0;
font-size: 15px;}
252
.comment-item__rating {white-space: nowrap;
font-size: 14px;}
253
.comment-item__rating a {margin-left: 6px;}
254
.comment-item__rating a > span:first-child {color: #6ab04c; margin-right: 2px;}
255
.comment-item__rating a:last-child > span:first-child {color: #eb4d4b;}
256
.comment-item__reply a {
font-size: 12px; margin-right: 20px; color: var(--tt-lightest);}
257
.comment-item__reply a .fal {margin-left: 5px;}
258
.comment-item__reply + .comment-item__reply a .fal {margin-left: 0; margin-right: 5px;}
259
.comment-item__controls {text-align: right;
font-size: 12px; margin-right: -15px;}
260
.comment-item__controls li {display: inline-block; vertical-align: middle; margin: 0 0 0 10px; height: 16px; line-height: 16px;}
261
.comment-item__controls a:not(:hover) {color: var(--tt-lightest);}
262
.comment-item__footer a:hover {text-decoration: underline;}
263
.comment-item__rating a:hover > span:first-child {text-decoration: none;}
264
.comment-item__controls .checkbox {transform: scale(0.8,0.8); margin-left: 5px;}
265
266
267
/* LOGIN
268
----------------------------------------------- */
269
.login {position: fixed; z-index: 999; left: 50%; top: 50%; transform: translate(-50%,-50%); overflow: hidden;
270
background-color: var(--ui-bg); border-radius: 4px; width: 400px;
271
box-shadow: 0 0 0 10px rgba(255,255,255,0.2), 0 15px 45px rgba(0,0,0,1);}
272
.login__header {padding: 20px 40px; background-color: var(--ui-bg-darker);}
273
.login__title {font-size: 18px; font-weight: 600; padding: 1px 0; text-transform: capitalize;}
274
.login__close {cursor: pointer; font-size: 24px; opacity: 0.6; margin-left: 20px;}
275
.login__title a {border-bottom: 1px dotted var(--tt-lighter); margin-left: 10px; font-weight: 400; color: var(--tt-lightest);}
276
.login__content {padding: 20px 40px;}
277
.login__row {margin-bottom: 20px; position: relative; display: block;
font-size: 14px; color: var(--tt-lightest);}
278
.login__caption {
font-size: 14px; color: var(--tt); margin-bottom: 10px;}
279
.login__caption a {text-decoration: underline; margin-left: 6px; color: var(--accent);}
280
.login__input input {padding-left: 40px;}
281
.login__row .fal {opacity: 0.5; position: absolute; left: 0; bottom: 0; line-height: 40px; width: 40px; text-align: center;}
282
.login__row button {width: 100%;}
283
.login__social {background-color: var(--ui-bg-darker); padding: 20px 40px; text-align: center;}
284
.login__social-caption {
font-size: 11px; text-transform: uppercase; margin-bottom: 10px;}
285
.login__social-btns a {display:inline-block; margin: 0 3px; vertical-align:top;}
286
.login__social-btns img {display:block; width:34px; height: 34px;}
287
.login__avatar {width: 40px; height: 40px; border-radius: 50%; margin-right: 10px;}
288
.login__menu {padding-left: 35px; padding-right: 35px; margin-bottom: -10px;}
289
.login__menu li {flex: 1 1 0; min-width: auto; max-width: 100%; margin: 0 5px 10px 5px;}
290
.login__menu a {display: block; border-radius: 6px; padding: 10px; text-align: center; white-space: nowrap;
291
background-color: var(--ui-bg-darker); box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
font-size: 13px;}
292
.login__menu .fal {display: block; height: 30px; font-size: 24px; opacity: 0.3;}
293
294
295
/* ADAPTIVE, MOBILE MENU
296
----------------------------------------------- */
297
.overlay {position: fixed; z-index: 998; left: 0; top: 0; width: 100%; height: 100%;
298
opacity: 0.6; background-color: #000; cursor: pointer; display: none;}
299
.mobile-menu {width: 320px; height: 100%; overflow-x: hidden; overflow-y: auto;
300
padding: 10px 20px; z-index: 999; position: fixed; left: -320px; top: 0; transition: left .4s;
301
background-color: var(--bg-lighter); color: var(--tt);}
302
.mobile-menu.is-active {left: 0;}
303
.mobile-menu-close {cursor: pointer; display: block; left: 320px; top: -40px; position: fixed; z-index: 999;
304
width: 40px; height: 40px; line-height: 40px; text-align: center; font-size: 18px; opacity: 0;
305
background-color: #e84e36; color: #fff; transition: top .4s, opacity .4s;}
306
.mobile-menu-close.is-active {top: 0px; opacity: 1;}
307
body.mobile-menu-is-opened {overflow: hidden; width: 100%; height: 100%;}
308
.mobile-menu ul {margin: 0; padding: 0; display: block;}
309
.mobile-menu ul > li {width: 100%; margin: 0; padding: 0; border: 0;}
310
.mobile-menu ul > li > a {height: 40px; line-height: 40px; padding: 0; display: block;}
311
.mobile-menu .nav__list-hidden {width: 100%; height: auto; display: block; position: relative; left: 0; top: 0; margin: 15px -20px; padding: 10px 20px; border-radius: 0 !important;
312
opacity: 1; visibility: visible; transform: none; background: var(---bg);}
313
314
@media screen and (max-width: 1220px) {
315
body {background-image: none;}
316
.wrapper {padding: 68px 0 0 0; background-image: none; overflow: hidden;}
317
.wrapper-container {max-width:1000px;}
318
#scrolltop {width: 40px; height: 40px; line-height: 40px; font-size: 18px;}
319
.nav, .col-side .js-this-in-mobile-menu, .header__link, .hm {display: none;}
320
.header__btn-menu {display: inline-flex; width: 40px; padding: 0; font-size: 18px;}
321
.cols, .cols.x2 {grid-template-columns: minmax(0,1fr);}
322
.col-side {order: 10;}
323
.footer {display: block; text-align: center;}
324
.footer__text {margin: 20px 0;}
325
.footer__logo {margin: 0;}
326
.side-block--sticky {position: static;}
327
.top-item {flex: 1 0 30% !important;}
328
.nav__list a {line-height: 1 !important; height: auto !important;
padding-block: 10px !important}
329
.submenu {position: relative}
330
.submenu > a {pointer-events:none;}
331
.submenu > a::after {position: absolute; right: 0; top: 10px}
332
.submenu .submenu > a::after {content: "\f107"}
333
.submenu > .nav__list-hidden {max-height: 0; overflow: hidden; transition: 250ms ease-in-out 250ms}
334
.submenu .nav__list-hidden {padding: 0; margin: 0;}
335
.submenu .nav__list-hidden li {padding: 0 0 0 10px; margin: 0;}
336
.nav__list-hidden {box-shadow: none; border-left: 1px solid #0001; width: 100%}
337
.nav__list-hidden .nav__list-hidden {padding: 0}
338
.submenu:hover > .nav__list-hidden {max-height: 3000px; overflow-y: auto}
339
}
340
341
@media screen and (max-width: 950px) {
342
.wrapper-container {max-width:768px;}
343
.top-item {flex: 1 0 200px !important;}
344
.short__header, .short__desc, .content-block--bg {padding: 20px;}
345
.short__text {margin-bottom: 20px;}
346
}
347
348
@media screen and (max-width: 760px) {
349
.wrapper {padding: 132px 0 0 0;}
350
.wrapper-container {max-width:640px;}
351
.header {gap: 20px 10px;}
352
.header__search {min-width: 100%; order: 10; margin: 0;}
353
.header__search form {max-width: 100%;}
354
.header__logo {flex: 1 1 0; max-width: 100%; min-width: 100px; margin: 0;}
355
.header__logo span {position: static; font-size: 1em; text-transform: none; margin-left: 3px;}
356
.top {gap: 10px 10px;}
357
.short__title, .sect__title, h1, h2, h3, h4, h5 {font-size: 18px;}
358
.header__btn-login {width: 40px; overflow: hidden; font-size: 0; padding: 0; display: block;}
359
.header__btn-login::before {display: block; width: 40px; height: 40px; line-height: 40px; text-align: center;
360
font-size: 18px; content:"\f007"; font-weight: 300; font-family:'Font Awesome 5 Pro';}
361
362
.page .short, .content-block--bg, .page__comments {margin-left: -20px; margin-right: -20px; border-radius: 0;}
363
.page__text .quote {margin-left: var(--indent-negative); margin-right: var(--indent-negative); padding-right: var(--indent);}
364
.full-text h1, .full-text h2, .full-text h3, .full-text h4, .full-text h5 {font-size: 18px;}
365
366
.ac-form__bottom > * {min-width: 100%;}
367
.ac-form__bottom button {width: 100%; order: 10;}
368
.mass_comments_action, .comment-item__controls, .comment-item__rating-caption {display: none;}
369
}
370
371
@media screen and (max-width: 590px) {
372
.wrapper-container {max-width:480px;}
373
.login {max-width: 90%; max-height: 90%; overflow-x: hidden; overflow-y: auto;}
374
.login__header, .login__content, .login__social, .pages-bg {padding-left: 20px; padding-right: 20px;}
375
376
.page__share {display: flex; min-width: 100%; margin: 0 0 20px 0px;}
377
.page__yadzen {width: 100%; margin-bottom: 20px;}
378
.page__meta, .page__date {
font-size: 12px;}
379
.page__header h1 {line-height: 1.4; font-size: 19px;}
380
.page__poster {height: 240px;}
381
.page__date {position: absolute; left: 0px; top: 30px;}
382
.page__rating {top: 20px; bottom: auto;
font-size: 13px;}
383
.page__rating > * {width: 40px; padding: 5px; text-align: center; height: 70px;}
384
.page__rating .fal {margin: 0; margin-bottom: 6px;}
385
}
386
387
@media screen and (max-width: 470px) {
388
.wrapper-container22 {max-width:360px;}
389
.header__logo {font-size: 22px;}
390
.hm2, .page__comments-info {display: none;}
391
.short__img {height: 160px;}
392
.short__text {
font-size: 13px; display: -webkit-box;
-webkit-line-clamp: 5;
-webkit-box-orient: vertical; overflow: hidden;}
393
.pagination__btn-loader > * {width: 100% !important; padding: 0 !important;}
394
.hm {display: block;}
395
396
.full-text iframe {width: calc(100% + 40px); max-width: calc(100% + 40px); height: 260px; margin-left: -20px; margin-right: -20px;}
397
}
398
399
.main-banner {
400
margin-block: 60px 30px;
401
padding: clamp(10px, 5vw, 20px) clamp(20px, 5vw, 40px);
402
border-radius: 15px;
403
background-color: white;
404
box-shadow: 0 0 15px #0004;
405
line-height: 1.5;
406
}
407
408
.category-aside {
409
.parent + ul {display: none}
410
}
411
412
@media screen and (max-width: 1220px) {
413
header.header {
414
position: fixed;
415
top: 0;
416
left: 0;
417
width: 100vw;
418
z-index: 1000;
419
padding-inline: 10%;
420
}
421
.category-aside {
422
display: none;
423
}
424
}
425
426
article.short.grid-item {
427
container-type: inline-size;
428
}
429
430
.side-block.bg {
431
background-color: #fff;
432
padding: 20px;
433
border-radius: 5px;
434
}