Commit 44e612f7e42a54b18376e4e5f8d57e927ea9c8ea

Authored by Hayk Nazaryan
1 parent 674b6d78a5
Exists in master

fixes

Showing 5 changed files with 7 additions and 12 deletions Inline Diff

app/Http/Controllers/Admin/EmployersController.php
1 <?php 1 <?php
2 2
3 namespace App\Http\Controllers\Admin; 3 namespace App\Http\Controllers\Admin;
4 4
5 use App\Http\Controllers\Controller; 5 use App\Http\Controllers\Controller;
6 use App\Http\Requests\FlotRequest; 6 use App\Http\Requests\FlotRequest;
7 use App\Models\Ad_employer; 7 use App\Models\Ad_employer;
8 use App\Models\Answer; 8 use App\Models\Answer;
9 use App\Models\CategoryEmp; 9 use App\Models\CategoryEmp;
10 use App\Models\Employer; 10 use App\Models\Employer;
11 use App\Models\Flot; 11 use App\Models\Flot;
12 use App\Models\Static_ad; 12 use App\Models\Static_ad;
13 use App\Models\User; 13 use App\Models\User;
14 use Illuminate\Http\Request; 14 use Illuminate\Http\Request;
15 use Illuminate\Support\Facades\Storage; 15 use Illuminate\Support\Facades\Storage;
16 use Illuminate\Support\Facades\Validator; 16 use Illuminate\Support\Facades\Validator;
17 17
18 class EmployersController extends Controller 18 class EmployersController extends Controller
19 { 19 {
20 public function index(Request $request) { 20 public function index(Request $request) {
21 if ($request->ajax()) { 21 if ($request->ajax()) {
22 $user = User::find($request->id); 22 $user = User::find($request->id);
23 $request->offsetUnset('id'); 23 $request->offsetUnset('id');
24 $user->update($request->all()); 24 $user->update($request->all());
25 } 25 }
26 26
27 $users = User::with('employers')->select(['users.*','users.id as usr_id', 'emp.id as emp_id', 27 $users = User::with('employers')->select(['users.*','users.id as usr_id', 'emp.id as emp_id',
28 'emp.code as code_id', 'emp.logo as emp_logo', 'emp.name_company as name_company', 'emp.*' 28 'emp.code as code_id', 'emp.logo as emp_logo', 'emp.name_company as name_company', 'emp.*'
29 ]) 29 ])
30 ->join('employers as emp','emp.user_id','users.id') 30 ->join('employers as emp','emp.user_id','users.id')
31 ->where('users.is_worker', '0') 31 ->where('users.is_worker', '0')
32 ->orderByDesc('emp.id') 32 ->orderByDesc('emp.id')
33 ->Realuser(); 33 ->Realuser();
34 $all_employer = Employer::all()->count(); 34 $all_employer = Employer::all()->count();
35 35
36 $all_public = Employer::where('status_hidden', '=', '0')-> 36 $all_public = Employer::where('status_hidden', '=', '0')->
37 count(); 37 count();
38 38
39 $all_status = Employer::where(function($query) { 39 $all_status = Employer::where(function($query) {
40 $query->Where('category', '=', 'Не оплачен') 40 $query->Where('category', '=', 'Не оплачен')
41 ->orWhere('category', '=', 'Не определен') 41 ->orWhere('category', '=', 'Не определен')
42 ->orWhere('category', '=', 'Согласование'); 42 ->orWhere('category', '=', 'Согласование');
43 })->count(); 43 })->count();
44 44
45 $find_cat = ""; 45 $find_cat = "";
46 if (isset($request->category)) { 46 if (isset($request->category)) {
47 if ($request->category != 'Все категории') { 47 if ($request->category != 'Все категории') {
48 $users = $users->where('category', '=', $request->category); 48 $users = $users->where('category', '=', $request->category);
49 $find_cat = $request->category; 49 $find_cat = $request->category;
50 } 50 }
51 } 51 }
52 $find_key = ""; 52 $find_key = "";
53 53
54 if (isset($request->find)) { 54 if (isset($request->find)) {
55 $find_key = $request->find; 55 $find_key = $request->find;
56 $users = $users->where(function($query) use($find_key) { 56 $users = $users->where(function($query) use($find_key) {
57 $query->where('users.name', 'LIKE', "%$find_key%") 57 $query->where('users.name', 'LIKE', "%$find_key%")
58 ->orWhere('emp.email', 'LIKE', "%$find_key%") 58 ->orWhere('emp.email', 'LIKE', "%$find_key%")
59 ->orWhere('emp.telephone', 'LIKE', "%$find_key%") 59 ->orWhere('emp.telephone', 'LIKE', "%$find_key%")
60 ->orWhere('emp.name_company', 'LIKE', "%$find_key%") 60 ->orWhere('emp.name_company', 'LIKE', "%$find_key%")
61 ; 61 ;
62 }); 62 });
63 } 63 }
64 64
65 $all_current = $users->count(); 65 $all_current = $users->count();
66 $users = $users->paginate(15); 66 $users = $users->paginate(15);
67 67
68 $select_category = CategoryEmp::query()->active()->get(); 68 $select_category = CategoryEmp::query()->active()->get();
69 69
70 if ($request->ajax()) { 70 if ($request->ajax()) {
71 return view('admin.employer.index_ajax', compact('users')); 71 return view('admin.employer.index_ajax', compact('users'));
72 } else { 72 } else {
73 return view('admin.employer.index', compact('users', 'find_key', 'find_cat', 'all_employer', 73 return view('admin.employer.index', compact('users', 'find_key', 'find_cat', 'all_employer',
74 'all_public', 'all_status', 'all_current', 'select_category' 74 'all_public', 'all_status', 'all_current', 'select_category'
75 )); 75 ));
76 } 76 }
77 } 77 }
78 78
79 public function comment_read(Employer $employer) { 79 public function comment_read(Employer $employer) {
80 return view('admin.employer.comment', compact('employer')); 80 return view('admin.employer.comment', compact('employer'));
81 } 81 }
82 82
83 // Форма обновления 83 // Форма обновления
84 public function form_update_employer(Employer $employer) { 84 public function form_update_employer(Employer $employer) {
85 // данные 85 // данные
86 86
87 $select_category = CategoryEmp::query()->active()->get(); 87 $select_category = CategoryEmp::query()->active()->get();
88 $flots = Flot::query()->where('employer_id', '=', $employer->id)->get(); 88 $flots = Flot::query()->where('employer_id', '=', $employer->id)->get();
89 return view('admin.employer.edit', compact('employer', 'select_category', 'flots')); 89 return view('admin.employer.edit', compact('employer', 'select_category', 'flots'));
90 } 90 }
91 91
92 public function edit_flot(Flot $flot, Employer $employer) { 92 public function edit_flot(Flot $flot, Employer $employer) {
93 return view('admin.flot.edit', compact('flot', 'employer')); 93 return view('admin.flot.edit', compact('flot', 'employer'));
94 } 94 }
95 95
96 public function add_flot(Employer $employer) { 96 public function add_flot(Employer $employer) {
97 return view('admin.flot.add', compact('employer')); 97 return view('admin.flot.add', compact('employer'));
98 } 98 }
99 99
100 public function save_add_flot(FlotRequest $request) { 100 public function save_add_flot(FlotRequest $request) {
101 $params = $request->all(); 101 $params = $request->all();
102 $params['image'] = $request->file('image')->store("flot", 'public'); 102 $params['image'] = $request->file('image')->store("flot", 'public');
103 Flot::create($params); 103 Flot::create($params);
104 return redirect()->route('admin.employer-profile', ['employer' => $params['employer_id']]) 104 return redirect()->route('admin.employer-profile', ['employer' => $params['employer_id']])
105 ->with('success', 'Данные были успешно сохранены'); 105 ->with('success', 'Данные были успешно сохранены');
106 } 106 }
107 107
108 public function delete_flot(Flot $flot, $employer_id) { 108 public function delete_flot(Flot $flot, $employer_id) {
109 $flot->delete(); 109 $flot->delete();
110 return redirect()->route('admin.employer-profile', ['employer' => $employer_id]) 110 return redirect()->route('admin.employer-profile', ['employer' => $employer_id])
111 ->with('success', 'Данные были успешно сохранены'); 111 ->with('success', 'Данные были успешно сохранены');
112 } 112 }
113 113
114 114
115 public function edit_save_flot(Flot $flot, FlotRequest $request) { 115 public function edit_save_flot(Flot $flot, FlotRequest $request) {
116 $params = $request->all(); 116 $params = $request->all();
117 117
118 if ($request->has('image')) { 118 if ($request->has('image')) {
119 if (!empty($flot->image)) { 119 if (!empty($flot->image)) {
120 Storage::delete($flot->image); 120 Storage::delete($flot->image);
121 } 121 }
122 $params['image'] = $request->file('image')->store("flot", 'public'); 122 $params['image'] = $request->file('image')->store("flot", 'public');
123 } else { 123 } else {
124 if (!empty($flot->image)) $params['image'] = $flot->image; 124 if (!empty($flot->image)) $params['image'] = $flot->image;
125 } 125 }
126 126
127 $flot->update($params); 127 $flot->update($params);
128 128
129 return redirect()->route('admin.employer-profile', ['employer' => $params['employer_id']]) 129 return redirect()->route('admin.employer-profile', ['employer' => $params['employer_id']])
130 ->with('success', 'Данные были успешно сохранены'); 130 ->with('success', 'Данные были успешно сохранены');
131 131
132 } 132 }
133 133
134 public function update_employer(Employer $employer, Request $request) 134 public function update_employer(Employer $employer, Request $request)
135 { 135 {
136 $params = $request->all(); 136 $params = $request->all();
137 unset($params['logo']); 137 unset($params['logo']);
138 unset($params['telephone']); 138 unset($params['telephone']);
139 unset($params['email']); 139 unset($params['email']);
140 unset($params['address']); 140 unset($params['address']);
141 unset($params['site']); 141 unset($params['site']);
142 unset($params['is_lookin']); 142 unset($params['is_lookin']);
143 unset($params['show_database']); 143 unset($params['show_database']);
144 unset($params['can_autolift']); 144 unset($params['can_autolift']);
145 unset($params['status_hidden']); 145 unset($params['status_hidden']);
146 unset($params['oficial_status']); 146 unset($params['oficial_status']);
147 unset($params['social_is']); 147 unset($params['social_is']);
148 unset($params['sending_is']); 148 unset($params['sending_is']);
149 unset($params['category']); 149 unset($params['category']);
150 unset($params['comment_admin']); 150 unset($params['comment_admin']);
151 151
152 $rules = [ 152 $rules = [
153 'name' => 'required|string|max:255', 153 'name' => 'required|string|max:255',
154 ]; 154 ];
155 155
156 $messages = [ 156 $messages = [
157 'required' => 'Укажите обязательное поле «:attribute»', 157 'required' => 'Укажите обязательное поле «:attribute»',
158 'confirmed' => 'Пароли не совпадают', 158 'confirmed' => 'Пароли не совпадают',
159 'email' => 'Введите корректный email', 159 'email' => 'Введите корректный email',
160 'min' => [ 160 'min' => [
161 'string' => 'Поле «:attribute» должно быть не меньше :min символов', 161 'string' => 'Поле «:attribute» должно быть не меньше :min символов',
162 'file' => 'Файл «:attribute» должен быть не меньше :min Кбайт' 162 'file' => 'Файл «:attribute» должен быть не меньше :min Кбайт'
163 ], 163 ],
164 'max' => [ 164 'max' => [
165 'string' => 'Поле «:attribute» должно быть не больше :max символов', 165 'string' => 'Поле «:attribute» должно быть не больше :max символов',
166 'file' => 'Файл «:attribute» должен быть не больше :max Кбайт' 166 'file' => 'Файл «:attribute» должен быть не больше :max Кбайт'
167 ], 167 ],
168 ]; 168 ];
169 169
170 $validator = Validator::make($params, $rules, $messages); 170 $validator = Validator::make($params, $rules, $messages);
171 171
172 if ($validator->fails()) { 172 if ($validator->fails()) {
173 return back()->withErrors($validator)->withInput(); //->route('admin.register') 173 return back()->withErrors($validator)->withInput(); //->route('admin.register')
174 174
175 } else { 175 } else {
176 176
177 //$user = User::find($employer->user_id); 177 //$user = User::find($employer->user_id);
178 $user_id = $employer->user_id; 178 $user_id = $employer->user_id;
179 $employer->name_company = $request->name; 179 $employer->name_company = $request->name;
180 $employer->telephone = $request->telephone; 180 $employer->telephone = $request->telephone;
181 $employer->telephone_2 = $request->telephone_2; 181 $employer->telephone_2 = $request->telephone_2;
182 $employer->email = $request->email; 182 $employer->email = $request->email;
183 $employer->email_2 = $request->email_2; 183 $employer->email_2 = $request->email_2;
184 $employer->address = $request->address; 184 $employer->address = $request->address;
185 $employer->site = $request->site; 185 $employer->site = $request->site;
186 $employer->text = $request->text; 186 $employer->text = $request->text;
187 $employer->status_hidden = $request->status_hidden; 187 $employer->status_hidden = $request->status_hidden;
188 $employer->oficial_status = $request->oficial_status; 188 $employer->oficial_status = $request->oficial_status;
189 $employer->social_is = $request->social_is; 189 $employer->social_is = $request->social_is;
190 $employer->sending_is = $request->sending_is; 190 $employer->sending_is = $request->sending_is;
191 $employer->category = $request->category; 191 $employer->category = $request->category;
192 $employer->comment_admin = $request->comment_admin; 192 $employer->comment_admin = $request->comment_admin;
193 193
194 if ($request->has('logo')) { 194 if ($request->has('logo')) {
195 if (!empty($employer->logo)) { 195 if (!empty($employer->logo)) {
196 Storage::delete($employer->logo); 196 Storage::delete($employer->logo);
197 } 197 }
198 $employer->logo = $request->file('logo')->store("employer/$user_id", 'public'); 198 $employer->logo = $request->file('logo')->store("employer/$user_id", 'public');
199 } 199 }
200 $employer->save(); 200 $employer->save();
201 201
202 $employer->users()->update([ 202 $employer->users()->update([
203 'is_lookin' => $request->is_lookin, 203 'is_lookin' => $request->is_lookin,
204 'show_database' => $request->show_database, 204 'show_database' => $request->show_database,
205 'can_autolift' => $request->can_autolift, 205 'can_autolift' => $request->can_autolift,
206 'is_message' => $request->is_message,
207 'is_public' => $request->is_public,
206 ]); 208 ]);
207 209
208 return redirect()->route('admin.employer-profile', ['employer' => $employer->id]) 210 return redirect()->route('admin.employer-profile', ['employer' => $employer->id])
209 ->with('success', 'Данные были успешно сохранены'); 211 ->with('success', 'Данные были успешно сохранены');
210 } 212 }
211 } 213 }
212 214
213 // Удаление работодателя, вакансий и профиля юзера 215 // Удаление работодателя, вакансий и профиля юзера
214 public function delete_employer(Employer $employer, User $user) { 216 public function delete_employer(Employer $employer, User $user) {
215 try { 217 try {
216 if (!empty($employer)) { 218 if (!empty($employer)) {
217 if (!empty($employer->logo)) { 219 if (!empty($employer->logo)) {
218 Storage::delete($employer->logo); 220 Storage::delete($employer->logo);
219 } 221 }
220 222
221 foreach($employer->ads as $ad) { 223 foreach($employer->ads as $ad) {
222 $ads = Ad_employer::find($ad->id); 224 $ads = Ad_employer::find($ad->id);
223 $ads->employer_id = 2; 225 $ads->employer_id = 2;
224 $ads->is_remove = 1; 226 $ads->is_remove = 1;
225 $ads->save(); 227 $ads->save();
226 } 228 }
227 229
228 $employer->delete(); 230 $employer->delete();
229 } 231 }
230 } finally { 232 } finally {
231 $user->delete(); 233 $user->delete();
232 } 234 }
233 235
234 return redirect()->route('admin.employers')->with('success', 'Данные были удалены о работодателе'); 236 return redirect()->route('admin.employers')->with('success', 'Данные были удалены о работодателе');
235 } 237 }
236 238
237 // кабинет - отзывы о работодателе для модерации 239 // кабинет - отзывы о работодателе для модерации
238 public function answers(Request $request) { 240 public function answers(Request $request) {
239 if ($request->ajax()) { 241 if ($request->ajax()) {
240 $user = Answer::find($request->id); 242 $user = Answer::find($request->id);
241 $request->offsetUnset('id'); 243 $request->offsetUnset('id');
242 $user->update($request->all()); 244 $user->update($request->all());
243 } 245 }
244 246
245 $answers = Answer::query()->orderByDesc('id')->paginate(15); 247 $answers = Answer::query()->orderByDesc('id')->paginate(15);
246 248
247 if ($request->ajax()) { 249 if ($request->ajax()) {
248 return view('admin.answers.index_ajax', compact('answers')); 250 return view('admin.answers.index_ajax', compact('answers'));
249 } else { 251 } else {
250 return view('admin.answers.index', compact('answers')); 252 return view('admin.answers.index', compact('answers'));
251 } 253 }
252 } 254 }
253 255
254 // кабинет - статистика вакансий работодателя 256 // кабинет - статистика вакансий работодателя
255 public function static_ads(Request $request) { 257 public function static_ads(Request $request) {
256 $stat = Static_ad::with('ads'); 258 $stat = Static_ad::with('ads');
257 $ads = Ad_employer::query()->active()->OrderBy('id')->get(); 259 $ads = Ad_employer::query()->active()->OrderBy('id')->get();
258 $periods = Static_ad::query()->distinct('year_month')->select('year_month')->get(); 260 $periods = Static_ad::query()->distinct('year_month')->select('year_month')->get();
259 if ($request->ajax()) { 261 if ($request->ajax()) {
260 if (isset($request->ad_employer_id)) 262 if (isset($request->ad_employer_id))
261 if (!$request->ad_employer_id == "0") 263 if (!$request->ad_employer_id == "0")
262 $stat = $stat->Where('ad_employer_id', '=', $request->ad_employer_id); 264 $stat = $stat->Where('ad_employer_id', '=', $request->ad_employer_id);
263 if (isset($request->year_month)) { 265 if (isset($request->year_month)) {
264 if (!$request->year_month == "0") 266 if (!$request->year_month == "0")
265 $stat = $stat->Where('year_month', '=', $request->year_month); 267 $stat = $stat->Where('year_month', '=', $request->year_month);
266 } 268 }
267 } 269 }
268 270
269 $stat = $stat->OrderByDesc('year_month'); 271 $stat = $stat->OrderByDesc('year_month');
270 $stat = $stat->paginate(15); 272 $stat = $stat->paginate(15);
271 273
272 if ($request->ajax()) 274 if ($request->ajax())
273 return view('admin.static.index_ads_ajax', compact('stat')); 275 return view('admin.static.index_ads_ajax', compact('stat'));
274 else 276 else
275 return view('admin.static.index_ads', compact('stat', 'ads', 'periods')); 277 return view('admin.static.index_ads', compact('stat', 'ads', 'periods'));
276 } 278 }
277 } 279 }
278 280
public/css/custom-ckeditor.css
1 p { 1 p {
2 margin: 5px; 2 margin: 0;
3 line-height: 1.5; 3 line-height: 1.5;
4 } 4 }
5 5
6 br { 6 br {
7 display: inline; 7 display: inline;
8 } 8 }
9 9
public/css/style_may2024.css
1 /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ 1 /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
2 /* Document 2 /* Document
3 ========================================================================== */ 3 ========================================================================== */
4 /** 4 /**
5 * 1. Correct the line height in all browsers. 5 * 1. Correct the line height in all browsers.
6 * 2. Prevent adjustments of font size after orientation changes in iOS. 6 * 2. Prevent adjustments of font size after orientation changes in iOS.
7 */ 7 */
8 @import url(fonts.css); 8 @import url(fonts.css);
9 @import url(jquery.fancybox.css); 9 @import url(jquery.fancybox.css);
10 @import url(jquery.select2.css); 10 @import url(jquery.select2.css);
11 @import url(star-rating.min.css); 11 @import url(star-rating.min.css);
12 @import url(swiper.css); 12 @import url(swiper.css);
13 @import url(picker.min.css); 13 @import url(picker.min.css);
14 @import url(general.css); 14 @import url(general.css);
15 html { 15 html {
16 line-height: 1.15; /* 1 */ 16 line-height: 1.15; /* 1 */
17 -webkit-text-size-adjust: 100%; /* 2 */ 17 -webkit-text-size-adjust: 100%; /* 2 */
18 } 18 }
19 19
20 /* Sections 20 /* Sections
21 ========================================================================== */ 21 ========================================================================== */
22 /** 22 /**
23 * Remove the margin in all browsers. 23 * Remove the margin in all browsers.
24 */ 24 */
25 body { 25 body {
26 margin: 0; 26 margin: 0;
27 } 27 }
28 28
29 /** 29 /**
30 * Render the `main` element consistently in IE. 30 * Render the `main` element consistently in IE.
31 */ 31 */
32 main { 32 main {
33 display: block; 33 display: block;
34 } 34 }
35 35
36 /** 36 /**
37 * Correct the font size and margin on `h1` elements within `section` and 37 * Correct the font size and margin on `h1` elements within `section` and
38 * `article` contexts in Chrome, Firefox, and Safari. 38 * `article` contexts in Chrome, Firefox, and Safari.
39 */ 39 */
40 h1 { 40 h1 {
41 font-size: 2em; 41 font-size: 2em;
42 margin: 0.67em 0; 42 margin: 0.67em 0;
43 } 43 }
44 44
45 /* Grouping content 45 /* Grouping content
46 ========================================================================== */ 46 ========================================================================== */
47 /** 47 /**
48 * 1. Add the correct box sizing in Firefox. 48 * 1. Add the correct box sizing in Firefox.
49 * 2. Show the overflow in Edge and IE. 49 * 2. Show the overflow in Edge and IE.
50 */ 50 */
51 hr { 51 hr {
52 -webkit-box-sizing: content-box; 52 -webkit-box-sizing: content-box;
53 box-sizing: content-box; /* 1 */ 53 box-sizing: content-box; /* 1 */
54 height: 0; /* 1 */ 54 height: 0; /* 1 */
55 overflow: visible; /* 2 */ 55 overflow: visible; /* 2 */
56 } 56 }
57 57
58 /** 58 /**
59 * 1. Correct the inheritance and scaling of font size in all browsers. 59 * 1. Correct the inheritance and scaling of font size in all browsers.
60 * 2. Correct the odd `em` font sizing in all browsers. 60 * 2. Correct the odd `em` font sizing in all browsers.
61 */ 61 */
62 pre { 62 pre {
63 font-family: monospace, monospace; /* 1 */ 63 font-family: monospace, monospace; /* 1 */
64 font-size: 1em; /* 2 */ 64 font-size: 1em; /* 2 */
65 } 65 }
66 66
67 /* Text-level semantics 67 /* Text-level semantics
68 ========================================================================== */ 68 ========================================================================== */
69 /** 69 /**
70 * Remove the gray background on active links in IE 10. 70 * Remove the gray background on active links in IE 10.
71 */ 71 */
72 a { 72 a {
73 background-color: transparent; 73 background-color: transparent;
74 } 74 }
75 75
76 /** 76 /**
77 * 1. Remove the bottom border in Chrome 57- 77 * 1. Remove the bottom border in Chrome 57-
78 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. 78 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
79 */ 79 */
80 abbr[title] { 80 abbr[title] {
81 border-bottom: none; /* 1 */ 81 border-bottom: none; /* 1 */
82 text-decoration: underline; /* 2 */ 82 text-decoration: underline; /* 2 */
83 -webkit-text-decoration: underline dotted; 83 -webkit-text-decoration: underline dotted;
84 text-decoration: underline dotted; /* 2 */ 84 text-decoration: underline dotted; /* 2 */
85 } 85 }
86 86
87 /** 87 /**
88 * Add the correct font weight in Chrome, Edge, and Safari. 88 * Add the correct font weight in Chrome, Edge, and Safari.
89 */ 89 */
90 b, 90 b,
91 strong { 91 strong {
92 font-weight: bolder; 92 font-weight: bolder;
93 } 93 }
94 94
95 /** 95 /**
96 * 1. Correct the inheritance and scaling of font size in all browsers. 96 * 1. Correct the inheritance and scaling of font size in all browsers.
97 * 2. Correct the odd `em` font sizing in all browsers. 97 * 2. Correct the odd `em` font sizing in all browsers.
98 */ 98 */
99 code, 99 code,
100 kbd, 100 kbd,
101 samp { 101 samp {
102 font-family: monospace, monospace; /* 1 */ 102 font-family: monospace, monospace; /* 1 */
103 font-size: 1em; /* 2 */ 103 font-size: 1em; /* 2 */
104 } 104 }
105 105
106 /** 106 /**
107 * Add the correct font size in all browsers. 107 * Add the correct font size in all browsers.
108 */ 108 */
109 small { 109 small {
110 font-size: 80%; 110 font-size: 80%;
111 } 111 }
112 112
113 /** 113 /**
114 * Prevent `sub` and `sup` elements from affecting the line height in 114 * Prevent `sub` and `sup` elements from affecting the line height in
115 * all browsers. 115 * all browsers.
116 */ 116 */
117 sub, 117 sub,
118 sup { 118 sup {
119 font-size: 75%; 119 font-size: 75%;
120 line-height: 0; 120 line-height: 0;
121 position: relative; 121 position: relative;
122 vertical-align: baseline; 122 vertical-align: baseline;
123 } 123 }
124 124
125 sub { 125 sub {
126 bottom: -0.25em; 126 bottom: -0.25em;
127 } 127 }
128 128
129 sup { 129 sup {
130 top: -0.5em; 130 top: -0.5em;
131 } 131 }
132 132
133 /* Embedded content 133 /* Embedded content
134 ========================================================================== */ 134 ========================================================================== */
135 /** 135 /**
136 * Remove the border on images inside links in IE 10. 136 * Remove the border on images inside links in IE 10.
137 */ 137 */
138 img { 138 img {
139 border-style: none; 139 border-style: none;
140 } 140 }
141 141
142 /* Forms 142 /* Forms
143 ========================================================================== */ 143 ========================================================================== */
144 /** 144 /**
145 * 1. Change the font styles in all browsers. 145 * 1. Change the font styles in all browsers.
146 * 2. Remove the margin in Firefox and Safari. 146 * 2. Remove the margin in Firefox and Safari.
147 */ 147 */
148 button, 148 button,
149 input, 149 input,
150 optgroup, 150 optgroup,
151 select, 151 select,
152 textarea { 152 textarea {
153 font-family: inherit; /* 1 */ 153 font-family: inherit; /* 1 */
154 font-size: 100%; /* 1 */ 154 font-size: 100%; /* 1 */
155 line-height: 1.15; /* 1 */ 155 line-height: 1.15; /* 1 */
156 margin: 0; /* 2 */ 156 margin: 0; /* 2 */
157 } 157 }
158 158
159 /** 159 /**
160 * Show the overflow in IE. 160 * Show the overflow in IE.
161 * 1. Show the overflow in Edge. 161 * 1. Show the overflow in Edge.
162 */ 162 */
163 button, 163 button,
164 input { /* 1 */ 164 input { /* 1 */
165 overflow: visible; 165 overflow: visible;
166 } 166 }
167 167
168 /** 168 /**
169 * Remove the inheritance of text transform in Edge, Firefox, and IE. 169 * Remove the inheritance of text transform in Edge, Firefox, and IE.
170 * 1. Remove the inheritance of text transform in Firefox. 170 * 1. Remove the inheritance of text transform in Firefox.
171 */ 171 */
172 button, 172 button,
173 select { /* 1 */ 173 select { /* 1 */
174 text-transform: none; 174 text-transform: none;
175 } 175 }
176 176
177 /** 177 /**
178 * Correct the inability to style clickable types in iOS and Safari. 178 * Correct the inability to style clickable types in iOS and Safari.
179 */ 179 */
180 button, 180 button,
181 [type=button], 181 [type=button],
182 [type=reset], 182 [type=reset],
183 [type=submit] { 183 [type=submit] {
184 -webkit-appearance: button; 184 -webkit-appearance: button;
185 } 185 }
186 186
187 /** 187 /**
188 * Remove the inner border and padding in Firefox. 188 * Remove the inner border and padding in Firefox.
189 */ 189 */
190 button::-moz-focus-inner, 190 button::-moz-focus-inner,
191 [type=button]::-moz-focus-inner, 191 [type=button]::-moz-focus-inner,
192 [type=reset]::-moz-focus-inner, 192 [type=reset]::-moz-focus-inner,
193 [type=submit]::-moz-focus-inner { 193 [type=submit]::-moz-focus-inner {
194 border-style: none; 194 border-style: none;
195 padding: 0; 195 padding: 0;
196 } 196 }
197 197
198 /** 198 /**
199 * Restore the focus styles unset by the previous rule. 199 * Restore the focus styles unset by the previous rule.
200 */ 200 */
201 button:-moz-focusring, 201 button:-moz-focusring,
202 [type=button]:-moz-focusring, 202 [type=button]:-moz-focusring,
203 [type=reset]:-moz-focusring, 203 [type=reset]:-moz-focusring,
204 [type=submit]:-moz-focusring { 204 [type=submit]:-moz-focusring {
205 outline: 1px dotted ButtonText; 205 outline: 1px dotted ButtonText;
206 } 206 }
207 207
208 /** 208 /**
209 * Correct the padding in Firefox. 209 * Correct the padding in Firefox.
210 */ 210 */
211 fieldset { 211 fieldset {
212 padding: 0.35em 0.75em 0.625em; 212 padding: 0.35em 0.75em 0.625em;
213 } 213 }
214 214
215 /** 215 /**
216 * 1. Correct the text wrapping in Edge and IE. 216 * 1. Correct the text wrapping in Edge and IE.
217 * 2. Correct the color inheritance from `fieldset` elements in IE. 217 * 2. Correct the color inheritance from `fieldset` elements in IE.
218 * 3. Remove the padding so developers are not caught out when they zero out 218 * 3. Remove the padding so developers are not caught out when they zero out
219 * `fieldset` elements in all browsers. 219 * `fieldset` elements in all browsers.
220 */ 220 */
221 legend { 221 legend {
222 -webkit-box-sizing: border-box; 222 -webkit-box-sizing: border-box;
223 box-sizing: border-box; /* 1 */ 223 box-sizing: border-box; /* 1 */
224 color: inherit; /* 2 */ 224 color: inherit; /* 2 */
225 display: table; /* 1 */ 225 display: table; /* 1 */
226 max-width: 100%; /* 1 */ 226 max-width: 100%; /* 1 */
227 padding: 0; /* 3 */ 227 padding: 0; /* 3 */
228 white-space: normal; /* 1 */ 228 white-space: normal; /* 1 */
229 } 229 }
230 230
231 /** 231 /**
232 * Add the correct vertical alignment in Chrome, Firefox, and Opera. 232 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
233 */ 233 */
234 progress { 234 progress {
235 vertical-align: baseline; 235 vertical-align: baseline;
236 } 236 }
237 237
238 /** 238 /**
239 * Remove the default vertical scrollbar in IE 10+. 239 * Remove the default vertical scrollbar in IE 10+.
240 */ 240 */
241 textarea { 241 textarea {
242 overflow: auto; 242 overflow: auto;
243 } 243 }
244 244
245 /** 245 /**
246 * 1. Add the correct box sizing in IE 10. 246 * 1. Add the correct box sizing in IE 10.
247 * 2. Remove the padding in IE 10. 247 * 2. Remove the padding in IE 10.
248 */ 248 */
249 [type=checkbox], 249 [type=checkbox],
250 [type=radio] { 250 [type=radio] {
251 -webkit-box-sizing: border-box; 251 -webkit-box-sizing: border-box;
252 box-sizing: border-box; /* 1 */ 252 box-sizing: border-box; /* 1 */
253 padding: 0; /* 2 */ 253 padding: 0; /* 2 */
254 } 254 }
255 255
256 /** 256 /**
257 * Correct the cursor style of increment and decrement buttons in Chrome. 257 * Correct the cursor style of increment and decrement buttons in Chrome.
258 */ 258 */
259 [type=number]::-webkit-inner-spin-button, 259 [type=number]::-webkit-inner-spin-button,
260 [type=number]::-webkit-outer-spin-button { 260 [type=number]::-webkit-outer-spin-button {
261 height: auto; 261 height: auto;
262 } 262 }
263 263
264 /** 264 /**
265 * 1. Correct the odd appearance in Chrome and Safari. 265 * 1. Correct the odd appearance in Chrome and Safari.
266 * 2. Correct the outline style in Safari. 266 * 2. Correct the outline style in Safari.
267 */ 267 */
268 [type=search] { 268 [type=search] {
269 -webkit-appearance: textfield; /* 1 */ 269 -webkit-appearance: textfield; /* 1 */
270 outline-offset: -2px; /* 2 */ 270 outline-offset: -2px; /* 2 */
271 } 271 }
272 272
273 /** 273 /**
274 * Remove the inner padding in Chrome and Safari on macOS. 274 * Remove the inner padding in Chrome and Safari on macOS.
275 */ 275 */
276 [type=search]::-webkit-search-decoration { 276 [type=search]::-webkit-search-decoration {
277 -webkit-appearance: none; 277 -webkit-appearance: none;
278 } 278 }
279 279
280 /** 280 /**
281 * 1. Correct the inability to style clickable types in iOS and Safari. 281 * 1. Correct the inability to style clickable types in iOS and Safari.
282 * 2. Change font properties to `inherit` in Safari. 282 * 2. Change font properties to `inherit` in Safari.
283 */ 283 */
284 ::-webkit-file-upload-button { 284 ::-webkit-file-upload-button {
285 -webkit-appearance: button; /* 1 */ 285 -webkit-appearance: button; /* 1 */
286 font: inherit; /* 2 */ 286 font: inherit; /* 2 */
287 } 287 }
288 288
289 /* Interactive 289 /* Interactive
290 ========================================================================== */ 290 ========================================================================== */
291 /* 291 /*
292 * Add the correct display in Edge, IE 10+, and Firefox. 292 * Add the correct display in Edge, IE 10+, and Firefox.
293 */ 293 */
294 details { 294 details {
295 display: block; 295 display: block;
296 } 296 }
297 297
298 /* 298 /*
299 * Add the correct display in all browsers. 299 * Add the correct display in all browsers.
300 */ 300 */
301 summary { 301 summary {
302 display: list-item; 302 display: list-item;
303 } 303 }
304 304
305 /* Misc 305 /* Misc
306 ========================================================================== */ 306 ========================================================================== */
307 /** 307 /**
308 * Add the correct display in IE 10+. 308 * Add the correct display in IE 10+.
309 */ 309 */
310 template { 310 template {
311 display: none; 311 display: none;
312 } 312 }
313 313
314 /** 314 /**
315 * Add the correct display in IE 10. 315 * Add the correct display in IE 10.
316 */ 316 */
317 [hidden] { 317 [hidden] {
318 display: none; 318 display: none;
319 } 319 }
320 320
321 .green { 321 .green {
322 color: #377d87; 322 color: #377d87;
323 } 323 }
324 324
325 .red { 325 .red {
326 color: #eb5757; 326 color: #eb5757;
327 } 327 }
328 328
329 .rotate180 { 329 .rotate180 {
330 -webkit-transform: rotate(180deg); 330 -webkit-transform: rotate(180deg);
331 -ms-transform: rotate(180deg); 331 -ms-transform: rotate(180deg);
332 transform: rotate(180deg); 332 transform: rotate(180deg);
333 } 333 }
334 334
335 ::-moz-selection { 335 ::-moz-selection {
336 color: #000; 336 color: #000;
337 background: #acc0e6; 337 background: #acc0e6;
338 } 338 }
339 339
340 ::selection { 340 ::selection {
341 color: #000; 341 color: #000;
342 background: #acc0e6; 342 background: #acc0e6;
343 } 343 }
344 344
345 ::-webkit-scrollbar { 345 ::-webkit-scrollbar {
346 width: 8px; 346 width: 8px;
347 height: 8px; 347 height: 8px;
348 } 348 }
349 349
350 ::-webkit-scrollbar-track { 350 ::-webkit-scrollbar-track {
351 border-radius: 999px; 351 border-radius: 999px;
352 background-color: #fff; 352 background-color: #fff;
353 } 353 }
354 354
355 ::-webkit-scrollbar-thumb { 355 ::-webkit-scrollbar-thumb {
356 border-radius: 999px; 356 border-radius: 999px;
357 background-color: #377d87; 357 background-color: #377d87;
358 } 358 }
359 359
360 ::-webkit-input-placeholder { 360 ::-webkit-input-placeholder {
361 color: #9c9d9d; 361 color: #9c9d9d;
362 opacity: 1; 362 opacity: 1;
363 } 363 }
364 364
365 :focus::-webkit-input-placeholder { 365 :focus::-webkit-input-placeholder {
366 color: transparent; 366 color: transparent;
367 } 367 }
368 368
369 :-ms-input-placeholder { 369 :-ms-input-placeholder {
370 color: #9c9d9d; 370 color: #9c9d9d;
371 opacity: 1; 371 opacity: 1;
372 } 372 }
373 373
374 :focus:-ms-input-placeholder { 374 :focus:-ms-input-placeholder {
375 color: transparent; 375 color: transparent;
376 } 376 }
377 377
378 ::-ms-input-placeholder { 378 ::-ms-input-placeholder {
379 color: #9c9d9d; 379 color: #9c9d9d;
380 opacity: 1; 380 opacity: 1;
381 } 381 }
382 382
383 :focus::-ms-input-placeholder { 383 :focus::-ms-input-placeholder {
384 color: transparent; 384 color: transparent;
385 } 385 }
386 386
387 ::-moz-placeholder { 387 ::-moz-placeholder {
388 color: #9c9d9d; 388 color: #9c9d9d;
389 opacity: 1; 389 opacity: 1;
390 } 390 }
391 391
392 :focus::-moz-placeholder { 392 :focus::-moz-placeholder {
393 color: transparent; 393 color: transparent;
394 } 394 }
395 395
396 ::-webkit-input-placeholder { 396 ::-webkit-input-placeholder {
397 color: #9c9d9d; 397 color: #9c9d9d;
398 opacity: 1; 398 opacity: 1;
399 } 399 }
400 400
401 ::-moz-placeholder { 401 ::-moz-placeholder {
402 color: #9c9d9d; 402 color: #9c9d9d;
403 opacity: 1; 403 opacity: 1;
404 } 404 }
405 405
406 :-ms-input-placeholder { 406 :-ms-input-placeholder {
407 color: #9c9d9d; 407 color: #9c9d9d;
408 opacity: 1; 408 opacity: 1;
409 } 409 }
410 410
411 ::-ms-input-placeholder { 411 ::-ms-input-placeholder {
412 color: #9c9d9d; 412 color: #9c9d9d;
413 opacity: 1; 413 opacity: 1;
414 } 414 }
415 415
416 ::placeholder { 416 ::placeholder {
417 color: #9c9d9d; 417 color: #9c9d9d;
418 opacity: 1; 418 opacity: 1;
419 } 419 }
420 420
421 :focus::-webkit-input-placeholder { 421 :focus::-webkit-input-placeholder {
422 color: transparent; 422 color: transparent;
423 } 423 }
424 424
425 :focus::-moz-placeholder { 425 :focus::-moz-placeholder {
426 color: transparent; 426 color: transparent;
427 } 427 }
428 428
429 :focus:-ms-input-placeholder { 429 :focus:-ms-input-placeholder {
430 color: transparent; 430 color: transparent;
431 } 431 }
432 432
433 :focus::-ms-input-placeholder { 433 :focus::-ms-input-placeholder {
434 color: transparent; 434 color: transparent;
435 } 435 }
436 436
437 :focus::placeholder { 437 :focus::placeholder {
438 color: transparent; 438 color: transparent;
439 } 439 }
440 440
441 *, 441 *,
442 *:before, 442 *:before,
443 *:after { 443 *:after {
444 -webkit-box-sizing: border-box; 444 -webkit-box-sizing: border-box;
445 box-sizing: border-box; 445 box-sizing: border-box;
446 -webkit-appearance: none; 446 -webkit-appearance: none;
447 -moz-appearance: none; 447 -moz-appearance: none;
448 appearance: none; 448 appearance: none;
449 outline: none; 449 outline: none;
450 -webkit-box-shadow: none; 450 -webkit-box-shadow: none;
451 box-shadow: none; 451 box-shadow: none;
452 } 452 }
453 453
454 a, 454 a,
455 button, 455 button,
456 select { 456 select {
457 color: inherit; 457 color: inherit;
458 } 458 }
459 459
460 a { 460 a {
461 text-decoration: none; 461 text-decoration: none;
462 } 462 }
463 463
464 a, 464 a,
465 input[type=button], 465 input[type=button],
466 input[type=submit], 466 input[type=submit],
467 button { 467 button {
468 -webkit-user-select: none; 468 -webkit-user-select: none;
469 -moz-user-select: none; 469 -moz-user-select: none;
470 -ms-user-select: none; 470 -ms-user-select: none;
471 user-select: none; 471 user-select: none;
472 -webkit-transition: 0.3s; 472 -webkit-transition: 0.3s;
473 transition: 0.3s; 473 transition: 0.3s;
474 cursor: pointer; 474 cursor: pointer;
475 } 475 }
476 476
477 [type=tel] { 477 [type=tel] {
478 letter-spacing: 1px; 478 letter-spacing: 1px;
479 } 479 }
480 480
481 .br, 481 .br,
482 img, 482 img,
483 svg { 483 svg {
484 display: block; 484 display: block;
485 } 485 }
486 486
487 .float-left { 487 .float-left {
488 float: left; 488 float: left;
489 } 489 }
490 490
491 .float-right { 491 .float-right {
492 float: right; 492 float: right;
493 } 493 }
494 494
495 .clear-both:after { 495 .clear-both:after {
496 content: ""; 496 content: "";
497 display: block; 497 display: block;
498 clear: both; 498 clear: both;
499 } 499 }
500 500
501 h1, 501 h1,
502 h2, 502 h2,
503 h3, 503 h3,
504 h4, 504 h4,
505 h5, 505 h5,
506 h6 { 506 h6 {
507 margin: 0; 507 margin: 0;
508 } 508 }
509 509
510 #body { 510 #body {
511 font-family: "Circe", sans-serif; 511 font-family: "Circe", sans-serif;
512 color: #000; 512 color: #000;
513 background: #fff; 513 background: #fff;
514 display: -webkit-box; 514 display: -webkit-box;
515 display: -ms-flexbox; 515 display: -ms-flexbox;
516 display: flex; 516 display: flex;
517 -webkit-box-orient: vertical; 517 -webkit-box-orient: vertical;
518 -webkit-box-direction: normal; 518 -webkit-box-direction: normal;
519 -ms-flex-direction: column; 519 -ms-flex-direction: column;
520 flex-direction: column; 520 flex-direction: column;
521 -webkit-box-pack: justify; 521 -webkit-box-pack: justify;
522 -ms-flex-pack: justify; 522 -ms-flex-pack: justify;
523 justify-content: space-between; 523 justify-content: space-between;
524 gap: 50px; 524 gap: 50px;
525 min-width: 320px; 525 min-width: 320px;
526 min-height: 100vh; 526 min-height: 100vh;
527 line-height: 1.25; 527 line-height: 1.25;
528 } 528 }
529 @media (min-width: 768px) { 529 @media (min-width: 768px) {
530 #body { 530 #body {
531 gap: 60px; 531 gap: 60px;
532 } 532 }
533 } 533 }
534 #body.pdf { 534 #body.pdf {
535 gap: 0; 535 gap: 0;
536 } 536 }
537 537
538 .container { 538 .container {
539 width: 100%; 539 width: 100%;
540 max-width: 1280px; 540 max-width: 1280px;
541 margin-left: auto; 541 margin-left: auto;
542 margin-right: auto; 542 margin-right: auto;
543 padding-left: 10px; 543 padding-left: 10px;
544 padding-right: 10px; 544 padding-right: 10px;
545 } 545 }
546 @media (min-width: 768px) { 546 @media (min-width: 768px) {
547 .container { 547 .container {
548 padding-left: 20px; 548 padding-left: 20px;
549 padding-right: 20px; 549 padding-right: 20px;
550 } 550 }
551 } 551 }
552 552
553 .to-top { 553 .to-top {
554 position: fixed; 554 position: fixed;
555 right: 10px; 555 right: 10px;
556 bottom: 10px; 556 bottom: 10px;
557 border-radius: 999px; 557 border-radius: 999px;
558 display: -webkit-box; 558 display: -webkit-box;
559 display: -ms-flexbox; 559 display: -ms-flexbox;
560 display: flex; 560 display: flex;
561 -webkit-box-pack: center; 561 -webkit-box-pack: center;
562 -ms-flex-pack: center; 562 -ms-flex-pack: center;
563 justify-content: center; 563 justify-content: center;
564 -webkit-box-align: center; 564 -webkit-box-align: center;
565 -ms-flex-align: center; 565 -ms-flex-align: center;
566 align-items: center; 566 align-items: center;
567 color: #fff; 567 color: #fff;
568 background: #377d87; 568 background: #377d87;
569 width: 40px; 569 width: 40px;
570 height: 40px; 570 height: 40px;
571 -webkit-transition: 0.3s; 571 -webkit-transition: 0.3s;
572 transition: 0.3s; 572 transition: 0.3s;
573 margin-right: -100px; 573 margin-right: -100px;
574 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2); 574 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
575 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2); 575 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
576 z-index: 99; 576 z-index: 99;
577 border: 1px solid #377d87; 577 border: 1px solid #377d87;
578 } 578 }
579 .to-top:hover { 579 .to-top:hover {
580 background: #fff; 580 background: #fff;
581 color: #377d87; 581 color: #377d87;
582 } 582 }
583 .to-top svg { 583 .to-top svg {
584 width: 10px; 584 width: 10px;
585 height: 10px; 585 height: 10px;
586 } 586 }
587 @media (min-width: 768px) { 587 @media (min-width: 768px) {
588 .to-top { 588 .to-top {
589 width: 50px; 589 width: 50px;
590 height: 50px; 590 height: 50px;
591 right: 20px; 591 right: 20px;
592 bottom: 20px; 592 bottom: 20px;
593 } 593 }
594 .to-top svg { 594 .to-top svg {
595 width: 12px; 595 width: 12px;
596 height: 12px; 596 height: 12px;
597 } 597 }
598 } 598 }
599 599
600 .begin .to-top { 600 .begin .to-top {
601 margin-right: 0; 601 margin-right: 0;
602 } 602 }
603 603
604 .socials { 604 .socials {
605 display: -webkit-box; 605 display: -webkit-box;
606 display: -ms-flexbox; 606 display: -ms-flexbox;
607 display: flex; 607 display: flex;
608 -webkit-box-align: center; 608 -webkit-box-align: center;
609 -ms-flex-align: center; 609 -ms-flex-align: center;
610 align-items: center; 610 align-items: center;
611 -webkit-box-pack: center; 611 -webkit-box-pack: center;
612 -ms-flex-pack: center; 612 -ms-flex-pack: center;
613 justify-content: center; 613 justify-content: center;
614 gap: 8px; 614 gap: 8px;
615 } 615 }
616 .socials a { 616 .socials a {
617 display: -webkit-box; 617 display: -webkit-box;
618 display: -ms-flexbox; 618 display: -ms-flexbox;
619 display: flex; 619 display: flex;
620 -webkit-box-align: center; 620 -webkit-box-align: center;
621 -ms-flex-align: center; 621 -ms-flex-align: center;
622 align-items: center; 622 align-items: center;
623 -webkit-box-pack: center; 623 -webkit-box-pack: center;
624 -ms-flex-pack: center; 624 -ms-flex-pack: center;
625 justify-content: center; 625 justify-content: center;
626 border: 1px solid #377d87; 626 border: 1px solid #377d87;
627 color: #377d87; 627 color: #377d87;
628 border-radius: 999px; 628 border-radius: 999px;
629 width: 38px; 629 width: 38px;
630 height: 38px; 630 height: 38px;
631 } 631 }
632 .socials a:hover { 632 .socials a:hover {
633 background: #377d87; 633 background: #377d87;
634 color: #fff; 634 color: #fff;
635 } 635 }
636 .socials svg { 636 .socials svg {
637 width: 12px; 637 width: 12px;
638 height: 12px; 638 height: 12px;
639 } 639 }
640 640
641 .nls { 641 .nls {
642 display: -webkit-box; 642 display: -webkit-box;
643 display: -ms-flexbox; 643 display: -ms-flexbox;
644 display: flex; 644 display: flex;
645 color: #000; 645 color: #000;
646 text-align: left; 646 text-align: left;
647 } 647 }
648 .nls:hover { 648 .nls:hover {
649 color: #377d87; 649 color: #377d87;
650 } 650 }
651 .nls svg { 651 .nls svg {
652 width: 30px; 652 width: 30px;
653 height: 40px; 653 height: 40px;
654 } 654 }
655 @media (min-width: 768px) { 655 @media (min-width: 768px) {
656 .nls svg { 656 .nls svg {
657 width: 24px; 657 width: 24px;
658 height: 31px; 658 height: 31px;
659 } 659 }
660 } 660 }
661 .nls span { 661 .nls span {
662 width: calc(100% - 30px); 662 width: calc(100% - 30px);
663 padding-left: 12px; 663 padding-left: 12px;
664 display: -webkit-box; 664 display: -webkit-box;
665 display: -ms-flexbox; 665 display: -ms-flexbox;
666 display: flex; 666 display: flex;
667 -webkit-box-orient: vertical; 667 -webkit-box-orient: vertical;
668 -webkit-box-direction: normal; 668 -webkit-box-direction: normal;
669 -ms-flex-direction: column; 669 -ms-flex-direction: column;
670 flex-direction: column; 670 flex-direction: column;
671 -webkit-box-pack: center; 671 -webkit-box-pack: center;
672 -ms-flex-pack: center; 672 -ms-flex-pack: center;
673 justify-content: center; 673 justify-content: center;
674 font-size: 12px; 674 font-size: 12px;
675 line-height: 1.4; 675 line-height: 1.4;
676 } 676 }
677 @media (min-width: 768px) { 677 @media (min-width: 768px) {
678 .nls span { 678 .nls span {
679 width: calc(100% - 24px); 679 width: calc(100% - 24px);
680 } 680 }
681 } 681 }
682 .nls b { 682 .nls b {
683 font-weight: 400; 683 font-weight: 400;
684 } 684 }
685 685
686 .title, 686 .title,
687 h1 { 687 h1 {
688 margin: 0; 688 margin: 0;
689 font-weight: 700; 689 font-weight: 700;
690 font-size: 32px; 690 font-size: 32px;
691 } 691 }
692 @media (min-width: 768px) { 692 @media (min-width: 768px) {
693 .title, 693 .title,
694 h1 { 694 h1 {
695 font-size: 40px; 695 font-size: 40px;
696 } 696 }
697 } 697 }
698 @media (min-width: 992px) { 698 @media (min-width: 992px) {
699 .title, 699 .title,
700 h1 { 700 h1 {
701 font-size: 48px; 701 font-size: 48px;
702 } 702 }
703 } 703 }
704 @media (min-width: 1280px) { 704 @media (min-width: 1280px) {
705 .title, 705 .title,
706 h1 { 706 h1 {
707 font-size: 64px; 707 font-size: 64px;
708 } 708 }
709 } 709 }
710 710
711 .swiper-pagination { 711 .swiper-pagination {
712 display: -webkit-box; 712 display: -webkit-box;
713 display: -ms-flexbox; 713 display: -ms-flexbox;
714 display: flex; 714 display: flex;
715 -webkit-box-pack: center; 715 -webkit-box-pack: center;
716 -ms-flex-pack: center; 716 -ms-flex-pack: center;
717 justify-content: center; 717 justify-content: center;
718 -webkit-box-align: center; 718 -webkit-box-align: center;
719 -ms-flex-align: center; 719 -ms-flex-align: center;
720 align-items: center; 720 align-items: center;
721 position: static; 721 position: static;
722 margin-top: 20px; 722 margin-top: 20px;
723 gap: 8px; 723 gap: 8px;
724 } 724 }
725 @media (min-width: 768px) { 725 @media (min-width: 768px) {
726 .swiper-pagination { 726 .swiper-pagination {
727 margin-top: 30px; 727 margin-top: 30px;
728 } 728 }
729 } 729 }
730 .swiper-pagination-bullet { 730 .swiper-pagination-bullet {
731 width: 16px; 731 width: 16px;
732 height: 16px; 732 height: 16px;
733 opacity: 1; 733 opacity: 1;
734 border: 1px solid #cdcece; 734 border: 1px solid #cdcece;
735 -webkit-transition: 0.3s; 735 -webkit-transition: 0.3s;
736 transition: 0.3s; 736 transition: 0.3s;
737 background: transparent; 737 background: transparent;
738 display: -webkit-box; 738 display: -webkit-box;
739 display: -ms-flexbox; 739 display: -ms-flexbox;
740 display: flex; 740 display: flex;
741 -webkit-box-pack: center; 741 -webkit-box-pack: center;
742 -ms-flex-pack: center; 742 -ms-flex-pack: center;
743 justify-content: center; 743 justify-content: center;
744 -webkit-box-align: center; 744 -webkit-box-align: center;
745 -ms-flex-align: center; 745 -ms-flex-align: center;
746 align-items: center; 746 align-items: center;
747 margin: 0 !important; 747 margin: 0 !important;
748 } 748 }
749 .swiper-pagination-bullet:before { 749 .swiper-pagination-bullet:before {
750 content: ""; 750 content: "";
751 width: 6px; 751 width: 6px;
752 height: 6px; 752 height: 6px;
753 border-radius: 999px; 753 border-radius: 999px;
754 background: #377d87; 754 background: #377d87;
755 opacity: 0; 755 opacity: 0;
756 -webkit-transition: 0.3s; 756 -webkit-transition: 0.3s;
757 transition: 0.3s; 757 transition: 0.3s;
758 } 758 }
759 .swiper-pagination-bullet:hover { 759 .swiper-pagination-bullet:hover {
760 border-color: #377d87; 760 border-color: #377d87;
761 } 761 }
762 .swiper-pagination-bullet-active { 762 .swiper-pagination-bullet-active {
763 border-color: #377d87; 763 border-color: #377d87;
764 } 764 }
765 .swiper-pagination-bullet-active:before { 765 .swiper-pagination-bullet-active:before {
766 opacity: 1; 766 opacity: 1;
767 } 767 }
768 768
769 .navs { 769 .navs {
770 display: -webkit-box; 770 display: -webkit-box;
771 display: -ms-flexbox; 771 display: -ms-flexbox;
772 display: flex; 772 display: flex;
773 -webkit-box-align: center; 773 -webkit-box-align: center;
774 -ms-flex-align: center; 774 -ms-flex-align: center;
775 align-items: center; 775 align-items: center;
776 -webkit-box-pack: justify; 776 -webkit-box-pack: justify;
777 -ms-flex-pack: justify; 777 -ms-flex-pack: justify;
778 justify-content: space-between; 778 justify-content: space-between;
779 gap: 20px; 779 gap: 20px;
780 width: 80px; 780 width: 80px;
781 } 781 }
782 .navs button { 782 .navs button {
783 color: #377d87; 783 color: #377d87;
784 background: none; 784 background: none;
785 border: none; 785 border: none;
786 padding: 0; 786 padding: 0;
787 } 787 }
788 .navs button[disabled] { 788 .navs button[disabled] {
789 cursor: not-allowed; 789 cursor: not-allowed;
790 color: #cddee1; 790 color: #cddee1;
791 } 791 }
792 .navs svg { 792 .navs svg {
793 width: 14px; 793 width: 14px;
794 height: 28px; 794 height: 28px;
795 } 795 }
796 796
797 .select { 797 .select {
798 position: relative; 798 position: relative;
799 } 799 }
800 .select2 { 800 .select2 {
801 width: 100% !important; 801 width: 100% !important;
802 } 802 }
803 .select2-container { 803 .select2-container {
804 font-size: 12px; 804 font-size: 12px;
805 } 805 }
806 @media (min-width: 768px) { 806 @media (min-width: 768px) {
807 .select2-container { 807 .select2-container {
808 font-size: 16px; 808 font-size: 16px;
809 } 809 }
810 } 810 }
811 .select2-container--open .select2-selection { 811 .select2-container--open .select2-selection {
812 border-color: #377d87 !important; 812 border-color: #377d87 !important;
813 } 813 }
814 .select2-container--open .select2-selection__arrow svg { 814 .select2-container--open .select2-selection__arrow svg {
815 -webkit-transform: rotate(180deg); 815 -webkit-transform: rotate(180deg);
816 -ms-transform: rotate(180deg); 816 -ms-transform: rotate(180deg);
817 transform: rotate(180deg); 817 transform: rotate(180deg);
818 } 818 }
819 .select2-selection { 819 .select2-selection {
820 min-height: 30px !important; 820 min-height: 30px !important;
821 border-radius: 8px !important; 821 border-radius: 8px !important;
822 border-color: #e7e7e7 !important; 822 border-color: #e7e7e7 !important;
823 -webkit-transition: 0.3s; 823 -webkit-transition: 0.3s;
824 transition: 0.3s; 824 transition: 0.3s;
825 } 825 }
826 @media (min-width: 768px) { 826 @media (min-width: 768px) {
827 .select2-selection { 827 .select2-selection {
828 min-height: 50px !important; 828 min-height: 50px !important;
829 } 829 }
830 } 830 }
831 .select2-selection__rendered { 831 .select2-selection__rendered {
832 line-height: 28px !important; 832 line-height: 28px !important;
833 padding: 0 30px 0 10px !important; 833 padding: 0 30px 0 10px !important;
834 } 834 }
835 @media (min-width: 768px) { 835 @media (min-width: 768px) {
836 .select2-selection__rendered { 836 .select2-selection__rendered {
837 line-height: 48px !important; 837 line-height: 48px !important;
838 padding: 0 46px 0 20px !important; 838 padding: 0 46px 0 20px !important;
839 } 839 }
840 } 840 }
841 .select2-selection--multiple .select2-selection__rendered { 841 .select2-selection--multiple .select2-selection__rendered {
842 display: -webkit-box !important; 842 display: -webkit-box !important;
843 display: -ms-flexbox !important; 843 display: -ms-flexbox !important;
844 display: flex !important; 844 display: flex !important;
845 -webkit-box-align: center; 845 -webkit-box-align: center;
846 -ms-flex-align: center; 846 -ms-flex-align: center;
847 align-items: center; 847 align-items: center;
848 -ms-flex-wrap: wrap; 848 -ms-flex-wrap: wrap;
849 flex-wrap: wrap; 849 flex-wrap: wrap;
850 gap: 10px; 850 gap: 10px;
851 padding-top: 10px !important; 851 padding-top: 10px !important;
852 padding-bottom: 10px !important; 852 padding-bottom: 10px !important;
853 } 853 }
854 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice { 854 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
855 margin: 0; 855 margin: 0;
856 } 856 }
857 .select2-selection__arrow { 857 .select2-selection__arrow {
858 top: 0 !important; 858 top: 0 !important;
859 right: 0 !important; 859 right: 0 !important;
860 width: 30px !important; 860 width: 30px !important;
861 height: 100% !important; 861 height: 100% !important;
862 display: -webkit-box; 862 display: -webkit-box;
863 display: -ms-flexbox; 863 display: -ms-flexbox;
864 display: flex; 864 display: flex;
865 -webkit-box-pack: center; 865 -webkit-box-pack: center;
866 -ms-flex-pack: center; 866 -ms-flex-pack: center;
867 justify-content: center; 867 justify-content: center;
868 -webkit-box-align: center; 868 -webkit-box-align: center;
869 -ms-flex-align: center; 869 -ms-flex-align: center;
870 align-items: center; 870 align-items: center;
871 color: #377d87; 871 color: #377d87;
872 } 872 }
873 @media (min-width: 768px) { 873 @media (min-width: 768px) {
874 .select2-selection__arrow { 874 .select2-selection__arrow {
875 width: 50px !important; 875 width: 50px !important;
876 } 876 }
877 } 877 }
878 .select2-selection__arrow svg { 878 .select2-selection__arrow svg {
879 width: 12px; 879 width: 12px;
880 height: 12px; 880 height: 12px;
881 -webkit-transition: 0.3s; 881 -webkit-transition: 0.3s;
882 transition: 0.3s; 882 transition: 0.3s;
883 } 883 }
884 @media (min-width: 768px) { 884 @media (min-width: 768px) {
885 .select2-selection__arrow svg { 885 .select2-selection__arrow svg {
886 width: 14px; 886 width: 14px;
887 height: 14px; 887 height: 14px;
888 } 888 }
889 } 889 }
890 .select2-selection__choice { 890 .select2-selection__choice {
891 display: -webkit-box; 891 display: -webkit-box;
892 display: -ms-flexbox; 892 display: -ms-flexbox;
893 display: flex; 893 display: flex;
894 -webkit-box-orient: horizontal; 894 -webkit-box-orient: horizontal;
895 -webkit-box-direction: reverse; 895 -webkit-box-direction: reverse;
896 -ms-flex-direction: row-reverse; 896 -ms-flex-direction: row-reverse;
897 flex-direction: row-reverse; 897 flex-direction: row-reverse;
898 -webkit-box-align: center; 898 -webkit-box-align: center;
899 -ms-flex-align: center; 899 -ms-flex-align: center;
900 align-items: center; 900 align-items: center;
901 -webkit-box-pack: center; 901 -webkit-box-pack: center;
902 -ms-flex-pack: center; 902 -ms-flex-pack: center;
903 justify-content: center; 903 justify-content: center;
904 gap: 4px; 904 gap: 4px;
905 padding: 0 4px 0 6px !important; 905 padding: 0 4px 0 6px !important;
906 background: #377d87 !important; 906 background: #377d87 !important;
907 border: none !important; 907 border: none !important;
908 border-radius: 6px !important; 908 border-radius: 6px !important;
909 line-height: 1 !important; 909 line-height: 1 !important;
910 color: #fff; 910 color: #fff;
911 height: 24px; 911 height: 24px;
912 } 912 }
913 @media (min-width: 768px) { 913 @media (min-width: 768px) {
914 .select2-selection__choice { 914 .select2-selection__choice {
915 height: 32px; 915 height: 32px;
916 gap: 6px; 916 gap: 6px;
917 padding: 0 6px 0 10px !important; 917 padding: 0 6px 0 10px !important;
918 border-radius: 8px !important; 918 border-radius: 8px !important;
919 } 919 }
920 } 920 }
921 .select2-selection__choice__remove { 921 .select2-selection__choice__remove {
922 width: 14px; 922 width: 14px;
923 height: 14px; 923 height: 14px;
924 padding-top: 4px; 924 padding-top: 4px;
925 display: -webkit-box !important; 925 display: -webkit-box !important;
926 display: -ms-flexbox !important; 926 display: -ms-flexbox !important;
927 display: flex !important; 927 display: flex !important;
928 -webkit-box-pack: center; 928 -webkit-box-pack: center;
929 -ms-flex-pack: center; 929 -ms-flex-pack: center;
930 justify-content: center; 930 justify-content: center;
931 -webkit-box-align: center; 931 -webkit-box-align: center;
932 -ms-flex-align: center; 932 -ms-flex-align: center;
933 align-items: center; 933 align-items: center;
934 color: #fff !important; 934 color: #fff !important;
935 font-weight: 400 !important; 935 font-weight: 400 !important;
936 font-size: 26px; 936 font-size: 26px;
937 } 937 }
938 .select2-search { 938 .select2-search {
939 display: none; 939 display: none;
940 } 940 }
941 .select2-dropdown { 941 .select2-dropdown {
942 z-index: 99999; 942 z-index: 99999;
943 border: none; 943 border: none;
944 border-radius: 0; 944 border-radius: 0;
945 background: none; 945 background: none;
946 padding: 5px 0; 946 padding: 5px 0;
947 } 947 }
948 @media (min-width: 768px) { 948 @media (min-width: 768px) {
949 .select2-dropdown { 949 .select2-dropdown {
950 padding: 10px 0; 950 padding: 10px 0;
951 } 951 }
952 } 952 }
953 .select2-results { 953 .select2-results {
954 background: #fff; 954 background: #fff;
955 border-radius: 8px; 955 border-radius: 8px;
956 border: 1px solid #377d87; 956 border: 1px solid #377d87;
957 overflow: hidden; 957 overflow: hidden;
958 } 958 }
959 @media (min-width: 768px) { 959 @media (min-width: 768px) {
960 .select2-results__option { 960 .select2-results__option {
961 padding: 10px 14px; 961 padding: 10px 14px;
962 } 962 }
963 } 963 }
964 .select2-results__option--highlighted { 964 .select2-results__option--highlighted {
965 background: #377d87 !important; 965 background: #377d87 !important;
966 } 966 }
967 @media (min-width: 768px) { 967 @media (min-width: 768px) {
968 .select_search .select2-selection__rendered { 968 .select_search .select2-selection__rendered {
969 padding-left: 60px !important; 969 padding-left: 60px !important;
970 } 970 }
971 } 971 }
972 .select_search .select__icon { 972 .select_search .select__icon {
973 display: none; 973 display: none;
974 height: 28px; 974 height: 28px;
975 -webkit-box-align: center; 975 -webkit-box-align: center;
976 -ms-flex-align: center; 976 -ms-flex-align: center;
977 align-items: center; 977 align-items: center;
978 padding-right: 12px; 978 padding-right: 12px;
979 z-index: 2; 979 z-index: 2;
980 position: absolute; 980 position: absolute;
981 top: 50%; 981 top: 50%;
982 left: 15px; 982 left: 15px;
983 margin-top: -14px; 983 margin-top: -14px;
984 } 984 }
985 @media (min-width: 768px) { 985 @media (min-width: 768px) {
986 .select_search .select__icon { 986 .select_search .select__icon {
987 display: -webkit-box; 987 display: -webkit-box;
988 display: -ms-flexbox; 988 display: -ms-flexbox;
989 display: flex; 989 display: flex;
990 } 990 }
991 } 991 }
992 .select_search .select__icon:after { 992 .select_search .select__icon:after {
993 content: ""; 993 content: "";
994 width: 1px; 994 width: 1px;
995 height: 100%; 995 height: 100%;
996 border-radius: 999px; 996 border-radius: 999px;
997 position: absolute; 997 position: absolute;
998 top: 0; 998 top: 0;
999 right: 0; 999 right: 0;
1000 background: #cecece; 1000 background: #cecece;
1001 } 1001 }
1002 .select_search .select__icon svg { 1002 .select_search .select__icon svg {
1003 color: #9c9d9d; 1003 color: #9c9d9d;
1004 width: 20px; 1004 width: 20px;
1005 height: 20px; 1005 height: 20px;
1006 } 1006 }
1007 1007
1008 .form-group { 1008 .form-group {
1009 display: -webkit-box; 1009 display: -webkit-box;
1010 display: -ms-flexbox; 1010 display: -ms-flexbox;
1011 display: flex; 1011 display: flex;
1012 -webkit-box-orient: vertical; 1012 -webkit-box-orient: vertical;
1013 -webkit-box-direction: normal; 1013 -webkit-box-direction: normal;
1014 -ms-flex-direction: column; 1014 -ms-flex-direction: column;
1015 flex-direction: column; 1015 flex-direction: column;
1016 gap: 4px; 1016 gap: 4px;
1017 } 1017 }
1018 .form-group__label { 1018 .form-group__label {
1019 font-size: 12px; 1019 font-size: 12px;
1020 } 1020 }
1021 @media (min-width: 768px) { 1021 @media (min-width: 768px) {
1022 .form-group__label { 1022 .form-group__label {
1023 font-size: 16px; 1023 font-size: 16px;
1024 } 1024 }
1025 } 1025 }
1026 .form-group__item { 1026 .form-group__item {
1027 display: -webkit-box; 1027 display: -webkit-box;
1028 display: -ms-flexbox; 1028 display: -ms-flexbox;
1029 display: flex; 1029 display: flex;
1030 -webkit-box-orient: vertical; 1030 -webkit-box-orient: vertical;
1031 -webkit-box-direction: normal; 1031 -webkit-box-direction: normal;
1032 -ms-flex-direction: column; 1032 -ms-flex-direction: column;
1033 flex-direction: column; 1033 flex-direction: column;
1034 position: relative; 1034 position: relative;
1035 } 1035 }
1036 .form-group__item-icon { 1036 .form-group__item-icon {
1037 width: 16px; 1037 width: 16px;
1038 aspect-ratio: 1/1; 1038 aspect-ratio: 1/1;
1039 z-index: 2; 1039 z-index: 2;
1040 position: absolute; 1040 position: absolute;
1041 top: 50%; 1041 top: 50%;
1042 right: 4px; 1042 right: 4px;
1043 -webkit-transform: translate(0, -50%); 1043 -webkit-transform: translate(0, -50%);
1044 -ms-transform: translate(0, -50%); 1044 -ms-transform: translate(0, -50%);
1045 transform: translate(0, -50%); 1045 transform: translate(0, -50%);
1046 display: -webkit-box; 1046 display: -webkit-box;
1047 display: -ms-flexbox; 1047 display: -ms-flexbox;
1048 display: flex; 1048 display: flex;
1049 -webkit-box-pack: center; 1049 -webkit-box-pack: center;
1050 -ms-flex-pack: center; 1050 -ms-flex-pack: center;
1051 justify-content: center; 1051 justify-content: center;
1052 -webkit-box-align: center; 1052 -webkit-box-align: center;
1053 -ms-flex-align: center; 1053 -ms-flex-align: center;
1054 align-items: center; 1054 align-items: center;
1055 color: #377d87; 1055 color: #377d87;
1056 } 1056 }
1057 @media (min-width: 768px) { 1057 @media (min-width: 768px) {
1058 .form-group__item-icon { 1058 .form-group__item-icon {
1059 width: 22px; 1059 width: 22px;
1060 right: 20px; 1060 right: 20px;
1061 } 1061 }
1062 } 1062 }
1063 .form-group__item-icon svg { 1063 .form-group__item-icon svg {
1064 width: 14px; 1064 width: 14px;
1065 aspect-ratio: 1/1; 1065 aspect-ratio: 1/1;
1066 } 1066 }
1067 @media (min-width: 768px) { 1067 @media (min-width: 768px) {
1068 .form-group__item-icon svg { 1068 .form-group__item-icon svg {
1069 width: 20px; 1069 width: 20px;
1070 } 1070 }
1071 } 1071 }
1072 .form-group__item-icon + .input { 1072 .form-group__item-icon + .input {
1073 padding-right: 24px; 1073 padding-right: 24px;
1074 } 1074 }
1075 @media (min-width: 768px) { 1075 @media (min-width: 768px) {
1076 .form-group__item-icon + .input { 1076 .form-group__item-icon + .input {
1077 padding-right: 60px; 1077 padding-right: 60px;
1078 } 1078 }
1079 } 1079 }
1080 1080
1081 .input { 1081 .input {
1082 display: block; 1082 display: block;
1083 height: 30px; 1083 height: 30px;
1084 border: 1px solid #cecece; 1084 border: 1px solid #cecece;
1085 background: #fff; 1085 background: #fff;
1086 font-size: 12px; 1086 font-size: 12px;
1087 border-radius: 8px; 1087 border-radius: 8px;
1088 padding: 0 10px; 1088 padding: 0 10px;
1089 color: #000; 1089 color: #000;
1090 -webkit-transition: 0.3s; 1090 -webkit-transition: 0.3s;
1091 transition: 0.3s; 1091 transition: 0.3s;
1092 position: relative; 1092 position: relative;
1093 z-index: 1; 1093 z-index: 1;
1094 } 1094 }
1095 @media (min-width: 768px) { 1095 @media (min-width: 768px) {
1096 .input { 1096 .input {
1097 padding: 0 20px; 1097 padding: 0 20px;
1098 height: 44px; 1098 height: 44px;
1099 font-size: 16px; 1099 font-size: 16px;
1100 } 1100 }
1101 } 1101 }
1102 .input:focus { 1102 .input:focus {
1103 border-color: #377d87; 1103 border-color: #377d87;
1104 } 1104 }
1105 .input[disabled] { 1105 .input[disabled] {
1106 color: #9c9d9d; 1106 color: #9c9d9d;
1107 background: #e7e7e7; 1107 background: #e7e7e7;
1108 } 1108 }
1109 .input[type=date] { 1109 .input[type=date] {
1110 text-transform: uppercase; 1110 text-transform: uppercase;
1111 } 1111 }
1112 1112
1113 .textarea { 1113 .textarea {
1114 resize: none; 1114 resize: none;
1115 display: block; 1115 display: block;
1116 width: 100%; 1116 width: 100%;
1117 border-radius: 8px; 1117 border-radius: 8px;
1118 border: 1px solid #cecece; 1118 border: 1px solid #cecece;
1119 background: #fff; 1119 background: #fff;
1120 -webkit-transition: 0.3s; 1120 -webkit-transition: 0.3s;
1121 transition: 0.3s; 1121 transition: 0.3s;
1122 font-size: 12px; 1122 font-size: 12px;
1123 line-height: 1.4; 1123 line-height: 1.4;
1124 padding: 10px; 1124 padding: 10px;
1125 aspect-ratio: 8/3; 1125 aspect-ratio: 8/3;
1126 max-height: 250px; 1126 max-height: 250px;
1127 } 1127 }
1128 @media (min-width: 768px) { 1128 @media (min-width: 768px) {
1129 .textarea { 1129 .textarea {
1130 padding: 20px; 1130 padding: 20px;
1131 font-size: 16px; 1131 font-size: 16px;
1132 height: 280px; 1132 height: 280px;
1133 } 1133 }
1134 } 1134 }
1135 .textarea:focus { 1135 .textarea:focus {
1136 border-color: #377d87; 1136 border-color: #377d87;
1137 } 1137 }
1138 1138
1139 .button { 1139 .button {
1140 display: -webkit-box; 1140 display: -webkit-box;
1141 display: -ms-flexbox; 1141 display: -ms-flexbox;
1142 display: flex; 1142 display: flex;
1143 -webkit-box-pack: center; 1143 -webkit-box-pack: center;
1144 -ms-flex-pack: center; 1144 -ms-flex-pack: center;
1145 justify-content: center; 1145 justify-content: center;
1146 -webkit-box-align: center; 1146 -webkit-box-align: center;
1147 -ms-flex-align: center; 1147 -ms-flex-align: center;
1148 align-items: center; 1148 align-items: center;
1149 color: #fff; 1149 color: #fff;
1150 background: #377d87; 1150 background: #377d87;
1151 height: 30px; 1151 height: 30px;
1152 border-radius: 8px; 1152 border-radius: 8px;
1153 padding: 0 12px; 1153 padding: 0 12px;
1154 border: 1px solid #377d87; 1154 border: 1px solid #377d87;
1155 font-weight: 700; 1155 font-weight: 700;
1156 font-size: 12px; 1156 font-size: 12px;
1157 text-align: center; 1157 text-align: center;
1158 line-height: 1; 1158 line-height: 1;
1159 gap: 6px; 1159 gap: 6px;
1160 -webkit-transition: 0.3s; 1160 -webkit-transition: 0.3s;
1161 transition: 0.3s; 1161 transition: 0.3s;
1162 cursor: pointer; 1162 cursor: pointer;
1163 } 1163 }
1164 @media (min-width: 768px) { 1164 @media (min-width: 768px) {
1165 .button { 1165 .button {
1166 padding: 0 24px; 1166 padding: 0 24px;
1167 font-size: 16px; 1167 font-size: 16px;
1168 height: 44px; 1168 height: 44px;
1169 gap: 12px; 1169 gap: 12px;
1170 } 1170 }
1171 } 1171 }
1172 @media (min-width: 992px) { 1172 @media (min-width: 992px) {
1173 .button { 1173 .button {
1174 padding: 0 36px; 1174 padding: 0 36px;
1175 } 1175 }
1176 } 1176 }
1177 .button:hover { 1177 .button:hover {
1178 background: transparent; 1178 background: transparent;
1179 color: #377d87; 1179 color: #377d87;
1180 } 1180 }
1181 .button img, 1181 .button img,
1182 .button svg { 1182 .button svg {
1183 width: 12px; 1183 width: 12px;
1184 height: 12px; 1184 height: 12px;
1185 } 1185 }
1186 @media (min-width: 768px) { 1186 @media (min-width: 768px) {
1187 .button img, 1187 .button img,
1188 .button svg { 1188 .button svg {
1189 width: 18px; 1189 width: 18px;
1190 height: 18px; 1190 height: 18px;
1191 } 1191 }
1192 } 1192 }
1193 .button_more span + span { 1193 .button_more span + span {
1194 display: none; 1194 display: none;
1195 } 1195 }
1196 .button_more.active span { 1196 .button_more.active span {
1197 display: none; 1197 display: none;
1198 } 1198 }
1199 .button_more.active span + span { 1199 .button_more.active span + span {
1200 display: block; 1200 display: block;
1201 } 1201 }
1202 .button_light { 1202 .button_light {
1203 background: transparent; 1203 background: transparent;
1204 color: #377d87; 1204 color: #377d87;
1205 } 1205 }
1206 .button_light:hover { 1206 .button_light:hover {
1207 background: #377d87; 1207 background: #377d87;
1208 color: #fff; 1208 color: #fff;
1209 } 1209 }
1210 .button_whited { 1210 .button_whited {
1211 background: #fff; 1211 background: #fff;
1212 color: #377d87; 1212 color: #377d87;
1213 border-color: #fff; 1213 border-color: #fff;
1214 } 1214 }
1215 .button_whited:hover { 1215 .button_whited:hover {
1216 background: #377d87; 1216 background: #377d87;
1217 color: #fff; 1217 color: #fff;
1218 } 1218 }
1219 1219
1220 .search { 1220 .search {
1221 width: 100%; 1221 width: 100%;
1222 position: relative; 1222 position: relative;
1223 background: #fff; 1223 background: #fff;
1224 border-radius: 8px; 1224 border-radius: 8px;
1225 } 1225 }
1226 .search span { 1226 .search span {
1227 display: none; 1227 display: none;
1228 height: 28px; 1228 height: 28px;
1229 -webkit-box-align: center; 1229 -webkit-box-align: center;
1230 -ms-flex-align: center; 1230 -ms-flex-align: center;
1231 align-items: center; 1231 align-items: center;
1232 padding-right: 12px; 1232 padding-right: 12px;
1233 z-index: 1; 1233 z-index: 1;
1234 position: absolute; 1234 position: absolute;
1235 top: 50%; 1235 top: 50%;
1236 left: 15px; 1236 left: 15px;
1237 margin-top: -14px; 1237 margin-top: -14px;
1238 } 1238 }
1239 @media (min-width: 768px) { 1239 @media (min-width: 768px) {
1240 .search span { 1240 .search span {
1241 display: -webkit-box; 1241 display: -webkit-box;
1242 display: -ms-flexbox; 1242 display: -ms-flexbox;
1243 display: flex; 1243 display: flex;
1244 } 1244 }
1245 } 1245 }
1246 .search span:after { 1246 .search span:after {
1247 content: ""; 1247 content: "";
1248 width: 1px; 1248 width: 1px;
1249 height: 100%; 1249 height: 100%;
1250 border-radius: 999px; 1250 border-radius: 999px;
1251 position: absolute; 1251 position: absolute;
1252 top: 0; 1252 top: 0;
1253 right: 0; 1253 right: 0;
1254 background: #cecece; 1254 background: #cecece;
1255 } 1255 }
1256 .search span svg { 1256 .search span svg {
1257 color: #9c9d9d; 1257 color: #9c9d9d;
1258 width: 20px; 1258 width: 20px;
1259 height: 20px; 1259 height: 20px;
1260 } 1260 }
1261 .search input { 1261 .search input {
1262 width: 100%; 1262 width: 100%;
1263 padding-right: 150px; 1263 padding-right: 150px;
1264 position: relative; 1264 position: relative;
1265 z-index: 2; 1265 z-index: 2;
1266 background: none; 1266 background: none;
1267 } 1267 }
1268 @media (min-width: 768px) { 1268 @media (min-width: 768px) {
1269 .search input { 1269 .search input {
1270 padding-left: 60px; 1270 padding-left: 60px;
1271 padding-right: 220px; 1271 padding-right: 220px;
1272 } 1272 }
1273 } 1273 }
1274 .search button { 1274 .search button {
1275 width: 140px; 1275 width: 140px;
1276 position: absolute; 1276 position: absolute;
1277 padding: 0; 1277 padding: 0;
1278 top: 0; 1278 top: 0;
1279 right: 0; 1279 right: 0;
1280 z-index: 3; 1280 z-index: 3;
1281 } 1281 }
1282 @media (min-width: 768px) { 1282 @media (min-width: 768px) {
1283 .search button { 1283 .search button {
1284 width: 200px; 1284 width: 200px;
1285 } 1285 }
1286 } 1286 }
1287 1287
1288 .breadcrumbs { 1288 .breadcrumbs {
1289 display: -webkit-box; 1289 display: -webkit-box;
1290 display: -ms-flexbox; 1290 display: -ms-flexbox;
1291 display: flex; 1291 display: flex;
1292 -webkit-box-align: center; 1292 -webkit-box-align: center;
1293 -ms-flex-align: center; 1293 -ms-flex-align: center;
1294 align-items: center; 1294 align-items: center;
1295 -ms-flex-wrap: wrap; 1295 -ms-flex-wrap: wrap;
1296 flex-wrap: wrap; 1296 flex-wrap: wrap;
1297 gap: 12px 6px; 1297 gap: 12px 6px;
1298 margin: 0; 1298 margin: 0;
1299 padding: 0; 1299 padding: 0;
1300 font-size: 11px; 1300 font-size: 11px;
1301 color: #cecece; 1301 color: #cecece;
1302 line-height: 1; 1302 line-height: 1;
1303 } 1303 }
1304 @media (min-width: 992px) { 1304 @media (min-width: 992px) {
1305 .breadcrumbs { 1305 .breadcrumbs {
1306 font-size: 13px; 1306 font-size: 13px;
1307 } 1307 }
1308 } 1308 }
1309 @media (min-width: 1280px) { 1309 @media (min-width: 1280px) {
1310 .breadcrumbs { 1310 .breadcrumbs {
1311 font-size: 16px; 1311 font-size: 16px;
1312 } 1312 }
1313 } 1313 }
1314 .breadcrumbs li { 1314 .breadcrumbs li {
1315 display: -webkit-box; 1315 display: -webkit-box;
1316 display: -ms-flexbox; 1316 display: -ms-flexbox;
1317 display: flex; 1317 display: flex;
1318 -webkit-box-align: center; 1318 -webkit-box-align: center;
1319 -ms-flex-align: center; 1319 -ms-flex-align: center;
1320 align-items: center; 1320 align-items: center;
1321 gap: 6px; 1321 gap: 6px;
1322 } 1322 }
1323 .breadcrumbs li:before { 1323 .breadcrumbs li:before {
1324 content: ""; 1324 content: "";
1325 width: 4px; 1325 width: 4px;
1326 height: 4px; 1326 height: 4px;
1327 background: #cecece; 1327 background: #cecece;
1328 border-radius: 999px; 1328 border-radius: 999px;
1329 position: relative; 1329 position: relative;
1330 top: -1px; 1330 top: -1px;
1331 } 1331 }
1332 .breadcrumbs li:first-child:before { 1332 .breadcrumbs li:first-child:before {
1333 display: none; 1333 display: none;
1334 } 1334 }
1335 .breadcrumbs li:last-child:before { 1335 .breadcrumbs li:last-child:before {
1336 background: #377d87; 1336 background: #377d87;
1337 } 1337 }
1338 .breadcrumbs a:hover { 1338 .breadcrumbs a:hover {
1339 color: #377d87; 1339 color: #377d87;
1340 } 1340 }
1341 .breadcrumbs b { 1341 .breadcrumbs b {
1342 color: #377d87; 1342 color: #377d87;
1343 font-weight: 700; 1343 font-weight: 700;
1344 } 1344 }
1345 1345
1346 .pagination { 1346 .pagination {
1347 display: -webkit-box; 1347 display: -webkit-box;
1348 display: -ms-flexbox; 1348 display: -ms-flexbox;
1349 display: flex; 1349 display: flex;
1350 -webkit-box-align: center; 1350 -webkit-box-align: center;
1351 -ms-flex-align: center; 1351 -ms-flex-align: center;
1352 align-items: center; 1352 align-items: center;
1353 -webkit-box-pack: center; 1353 -webkit-box-pack: center;
1354 -ms-flex-pack: center; 1354 -ms-flex-pack: center;
1355 justify-content: center; 1355 justify-content: center;
1356 -ms-flex-wrap: wrap; 1356 -ms-flex-wrap: wrap;
1357 flex-wrap: wrap; 1357 flex-wrap: wrap;
1358 line-height: 1; 1358 line-height: 1;
1359 color: #000; 1359 color: #000;
1360 font-size: 12px; 1360 font-size: 12px;
1361 margin: 0 auto; 1361 margin: 0 auto;
1362 } 1362 }
1363 @media (min-width: 768px) { 1363 @media (min-width: 768px) {
1364 .pagination { 1364 .pagination {
1365 font-size: 14px; 1365 font-size: 14px;
1366 gap: 3px; 1366 gap: 3px;
1367 } 1367 }
1368 } 1368 }
1369 .pagination__item { 1369 .pagination__item {
1370 width: 40px; 1370 width: 40px;
1371 height: 40px; 1371 height: 40px;
1372 display: -webkit-box; 1372 display: -webkit-box;
1373 display: -ms-flexbox; 1373 display: -ms-flexbox;
1374 display: flex; 1374 display: flex;
1375 -webkit-box-pack: center; 1375 -webkit-box-pack: center;
1376 -ms-flex-pack: center; 1376 -ms-flex-pack: center;
1377 justify-content: center; 1377 justify-content: center;
1378 -webkit-box-align: center; 1378 -webkit-box-align: center;
1379 -ms-flex-align: center; 1379 -ms-flex-align: center;
1380 align-items: center; 1380 align-items: center;
1381 background: none; 1381 background: none;
1382 padding: 0; 1382 padding: 0;
1383 border: 1px solid transparent; 1383 border: 1px solid transparent;
1384 border-radius: 8px; 1384 border-radius: 8px;
1385 } 1385 }
1386 .pagination__item:hover { 1386 .pagination__item:hover {
1387 -webkit-transition: 0s; 1387 -webkit-transition: 0s;
1388 transition: 0s; 1388 transition: 0s;
1389 color: #377d87; 1389 color: #377d87;
1390 font-weight: 700; 1390 font-weight: 700;
1391 } 1391 }
1392 .pagination__item.active { 1392 .pagination__item.active {
1393 font-weight: 700; 1393 font-weight: 700;
1394 color: #fff; 1394 color: #fff;
1395 background: #377d87; 1395 background: #377d87;
1396 border-color: #377d87; 1396 border-color: #377d87;
1397 } 1397 }
1398 .pagination__dots { 1398 .pagination__dots {
1399 width: 40px; 1399 width: 40px;
1400 height: 40px; 1400 height: 40px;
1401 display: -webkit-box; 1401 display: -webkit-box;
1402 display: -ms-flexbox; 1402 display: -ms-flexbox;
1403 display: flex; 1403 display: flex;
1404 -webkit-box-pack: center; 1404 -webkit-box-pack: center;
1405 -ms-flex-pack: center; 1405 -ms-flex-pack: center;
1406 justify-content: center; 1406 justify-content: center;
1407 -webkit-box-align: center; 1407 -webkit-box-align: center;
1408 -ms-flex-align: center; 1408 -ms-flex-align: center;
1409 align-items: center; 1409 align-items: center;
1410 } 1410 }
1411 .pagination__dots svg { 1411 .pagination__dots svg {
1412 width: 15px; 1412 width: 15px;
1413 height: 15px; 1413 height: 15px;
1414 } 1414 }
1415 .pagination__nav { 1415 .pagination__nav {
1416 width: 40px; 1416 width: 40px;
1417 height: 40px; 1417 height: 40px;
1418 display: none; 1418 display: none;
1419 -webkit-box-pack: center; 1419 -webkit-box-pack: center;
1420 -ms-flex-pack: center; 1420 -ms-flex-pack: center;
1421 justify-content: center; 1421 justify-content: center;
1422 -webkit-box-align: center; 1422 -webkit-box-align: center;
1423 -ms-flex-align: center; 1423 -ms-flex-align: center;
1424 align-items: center; 1424 align-items: center;
1425 background: none; 1425 background: none;
1426 padding: 0; 1426 padding: 0;
1427 border: 1px solid #cddee1; 1427 border: 1px solid #cddee1;
1428 color: #377d87; 1428 color: #377d87;
1429 border-radius: 8px; 1429 border-radius: 8px;
1430 } 1430 }
1431 @media (min-width: 768px) { 1431 @media (min-width: 768px) {
1432 .pagination__nav { 1432 .pagination__nav {
1433 display: -webkit-box; 1433 display: -webkit-box;
1434 display: -ms-flexbox; 1434 display: -ms-flexbox;
1435 display: flex; 1435 display: flex;
1436 } 1436 }
1437 } 1437 }
1438 .pagination__nav:hover { 1438 .pagination__nav:hover {
1439 border-color: #377d87; 1439 border-color: #377d87;
1440 background: #377d87; 1440 background: #377d87;
1441 color: #fff; 1441 color: #fff;
1442 } 1442 }
1443 .pagination__nav svg { 1443 .pagination__nav svg {
1444 width: 10px; 1444 width: 10px;
1445 height: 10px; 1445 height: 10px;
1446 } 1446 }
1447 .pagination__nav_prev { 1447 .pagination__nav_prev {
1448 margin-right: 37px; 1448 margin-right: 37px;
1449 } 1449 }
1450 .pagination__nav_prev svg { 1450 .pagination__nav_prev svg {
1451 -webkit-transform: rotate(180deg); 1451 -webkit-transform: rotate(180deg);
1452 -ms-transform: rotate(180deg); 1452 -ms-transform: rotate(180deg);
1453 transform: rotate(180deg); 1453 transform: rotate(180deg);
1454 } 1454 }
1455 .pagination__nav_next { 1455 .pagination__nav_next {
1456 margin-left: 37px; 1456 margin-left: 37px;
1457 } 1457 }
1458 1458
1459 .filters { 1459 .filters {
1460 display: -webkit-box; 1460 display: -webkit-box;
1461 display: -ms-flexbox; 1461 display: -ms-flexbox;
1462 display: flex; 1462 display: flex;
1463 -webkit-box-orient: vertical; 1463 -webkit-box-orient: vertical;
1464 -webkit-box-direction: normal; 1464 -webkit-box-direction: normal;
1465 -ms-flex-direction: column; 1465 -ms-flex-direction: column;
1466 flex-direction: column; 1466 flex-direction: column;
1467 gap: 10px; 1467 gap: 10px;
1468 } 1468 }
1469 @media (min-width: 768px) { 1469 @media (min-width: 768px) {
1470 .filters { 1470 .filters {
1471 -webkit-box-orient: horizontal; 1471 -webkit-box-orient: horizontal;
1472 -webkit-box-direction: normal; 1472 -webkit-box-direction: normal;
1473 -ms-flex-direction: row; 1473 -ms-flex-direction: row;
1474 flex-direction: row; 1474 flex-direction: row;
1475 -webkit-box-align: center; 1475 -webkit-box-align: center;
1476 -ms-flex-align: center; 1476 -ms-flex-align: center;
1477 align-items: center; 1477 align-items: center;
1478 -webkit-box-pack: justify; 1478 -webkit-box-pack: justify;
1479 -ms-flex-pack: justify; 1479 -ms-flex-pack: justify;
1480 justify-content: space-between; 1480 justify-content: space-between;
1481 } 1481 }
1482 } 1482 }
1483 .filters__label { 1483 .filters__label {
1484 color: #377d87; 1484 color: #377d87;
1485 font-size: 12px; 1485 font-size: 12px;
1486 font-weight: 700; 1486 font-weight: 700;
1487 } 1487 }
1488 @media (min-width: 768px) { 1488 @media (min-width: 768px) {
1489 .filters__label { 1489 .filters__label {
1490 font-size: 16px; 1490 font-size: 16px;
1491 } 1491 }
1492 } 1492 }
1493 @media (min-width: 992px) { 1493 @media (min-width: 992px) {
1494 .filters__label { 1494 .filters__label {
1495 font-size: 18px; 1495 font-size: 18px;
1496 } 1496 }
1497 } 1497 }
1498 .filters__body { 1498 .filters__body {
1499 display: -webkit-box; 1499 display: -webkit-box;
1500 display: -ms-flexbox; 1500 display: -ms-flexbox;
1501 display: flex; 1501 display: flex;
1502 -webkit-box-orient: vertical; 1502 -webkit-box-orient: vertical;
1503 -webkit-box-direction: normal; 1503 -webkit-box-direction: normal;
1504 -ms-flex-direction: column; 1504 -ms-flex-direction: column;
1505 flex-direction: column; 1505 flex-direction: column;
1506 } 1506 }
1507 @media (min-width: 768px) { 1507 @media (min-width: 768px) {
1508 .filters__body { 1508 .filters__body {
1509 -webkit-box-orient: horizontal; 1509 -webkit-box-orient: horizontal;
1510 -webkit-box-direction: normal; 1510 -webkit-box-direction: normal;
1511 -ms-flex-direction: row; 1511 -ms-flex-direction: row;
1512 flex-direction: row; 1512 flex-direction: row;
1513 -webkit-box-align: center; 1513 -webkit-box-align: center;
1514 -ms-flex-align: center; 1514 -ms-flex-align: center;
1515 align-items: center; 1515 align-items: center;
1516 } 1516 }
1517 } 1517 }
1518 @media (min-width: 768px) { 1518 @media (min-width: 768px) {
1519 .filters__select { 1519 .filters__select {
1520 width: 250px; 1520 width: 250px;
1521 } 1521 }
1522 } 1522 }
1523 @media (min-width: 992px) { 1523 @media (min-width: 992px) {
1524 .filters__select { 1524 .filters__select {
1525 width: 310px; 1525 width: 310px;
1526 } 1526 }
1527 } 1527 }
1528 .filters__item { 1528 .filters__item {
1529 display: none; 1529 display: none;
1530 -webkit-box-pack: center; 1530 -webkit-box-pack: center;
1531 -ms-flex-pack: center; 1531 -ms-flex-pack: center;
1532 justify-content: center; 1532 justify-content: center;
1533 -webkit-box-align: center; 1533 -webkit-box-align: center;
1534 -ms-flex-align: center; 1534 -ms-flex-align: center;
1535 align-items: center; 1535 align-items: center;
1536 width: 50px; 1536 width: 50px;
1537 height: 50px; 1537 height: 50px;
1538 padding: 0; 1538 padding: 0;
1539 background: #fff; 1539 background: #fff;
1540 border: 1px solid #377d87; 1540 border: 1px solid #377d87;
1541 color: #377d87; 1541 color: #377d87;
1542 border-radius: 8px; 1542 border-radius: 8px;
1543 margin-left: 20px; 1543 margin-left: 20px;
1544 } 1544 }
1545 @media (min-width: 768px) { 1545 @media (min-width: 768px) {
1546 .filters__item { 1546 .filters__item {
1547 display: -webkit-box; 1547 display: -webkit-box;
1548 display: -ms-flexbox; 1548 display: -ms-flexbox;
1549 display: flex; 1549 display: flex;
1550 } 1550 }
1551 } 1551 }
1552 .filters__item svg { 1552 .filters__item svg {
1553 width: 24px; 1553 width: 24px;
1554 height: 24px; 1554 height: 24px;
1555 } 1555 }
1556 .filters__item.active { 1556 .filters__item.active {
1557 background: #377d87; 1557 background: #377d87;
1558 color: #fff; 1558 color: #fff;
1559 } 1559 }
1560 .filters__item + .filters__item { 1560 .filters__item + .filters__item {
1561 margin-left: 8px; 1561 margin-left: 8px;
1562 } 1562 }
1563 1563
1564 .like, 1564 .like,
1565 .chat { 1565 .chat {
1566 width: 30px; 1566 width: 30px;
1567 height: 30px; 1567 height: 30px;
1568 display: -webkit-box; 1568 display: -webkit-box;
1569 display: -ms-flexbox; 1569 display: -ms-flexbox;
1570 display: flex; 1570 display: flex;
1571 -webkit-box-pack: center; 1571 -webkit-box-pack: center;
1572 -ms-flex-pack: center; 1572 -ms-flex-pack: center;
1573 justify-content: center; 1573 justify-content: center;
1574 -webkit-box-align: center; 1574 -webkit-box-align: center;
1575 -ms-flex-align: center; 1575 -ms-flex-align: center;
1576 align-items: center; 1576 align-items: center;
1577 background: none; 1577 background: none;
1578 border: 1px solid #377d87; 1578 border: 1px solid #377d87;
1579 padding: 0; 1579 padding: 0;
1580 color: #377d87; 1580 color: #377d87;
1581 border-radius: 6px; 1581 border-radius: 6px;
1582 } 1582 }
1583 @media (min-width: 768px) { 1583 @media (min-width: 768px) {
1584 .like, 1584 .like,
1585 .chat { 1585 .chat {
1586 width: 44px; 1586 width: 44px;
1587 height: 44px; 1587 height: 44px;
1588 } 1588 }
1589 } 1589 }
1590 .like.active, 1590 .like.active,
1591 .chat.active { 1591 .chat.active {
1592 background: #377d87; 1592 background: #377d87;
1593 color: #fff; 1593 color: #fff;
1594 } 1594 }
1595 .like svg, 1595 .like svg,
1596 .chat svg { 1596 .chat svg {
1597 width: 14px; 1597 width: 14px;
1598 height: 14px; 1598 height: 14px;
1599 } 1599 }
1600 @media (min-width: 768px) { 1600 @media (min-width: 768px) {
1601 .like svg, 1601 .like svg,
1602 .chat svg { 1602 .chat svg {
1603 width: 20px; 1603 width: 20px;
1604 height: 20px; 1604 height: 20px;
1605 } 1605 }
1606 } 1606 }
1607 1607
1608 .like.active { 1608 .like.active {
1609 background: #eb5757; 1609 background: #eb5757;
1610 border-color: #eb5757; 1610 border-color: #eb5757;
1611 } 1611 }
1612 1612
1613 .checkbox { 1613 .checkbox {
1614 display: -webkit-box; 1614 display: -webkit-box;
1615 display: -ms-flexbox; 1615 display: -ms-flexbox;
1616 display: flex; 1616 display: flex;
1617 -webkit-box-align: start; 1617 -webkit-box-align: start;
1618 -ms-flex-align: start; 1618 -ms-flex-align: start;
1619 align-items: flex-start; 1619 align-items: flex-start;
1620 cursor: pointer; 1620 cursor: pointer;
1621 position: relative; 1621 position: relative;
1622 } 1622 }
1623 .checkbox__input { 1623 .checkbox__input {
1624 position: absolute; 1624 position: absolute;
1625 z-index: 1; 1625 z-index: 1;
1626 width: 14px; 1626 width: 14px;
1627 height: 14px; 1627 height: 14px;
1628 padding: 0; 1628 padding: 0;
1629 background: none; 1629 background: none;
1630 border: none; 1630 border: none;
1631 opacity: 0; 1631 opacity: 0;
1632 } 1632 }
1633 @media (min-width: 768px) { 1633 @media (min-width: 768px) {
1634 .checkbox__input { 1634 .checkbox__input {
1635 width: 20px; 1635 width: 20px;
1636 height: 20px; 1636 height: 20px;
1637 } 1637 }
1638 } 1638 }
1639 .checkbox__icon { 1639 .checkbox__icon {
1640 width: 14px; 1640 width: 14px;
1641 height: 14px; 1641 height: 14px;
1642 border: 1px solid #cfcfcf; 1642 border: 1px solid #cfcfcf;
1643 background: #fff; 1643 background: #fff;
1644 color: #fff; 1644 color: #fff;
1645 display: -webkit-box; 1645 display: -webkit-box;
1646 display: -ms-flexbox; 1646 display: -ms-flexbox;
1647 display: flex; 1647 display: flex;
1648 -webkit-box-pack: center; 1648 -webkit-box-pack: center;
1649 -ms-flex-pack: center; 1649 -ms-flex-pack: center;
1650 justify-content: center; 1650 justify-content: center;
1651 -webkit-box-align: center; 1651 -webkit-box-align: center;
1652 -ms-flex-align: center; 1652 -ms-flex-align: center;
1653 align-items: center; 1653 align-items: center;
1654 border-radius: 4px; 1654 border-radius: 4px;
1655 -webkit-transition: 0.3s; 1655 -webkit-transition: 0.3s;
1656 transition: 0.3s; 1656 transition: 0.3s;
1657 position: relative; 1657 position: relative;
1658 z-index: 2; 1658 z-index: 2;
1659 } 1659 }
1660 @media (min-width: 768px) { 1660 @media (min-width: 768px) {
1661 .checkbox__icon { 1661 .checkbox__icon {
1662 width: 20px; 1662 width: 20px;
1663 height: 20px; 1663 height: 20px;
1664 } 1664 }
1665 } 1665 }
1666 .checkbox__icon svg { 1666 .checkbox__icon svg {
1667 width: 8px; 1667 width: 8px;
1668 height: 8px; 1668 height: 8px;
1669 opacity: 0; 1669 opacity: 0;
1670 } 1670 }
1671 @media (min-width: 768px) { 1671 @media (min-width: 768px) {
1672 .checkbox__icon svg { 1672 .checkbox__icon svg {
1673 width: 10px; 1673 width: 10px;
1674 height: 10px; 1674 height: 10px;
1675 } 1675 }
1676 } 1676 }
1677 .checkbox__input:checked + .checkbox__icon { 1677 .checkbox__input:checked + .checkbox__icon {
1678 border-color: #377d87; 1678 border-color: #377d87;
1679 background: #377d87; 1679 background: #377d87;
1680 } 1680 }
1681 .checkbox__input:checked + .checkbox__icon svg { 1681 .checkbox__input:checked + .checkbox__icon svg {
1682 opacity: 1; 1682 opacity: 1;
1683 } 1683 }
1684 .checkbox__text { 1684 .checkbox__text {
1685 width: calc(100% - 14px); 1685 width: calc(100% - 14px);
1686 padding-left: 6px; 1686 padding-left: 6px;
1687 font-size: 12px; 1687 font-size: 12px;
1688 line-height: 1; 1688 line-height: 1;
1689 display: -webkit-box; 1689 display: -webkit-box;
1690 display: -ms-flexbox; 1690 display: -ms-flexbox;
1691 display: flex; 1691 display: flex;
1692 -webkit-box-align: center; 1692 -webkit-box-align: center;
1693 -ms-flex-align: center; 1693 -ms-flex-align: center;
1694 align-items: center; 1694 align-items: center;
1695 min-height: 14px; 1695 min-height: 14px;
1696 } 1696 }
1697 @media (min-width: 768px) { 1697 @media (min-width: 768px) {
1698 .checkbox__text { 1698 .checkbox__text {
1699 width: calc(100% - 20px); 1699 width: calc(100% - 20px);
1700 padding-left: 12px; 1700 padding-left: 12px;
1701 font-size: 15px; 1701 font-size: 15px;
1702 min-height: 20px; 1702 min-height: 20px;
1703 } 1703 }
1704 } 1704 }
1705 .checkbox__text a { 1705 .checkbox__text a {
1706 color: #377d87; 1706 color: #377d87;
1707 text-decoration: underline; 1707 text-decoration: underline;
1708 } 1708 }
1709 .checkbox-empty { 1709 .checkbox-empty {
1710 display: -webkit-box; 1710 display: -webkit-box;
1711 display: -ms-flexbox; 1711 display: -ms-flexbox;
1712 display: flex; 1712 display: flex;
1713 -webkit-box-orient: vertical; 1713 -webkit-box-orient: vertical;
1714 -webkit-box-direction: normal; 1714 -webkit-box-direction: normal;
1715 -ms-flex-direction: column; 1715 -ms-flex-direction: column;
1716 flex-direction: column; 1716 flex-direction: column;
1717 -webkit-box-align: center; 1717 -webkit-box-align: center;
1718 -ms-flex-align: center; 1718 -ms-flex-align: center;
1719 align-items: center; 1719 align-items: center;
1720 } 1720 }
1721 .checkbox-empty .checkbox { 1721 .checkbox-empty .checkbox {
1722 width: 20px; 1722 width: 20px;
1723 } 1723 }
1724 1724
1725 .file { 1725 .file {
1726 display: -webkit-box; 1726 display: -webkit-box;
1727 display: -ms-flexbox; 1727 display: -ms-flexbox;
1728 display: flex; 1728 display: flex;
1729 -webkit-box-orient: vertical; 1729 -webkit-box-orient: vertical;
1730 -webkit-box-direction: normal; 1730 -webkit-box-direction: normal;
1731 -ms-flex-direction: column; 1731 -ms-flex-direction: column;
1732 flex-direction: column; 1732 flex-direction: column;
1733 } 1733 }
1734 .file__input input { 1734 .file__input input {
1735 display: none; 1735 display: none;
1736 } 1736 }
1737 .file__list { 1737 .file__list {
1738 display: -webkit-box; 1738 display: -webkit-box;
1739 display: -ms-flexbox; 1739 display: -ms-flexbox;
1740 display: flex; 1740 display: flex;
1741 -webkit-box-orient: vertical; 1741 -webkit-box-orient: vertical;
1742 -webkit-box-direction: normal; 1742 -webkit-box-direction: normal;
1743 -ms-flex-direction: column; 1743 -ms-flex-direction: column;
1744 flex-direction: column; 1744 flex-direction: column;
1745 } 1745 }
1746 .file__list-item { 1746 .file__list-item {
1747 display: -webkit-box; 1747 display: -webkit-box;
1748 display: -ms-flexbox; 1748 display: -ms-flexbox;
1749 display: flex; 1749 display: flex;
1750 -webkit-box-align: start; 1750 -webkit-box-align: start;
1751 -ms-flex-align: start; 1751 -ms-flex-align: start;
1752 align-items: flex-start; 1752 align-items: flex-start;
1753 margin-top: 16px; 1753 margin-top: 16px;
1754 } 1754 }
1755 .file__list-item-left { 1755 .file__list-item-left {
1756 width: calc(100% - 16px); 1756 width: calc(100% - 16px);
1757 min-height: 16px; 1757 min-height: 16px;
1758 color: #9c9d9d; 1758 color: #9c9d9d;
1759 font-size: 12px; 1759 font-size: 12px;
1760 display: -webkit-box; 1760 display: -webkit-box;
1761 display: -ms-flexbox; 1761 display: -ms-flexbox;
1762 display: flex; 1762 display: flex;
1763 -webkit-box-align: start; 1763 -webkit-box-align: start;
1764 -ms-flex-align: start; 1764 -ms-flex-align: start;
1765 align-items: flex-start; 1765 align-items: flex-start;
1766 } 1766 }
1767 @media (min-width: 768px) { 1767 @media (min-width: 768px) {
1768 .file__list-item-left { 1768 .file__list-item-left {
1769 width: auto; 1769 width: auto;
1770 max-width: calc(100% - 16px); 1770 max-width: calc(100% - 16px);
1771 font-size: 16px; 1771 font-size: 16px;
1772 } 1772 }
1773 } 1773 }
1774 .file__list-item-left svg { 1774 .file__list-item-left svg {
1775 width: 16px; 1775 width: 16px;
1776 height: 16px; 1776 height: 16px;
1777 } 1777 }
1778 .file__list-item-left span { 1778 .file__list-item-left span {
1779 width: calc(100% - 16px); 1779 width: calc(100% - 16px);
1780 min-height: 16px; 1780 min-height: 16px;
1781 display: -webkit-box; 1781 display: -webkit-box;
1782 display: -ms-flexbox; 1782 display: -ms-flexbox;
1783 display: flex; 1783 display: flex;
1784 -webkit-box-align: center; 1784 -webkit-box-align: center;
1785 -ms-flex-align: center; 1785 -ms-flex-align: center;
1786 align-items: center; 1786 align-items: center;
1787 padding: 0 8px; 1787 padding: 0 8px;
1788 } 1788 }
1789 .file__list-item-right { 1789 .file__list-item-right {
1790 display: -webkit-box; 1790 display: -webkit-box;
1791 display: -ms-flexbox; 1791 display: -ms-flexbox;
1792 display: flex; 1792 display: flex;
1793 -webkit-box-pack: center; 1793 -webkit-box-pack: center;
1794 -ms-flex-pack: center; 1794 -ms-flex-pack: center;
1795 justify-content: center; 1795 justify-content: center;
1796 -webkit-box-align: center; 1796 -webkit-box-align: center;
1797 -ms-flex-align: center; 1797 -ms-flex-align: center;
1798 align-items: center; 1798 align-items: center;
1799 padding: 0; 1799 padding: 0;
1800 background: none; 1800 background: none;
1801 border: none; 1801 border: none;
1802 width: 16px; 1802 width: 16px;
1803 height: 16px; 1803 height: 16px;
1804 color: #377d87; 1804 color: #377d87;
1805 } 1805 }
1806 .file__list-item-right:hover { 1806 .file__list-item-right:hover {
1807 color: #000; 1807 color: #000;
1808 } 1808 }
1809 .file__list-item-right svg { 1809 .file__list-item-right svg {
1810 width: 10px; 1810 width: 10px;
1811 height: 10px; 1811 height: 10px;
1812 } 1812 }
1813 .file__list-item + .file__list-item { 1813 .file__list-item + .file__list-item {
1814 margin-top: 10px; 1814 margin-top: 10px;
1815 } 1815 }
1816 1816
1817 .toggle { 1817 .toggle {
1818 display: -webkit-box; 1818 display: -webkit-box;
1819 display: -ms-flexbox; 1819 display: -ms-flexbox;
1820 display: flex; 1820 display: flex;
1821 gap: 12px; 1821 gap: 12px;
1822 position: relative; 1822 position: relative;
1823 cursor: pointer; 1823 cursor: pointer;
1824 -webkit-user-select: none; 1824 -webkit-user-select: none;
1825 -moz-user-select: none; 1825 -moz-user-select: none;
1826 -ms-user-select: none; 1826 -ms-user-select: none;
1827 user-select: none; 1827 user-select: none;
1828 } 1828 }
1829 .toggle__input { 1829 .toggle__input {
1830 position: absolute; 1830 position: absolute;
1831 width: 1px; 1831 width: 1px;
1832 height: 1px; 1832 height: 1px;
1833 overflow: hidden; 1833 overflow: hidden;
1834 clip: rect(0 0 0 0); 1834 clip: rect(0 0 0 0);
1835 } 1835 }
1836 .toggle__input:checked + .toggle__icon { 1836 .toggle__input:checked + .toggle__icon {
1837 background: #377d87; 1837 background: #377d87;
1838 } 1838 }
1839 .toggle__input:checked + .toggle__icon:before { 1839 .toggle__input:checked + .toggle__icon:before {
1840 left: 18px; 1840 left: 18px;
1841 } 1841 }
1842 .toggle__input:checked:disabled + .toggle__icon { 1842 .toggle__input:checked:disabled + .toggle__icon {
1843 background: #9BBEC3; 1843 background: #9BBEC3;
1844 } 1844 }
1845 .toggle__input:checked ~ .toggle__text:nth-child(3) { 1845 .toggle__input:checked ~ .toggle__text:nth-child(3) {
1846 display: none; 1846 display: none;
1847 } 1847 }
1848 .toggle__input:checked ~ .toggle__text:nth-child(4) { 1848 .toggle__input:checked ~ .toggle__text:nth-child(4) {
1849 display: block; 1849 display: block;
1850 } 1850 }
1851 .toggle__icon { 1851 .toggle__icon {
1852 display: block; 1852 display: block;
1853 position: relative; 1853 position: relative;
1854 width: 36px; 1854 width: 36px;
1855 height: 20px; 1855 height: 20px;
1856 border-radius: 999px; 1856 border-radius: 999px;
1857 background: #c3c7d9; 1857 background: #c3c7d9;
1858 -webkit-transition: 0.3s; 1858 -webkit-transition: 0.3s;
1859 transition: 0.3s; 1859 transition: 0.3s;
1860 } 1860 }
1861 .toggle__icon:before { 1861 .toggle__icon:before {
1862 content: ""; 1862 content: "";
1863 -webkit-transition: 0.3s; 1863 -webkit-transition: 0.3s;
1864 transition: 0.3s; 1864 transition: 0.3s;
1865 position: absolute; 1865 position: absolute;
1866 top: 50%; 1866 top: 50%;
1867 left: 2px; 1867 left: 2px;
1868 width: 16px; 1868 width: 16px;
1869 aspect-ratio: 1/1; 1869 aspect-ratio: 1/1;
1870 border-radius: 999px; 1870 border-radius: 999px;
1871 background: #fff; 1871 background: #fff;
1872 -webkit-transform: translate(0, -50%); 1872 -webkit-transform: translate(0, -50%);
1873 -ms-transform: translate(0, -50%); 1873 -ms-transform: translate(0, -50%);
1874 transform: translate(0, -50%); 1874 transform: translate(0, -50%);
1875 } 1875 }
1876 .toggle__input:checked + .toggle__icon { 1876 .toggle__input:checked + .toggle__icon {
1877 background: #377d87; 1877 background: #377d87;
1878 } 1878 }
1879 .toggle__text { 1879 .toggle__text {
1880 font-size: 14px; 1880 font-size: 14px;
1881 line-height: 20px; 1881 line-height: 20px;
1882 } 1882 }
1883 @media (min-width: 768px) { 1883 @media (min-width: 768px) {
1884 .toggle__text { 1884 .toggle__text {
1885 font-size: 16px; 1885 font-size: 16px;
1886 } 1886 }
1887 } 1887 }
1888 .toggle__text:nth-child(4) { 1888 .toggle__text:nth-child(4) {
1889 display: none; 1889 display: none;
1890 } 1890 }
1891 1891
1892 .rate { 1892 .rate {
1893 display: -webkit-box; 1893 display: -webkit-box;
1894 display: -ms-flexbox; 1894 display: -ms-flexbox;
1895 display: flex; 1895 display: flex;
1896 -webkit-box-align: center; 1896 -webkit-box-align: center;
1897 -ms-flex-align: center; 1897 -ms-flex-align: center;
1898 align-items: center; 1898 align-items: center;
1899 gap: 10px; 1899 gap: 10px;
1900 } 1900 }
1901 @media (min-width: 768px) { 1901 @media (min-width: 768px) {
1902 .rate { 1902 .rate {
1903 gap: 20px; 1903 gap: 20px;
1904 } 1904 }
1905 } 1905 }
1906 .rate__label { 1906 .rate__label {
1907 font-size: 12px; 1907 font-size: 12px;
1908 font-weight: 700; 1908 font-weight: 700;
1909 line-height: 1; 1909 line-height: 1;
1910 } 1910 }
1911 @media (min-width: 768px) { 1911 @media (min-width: 768px) {
1912 .rate__label { 1912 .rate__label {
1913 font-size: 18px; 1913 font-size: 18px;
1914 } 1914 }
1915 } 1915 }
1916 .rate__stars { 1916 .rate__stars {
1917 display: -webkit-box; 1917 display: -webkit-box;
1918 display: -ms-flexbox; 1918 display: -ms-flexbox;
1919 display: flex; 1919 display: flex;
1920 -webkit-box-orient: vertical; 1920 -webkit-box-orient: vertical;
1921 -webkit-box-direction: normal; 1921 -webkit-box-direction: normal;
1922 -ms-flex-direction: column; 1922 -ms-flex-direction: column;
1923 flex-direction: column; 1923 flex-direction: column;
1924 } 1924 }
1925 1925
1926 .back { 1926 .back {
1927 display: -webkit-box; 1927 display: -webkit-box;
1928 display: -ms-flexbox; 1928 display: -ms-flexbox;
1929 display: flex; 1929 display: flex;
1930 -webkit-box-align: center; 1930 -webkit-box-align: center;
1931 -ms-flex-align: center; 1931 -ms-flex-align: center;
1932 align-items: center; 1932 align-items: center;
1933 font-size: 14px; 1933 font-size: 14px;
1934 color: #377d87; 1934 color: #377d87;
1935 font-weight: 700; 1935 font-weight: 700;
1936 } 1936 }
1937 @media (min-width: 768px) { 1937 @media (min-width: 768px) {
1938 .back { 1938 .back {
1939 font-size: 18px; 1939 font-size: 18px;
1940 } 1940 }
1941 } 1941 }
1942 .back:hover { 1942 .back:hover {
1943 color: #4d88d9; 1943 color: #4d88d9;
1944 } 1944 }
1945 .back svg { 1945 .back svg {
1946 width: 16px; 1946 width: 16px;
1947 height: 16px; 1947 height: 16px;
1948 } 1948 }
1949 @media (min-width: 768px) { 1949 @media (min-width: 768px) {
1950 .back svg { 1950 .back svg {
1951 width: 26px; 1951 width: 26px;
1952 height: 26px; 1952 height: 26px;
1953 } 1953 }
1954 } 1954 }
1955 .back span { 1955 .back span {
1956 width: calc(100% - 16px); 1956 width: calc(100% - 16px);
1957 padding-left: 10px; 1957 padding-left: 10px;
1958 } 1958 }
1959 @media (min-width: 768px) { 1959 @media (min-width: 768px) {
1960 .back span { 1960 .back span {
1961 width: calc(100% - 26px); 1961 width: calc(100% - 26px);
1962 padding-left: 20px; 1962 padding-left: 20px;
1963 } 1963 }
1964 } 1964 }
1965 1965
1966 .callback { 1966 .callback {
1967 display: -webkit-box; 1967 display: -webkit-box;
1968 display: -ms-flexbox; 1968 display: -ms-flexbox;
1969 display: flex; 1969 display: flex;
1970 -webkit-box-orient: vertical; 1970 -webkit-box-orient: vertical;
1971 -webkit-box-direction: normal; 1971 -webkit-box-direction: normal;
1972 -ms-flex-direction: column; 1972 -ms-flex-direction: column;
1973 flex-direction: column; 1973 flex-direction: column;
1974 gap: 16px; 1974 gap: 16px;
1975 } 1975 }
1976 @media (min-width: 992px) { 1976 @media (min-width: 992px) {
1977 .callback { 1977 .callback {
1978 -webkit-box-orient: horizontal; 1978 -webkit-box-orient: horizontal;
1979 -webkit-box-direction: normal; 1979 -webkit-box-direction: normal;
1980 -ms-flex-direction: row; 1980 -ms-flex-direction: row;
1981 flex-direction: row; 1981 flex-direction: row;
1982 -webkit-box-pack: justify; 1982 -webkit-box-pack: justify;
1983 -ms-flex-pack: justify; 1983 -ms-flex-pack: justify;
1984 justify-content: space-between; 1984 justify-content: space-between;
1985 -ms-flex-wrap: wrap; 1985 -ms-flex-wrap: wrap;
1986 flex-wrap: wrap; 1986 flex-wrap: wrap;
1987 gap: 20px 0; 1987 gap: 20px 0;
1988 } 1988 }
1989 } 1989 }
1990 .callback__body { 1990 .callback__body {
1991 display: -webkit-box; 1991 display: -webkit-box;
1992 display: -ms-flexbox; 1992 display: -ms-flexbox;
1993 display: flex; 1993 display: flex;
1994 -webkit-box-orient: vertical; 1994 -webkit-box-orient: vertical;
1995 -webkit-box-direction: normal; 1995 -webkit-box-direction: normal;
1996 -ms-flex-direction: column; 1996 -ms-flex-direction: column;
1997 flex-direction: column; 1997 flex-direction: column;
1998 gap: 16px; 1998 gap: 16px;
1999 } 1999 }
2000 @media (min-width: 992px) { 2000 @media (min-width: 992px) {
2001 .callback__body { 2001 .callback__body {
2002 width: calc(50% - 10px); 2002 width: calc(50% - 10px);
2003 gap: 10px; 2003 gap: 10px;
2004 } 2004 }
2005 } 2005 }
2006 @media (min-width: 992px) { 2006 @media (min-width: 992px) {
2007 .callback__textarea { 2007 .callback__textarea {
2008 width: calc(50% - 10px); 2008 width: calc(50% - 10px);
2009 height: auto; 2009 height: auto;
2010 } 2010 }
2011 } 2011 }
2012 .callback__bottom { 2012 .callback__bottom {
2013 display: -webkit-box; 2013 display: -webkit-box;
2014 display: -ms-flexbox; 2014 display: -ms-flexbox;
2015 display: flex; 2015 display: flex;
2016 -webkit-box-orient: vertical; 2016 -webkit-box-orient: vertical;
2017 -webkit-box-direction: normal; 2017 -webkit-box-direction: normal;
2018 -ms-flex-direction: column; 2018 -ms-flex-direction: column;
2019 flex-direction: column; 2019 flex-direction: column;
2020 gap: 16px; 2020 gap: 16px;
2021 } 2021 }
2022 @media (min-width: 768px) { 2022 @media (min-width: 768px) {
2023 .callback__bottom { 2023 .callback__bottom {
2024 -webkit-box-align: start; 2024 -webkit-box-align: start;
2025 -ms-flex-align: start; 2025 -ms-flex-align: start;
2026 align-items: flex-start; 2026 align-items: flex-start;
2027 } 2027 }
2028 } 2028 }
2029 @media (min-width: 992px) { 2029 @media (min-width: 992px) {
2030 .callback__bottom { 2030 .callback__bottom {
2031 width: 100%; 2031 width: 100%;
2032 gap: 20px; 2032 gap: 20px;
2033 } 2033 }
2034 } 2034 }
2035 2035
2036 .error .input, 2036 .error .input,
2037 .error .textarea { 2037 .error .textarea {
2038 border-color: #eb5757; 2038 border-color: #eb5757;
2039 } 2039 }
2040 .error label { 2040 .error label {
2041 display: block; 2041 display: block;
2042 } 2042 }
2043 2043
2044 .eye { 2044 .eye {
2045 position: absolute; 2045 position: absolute;
2046 z-index: 2; 2046 z-index: 2;
2047 top: 50%; 2047 top: 50%;
2048 -webkit-transform: translate(0, -50%); 2048 -webkit-transform: translate(0, -50%);
2049 -ms-transform: translate(0, -50%); 2049 -ms-transform: translate(0, -50%);
2050 transform: translate(0, -50%); 2050 transform: translate(0, -50%);
2051 right: 10px; 2051 right: 10px;
2052 aspect-ratio: 1/1; 2052 aspect-ratio: 1/1;
2053 width: 16px; 2053 width: 16px;
2054 padding: 0; 2054 padding: 0;
2055 border: none; 2055 border: none;
2056 background: none; 2056 background: none;
2057 color: #9c9d9d; 2057 color: #9c9d9d;
2058 } 2058 }
2059 @media (min-width: 768px) { 2059 @media (min-width: 768px) {
2060 .eye { 2060 .eye {
2061 width: 24px; 2061 width: 24px;
2062 right: 20px; 2062 right: 20px;
2063 } 2063 }
2064 } 2064 }
2065 .eye svg { 2065 .eye svg {
2066 position: absolute; 2066 position: absolute;
2067 top: 0; 2067 top: 0;
2068 left: 0; 2068 left: 0;
2069 width: 100%; 2069 width: 100%;
2070 height: 100%; 2070 height: 100%;
2071 } 2071 }
2072 .eye svg + svg { 2072 .eye svg + svg {
2073 display: none; 2073 display: none;
2074 } 2074 }
2075 .eye.active { 2075 .eye.active {
2076 color: #377d87; 2076 color: #377d87;
2077 } 2077 }
2078 .eye.active svg { 2078 .eye.active svg {
2079 display: none; 2079 display: none;
2080 } 2080 }
2081 .eye.active svg + svg { 2081 .eye.active svg + svg {
2082 display: block; 2082 display: block;
2083 } 2083 }
2084 2084
2085 .del { 2085 .del {
2086 width: 32px; 2086 width: 32px;
2087 aspect-ratio: 1/1; 2087 aspect-ratio: 1/1;
2088 background: #377d87; 2088 background: #377d87;
2089 color: #fff; 2089 color: #fff;
2090 display: -webkit-box; 2090 display: -webkit-box;
2091 display: -ms-flexbox; 2091 display: -ms-flexbox;
2092 display: flex; 2092 display: flex;
2093 -webkit-box-pack: center; 2093 -webkit-box-pack: center;
2094 -ms-flex-pack: center; 2094 -ms-flex-pack: center;
2095 justify-content: center; 2095 justify-content: center;
2096 -webkit-box-align: center; 2096 -webkit-box-align: center;
2097 -ms-flex-align: center; 2097 -ms-flex-align: center;
2098 align-items: center; 2098 align-items: center;
2099 border-radius: 8px; 2099 border-radius: 8px;
2100 padding: 0; 2100 padding: 0;
2101 border: 1px solid #377d87; 2101 border: 1px solid #377d87;
2102 } 2102 }
2103 .del:hover { 2103 .del:hover {
2104 background: #fff; 2104 background: #fff;
2105 color: #377d87; 2105 color: #377d87;
2106 } 2106 }
2107 .del svg { 2107 .del svg {
2108 width: 50%; 2108 width: 50%;
2109 aspect-ratio: 1/1; 2109 aspect-ratio: 1/1;
2110 } 2110 }
2111 2111
2112 .notify { 2112 .notify {
2113 background: linear-gradient(95deg, #f2f5fc 59.82%, #ebf2fc 99.99%); 2113 background: linear-gradient(95deg, #f2f5fc 59.82%, #ebf2fc 99.99%);
2114 padding: 6px 12px; 2114 padding: 6px 12px;
2115 border-radius: 8px; 2115 border-radius: 8px;
2116 display: -webkit-box; 2116 display: -webkit-box;
2117 display: -ms-flexbox; 2117 display: -ms-flexbox;
2118 display: flex; 2118 display: flex;
2119 -webkit-box-align: start; 2119 -webkit-box-align: start;
2120 -ms-flex-align: start; 2120 -ms-flex-align: start;
2121 align-items: flex-start; 2121 align-items: flex-start;
2122 } 2122 }
2123 @media (min-width: 768px) { 2123 @media (min-width: 768px) {
2124 .notify { 2124 .notify {
2125 padding: 12px 20px; 2125 padding: 12px 20px;
2126 } 2126 }
2127 } 2127 }
2128 .notify_red { 2128 .notify_red {
2129 background: #f9cdcd; 2129 background: #f9cdcd;
2130 } 2130 }
2131 .notify svg { 2131 .notify svg {
2132 color: #4d88d9; 2132 color: #4d88d9;
2133 width: 20px; 2133 width: 20px;
2134 aspect-ratio: 1/1; 2134 aspect-ratio: 1/1;
2135 } 2135 }
2136 .notify span { 2136 .notify span {
2137 font-size: 12px; 2137 font-size: 12px;
2138 padding-left: 10px; 2138 padding-left: 10px;
2139 min-height: 20px; 2139 min-height: 20px;
2140 display: -webkit-box; 2140 display: -webkit-box;
2141 display: -ms-flexbox; 2141 display: -ms-flexbox;
2142 display: flex; 2142 display: flex;
2143 -webkit-box-align: center; 2143 -webkit-box-align: center;
2144 -ms-flex-align: center; 2144 -ms-flex-align: center;
2145 align-items: center; 2145 align-items: center;
2146 } 2146 }
2147 @media (min-width: 768px) { 2147 @media (min-width: 768px) {
2148 .notify span { 2148 .notify span {
2149 font-size: 16px; 2149 font-size: 16px;
2150 } 2150 }
2151 } 2151 }
2152 2152
2153 .table { 2153 .table {
2154 margin: 0 -10px; 2154 margin: 0 -10px;
2155 display: -webkit-box; 2155 display: -webkit-box;
2156 display: -ms-flexbox; 2156 display: -ms-flexbox;
2157 display: flex; 2157 display: flex;
2158 -webkit-box-orient: vertical; 2158 -webkit-box-orient: vertical;
2159 -webkit-box-direction: reverse; 2159 -webkit-box-direction: reverse;
2160 -ms-flex-direction: column-reverse; 2160 -ms-flex-direction: column-reverse;
2161 flex-direction: column-reverse; 2161 flex-direction: column-reverse;
2162 -webkit-box-align: center; 2162 -webkit-box-align: center;
2163 -ms-flex-align: center; 2163 -ms-flex-align: center;
2164 align-items: center; 2164 align-items: center;
2165 gap: 20px; 2165 gap: 20px;
2166 } 2166 }
2167 @media (min-width: 768px) { 2167 @media (min-width: 768px) {
2168 .table { 2168 .table {
2169 margin: 0; 2169 margin: 0;
2170 gap: 30px; 2170 gap: 30px;
2171 } 2171 }
2172 } 2172 }
2173 .table__button { 2173 .table__button {
2174 display: none; 2174 display: none;
2175 } 2175 }
2176 .table_spoiler .table__button { 2176 .table_spoiler .table__button {
2177 display: -webkit-box; 2177 display: -webkit-box;
2178 display: -ms-flexbox; 2178 display: -ms-flexbox;
2179 display: flex; 2179 display: flex;
2180 } 2180 }
2181 .table__scroll { 2181 .table__scroll {
2182 overflow: hidden; 2182 overflow: hidden;
2183 overflow-x: auto; 2183 overflow-x: auto;
2184 padding: 0 10px; 2184 padding: 0 10px;
2185 width: 100%; 2185 width: 100%;
2186 } 2186 }
2187 @media (min-width: 768px) { 2187 @media (min-width: 768px) {
2188 .table__scroll { 2188 .table__scroll {
2189 padding: 0; 2189 padding: 0;
2190 } 2190 }
2191 } 2191 }
2192 .table__body { 2192 .table__body {
2193 border-radius: 8px; 2193 border-radius: 8px;
2194 overflow: hidden; 2194 overflow: hidden;
2195 } 2195 }
2196 .table__body_min-width { 2196 .table__body_min-width {
2197 min-width: 580px; 2197 min-width: 580px;
2198 } 2198 }
2199 .table table { 2199 .table table {
2200 border-collapse: collapse; 2200 border-collapse: collapse;
2201 width: 100%; 2201 width: 100%;
2202 font-size: 12px; 2202 font-size: 12px;
2203 border-radius: 8px; 2203 border-radius: 8px;
2204 } 2204 }
2205 @media (min-width: 768px) { 2205 @media (min-width: 768px) {
2206 .table table { 2206 .table table {
2207 font-size: 14px; 2207 font-size: 14px;
2208 } 2208 }
2209 } 2209 }
2210 @media (min-width: 1280px) { 2210 @media (min-width: 1280px) {
2211 .table table { 2211 .table table {
2212 font-size: 16px; 2212 font-size: 16px;
2213 } 2213 }
2214 } 2214 }
2215 .table thead tr th, 2215 .table thead tr th,
2216 .table thead tr td { 2216 .table thead tr td {
2217 background: #377d87; 2217 background: #377d87;
2218 color: #fff; 2218 color: #fff;
2219 font-weight: 700; 2219 font-weight: 700;
2220 border-top-color: #377d87; 2220 border-top-color: #377d87;
2221 } 2221 }
2222 .table thead tr th:first-child, 2222 .table thead tr th:first-child,
2223 .table thead tr td:first-child { 2223 .table thead tr td:first-child {
2224 border-left-color: #377d87; 2224 border-left-color: #377d87;
2225 } 2225 }
2226 .table thead tr th:last-child, 2226 .table thead tr th:last-child,
2227 .table thead tr td:last-child { 2227 .table thead tr td:last-child {
2228 border-right-color: #377d87; 2228 border-right-color: #377d87;
2229 } 2229 }
2230 .table_spoiler tr { 2230 .table_spoiler tr {
2231 /*display: none;*/ 2231 /*display: none;*/
2232 } 2232 }
2233 .table_spoiler tr:nth-of-type(1), .table_spoiler tr:nth-of-type(2), .table_spoiler tr:nth-of-type(3), .table_spoiler tr:nth-of-type(4), .table_spoiler tr:nth-of-type(5), .table_spoiler tr:nth-of-type(6) { 2233 .table_spoiler tr:nth-of-type(1), .table_spoiler tr:nth-of-type(2), .table_spoiler tr:nth-of-type(3), .table_spoiler tr:nth-of-type(4), .table_spoiler tr:nth-of-type(5), .table_spoiler tr:nth-of-type(6) {
2234 display: table-row; 2234 display: table-row;
2235 } 2235 }
2236 .table_spoiler.active tr { 2236 .table_spoiler.active tr {
2237 display: table-row; 2237 display: table-row;
2238 } 2238 }
2239 .table th, 2239 .table th,
2240 .table td { 2240 .table td {
2241 text-align: left; 2241 text-align: left;
2242 padding: 10px; 2242 padding: 10px;
2243 border: 1px solid #cecece; 2243 border: 1px solid #cecece;
2244 } 2244 }
2245 @media (min-width: 768px) { 2245 @media (min-width: 768px) {
2246 .table td { 2246 .table td {
2247 padding: 14px 10px; 2247 padding: 14px 10px;
2248 } 2248 }
2249 } 2249 }
2250 .table__status { 2250 .table__status {
2251 color: #9c9d9d; 2251 color: #9c9d9d;
2252 display: -webkit-box; 2252 display: -webkit-box;
2253 display: -ms-flexbox; 2253 display: -ms-flexbox;
2254 display: flex; 2254 display: flex;
2255 -webkit-box-align: center; 2255 -webkit-box-align: center;
2256 -ms-flex-align: center; 2256 -ms-flex-align: center;
2257 align-items: center; 2257 align-items: center;
2258 gap: 6px; 2258 gap: 6px;
2259 position: relative; 2259 position: relative;
2260 padding-left: 14px; 2260 padding-left: 14px;
2261 } 2261 }
2262 .table__status i { 2262 .table__status i {
2263 background: #9c9d9d; 2263 background: #9c9d9d;
2264 width: 8px; 2264 width: 8px;
2265 aspect-ratio: 1/1; 2265 aspect-ratio: 1/1;
2266 border-radius: 999px; 2266 border-radius: 999px;
2267 position: absolute; 2267 position: absolute;
2268 top: 4px; 2268 top: 4px;
2269 left: 0; 2269 left: 0;
2270 } 2270 }
2271 .table__status.green { 2271 .table__status.green {
2272 color: #377d87; 2272 color: #377d87;
2273 } 2273 }
2274 .table__status.green i { 2274 .table__status.green i {
2275 background: #377d87; 2275 background: #377d87;
2276 } 2276 }
2277 .table__link { 2277 .table__link {
2278 display: -webkit-box; 2278 display: -webkit-box;
2279 display: -ms-flexbox; 2279 display: -ms-flexbox;
2280 display: flex; 2280 display: flex;
2281 -webkit-box-align: center; 2281 -webkit-box-align: center;
2282 -ms-flex-align: center; 2282 -ms-flex-align: center;
2283 align-items: center; 2283 align-items: center;
2284 gap: 4px; 2284 gap: 4px;
2285 color: #4d88d9; 2285 color: #4d88d9;
2286 } 2286 }
2287 @media (min-width: 768px) { 2287 @media (min-width: 768px) {
2288 .table__link { 2288 .table__link {
2289 gap: 6px; 2289 gap: 6px;
2290 } 2290 }
2291 } 2291 }
2292 .table__link:hover { 2292 .table__link:hover {
2293 color: #000; 2293 color: #000;
2294 } 2294 }
2295 .table__link svg { 2295 .table__link svg {
2296 width: 12px; 2296 width: 12px;
2297 aspect-ratio: 1/1; 2297 aspect-ratio: 1/1;
2298 } 2298 }
2299 @media (min-width: 768px) { 2299 @media (min-width: 768px) {
2300 .table__link svg { 2300 .table__link svg {
2301 width: 16px; 2301 width: 16px;
2302 } 2302 }
2303 } 2303 }
2304 .table__controls { 2304 .table__controls {
2305 display: -webkit-box; 2305 display: -webkit-box;
2306 display: -ms-flexbox; 2306 display: -ms-flexbox;
2307 display: flex; 2307 display: flex;
2308 -webkit-box-align: center; 2308 -webkit-box-align: center;
2309 -ms-flex-align: center; 2309 -ms-flex-align: center;
2310 align-items: center; 2310 align-items: center;
2311 gap: 8px; 2311 gap: 8px;
2312 } 2312 }
2313 @media (min-width: 1280px) { 2313 @media (min-width: 1280px) {
2314 .table__controls { 2314 .table__controls {
2315 gap: 12px; 2315 gap: 12px;
2316 } 2316 }
2317 } 2317 }
2318 .table__controls-item { 2318 .table__controls-item {
2319 width: 24px; 2319 width: 24px;
2320 aspect-ratio: 1/1; 2320 aspect-ratio: 1/1;
2321 display: -webkit-box; 2321 display: -webkit-box;
2322 display: -ms-flexbox; 2322 display: -ms-flexbox;
2323 display: flex; 2323 display: flex;
2324 -webkit-box-pack: center; 2324 -webkit-box-pack: center;
2325 -ms-flex-pack: center; 2325 -ms-flex-pack: center;
2326 justify-content: center; 2326 justify-content: center;
2327 -webkit-box-align: center; 2327 -webkit-box-align: center;
2328 -ms-flex-align: center; 2328 -ms-flex-align: center;
2329 align-items: center; 2329 align-items: center;
2330 border: 1px solid #377d87; 2330 border: 1px solid #377d87;
2331 border-radius: 8px; 2331 border-radius: 8px;
2332 color: #377d87; 2332 color: #377d87;
2333 background: none; 2333 background: none;
2334 padding: 0; 2334 padding: 0;
2335 } 2335 }
2336 @media (min-width: 1280px) { 2336 @media (min-width: 1280px) {
2337 .table__controls-item { 2337 .table__controls-item {
2338 width: 30px; 2338 width: 30px;
2339 } 2339 }
2340 } 2340 }
2341 .table__controls-item:hover { 2341 .table__controls-item:hover {
2342 background: #377d87; 2342 background: #377d87;
2343 color: #fff; 2343 color: #fff;
2344 } 2344 }
2345 .table__controls-item svg { 2345 .table__controls-item svg {
2346 width: 60%; 2346 width: 60%;
2347 aspect-ratio: 1/1; 2347 aspect-ratio: 1/1;
2348 } 2348 }
2349 .table__controls-item:nth-of-type(4) svg { 2349 .table__controls-item:nth-of-type(4) svg {
2350 width: 80%; 2350 width: 80%;
2351 } 2351 }
2352 2352
2353 .gl-star-rating--stars:before, .gl-star-rating--stars:after { 2353 .gl-star-rating--stars:before, .gl-star-rating--stars:after {
2354 display: none; 2354 display: none;
2355 } 2355 }
2356 .gl-star-rating--stars span { 2356 .gl-star-rating--stars span {
2357 width: 22px !important; 2357 width: 22px !important;
2358 height: 22px !important; 2358 height: 22px !important;
2359 background-size: 22px 22px !important; 2359 background-size: 22px 22px !important;
2360 } 2360 }
2361 @media (min-width: 768px) { 2361 @media (min-width: 768px) {
2362 .gl-star-rating--stars span { 2362 .gl-star-rating--stars span {
2363 width: 30px !important; 2363 width: 30px !important;
2364 height: 30px !important; 2364 height: 30px !important;
2365 background-size: 30px 30px !important; 2365 background-size: 30px 30px !important;
2366 } 2366 }
2367 } 2367 }
2368 2368
2369 .more { 2369 .more {
2370 display: -webkit-box; 2370 display: -webkit-box;
2371 display: -ms-flexbox; 2371 display: -ms-flexbox;
2372 display: flex; 2372 display: flex;
2373 -webkit-box-orient: vertical; 2373 -webkit-box-orient: vertical;
2374 -webkit-box-direction: normal; 2374 -webkit-box-direction: normal;
2375 -ms-flex-direction: column; 2375 -ms-flex-direction: column;
2376 flex-direction: column; 2376 flex-direction: column;
2377 -webkit-box-align: center; 2377 -webkit-box-align: center;
2378 -ms-flex-align: center; 2378 -ms-flex-align: center;
2379 align-items: center; 2379 align-items: center;
2380 } 2380 }
2381 .more_mt { 2381 .more_mt {
2382 margin-top: 20px; 2382 margin-top: 20px;
2383 } 2383 }
2384 .more .button { 2384 .more .button {
2385 min-width: 100px; 2385 min-width: 100px;
2386 padding: 0; 2386 padding: 0;
2387 } 2387 }
2388 @media (min-width: 768px) { 2388 @media (min-width: 768px) {
2389 .more .button { 2389 .more .button {
2390 min-width: 180px; 2390 min-width: 180px;
2391 } 2391 }
2392 } 2392 }
2393 2393
2394 .header { 2394 .header {
2395 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2); 2395 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
2396 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2); 2396 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
2397 background: #fff; 2397 background: #fff;
2398 position: relative; 2398 position: relative;
2399 z-index: 5; 2399 z-index: 5;
2400 overflow: hidden; 2400 overflow: hidden;
2401 } 2401 }
2402 @media (min-width: 768px) { 2402 @media (min-width: 768px) {
2403 .header { 2403 .header {
2404 -webkit-box-shadow: none; 2404 -webkit-box-shadow: none;
2405 box-shadow: none; 2405 box-shadow: none;
2406 } 2406 }
2407 } 2407 }
2408 .header__body { 2408 .header__body {
2409 height: 42px; 2409 height: 42px;
2410 display: -webkit-box; 2410 display: -webkit-box;
2411 display: -ms-flexbox; 2411 display: -ms-flexbox;
2412 display: flex; 2412 display: flex;
2413 -webkit-box-pack: justify; 2413 -webkit-box-pack: justify;
2414 -ms-flex-pack: justify; 2414 -ms-flex-pack: justify;
2415 justify-content: space-between; 2415 justify-content: space-between;
2416 -webkit-box-align: center; 2416 -webkit-box-align: center;
2417 -ms-flex-align: center; 2417 -ms-flex-align: center;
2418 align-items: center; 2418 align-items: center;
2419 } 2419 }
2420 @media (min-width: 768px) { 2420 @media (min-width: 768px) {
2421 .header__body { 2421 .header__body {
2422 height: 70px; 2422 height: 70px;
2423 } 2423 }
2424 } 2424 }
2425 .header__left { 2425 .header__left {
2426 display: -webkit-box; 2426 display: -webkit-box;
2427 display: -ms-flexbox; 2427 display: -ms-flexbox;
2428 display: flex; 2428 display: flex;
2429 -webkit-box-align: center; 2429 -webkit-box-align: center;
2430 -ms-flex-align: center; 2430 -ms-flex-align: center;
2431 align-items: center; 2431 align-items: center;
2432 gap: 40px; 2432 gap: 40px;
2433 } 2433 }
2434 .header__right { 2434 .header__right {
2435 display: -webkit-box; 2435 display: -webkit-box;
2436 display: -ms-flexbox; 2436 display: -ms-flexbox;
2437 display: flex; 2437 display: flex;
2438 -webkit-box-align: center; 2438 -webkit-box-align: center;
2439 -ms-flex-align: center; 2439 -ms-flex-align: center;
2440 align-items: center; 2440 align-items: center;
2441 gap: 14px; 2441 gap: 14px;
2442 } 2442 }
2443 @media (min-width: 768px) { 2443 @media (min-width: 768px) {
2444 .header__right { 2444 .header__right {
2445 gap: 20px; 2445 gap: 20px;
2446 } 2446 }
2447 } 2447 }
2448 .header__right-line { 2448 .header__right-line {
2449 width: 1px; 2449 width: 1px;
2450 height: 32px; 2450 height: 32px;
2451 background: #e6e7e7; 2451 background: #e6e7e7;
2452 border-radius: 999px; 2452 border-radius: 999px;
2453 } 2453 }
2454 @media (min-width: 992px) { 2454 @media (min-width: 992px) {
2455 .header__right-line { 2455 .header__right-line {
2456 display: none; 2456 display: none;
2457 } 2457 }
2458 } 2458 }
2459 .header__logo { 2459 .header__logo {
2460 display: -webkit-box; 2460 display: -webkit-box;
2461 display: -ms-flexbox; 2461 display: -ms-flexbox;
2462 display: flex; 2462 display: flex;
2463 -webkit-box-align: center; 2463 -webkit-box-align: center;
2464 -ms-flex-align: center; 2464 -ms-flex-align: center;
2465 align-items: center; 2465 align-items: center;
2466 -webkit-box-pack: center; 2466 -webkit-box-pack: center;
2467 -ms-flex-pack: center; 2467 -ms-flex-pack: center;
2468 justify-content: center; 2468 justify-content: center;
2469 color: #377d87; 2469 color: #377d87;
2470 } 2470 }
2471 .header__logo svg { 2471 .header__logo svg {
2472 width: 105px; 2472 width: 105px;
2473 height: 31px; 2473 height: 31px;
2474 } 2474 }
2475 @media (min-width: 768px) { 2475 @media (min-width: 768px) {
2476 .header__logo svg { 2476 .header__logo svg {
2477 width: 182px; 2477 width: 182px;
2478 height: 54px; 2478 height: 54px;
2479 } 2479 }
2480 } 2480 }
2481 .header__menu { 2481 .header__menu {
2482 display: none; 2482 display: none;
2483 } 2483 }
2484 .header.active-menu{ 2484 .header.active-menu{
2485 position: unset; 2485 position: unset;
2486 } 2486 }
2487 .header.active-menu .header__menu{ 2487 .header.active-menu .header__menu{
2488 position: absolute; 2488 position: absolute;
2489 display: flex; 2489 display: flex;
2490 flex-direction: column; 2490 flex-direction: column;
2491 z-index: 999; 2491 z-index: 999;
2492 top: 48px; 2492 top: 48px;
2493 background: #fff; 2493 background: #fff;
2494 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2); 2494 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
2495 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2); 2495 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
2496 left: 0; 2496 left: 0;
2497 border: 1px solid #e9e9e9; 2497 border: 1px solid #e9e9e9;
2498 width: 100%; 2498 width: 100%;
2499 } 2499 }
2500 @media (min-width: 768px) { 2500 @media (min-width: 768px) {
2501 .header__menu { 2501 .header__menu {
2502 display: -webkit-box; 2502 display: -webkit-box;
2503 display: -ms-flexbox; 2503 display: -ms-flexbox;
2504 display: flex; 2504 display: flex;
2505 } 2505 }
2506 } 2506 }
2507 .header__menu-item{ 2507 .header__menu-item{
2508 padding: 5px 10px; 2508 padding: 5px 10px;
2509 } 2509 }
2510 .header__menu-item:hover, .header__menu-item:active{ 2510 .header__menu-item:hover, .header__menu-item:active{
2511 border: 1px solid #cfcfcf; 2511 border: 1px solid #cfcfcf;
2512 } 2512 }
2513 .header__menu-item:hover { 2513 .header__menu-item:hover {
2514 color: #377d87; 2514 color: #377d87;
2515 } 2515 }
2516 .header__notifs { 2516 .header__notifs {
2517 display: -webkit-box; 2517 display: -webkit-box;
2518 display: -ms-flexbox; 2518 display: -ms-flexbox;
2519 display: flex; 2519 display: flex;
2520 -webkit-box-align: center; 2520 -webkit-box-align: center;
2521 -ms-flex-align: center; 2521 -ms-flex-align: center;
2522 align-items: center; 2522 align-items: center;
2523 -webkit-box-pack: center; 2523 -webkit-box-pack: center;
2524 -ms-flex-pack: center; 2524 -ms-flex-pack: center;
2525 justify-content: center; 2525 justify-content: center;
2526 color: #377d87; 2526 color: #377d87;
2527 padding: 0; 2527 padding: 0;
2528 border: none; 2528 border: none;
2529 background: none; 2529 background: none;
2530 width: 24px; 2530 width: 24px;
2531 height: 24px; 2531 height: 24px;
2532 } 2532 }
2533 @media (min-width: 992px) { 2533 @media (min-width: 992px) {
2534 .header__notifs { 2534 .header__notifs {
2535 width: auto; 2535 width: auto;
2536 height: auto; 2536 height: auto;
2537 color: #000; 2537 color: #000;
2538 line-height: 1.4; 2538 line-height: 1.4;
2539 } 2539 }
2540 } 2540 }
2541 @media (min-width: 992px) { 2541 @media (min-width: 992px) {
2542 .header__notifs:hover { 2542 .header__notifs:hover {
2543 color: #377d87; 2543 color: #377d87;
2544 } 2544 }
2545 } 2545 }
2546 .header__notifs svg { 2546 .header__notifs svg {
2547 width: 20px; 2547 width: 20px;
2548 height: 20px; 2548 height: 20px;
2549 } 2549 }
2550 @media (min-width: 992px) { 2550 @media (min-width: 992px) {
2551 .header__notifs svg { 2551 .header__notifs svg {
2552 display: none; 2552 display: none;
2553 } 2553 }
2554 } 2554 }
2555 .header__notifs span { 2555 .header__notifs span {
2556 display: none; 2556 display: none;
2557 } 2557 }
2558 @media (min-width: 992px) { 2558 @media (min-width: 992px) {
2559 .header__notifs span { 2559 .header__notifs span {
2560 display: inline; 2560 display: inline;
2561 } 2561 }
2562 } 2562 }
2563 .header__notifs_actived { 2563 .header__notifs_actived {
2564 position: relative; 2564 position: relative;
2565 } 2565 }
2566 @media (min-width: 992px) { 2566 @media (min-width: 992px) {
2567 .header__notifs_actived { 2567 .header__notifs_actived {
2568 padding-right: 12px; 2568 padding-right: 12px;
2569 } 2569 }
2570 } 2570 }
2571 .header__notifs_actived:after { 2571 .header__notifs_actived:after {
2572 content: ""; 2572 content: "";
2573 border: 1px solid #fff; 2573 border: 1px solid #fff;
2574 background: #377d87; 2574 background: #377d87;
2575 border-radius: 999px; 2575 border-radius: 999px;
2576 width: 10px; 2576 width: 10px;
2577 height: 10px; 2577 height: 10px;
2578 position: absolute; 2578 position: absolute;
2579 z-index: 1; 2579 z-index: 1;
2580 top: 0; 2580 top: 0;
2581 right: 0; 2581 right: 0;
2582 } 2582 }
2583 @media (min-width: 992px) { 2583 @media (min-width: 992px) {
2584 .header__notifs_actived:after { 2584 .header__notifs_actived:after {
2585 width: 8px; 2585 width: 8px;
2586 height: 8px; 2586 height: 8px;
2587 border: none; 2587 border: none;
2588 } 2588 }
2589 } 2589 }
2590 .header__burger { 2590 .header__burger {
2591 display: -webkit-box; 2591 display: -webkit-box;
2592 display: -ms-flexbox; 2592 display: -ms-flexbox;
2593 display: flex; 2593 display: flex;
2594 -webkit-box-align: center; 2594 -webkit-box-align: center;
2595 -ms-flex-align: center; 2595 -ms-flex-align: center;
2596 align-items: center; 2596 align-items: center;
2597 -webkit-box-pack: center; 2597 -webkit-box-pack: center;
2598 -ms-flex-pack: center; 2598 -ms-flex-pack: center;
2599 justify-content: center; 2599 justify-content: center;
2600 width: 24px; 2600 width: 24px;
2601 height: 24px; 2601 height: 24px;
2602 color: #377d87; 2602 color: #377d87;
2603 padding: 0; 2603 padding: 0;
2604 border: none; 2604 border: none;
2605 background: none; 2605 background: none;
2606 } 2606 }
2607 @media (min-width: 992px) { 2607 @media (min-width: 992px) {
2608 .header__burger { 2608 .header__burger {
2609 display: none; 2609 display: none;
2610 } 2610 }
2611 } 2611 }
2612 .header__burger svg { 2612 .header__burger svg {
2613 width: 20px; 2613 width: 20px;
2614 height: 20px; 2614 height: 20px;
2615 } 2615 }
2616 .header__burger svg + svg { 2616 .header__burger svg + svg {
2617 display: none; 2617 display: none;
2618 } 2618 }
2619 .header__sign { 2619 .header__sign {
2620 /*display: none;*/ 2620 /*display: none;*/
2621 } 2621 }
2622 @media (min-width: 992px) { 2622 @media (min-width: 992px) {
2623 .header__sign { 2623 .header__sign {
2624 display: -webkit-box; 2624 display: -webkit-box;
2625 display: -ms-flexbox; 2625 display: -ms-flexbox;
2626 display: flex; 2626 display: flex;
2627 } 2627 }
2628 } 2628 }
2629 2629
2630 .mob-menu { 2630 .mob-menu {
2631 display: none; 2631 display: none;
2632 position: fixed; 2632 position: fixed;
2633 bottom: 0; 2633 bottom: 0;
2634 left: 0; 2634 left: 0;
2635 width: 100vw; 2635 width: 100vw;
2636 height: calc(100vh - 42px); 2636 height: calc(100vh - 42px);
2637 z-index: 4; 2637 z-index: 4;
2638 background: #fff; 2638 background: #fff;
2639 overflow: hidden; 2639 overflow: hidden;
2640 overflow-y: auto; 2640 overflow-y: auto;
2641 padding: 50px 0; 2641 padding: 50px 0;
2642 } 2642 }
2643 .mob-menu__bottom { 2643 .mob-menu__bottom {
2644 display: -webkit-box; 2644 display: -webkit-box;
2645 display: -ms-flexbox; 2645 display: -ms-flexbox;
2646 display: flex; 2646 display: flex;
2647 -webkit-box-orient: vertical; 2647 -webkit-box-orient: vertical;
2648 -webkit-box-direction: normal; 2648 -webkit-box-direction: normal;
2649 -ms-flex-direction: column; 2649 -ms-flex-direction: column;
2650 flex-direction: column; 2650 flex-direction: column;
2651 -webkit-box-align: center; 2651 -webkit-box-align: center;
2652 -ms-flex-align: center; 2652 -ms-flex-align: center;
2653 align-items: center; 2653 align-items: center;
2654 margin-top: 80px; 2654 margin-top: 80px;
2655 } 2655 }
2656 .mob-menu__bottom .button { 2656 .mob-menu__bottom .button {
2657 min-width: 120px; 2657 min-width: 120px;
2658 } 2658 }
2659 .mob-menu__bottom-link { 2659 .mob-menu__bottom-link {
2660 text-decoration: underline; 2660 text-decoration: underline;
2661 margin-top: 50px; 2661 margin-top: 50px;
2662 } 2662 }
2663 .mob-menu__bottom-link:hover { 2663 .mob-menu__bottom-link:hover {
2664 color: #377d87; 2664 color: #377d87;
2665 } 2665 }
2666 .mob-menu__bottom-link + .mob-menu__bottom-link { 2666 .mob-menu__bottom-link + .mob-menu__bottom-link {
2667 margin-top: 10px; 2667 margin-top: 10px;
2668 } 2668 }
2669 .mob-menu__bottom .socials { 2669 .mob-menu__bottom .socials {
2670 margin-top: 35px; 2670 margin-top: 35px;
2671 } 2671 }
2672 .mob-menu .footer__mobile-menu { 2672 .mob-menu .footer__mobile-menu {
2673 opacity: 1; 2673 opacity: 1;
2674 height: auto; 2674 height: auto;
2675 overflow: visible; 2675 overflow: visible;
2676 } 2676 }
2677 .mob-menu .footer__mobile-menu-item button { 2677 .mob-menu .footer__mobile-menu-item button {
2678 -webkit-box-align: center; 2678 -webkit-box-align: center;
2679 -ms-flex-align: center; 2679 -ms-flex-align: center;
2680 align-items: center; 2680 align-items: center;
2681 } 2681 }
2682 .mob-menu .footer__mobile-menu-item div { 2682 .mob-menu .footer__mobile-menu-item div {
2683 font-size: 20px; 2683 font-size: 20px;
2684 } 2684 }
2685 .mob-menu .footer__mobile-contacts a { 2685 .mob-menu .footer__mobile-contacts a {
2686 font-size: 20px; 2686 font-size: 20px;
2687 font-weight: 700; 2687 font-weight: 700;
2688 color: #000; 2688 color: #000;
2689 text-decoration: none; 2689 text-decoration: none;
2690 } 2690 }
2691 .mob-menu .footer__mobile-contacts a:hover { 2691 .mob-menu .footer__mobile-contacts a:hover {
2692 color: #377d87; 2692 color: #377d87;
2693 } 2693 }
2694 .mob-menu .footer__mobile-menu-item button b, 2694 .mob-menu .footer__mobile-menu-item button b,
2695 .mob-menu .footer__mobile-contacts a { 2695 .mob-menu .footer__mobile-contacts a {
2696 font-size: 30px; 2696 font-size: 30px;
2697 } 2697 }
2698 2698
2699 .menu-is-actived { 2699 .menu-is-actived {
2700 overflow: hidden; 2700 overflow: hidden;
2701 } 2701 }
2702 @media (min-width: 992px) { 2702 @media (min-width: 992px) {
2703 .menu-is-actived { 2703 .menu-is-actived {
2704 overflow: auto; 2704 overflow: auto;
2705 } 2705 }
2706 } 2706 }
2707 .menu-is-actived .header__burger svg { 2707 .menu-is-actived .header__burger svg {
2708 display: none; 2708 display: none;
2709 } 2709 }
2710 .menu-is-actived .header__burger svg + svg { 2710 .menu-is-actived .header__burger svg + svg {
2711 display: block; 2711 display: block;
2712 } 2712 }
2713 .menu-is-actived .mob-menu { 2713 .menu-is-actived .mob-menu {
2714 display: block; 2714 display: block;
2715 } 2715 }
2716 @media (min-width: 992px) { 2716 @media (min-width: 992px) {
2717 .menu-is-actived .mob-menu { 2717 .menu-is-actived .mob-menu {
2718 display: none; 2718 display: none;
2719 } 2719 }
2720 } 2720 }
2721 2721
2722 .footer { 2722 .footer {
2723 -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.25); 2723 -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.25);
2724 box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.25); 2724 box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.25);
2725 background: #fff; 2725 background: #fff;
2726 position: relative; 2726 position: relative;
2727 z-index: 1; 2727 z-index: 1;
2728 overflow: hidden; 2728 overflow: hidden;
2729 } 2729 }
2730 .footer__mobile { 2730 .footer__mobile {
2731 display: -webkit-box; 2731 display: -webkit-box;
2732 display: -ms-flexbox; 2732 display: -ms-flexbox;
2733 display: flex; 2733 display: flex;
2734 -webkit-box-orient: vertical; 2734 -webkit-box-orient: vertical;
2735 -webkit-box-direction: normal; 2735 -webkit-box-direction: normal;
2736 -ms-flex-direction: column; 2736 -ms-flex-direction: column;
2737 flex-direction: column; 2737 flex-direction: column;
2738 padding: 25px 0 30px 0; 2738 padding: 25px 0 30px 0;
2739 } 2739 }
2740 @media (min-width: 768px) { 2740 @media (min-width: 768px) {
2741 .footer__mobile { 2741 .footer__mobile {
2742 padding: 30px 0; 2742 padding: 30px 0;
2743 } 2743 }
2744 } 2744 }
2745 @media (min-width: 992px) { 2745 @media (min-width: 992px) {
2746 .footer__mobile { 2746 .footer__mobile {
2747 display: none; 2747 display: none;
2748 } 2748 }
2749 } 2749 }
2750 .footer__mobile-toper { 2750 .footer__mobile-toper {
2751 display: -webkit-box; 2751 display: -webkit-box;
2752 display: -ms-flexbox; 2752 display: -ms-flexbox;
2753 display: flex; 2753 display: flex;
2754 -webkit-box-pack: justify; 2754 -webkit-box-pack: justify;
2755 -ms-flex-pack: justify; 2755 -ms-flex-pack: justify;
2756 justify-content: space-between; 2756 justify-content: space-between;
2757 -webkit-box-align: center; 2757 -webkit-box-align: center;
2758 -ms-flex-align: center; 2758 -ms-flex-align: center;
2759 align-items: center; 2759 align-items: center;
2760 padding: 0; 2760 padding: 0;
2761 border: none; 2761 border: none;
2762 background: none; 2762 background: none;
2763 } 2763 }
2764 .footer__mobile-toper a, 2764 .footer__mobile-toper a,
2765 .footer__mobile-toper b { 2765 .footer__mobile-toper b {
2766 display: -webkit-box; 2766 display: -webkit-box;
2767 display: -ms-flexbox; 2767 display: -ms-flexbox;
2768 display: flex; 2768 display: flex;
2769 -webkit-box-pack: center; 2769 -webkit-box-pack: center;
2770 -ms-flex-pack: center; 2770 -ms-flex-pack: center;
2771 justify-content: center; 2771 justify-content: center;
2772 -webkit-box-align: center; 2772 -webkit-box-align: center;
2773 -ms-flex-align: center; 2773 -ms-flex-align: center;
2774 align-items: center; 2774 align-items: center;
2775 color: #377d87; 2775 color: #377d87;
2776 } 2776 }
2777 .footer__mobile-toper a svg, 2777 .footer__mobile-toper a svg,
2778 .footer__mobile-toper b svg { 2778 .footer__mobile-toper b svg {
2779 width: 137px; 2779 width: 137px;
2780 height: 40px; 2780 height: 40px;
2781 } 2781 }
2782 .footer__mobile-toper span { 2782 .footer__mobile-toper span {
2783 width: 40px; 2783 width: 40px;
2784 height: 40px; 2784 height: 40px;
2785 display: -webkit-box; 2785 display: -webkit-box;
2786 display: -ms-flexbox; 2786 display: -ms-flexbox;
2787 display: flex; 2787 display: flex;
2788 -webkit-box-pack: center; 2788 -webkit-box-pack: center;
2789 -ms-flex-pack: center; 2789 -ms-flex-pack: center;
2790 justify-content: center; 2790 justify-content: center;
2791 -webkit-box-align: center; 2791 -webkit-box-align: center;
2792 -ms-flex-align: center; 2792 -ms-flex-align: center;
2793 align-items: center; 2793 align-items: center;
2794 background: #377d87; 2794 background: #377d87;
2795 color: #fff; 2795 color: #fff;
2796 border-radius: 999px; 2796 border-radius: 999px;
2797 } 2797 }
2798 .footer__mobile-toper span svg { 2798 .footer__mobile-toper span svg {
2799 width: 10px; 2799 width: 10px;
2800 height: 10px; 2800 height: 10px;
2801 -webkit-transition: 0.3s; 2801 -webkit-transition: 0.3s;
2802 transition: 0.3s; 2802 transition: 0.3s;
2803 } 2803 }
2804 .footer__mobile-toper.active span svg { 2804 .footer__mobile-toper.active span svg {
2805 -webkit-transform: rotate(180deg); 2805 -webkit-transform: rotate(180deg);
2806 -ms-transform: rotate(180deg); 2806 -ms-transform: rotate(180deg);
2807 transform: rotate(180deg); 2807 transform: rotate(180deg);
2808 } 2808 }
2809 .footer__mobile-menu { 2809 .footer__mobile-menu {
2810 height: 0; 2810 height: 0;
2811 opacity: 0; 2811 opacity: 0;
2812 overflow: hidden; 2812 overflow: hidden;
2813 -webkit-transition: 0.3s; 2813 -webkit-transition: 0.3s;
2814 transition: 0.3s; 2814 transition: 0.3s;
2815 display: -webkit-box; 2815 display: -webkit-box;
2816 display: -ms-flexbox; 2816 display: -ms-flexbox;
2817 display: flex; 2817 display: flex;
2818 -webkit-box-orient: vertical; 2818 -webkit-box-orient: vertical;
2819 -webkit-box-direction: normal; 2819 -webkit-box-direction: normal;
2820 -ms-flex-direction: column; 2820 -ms-flex-direction: column;
2821 flex-direction: column; 2821 flex-direction: column;
2822 gap: 30px; 2822 gap: 30px;
2823 } 2823 }
2824 @media (min-width: 768px) { 2824 @media (min-width: 768px) {
2825 .footer__mobile-menu { 2825 .footer__mobile-menu {
2826 display: grid; 2826 display: grid;
2827 grid-template-columns: 1fr 1fr; 2827 grid-template-columns: 1fr 1fr;
2828 gap: 100px; 2828 gap: 100px;
2829 } 2829 }
2830 } 2830 }
2831 .footer__mobile-menu-item { 2831 .footer__mobile-menu-item {
2832 display: -webkit-box; 2832 display: -webkit-box;
2833 display: -ms-flexbox; 2833 display: -ms-flexbox;
2834 display: flex; 2834 display: flex;
2835 -webkit-box-orient: vertical; 2835 -webkit-box-orient: vertical;
2836 -webkit-box-direction: normal; 2836 -webkit-box-direction: normal;
2837 -ms-flex-direction: column; 2837 -ms-flex-direction: column;
2838 flex-direction: column; 2838 flex-direction: column;
2839 } 2839 }
2840 .footer__mobile-menu-item button { 2840 .footer__mobile-menu-item button {
2841 display: -webkit-box; 2841 display: -webkit-box;
2842 display: -ms-flexbox; 2842 display: -ms-flexbox;
2843 display: flex; 2843 display: flex;
2844 -webkit-box-align: start; 2844 -webkit-box-align: start;
2845 -ms-flex-align: start; 2845 -ms-flex-align: start;
2846 align-items: flex-start; 2846 align-items: flex-start;
2847 padding: 0; 2847 padding: 0;
2848 border: none; 2848 border: none;
2849 background: none; 2849 background: none;
2850 } 2850 }
2851 .footer__mobile-menu-item button.active { 2851 .footer__mobile-menu-item button.active {
2852 color: #377d87; 2852 color: #377d87;
2853 } 2853 }
2854 .footer__mobile-menu-item button b { 2854 .footer__mobile-menu-item button b {
2855 width: calc(100% - 24px); 2855 width: calc(100% - 24px);
2856 padding-right: 12px; 2856 padding-right: 12px;
2857 min-height: 24px; 2857 min-height: 24px;
2858 display: -webkit-box; 2858 display: -webkit-box;
2859 display: -ms-flexbox; 2859 display: -ms-flexbox;
2860 display: flex; 2860 display: flex;
2861 -webkit-box-align: center; 2861 -webkit-box-align: center;
2862 -ms-flex-align: center; 2862 -ms-flex-align: center;
2863 align-items: center; 2863 align-items: center;
2864 font-size: 20px; 2864 font-size: 20px;
2865 font-weight: 700; 2865 font-weight: 700;
2866 } 2866 }
2867 .footer__mobile-menu-item button span { 2867 .footer__mobile-menu-item button span {
2868 width: 24px; 2868 width: 24px;
2869 height: 24px; 2869 height: 24px;
2870 display: -webkit-box; 2870 display: -webkit-box;
2871 display: -ms-flexbox; 2871 display: -ms-flexbox;
2872 display: flex; 2872 display: flex;
2873 -webkit-box-pack: center; 2873 -webkit-box-pack: center;
2874 -ms-flex-pack: center; 2874 -ms-flex-pack: center;
2875 justify-content: center; 2875 justify-content: center;
2876 -webkit-box-align: center; 2876 -webkit-box-align: center;
2877 -ms-flex-align: center; 2877 -ms-flex-align: center;
2878 align-items: center; 2878 align-items: center;
2879 padding: 0; 2879 padding: 0;
2880 border: none; 2880 border: none;
2881 background: none; 2881 background: none;
2882 } 2882 }
2883 .footer__mobile-menu-item button svg { 2883 .footer__mobile-menu-item button svg {
2884 width: 12px; 2884 width: 12px;
2885 height: 12px; 2885 height: 12px;
2886 -webkit-transition: 0.3s; 2886 -webkit-transition: 0.3s;
2887 transition: 0.3s; 2887 transition: 0.3s;
2888 -webkit-transform: rotate(180deg); 2888 -webkit-transform: rotate(180deg);
2889 -ms-transform: rotate(180deg); 2889 -ms-transform: rotate(180deg);
2890 transform: rotate(180deg); 2890 transform: rotate(180deg);
2891 } 2891 }
2892 .footer__mobile-menu-item button.active svg { 2892 .footer__mobile-menu-item button.active svg {
2893 -webkit-transform: rotate(0deg); 2893 -webkit-transform: rotate(0deg);
2894 -ms-transform: rotate(0deg); 2894 -ms-transform: rotate(0deg);
2895 transform: rotate(0deg); 2895 transform: rotate(0deg);
2896 } 2896 }
2897 .footer__mobile-menu-item div { 2897 .footer__mobile-menu-item div {
2898 height: 0; 2898 height: 0;
2899 opacity: 0; 2899 opacity: 0;
2900 overflow: hidden; 2900 overflow: hidden;
2901 -webkit-transition: 0.3s; 2901 -webkit-transition: 0.3s;
2902 transition: 0.3s; 2902 transition: 0.3s;
2903 display: -webkit-box; 2903 display: -webkit-box;
2904 display: -ms-flexbox; 2904 display: -ms-flexbox;
2905 display: flex; 2905 display: flex;
2906 -webkit-box-orient: vertical; 2906 -webkit-box-orient: vertical;
2907 -webkit-box-direction: normal; 2907 -webkit-box-direction: normal;
2908 -ms-flex-direction: column; 2908 -ms-flex-direction: column;
2909 flex-direction: column; 2909 flex-direction: column;
2910 gap: 15px; 2910 gap: 15px;
2911 } 2911 }
2912 .footer__mobile-menu-item div a:hover { 2912 .footer__mobile-menu-item div a:hover {
2913 color: #377d87; 2913 color: #377d87;
2914 } 2914 }
2915 .footer__mobile-menu-item .active + div { 2915 .footer__mobile-menu-item .active + div {
2916 opacity: 1; 2916 opacity: 1;
2917 height: auto; 2917 height: auto;
2918 overflow: visible; 2918 overflow: visible;
2919 padding-top: 15px; 2919 padding-top: 15px;
2920 } 2920 }
2921 .active + .footer__mobile-menu { 2921 .active + .footer__mobile-menu {
2922 opacity: 1; 2922 opacity: 1;
2923 height: auto; 2923 height: auto;
2924 overflow: visible; 2924 overflow: visible;
2925 padding-top: 35px; 2925 padding-top: 35px;
2926 } 2926 }
2927 .footer__mobile-contacts { 2927 .footer__mobile-contacts {
2928 display: -webkit-box; 2928 display: -webkit-box;
2929 display: -ms-flexbox; 2929 display: -ms-flexbox;
2930 display: flex; 2930 display: flex;
2931 -webkit-box-pack: justify; 2931 -webkit-box-pack: justify;
2932 -ms-flex-pack: justify; 2932 -ms-flex-pack: justify;
2933 justify-content: space-between; 2933 justify-content: space-between;
2934 -webkit-box-align: start; 2934 -webkit-box-align: start;
2935 -ms-flex-align: start; 2935 -ms-flex-align: start;
2936 align-items: flex-start; 2936 align-items: flex-start;
2937 -ms-flex-wrap: wrap; 2937 -ms-flex-wrap: wrap;
2938 flex-wrap: wrap; 2938 flex-wrap: wrap;
2939 margin-top: 30px; 2939 margin-top: 30px;
2940 } 2940 }
2941 .footer__mobile-contacts b { 2941 .footer__mobile-contacts b {
2942 font-size: 20px; 2942 font-size: 20px;
2943 font-weight: 700; 2943 font-weight: 700;
2944 width: 100%; 2944 width: 100%;
2945 margin-bottom: 20px; 2945 margin-bottom: 20px;
2946 } 2946 }
2947 .footer__mobile-contacts a { 2947 .footer__mobile-contacts a {
2948 color: #377d87; 2948 color: #377d87;
2949 text-decoration: underline; 2949 text-decoration: underline;
2950 } 2950 }
2951 .footer__mobile-contacts a + a { 2951 .footer__mobile-contacts a + a {
2952 color: #000; 2952 color: #000;
2953 } 2953 }
2954 .footer__mobile-bottom { 2954 .footer__mobile-bottom {
2955 display: -webkit-box; 2955 display: -webkit-box;
2956 display: -ms-flexbox; 2956 display: -ms-flexbox;
2957 display: flex; 2957 display: flex;
2958 -webkit-box-orient: vertical; 2958 -webkit-box-orient: vertical;
2959 -webkit-box-direction: normal; 2959 -webkit-box-direction: normal;
2960 -ms-flex-direction: column; 2960 -ms-flex-direction: column;
2961 flex-direction: column; 2961 flex-direction: column;
2962 -webkit-box-align: center; 2962 -webkit-box-align: center;
2963 -ms-flex-align: center; 2963 -ms-flex-align: center;
2964 align-items: center; 2964 align-items: center;
2965 text-align: center; 2965 text-align: center;
2966 gap: 20px; 2966 gap: 20px;
2967 margin-top: 100px; 2967 margin-top: 100px;
2968 } 2968 }
2969 .footer__mobile-links { 2969 .footer__mobile-links {
2970 display: -webkit-box; 2970 display: -webkit-box;
2971 display: -ms-flexbox; 2971 display: -ms-flexbox;
2972 display: flex; 2972 display: flex;
2973 -webkit-box-orient: vertical; 2973 -webkit-box-orient: vertical;
2974 -webkit-box-direction: normal; 2974 -webkit-box-direction: normal;
2975 -ms-flex-direction: column; 2975 -ms-flex-direction: column;
2976 flex-direction: column; 2976 flex-direction: column;
2977 -webkit-box-align: center; 2977 -webkit-box-align: center;
2978 -ms-flex-align: center; 2978 -ms-flex-align: center;
2979 align-items: center; 2979 align-items: center;
2980 gap: 10px; 2980 gap: 10px;
2981 } 2981 }
2982 .footer__mobile-links a:hover { 2982 .footer__mobile-links a:hover {
2983 color: #377d87; 2983 color: #377d87;
2984 } 2984 }
2985 .footer__mobile-links span { 2985 .footer__mobile-links span {
2986 width: 60px; 2986 width: 60px;
2987 height: 1px; 2987 height: 1px;
2988 background: #377d87; 2988 background: #377d87;
2989 } 2989 }
2990 .footer__main { 2990 .footer__main {
2991 display: none; 2991 display: none;
2992 padding: 55px 0 20px 0; 2992 padding: 55px 0 20px 0;
2993 -webkit-box-orient: vertical; 2993 -webkit-box-orient: vertical;
2994 -webkit-box-direction: normal; 2994 -webkit-box-direction: normal;
2995 -ms-flex-direction: column; 2995 -ms-flex-direction: column;
2996 flex-direction: column; 2996 flex-direction: column;
2997 gap: 70px; 2997 gap: 70px;
2998 } 2998 }
2999 @media (min-width: 992px) { 2999 @media (min-width: 992px) {
3000 .footer__main { 3000 .footer__main {
3001 display: -webkit-box; 3001 display: -webkit-box;
3002 display: -ms-flexbox; 3002 display: -ms-flexbox;
3003 display: flex; 3003 display: flex;
3004 } 3004 }
3005 } 3005 }
3006 .footer__main-body { 3006 .footer__main-body {
3007 display: -webkit-box; 3007 display: -webkit-box;
3008 display: -ms-flexbox; 3008 display: -ms-flexbox;
3009 display: flex; 3009 display: flex;
3010 -webkit-box-pack: justify; 3010 -webkit-box-pack: justify;
3011 -ms-flex-pack: justify; 3011 -ms-flex-pack: justify;
3012 justify-content: space-between; 3012 justify-content: space-between;
3013 -webkit-box-align: start; 3013 -webkit-box-align: start;
3014 -ms-flex-align: start; 3014 -ms-flex-align: start;
3015 align-items: flex-start; 3015 align-items: flex-start;
3016 } 3016 }
3017 .footer__main-logo { 3017 .footer__main-logo {
3018 display: -webkit-box; 3018 display: -webkit-box;
3019 display: -ms-flexbox; 3019 display: -ms-flexbox;
3020 display: flex; 3020 display: flex;
3021 -webkit-box-pack: center; 3021 -webkit-box-pack: center;
3022 -ms-flex-pack: center; 3022 -ms-flex-pack: center;
3023 justify-content: center; 3023 justify-content: center;
3024 -webkit-box-align: center; 3024 -webkit-box-align: center;
3025 -ms-flex-align: center; 3025 -ms-flex-align: center;
3026 align-items: center; 3026 align-items: center;
3027 color: #377d87; 3027 color: #377d87;
3028 } 3028 }
3029 .footer__main-logo svg { 3029 .footer__main-logo svg {
3030 width: 182px; 3030 width: 182px;
3031 height: 54px; 3031 height: 54px;
3032 } 3032 }
3033 .footer__main-title { 3033 .footer__main-title {
3034 font-size: 20px; 3034 font-size: 20px;
3035 font-weight: 700; 3035 font-weight: 700;
3036 margin-bottom: 16px; 3036 margin-bottom: 16px;
3037 } 3037 }
3038 .footer__main-col { 3038 .footer__main-col {
3039 display: -webkit-box; 3039 display: -webkit-box;
3040 display: -ms-flexbox; 3040 display: -ms-flexbox;
3041 display: flex; 3041 display: flex;
3042 -webkit-box-orient: vertical; 3042 -webkit-box-orient: vertical;
3043 -webkit-box-direction: normal; 3043 -webkit-box-direction: normal;
3044 -ms-flex-direction: column; 3044 -ms-flex-direction: column;
3045 flex-direction: column; 3045 flex-direction: column;
3046 -webkit-box-align: start; 3046 -webkit-box-align: start;
3047 -ms-flex-align: start; 3047 -ms-flex-align: start;
3048 align-items: flex-start; 3048 align-items: flex-start;
3049 } 3049 }
3050 .footer__main-col nav { 3050 .footer__main-col nav {
3051 display: -webkit-box; 3051 display: -webkit-box;
3052 display: -ms-flexbox; 3052 display: -ms-flexbox;
3053 display: flex; 3053 display: flex;
3054 -webkit-box-orient: vertical; 3054 -webkit-box-orient: vertical;
3055 -webkit-box-direction: normal; 3055 -webkit-box-direction: normal;
3056 -ms-flex-direction: column; 3056 -ms-flex-direction: column;
3057 flex-direction: column; 3057 flex-direction: column;
3058 -webkit-box-align: start; 3058 -webkit-box-align: start;
3059 -ms-flex-align: start; 3059 -ms-flex-align: start;
3060 align-items: flex-start; 3060 align-items: flex-start;
3061 gap: 8px; 3061 gap: 8px;
3062 } 3062 }
3063 .footer__main-col nav a:hover { 3063 .footer__main-col nav a:hover {
3064 color: #377d87; 3064 color: #377d87;
3065 } 3065 }
3066 .footer__main-contacts { 3066 .footer__main-contacts {
3067 display: -webkit-box; 3067 display: -webkit-box;
3068 display: -ms-flexbox; 3068 display: -ms-flexbox;
3069 display: flex; 3069 display: flex;
3070 -webkit-box-orient: vertical; 3070 -webkit-box-orient: vertical;
3071 -webkit-box-direction: normal; 3071 -webkit-box-direction: normal;
3072 -ms-flex-direction: column; 3072 -ms-flex-direction: column;
3073 flex-direction: column; 3073 flex-direction: column;
3074 -webkit-box-align: start; 3074 -webkit-box-align: start;
3075 -ms-flex-align: start; 3075 -ms-flex-align: start;
3076 align-items: flex-start; 3076 align-items: flex-start;
3077 gap: 16px; 3077 gap: 16px;
3078 margin-bottom: 16px; 3078 margin-bottom: 16px;
3079 } 3079 }
3080 .footer__main-contacts a { 3080 .footer__main-contacts a {
3081 color: #377d87; 3081 color: #377d87;
3082 text-decoration: underline; 3082 text-decoration: underline;
3083 } 3083 }
3084 .footer__main-contacts a + a { 3084 .footer__main-contacts a + a {
3085 color: #000; 3085 color: #000;
3086 } 3086 }
3087 .footer__main-copy { 3087 .footer__main-copy {
3088 display: -webkit-box; 3088 display: -webkit-box;
3089 display: -ms-flexbox; 3089 display: -ms-flexbox;
3090 display: flex; 3090 display: flex;
3091 -webkit-box-pack: justify; 3091 -webkit-box-pack: justify;
3092 -ms-flex-pack: justify; 3092 -ms-flex-pack: justify;
3093 justify-content: space-between; 3093 justify-content: space-between;
3094 -webkit-box-align: center; 3094 -webkit-box-align: center;
3095 -ms-flex-align: center; 3095 -ms-flex-align: center;
3096 align-items: center; 3096 align-items: center;
3097 font-size: 14px; 3097 font-size: 14px;
3098 line-height: 1.4; 3098 line-height: 1.4;
3099 } 3099 }
3100 .footer__main-copy nav { 3100 .footer__main-copy nav {
3101 display: -webkit-box; 3101 display: -webkit-box;
3102 display: -ms-flexbox; 3102 display: -ms-flexbox;
3103 display: flex; 3103 display: flex;
3104 -webkit-box-align: center; 3104 -webkit-box-align: center;
3105 -ms-flex-align: center; 3105 -ms-flex-align: center;
3106 align-items: center; 3106 align-items: center;
3107 gap: 10px; 3107 gap: 10px;
3108 } 3108 }
3109 .footer__main-copy nav a:hover { 3109 .footer__main-copy nav a:hover {
3110 color: #377d87; 3110 color: #377d87;
3111 } 3111 }
3112 .footer__main-copy nav span { 3112 .footer__main-copy nav span {
3113 width: 1px; 3113 width: 1px;
3114 height: 20px; 3114 height: 20px;
3115 background: #000; 3115 background: #000;
3116 } 3116 }
3117 3117
3118 .main { 3118 .main {
3119 position: relative; 3119 position: relative;
3120 overflow: hidden; 3120 overflow: hidden;
3121 padding: 30px 0; 3121 padding: 30px 0;
3122 } 3122 }
3123 @media (min-width: 768px) { 3123 @media (min-width: 768px) {
3124 .main { 3124 .main {
3125 padding: 40px 0; 3125 padding: 40px 0;
3126 } 3126 }
3127 } 3127 }
3128 @media (min-width: 992px) { 3128 @media (min-width: 992px) {
3129 .main { 3129 .main {
3130 padding: 50px 0; 3130 padding: 50px 0;
3131 } 3131 }
3132 } 3132 }
3133 @media (min-width: 1280px) { 3133 @media (min-width: 1280px) {
3134 .main { 3134 .main {
3135 padding: 60px 0; 3135 padding: 60px 0;
3136 } 3136 }
3137 } 3137 }
3138 .main h2 { 3138 .main h2 {
3139 margin: 0; 3139 margin: 0;
3140 font-weight: 700; 3140 font-weight: 700;
3141 font-size: 30px; 3141 font-size: 30px;
3142 } 3142 }
3143 @media (min-width: 768px) { 3143 @media (min-width: 768px) {
3144 .main h2 { 3144 .main h2 {
3145 font-size: 44px; 3145 font-size: 44px;
3146 } 3146 }
3147 } 3147 }
3148 .main h3 { 3148 .main h3 {
3149 margin: 0; 3149 margin: 0;
3150 font-weight: 700; 3150 font-weight: 700;
3151 font-size: 22px; 3151 font-size: 22px;
3152 } 3152 }
3153 @media (min-width: 768px) { 3153 @media (min-width: 768px) {
3154 .main h3 { 3154 .main h3 {
3155 font-size: 28px; 3155 font-size: 28px;
3156 } 3156 }
3157 } 3157 }
3158 .main p { 3158 .main p {
3159 margin: 0; 3159 margin: 0;
3160 font-size: 14px; 3160 font-size: 14px;
3161 line-height: 1.4; 3161 line-height: 1.4;
3162 } 3162 }
3163 @media (min-width: 768px) { 3163 @media (min-width: 768px) {
3164 .main p { 3164 .main p {
3165 font-size: 18px; 3165 font-size: 18px;
3166 } 3166 }
3167 } 3167 }
3168 .main p a { 3168 .main p a {
3169 color: #4d88d9; 3169 color: #4d88d9;
3170 } 3170 }
3171 .main p a:hover { 3171 .main p a:hover {
3172 color: #377d87; 3172 color: #377d87;
3173 } 3173 }
3174 .main__breadcrumbs { 3174 .main__breadcrumbs {
3175 margin-bottom: 20px; 3175 margin-bottom: 20px;
3176 } 3176 }
3177 @media (min-width: 768px) { 3177 @media (min-width: 768px) {
3178 .main__breadcrumbs { 3178 .main__breadcrumbs {
3179 margin-bottom: 40px; 3179 margin-bottom: 40px;
3180 } 3180 }
3181 } 3181 }
3182 .main__content { 3182 .main__content {
3183 display: -webkit-box; 3183 display: -webkit-box;
3184 display: -ms-flexbox; 3184 display: -ms-flexbox;
3185 display: flex; 3185 display: flex;
3186 -webkit-box-orient: vertical; 3186 -webkit-box-orient: vertical;
3187 -webkit-box-direction: normal; 3187 -webkit-box-direction: normal;
3188 -ms-flex-direction: column; 3188 -ms-flex-direction: column;
3189 flex-direction: column; 3189 flex-direction: column;
3190 gap: 20px; 3190 gap: 20px;
3191 font-size: 14px; 3191 font-size: 14px;
3192 } 3192 }
3193 @media (min-width: 992px) { 3193 @media (min-width: 992px) {
3194 .main__content { 3194 .main__content {
3195 font-size: 18px; 3195 font-size: 18px;
3196 gap: 32px; 3196 gap: 32px;
3197 } 3197 }
3198 } 3198 }
3199 .main__content-item { 3199 .main__content-item {
3200 display: -webkit-box; 3200 display: -webkit-box;
3201 display: -ms-flexbox; 3201 display: -ms-flexbox;
3202 display: flex; 3202 display: flex;
3203 -webkit-box-orient: vertical; 3203 -webkit-box-orient: vertical;
3204 -webkit-box-direction: normal; 3204 -webkit-box-direction: normal;
3205 -ms-flex-direction: column; 3205 -ms-flex-direction: column;
3206 flex-direction: column; 3206 flex-direction: column;
3207 gap: 16px; 3207 gap: 16px;
3208 } 3208 }
3209 .main__content h1, 3209 .main__content h1,
3210 .main__content h2, 3210 .main__content h2,
3211 .main__content h3, 3211 .main__content h3,
3212 .main__content h4, 3212 .main__content h4,
3213 .main__content h5, 3213 .main__content h5,
3214 .main__content h6 { 3214 .main__content h6 {
3215 color: #000; 3215 color: #000;
3216 } 3216 }
3217 .main__content ul, 3217 .main__content ul,
3218 .main__content ol { 3218 .main__content ol {
3219 padding: 0; 3219 padding: 0;
3220 margin: 0; 3220 margin: 0;
3221 padding-left: 20px; 3221 padding-left: 20px;
3222 display: -webkit-box; 3222 display: -webkit-box;
3223 display: -ms-flexbox; 3223 display: -ms-flexbox;
3224 display: flex; 3224 display: flex;
3225 -webkit-box-orient: vertical; 3225 -webkit-box-orient: vertical;
3226 -webkit-box-direction: normal; 3226 -webkit-box-direction: normal;
3227 -ms-flex-direction: column; 3227 -ms-flex-direction: column;
3228 flex-direction: column; 3228 flex-direction: column;
3229 gap: 8px; 3229 gap: 8px;
3230 } 3230 }
3231 @media (min-width: 992px) { 3231 @media (min-width: 992px) {
3232 .main__content ul, 3232 .main__content ul,
3233 .main__content ol { 3233 .main__content ol {
3234 gap: 16px; 3234 gap: 16px;
3235 padding-left: 30px; 3235 padding-left: 30px;
3236 } 3236 }
3237 } 3237 }
3238 .main__content li ul, 3238 .main__content li ul,
3239 .main__content li ol { 3239 .main__content li ol {
3240 margin-top: 8px; 3240 margin-top: 8px;
3241 } 3241 }
3242 @media (min-width: 992px) { 3242 @media (min-width: 992px) {
3243 .main__content li ul, 3243 .main__content li ul,
3244 .main__content li ol { 3244 .main__content li ol {
3245 margin-top: 16px; 3245 margin-top: 16px;
3246 } 3246 }
3247 } 3247 }
3248 .main__content li ul li, 3248 .main__content li ul li,
3249 .main__content li ol li { 3249 .main__content li ol li {
3250 list-style-type: disc; 3250 list-style-type: disc;
3251 } 3251 }
3252 .main__gallery { 3252 .main__gallery {
3253 display: -webkit-box; 3253 display: -webkit-box;
3254 display: -ms-flexbox; 3254 display: -ms-flexbox;
3255 display: flex; 3255 display: flex;
3256 -webkit-box-orient: vertical; 3256 -webkit-box-orient: vertical;
3257 -webkit-box-direction: normal; 3257 -webkit-box-direction: normal;
3258 -ms-flex-direction: column; 3258 -ms-flex-direction: column;
3259 flex-direction: column; 3259 flex-direction: column;
3260 gap: 20px; 3260 gap: 20px;
3261 } 3261 }
3262 @media (min-width: 768px) { 3262 @media (min-width: 768px) {
3263 .main__gallery { 3263 .main__gallery {
3264 display: grid; 3264 display: grid;
3265 grid-template-columns: repeat(2, 1fr); 3265 grid-template-columns: repeat(2, 1fr);
3266 } 3266 }
3267 } 3267 }
3268 @media (min-width: 992px) { 3268 @media (min-width: 992px) {
3269 .main__gallery { 3269 .main__gallery {
3270 grid-template-columns: repeat(3, 1fr); 3270 grid-template-columns: repeat(3, 1fr);
3271 } 3271 }
3272 } 3272 }
3273 .main__gallery-item { 3273 .main__gallery-item {
3274 width: 100%; 3274 width: 100%;
3275 aspect-ratio: 400/224; 3275 aspect-ratio: 400/224;
3276 border-radius: 30px; 3276 border-radius: 30px;
3277 position: relative; 3277 position: relative;
3278 overflow: hidden; 3278 overflow: hidden;
3279 } 3279 }
3280 .main__gallery-item:hover { 3280 .main__gallery-item:hover {
3281 -webkit-filter: brightness(1.1); 3281 -webkit-filter: brightness(1.1);
3282 filter: brightness(1.1); 3282 filter: brightness(1.1);
3283 } 3283 }
3284 .main__gallery-item img { 3284 .main__gallery-item img {
3285 position: absolute; 3285 position: absolute;
3286 top: 0; 3286 top: 0;
3287 left: 0; 3287 left: 0;
3288 width: 100%; 3288 width: 100%;
3289 height: 100%; 3289 height: 100%;
3290 -o-object-fit: cover; 3290 -o-object-fit: cover;
3291 object-fit: cover; 3291 object-fit: cover;
3292 } 3292 }
3293 .main__employers { 3293 .main__employers {
3294 display: -webkit-box; 3294 display: -webkit-box;
3295 display: -ms-flexbox; 3295 display: -ms-flexbox;
3296 display: flex; 3296 display: flex;
3297 -webkit-box-orient: vertical; 3297 -webkit-box-orient: vertical;
3298 -webkit-box-direction: normal; 3298 -webkit-box-direction: normal;
3299 -ms-flex-direction: column; 3299 -ms-flex-direction: column;
3300 flex-direction: column; 3300 flex-direction: column;
3301 gap: 10px; 3301 gap: 10px;
3302 } 3302 }
3303 @media (min-width: 768px) { 3303 @media (min-width: 768px) {
3304 .main__employers { 3304 .main__employers {
3305 gap: 30px; 3305 gap: 30px;
3306 } 3306 }
3307 } 3307 }
3308 .main__employers-body { 3308 .main__employers-body {
3309 display: none; 3309 display: none;
3310 -webkit-box-orient: vertical; 3310 -webkit-box-orient: vertical;
3311 -webkit-box-direction: normal; 3311 -webkit-box-direction: normal;
3312 -ms-flex-direction: column; 3312 -ms-flex-direction: column;
3313 flex-direction: column; 3313 flex-direction: column;
3314 gap: 20px; 3314 gap: 20px;
3315 } 3315 }
3316 @media (min-width: 992px) { 3316 @media (min-width: 992px) {
3317 .main__employers-body { 3317 .main__employers-body {
3318 gap: 30px; 3318 gap: 30px;
3319 } 3319 }
3320 } 3320 }
3321 .main__employers-body.showed { 3321 .main__employers-body.showed {
3322 display: -webkit-box; 3322 display: -webkit-box;
3323 display: -ms-flexbox; 3323 display: -ms-flexbox;
3324 display: flex; 3324 display: flex;
3325 } 3325 }
3326 .main__employers-item { 3326 .main__employers-item {
3327 display: -webkit-box; 3327 display: -webkit-box;
3328 display: -ms-flexbox; 3328 display: -ms-flexbox;
3329 display: flex; 3329 display: flex;
3330 -webkit-box-orient: vertical; 3330 -webkit-box-orient: vertical;
3331 -webkit-box-direction: normal; 3331 -webkit-box-direction: normal;
3332 -ms-flex-direction: column; 3332 -ms-flex-direction: column;
3333 flex-direction: column; 3333 flex-direction: column;
3334 border: 1px solid #cecece; 3334 border: 1px solid #cecece;
3335 border-radius: 8px; 3335 border-radius: 8px;
3336 position: relative; 3336 position: relative;
3337 overflow: hidden; 3337 overflow: hidden;
3338 padding: 10px; 3338 padding: 10px;
3339 padding-top: 50px; 3339 padding-top: 50px;
3340 padding-bottom: 30px; 3340 padding-bottom: 30px;
3341 } 3341 }
3342 @media (min-width: 768px) { 3342 @media (min-width: 768px) {
3343 .main__employers-item { 3343 .main__employers-item {
3344 -webkit-box-orient: horizontal; 3344 -webkit-box-orient: horizontal;
3345 -webkit-box-direction: normal; 3345 -webkit-box-direction: normal;
3346 -ms-flex-direction: row; 3346 -ms-flex-direction: row;
3347 flex-direction: row; 3347 flex-direction: row;
3348 -webkit-box-align: center; 3348 -webkit-box-align: center;
3349 -ms-flex-align: center; 3349 -ms-flex-align: center;
3350 align-items: center; 3350 align-items: center;
3351 -webkit-box-pack: justify; 3351 -webkit-box-pack: justify;
3352 -ms-flex-pack: justify; 3352 -ms-flex-pack: justify;
3353 justify-content: space-between; 3353 justify-content: space-between;
3354 padding: 55px 20px; 3354 padding: 55px 20px;
3355 } 3355 }
3356 } 3356 }
3357 @media (min-width: 1280px) { 3357 @media (min-width: 1280px) {
3358 .main__employers-item { 3358 .main__employers-item {
3359 padding-left: 55px; 3359 padding-left: 55px;
3360 } 3360 }
3361 } 3361 }
3362 .main__employers-item-inner { 3362 .main__employers-item-inner {
3363 display: -webkit-box; 3363 display: -webkit-box;
3364 display: -ms-flexbox; 3364 display: -ms-flexbox;
3365 display: flex; 3365 display: flex;
3366 -webkit-box-orient: vertical; 3366 -webkit-box-orient: vertical;
3367 -webkit-box-direction: normal; 3367 -webkit-box-direction: normal;
3368 -ms-flex-direction: column; 3368 -ms-flex-direction: column;
3369 flex-direction: column; 3369 flex-direction: column;
3370 } 3370 }
3371 @media (min-width: 768px) { 3371 @media (min-width: 768px) {
3372 .main__employers-item-inner { 3372 .main__employers-item-inner {
3373 width: calc(100% - 200px); 3373 width: calc(100% - 200px);
3374 padding-right: 40px; 3374 padding-right: 40px;
3375 } 3375 }
3376 } 3376 }
3377 @media (min-width: 992px) { 3377 @media (min-width: 992px) {
3378 .main__employers-item-inner { 3378 .main__employers-item-inner {
3379 -webkit-box-orient: horizontal; 3379 -webkit-box-orient: horizontal;
3380 -webkit-box-direction: normal; 3380 -webkit-box-direction: normal;
3381 -ms-flex-direction: row; 3381 -ms-flex-direction: row;
3382 flex-direction: row; 3382 flex-direction: row;
3383 -webkit-box-align: center; 3383 -webkit-box-align: center;
3384 -ms-flex-align: center; 3384 -ms-flex-align: center;
3385 align-items: center; 3385 align-items: center;
3386 } 3386 }
3387 } 3387 }
3388 .main__employers-item-pic { 3388 .main__employers-item-pic {
3389 height: 30px; 3389 height: 30px;
3390 position: absolute; 3390 position: absolute;
3391 top: 10px; 3391 top: 10px;
3392 left: 10px; 3392 left: 10px;
3393 } 3393 }
3394 @media (min-width: 768px) { 3394 @media (min-width: 768px) {
3395 .main__employers-item-pic { 3395 .main__employers-item-pic {
3396 position: static; 3396 position: static;
3397 width: 150px; 3397 width: 150px;
3398 height: auto; 3398 height: auto;
3399 max-height: 150px; 3399 max-height: 150px;
3400 -o-object-fit: contain; 3400 -o-object-fit: contain;
3401 object-fit: contain; 3401 object-fit: contain;
3402 } 3402 }
3403 } 3403 }
3404 .main__employers-item-body { 3404 .main__employers-item-body {
3405 font-size: 12px; 3405 font-size: 12px;
3406 display: -webkit-box; 3406 display: -webkit-box;
3407 display: -ms-flexbox; 3407 display: -ms-flexbox;
3408 display: flex; 3408 display: flex;
3409 -webkit-box-orient: vertical; 3409 -webkit-box-orient: vertical;
3410 -webkit-box-direction: normal; 3410 -webkit-box-direction: normal;
3411 -ms-flex-direction: column; 3411 -ms-flex-direction: column;
3412 flex-direction: column; 3412 flex-direction: column;
3413 gap: 10px; 3413 gap: 10px;
3414 } 3414 }
3415 @media (min-width: 768px) { 3415 @media (min-width: 768px) {
3416 .main__employers-item-body { 3416 .main__employers-item-body {
3417 font-size: 16px; 3417 font-size: 16px;
3418 padding-top: 20px; 3418 padding-top: 20px;
3419 } 3419 }
3420 } 3420 }
3421 @media (min-width: 992px) { 3421 @media (min-width: 992px) {
3422 .main__employers-item-body { 3422 .main__employers-item-body {
3423 width: calc(100% - 150px); 3423 width: calc(100% - 150px);
3424 padding: 0; 3424 padding: 0;
3425 padding-left: 40px; 3425 padding-left: 40px;
3426 } 3426 }
3427 } 3427 }
3428 .main__employers-item-body b { 3428 .main__employers-item-body b {
3429 font-weight: 700; 3429 font-weight: 700;
3430 } 3430 }
3431 @media (min-width: 768px) { 3431 @media (min-width: 768px) {
3432 .main__employers-item-body b { 3432 .main__employers-item-body b {
3433 font-size: 20px; 3433 font-size: 20px;
3434 } 3434 }
3435 } 3435 }
3436 .main__employers-item-body i { 3436 .main__employers-item-body i {
3437 font-style: normal; 3437 font-style: normal;
3438 color: #000; 3438 color: #000;
3439 } 3439 }
3440 .main__employers-item-more { 3440 .main__employers-item-more {
3441 position: absolute; 3441 position: absolute;
3442 top: 10px; 3442 top: 10px;
3443 right: 10px; 3443 right: 10px;
3444 } 3444 }
3445 @media (min-width: 768px) { 3445 @media (min-width: 768px) {
3446 .main__employers-item-more { 3446 .main__employers-item-more {
3447 width: 200px; 3447 width: 200px;
3448 padding: 0; 3448 padding: 0;
3449 position: static; 3449 position: static;
3450 } 3450 }
3451 } 3451 }
3452 .main__employers-item-label { 3452 .main__employers-item-label {
3453 background: #4d88d9; 3453 background: #4d88d9;
3454 color: #fff; 3454 color: #fff;
3455 border-radius: 6px; 3455 border-radius: 6px;
3456 width: 100%; 3456 width: 100%;
3457 height: 20px; 3457 height: 20px;
3458 display: -webkit-box; 3458 display: -webkit-box;
3459 display: -ms-flexbox; 3459 display: -ms-flexbox;
3460 display: flex; 3460 display: flex;
3461 -webkit-box-align: center; 3461 -webkit-box-align: center;
3462 -ms-flex-align: center; 3462 -ms-flex-align: center;
3463 align-items: center; 3463 align-items: center;
3464 padding: 0 12px; 3464 padding: 0 12px;
3465 position: absolute; 3465 position: absolute;
3466 bottom: 0; 3466 bottom: 0;
3467 left: 0; 3467 left: 0;
3468 font-size: 12px; 3468 font-size: 12px;
3469 line-height: 1; 3469 line-height: 1;
3470 } 3470 }
3471 @media (min-width: 768px) { 3471 @media (min-width: 768px) {
3472 .main__employers-item-label { 3472 .main__employers-item-label {
3473 max-width: 350px; 3473 max-width: 350px;
3474 height: 30px; 3474 height: 30px;
3475 font-size: 15px; 3475 font-size: 15px;
3476 } 3476 }
3477 } 3477 }
3478 .main__employers-item-label svg { 3478 .main__employers-item-label svg {
3479 width: 8px; 3479 width: 8px;
3480 height: 8px; 3480 height: 8px;
3481 } 3481 }
3482 @media (min-width: 768px) { 3482 @media (min-width: 768px) {
3483 .main__employers-item-label svg { 3483 .main__employers-item-label svg {
3484 width: 12px; 3484 width: 12px;
3485 height: 12px; 3485 height: 12px;
3486 } 3486 }
3487 } 3487 }
3488 .main__employers-item-label span { 3488 .main__employers-item-label span {
3489 overflow: hidden; 3489 overflow: hidden;
3490 display: -webkit-box; 3490 display: -webkit-box;
3491 -webkit-box-orient: vertical; 3491 -webkit-box-orient: vertical;
3492 -webkit-line-clamp: 1; 3492 -webkit-line-clamp: 1;
3493 width: calc(100% - 8px); 3493 width: calc(100% - 8px);
3494 padding-left: 6px; 3494 padding-left: 6px;
3495 } 3495 }
3496 .main__employers-one { 3496 .main__employers-one {
3497 display: -webkit-box; 3497 display: -webkit-box;
3498 display: -ms-flexbox; 3498 display: -ms-flexbox;
3499 display: flex; 3499 display: flex;
3500 -webkit-box-orient: vertical; 3500 -webkit-box-orient: vertical;
3501 -webkit-box-direction: normal; 3501 -webkit-box-direction: normal;
3502 -ms-flex-direction: column; 3502 -ms-flex-direction: column;
3503 flex-direction: column; 3503 flex-direction: column;
3504 gap: 20px; 3504 gap: 20px;
3505 } 3505 }
3506 .main__employers-two { 3506 .main__employers-two {
3507 display: -webkit-box; 3507 display: -webkit-box;
3508 display: -ms-flexbox; 3508 display: -ms-flexbox;
3509 display: flex; 3509 display: flex;
3510 -webkit-box-orient: vertical; 3510 -webkit-box-orient: vertical;
3511 -webkit-box-direction: normal; 3511 -webkit-box-direction: normal;
3512 -ms-flex-direction: column; 3512 -ms-flex-direction: column;
3513 flex-direction: column; 3513 flex-direction: column;
3514 gap: 20px; 3514 gap: 20px;
3515 } 3515 }
3516 @media (min-width: 768px) { 3516 @media (min-width: 768px) {
3517 .main__employers-two { 3517 .main__employers-two {
3518 -webkit-box-orient: horizontal; 3518 -webkit-box-orient: horizontal;
3519 -webkit-box-direction: normal; 3519 -webkit-box-direction: normal;
3520 -ms-flex-direction: row; 3520 -ms-flex-direction: row;
3521 flex-direction: row; 3521 flex-direction: row;
3522 -ms-flex-wrap: wrap; 3522 -ms-flex-wrap: wrap;
3523 flex-wrap: wrap; 3523 flex-wrap: wrap;
3524 -webkit-box-align: start; 3524 -webkit-box-align: start;
3525 -ms-flex-align: start; 3525 -ms-flex-align: start;
3526 align-items: flex-start; 3526 align-items: flex-start;
3527 -webkit-box-pack: justify; 3527 -webkit-box-pack: justify;
3528 -ms-flex-pack: justify; 3528 -ms-flex-pack: justify;
3529 justify-content: space-between; 3529 justify-content: space-between;
3530 gap: 20px 0; 3530 gap: 20px 0;
3531 } 3531 }
3532 } 3532 }
3533 .main__employers-two .main__employers-item { 3533 .main__employers-two .main__employers-item {
3534 width: calc(50% - 10px); 3534 width: calc(50% - 10px);
3535 -webkit-box-orient: vertical; 3535 -webkit-box-orient: vertical;
3536 -webkit-box-direction: normal; 3536 -webkit-box-direction: normal;
3537 -ms-flex-direction: column; 3537 -ms-flex-direction: column;
3538 flex-direction: column; 3538 flex-direction: column;
3539 -webkit-box-align: stretch; 3539 -webkit-box-align: stretch;
3540 -ms-flex-align: stretch; 3540 -ms-flex-align: stretch;
3541 align-items: stretch; 3541 align-items: stretch;
3542 padding-top: 30px; 3542 padding-top: 30px;
3543 } 3543 }
3544 .main__employers-two .main__employers-item-inner { 3544 .main__employers-two .main__employers-item-inner {
3545 width: 100%; 3545 width: 100%;
3546 padding: 0; 3546 padding: 0;
3547 } 3547 }
3548 .main__employers-two .main__employers-item-more { 3548 .main__employers-two .main__employers-item-more {
3549 position: static; 3549 position: static;
3550 margin-top: 20px; 3550 margin-top: 20px;
3551 } 3551 }
3552 @media (min-width: 992px) { 3552 @media (min-width: 992px) {
3553 .main__employers-two .main__employers-item-more { 3553 .main__employers-two .main__employers-item-more {
3554 margin-left: 190px; 3554 margin-left: 190px;
3555 } 3555 }
3556 } 3556 }
3557 .main__employers-two .main__employers-item-label { 3557 .main__employers-two .main__employers-item-label {
3558 max-width: none; 3558 max-width: none;
3559 } 3559 }
3560 .main__employer-page { 3560 .main__employer-page {
3561 display: -webkit-box; 3561 display: -webkit-box;
3562 display: -ms-flexbox; 3562 display: -ms-flexbox;
3563 display: flex; 3563 display: flex;
3564 -webkit-box-orient: vertical; 3564 -webkit-box-orient: vertical;
3565 -webkit-box-direction: normal; 3565 -webkit-box-direction: normal;
3566 -ms-flex-direction: column; 3566 -ms-flex-direction: column;
3567 flex-direction: column; 3567 flex-direction: column;
3568 gap: 20px; 3568 gap: 20px;
3569 } 3569 }
3570 @media (min-width: 768px) { 3570 @media (min-width: 768px) {
3571 .main__employer-page { 3571 .main__employer-page {
3572 gap: 30px; 3572 gap: 30px;
3573 } 3573 }
3574 } 3574 }
3575 .main__employer-page-title { 3575 .main__employer-page-title {
3576 color: #000; 3576 color: #000;
3577 margin: 0; 3577 margin: 0;
3578 font-size: 30px; 3578 font-size: 30px;
3579 } 3579 }
3580 @media (min-width: 768px) { 3580 @media (min-width: 768px) {
3581 .main__employer-page-title { 3581 .main__employer-page-title {
3582 font-size: 36px; 3582 font-size: 36px;
3583 } 3583 }
3584 } 3584 }
3585 @media (min-width: 992px) { 3585 @media (min-width: 992px) {
3586 .main__employer-page-title { 3586 .main__employer-page-title {
3587 font-size: 44px; 3587 font-size: 44px;
3588 } 3588 }
3589 } 3589 }
3590 .main__employer-page-item { 3590 .main__employer-page-item {
3591 display: -webkit-box; 3591 display: -webkit-box;
3592 display: -ms-flexbox; 3592 display: -ms-flexbox;
3593 display: flex; 3593 display: flex;
3594 -webkit-box-orient: vertical; 3594 -webkit-box-orient: vertical;
3595 -webkit-box-direction: normal; 3595 -webkit-box-direction: normal;
3596 -ms-flex-direction: column; 3596 -ms-flex-direction: column;
3597 flex-direction: column; 3597 flex-direction: column;
3598 gap: 4px; 3598 gap: 4px;
3599 font-size: 12px; 3599 font-size: 12px;
3600 line-height: 1.4; 3600 line-height: 1.4;
3601 width: 190px; 3601 width: 190px;
3602 } 3602 }
3603 .main__employer-page-item.main__employer-page-description{ 3603 .main__employer-page-item.main__employer-page-description{
3604 width: unset; 3604 width: unset;
3605 } 3605 }
3606 .main__employer-page-description p{ 3606 .main__employer-page-description p{
3607 margin-bottom: 10px; 3607 margin-bottom: 10px;
3608 line-height: 25px; 3608 line-height: 25px;
3609 } 3609 }
3610 @media (min-width: 768px) { 3610 @media (min-width: 768px) {
3611 .main__employer-page-item { 3611 .main__employer-page-item {
3612 font-size: 18px; 3612 font-size: 18px;
3613 gap: 8px; 3613 gap: 8px;
3614 } 3614 }
3615 } 3615 }
3616 .main__employer-page-item b { 3616 .main__employer-page-item b {
3617 color: #377d87; 3617 color: #377d87;
3618 font-size: 14px; 3618 font-size: 14px;
3619 } 3619 }
3620 @media (min-width: 768px) { 3620 @media (min-width: 768px) {
3621 .main__employer-page-item b { 3621 .main__employer-page-item b {
3622 font-size: 18px; 3622 font-size: 18px;
3623 } 3623 }
3624 } 3624 }
3625 .main__employer-page-item span { 3625 .main__employer-page-item span {
3626 color: #000; 3626 color: #000;
3627 } 3627 }
3628 .main__employer-page-info { 3628 .main__employer-page-info {
3629 display: -webkit-box; 3629 display: -webkit-box;
3630 display: -ms-flexbox; 3630 display: -ms-flexbox;
3631 display: flex; 3631 display: flex;
3632 -webkit-box-orient: vertical; 3632 -webkit-box-orient: vertical;
3633 -webkit-box-direction: normal; 3633 -webkit-box-direction: normal;
3634 -ms-flex-direction: column; 3634 -ms-flex-direction: column;
3635 flex-direction: column; 3635 flex-direction: column;
3636 gap: 20px; 3636 gap: 20px;
3637 } 3637 }
3638 .main__employer-page-info.row2{ 3638 .main__employer-page-info.row2{
3639 justify-content: flex-start; 3639 justify-content: flex-start;
3640 } 3640 }
3641 .main__employer-page-info.row2 .main__employer-page-item{ 3641 .main__employer-page-info.row2 .main__employer-page-item{
3642 width: 25%; 3642 width: 25%;
3643 } 3643 }
3644 @media (min-width: 768px) { 3644 @media (min-width: 768px) {
3645 .main__employer-page-info { 3645 .main__employer-page-info {
3646 display: grid; 3646 display: grid;
3647 grid-template-columns: repeat(2, 1fr); 3647 grid-template-columns: repeat(2, 1fr);
3648 gap: 30px 40px; 3648 gap: 30px 40px;
3649 } 3649 }
3650 } 3650 }
3651 @media (min-width: 1280px) { 3651 @media (min-width: 1280px) {
3652 .main__employer-page-info { 3652 .main__employer-page-info {
3653 display: -webkit-box; 3653 display: -webkit-box;
3654 display: -ms-flexbox; 3654 display: -ms-flexbox;
3655 display: flex; 3655 display: flex;
3656 -webkit-box-orient: horizontal; 3656 -webkit-box-orient: horizontal;
3657 -webkit-box-direction: normal; 3657 -webkit-box-direction: normal;
3658 -ms-flex-direction: row; 3658 -ms-flex-direction: row;
3659 flex-direction: row; 3659 flex-direction: row;
3660 -webkit-box-align: start; 3660 -webkit-box-align: start;
3661 -ms-flex-align: start; 3661 -ms-flex-align: start;
3662 align-items: flex-start; 3662 align-items: flex-start;
3663 -webkit-box-pack: justify; 3663 -webkit-box-pack: justify;
3664 -ms-flex-pack: justify; 3664 -ms-flex-pack: justify;
3665 justify-content: space-between; 3665 justify-content: space-between;
3666 padding-right: 160px; 3666 padding-right: 160px;
3667 } 3667 }
3668 } 3668 }
3669 @media (min-width: 768px) { 3669 @media (min-width: 768px) {
3670 .main__employer-page-info .main__employer-page-item b, 3670 .main__employer-page-info .main__employer-page-item b,
3671 .main__employer-page-info .main__employer-page-item span { 3671 .main__employer-page-info .main__employer-page-item span {
3672 max-width: 300px; 3672 max-width: 300px;
3673 } 3673 }
3674 } 3674 }
3675 .main__employer-page-tabs { 3675 .main__employer-page-tabs {
3676 display: -webkit-box; 3676 display: -webkit-box;
3677 display: -ms-flexbox; 3677 display: -ms-flexbox;
3678 display: flex; 3678 display: flex;
3679 -webkit-box-align: center; 3679 -webkit-box-align: center;
3680 -ms-flex-align: center; 3680 -ms-flex-align: center;
3681 align-items: center; 3681 align-items: center;
3682 gap: 20px; 3682 gap: 20px;
3683 } 3683 }
3684 @media (min-width: 768px) { 3684 @media (min-width: 768px) {
3685 .main__employer-page-tabs { 3685 .main__employer-page-tabs {
3686 margin-top: 20px; 3686 margin-top: 20px;
3687 } 3687 }
3688 } 3688 }
3689 .main__employer-page-tabs-item { 3689 .main__employer-page-tabs-item {
3690 font-size: 22px; 3690 font-size: 22px;
3691 font-weight: 700; 3691 font-weight: 700;
3692 border: none; 3692 border: none;
3693 background: none; 3693 background: none;
3694 padding: 0; 3694 padding: 0;
3695 color: #9c9d9d; 3695 color: #9c9d9d;
3696 text-decoration: underline; 3696 text-decoration: underline;
3697 text-decoration-thickness: 1px; 3697 text-decoration-thickness: 1px;
3698 } 3698 }
3699 @media (min-width: 768px) { 3699 @media (min-width: 768px) {
3700 .main__employer-page-tabs-item { 3700 .main__employer-page-tabs-item {
3701 font-size: 24px; 3701 font-size: 24px;
3702 } 3702 }
3703 } 3703 }
3704 .main__employer-page-tabs-item.active { 3704 .main__employer-page-tabs-item.active {
3705 color: #377d87; 3705 color: #377d87;
3706 } 3706 }
3707 .main__employer-page-body { 3707 .main__employer-page-body {
3708 display: -webkit-box; 3708 display: -webkit-box;
3709 display: -ms-flexbox; 3709 display: -ms-flexbox;
3710 display: flex; 3710 display: flex;
3711 -webkit-box-orient: vertical; 3711 -webkit-box-orient: vertical;
3712 -webkit-box-direction: normal; 3712 -webkit-box-direction: normal;
3713 -ms-flex-direction: column; 3713 -ms-flex-direction: column;
3714 flex-direction: column; 3714 flex-direction: column;
3715 margin-top: 10px; 3715 margin-top: 10px;
3716 } 3716 }
3717 @media (min-width: 768px) { 3717 @media (min-width: 768px) {
3718 .main__employer-page-body { 3718 .main__employer-page-body {
3719 margin-top: 30px; 3719 margin-top: 30px;
3720 } 3720 }
3721 } 3721 }
3722 .main__employer-page-body-item { 3722 .main__employer-page-body-item {
3723 display: none; 3723 display: none;
3724 -webkit-box-orient: vertical; 3724 -webkit-box-orient: vertical;
3725 -webkit-box-direction: normal; 3725 -webkit-box-direction: normal;
3726 -ms-flex-direction: column; 3726 -ms-flex-direction: column;
3727 flex-direction: column; 3727 flex-direction: column;
3728 gap: 20px; 3728 gap: 20px;
3729 } 3729 }
3730 .main__employer-page-body-item.showed { 3730 .main__employer-page-body-item.showed {
3731 display: -webkit-box; 3731 display: -webkit-box;
3732 display: -ms-flexbox; 3732 display: -ms-flexbox;
3733 display: flex; 3733 display: flex;
3734 } 3734 }
3735 .main__employer-page-one { 3735 .main__employer-page-one {
3736 display: -webkit-box; 3736 display: -webkit-box;
3737 display: -ms-flexbox; 3737 display: -ms-flexbox;
3738 display: flex; 3738 display: flex;
3739 -webkit-box-orient: vertical; 3739 -webkit-box-orient: vertical;
3740 -webkit-box-direction: normal; 3740 -webkit-box-direction: normal;
3741 -ms-flex-direction: column; 3741 -ms-flex-direction: column;
3742 flex-direction: column; 3742 flex-direction: column;
3743 gap: 20px; 3743 gap: 20px;
3744 } 3744 }
3745 @media (min-width: 768px) { 3745 @media (min-width: 768px) {
3746 .main__employer-page-one { 3746 .main__employer-page-one {
3747 display: grid; 3747 display: grid;
3748 grid-template-columns: repeat(2, 1fr); 3748 grid-template-columns: repeat(2, 1fr);
3749 } 3749 }
3750 } 3750 }
3751 @media (min-width: 992px) { 3751 @media (min-width: 992px) {
3752 .main__employer-page-one { 3752 .main__employer-page-one {
3753 grid-template-columns: repeat(3, 1fr); 3753 grid-template-columns: repeat(3, 1fr);
3754 } 3754 }
3755 } 3755 }
3756 @media (min-width: 1280px) { 3756 @media (min-width: 1280px) {
3757 .main__employer-page-one { 3757 .main__employer-page-one {
3758 grid-template-columns: repeat(4, 1fr); 3758 grid-template-columns: repeat(4, 1fr);
3759 gap: 30px 20px; 3759 gap: 30px 20px;
3760 } 3760 }
3761 } 3761 }
3762 .main__employer-page-one-item { 3762 .main__employer-page-one-item {
3763 display: -webkit-box; 3763 display: -webkit-box;
3764 display: -ms-flexbox; 3764 display: -ms-flexbox;
3765 display: flex; 3765 display: flex;
3766 -webkit-box-orient: vertical; 3766 -webkit-box-orient: vertical;
3767 -webkit-box-direction: normal; 3767 -webkit-box-direction: normal;
3768 -ms-flex-direction: column; 3768 -ms-flex-direction: column;
3769 flex-direction: column; 3769 flex-direction: column;
3770 gap: 10px; 3770 gap: 10px;
3771 font-size: 12px; 3771 font-size: 12px;
3772 position: relative; 3772 position: relative;
3773 } 3773 }
3774 @media (min-width: 1280px) { 3774 @media (min-width: 1280px) {
3775 .main__employer-page-one-item { 3775 .main__employer-page-one-item {
3776 font-size: 18px; 3776 font-size: 18px;
3777 } 3777 }
3778 } 3778 }
3779 .main__employer-page-one-item img { 3779 .main__employer-page-one-item img {
3780 border-radius: 10px; 3780 border-radius: 10px;
3781 -o-object-fit: cover; 3781 -o-object-fit: cover;
3782 object-fit: cover; 3782 object-fit: cover;
3783 width: 100%; 3783 width: 100%;
3784 max-height: 250px; 3784 max-height: 250px;
3785 aspect-ratio: 247/174; 3785 aspect-ratio: 247/174;
3786 } 3786 }
3787 @media (min-width: 1280px) { 3787 @media (min-width: 1280px) {
3788 .main__employer-page-one-item img { 3788 .main__employer-page-one-item img {
3789 margin-bottom: 10px; 3789 margin-bottom: 10px;
3790 } 3790 }
3791 } 3791 }
3792 .main__employer-page-one-item b { 3792 .main__employer-page-one-item b {
3793 font-weight: 700; 3793 font-weight: 700;
3794 color: #377d87; 3794 color: #377d87;
3795 } 3795 }
3796 .main__employer-page-one-item span { 3796 .main__employer-page-one-item span {
3797 color: #000; 3797 color: #000;
3798 } 3798 }
3799 .main__employer-page-one-item i { 3799 .main__employer-page-one-item i {
3800 font-style: normal; 3800 font-style: normal;
3801 color: #377d87; 3801 color: #377d87;
3802 } 3802 }
3803 .main__employer-page-one-item .del { 3803 .main__employer-page-one-item .del {
3804 position: absolute; 3804 position: absolute;
3805 z-index: 1; 3805 z-index: 1;
3806 top: 8px; 3806 top: 8px;
3807 left: 8px; 3807 left: 8px;
3808 } 3808 }
3809 .main__employer-page-two { 3809 .main__employer-page-two {
3810 display: -webkit-box; 3810 display: -webkit-box;
3811 display: -ms-flexbox; 3811 display: -ms-flexbox;
3812 display: flex; 3812 display: flex;
3813 -webkit-box-orient: vertical; 3813 -webkit-box-orient: vertical;
3814 -webkit-box-direction: normal; 3814 -webkit-box-direction: normal;
3815 -ms-flex-direction: column; 3815 -ms-flex-direction: column;
3816 flex-direction: column; 3816 flex-direction: column;
3817 -webkit-box-align: center; 3817 -webkit-box-align: center;
3818 -ms-flex-align: center; 3818 -ms-flex-align: center;
3819 align-items: center; 3819 align-items: center;
3820 gap: 20px; 3820 gap: 20px;
3821 } 3821 }
3822 .main__employer-page-two-item { 3822 .main__employer-page-two-item {
3823 width: 100%; 3823 width: 100%;
3824 display: -webkit-box; 3824 display: -webkit-box;
3825 display: -ms-flexbox; 3825 display: -ms-flexbox;
3826 display: flex; 3826 display: flex;
3827 -webkit-box-orient: vertical; 3827 -webkit-box-orient: vertical;
3828 -webkit-box-direction: normal; 3828 -webkit-box-direction: normal;
3829 -ms-flex-direction: column; 3829 -ms-flex-direction: column;
3830 flex-direction: column; 3830 flex-direction: column;
3831 gap: 16px; 3831 gap: 16px;
3832 padding: 20px 10px; 3832 padding: 20px 10px;
3833 border-radius: 12px; 3833 border-radius: 12px;
3834 border: 1px solid #cecece; 3834 border: 1px solid #cecece;
3835 position: relative; 3835 position: relative;
3836 overflow: hidden; 3836 overflow: hidden;
3837 font-size: 12px; 3837 font-size: 12px;
3838 background: linear-gradient(95deg, #f2f5fc 59.82%, #ebf2fc 99.99%); 3838 background: linear-gradient(95deg, #f2f5fc 59.82%, #ebf2fc 99.99%);
3839 } 3839 }
3840 @media (min-width: 768px) { 3840 @media (min-width: 768px) {
3841 .main__employer-page-two-item { 3841 .main__employer-page-two-item {
3842 font-size: 14px; 3842 font-size: 14px;
3843 padding: 20px; 3843 padding: 20px;
3844 gap: 24px; 3844 gap: 24px;
3845 padding-bottom: 35px; 3845 padding-bottom: 35px;
3846 } 3846 }
3847 } 3847 }
3848 @media (min-width: 992px) { 3848 @media (min-width: 992px) {
3849 .main__employer-page-two-item { 3849 .main__employer-page-two-item {
3850 font-size: 16px; 3850 font-size: 16px;
3851 } 3851 }
3852 } 3852 }
3853 @media (min-width: 1280px) { 3853 @media (min-width: 1280px) {
3854 .main__employer-page-two-item { 3854 .main__employer-page-two-item {
3855 font-size: 18px; 3855 font-size: 18px;
3856 } 3856 }
3857 } 3857 }
3858 .main__employer-page-two-item-toper { 3858 .main__employer-page-two-item-toper {
3859 display: -webkit-box; 3859 display: -webkit-box;
3860 display: -ms-flexbox; 3860 display: -ms-flexbox;
3861 display: flex; 3861 display: flex;
3862 -webkit-box-align: center; 3862 -webkit-box-align: center;
3863 -ms-flex-align: center; 3863 -ms-flex-align: center;
3864 align-items: center; 3864 align-items: center;
3865 font-size: 22px; 3865 font-size: 22px;
3866 font-weight: 700; 3866 font-weight: 700;
3867 color: #000; 3867 color: #000;
3868 } 3868 }
3869 @media (min-width: 768px) { 3869 @media (min-width: 768px) {
3870 .main__employer-page-two-item-toper { 3870 .main__employer-page-two-item-toper {
3871 font-size: 30px; 3871 font-size: 30px;
3872 } 3872 }
3873 } 3873 }
3874 .main__employer-page-two-item-toper img { 3874 .main__employer-page-two-item-toper img {
3875 width: 60px; 3875 width: 60px;
3876 aspect-ratio: 1/1; 3876 aspect-ratio: 1/1;
3877 -o-object-fit: contain; 3877 -o-object-fit: contain;
3878 object-fit: contain; 3878 object-fit: contain;
3879 } 3879 }
3880 .main__employer-page-two-item-toper span { 3880 .main__employer-page-two-item-toper span {
3881 width: calc(100% - 60px); 3881 width: calc(100% - 60px);
3882 padding-left: 10px; 3882 padding-left: 10px;
3883 } 3883 }
3884 @media (min-width: 768px) { 3884 @media (min-width: 768px) {
3885 .main__employer-page-two-item-toper span { 3885 .main__employer-page-two-item-toper span {
3886 padding-left: 20px; 3886 padding-left: 20px;
3887 } 3887 }
3888 } 3888 }
3889 .main__employer-page-two-item-title { 3889 .main__employer-page-two-item-title {
3890 font-size: 18px; 3890 font-size: 18px;
3891 font-weight: 700; 3891 font-weight: 700;
3892 color: #377d87; 3892 color: #377d87;
3893 } 3893 }
3894 @media (min-width: 768px) { 3894 @media (min-width: 768px) {
3895 .main__employer-page-two-item-title { 3895 .main__employer-page-two-item-title {
3896 font-size: 24px; 3896 font-size: 24px;
3897 } 3897 }
3898 } 3898 }
3899 .main__employer-page-two-item-text { 3899 .main__employer-page-two-item-text {
3900 display: -webkit-box; 3900 display: -webkit-box;
3901 display: -ms-flexbox; 3901 display: -ms-flexbox;
3902 display: flex; 3902 display: flex;
3903 -webkit-box-orient: vertical; 3903 -webkit-box-orient: vertical;
3904 -webkit-box-direction: normal; 3904 -webkit-box-direction: normal;
3905 -ms-flex-direction: column; 3905 -ms-flex-direction: column;
3906 flex-direction: column; 3906 flex-direction: column;
3907 gap: 10px; 3907 gap: 10px;
3908 } 3908 }
3909 .main__employer-page-two-item-text-name { 3909 .main__employer-page-two-item-text-name {
3910 font-weight: 700; 3910 font-weight: 700;
3911 } 3911 }
3912 .main__employer-page-two-item-text-body { 3912 .main__employer-page-two-item-text-body {
3913 color: #000; 3913 color: #000;
3914 display: -webkit-box; 3914 display: -webkit-box;
3915 display: -ms-flexbox; 3915 display: -ms-flexbox;
3916 display: flex; 3916 display: flex;
3917 -webkit-box-orient: vertical; 3917 -webkit-box-orient: vertical;
3918 -webkit-box-direction: normal; 3918 -webkit-box-direction: normal;
3919 -ms-flex-direction: column; 3919 -ms-flex-direction: column;
3920 flex-direction: column; 3920 flex-direction: column;
3921 gap: 6px; 3921 gap: 6px;
3922 padding: 0 10px; 3922 padding: 0 10px;
3923 } 3923 }
3924 .main__employer-page-two-item-text-body p { 3924 .main__employer-page-two-item-text-body p {
3925 margin: 0; 3925 margin: 0;
3926 } 3926 }
3927 .main__employer-page-two-item-text-body ul { 3927 .main__employer-page-two-item-text-body ul {
3928 margin: 0; 3928 margin: 0;
3929 padding: 0; 3929 padding: 0;
3930 padding-left: 16px; 3930 padding-left: 16px;
3931 display: -webkit-box; 3931 display: -webkit-box;
3932 display: -ms-flexbox; 3932 display: -ms-flexbox;
3933 display: flex; 3933 display: flex;
3934 -webkit-box-orient: vertical; 3934 -webkit-box-orient: vertical;
3935 -webkit-box-direction: normal; 3935 -webkit-box-direction: normal;
3936 -ms-flex-direction: column; 3936 -ms-flex-direction: column;
3937 flex-direction: column; 3937 flex-direction: column;
3938 gap: 6px; 3938 gap: 6px;
3939 } 3939 }
3940 @media (min-width: 768px) { 3940 @media (min-width: 768px) {
3941 .main__employer-page-two-item-text-body ul { 3941 .main__employer-page-two-item-text-body ul {
3942 margin: 0 5px; 3942 margin: 0 5px;
3943 } 3943 }
3944 } 3944 }
3945 .main__employer-page-two-item-text-body ul span, 3945 .main__employer-page-two-item-text-body ul span,
3946 .main__employer-page-two-item-text-body ul a { 3946 .main__employer-page-two-item-text-body ul a {
3947 color: #000; 3947 color: #000;
3948 position: relative; 3948 position: relative;
3949 } 3949 }
3950 .main__employer-page-two-item-text-body ul a:hover { 3950 .main__employer-page-two-item-text-body ul a:hover {
3951 color: #377d87; 3951 color: #377d87;
3952 } 3952 }
3953 .main__employer-page-two-item-text-body p + ul { 3953 .main__employer-page-two-item-text-body p + ul {
3954 margin-top: 10px; 3954 margin-top: 10px;
3955 } 3955 }
3956 .main__employer-page-two-item-text-links { 3956 .main__employer-page-two-item-text-links {
3957 display: -webkit-box; 3957 display: -webkit-box;
3958 display: -ms-flexbox; 3958 display: -ms-flexbox;
3959 display: flex; 3959 display: flex;
3960 -webkit-box-orient: vertical; 3960 -webkit-box-orient: vertical;
3961 -webkit-box-direction: normal; 3961 -webkit-box-direction: normal;
3962 -ms-flex-direction: column; 3962 -ms-flex-direction: column;
3963 flex-direction: column; 3963 flex-direction: column;
3964 -webkit-box-align: start; 3964 -webkit-box-align: start;
3965 -ms-flex-align: start; 3965 -ms-flex-align: start;
3966 align-items: flex-start; 3966 align-items: flex-start;
3967 gap: 10px; 3967 gap: 10px;
3968 padding: 0 10px; 3968 padding: 0 10px;
3969 font-weight: 700; 3969 font-weight: 700;
3970 margin-top: 5px; 3970 margin-top: 5px;
3971 } 3971 }
3972 @media (min-width: 768px) { 3972 @media (min-width: 768px) {
3973 .main__employer-page-two-item-text-links { 3973 .main__employer-page-two-item-text-links {
3974 gap: 20px; 3974 gap: 20px;
3975 } 3975 }
3976 } 3976 }
3977 .main__employer-page-two-item-text-links a { 3977 .main__employer-page-two-item-text-links a {
3978 color: #4d88d9; 3978 color: #4d88d9;
3979 } 3979 }
3980 .main__employer-page-two-item-text-links a:hover { 3980 .main__employer-page-two-item-text-links a:hover {
3981 color: #377d87; 3981 color: #377d87;
3982 } 3982 }
3983 .main__employer-page-two-item-tags { 3983 .main__employer-page-two-item-tags {
3984 color: #4d88d9; 3984 color: #4d88d9;
3985 font-weight: 500; 3985 font-weight: 500;
3986 display: -webkit-box; 3986 display: -webkit-box;
3987 display: -ms-flexbox; 3987 display: -ms-flexbox;
3988 display: flex; 3988 display: flex;
3989 -webkit-box-align: center; 3989 -webkit-box-align: center;
3990 -ms-flex-align: center; 3990 -ms-flex-align: center;
3991 align-items: center; 3991 align-items: center;
3992 -ms-flex-wrap: wrap; 3992 -ms-flex-wrap: wrap;
3993 flex-wrap: wrap; 3993 flex-wrap: wrap;
3994 gap: 10px 20px; 3994 gap: 10px 20px;
3995 } 3995 }
3996 @media (min-width: 768px) { 3996 @media (min-width: 768px) {
3997 .main__employer-page-two-item-tags { 3997 .main__employer-page-two-item-tags {
3998 font-size: 14px; 3998 font-size: 14px;
3999 } 3999 }
4000 } 4000 }
4001 .main__employer-page-two-item-buttons { 4001 .main__employer-page-two-item-buttons {
4002 display: grid; 4002 display: grid;
4003 grid-template-columns: repeat(2, 1fr); 4003 grid-template-columns: repeat(2, 1fr);
4004 gap: 20px; 4004 gap: 20px;
4005 } 4005 }
4006 @media (min-width: 768px) { 4006 @media (min-width: 768px) {
4007 .main__employer-page-two-item-button { 4007 .main__employer-page-two-item-button {
4008 position: absolute; 4008 position: absolute;
4009 bottom: 20px; 4009 bottom: 20px;
4010 left: 20px; 4010 left: 20px;
4011 width: 200px; 4011 width: 200px;
4012 padding: 0; 4012 padding: 0;
4013 } 4013 }
4014 } 4014 }
4015 @media (min-width: 768px) { 4015 @media (min-width: 768px) {
4016 .main__employer-page-two-item-button + .main__employer-page-two-item-button { 4016 .main__employer-page-two-item-button + .main__employer-page-two-item-button {
4017 left: auto; 4017 left: auto;
4018 right: 20px; 4018 right: 20px;
4019 } 4019 }
4020 } 4020 }
4021 .main__employer-page-two-item-bottom { 4021 .main__employer-page-two-item-bottom {
4022 display: -webkit-box; 4022 display: -webkit-box;
4023 display: -ms-flexbox; 4023 display: -ms-flexbox;
4024 display: flex; 4024 display: flex;
4025 -webkit-box-align: center; 4025 -webkit-box-align: center;
4026 -ms-flex-align: center; 4026 -ms-flex-align: center;
4027 align-items: center; 4027 align-items: center;
4028 -webkit-box-pack: justify; 4028 -webkit-box-pack: justify;
4029 -ms-flex-pack: justify; 4029 -ms-flex-pack: justify;
4030 justify-content: space-between; 4030 justify-content: space-between;
4031 } 4031 }
4032 .main__employer-page-two-item-bottom-date { 4032 .main__employer-page-two-item-bottom-date {
4033 color: #000; 4033 color: #000;
4034 } 4034 }
4035 @media (min-width: 768px) { 4035 @media (min-width: 768px) {
4036 .main__employer-page-two-item-bottom-date { 4036 .main__employer-page-two-item-bottom-date {
4037 position: absolute; 4037 position: absolute;
4038 bottom: 20px; 4038 bottom: 20px;
4039 right: 240px; 4039 right: 240px;
4040 height: 42px; 4040 height: 42px;
4041 display: -webkit-box; 4041 display: -webkit-box;
4042 display: -ms-flexbox; 4042 display: -ms-flexbox;
4043 display: flex; 4043 display: flex;
4044 -webkit-box-align: center; 4044 -webkit-box-align: center;
4045 -ms-flex-align: center; 4045 -ms-flex-align: center;
4046 align-items: center; 4046 align-items: center;
4047 } 4047 }
4048 } 4048 }
4049 @media (min-width: 992px) { 4049 @media (min-width: 992px) {
4050 .main__employer-page-two-item-bottom-date { 4050 .main__employer-page-two-item-bottom-date {
4051 font-size: 16px; 4051 font-size: 16px;
4052 } 4052 }
4053 } 4053 }
4054 @media (min-width: 768px) { 4054 @media (min-width: 768px) {
4055 .main__employer-page-two-item-bottom-like { 4055 .main__employer-page-two-item-bottom-like {
4056 position: absolute; 4056 position: absolute;
4057 bottom: 20px; 4057 bottom: 20px;
4058 left: 240px; 4058 left: 240px;
4059 } 4059 }
4060 } 4060 }
4061 @media (min-width: 768px) { 4061 @media (min-width: 768px) {
4062 .main__employer-page-two-more { 4062 .main__employer-page-two-more {
4063 margin-top: 10px; 4063 margin-top: 10px;
4064 padding: 0; 4064 padding: 0;
4065 width: 200px; 4065 width: 200px;
4066 } 4066 }
4067 } 4067 }
4068 .main__employer-page-two .main__employer-page-two-item { 4068 .main__employer-page-two .main__employer-page-two-item {
4069 /* display: none;*/ 4069 /* display: none;*/
4070 } 4070 }
4071 .main__employer-page-two .main__employer-page-two-item:nth-of-type(1), .main__employer-page-two .main__employer-page-two-item:nth-of-type(2) { 4071 .main__employer-page-two .main__employer-page-two-item:nth-of-type(1), .main__employer-page-two .main__employer-page-two-item:nth-of-type(2) {
4072 display: -webkit-box; 4072 display: -webkit-box;
4073 display: -ms-flexbox; 4073 display: -ms-flexbox;
4074 display: flex; 4074 display: flex;
4075 } 4075 }
4076 .main__employer-page-two.active .main__employer-page-two-item { 4076 .main__employer-page-two.active .main__employer-page-two-item {
4077 display: -webkit-box; 4077 display: -webkit-box;
4078 display: -ms-flexbox; 4078 display: -ms-flexbox;
4079 display: flex; 4079 display: flex;
4080 } 4080 }
4081 .main__resume-base { 4081 .main__resume-base {
4082 display: -webkit-box; 4082 display: -webkit-box;
4083 display: -ms-flexbox; 4083 display: -ms-flexbox;
4084 display: flex; 4084 display: flex;
4085 -webkit-box-orient: vertical; 4085 -webkit-box-orient: vertical;
4086 -webkit-box-direction: normal; 4086 -webkit-box-direction: normal;
4087 -ms-flex-direction: column; 4087 -ms-flex-direction: column;
4088 flex-direction: column; 4088 flex-direction: column;
4089 color: #000; 4089 color: #000;
4090 } 4090 }
4091 .main__resume-base-body { 4091 .main__resume-base-body {
4092 display: none; 4092 display: none;
4093 -webkit-box-orient: vertical; 4093 -webkit-box-orient: vertical;
4094 -webkit-box-direction: normal; 4094 -webkit-box-direction: normal;
4095 -ms-flex-direction: column; 4095 -ms-flex-direction: column;
4096 flex-direction: column; 4096 flex-direction: column;
4097 margin-top: 10px; 4097 margin-top: 10px;
4098 } 4098 }
4099 @media (min-width: 768px) { 4099 @media (min-width: 768px) {
4100 .main__resume-base-body { 4100 .main__resume-base-body {
4101 margin-top: 30px; 4101 margin-top: 30px;
4102 } 4102 }
4103 } 4103 }
4104 .main__resume-base-body.showed { 4104 .main__resume-base-body.showed {
4105 display: -webkit-box; 4105 display: -webkit-box;
4106 display: -ms-flexbox; 4106 display: -ms-flexbox;
4107 display: flex; 4107 display: flex;
4108 } 4108 }
4109 .main__resume-base-body-one { 4109 .main__resume-base-body-one {
4110 display: -webkit-box; 4110 display: -webkit-box;
4111 display: -ms-flexbox; 4111 display: -ms-flexbox;
4112 display: flex; 4112 display: flex;
4113 -webkit-box-orient: vertical; 4113 -webkit-box-orient: vertical;
4114 -webkit-box-direction: normal; 4114 -webkit-box-direction: normal;
4115 -ms-flex-direction: column; 4115 -ms-flex-direction: column;
4116 flex-direction: column; 4116 flex-direction: column;
4117 -webkit-box-align: center; 4117 -webkit-box-align: center;
4118 -ms-flex-align: center; 4118 -ms-flex-align: center;
4119 align-items: center; 4119 align-items: center;
4120 gap: 20px; 4120 gap: 20px;
4121 } 4121 }
4122 @media (min-width: 768px) { 4122 @media (min-width: 768px) {
4123 .main__resume-base-body-one { 4123 .main__resume-base-body-one {
4124 gap: 30px; 4124 gap: 30px;
4125 } 4125 }
4126 } 4126 }
4127 .main__resume-base-body-two { 4127 .main__resume-base-body-two {
4128 display: -webkit-box; 4128 display: -webkit-box;
4129 display: -ms-flexbox; 4129 display: -ms-flexbox;
4130 display: flex; 4130 display: flex;
4131 -webkit-box-orient: vertical; 4131 -webkit-box-orient: vertical;
4132 -webkit-box-direction: normal; 4132 -webkit-box-direction: normal;
4133 -ms-flex-direction: column; 4133 -ms-flex-direction: column;
4134 flex-direction: column; 4134 flex-direction: column;
4135 gap: 20px; 4135 gap: 20px;
4136 } 4136 }
4137 @media (min-width: 768px) { 4137 @media (min-width: 768px) {
4138 .main__resume-base-body-two { 4138 .main__resume-base-body-two {
4139 -webkit-box-orient: horizontal; 4139 -webkit-box-orient: horizontal;
4140 -webkit-box-direction: normal; 4140 -webkit-box-direction: normal;
4141 -ms-flex-direction: row; 4141 -ms-flex-direction: row;
4142 flex-direction: row; 4142 flex-direction: row;
4143 -webkit-box-pack: justify; 4143 -webkit-box-pack: justify;
4144 -ms-flex-pack: justify; 4144 -ms-flex-pack: justify;
4145 justify-content: space-between; 4145 justify-content: space-between;
4146 -webkit-box-align: start; 4146 -webkit-box-align: start;
4147 -ms-flex-align: start; 4147 -ms-flex-align: start;
4148 align-items: flex-start; 4148 align-items: flex-start;
4149 -ms-flex-wrap: wrap; 4149 -ms-flex-wrap: wrap;
4150 flex-wrap: wrap; 4150 flex-wrap: wrap;
4151 gap: 30px 0; 4151 gap: 30px 0;
4152 } 4152 }
4153 } 4153 }
4154 @media (min-width: 768px) { 4154 @media (min-width: 768px) {
4155 .main__resume-base-body-two .main__resume-base-body-item { 4155 .main__resume-base-body-two .main__resume-base-body-item {
4156 width: calc(50% - 10px); 4156 width: calc(50% - 10px);
4157 } 4157 }
4158 } 4158 }
4159 .main__resume-base-body-two .main__resume-base-body-item-wrapper { 4159 .main__resume-base-body-two .main__resume-base-body-item-wrapper {
4160 -webkit-box-orient: vertical; 4160 -webkit-box-orient: vertical;
4161 -webkit-box-direction: normal; 4161 -webkit-box-direction: normal;
4162 -ms-flex-direction: column; 4162 -ms-flex-direction: column;
4163 flex-direction: column; 4163 flex-direction: column;
4164 } 4164 }
4165 .main__resume-base-body-item { 4165 .main__resume-base-body-item {
4166 width: 100%; 4166 width: 100%;
4167 display: -webkit-box; 4167 display: -webkit-box;
4168 display: -ms-flexbox; 4168 display: -ms-flexbox;
4169 display: flex; 4169 display: flex;
4170 -webkit-box-orient: vertical; 4170 -webkit-box-orient: vertical;
4171 -webkit-box-direction: normal; 4171 -webkit-box-direction: normal;
4172 -ms-flex-direction: column; 4172 -ms-flex-direction: column;
4173 flex-direction: column; 4173 flex-direction: column;
4174 gap: 20px; 4174 gap: 20px;
4175 position: relative; 4175 position: relative;
4176 border: 1px solid #377d87; 4176 border: 1px solid #377d87;
4177 border-radius: 8px; 4177 border-radius: 8px;
4178 padding: 10px; 4178 padding: 10px;
4179 -webkit-box-align: center; 4179 -webkit-box-align: center;
4180 -ms-flex-align: center; 4180 -ms-flex-align: center;
4181 align-items: center; 4181 align-items: center;
4182 } 4182 }
4183 @media (min-width: 768px) { 4183 @media (min-width: 768px) {
4184 .main__resume-base-body-item { 4184 .main__resume-base-body-item {
4185 padding: 20px; 4185 padding: 20px;
4186 } 4186 }
4187 } 4187 }
4188 .main__resume-base-body-item-buttons { 4188 .main__resume-base-body-item-buttons {
4189 margin-top: 10px; 4189 margin-top: 10px;
4190 } 4190 }
4191 .main__resume-base-body-item-buttons button, a.main__resume-base-body-item-link{ 4191 .main__resume-base-body-item-buttons button, a.main__resume-base-body-item-link{
4192 width: 100%; 4192 width: 100%;
4193 margin-bottom: 10px; 4193 margin-bottom: 10px;
4194 } 4194 }
4195 .main__resume-base-body-item-buttons a.main__resume-base-body-item-link{ 4195 .main__resume-base-body-item-buttons a.main__resume-base-body-item-link{
4196 background: #377d87; 4196 background: #377d87;
4197 color: #fff; 4197 color: #fff;
4198 } 4198 }
4199 .main__resume-base-body-item-buttons .chat.active{ 4199 .main__resume-base-body-item-buttons .chat.active{
4200 background: #fff; 4200 background: #fff;
4201 color: #377d87; 4201 color: #377d87;
4202 } 4202 }
4203 .main__resume-base-body-item-buttons button.like.active{ 4203 .main__resume-base-body-item-buttons button.like.active{
4204 background-color: #ffffff; 4204 background-color: #ffffff;
4205 color: #eb5757; 4205 color: #eb5757;
4206 } 4206 }
4207 .main__resume-base-body-item-buttons button span{ 4207 .main__resume-base-body-item-buttons button span{
4208 margin-left: 10px; 4208 margin-left: 10px;
4209 } 4209 }
4210 .main__resume-base-body-item-buttons .like .in-favorites{ 4210 .main__resume-base-body-item-buttons .like .in-favorites{
4211 display: none; 4211 display: none;
4212 } 4212 }
4213 .main__resume-base-body-item-buttons .like.active .in-favorites{ 4213 .main__resume-base-body-item-buttons .like.active .in-favorites{
4214 display: block; 4214 display: block;
4215 color: #eb5757; 4215 color: #eb5757;
4216 } 4216 }
4217 .main__resume-base-body-item-buttons .like.active .to-favorites{ 4217 .main__resume-base-body-item-buttons .like.active .to-favorites{
4218 display: none; 4218 display: none;
4219 } 4219 }
4220 .main__resume-base-body-item-wrapper { 4220 .main__resume-base-body-item-wrapper {
4221 display: -webkit-box; 4221 display: -webkit-box;
4222 display: -ms-flexbox; 4222 display: -ms-flexbox;
4223 display: flex; 4223 display: flex;
4224 -webkit-box-orient: vertical; 4224 -webkit-box-orient: vertical;
4225 -webkit-box-direction: normal; 4225 -webkit-box-direction: normal;
4226 -ms-flex-direction: column; 4226 -ms-flex-direction: column;
4227 flex-direction: column; 4227 flex-direction: column;
4228 -webkit-box-align: start; 4228 -webkit-box-align: start;
4229 -ms-flex-align: start; 4229 -ms-flex-align: start;
4230 align-items: flex-start; 4230 align-items: flex-start;
4231 gap: 20px; 4231 gap: 20px;
4232 width: 100%; 4232 width: 100%;
4233 } 4233 }
4234 @media (min-width: 768px) { 4234 @media (min-width: 768px) {
4235 .main__resume-base-body-item-wrapper { 4235 .main__resume-base-body-item-wrapper {
4236 -webkit-box-orient: horizontal; 4236 -webkit-box-orient: horizontal;
4237 -webkit-box-direction: normal; 4237 -webkit-box-direction: normal;
4238 -ms-flex-direction: row; 4238 -ms-flex-direction: row;
4239 flex-direction: row; 4239 flex-direction: row;
4240 } 4240 }
4241 } 4241 }
4242 .main__resume-base-body-item-photo { 4242 .main__resume-base-body-item-photo {
4243 width: 180px; 4243 width: 180px;
4244 aspect-ratio: 1/1; 4244 aspect-ratio: 1/1;
4245 -o-object-fit: cover; 4245 -o-object-fit: cover;
4246 object-fit: cover; 4246 object-fit: cover;
4247 border-radius: 8px; 4247 border-radius: 8px;
4248 } 4248 }
4249 @media (min-width: 768px) { 4249 @media (min-width: 768px) {
4250 .main__resume-base-body-item-photo { 4250 .main__resume-base-body-item-photo {
4251 width: 210px; 4251 width: 210px;
4252 } 4252 }
4253 } 4253 }
4254 .main__resume-base-body-item-inner { 4254 .main__resume-base-body-item-inner {
4255 display: -webkit-box; 4255 display: -webkit-box;
4256 display: -ms-flexbox; 4256 display: -ms-flexbox;
4257 display: flex; 4257 display: flex;
4258 -webkit-box-orient: vertical; 4258 -webkit-box-orient: vertical;
4259 -webkit-box-direction: normal; 4259 -webkit-box-direction: normal;
4260 -ms-flex-direction: column; 4260 -ms-flex-direction: column;
4261 flex-direction: column; 4261 flex-direction: column;
4262 gap: 10px; 4262 gap: 10px;
4263 width: 100%; 4263 width: 100%;
4264 row-gap: 10px; 4264 row-gap: 10px;
4265 } 4265 }
4266 .main__resume-base-body-item-inner .horizontal{ 4266 .main__resume-base-body-item-inner .horizontal{
4267 -webkit-box-orient: horizontal; 4267 -webkit-box-orient: horizontal;
4268 -ms-flex-direction: unset; 4268 -ms-flex-direction: unset;
4269 flex-direction: row; 4269 flex-direction: row;
4270 align-items: start; 4270 align-items: start;
4271 } 4271 }
4272 .main__resume-base-item-status{ 4272 .main__resume-base-item-status{
4273 width: fit-content; 4273 width: fit-content;
4274 background-color: #e6e6e6; 4274 background-color: #e6e6e6;
4275 font-weight: bold; 4275 font-weight: bold;
4276 padding: 5px 10px; 4276 padding: 5px 10px;
4277 border-radius: 8px; 4277 border-radius: 8px;
4278 } 4278 }
4279 .main__resume-base-item-status.looking-for-job{ 4279 .main__resume-base-item-status.looking-for-job{
4280 background-color: #eb5757; 4280 background-color: #eb5757;
4281 color: #fff; 4281 color: #fff;
4282 } 4282 }
4283 .main__resume-base-item-updated-at{ 4283 .main__resume-base-item-updated-at{
4284 padding: 5px 10px; 4284 padding: 5px 10px;
4285 border-radius: 8px; 4285 border-radius: 8px;
4286 border: 1px #e6e6e6 solid; 4286 border: 1px #e6e6e6 solid;
4287 } 4287 }
4288 @media (min-width: 768px) { 4288 @media (min-width: 768px) {
4289 .main__resume-base-body-item-inner { 4289 .main__resume-base-body-item-inner {
4290 gap: 16px; 4290 gap: 16px;
4291 padding-right: 50px; 4291 padding-right: 50px;
4292 } 4292 }
4293 } 4293 }
4294 @media (min-width: 992px) { 4294 @media (min-width: 992px) {
4295 .main__resume-base-body-item-inner { 4295 .main__resume-base-body-item-inner {
4296 display: grid; 4296 display: grid;
4297 grid-template-columns: repeat(2, 1fr); 4297 grid-template-columns: repeat(2, 1fr);
4298 gap: 30px; 4298 gap: 30px;
4299 row-gap: 10px; 4299 row-gap: 10px;
4300 } 4300 }
4301 } 4301 }
4302 .main__resume-base-body-item-inner div { 4302 .main__resume-base-body-item-inner div {
4303 display: -webkit-box; 4303 display: -webkit-box;
4304 display: -ms-flexbox; 4304 display: -ms-flexbox;
4305 display: flex; 4305 display: flex;
4306 -webkit-box-orient: vertical; 4306 -webkit-box-orient: vertical;
4307 -webkit-box-direction: normal; 4307 -webkit-box-direction: normal;
4308 -ms-flex-direction: column; 4308 -ms-flex-direction: column;
4309 flex-direction: column; 4309 flex-direction: column;
4310 gap: 4px; 4310 gap: 4px;
4311 font-size: 12px; 4311 font-size: 12px;
4312 } 4312 }
4313 @media (min-width: 768px) { 4313 @media (min-width: 768px) {
4314 .main__resume-base-body-item-inner div { 4314 .main__resume-base-body-item-inner div {
4315 font-size: 16px; 4315 font-size: 16px;
4316 } 4316 }
4317 } 4317 }
4318 .main__resume-base-body-item-inner b { 4318 .main__resume-base-body-item-inner b {
4319 color: #377d87; 4319 color: #377d87;
4320 font-size: 14px; 4320 font-size: 14px;
4321 } 4321 }
4322 @media (min-width: 768px) { 4322 @media (min-width: 768px) {
4323 .main__resume-base-body-item-inner b { 4323 .main__resume-base-body-item-inner b {
4324 font-size: 18px; 4324 font-size: 18px;
4325 } 4325 }
4326 } 4326 }
4327 .main__resume-base-body-item-link { 4327 .main__resume-base-body-item-link {
4328 width: 100%; 4328 width: 100%;
4329 padding: 0; 4329 padding: 0;
4330 } 4330 }
4331 @media (min-width: 768px) { 4331 @media (min-width: 768px) {
4332 .main__resume-base-body-item-link { 4332 .main__resume-base-body-item-link {
4333 width: 200px; 4333 width: 200px;
4334 } 4334 }
4335 } 4335 }
4336 .main__spoiler { 4336 .main__spoiler {
4337 overflow: hidden; 4337 overflow: hidden;
4338 border-radius: 8px; 4338 border-radius: 8px;
4339 display: -webkit-box; 4339 display: -webkit-box;
4340 display: -ms-flexbox; 4340 display: -ms-flexbox;
4341 display: flex; 4341 display: flex;
4342 -webkit-box-orient: vertical; 4342 -webkit-box-orient: vertical;
4343 -webkit-box-direction: normal; 4343 -webkit-box-direction: normal;
4344 -ms-flex-direction: column; 4344 -ms-flex-direction: column;
4345 flex-direction: column; 4345 flex-direction: column;
4346 } 4346 }
4347 .main__spoiler-toper { 4347 .main__spoiler-toper {
4348 background: #377d87; 4348 background: #377d87;
4349 height: 30px; 4349 height: 30px;
4350 display: -webkit-box; 4350 display: -webkit-box;
4351 display: -ms-flexbox; 4351 display: -ms-flexbox;
4352 display: flex; 4352 display: flex;
4353 -webkit-box-align: center; 4353 -webkit-box-align: center;
4354 -ms-flex-align: center; 4354 -ms-flex-align: center;
4355 align-items: center; 4355 align-items: center;
4356 -webkit-box-pack: center; 4356 -webkit-box-pack: center;
4357 -ms-flex-pack: center; 4357 -ms-flex-pack: center;
4358 justify-content: center; 4358 justify-content: center;
4359 color: #fff; 4359 color: #fff;
4360 font-size: 12px; 4360 font-size: 12px;
4361 font-weight: 700; 4361 font-weight: 700;
4362 padding: 0 30px; 4362 padding: 0 30px;
4363 border: none; 4363 border: none;
4364 position: relative; 4364 position: relative;
4365 } 4365 }
4366 @media (min-width: 768px) { 4366 @media (min-width: 768px) {
4367 .main__spoiler-toper { 4367 .main__spoiler-toper {
4368 font-size: 18px; 4368 font-size: 18px;
4369 height: 50px; 4369 height: 50px;
4370 padding: 0 60px; 4370 padding: 0 60px;
4371 } 4371 }
4372 } 4372 }
4373 .main__spoiler-toper:before, .main__spoiler-toper:after { 4373 .main__spoiler-toper:before, .main__spoiler-toper:after {
4374 content: ""; 4374 content: "";
4375 background: #fff; 4375 background: #fff;
4376 border-radius: 999px; 4376 border-radius: 999px;
4377 width: 10px; 4377 width: 10px;
4378 height: 1px; 4378 height: 1px;
4379 position: absolute; 4379 position: absolute;
4380 top: 50%; 4380 top: 50%;
4381 right: 10px; 4381 right: 10px;
4382 -webkit-transition: 0.3s; 4382 -webkit-transition: 0.3s;
4383 transition: 0.3s; 4383 transition: 0.3s;
4384 -webkit-transform: translate(0, -50%); 4384 -webkit-transform: translate(0, -50%);
4385 -ms-transform: translate(0, -50%); 4385 -ms-transform: translate(0, -50%);
4386 transform: translate(0, -50%); 4386 transform: translate(0, -50%);
4387 } 4387 }
4388 @media (min-width: 768px) { 4388 @media (min-width: 768px) {
4389 .main__spoiler-toper:before, .main__spoiler-toper:after { 4389 .main__spoiler-toper:before, .main__spoiler-toper:after {
4390 width: 20px; 4390 width: 20px;
4391 height: 2px; 4391 height: 2px;
4392 right: 20px; 4392 right: 20px;
4393 } 4393 }
4394 } 4394 }
4395 .main__spoiler-toper:after { 4395 .main__spoiler-toper:after {
4396 -webkit-transform: rotate(90deg); 4396 -webkit-transform: rotate(90deg);
4397 -ms-transform: rotate(90deg); 4397 -ms-transform: rotate(90deg);
4398 transform: rotate(90deg); 4398 transform: rotate(90deg);
4399 } 4399 }
4400 .main__spoiler-toper.active:after { 4400 .main__spoiler-toper.active:after {
4401 -webkit-transform: rotate(0deg); 4401 -webkit-transform: rotate(0deg);
4402 -ms-transform: rotate(0deg); 4402 -ms-transform: rotate(0deg);
4403 transform: rotate(0deg); 4403 transform: rotate(0deg);
4404 } 4404 }
4405 .main__spoiler-body { 4405 .main__spoiler-body {
4406 opacity: 0; 4406 opacity: 0;
4407 height: 0; 4407 height: 0;
4408 overflow: hidden; 4408 overflow: hidden;
4409 border-radius: 0 0 8px 8px; 4409 border-radius: 0 0 8px 8px;
4410 background: #fff; 4410 background: #fff;
4411 } 4411 }
4412 .main__spoiler-body table { 4412 .main__spoiler-body table {
4413 width: calc(100% + 2px); 4413 width: calc(100% + 2px);
4414 margin-left: -1px; 4414 margin-left: -1px;
4415 margin-bottom: -1px; 4415 margin-bottom: -1px;
4416 } 4416 }
4417 @media (min-width: 992px) { 4417 @media (min-width: 992px) {
4418 .main__spoiler-body table td { 4418 .main__spoiler-body table td {
4419 width: 50%; 4419 width: 50%;
4420 } 4420 }
4421 } 4421 }
4422 @media (min-width: 992px) { 4422 @media (min-width: 992px) {
4423 .main__spoiler-body table td + td { 4423 .main__spoiler-body table td + td {
4424 width: 50%; 4424 width: 50%;
4425 } 4425 }
4426 } 4426 }
4427 .active + .main__spoiler-body { 4427 .active + .main__spoiler-body {
4428 -webkit-transition: 0.3s; 4428 -webkit-transition: 0.3s;
4429 transition: 0.3s; 4429 transition: 0.3s;
4430 opacity: 1; 4430 opacity: 1;
4431 height: auto; 4431 height: auto;
4432 border: 1px solid #cecece; 4432 border: 1px solid #cecece;
4433 border-top: none; 4433 border-top: none;
4434 } 4434 }
4435 .main__table { 4435 .main__table {
4436 border-collapse: collapse; 4436 border-collapse: collapse;
4437 table-layout: fixed; 4437 table-layout: fixed;
4438 font-size: 12px; 4438 font-size: 12px;
4439 width: 100%; 4439 width: 100%;
4440 background: #fff; 4440 background: #fff;
4441 } 4441 }
4442 4442
4443 .main__table.worker_experience { 4443 .main__table.worker_experience {
4444 table-layout: unset; 4444 table-layout: unset;
4445 } 4445 }
4446 @media (min-width: 768px) { 4446 @media (min-width: 768px) {
4447 .main__table { 4447 .main__table {
4448 font-size: 16px; 4448 font-size: 16px;
4449 } 4449 }
4450 4450
4451 .main__table.worker_experience { 4451 .main__table.worker_experience {
4452 table-layout: fixed; 4452 table-layout: fixed;
4453 } 4453 }
4454 } 4454 }
4455 .main__table td { 4455 .main__table td {
4456 border: 1px solid #cecece; 4456 border: 1px solid #cecece;
4457 padding: 4px 8px; 4457 padding: 4px 8px;
4458 vertical-align: top; 4458 vertical-align: top;
4459 } 4459 }
4460 @media (min-width: 768px) { 4460 @media (min-width: 768px) {
4461 .main__table td { 4461 .main__table td {
4462 padding: 8px 16px; 4462 padding: 8px 16px;
4463 } 4463 }
4464 } 4464 }
4465 .main__table td b { 4465 .main__table td b {
4466 font-weight: 700; 4466 font-weight: 700;
4467 } 4467 }
4468 .main__table_three { 4468 .main__table_three {
4469 table-layout: auto; 4469 table-layout: auto;
4470 } 4470 }
4471 .main__table_three td { 4471 .main__table_three td {
4472 width: 25% !important; 4472 width: 25% !important;
4473 } 4473 }
4474 .main__table_three td:last-child { 4474 .main__table_three td:last-child {
4475 width: 50% !important; 4475 width: 50% !important;
4476 } 4476 }
4477 .main__table b { 4477 .main__table b {
4478 display: block; 4478 display: block;
4479 } 4479 }
4480 .main__table a { 4480 .main__table a {
4481 color: #377d87; 4481 color: #377d87;
4482 text-decoration: underline; 4482 text-decoration: underline;
4483 } 4483 }
4484 .main__table a:hover { 4484 .main__table a:hover {
4485 color: #000; 4485 color: #000;
4486 } 4486 }
4487 .main__resume-profile-about { 4487 .main__resume-profile-about {
4488 padding-top: 20px; 4488 padding-top: 20px;
4489 padding-bottom: 30px; 4489 padding-bottom: 30px;
4490 position: relative; 4490 position: relative;
4491 margin-top: 30px; 4491 margin-top: 30px;
4492 display: -webkit-box; 4492 display: -webkit-box;
4493 display: -ms-flexbox; 4493 display: -ms-flexbox;
4494 display: flex; 4494 display: flex;
4495 -webkit-box-orient: vertical; 4495 -webkit-box-orient: vertical;
4496 -webkit-box-direction: normal; 4496 -webkit-box-direction: normal;
4497 -ms-flex-direction: column; 4497 -ms-flex-direction: column;
4498 flex-direction: column; 4498 flex-direction: column;
4499 -webkit-box-align: start; 4499 -webkit-box-align: start;
4500 -ms-flex-align: start; 4500 -ms-flex-align: start;
4501 align-items: flex-start; 4501 align-items: flex-start;
4502 gap: 10px; 4502 gap: 10px;
4503 } 4503 }
4504 @media (min-width: 992px) { 4504 @media (min-width: 992px) {
4505 .main__resume-profile-about { 4505 .main__resume-profile-about {
4506 padding: 50px 0; 4506 padding: 50px 0;
4507 } 4507 }
4508 } 4508 }
4509 .main__resume-profile-about:before { 4509 .main__resume-profile-about:before {
4510 content: ""; 4510 content: "";
4511 position: absolute; 4511 position: absolute;
4512 z-index: 1; 4512 z-index: 1;
4513 top: 0; 4513 top: 0;
4514 left: 50%; 4514 left: 50%;
4515 width: 20000px; 4515 width: 20000px;
4516 height: 100%; 4516 height: 100%;
4517 margin-left: -10000px; 4517 margin-left: -10000px;
4518 background: linear-gradient(95deg, #f2f5fc 59.82%, #ebf2fc 99.99%); 4518 background: linear-gradient(95deg, #f2f5fc 59.82%, #ebf2fc 99.99%);
4519 } 4519 }
4520 .main__resume-profile-about-title { 4520 .main__resume-profile-about-title {
4521 position: relative; 4521 position: relative;
4522 z-index: 2; 4522 z-index: 2;
4523 color: #000; 4523 color: #000;
4524 } 4524 }
4525 .main__resume-profile-about-text { 4525 .main__resume-profile-about-text {
4526 position: relative; 4526 position: relative;
4527 z-index: 2; 4527 z-index: 2;
4528 } 4528 }
4529 .main__resume-profile-about-button { 4529 .main__resume-profile-about-button {
4530 position: relative; 4530 position: relative;
4531 z-index: 2; 4531 z-index: 2;
4532 /*margin-top: 10px;*/ 4532 /*margin-top: 10px;*/
4533 } 4533 }
4534 4534
4535 .table-responsive { 4535 .table-responsive {
4536 overflow: scroll; 4536 overflow: scroll;
4537 -webkit-overflow-scrolling: touch; 4537 -webkit-overflow-scrolling: touch;
4538 } 4538 }
4539 4539
4540 @media (min-width: 768px) { 4540 @media (min-width: 768px) {
4541 .table-responsive { 4541 .table-responsive {
4542 overflow: hidden; 4542 overflow: hidden;
4543 -webkit-overflow-scrolling: unset; 4543 -webkit-overflow-scrolling: unset;
4544 } 4544 }
4545 } 4545 }
4546 4546
4547 .main__resume-profile-about-buttons{ 4547 .main__resume-profile-about-buttons{
4548 display: flex; 4548 display: flex;
4549 width: 100%; 4549 width: 100%;
4550 position: relative; 4550 position: relative;
4551 z-index: 2; 4551 z-index: 2;
4552 } 4552 }
4553 .main__resume-profile-about-buttons .like{ 4553 .main__resume-profile-about-buttons .like{
4554 width: 200px; 4554 width: 200px;
4555 } 4555 }
4556 .main__resume-profile-about-buttons .like.active{ 4556 .main__resume-profile-about-buttons .like.active{
4557 background: #fff; 4557 background: #fff;
4558 color: #eb5757; 4558 color: #eb5757;
4559 } 4559 }
4560 .main__resume-profile-about-buttons .like .in-favorites{ 4560 .main__resume-profile-about-buttons .like .in-favorites{
4561 display: none; 4561 display: none;
4562 } 4562 }
4563 .main__resume-profile-about-buttons .like.active .in-favorites{ 4563 .main__resume-profile-about-buttons .like.active .in-favorites{
4564 display: block; 4564 display: block;
4565 color: #eb5757; 4565 color: #eb5757;
4566 } 4566 }
4567 .main__resume-profile-about-buttons .like.active .to-favorites{ 4567 .main__resume-profile-about-buttons .like.active .to-favorites{
4568 display: none; 4568 display: none;
4569 } 4569 }
4570 .main__resume-profile-about-text { 4570 .main__resume-profile-about-text {
4571 position: relative; 4571 position: relative;
4572 z-index: 2; 4572 z-index: 2;
4573 } 4573 }
4574 .main__resume-profile-info { 4574 .main__resume-profile-info {
4575 display: -webkit-box; 4575 display: -webkit-box;
4576 display: -ms-flexbox; 4576 display: -ms-flexbox;
4577 display: flex; 4577 display: flex;
4578 -webkit-box-orient: vertical; 4578 -webkit-box-orient: vertical;
4579 -webkit-box-direction: normal; 4579 -webkit-box-direction: normal;
4580 -ms-flex-direction: column; 4580 -ms-flex-direction: column;
4581 flex-direction: column; 4581 flex-direction: column;
4582 gap: 20px; 4582 gap: 20px;
4583 margin-top: 30px; 4583 margin-top: 30px;
4584 } 4584 }
4585 @media (min-width: 992px) { 4585 @media (min-width: 992px) {
4586 .main__resume-profile-info { 4586 .main__resume-profile-info {
4587 margin-top: 50px; 4587 margin-top: 50px;
4588 gap: 30px; 4588 gap: 30px;
4589 } 4589 }
4590 } 4590 }
4591 .main__resume-profile-info-title { 4591 .main__resume-profile-info-title {
4592 color: #000; 4592 color: #000;
4593 } 4593 }
4594 .main__resume-profile-info-body { 4594 .main__resume-profile-info-body {
4595 display: -webkit-box; 4595 display: -webkit-box;
4596 display: -ms-flexbox; 4596 display: -ms-flexbox;
4597 display: flex; 4597 display: flex;
4598 -webkit-box-orient: vertical; 4598 -webkit-box-orient: vertical;
4599 -webkit-box-direction: normal; 4599 -webkit-box-direction: normal;
4600 -ms-flex-direction: column; 4600 -ms-flex-direction: column;
4601 flex-direction: column; 4601 flex-direction: column;
4602 gap: 20px; 4602 gap: 20px;
4603 } 4603 }
4604 @media (min-width: 992px) { 4604 @media (min-width: 992px) {
4605 .main__resume-profile-info-body { 4605 .main__resume-profile-info-body {
4606 gap: 30px; 4606 gap: 30px;
4607 } 4607 }
4608 } 4608 }
4609 .main__resume-profile-info-body-item { 4609 .main__resume-profile-info-body-item {
4610 display: -webkit-box; 4610 display: -webkit-box;
4611 display: -ms-flexbox; 4611 display: -ms-flexbox;
4612 display: flex; 4612 display: flex;
4613 -webkit-box-orient: vertical; 4613 -webkit-box-orient: vertical;
4614 -webkit-box-direction: normal; 4614 -webkit-box-direction: normal;
4615 -ms-flex-direction: column; 4615 -ms-flex-direction: column;
4616 flex-direction: column; 4616 flex-direction: column;
4617 gap: 10px; 4617 gap: 10px;
4618 } 4618 }
4619 @media (min-width: 768px) { 4619 @media (min-width: 768px) {
4620 .main__resume-profile-info-body-item { 4620 .main__resume-profile-info-body-item {
4621 gap: 20px; 4621 gap: 20px;
4622 } 4622 }
4623 } 4623 }
4624 .main__resume-profile-info-body-subtitle { 4624 .main__resume-profile-info-body-subtitle {
4625 color: #4d88d9; 4625 color: #4d88d9;
4626 } 4626 }
4627 .main__resume-profile-info-body-inner { 4627 .main__resume-profile-info-body-inner {
4628 display: -webkit-box; 4628 display: -webkit-box;
4629 display: -ms-flexbox; 4629 display: -ms-flexbox;
4630 display: flex; 4630 display: flex;
4631 -webkit-box-orient: vertical; 4631 -webkit-box-orient: vertical;
4632 -webkit-box-direction: normal; 4632 -webkit-box-direction: normal;
4633 -ms-flex-direction: column; 4633 -ms-flex-direction: column;
4634 flex-direction: column; 4634 flex-direction: column;
4635 gap: 20px; 4635 gap: 20px;
4636 margin: 0; 4636 margin: 0;
4637 padding: 0; 4637 padding: 0;
4638 font-size: 12px; 4638 font-size: 12px;
4639 } 4639 }
4640 @media (min-width: 768px) { 4640 @media (min-width: 768px) {
4641 .main__resume-profile-info-body-inner { 4641 .main__resume-profile-info-body-inner {
4642 display: grid; 4642 display: grid;
4643 grid-template-columns: repeat(2, 1fr); 4643 grid-template-columns: repeat(2, 1fr);
4644 } 4644 }
4645 } 4645 }
4646 @media (min-width: 992px) { 4646 @media (min-width: 992px) {
4647 .main__resume-profile-info-body-inner { 4647 .main__resume-profile-info-body-inner {
4648 grid-template-columns: repeat(3, 1fr); 4648 grid-template-columns: repeat(3, 1fr);
4649 font-size: 16px; 4649 font-size: 16px;
4650 } 4650 }
4651 } 4651 }
4652 .main__resume-profile-info-body-inner li { 4652 .main__resume-profile-info-body-inner li {
4653 display: -webkit-box; 4653 display: -webkit-box;
4654 display: -ms-flexbox; 4654 display: -ms-flexbox;
4655 display: flex; 4655 display: flex;
4656 -webkit-box-orient: vertical; 4656 -webkit-box-orient: vertical;
4657 -webkit-box-direction: normal; 4657 -webkit-box-direction: normal;
4658 -ms-flex-direction: column; 4658 -ms-flex-direction: column;
4659 flex-direction: column; 4659 flex-direction: column;
4660 gap: 6px; 4660 gap: 6px;
4661 } 4661 }
4662 @media (min-width: 992px) { 4662 @media (min-width: 992px) {
4663 .main__resume-profile-info-body-inner li { 4663 .main__resume-profile-info-body-inner li {
4664 gap: 8px; 4664 gap: 8px;
4665 } 4665 }
4666 } 4666 }
4667 .main__resume-profile-info-body-inner b { 4667 .main__resume-profile-info-body-inner b {
4668 color: #377d87; 4668 color: #377d87;
4669 font-size: 14px; 4669 font-size: 14px;
4670 } 4670 }
4671 @media (min-width: 992px) { 4671 @media (min-width: 992px) {
4672 .main__resume-profile-info-body-inner b { 4672 .main__resume-profile-info-body-inner b {
4673 font-size: 18px; 4673 font-size: 18px;
4674 } 4674 }
4675 } 4675 }
4676 .main__resume-profile-info-body-inner span { 4676 .main__resume-profile-info-body-inner span {
4677 display: -webkit-box; 4677 display: -webkit-box;
4678 display: -ms-flexbox; 4678 display: -ms-flexbox;
4679 display: flex; 4679 display: flex;
4680 -webkit-box-orient: vertical; 4680 -webkit-box-orient: vertical;
4681 -webkit-box-direction: normal; 4681 -webkit-box-direction: normal;
4682 -ms-flex-direction: column; 4682 -ms-flex-direction: column;
4683 flex-direction: column; 4683 flex-direction: column;
4684 gap: 4px; 4684 gap: 4px;
4685 } 4685 }
4686 @media (min-width: 992px) { 4686 @media (min-width: 992px) {
4687 .main__resume-profile-info-body-inner span { 4687 .main__resume-profile-info-body-inner span {
4688 gap: 6px; 4688 gap: 6px;
4689 } 4689 }
4690 } 4690 }
4691 .main__resume-profile-review { 4691 .main__resume-profile-review {
4692 display: -webkit-box; 4692 display: -webkit-box;
4693 display: -ms-flexbox; 4693 display: -ms-flexbox;
4694 display: flex; 4694 display: flex;
4695 -webkit-box-orient: vertical; 4695 -webkit-box-orient: vertical;
4696 -webkit-box-direction: normal; 4696 -webkit-box-direction: normal;
4697 -ms-flex-direction: column; 4697 -ms-flex-direction: column;
4698 flex-direction: column; 4698 flex-direction: column;
4699 gap: 20px; 4699 gap: 20px;
4700 padding: 20px 10px; 4700 padding: 20px 10px;
4701 margin-top: 30px; 4701 margin-top: 30px;
4702 border-radius: 16px; 4702 border-radius: 16px;
4703 border: 1px solid #cecece; 4703 border: 1px solid #cecece;
4704 background: #fff; 4704 background: #fff;
4705 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2); 4705 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
4706 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2); 4706 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
4707 } 4707 }
4708 @media (min-width: 992px) { 4708 @media (min-width: 992px) {
4709 .main__resume-profile-review { 4709 .main__resume-profile-review {
4710 margin-top: 50px; 4710 margin-top: 50px;
4711 padding: 50px 40px; 4711 padding: 50px 40px;
4712 gap: 30px; 4712 gap: 30px;
4713 } 4713 }
4714 } 4714 }
4715 .main__resume-profile-review-title { 4715 .main__resume-profile-review-title {
4716 color: #000; 4716 color: #000;
4717 } 4717 }
4718 .main__resume-profile-review-body { 4718 .main__resume-profile-review-body {
4719 display: -webkit-box; 4719 display: -webkit-box;
4720 display: -ms-flexbox; 4720 display: -ms-flexbox;
4721 display: flex; 4721 display: flex;
4722 -webkit-box-orient: vertical; 4722 -webkit-box-orient: vertical;
4723 -webkit-box-direction: normal; 4723 -webkit-box-direction: normal;
4724 -ms-flex-direction: column; 4724 -ms-flex-direction: column;
4725 flex-direction: column; 4725 flex-direction: column;
4726 -webkit-box-align: start; 4726 -webkit-box-align: start;
4727 -ms-flex-align: start; 4727 -ms-flex-align: start;
4728 align-items: flex-start; 4728 align-items: flex-start;
4729 gap: 10px; 4729 gap: 10px;
4730 } 4730 }
4731 .main__resume-profile-review-body .textarea { 4731 .main__resume-profile-review-body .textarea {
4732 width: 100%; 4732 width: 100%;
4733 } 4733 }
4734 .main__resume-profile-review-body .button { 4734 .main__resume-profile-review-body .button {
4735 margin-top: 10px; 4735 margin-top: 10px;
4736 } 4736 }
4737 .main__vacancies { 4737 .main__vacancies {
4738 display: -webkit-box; 4738 display: -webkit-box;
4739 display: -ms-flexbox; 4739 display: -ms-flexbox;
4740 display: flex; 4740 display: flex;
4741 -webkit-box-orient: vertical; 4741 -webkit-box-orient: vertical;
4742 -webkit-box-direction: normal; 4742 -webkit-box-direction: normal;
4743 -ms-flex-direction: column; 4743 -ms-flex-direction: column;
4744 flex-direction: column; 4744 flex-direction: column;
4745 -webkit-box-align: center; 4745 -webkit-box-align: center;
4746 -ms-flex-align: center; 4746 -ms-flex-align: center;
4747 align-items: center; 4747 align-items: center;
4748 gap: 20px; 4748 gap: 20px;
4749 } 4749 }
4750 @media (min-width: 768px) { 4750 @media (min-width: 768px) {
4751 .main__vacancies { 4751 .main__vacancies {
4752 gap: 30px; 4752 gap: 30px;
4753 } 4753 }
4754 } 4754 }
4755 .main__vacancies-title { 4755 .main__vacancies-title {
4756 color: #000; 4756 color: #000;
4757 width: 100%; 4757 width: 100%;
4758 } 4758 }
4759 .main__vacancies-filters { 4759 .main__vacancies-filters {
4760 width: 100%; 4760 width: 100%;
4761 } 4761 }
4762 .main__vacancies-item { 4762 .main__vacancies-item {
4763 width: 100%; 4763 width: 100%;
4764 background: none; 4764 background: none;
4765 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2); 4765 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
4766 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2); 4766 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
4767 } 4767 }
4768 .main__vacancies-item-page { 4768 .main__vacancies-item-page {
4769 border: none; 4769 border: none;
4770 -webkit-box-shadow: none; 4770 -webkit-box-shadow: none;
4771 box-shadow: none; 4771 box-shadow: none;
4772 background: none; 4772 background: none;
4773 margin: 0 -10px; 4773 margin: 0 -10px;
4774 } 4774 }
4775 @media (min-width: 768px) { 4775 @media (min-width: 768px) {
4776 .main__vacancies-item-page { 4776 .main__vacancies-item-page {
4777 margin: 0 -20px; 4777 margin: 0 -20px;
4778 } 4778 }
4779 } 4779 }
4780 .main__vacancies-thing { 4780 .main__vacancies-thing {
4781 width: 100%; 4781 width: 100%;
4782 background: linear-gradient(95deg, #f2f5fc 59.82%, #ebf2fc 99.99%); 4782 background: linear-gradient(95deg, #f2f5fc 59.82%, #ebf2fc 99.99%);
4783 padding: 20px 10px; 4783 padding: 20px 10px;
4784 padding-bottom: 30px; 4784 padding-bottom: 30px;
4785 display: -webkit-box; 4785 display: -webkit-box;
4786 display: -ms-flexbox; 4786 display: -ms-flexbox;
4787 display: flex; 4787 display: flex;
4788 -webkit-box-orient: vertical; 4788 -webkit-box-orient: vertical;
4789 -webkit-box-direction: normal; 4789 -webkit-box-direction: normal;
4790 -ms-flex-direction: column; 4790 -ms-flex-direction: column;
4791 flex-direction: column; 4791 flex-direction: column;
4792 gap: 24px; 4792 gap: 24px;
4793 border-radius: 12px; 4793 border-radius: 12px;
4794 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2); 4794 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
4795 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2); 4795 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
4796 } 4796 }
4797 @media (min-width: 992px) { 4797 @media (min-width: 992px) {
4798 .main__vacancies-thing { 4798 .main__vacancies-thing {
4799 padding: 30px 20px; 4799 padding: 30px 20px;
4800 -webkit-box-orient: horizontal; 4800 -webkit-box-orient: horizontal;
4801 -webkit-box-direction: normal; 4801 -webkit-box-direction: normal;
4802 -ms-flex-direction: row; 4802 -ms-flex-direction: row;
4803 flex-direction: row; 4803 flex-direction: row;
4804 -webkit-box-align: start; 4804 -webkit-box-align: start;
4805 -ms-flex-align: start; 4805 -ms-flex-align: start;
4806 align-items: flex-start; 4806 align-items: flex-start;
4807 gap: 0; 4807 gap: 0;
4808 } 4808 }
4809 } 4809 }
4810 @media (min-width: 1280px) { 4810 @media (min-width: 1280px) {
4811 .main__vacancies-thing { 4811 .main__vacancies-thing {
4812 padding: 50px 20px; 4812 padding: 50px 20px;
4813 } 4813 }
4814 } 4814 }
4815 .main__vacancies-thing-pic { 4815 .main__vacancies-thing-pic {
4816 position: relative; 4816 position: relative;
4817 z-index: 2; 4817 z-index: 2;
4818 width: 100%; 4818 width: 100%;
4819 aspect-ratio: 42/34; 4819 aspect-ratio: 42/34;
4820 -o-object-fit: cover; 4820 -o-object-fit: cover;
4821 object-fit: cover; 4821 object-fit: cover;
4822 border-radius: 8px; 4822 border-radius: 8px;
4823 max-height: 340px; 4823 max-height: 340px;
4824 } 4824 }
4825 @media (min-width: 992px) { 4825 @media (min-width: 992px) {
4826 .main__vacancies-thing-pic { 4826 .main__vacancies-thing-pic {
4827 width: 380px; 4827 width: 380px;
4828 } 4828 }
4829 } 4829 }
4830 @media (min-width: 1280px) { 4830 @media (min-width: 1280px) {
4831 .main__vacancies-thing-pic { 4831 .main__vacancies-thing-pic {
4832 width: 420px; 4832 width: 420px;
4833 } 4833 }
4834 } 4834 }
4835 .main__vacancies-thing-body { 4835 .main__vacancies-thing-body {
4836 display: -webkit-box; 4836 display: -webkit-box;
4837 display: -ms-flexbox; 4837 display: -ms-flexbox;
4838 display: flex; 4838 display: flex;
4839 -webkit-box-orient: vertical; 4839 -webkit-box-orient: vertical;
4840 -webkit-box-direction: normal; 4840 -webkit-box-direction: normal;
4841 -ms-flex-direction: column; 4841 -ms-flex-direction: column;
4842 flex-direction: column; 4842 flex-direction: column;
4843 -webkit-box-align: start; 4843 -webkit-box-align: start;
4844 -ms-flex-align: start; 4844 -ms-flex-align: start;
4845 align-items: flex-start; 4845 align-items: flex-start;
4846 gap: 16px; 4846 gap: 16px;
4847 color: #000; 4847 color: #000;
4848 } 4848 }
4849 @media (min-width: 992px) { 4849 @media (min-width: 992px) {
4850 .main__vacancies-thing-body { 4850 .main__vacancies-thing-body {
4851 width: calc(100% - 380px); 4851 width: calc(100% - 380px);
4852 padding-left: 20px; 4852 padding-left: 20px;
4853 } 4853 }
4854 } 4854 }
4855 @media (min-width: 1280px) { 4855 @media (min-width: 1280px) {
4856 .main__vacancies-thing-body { 4856 .main__vacancies-thing-body {
4857 width: calc(100% - 420px); 4857 width: calc(100% - 420px);
4858 gap: 20px; 4858 gap: 20px;
4859 } 4859 }
4860 } 4860 }
4861 .main__vacancies-thing-body > * { 4861 .main__vacancies-thing-body > * {
4862 width: 100%; 4862 width: 100%;
4863 } 4863 }
4864 .main__vacancies-thing-body .button { 4864 .main__vacancies-thing-body .button {
4865 width: auto; 4865 width: auto;
4866 } 4866 }
4867 @media (min-width: 768px) { 4867 @media (min-width: 768px) {
4868 .main__vacancies-thing-body .button { 4868 .main__vacancies-thing-body .button {
4869 min-width: 200px; 4869 min-width: 200px;
4870 } 4870 }
4871 } 4871 }
4872 .main__vacancies-thing-scroll { 4872 .main__vacancies-thing-scroll {
4873 display: -webkit-box; 4873 display: -webkit-box;
4874 display: -ms-flexbox; 4874 display: -ms-flexbox;
4875 display: flex; 4875 display: flex;
4876 -webkit-box-orient: vertical; 4876 -webkit-box-orient: vertical;
4877 -webkit-box-direction: normal; 4877 -webkit-box-direction: normal;
4878 -ms-flex-direction: column; 4878 -ms-flex-direction: column;
4879 flex-direction: column; 4879 flex-direction: column;
4880 -webkit-box-align: start; 4880 -webkit-box-align: start;
4881 -ms-flex-align: start; 4881 -ms-flex-align: start;
4882 align-items: flex-start; 4882 align-items: flex-start;
4883 gap: 16px; 4883 gap: 16px;
4884 overflow: hidden; 4884 overflow: hidden;
4885 overflow-y: auto; 4885 overflow-y: auto;
4886 max-height: 180px; 4886 max-height: 180px;
4887 padding-right: 10px; 4887 padding-right: 10px;
4888 } 4888 }
4889 @media (min-width: 768px) { 4889 @media (min-width: 768px) {
4890 .main__vacancies-thing-scroll { 4890 .main__vacancies-thing-scroll {
4891 max-height: 210px; 4891 max-height: 210px;
4892 padding-right: 20px; 4892 padding-right: 20px;
4893 } 4893 }
4894 } 4894 }
4895 @media (min-width: 992px) { 4895 @media (min-width: 992px) {
4896 .main__vacancies-thing-scroll { 4896 .main__vacancies-thing-scroll {
4897 max-height: 175px; 4897 max-height: 175px;
4898 } 4898 }
4899 } 4899 }
4900 @media (min-width: 1280px) { 4900 @media (min-width: 1280px) {
4901 .main__vacancies-thing-scroll { 4901 .main__vacancies-thing-scroll {
4902 max-height: 200px; 4902 max-height: 200px;
4903 gap: 20px; 4903 gap: 20px;
4904 } 4904 }
4905 } 4905 }
4906 .main__cond { 4906 .main__cond {
4907 display: -webkit-box; 4907 display: -webkit-box;
4908 display: -ms-flexbox; 4908 display: -ms-flexbox;
4909 display: flex; 4909 display: flex;
4910 -webkit-box-orient: vertical; 4910 -webkit-box-orient: vertical;
4911 -webkit-box-direction: normal; 4911 -webkit-box-direction: normal;
4912 -ms-flex-direction: column; 4912 -ms-flex-direction: column;
4913 flex-direction: column; 4913 flex-direction: column;
4914 gap: 50px; 4914 gap: 50px;
4915 } 4915 }
4916 .main__cond > div { 4916 .main__cond > div {
4917 display: -webkit-box; 4917 display: -webkit-box;
4918 display: -ms-flexbox; 4918 display: -ms-flexbox;
4919 display: flex; 4919 display: flex;
4920 -webkit-box-orient: vertical; 4920 -webkit-box-orient: vertical;
4921 -webkit-box-direction: normal; 4921 -webkit-box-direction: normal;
4922 -ms-flex-direction: column; 4922 -ms-flex-direction: column;
4923 flex-direction: column; 4923 flex-direction: column;
4924 gap: 10px; 4924 gap: 10px;
4925 } 4925 }
4926 .main__cond-label { 4926 .main__cond-label {
4927 border-radius: 16px; 4927 border-radius: 16px;
4928 border: 1px solid #cecece; 4928 border: 1px solid #cecece;
4929 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2); 4929 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
4930 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2); 4930 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
4931 padding: 30px 20px; 4931 padding: 30px 20px;
4932 font-weight: 700; 4932 font-weight: 700;
4933 color: #000; 4933 color: #000;
4934 line-height: 2; 4934 line-height: 2;
4935 text-align: center; 4935 text-align: center;
4936 } 4936 }
4937 @media (min-width: 992px) { 4937 @media (min-width: 992px) {
4938 .main__cond-label { 4938 .main__cond-label {
4939 font-size: 30px; 4939 font-size: 30px;
4940 } 4940 }
4941 } 4941 }
4942 .main__cond-icons { 4942 .main__cond-icons {
4943 padding: 0; 4943 padding: 0;
4944 margin: 0; 4944 margin: 0;
4945 display: -webkit-box; 4945 display: -webkit-box;
4946 display: -ms-flexbox; 4946 display: -ms-flexbox;
4947 display: flex; 4947 display: flex;
4948 -webkit-box-orient: vertical; 4948 -webkit-box-orient: vertical;
4949 -webkit-box-direction: normal; 4949 -webkit-box-direction: normal;
4950 -ms-flex-direction: column; 4950 -ms-flex-direction: column;
4951 flex-direction: column; 4951 flex-direction: column;
4952 gap: 25px; 4952 gap: 25px;
4953 margin-top: 10px; 4953 margin-top: 10px;
4954 } 4954 }
4955 @media (min-width: 768px) { 4955 @media (min-width: 768px) {
4956 .main__cond-icons { 4956 .main__cond-icons {
4957 display: grid; 4957 display: grid;
4958 grid-template-columns: repeat(2, 1fr); 4958 grid-template-columns: repeat(2, 1fr);
4959 gap: 60px; 4959 gap: 60px;
4960 margin-top: 20px; 4960 margin-top: 20px;
4961 } 4961 }
4962 } 4962 }
4963 @media (min-width: 1280px) { 4963 @media (min-width: 1280px) {
4964 .main__cond-icons { 4964 .main__cond-icons {
4965 grid-template-columns: repeat(3, 1fr); 4965 grid-template-columns: repeat(3, 1fr);
4966 } 4966 }
4967 } 4967 }
4968 .main__cond-icons li { 4968 .main__cond-icons li {
4969 display: -webkit-box; 4969 display: -webkit-box;
4970 display: -ms-flexbox; 4970 display: -ms-flexbox;
4971 display: flex; 4971 display: flex;
4972 -webkit-box-orient: vertical; 4972 -webkit-box-orient: vertical;
4973 -webkit-box-direction: normal; 4973 -webkit-box-direction: normal;
4974 -ms-flex-direction: column; 4974 -ms-flex-direction: column;
4975 flex-direction: column; 4975 flex-direction: column;
4976 -webkit-box-align: start; 4976 -webkit-box-align: start;
4977 -ms-flex-align: start; 4977 -ms-flex-align: start;
4978 align-items: flex-start; 4978 align-items: flex-start;
4979 gap: 20px; 4979 gap: 20px;
4980 font-size: 12px; 4980 font-size: 12px;
4981 line-height: 1.4; 4981 line-height: 1.4;
4982 color: #000; 4982 color: #000;
4983 } 4983 }
4984 @media (min-width: 768px) { 4984 @media (min-width: 768px) {
4985 .main__cond-icons li { 4985 .main__cond-icons li {
4986 font-size: 14px; 4986 font-size: 14px;
4987 } 4987 }
4988 } 4988 }
4989 @media (min-width: 992px) { 4989 @media (min-width: 992px) {
4990 .main__cond-icons li { 4990 .main__cond-icons li {
4991 font-size: 16px; 4991 font-size: 16px;
4992 line-height: 1.6; 4992 line-height: 1.6;
4993 } 4993 }
4994 } 4994 }
4995 @media (min-width: 1280px) { 4995 @media (min-width: 1280px) {
4996 .main__cond-icons li { 4996 .main__cond-icons li {
4997 font-size: 18px; 4997 font-size: 18px;
4998 } 4998 }
4999 } 4999 }
5000 .main__cond-icons li span { 5000 .main__cond-icons li span {
5001 width: 48px; 5001 width: 48px;
5002 height: 48px; 5002 height: 48px;
5003 display: -webkit-box; 5003 display: -webkit-box;
5004 display: -ms-flexbox; 5004 display: -ms-flexbox;
5005 display: flex; 5005 display: flex;
5006 -webkit-box-align: center; 5006 -webkit-box-align: center;
5007 -ms-flex-align: center; 5007 -ms-flex-align: center;
5008 align-items: center; 5008 align-items: center;
5009 } 5009 }
5010 .main__cond-icons li span img { 5010 .main__cond-icons li span img {
5011 max-width: 48px; 5011 max-width: 48px;
5012 } 5012 }
5013 .main__cond-callback { 5013 .main__cond-callback {
5014 margin-top: 10px; 5014 margin-top: 10px;
5015 } 5015 }
5016 .main__ads { 5016 .main__ads {
5017 display: -webkit-box; 5017 display: -webkit-box;
5018 display: -ms-flexbox; 5018 display: -ms-flexbox;
5019 display: flex; 5019 display: flex;
5020 -webkit-box-orient: vertical; 5020 -webkit-box-orient: vertical;
5021 -webkit-box-direction: normal; 5021 -webkit-box-direction: normal;
5022 -ms-flex-direction: column; 5022 -ms-flex-direction: column;
5023 flex-direction: column; 5023 flex-direction: column;
5024 gap: 30px; 5024 gap: 30px;
5025 margin: 30px 0; 5025 margin: 30px 0;
5026 } 5026 }
5027 @media (min-width: 992px) { 5027 @media (min-width: 992px) {
5028 .main__ads { 5028 .main__ads {
5029 margin: 60px 0; 5029 margin: 60px 0;
5030 } 5030 }
5031 } 5031 }
5032 .main__ads-item { 5032 .main__ads-item {
5033 display: -webkit-box; 5033 display: -webkit-box;
5034 display: -ms-flexbox; 5034 display: -ms-flexbox;
5035 display: flex; 5035 display: flex;
5036 -webkit-box-orient: vertical; 5036 -webkit-box-orient: vertical;
5037 -webkit-box-direction: normal; 5037 -webkit-box-direction: normal;
5038 -ms-flex-direction: column; 5038 -ms-flex-direction: column;
5039 flex-direction: column; 5039 flex-direction: column;
5040 gap: 16px; 5040 gap: 16px;
5041 } 5041 }
5042 @media (min-width: 992px) { 5042 @media (min-width: 992px) {
5043 .main__ads-item { 5043 .main__ads-item {
5044 -webkit-box-orient: horizontal; 5044 -webkit-box-orient: horizontal;
5045 -webkit-box-direction: normal; 5045 -webkit-box-direction: normal;
5046 -ms-flex-direction: row; 5046 -ms-flex-direction: row;
5047 flex-direction: row; 5047 flex-direction: row;
5048 gap: 0; 5048 gap: 0;
5049 } 5049 }
5050 } 5050 }
5051 .main__ads-item-pic { 5051 .main__ads-item-pic {
5052 width: 100%; 5052 width: 100%;
5053 max-width: 440px; 5053 max-width: 440px;
5054 max-height: 200px; 5054 max-height: 200px;
5055 aspect-ratio: 3/2; 5055 aspect-ratio: 3/2;
5056 position: relative; 5056 position: relative;
5057 overflow: hidden; 5057 overflow: hidden;
5058 border-radius: 12px; 5058 border-radius: 12px;
5059 } 5059 }
5060 @media (min-width: 992px) { 5060 @media (min-width: 992px) {
5061 .main__ads-item-pic { 5061 .main__ads-item-pic {
5062 width: 200px; 5062 width: 200px;
5063 aspect-ratio: 1/1; 5063 aspect-ratio: 1/1;
5064 } 5064 }
5065 } 5065 }
5066 .main__ads-item-pic img { 5066 .main__ads-item-pic img {
5067 z-index: 1; 5067 z-index: 1;
5068 position: absolute; 5068 position: absolute;
5069 top: 0; 5069 top: 0;
5070 left: 0; 5070 left: 0;
5071 width: 100%; 5071 width: 100%;
5072 height: 100%; 5072 height: 100%;
5073 -o-object-fit: cover; 5073 -o-object-fit: cover;
5074 object-fit: cover; 5074 object-fit: cover;
5075 } 5075 }
5076 .main__ads-item-pic span { 5076 .main__ads-item-pic span {
5077 z-index: 2; 5077 z-index: 2;
5078 width: 30px; 5078 width: 30px;
5079 height: 30px; 5079 height: 30px;
5080 border-radius: 6px; 5080 border-radius: 6px;
5081 background: #4d88d9; 5081 background: #4d88d9;
5082 display: -webkit-box; 5082 display: -webkit-box;
5083 display: -ms-flexbox; 5083 display: -ms-flexbox;
5084 display: flex; 5084 display: flex;
5085 -webkit-box-pack: center; 5085 -webkit-box-pack: center;
5086 -ms-flex-pack: center; 5086 -ms-flex-pack: center;
5087 justify-content: center; 5087 justify-content: center;
5088 -webkit-box-align: center; 5088 -webkit-box-align: center;
5089 -ms-flex-align: center; 5089 -ms-flex-align: center;
5090 align-items: center; 5090 align-items: center;
5091 position: absolute; 5091 position: absolute;
5092 top: 10px; 5092 top: 10px;
5093 left: 10px; 5093 left: 10px;
5094 color: #fff; 5094 color: #fff;
5095 } 5095 }
5096 @media (min-width: 992px) { 5096 @media (min-width: 992px) {
5097 .main__ads-item-pic span { 5097 .main__ads-item-pic span {
5098 width: 42px; 5098 width: 42px;
5099 height: 42px; 5099 height: 42px;
5100 } 5100 }
5101 } 5101 }
5102 .main__ads-item-pic span svg { 5102 .main__ads-item-pic span svg {
5103 width: 12px; 5103 width: 12px;
5104 height: 12px; 5104 height: 12px;
5105 } 5105 }
5106 @media (min-width: 992px) { 5106 @media (min-width: 992px) {
5107 .main__ads-item-pic span svg { 5107 .main__ads-item-pic span svg {
5108 width: 20px; 5108 width: 20px;
5109 height: 20px; 5109 height: 20px;
5110 } 5110 }
5111 } 5111 }
5112 .main__ads-item-body { 5112 .main__ads-item-body {
5113 display: -webkit-box; 5113 display: -webkit-box;
5114 display: -ms-flexbox; 5114 display: -ms-flexbox;
5115 display: flex; 5115 display: flex;
5116 -webkit-box-orient: vertical; 5116 -webkit-box-orient: vertical;
5117 -webkit-box-direction: normal; 5117 -webkit-box-direction: normal;
5118 -ms-flex-direction: column; 5118 -ms-flex-direction: column;
5119 flex-direction: column; 5119 flex-direction: column;
5120 -webkit-box-align: start; 5120 -webkit-box-align: start;
5121 -ms-flex-align: start; 5121 -ms-flex-align: start;
5122 align-items: flex-start; 5122 align-items: flex-start;
5123 gap: 10px; 5123 gap: 10px;
5124 font-size: 12px; 5124 font-size: 12px;
5125 } 5125 }
5126 @media (min-width: 992px) { 5126 @media (min-width: 992px) {
5127 .main__ads-item-body { 5127 .main__ads-item-body {
5128 width: calc(100% - 200px); 5128 width: calc(100% - 200px);
5129 padding-left: 40px; 5129 padding-left: 40px;
5130 -webkit-box-pack: center; 5130 -webkit-box-pack: center;
5131 -ms-flex-pack: center; 5131 -ms-flex-pack: center;
5132 justify-content: center; 5132 justify-content: center;
5133 font-size: 16px; 5133 font-size: 16px;
5134 gap: 20px; 5134 gap: 20px;
5135 } 5135 }
5136 } 5136 }
5137 .main__ads-item-body b { 5137 .main__ads-item-body b {
5138 width: 100%; 5138 width: 100%;
5139 font-weight: 700; 5139 font-weight: 700;
5140 font-size: 14px; 5140 font-size: 14px;
5141 } 5141 }
5142 @media (min-width: 992px) { 5142 @media (min-width: 992px) {
5143 .main__ads-item-body b { 5143 .main__ads-item-body b {
5144 font-size: 20px; 5144 font-size: 20px;
5145 } 5145 }
5146 } 5146 }
5147 .main__ads-item-body span { 5147 .main__ads-item-body span {
5148 width: 100%; 5148 width: 100%;
5149 } 5149 }
5150 5150
5151 .work { 5151 .work {
5152 background: linear-gradient(95deg, #f2f5fc 59.82%, #ebf2fc 99.99%); 5152 background: linear-gradient(95deg, #f2f5fc 59.82%, #ebf2fc 99.99%);
5153 color: #000; 5153 color: #000;
5154 padding-top: 70px; 5154 padding-top: 70px;
5155 padding-bottom: 10px; 5155 padding-bottom: 10px;
5156 position: relative; 5156 position: relative;
5157 overflow: hidden; 5157 overflow: hidden;
5158 } 5158 }
5159 @media (min-width: 768px) { 5159 @media (min-width: 768px) {
5160 .work { 5160 .work {
5161 padding-bottom: 25px; 5161 padding-bottom: 25px;
5162 } 5162 }
5163 } 5163 }
5164 @media (min-width: 1280px) { 5164 @media (min-width: 1280px) {
5165 .work { 5165 .work {
5166 padding-top: 80px; 5166 padding-top: 80px;
5167 padding-bottom: 25px; 5167 padding-bottom: 25px;
5168 } 5168 }
5169 } 5169 }
5170 .work__pic { 5170 .work__pic {
5171 position: absolute; 5171 position: absolute;
5172 height: calc(100% - 40px); 5172 height: calc(100% - 40px);
5173 z-index: 1; 5173 z-index: 1;
5174 display: none; 5174 display: none;
5175 bottom: 0; 5175 bottom: 0;
5176 left: 50%; 5176 left: 50%;
5177 margin-left: 40px; 5177 margin-left: 40px;
5178 } 5178 }
5179 @media (min-width: 992px) { 5179 @media (min-width: 992px) {
5180 .work__pic { 5180 .work__pic {
5181 display: block; 5181 display: block;
5182 } 5182 }
5183 } 5183 }
5184 @media (min-width: 1280px) { 5184 @media (min-width: 1280px) {
5185 .work__pic { 5185 .work__pic {
5186 margin-left: 80px; 5186 margin-left: 80px;
5187 } 5187 }
5188 } 5188 }
5189 .work__body { 5189 .work__body {
5190 position: relative; 5190 position: relative;
5191 z-index: 2; 5191 z-index: 2;
5192 display: -webkit-box; 5192 display: -webkit-box;
5193 display: -ms-flexbox; 5193 display: -ms-flexbox;
5194 display: flex; 5194 display: flex;
5195 -webkit-box-orient: vertical; 5195 -webkit-box-orient: vertical;
5196 -webkit-box-direction: normal; 5196 -webkit-box-direction: normal;
5197 -ms-flex-direction: column; 5197 -ms-flex-direction: column;
5198 flex-direction: column; 5198 flex-direction: column;
5199 -webkit-box-align: center; 5199 -webkit-box-align: center;
5200 -ms-flex-align: center; 5200 -ms-flex-align: center;
5201 align-items: center; 5201 align-items: center;
5202 } 5202 }
5203 @media (min-width: 768px) { 5203 @media (min-width: 768px) {
5204 .work__body { 5204 .work__body {
5205 -webkit-box-align: start; 5205 -webkit-box-align: start;
5206 -ms-flex-align: start; 5206 -ms-flex-align: start;
5207 align-items: flex-start; 5207 align-items: flex-start;
5208 } 5208 }
5209 } 5209 }
5210 @media (min-width: 992px) { 5210 @media (min-width: 992px) {
5211 .work__body { 5211 .work__body {
5212 max-width: 600px; 5212 max-width: 600px;
5213 } 5213 }
5214 } 5214 }
5215 .work__title { 5215 .work__title {
5216 width: 100%; 5216 width: 100%;
5217 font-size: 40px; 5217 font-size: 40px;
5218 font-weight: 700; 5218 font-weight: 700;
5219 line-height: 1; 5219 line-height: 1;
5220 } 5220 }
5221 @media (min-width: 768px) { 5221 @media (min-width: 768px) {
5222 .work__title { 5222 .work__title {
5223 font-size: 64px; 5223 font-size: 64px;
5224 line-height: 94px; 5224 line-height: 94px;
5225 } 5225 }
5226 } 5226 }
5227 .work__text { 5227 .work__text {
5228 width: 100%; 5228 width: 100%;
5229 font-size: 12px; 5229 font-size: 12px;
5230 margin-top: 10px; 5230 margin-top: 10px;
5231 } 5231 }
5232 @media (min-width: 768px) { 5232 @media (min-width: 768px) {
5233 .work__text { 5233 .work__text {
5234 font-size: 18px; 5234 font-size: 18px;
5235 margin-top: 20px; 5235 margin-top: 20px;
5236 line-height: 1.4; 5236 line-height: 1.4;
5237 } 5237 }
5238 } 5238 }
5239 .work__list { 5239 .work__list {
5240 width: 100%; 5240 width: 100%;
5241 display: -webkit-box; 5241 display: -webkit-box;
5242 display: -ms-flexbox; 5242 display: -ms-flexbox;
5243 display: flex; 5243 display: flex;
5244 -webkit-box-orient: vertical; 5244 -webkit-box-orient: vertical;
5245 -webkit-box-direction: normal; 5245 -webkit-box-direction: normal;
5246 -ms-flex-direction: column; 5246 -ms-flex-direction: column;
5247 flex-direction: column; 5247 flex-direction: column;
5248 gap: 5px; 5248 gap: 5px;
5249 font-size: 14px; 5249 font-size: 14px;
5250 font-weight: 700; 5250 font-weight: 700;
5251 margin-top: 15px; 5251 margin-top: 15px;
5252 } 5252 }
5253 @media (min-width: 768px) { 5253 @media (min-width: 768px) {
5254 .work__list { 5254 .work__list {
5255 font-size: 18px; 5255 font-size: 18px;
5256 gap: 8px; 5256 gap: 8px;
5257 margin-top: 30px; 5257 margin-top: 30px;
5258 } 5258 }
5259 } 5259 }
5260 .work__list div { 5260 .work__list div {
5261 position: relative; 5261 position: relative;
5262 padding-left: 10px; 5262 padding-left: 10px;
5263 } 5263 }
5264 @media (min-width: 768px) { 5264 @media (min-width: 768px) {
5265 .work__list div { 5265 .work__list div {
5266 padding-left: 16px; 5266 padding-left: 16px;
5267 } 5267 }
5268 } 5268 }
5269 .work__list div:before { 5269 .work__list div:before {
5270 content: ""; 5270 content: "";
5271 width: 4px; 5271 width: 4px;
5272 height: 4px; 5272 height: 4px;
5273 background: #000; 5273 background: #000;
5274 border-radius: 999px; 5274 border-radius: 999px;
5275 position: absolute; 5275 position: absolute;
5276 top: 5px; 5276 top: 5px;
5277 left: 0; 5277 left: 0;
5278 } 5278 }
5279 @media (min-width: 768px) { 5279 @media (min-width: 768px) {
5280 .work__list div:before { 5280 .work__list div:before {
5281 top: 8px; 5281 top: 8px;
5282 } 5282 }
5283 } 5283 }
5284 .work__form { 5284 .work__form {
5285 margin-top: 20px; 5285 margin-top: 20px;
5286 } 5286 }
5287 @media (min-width: 768px) { 5287 @media (min-width: 768px) {
5288 .work__form { 5288 .work__form {
5289 margin-top: 30px; 5289 margin-top: 30px;
5290 } 5290 }
5291 } 5291 }
5292 .work__search { 5292 .work__search {
5293 width: 100%; 5293 width: 100%;
5294 max-width: 180px; 5294 max-width: 180px;
5295 margin-top: 20px; 5295 margin-top: 20px;
5296 } 5296 }
5297 @media (min-width: 768px) { 5297 @media (min-width: 768px) {
5298 .work__search { 5298 .work__search {
5299 max-width: 270px; 5299 max-width: 270px;
5300 margin-top: 50px; 5300 margin-top: 50px;
5301 } 5301 }
5302 } 5302 }
5303 .work__get { 5303 .work__get {
5304 width: 100%; 5304 width: 100%;
5305 display: -webkit-box; 5305 display: -webkit-box;
5306 display: -ms-flexbox; 5306 display: -ms-flexbox;
5307 display: flex; 5307 display: flex;
5308 -webkit-box-align: start; 5308 -webkit-box-align: start;
5309 -ms-flex-align: start; 5309 -ms-flex-align: start;
5310 align-items: flex-start; 5310 align-items: flex-start;
5311 -ms-flex-wrap: wrap; 5311 -ms-flex-wrap: wrap;
5312 flex-wrap: wrap; 5312 flex-wrap: wrap;
5313 margin-top: 48px; 5313 margin-top: 48px;
5314 } 5314 }
5315 .work__get b { 5315 .work__get b {
5316 width: 100%; 5316 width: 100%;
5317 margin-bottom: 10px; 5317 margin-bottom: 10px;
5318 font-size: 14px; 5318 font-size: 14px;
5319 } 5319 }
5320 @media (min-width: 768px) { 5320 @media (min-width: 768px) {
5321 .work__get b { 5321 .work__get b {
5322 font-size: 18px; 5322 font-size: 18px;
5323 } 5323 }
5324 } 5324 }
5325 .work__get a { 5325 .work__get a {
5326 display: -webkit-box; 5326 display: -webkit-box;
5327 display: -ms-flexbox; 5327 display: -ms-flexbox;
5328 display: flex; 5328 display: flex;
5329 -webkit-box-align: center; 5329 -webkit-box-align: center;
5330 -ms-flex-align: center; 5330 -ms-flex-align: center;
5331 align-items: center; 5331 align-items: center;
5332 -webkit-box-pack: center; 5332 -webkit-box-pack: center;
5333 -ms-flex-pack: center; 5333 -ms-flex-pack: center;
5334 justify-content: center; 5334 justify-content: center;
5335 margin-right: 20px; 5335 margin-right: 20px;
5336 } 5336 }
5337 .work__get a img { 5337 .work__get a img {
5338 -webkit-transition: 0.3s; 5338 -webkit-transition: 0.3s;
5339 transition: 0.3s; 5339 transition: 0.3s;
5340 width: 111px; 5340 width: 111px;
5341 } 5341 }
5342 @media (min-width: 768px) { 5342 @media (min-width: 768px) {
5343 .work__get a img { 5343 .work__get a img {
5344 width: 131px; 5344 width: 131px;
5345 } 5345 }
5346 } 5346 }
5347 .work__get a:hover img { 5347 .work__get a:hover img {
5348 -webkit-transform: scale(1.1); 5348 -webkit-transform: scale(1.1);
5349 -ms-transform: scale(1.1); 5349 -ms-transform: scale(1.1);
5350 transform: scale(1.1); 5350 transform: scale(1.1);
5351 } 5351 }
5352 .work__get a + a { 5352 .work__get a + a {
5353 margin-right: 0; 5353 margin-right: 0;
5354 } 5354 }
5355 5355
5356 .work__get-app-info { 5356 .work__get-app-info {
5357 margin-top: 10px; 5357 margin-top: 10px;
5358 font-size: 14px; 5358 font-size: 14px;
5359 display: flex; 5359 display: flex;
5360 width: 100%; 5360 width: 100%;
5361 } 5361 }
5362 5362
5363 .work__get-app-info a { 5363 .work__get-app-info a {
5364 text-decoration: underline; 5364 text-decoration: underline;
5365 font-weight: 700; 5365 font-weight: 700;
5366 } 5366 }
5367 5367
5368 @media (min-width: 768px) { 5368 @media (min-width: 768px) {
5369 .work__get-app-info { 5369 .work__get-app-info {
5370 font-size: 18px; 5370 font-size: 18px;
5371 } 5371 }
5372 } 5372 }
5373 5373
5374 5374
5375 .numbers { 5375 .numbers {
5376 padding: 30px 0; 5376 padding: 30px 0;
5377 background: #377d87 url("../images/bg.svg") no-repeat 100% calc(100% + 80px); 5377 background: #377d87 url("../images/bg.svg") no-repeat 100% calc(100% + 80px);
5378 color: #fff; 5378 color: #fff;
5379 } 5379 }
5380 @media (min-width: 1280px) { 5380 @media (min-width: 1280px) {
5381 .numbers { 5381 .numbers {
5382 padding: 100px 0; 5382 padding: 100px 0;
5383 background-position: 100% 100%; 5383 background-position: 100% 100%;
5384 background-size: auto 500px; 5384 background-size: auto 500px;
5385 } 5385 }
5386 } 5386 }
5387 .numbers__body { 5387 .numbers__body {
5388 display: -webkit-box; 5388 display: -webkit-box;
5389 display: -ms-flexbox; 5389 display: -ms-flexbox;
5390 display: flex; 5390 display: flex;
5391 -webkit-box-orient: vertical; 5391 -webkit-box-orient: vertical;
5392 -webkit-box-direction: normal; 5392 -webkit-box-direction: normal;
5393 -ms-flex-direction: column; 5393 -ms-flex-direction: column;
5394 flex-direction: column; 5394 flex-direction: column;
5395 gap: 30px; 5395 gap: 30px;
5396 } 5396 }
5397 @media (min-width: 768px) { 5397 @media (min-width: 768px) {
5398 .numbers__body { 5398 .numbers__body {
5399 display: grid; 5399 display: grid;
5400 grid-template-columns: 1fr 1fr 1fr; 5400 grid-template-columns: 1fr 1fr 1fr;
5401 } 5401 }
5402 } 5402 }
5403 .numbers__item { 5403 .numbers__item {
5404 font-size: 12px; 5404 font-size: 12px;
5405 display: -webkit-box; 5405 display: -webkit-box;
5406 display: -ms-flexbox; 5406 display: -ms-flexbox;
5407 display: flex; 5407 display: flex;
5408 -webkit-box-orient: vertical; 5408 -webkit-box-orient: vertical;
5409 -webkit-box-direction: normal; 5409 -webkit-box-direction: normal;
5410 -ms-flex-direction: column; 5410 -ms-flex-direction: column;
5411 flex-direction: column; 5411 flex-direction: column;
5412 line-height: 1.4; 5412 line-height: 1.4;
5413 } 5413 }
5414 @media (min-width: 1280px) { 5414 @media (min-width: 1280px) {
5415 .numbers__item { 5415 .numbers__item {
5416 font-size: 16px; 5416 font-size: 16px;
5417 line-height: 20px; 5417 line-height: 20px;
5418 } 5418 }
5419 } 5419 }
5420 .numbers__item b { 5420 .numbers__item b {
5421 font-size: 40px; 5421 font-size: 40px;
5422 font-weight: 700; 5422 font-weight: 700;
5423 border-bottom: 1px solid #fff; 5423 border-bottom: 1px solid #fff;
5424 line-height: 1; 5424 line-height: 1;
5425 } 5425 }
5426 @media (min-width: 1280px) { 5426 @media (min-width: 1280px) {
5427 .numbers__item b { 5427 .numbers__item b {
5428 font-size: 100px; 5428 font-size: 100px;
5429 line-height: 147px; 5429 line-height: 147px;
5430 } 5430 }
5431 } 5431 }
5432 .numbers__item span { 5432 .numbers__item span {
5433 font-weight: 700; 5433 font-weight: 700;
5434 font-size: 14px; 5434 font-size: 14px;
5435 margin: 10px 0; 5435 margin: 10px 0;
5436 line-height: 1; 5436 line-height: 1;
5437 } 5437 }
5438 @media (min-width: 1280px) { 5438 @media (min-width: 1280px) {
5439 .numbers__item span { 5439 .numbers__item span {
5440 font-size: 24px; 5440 font-size: 24px;
5441 margin-top: 30px; 5441 margin-top: 30px;
5442 } 5442 }
5443 } 5443 }
5444 5444
5445 .vacancies { 5445 .vacancies {
5446 padding: 50px 0; 5446 padding: 50px 0;
5447 } 5447 }
5448 @media (min-width: 1280px) { 5448 @media (min-width: 1280px) {
5449 .vacancies { 5449 .vacancies {
5450 padding: 100px 0; 5450 padding: 100px 0;
5451 } 5451 }
5452 } 5452 }
5453 .vacancies__body { 5453 .vacancies__body {
5454 display: -webkit-box; 5454 display: -webkit-box;
5455 display: -ms-flexbox; 5455 display: -ms-flexbox;
5456 display: flex; 5456 display: flex;
5457 -webkit-box-orient: vertical; 5457 -webkit-box-orient: vertical;
5458 -webkit-box-direction: reverse; 5458 -webkit-box-direction: reverse;
5459 -ms-flex-direction: column-reverse; 5459 -ms-flex-direction: column-reverse;
5460 flex-direction: column-reverse; 5460 flex-direction: column-reverse;
5461 gap: 20px; 5461 gap: 20px;
5462 width: 100%; 5462 width: 100%;
5463 margin-top: 20px; 5463 margin-top: 20px;
5464 } 5464 }
5465 @media (min-width: 992px) { 5465 @media (min-width: 992px) {
5466 .vacancies__body { 5466 .vacancies__body {
5467 margin-top: 30px; 5467 margin-top: 30px;
5468 gap: 30px; 5468 gap: 30px;
5469 } 5469 }
5470 } 5470 }
5471 .vacancies__more { 5471 .vacancies__more {
5472 width: 100%; 5472 width: 100%;
5473 } 5473 }
5474 @media (min-width: 768px) { 5474 @media (min-width: 768px) {
5475 .vacancies__more { 5475 .vacancies__more {
5476 width: auto; 5476 width: auto;
5477 margin: 0 auto; 5477 margin: 0 auto;
5478 } 5478 }
5479 } 5479 }
5480 .vacancies__list { 5480 .vacancies__list {
5481 display: -webkit-box; 5481 display: -webkit-box;
5482 display: -ms-flexbox; 5482 display: -ms-flexbox;
5483 display: flex; 5483 display: flex;
5484 -webkit-box-orient: vertical; 5484 -webkit-box-orient: vertical;
5485 -webkit-box-direction: normal; 5485 -webkit-box-direction: normal;
5486 -ms-flex-direction: column; 5486 -ms-flex-direction: column;
5487 flex-direction: column; 5487 flex-direction: column;
5488 gap: 15px; 5488 gap: 15px;
5489 } 5489 }
5490 @media (min-width: 768px) { 5490 @media (min-width: 768px) {
5491 .vacancies__list { 5491 .vacancies__list {
5492 display: grid; 5492 display: grid;
5493 grid-template-columns: repeat(2, 1fr); 5493 grid-template-columns: repeat(2, 1fr);
5494 } 5494 }
5495 } 5495 }
5496 @media (min-width: 992px) { 5496 @media (min-width: 992px) {
5497 .vacancies__list { 5497 .vacancies__list {
5498 display: grid; 5498 display: grid;
5499 grid-template-columns: repeat(3, 1fr); 5499 grid-template-columns: repeat(3, 1fr);
5500 gap: 20px; 5500 gap: 20px;
5501 } 5501 }
5502 } 5502 }
5503 @media (min-width: 1280px) { 5503 @media (min-width: 1280px) {
5504 .vacancies__list { 5504 .vacancies__list {
5505 grid-template-columns: repeat(4, 1fr); 5505 grid-template-columns: repeat(4, 1fr);
5506 } 5506 }
5507 } 5507 }
5508 .vacancies__list-label { 5508 .vacancies__list-label {
5509 font-weight: 700; 5509 font-weight: 700;
5510 font-size: 22px; 5510 font-size: 22px;
5511 } 5511 }
5512 .vacancies__list-col { 5512 .vacancies__list-col {
5513 display: -webkit-box; 5513 display: -webkit-box;
5514 display: -ms-flexbox; 5514 display: -ms-flexbox;
5515 display: flex; 5515 display: flex;
5516 -webkit-box-orient: vertical; 5516 -webkit-box-orient: vertical;
5517 -webkit-box-direction: normal; 5517 -webkit-box-direction: normal;
5518 -ms-flex-direction: column; 5518 -ms-flex-direction: column;
5519 flex-direction: column; 5519 flex-direction: column;
5520 gap: 15px; 5520 gap: 15px;
5521 margin-top: 15px; 5521 margin-top: 15px;
5522 margin-bottom: 30px; 5522 margin-bottom: 30px;
5523 } 5523 }
5524 @media (min-width: 768px) { 5524 @media (min-width: 768px) {
5525 .vacancies__list-col { 5525 .vacancies__list-col {
5526 margin-top: 0; 5526 margin-top: 0;
5527 } 5527 }
5528 } 5528 }
5529 .vacancies__list-col:first-child { 5529 .vacancies__list-col:first-child {
5530 margin-top: 0; 5530 margin-top: 0;
5531 } 5531 }
5532 .vacancies__item { 5532 .vacancies__item {
5533 display: none; 5533 display: none;
5534 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2); 5534 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
5535 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2); 5535 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
5536 border-radius: 12px; 5536 border-radius: 12px;
5537 background: #fff; 5537 background: #fff;
5538 border: 1px solid #e6e7e7; 5538 border: 1px solid #e6e7e7;
5539 overflow: hidden; 5539 overflow: hidden;
5540 } 5540 }
5541 .vacancies__item:nth-of-type(1), .vacancies__item:nth-of-type(2), .vacancies__item:nth-of-type(3), .vacancies__item:nth-of-type(4), .vacancies__item:nth-of-type(5), .vacancies__item:nth-of-type(6), .vacancies__item:nth-of-type(7), .vacancies__item:nth-of-type(8) { 5541 .vacancies__item:nth-of-type(1), .vacancies__item:nth-of-type(2), .vacancies__item:nth-of-type(3), .vacancies__item:nth-of-type(4), .vacancies__item:nth-of-type(5), .vacancies__item:nth-of-type(6), .vacancies__item:nth-of-type(7), .vacancies__item:nth-of-type(8) {
5542 display: -webkit-box; 5542 display: -webkit-box;
5543 display: -ms-flexbox; 5543 display: -ms-flexbox;
5544 display: flex; 5544 display: flex;
5545 } 5545 }
5546 .vacancies__item > span { 5546 .vacancies__item > span {
5547 border-left: 10px solid #377d87; 5547 border-left: 10px solid #377d87;
5548 padding: 20px 14px; 5548 padding: 20px 14px;
5549 display: -webkit-box; 5549 display: -webkit-box;
5550 display: -ms-flexbox; 5550 display: -ms-flexbox;
5551 display: flex; 5551 display: flex;
5552 -webkit-box-orient: vertical; 5552 -webkit-box-orient: vertical;
5553 -webkit-box-direction: normal; 5553 -webkit-box-direction: normal;
5554 -ms-flex-direction: column; 5554 -ms-flex-direction: column;
5555 flex-direction: column; 5555 flex-direction: column;
5556 -webkit-box-align: start; 5556 -webkit-box-align: start;
5557 -ms-flex-align: start; 5557 -ms-flex-align: start;
5558 align-items: flex-start; 5558 align-items: flex-start;
5559 gap: 5px; 5559 gap: 5px;
5560 -webkit-box-pack: justify; 5560 -webkit-box-pack: justify;
5561 -ms-flex-pack: justify; 5561 -ms-flex-pack: justify;
5562 justify-content: space-between; 5562 justify-content: space-between;
5563 } 5563 }
5564 @media (min-width: 992px) { 5564 @media (min-width: 992px) {
5565 .vacancies__item > span { 5565 .vacancies__item > span {
5566 gap: 10px; 5566 gap: 10px;
5567 } 5567 }
5568 } 5568 }
5569 .vacancies__item b { 5569 .vacancies__item b {
5570 font-weight: 700; 5570 font-weight: 700;
5571 font-size: 14px; 5571 font-size: 14px;
5572 } 5572 }
5573 @media (min-width: 992px) { 5573 @media (min-width: 992px) {
5574 .vacancies__item b { 5574 .vacancies__item b {
5575 font-size: 20px; 5575 font-size: 20px;
5576 } 5576 }
5577 } 5577 }
5578 .vacancies__item:hover b { 5578 .vacancies__item:hover b {
5579 color: #377d87; 5579 color: #377d87;
5580 } 5580 }
5581 .vacancies__item u { 5581 .vacancies__item u {
5582 text-decoration: none; 5582 text-decoration: none;
5583 font-size: 14px; 5583 font-size: 14px;
5584 } 5584 }
5585 @media (min-width: 992px) { 5585 @media (min-width: 992px) {
5586 .vacancies__item u { 5586 .vacancies__item u {
5587 font-size: 18px; 5587 font-size: 18px;
5588 } 5588 }
5589 } 5589 }
5590 .vacancies__item i { 5590 .vacancies__item i {
5591 font-size: 12px; 5591 font-size: 12px;
5592 font-style: normal; 5592 font-style: normal;
5593 border-bottom: 1px dashed #377d87; 5593 border-bottom: 1px dashed #377d87;
5594 } 5594 }
5595 @media (min-width: 992px) { 5595 @media (min-width: 992px) {
5596 .vacancies__item i { 5596 .vacancies__item i {
5597 font-size: 16px; 5597 font-size: 16px;
5598 } 5598 }
5599 } 5599 }
5600 .vacancies__item i span { 5600 .vacancies__item i span {
5601 font-weight: 700; 5601 font-weight: 700;
5602 color: #377d87; 5602 color: #377d87;
5603 } 5603 }
5604 .vacancies__body.active .vacancies__list .vacancies__item { 5604 .vacancies__body.active .vacancies__list .vacancies__item {
5605 display: -webkit-box; 5605 display: -webkit-box;
5606 display: -ms-flexbox; 5606 display: -ms-flexbox;
5607 display: flex; 5607 display: flex;
5608 } 5608 }
5609 5609
5610 .employer { 5610 .employer {
5611 padding-bottom: 50px; 5611 padding-bottom: 50px;
5612 } 5612 }
5613 @media (min-width: 768px) { 5613 @media (min-width: 768px) {
5614 .employer { 5614 .employer {
5615 padding-bottom: 100px; 5615 padding-bottom: 100px;
5616 } 5616 }
5617 } 5617 }
5618 .employer .swiper { 5618 .employer .swiper {
5619 margin: 20px 0; 5619 margin: 20px 0;
5620 } 5620 }
5621 @media (min-width: 768px) { 5621 @media (min-width: 768px) {
5622 .employer .swiper { 5622 .employer .swiper {
5623 display: none; 5623 display: none;
5624 } 5624 }
5625 } 5625 }
5626 .employer__item { 5626 .employer__item {
5627 display: -webkit-box; 5627 display: -webkit-box;
5628 display: -ms-flexbox; 5628 display: -ms-flexbox;
5629 display: flex; 5629 display: flex;
5630 -webkit-box-orient: vertical; 5630 -webkit-box-orient: vertical;
5631 -webkit-box-direction: normal; 5631 -webkit-box-direction: normal;
5632 -ms-flex-direction: column; 5632 -ms-flex-direction: column;
5633 flex-direction: column; 5633 flex-direction: column;
5634 gap: 30px; 5634 gap: 30px;
5635 } 5635 }
5636 .employer__item a { 5636 .employer__item a {
5637 display: -webkit-box; 5637 display: -webkit-box;
5638 display: -ms-flexbox; 5638 display: -ms-flexbox;
5639 display: flex; 5639 display: flex;
5640 -webkit-box-orient: vertical; 5640 -webkit-box-orient: vertical;
5641 -webkit-box-direction: normal; 5641 -webkit-box-direction: normal;
5642 -ms-flex-direction: column; 5642 -ms-flex-direction: column;
5643 flex-direction: column; 5643 flex-direction: column;
5644 -webkit-box-align: center; 5644 -webkit-box-align: center;
5645 -ms-flex-align: center; 5645 -ms-flex-align: center;
5646 align-items: center; 5646 align-items: center;
5647 } 5647 }
5648 .employer__item img { 5648 .employer__item img {
5649 width: 100%; 5649 width: 100%;
5650 aspect-ratio: 295/98; 5650 aspect-ratio: 295/98;
5651 -o-object-fit: contain; 5651 -o-object-fit: contain;
5652 object-fit: contain; 5652 object-fit: contain;
5653 } 5653 }
5654 .employer__body { 5654 .employer__body {
5655 display: none; 5655 display: none;
5656 grid-template-columns: 1fr 1fr; 5656 grid-template-columns: 1fr 1fr;
5657 gap: 30px; 5657 gap: 30px;
5658 margin-top: 30px; 5658 margin-top: 30px;
5659 margin-bottom: 40px; 5659 margin-bottom: 40px;
5660 } 5660 }
5661 @media (min-width: 768px) { 5661 @media (min-width: 768px) {
5662 .employer__body { 5662 .employer__body {
5663 display: grid; 5663 display: grid;
5664 } 5664 }
5665 } 5665 }
5666 @media (min-width: 992px) { 5666 @media (min-width: 992px) {
5667 .employer__body { 5667 .employer__body {
5668 grid-template-columns: 1fr 1fr 1fr; 5668 grid-template-columns: 1fr 1fr 1fr;
5669 } 5669 }
5670 } 5670 }
5671 @media (min-width: 1280px) { 5671 @media (min-width: 1280px) {
5672 .employer__body { 5672 .employer__body {
5673 grid-template-columns: 1fr 1fr 1fr 1fr; 5673 grid-template-columns: 1fr 1fr 1fr 1fr;
5674 } 5674 }
5675 } 5675 }
5676 .employer__body a { 5676 .employer__body a {
5677 display: -webkit-box; 5677 display: -webkit-box;
5678 display: -ms-flexbox; 5678 display: -ms-flexbox;
5679 display: flex; 5679 display: flex;
5680 -webkit-box-pack: center; 5680 -webkit-box-pack: center;
5681 -ms-flex-pack: center; 5681 -ms-flex-pack: center;
5682 justify-content: center; 5682 justify-content: center;
5683 -webkit-box-align: center; 5683 -webkit-box-align: center;
5684 -ms-flex-align: center; 5684 -ms-flex-align: center;
5685 align-items: center; 5685 align-items: center;
5686 height: 98px; 5686 height: 98px;
5687 } 5687 }
5688 .employer__body img { 5688 .employer__body img {
5689 max-width: 100%; 5689 max-width: 100%;
5690 max-height: 98px; 5690 max-height: 98px;
5691 -o-object-fit: contain; 5691 -o-object-fit: contain;
5692 object-fit: contain; 5692 object-fit: contain;
5693 } 5693 }
5694 .employer__more { 5694 .employer__more {
5695 height: 38px; 5695 height: 38px;
5696 } 5696 }
5697 @media (min-width: 768px) { 5697 @media (min-width: 768px) {
5698 .employer__more { 5698 .employer__more {
5699 width: 250px; 5699 width: 250px;
5700 margin: 0 auto; 5700 margin: 0 auto;
5701 height: 44px; 5701 height: 44px;
5702 } 5702 }
5703 } 5703 }
5704 5704
5705 .about { 5705 .about {
5706 background: #acc0e6 url("../images/space.svg") no-repeat 0 0; 5706 background: #acc0e6 url("../images/space.svg") no-repeat 0 0;
5707 background-size: cover; 5707 background-size: cover;
5708 padding: 30px 0; 5708 padding: 30px 0;
5709 padding-bottom: 70px; 5709 padding-bottom: 70px;
5710 } 5710 }
5711 @media (min-width: 768px) { 5711 @media (min-width: 768px) {
5712 .about { 5712 .about {
5713 padding-top: 40px; 5713 padding-top: 40px;
5714 background-size: auto calc(100% - 10px); 5714 background-size: auto calc(100% - 10px);
5715 } 5715 }
5716 } 5716 }
5717 @media (min-width: 1280px) { 5717 @media (min-width: 1280px) {
5718 .about { 5718 .about {
5719 padding: 100px 0; 5719 padding: 100px 0;
5720 } 5720 }
5721 } 5721 }
5722 .about__wrapper { 5722 .about__wrapper {
5723 display: -webkit-box; 5723 display: -webkit-box;
5724 display: -ms-flexbox; 5724 display: -ms-flexbox;
5725 display: flex; 5725 display: flex;
5726 -webkit-box-orient: vertical; 5726 -webkit-box-orient: vertical;
5727 -webkit-box-direction: normal; 5727 -webkit-box-direction: normal;
5728 -ms-flex-direction: column; 5728 -ms-flex-direction: column;
5729 flex-direction: column; 5729 flex-direction: column;
5730 position: relative; 5730 position: relative;
5731 } 5731 }
5732 .about__title { 5732 .about__title {
5733 color: #fff; 5733 color: #fff;
5734 line-height: 1.2; 5734 line-height: 1.2;
5735 } 5735 }
5736 @media (min-width: 1280px) { 5736 @media (min-width: 1280px) {
5737 .about__title { 5737 .about__title {
5738 position: absolute; 5738 position: absolute;
5739 top: -45px; 5739 top: -45px;
5740 left: 0; 5740 left: 0;
5741 } 5741 }
5742 } 5742 }
5743 .about__body { 5743 .about__body {
5744 display: -webkit-box; 5744 display: -webkit-box;
5745 display: -ms-flexbox; 5745 display: -ms-flexbox;
5746 display: flex; 5746 display: flex;
5747 -webkit-box-orient: vertical; 5747 -webkit-box-orient: vertical;
5748 -webkit-box-direction: normal; 5748 -webkit-box-direction: normal;
5749 -ms-flex-direction: column; 5749 -ms-flex-direction: column;
5750 flex-direction: column; 5750 flex-direction: column;
5751 } 5751 }
5752 @media (min-width: 1280px) { 5752 @media (min-width: 1280px) {
5753 .about__body { 5753 .about__body {
5754 padding-left: 495px; 5754 padding-left: 495px;
5755 } 5755 }
5756 } 5756 }
5757 .about__line { 5757 .about__line {
5758 background: #fff; 5758 background: #fff;
5759 width: 100%; 5759 width: 100%;
5760 height: 1px; 5760 height: 1px;
5761 max-width: 400px; 5761 max-width: 400px;
5762 margin-top: 10px; 5762 margin-top: 10px;
5763 } 5763 }
5764 .about__item { 5764 .about__item {
5765 display: -webkit-box; 5765 display: -webkit-box;
5766 display: -ms-flexbox; 5766 display: -ms-flexbox;
5767 display: flex; 5767 display: flex;
5768 -webkit-box-orient: vertical; 5768 -webkit-box-orient: vertical;
5769 -webkit-box-direction: normal; 5769 -webkit-box-direction: normal;
5770 -ms-flex-direction: column; 5770 -ms-flex-direction: column;
5771 flex-direction: column; 5771 flex-direction: column;
5772 margin-top: 10px; 5772 margin-top: 10px;
5773 max-width: 600px; 5773 max-width: 600px;
5774 } 5774 }
5775 @media (min-width: 768px) { 5775 @media (min-width: 768px) {
5776 .about__item { 5776 .about__item {
5777 margin-top: 20px; 5777 margin-top: 20px;
5778 } 5778 }
5779 } 5779 }
5780 @media (min-width: 1280px) { 5780 @media (min-width: 1280px) {
5781 .about__item { 5781 .about__item {
5782 margin-top: 30px; 5782 margin-top: 30px;
5783 } 5783 }
5784 } 5784 }
5785 .about__item b { 5785 .about__item b {
5786 font-size: 20px; 5786 font-size: 20px;
5787 font-weight: 700; 5787 font-weight: 700;
5788 } 5788 }
5789 .about__item span { 5789 .about__item span {
5790 font-size: 13px; 5790 font-size: 13px;
5791 line-height: 1.4; 5791 line-height: 1.4;
5792 margin-top: 6px; 5792 margin-top: 6px;
5793 } 5793 }
5794 @media (min-width: 1280px) { 5794 @media (min-width: 1280px) {
5795 .about__item span { 5795 .about__item span {
5796 font-size: 16px; 5796 font-size: 16px;
5797 margin-top: 12px; 5797 margin-top: 12px;
5798 } 5798 }
5799 } 5799 }
5800 .about__item a { 5800 .about__item a {
5801 text-decoration: underline; 5801 text-decoration: underline;
5802 } 5802 }
5803 .about__item + .about__item { 5803 .about__item + .about__item {
5804 margin-top: 30px; 5804 margin-top: 30px;
5805 } 5805 }
5806 @media (min-width: 992px) { 5806 @media (min-width: 992px) {
5807 .about__item + .about__item { 5807 .about__item + .about__item {
5808 margin-top: 40px; 5808 margin-top: 40px;
5809 } 5809 }
5810 } 5810 }
5811 .about__button { 5811 .about__button {
5812 margin-top: 20px; 5812 margin-top: 20px;
5813 height: 38px; 5813 height: 38px;
5814 padding: 0; 5814 padding: 0;
5815 } 5815 }
5816 @media (min-width: 768px) { 5816 @media (min-width: 768px) {
5817 .about__button { 5817 .about__button {
5818 max-width: 200px; 5818 max-width: 200px;
5819 height: 42px; 5819 height: 42px;
5820 margin-top: 30px; 5820 margin-top: 30px;
5821 } 5821 }
5822 } 5822 }
5823 5823
5824 .news { 5824 .news {
5825 padding: 50px 0; 5825 padding: 50px 0;
5826 overflow: hidden; 5826 overflow: hidden;
5827 } 5827 }
5828 @media (min-width: 1280px) { 5828 @media (min-width: 1280px) {
5829 .news { 5829 .news {
5830 padding: 100px 0; 5830 padding: 100px 0;
5831 padding-bottom: 0; 5831 padding-bottom: 0;
5832 } 5832 }
5833 } 5833 }
5834 .news__toper { 5834 .news__toper {
5835 display: -webkit-box; 5835 display: -webkit-box;
5836 display: -ms-flexbox; 5836 display: -ms-flexbox;
5837 display: flex; 5837 display: flex;
5838 -webkit-box-pack: justify; 5838 -webkit-box-pack: justify;
5839 -ms-flex-pack: justify; 5839 -ms-flex-pack: justify;
5840 justify-content: space-between; 5840 justify-content: space-between;
5841 -webkit-box-align: center; 5841 -webkit-box-align: center;
5842 -ms-flex-align: center; 5842 -ms-flex-align: center;
5843 align-items: center; 5843 align-items: center;
5844 } 5844 }
5845 @media (min-width: 1280px) { 5845 @media (min-width: 1280px) {
5846 .news__toper .title { 5846 .news__toper .title {
5847 width: calc(100% - 160px); 5847 width: calc(100% - 160px);
5848 } 5848 }
5849 } 5849 }
5850 .news__toper .navs { 5850 .news__toper .navs {
5851 display: none; 5851 display: none;
5852 } 5852 }
5853 @media (min-width: 1280px) { 5853 @media (min-width: 1280px) {
5854 .news__toper .navs { 5854 .news__toper .navs {
5855 display: -webkit-box; 5855 display: -webkit-box;
5856 display: -ms-flexbox; 5856 display: -ms-flexbox;
5857 display: flex; 5857 display: flex;
5858 } 5858 }
5859 } 5859 }
5860 .news .swiper { 5860 .news .swiper {
5861 margin-top: 20px; 5861 margin-top: 20px;
5862 } 5862 }
5863 @media (min-width: 768px) { 5863 @media (min-width: 768px) {
5864 .news .swiper { 5864 .news .swiper {
5865 overflow: visible; 5865 overflow: visible;
5866 } 5866 }
5867 } 5867 }
5868 @media (min-width: 992px) { 5868 @media (min-width: 992px) {
5869 .news .swiper { 5869 .news .swiper {
5870 margin-top: 40px; 5870 margin-top: 40px;
5871 } 5871 }
5872 } 5872 }
5873 .news__item { 5873 .news__item {
5874 display: -webkit-box; 5874 display: -webkit-box;
5875 display: -ms-flexbox; 5875 display: -ms-flexbox;
5876 display: flex; 5876 display: flex;
5877 -webkit-box-orient: vertical; 5877 -webkit-box-orient: vertical;
5878 -webkit-box-direction: normal; 5878 -webkit-box-direction: normal;
5879 -ms-flex-direction: column; 5879 -ms-flex-direction: column;
5880 flex-direction: column; 5880 flex-direction: column;
5881 line-height: 1.4; 5881 line-height: 1.4;
5882 } 5882 }
5883 .news__item-pic { 5883 .news__item-pic {
5884 width: 100%; 5884 width: 100%;
5885 aspect-ratio: 3/2; 5885 aspect-ratio: 3/2;
5886 border-radius: 12px; 5886 border-radius: 12px;
5887 border: 1px solid #e6e7e7; 5887 border: 1px solid #e6e7e7;
5888 -o-object-fit: cover; 5888 -o-object-fit: cover;
5889 object-fit: cover; 5889 object-fit: cover;
5890 min-height: 200px; 5890 min-height: 200px;
5891 } 5891 }
5892 @media (min-width: 1280px) { 5892 @media (min-width: 1280px) {
5893 .news__item-pic { 5893 .news__item-pic {
5894 aspect-ratio: 4/2; 5894 aspect-ratio: 4/2;
5895 } 5895 }
5896 } 5896 }
5897 .news__item-body { 5897 .news__item-body {
5898 display: -webkit-box; 5898 display: -webkit-box;
5899 display: -ms-flexbox; 5899 display: -ms-flexbox;
5900 display: flex; 5900 display: flex;
5901 -webkit-box-orient: vertical; 5901 -webkit-box-orient: vertical;
5902 -webkit-box-direction: normal; 5902 -webkit-box-direction: normal;
5903 -ms-flex-direction: column; 5903 -ms-flex-direction: column;
5904 flex-direction: column; 5904 flex-direction: column;
5905 padding-top: 15px; 5905 padding-top: 15px;
5906 } 5906 }
5907 @media (min-width: 768px) { 5907 @media (min-width: 768px) {
5908 .news__item-body { 5908 .news__item-body {
5909 padding: 20px; 5909 padding: 20px;
5910 padding-top: 30px; 5910 padding-top: 30px;
5911 margin-top: -15px; 5911 margin-top: -15px;
5912 border-radius: 0 0 12px 12px; 5912 border-radius: 0 0 12px 12px;
5913 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15); 5913 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
5914 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15); 5914 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
5915 } 5915 }
5916 } 5916 }
5917 .news__item-date { 5917 .news__item-date {
5918 font-size: 14px; 5918 font-size: 14px;
5919 font-weight: 700; 5919 font-weight: 700;
5920 color: #377d87; 5920 color: #377d87;
5921 } 5921 }
5922 .news__item-title { 5922 .news__item-title {
5923 font-size: 20px; 5923 font-size: 20px;
5924 font-weight: 700; 5924 font-weight: 700;
5925 line-height: 1.2; 5925 line-height: 1.2;
5926 margin-top: 5px; 5926 margin-top: 5px;
5927 } 5927 }
5928 .news__item-text { 5928 .news__item-text {
5929 color: #000; 5929 color: #000;
5930 font-size: 13px; 5930 font-size: 13px;
5931 margin-top: 10px; 5931 margin-top: 10px;
5932 overflow: hidden; 5932 overflow: hidden;
5933 display: -webkit-box; 5933 display: -webkit-box;
5934 -webkit-box-orient: vertical; 5934 -webkit-box-orient: vertical;
5935 -webkit-line-clamp: 4; 5935 -webkit-line-clamp: 4;
5936 } 5936 }
5937 5937
5938 .news__item-text p { 5938 .news__item-text p {
5939 word-break: break-all; 5939 word-break: break-all;
5940 } 5940 }
5941 5941
5942 @media (min-width: 1280px) { 5942 @media (min-width: 1280px) {
5943 .news__item-text { 5943 .news__item-text {
5944 font-size: 16px; 5944 font-size: 16px;
5945 } 5945 }
5946 } 5946 }
5947 .news__item-more { 5947 .news__item-more {
5948 height: 42px; 5948 height: 42px;
5949 margin-top: 20px; 5949 margin-top: 20px;
5950 } 5950 }
5951 @media (min-width: 1280px) { 5951 @media (min-width: 1280px) {
5952 .news__item-more { 5952 .news__item-more {
5953 height: 44px; 5953 height: 44px;
5954 max-width: 190px; 5954 max-width: 190px;
5955 } 5955 }
5956 } 5956 }
5957 .news__all { 5957 .news__all {
5958 height: 42px; 5958 height: 42px;
5959 margin: 0 auto; 5959 margin: 0 auto;
5960 margin-top: 20px; 5960 margin-top: 20px;
5961 padding: 0; 5961 padding: 0;
5962 display: none; 5962 display: none;
5963 } 5963 }
5964 @media (min-width: 768px) { 5964 @media (min-width: 768px) {
5965 .news__all { 5965 .news__all {
5966 max-width: 170px; 5966 max-width: 170px;
5967 margin-top: 30px; 5967 margin-top: 30px;
5968 display: -webkit-box; 5968 display: -webkit-box;
5969 display: -ms-flexbox; 5969 display: -ms-flexbox;
5970 display: flex; 5970 display: flex;
5971 } 5971 }
5972 } 5972 }
5973 @media (min-width: 1280px) { 5973 @media (min-width: 1280px) {
5974 .news__all { 5974 .news__all {
5975 height: 44px; 5975 height: 44px;
5976 } 5976 }
5977 } 5977 }
5978 .news__items { 5978 .news__items {
5979 display: grid; 5979 display: grid;
5980 gap: 20px; 5980 gap: 20px;
5981 margin-bottom: 10px; 5981 margin-bottom: 10px;
5982 } 5982 }
5983 @media (min-width: 768px) { 5983 @media (min-width: 768px) {
5984 .news__items { 5984 .news__items {
5985 grid-template-columns: 1fr 1fr; 5985 grid-template-columns: 1fr 1fr;
5986 } 5986 }
5987 } 5987 }
5988 @media (min-width: 992px) { 5988 @media (min-width: 992px) {
5989 .news__items { 5989 .news__items {
5990 grid-template-columns: 1fr 1fr 1fr; 5990 grid-template-columns: 1fr 1fr 1fr;
5991 } 5991 }
5992 } 5992 }
5993 5993
5994 main + .news { 5994 main + .news {
5995 padding: 0; 5995 padding: 0;
5996 } 5996 }
5997 5997
5998 .info { 5998 .info {
5999 position: relative; 5999 position: relative;
6000 overflow: hidden; 6000 overflow: hidden;
6001 } 6001 }
6002 @media (min-width: 1280px) { 6002 @media (min-width: 1280px) {
6003 .info { 6003 .info {
6004 margin-bottom: -25px; 6004 margin-bottom: -25px;
6005 } 6005 }
6006 } 6006 }
6007 .info__pic { 6007 .info__pic {
6008 display: none; 6008 display: none;
6009 z-index: 1; 6009 z-index: 1;
6010 position: absolute; 6010 position: absolute;
6011 top: 0; 6011 top: 0;
6012 left: 50%; 6012 left: 50%;
6013 height: 100%; 6013 height: 100%;
6014 margin-left: 130px; 6014 margin-left: 130px;
6015 } 6015 }
6016 @media (min-width: 992px) { 6016 @media (min-width: 992px) {
6017 .info__pic { 6017 .info__pic {
6018 display: block; 6018 display: block;
6019 } 6019 }
6020 } 6020 }
6021 @media (min-width: 1280px) { 6021 @media (min-width: 1280px) {
6022 .info__pic { 6022 .info__pic {
6023 width: 610px; 6023 width: 610px;
6024 height: auto; 6024 height: auto;
6025 margin-left: 10px; 6025 margin-left: 10px;
6026 } 6026 }
6027 } 6027 }
6028 .info__body { 6028 .info__body {
6029 z-index: 2; 6029 z-index: 2;
6030 position: relative; 6030 position: relative;
6031 display: -webkit-box; 6031 display: -webkit-box;
6032 display: -ms-flexbox; 6032 display: -ms-flexbox;
6033 display: flex; 6033 display: flex;
6034 -webkit-box-orient: vertical; 6034 -webkit-box-orient: vertical;
6035 -webkit-box-direction: normal; 6035 -webkit-box-direction: normal;
6036 -ms-flex-direction: column; 6036 -ms-flex-direction: column;
6037 flex-direction: column; 6037 flex-direction: column;
6038 } 6038 }
6039 @media (min-width: 1280px) { 6039 @media (min-width: 1280px) {
6040 .info__body { 6040 .info__body {
6041 padding-top: 100px; 6041 padding-top: 100px;
6042 min-height: 600px; 6042 min-height: 600px;
6043 } 6043 }
6044 } 6044 }
6045 @media (min-width: 1280px) { 6045 @media (min-width: 1280px) {
6046 .info__title { 6046 .info__title {
6047 max-width: 520px; 6047 max-width: 520px;
6048 line-height: 1; 6048 line-height: 1;
6049 } 6049 }
6050 } 6050 }
6051 .info__item { 6051 .info__item {
6052 margin-top: 20px; 6052 margin-top: 20px;
6053 display: -webkit-box; 6053 display: -webkit-box;
6054 display: -ms-flexbox; 6054 display: -ms-flexbox;
6055 display: flex; 6055 display: flex;
6056 -webkit-box-orient: vertical; 6056 -webkit-box-orient: vertical;
6057 -webkit-box-direction: normal; 6057 -webkit-box-direction: normal;
6058 -ms-flex-direction: column; 6058 -ms-flex-direction: column;
6059 flex-direction: column; 6059 flex-direction: column;
6060 gap: 20px; 6060 gap: 20px;
6061 } 6061 }
6062 @media (min-width: 992px) { 6062 @media (min-width: 992px) {
6063 .info__item { 6063 .info__item {
6064 max-width: 610px; 6064 max-width: 610px;
6065 } 6065 }
6066 } 6066 }
6067 .info__item + .info__item { 6067 .info__item + .info__item {
6068 margin-top: 60px; 6068 margin-top: 60px;
6069 } 6069 }
6070 .info__text { 6070 .info__text {
6071 color: #000; 6071 color: #000;
6072 font-size: 13px; 6072 font-size: 13px;
6073 line-height: 1.4; 6073 line-height: 1.4;
6074 } 6074 }
6075 @media (min-width: 768px) { 6075 @media (min-width: 768px) {
6076 .info__text { 6076 .info__text {
6077 font-size: 16px; 6077 font-size: 16px;
6078 } 6078 }
6079 } 6079 }
6080 @media (min-width: 1280px) { 6080 @media (min-width: 1280px) {
6081 .info__text { 6081 .info__text {
6082 font-size: 18px; 6082 font-size: 18px;
6083 } 6083 }
6084 } 6084 }
6085 .info__link { 6085 .info__link {
6086 border-radius: 8px; 6086 border-radius: 8px;
6087 display: -webkit-box; 6087 display: -webkit-box;
6088 display: -ms-flexbox; 6088 display: -ms-flexbox;
6089 display: flex; 6089 display: flex;
6090 -webkit-box-pack: center; 6090 -webkit-box-pack: center;
6091 -ms-flex-pack: center; 6091 -ms-flex-pack: center;
6092 justify-content: center; 6092 justify-content: center;
6093 -webkit-box-align: center; 6093 -webkit-box-align: center;
6094 -ms-flex-align: center; 6094 -ms-flex-align: center;
6095 align-items: center; 6095 align-items: center;
6096 line-height: 1; 6096 line-height: 1;
6097 height: 40px; 6097 height: 40px;
6098 font-size: 12px; 6098 font-size: 12px;
6099 font-weight: 700; 6099 font-weight: 700;
6100 gap: 8px; 6100 gap: 8px;
6101 color: #fff; 6101 color: #fff;
6102 background: #377d87; 6102 background: #377d87;
6103 } 6103 }
6104 .info__link:hover { 6104 .info__link:hover {
6105 -webkit-filter: grayscale(50%); 6105 -webkit-filter: grayscale(50%);
6106 filter: grayscale(50%); 6106 filter: grayscale(50%);
6107 } 6107 }
6108 @media (min-width: 768px) { 6108 @media (min-width: 768px) {
6109 .info__link { 6109 .info__link {
6110 height: 44px; 6110 height: 44px;
6111 font-size: 16px; 6111 font-size: 16px;
6112 gap: 10px; 6112 gap: 10px;
6113 max-width: 300px; 6113 max-width: 300px;
6114 } 6114 }
6115 } 6115 }
6116 @media (min-width: 992px) { 6116 @media (min-width: 992px) {
6117 .info__link { 6117 .info__link {
6118 max-width: 210px; 6118 max-width: 210px;
6119 } 6119 }
6120 } 6120 }
6121 .info__link svg { 6121 .info__link svg {
6122 width: 16px; 6122 width: 16px;
6123 height: 16px; 6123 height: 16px;
6124 } 6124 }
6125 @media (min-width: 768px) { 6125 @media (min-width: 768px) {
6126 .info__link svg { 6126 .info__link svg {
6127 width: 20px; 6127 width: 20px;
6128 height: 20px; 6128 height: 20px;
6129 } 6129 }
6130 } 6130 }
6131 6131
6132 .thing { 6132 .thing {
6133 padding-top: 15px; 6133 padding-top: 15px;
6134 padding-bottom: 30px; 6134 padding-bottom: 30px;
6135 background: linear-gradient(95deg, #f2f5fc 59.82%, #ebf2fc 99.99%); 6135 background: linear-gradient(95deg, #f2f5fc 59.82%, #ebf2fc 99.99%);
6136 color: #000; 6136 color: #000;
6137 overflow: hidden; 6137 overflow: hidden;
6138 position: relative; 6138 position: relative;
6139 } 6139 }
6140 @media (min-width: 992px) { 6140 @media (min-width: 992px) {
6141 .thing { 6141 .thing {
6142 padding-top: 20px; 6142 padding-top: 20px;
6143 padding-bottom: 60px; 6143 padding-bottom: 60px;
6144 } 6144 }
6145 } 6145 }
6146 @media (min-width: 1280px) { 6146 @media (min-width: 1280px) {
6147 .thing { 6147 .thing {
6148 padding-bottom: 90px; 6148 padding-bottom: 90px;
6149 } 6149 }
6150 } 6150 }
6151 .thing_pdf { 6151 .thing_pdf {
6152 padding: 30px 0; 6152 padding: 30px 0;
6153 } 6153 }
6154 @media (min-width: 992px) { 6154 @media (min-width: 992px) {
6155 .thing_pdf { 6155 .thing_pdf {
6156 padding: 60px 0; 6156 padding: 60px 0;
6157 } 6157 }
6158 } 6158 }
6159 @media (min-width: 1280px) { 6159 @media (min-width: 1280px) {
6160 .thing_pdf { 6160 .thing_pdf {
6161 padding: 90px 0; 6161 padding: 90px 0;
6162 } 6162 }
6163 } 6163 }
6164 .thing__body { 6164 .thing__body {
6165 display: -webkit-box; 6165 display: -webkit-box;
6166 display: -ms-flexbox; 6166 display: -ms-flexbox;
6167 display: flex; 6167 display: flex;
6168 -webkit-box-orient: vertical; 6168 -webkit-box-orient: vertical;
6169 -webkit-box-direction: normal; 6169 -webkit-box-direction: normal;
6170 -ms-flex-direction: column; 6170 -ms-flex-direction: column;
6171 flex-direction: column; 6171 flex-direction: column;
6172 -webkit-box-align: start; 6172 -webkit-box-align: start;
6173 -ms-flex-align: start; 6173 -ms-flex-align: start;
6174 align-items: flex-start; 6174 align-items: flex-start;
6175 } 6175 }
6176 .thing__breadcrumbs { 6176 .thing__breadcrumbs {
6177 width: 100%; 6177 width: 100%;
6178 margin-bottom: 40px; 6178 margin-bottom: 40px;
6179 position: relative; 6179 position: relative;
6180 z-index: 2; 6180 z-index: 2;
6181 } 6181 }
6182 @media (min-width: 768px) { 6182 @media (min-width: 768px) {
6183 .thing__breadcrumbs { 6183 .thing__breadcrumbs {
6184 margin-bottom: 60px; 6184 margin-bottom: 60px;
6185 } 6185 }
6186 } 6186 }
6187 .thing__date { 6187 .thing__date {
6188 color: #000; 6188 color: #000;
6189 font-size: 14px; 6189 font-size: 14px;
6190 font-weight: 700; 6190 font-weight: 700;
6191 line-height: 21px; 6191 line-height: 21px;
6192 margin-bottom: 10px; 6192 margin-bottom: 10px;
6193 } 6193 }
6194 @media (min-width: 768px) { 6194 @media (min-width: 768px) {
6195 .thing__date { 6195 .thing__date {
6196 font-size: 18px; 6196 font-size: 18px;
6197 line-height: 27px; 6197 line-height: 27px;
6198 } 6198 }
6199 } 6199 }
6200 .thing__title { 6200 .thing__title {
6201 width: 100%; 6201 width: 100%;
6202 font-size: 32px; 6202 font-size: 32px;
6203 font-weight: 700; 6203 font-weight: 700;
6204 margin: 0; 6204 margin: 0;
6205 max-width: 780px; 6205 max-width: 780px;
6206 position: relative; 6206 position: relative;
6207 z-index: 2; 6207 z-index: 2;
6208 line-height: 1.1; 6208 line-height: 1.1;
6209 } 6209 }
6210 @media (min-width: 768px) { 6210 @media (min-width: 768px) {
6211 .thing__title { 6211 .thing__title {
6212 font-size: 40px; 6212 font-size: 40px;
6213 } 6213 }
6214 } 6214 }
6215 @media (min-width: 1280px) { 6215 @media (min-width: 1280px) {
6216 .thing__title { 6216 .thing__title {
6217 font-size: 64px; 6217 font-size: 64px;
6218 } 6218 }
6219 } 6219 }
6220 .thing__text { 6220 .thing__text {
6221 width: 100%; 6221 width: 100%;
6222 font-weight: 700; 6222 font-weight: 700;
6223 font-size: 14px; 6223 font-size: 14px;
6224 line-height: 1.4; 6224 line-height: 1.4;
6225 margin: 15px 0 0 0; 6225 margin: 15px 0 0 0;
6226 max-width: 780px; 6226 max-width: 780px;
6227 position: relative; 6227 position: relative;
6228 z-index: 2; 6228 z-index: 2;
6229 } 6229 }
6230 @media (min-width: 768px) { 6230 @media (min-width: 768px) {
6231 .thing__text { 6231 .thing__text {
6232 margin-top: 15px; 6232 margin-top: 15px;
6233 } 6233 }
6234 } 6234 }
6235 @media (min-width: 992px) { 6235 @media (min-width: 992px) {
6236 .thing__text { 6236 .thing__text {
6237 font-weight: 400; 6237 font-weight: 400;
6238 font-size: 18px; 6238 font-size: 18px;
6239 } 6239 }
6240 } 6240 }
6241 .thing__search { 6241 .thing__search {
6242 width: 100%; 6242 width: 100%;
6243 max-width: 640px; 6243 max-width: 640px;
6244 margin-top: 20px; 6244 margin-top: 20px;
6245 position: relative; 6245 position: relative;
6246 z-index: 2; 6246 z-index: 2;
6247 } 6247 }
6248 @media (min-width: 768px) { 6248 @media (min-width: 768px) {
6249 .thing__search { 6249 .thing__search {
6250 margin-top: 30px; 6250 margin-top: 30px;
6251 } 6251 }
6252 } 6252 }
6253 .thing__badge { 6253 .thing__badge {
6254 position: relative; 6254 position: relative;
6255 z-index: 2; 6255 z-index: 2;
6256 display: -webkit-box; 6256 display: -webkit-box;
6257 display: -ms-flexbox; 6257 display: -ms-flexbox;
6258 display: flex; 6258 display: flex;
6259 -webkit-box-align: center; 6259 -webkit-box-align: center;
6260 -ms-flex-align: center; 6260 -ms-flex-align: center;
6261 align-items: center; 6261 align-items: center;
6262 gap: 5px; 6262 gap: 5px;
6263 padding: 0 12px; 6263 padding: 0 12px;
6264 background: #4d88d9; 6264 background: #4d88d9;
6265 color: #fff; 6265 color: #fff;
6266 font-size: 12px; 6266 font-size: 12px;
6267 line-height: 1; 6267 line-height: 1;
6268 height: 26px; 6268 height: 26px;
6269 border-radius: 999px; 6269 border-radius: 999px;
6270 margin-bottom: 20px; 6270 margin-bottom: 20px;
6271 } 6271 }
6272 @media (min-width: 992px) { 6272 @media (min-width: 992px) {
6273 .thing__badge { 6273 .thing__badge {
6274 font-size: 16px; 6274 font-size: 16px;
6275 gap: 10px; 6275 gap: 10px;
6276 padding: 0 24px; 6276 padding: 0 24px;
6277 height: 42px; 6277 height: 42px;
6278 margin-bottom: 30px; 6278 margin-bottom: 30px;
6279 } 6279 }
6280 } 6280 }
6281 .thing__badge svg { 6281 .thing__badge svg {
6282 width: 12px; 6282 width: 12px;
6283 height: 12px; 6283 height: 12px;
6284 } 6284 }
6285 @media (min-width: 992px) { 6285 @media (min-width: 992px) {
6286 .thing__badge svg { 6286 .thing__badge svg {
6287 width: 20px; 6287 width: 20px;
6288 height: 20px; 6288 height: 20px;
6289 } 6289 }
6290 } 6290 }
6291 .thing__pic { 6291 .thing__pic {
6292 width: 60px; 6292 width: 60px;
6293 aspect-ratio: 1/1; 6293 aspect-ratio: 1/1;
6294 -o-object-fit: contain; 6294 -o-object-fit: contain;
6295 object-fit: contain; 6295 object-fit: contain;
6296 position: relative; 6296 position: relative;
6297 z-index: 1; 6297 z-index: 1;
6298 margin-bottom: 15px; 6298 margin-bottom: 15px;
6299 } 6299 }
6300 @media (min-width: 768px) { 6300 @media (min-width: 768px) {
6301 .thing__pic { 6301 .thing__pic {
6302 width: 160px; 6302 width: 160px;
6303 position: absolute; 6303 position: absolute;
6304 top: 15px; 6304 top: 15px;
6305 right: 20px; 6305 right: 20px;
6306 } 6306 }
6307 } 6307 }
6308 @media (min-width: 992px) { 6308 @media (min-width: 992px) {
6309 .thing__pic { 6309 .thing__pic {
6310 width: 330px; 6310 width: 330px;
6311 top: 50%; 6311 top: 50%;
6312 -webkit-transform: translate(0, -50%); 6312 -webkit-transform: translate(0, -50%);
6313 -ms-transform: translate(0, -50%); 6313 -ms-transform: translate(0, -50%);
6314 transform: translate(0, -50%); 6314 transform: translate(0, -50%);
6315 } 6315 }
6316 } 6316 }
6317 @media (min-width: 1280px) { 6317 @media (min-width: 1280px) {
6318 .thing__pic { 6318 .thing__pic {
6319 right: auto; 6319 right: auto;
6320 left: 50%; 6320 left: 50%;
6321 margin-left: 200px; 6321 margin-left: 200px;
6322 } 6322 }
6323 } 6323 }
6324 .thing__pic_two { 6324 .thing__pic_two {
6325 -o-object-fit: cover; 6325 -o-object-fit: cover;
6326 object-fit: cover; 6326 object-fit: cover;
6327 border-radius: 30px; 6327 border-radius: 30px;
6328 aspect-ratio: 44/37; 6328 aspect-ratio: 44/37;
6329 width: 100%; 6329 width: 100%;
6330 max-width: 440px; 6330 max-width: 440px;
6331 } 6331 }
6332 @media (min-width: 768px) { 6332 @media (min-width: 768px) {
6333 .thing__pic_two { 6333 .thing__pic_two {
6334 position: static; 6334 position: static;
6335 -webkit-transform: translate(0, 0); 6335 -webkit-transform: translate(0, 0);
6336 -ms-transform: translate(0, 0); 6336 -ms-transform: translate(0, 0);
6337 transform: translate(0, 0); 6337 transform: translate(0, 0);
6338 } 6338 }
6339 } 6339 }
6340 @media (min-width: 1280px) { 6340 @media (min-width: 1280px) {
6341 .thing__pic_two { 6341 .thing__pic_two {
6342 position: absolute; 6342 position: absolute;
6343 -webkit-transform: translate(0, -50%); 6343 -webkit-transform: translate(0, -50%);
6344 -ms-transform: translate(0, -50%); 6344 -ms-transform: translate(0, -50%);
6345 transform: translate(0, -50%); 6345 transform: translate(0, -50%);
6346 } 6346 }
6347 } 6347 }
6348 .thing__buttons { 6348 .thing__buttons {
6349 width: 100%; 6349 width: 100%;
6350 position: relative; 6350 position: relative;
6351 z-index: 2; 6351 z-index: 2;
6352 display: -webkit-box; 6352 display: -webkit-box;
6353 display: -ms-flexbox; 6353 display: -ms-flexbox;
6354 display: flex; 6354 display: flex;
6355 -webkit-box-align: center; 6355 -webkit-box-align: center;
6356 -ms-flex-align: center; 6356 -ms-flex-align: center;
6357 align-items: center; 6357 align-items: center;
6358 gap: 20px; 6358 gap: 20px;
6359 margin-top: 15px; 6359 margin-top: 15px;
6360 } 6360 }
6361 @media (min-width: 992px) { 6361 @media (min-width: 992px) {
6362 .thing__buttons { 6362 .thing__buttons {
6363 margin-top: 30px; 6363 margin-top: 30px;
6364 gap: 30px; 6364 gap: 30px;
6365 } 6365 }
6366 } 6366 }
6367 @media (min-width: 992px) { 6367 @media (min-width: 992px) {
6368 .thing__buttons .button { 6368 .thing__buttons .button {
6369 padding: 0 22px; 6369 padding: 0 22px;
6370 } 6370 }
6371 } 6371 }
6372 .thing__checkbox { 6372 .thing__checkbox {
6373 margin-top: 20px; 6373 margin-top: 20px;
6374 } 6374 }
6375 .thing__checkbox .checkbox__icon { 6375 .thing__checkbox .checkbox__icon {
6376 border-color: #377d87; 6376 border-color: #377d87;
6377 } 6377 }
6378 .thing__checkbox .checkbox__text { 6378 .thing__checkbox .checkbox__text {
6379 color: #377d87; 6379 color: #377d87;
6380 } 6380 }
6381 .thing__profile { 6381 .thing__profile {
6382 display: -webkit-box; 6382 display: -webkit-box;
6383 display: -ms-flexbox; 6383 display: -ms-flexbox;
6384 display: flex; 6384 display: flex;
6385 -webkit-box-orient: vertical; 6385 -webkit-box-orient: vertical;
6386 -webkit-box-direction: normal; 6386 -webkit-box-direction: normal;
6387 -ms-flex-direction: column; 6387 -ms-flex-direction: column;
6388 flex-direction: column; 6388 flex-direction: column;
6389 } 6389 }
6390 @media (min-width: 768px) { 6390 @media (min-width: 768px) {
6391 .thing__profile { 6391 .thing__profile {
6392 -webkit-box-orient: horizontal; 6392 -webkit-box-orient: horizontal;
6393 -webkit-box-direction: normal; 6393 -webkit-box-direction: normal;
6394 -ms-flex-direction: row; 6394 -ms-flex-direction: row;
6395 flex-direction: row; 6395 flex-direction: row;
6396 -webkit-box-align: start; 6396 -webkit-box-align: start;
6397 -ms-flex-align: start; 6397 -ms-flex-align: start;
6398 align-items: flex-start; 6398 align-items: flex-start;
6399 } 6399 }
6400 } 6400 }
6401 .thing__profile-photo { 6401 .thing__profile-photo {
6402 width: 210px; 6402 width: 210px;
6403 border-radius: 8px; 6403 border-radius: 8px;
6404 aspect-ratio: 1/1; 6404 aspect-ratio: 1/1;
6405 } 6405 }
6406 .thing__profile-body { 6406 .thing__profile-body {
6407 display: -webkit-box; 6407 display: -webkit-box;
6408 display: -ms-flexbox; 6408 display: -ms-flexbox;
6409 display: flex; 6409 display: flex;
6410 -webkit-box-orient: vertical; 6410 -webkit-box-orient: vertical;
6411 -webkit-box-direction: normal; 6411 -webkit-box-direction: normal;
6412 -ms-flex-direction: column; 6412 -ms-flex-direction: column;
6413 flex-direction: column; 6413 flex-direction: column;
6414 margin-top: 15px; 6414 margin-top: 15px;
6415 } 6415 }
6416 @media (min-width: 768px) { 6416 @media (min-width: 768px) {
6417 .thing__profile-body { 6417 .thing__profile-body {
6418 width: calc(100% - 210px); 6418 width: calc(100% - 210px);
6419 padding-left: 35px; 6419 padding-left: 35px;
6420 } 6420 }
6421 } 6421 }
6422 .thing__profile .thing__title { 6422 .thing__profile .thing__title {
6423 max-width: none; 6423 max-width: none;
6424 } 6424 }
6425 @media (min-width: 768px) { 6425 @media (min-width: 768px) {
6426 .thing__profile .thing__title { 6426 .thing__profile .thing__title {
6427 margin-top: -20px; 6427 margin-top: -20px;
6428 } 6428 }
6429 } 6429 }
6430 .thing__profile .thing__text { 6430 .thing__profile .thing__text {
6431 max-width: none; 6431 max-width: none;
6432 } 6432 }
6433 .thing__bottom { 6433 .thing__bottom {
6434 display: -webkit-box; 6434 display: -webkit-box;
6435 display: -ms-flexbox; 6435 display: -ms-flexbox;
6436 display: flex; 6436 display: flex;
6437 -webkit-box-align: center; 6437 -webkit-box-align: center;
6438 -ms-flex-align: center; 6438 -ms-flex-align: center;
6439 align-items: center; 6439 align-items: center;
6440 gap: 15px; 6440 gap: 15px;
6441 margin-top: 15px; 6441 margin-top: 15px;
6442 } 6442 }
6443 @media (min-width: 768px) { 6443 @media (min-width: 768px) {
6444 .thing__bottom { 6444 .thing__bottom {
6445 margin-top: 30px; 6445 margin-top: 30px;
6446 } 6446 }
6447 } 6447 }
6448 .thing__select { 6448 .thing__select {
6449 width: 100%; 6449 width: 100%;
6450 max-width: 640px; 6450 max-width: 640px;
6451 margin-top: 20px; 6451 margin-top: 20px;
6452 } 6452 }
6453 @media (min-width: 768px) { 6453 @media (min-width: 768px) {
6454 .thing__select { 6454 .thing__select {
6455 margin-top: 30px; 6455 margin-top: 30px;
6456 } 6456 }
6457 } 6457 }
6458 6458
6459 .page-404 { 6459 .page-404 {
6460 background: url(../images/bg-3.svg) no-repeat 100%/cover; 6460 background: url(../images/bg-3.svg) no-repeat 100%/cover;
6461 overflow: hidden; 6461 overflow: hidden;
6462 } 6462 }
6463 .page-404__body { 6463 .page-404__body {
6464 display: -webkit-box; 6464 display: -webkit-box;
6465 display: -ms-flexbox; 6465 display: -ms-flexbox;
6466 display: flex; 6466 display: flex;
6467 -webkit-box-orient: vertical; 6467 -webkit-box-orient: vertical;
6468 -webkit-box-direction: normal; 6468 -webkit-box-direction: normal;
6469 -ms-flex-direction: column; 6469 -ms-flex-direction: column;
6470 flex-direction: column; 6470 flex-direction: column;
6471 -webkit-box-align: center; 6471 -webkit-box-align: center;
6472 -ms-flex-align: center; 6472 -ms-flex-align: center;
6473 align-items: center; 6473 align-items: center;
6474 -webkit-box-pack: center; 6474 -webkit-box-pack: center;
6475 -ms-flex-pack: center; 6475 -ms-flex-pack: center;
6476 justify-content: center; 6476 justify-content: center;
6477 text-align: center; 6477 text-align: center;
6478 padding: 60px 0; 6478 padding: 60px 0;
6479 color: #000; 6479 color: #000;
6480 font-size: 12px; 6480 font-size: 12px;
6481 gap: 10px; 6481 gap: 10px;
6482 line-height: 1.4; 6482 line-height: 1.4;
6483 } 6483 }
6484 @media (min-width: 768px) { 6484 @media (min-width: 768px) {
6485 .page-404__body { 6485 .page-404__body {
6486 font-size: 18px; 6486 font-size: 18px;
6487 padding: 120px 0; 6487 padding: 120px 0;
6488 gap: 20px; 6488 gap: 20px;
6489 } 6489 }
6490 } 6490 }
6491 @media (min-width: 1280px) { 6491 @media (min-width: 1280px) {
6492 .page-404__body { 6492 .page-404__body {
6493 padding: 180px 0; 6493 padding: 180px 0;
6494 text-align: left; 6494 text-align: left;
6495 } 6495 }
6496 } 6496 }
6497 .page-404__numb { 6497 .page-404__numb {
6498 font-size: 114px; 6498 font-size: 114px;
6499 line-height: 1; 6499 line-height: 1;
6500 color: #377d87; 6500 color: #377d87;
6501 font-weight: 700; 6501 font-weight: 700;
6502 } 6502 }
6503 @media (min-width: 768px) { 6503 @media (min-width: 768px) {
6504 .page-404__numb { 6504 .page-404__numb {
6505 font-size: 184px; 6505 font-size: 184px;
6506 } 6506 }
6507 } 6507 }
6508 @media (min-width: 768px) { 6508 @media (min-width: 768px) {
6509 .page-404__title { 6509 .page-404__title {
6510 font-weight: 700; 6510 font-weight: 700;
6511 font-size: 44px; 6511 font-size: 44px;
6512 } 6512 }
6513 } 6513 }
6514 @media (min-width: 1280px) { 6514 @media (min-width: 1280px) {
6515 .page-404__title { 6515 .page-404__title {
6516 width: 710px; 6516 width: 710px;
6517 position: relative; 6517 position: relative;
6518 left: 200px; 6518 left: 200px;
6519 } 6519 }
6520 } 6520 }
6521 @media (min-width: 1280px) { 6521 @media (min-width: 1280px) {
6522 .page-404__subtitle { 6522 .page-404__subtitle {
6523 width: 710px; 6523 width: 710px;
6524 position: relative; 6524 position: relative;
6525 left: 200px; 6525 left: 200px;
6526 } 6526 }
6527 } 6527 }
6528 .page-404__button { 6528 .page-404__button {
6529 margin-top: 10px; 6529 margin-top: 10px;
6530 } 6530 }
6531 @media (min-width: 1280px) { 6531 @media (min-width: 1280px) {
6532 .page-404__button { 6532 .page-404__button {
6533 position: relative; 6533 position: relative;
6534 left: -45px; 6534 left: -45px;
6535 } 6535 }
6536 } 6536 }
6537 6537
6538 .cookies { 6538 .cookies {
6539 display: none; 6539 display: none;
6540 -webkit-box-align: end; 6540 -webkit-box-align: end;
6541 -ms-flex-align: end; 6541 -ms-flex-align: end;
6542 align-items: flex-end; 6542 align-items: flex-end;
6543 padding: 10px; 6543 padding: 10px;
6544 padding-top: 0; 6544 padding-top: 0;
6545 height: 0; 6545 height: 0;
6546 position: fixed; 6546 position: fixed;
6547 z-index: 999; 6547 z-index: 999;
6548 bottom: 0; 6548 bottom: 0;
6549 left: 0; 6549 left: 0;
6550 width: 100%; 6550 width: 100%;
6551 } 6551 }
6552 .cookies-is-actived .cookies { 6552 .cookies-is-actived .cookies {
6553 display: -webkit-box; 6553 display: -webkit-box;
6554 display: -ms-flexbox; 6554 display: -ms-flexbox;
6555 display: flex; 6555 display: flex;
6556 } 6556 }
6557 .cookies__body { 6557 .cookies__body {
6558 border-radius: 6px; 6558 border-radius: 6px;
6559 border: 1px solid #377d87; 6559 border: 1px solid #377d87;
6560 background: #fff; 6560 background: #fff;
6561 padding: 15px; 6561 padding: 15px;
6562 padding-right: 50px; 6562 padding-right: 50px;
6563 position: relative; 6563 position: relative;
6564 max-width: 940px; 6564 max-width: 940px;
6565 margin: 0 auto; 6565 margin: 0 auto;
6566 } 6566 }
6567 @media (min-width: 768px) { 6567 @media (min-width: 768px) {
6568 .cookies__body { 6568 .cookies__body {
6569 padding: 25px; 6569 padding: 25px;
6570 padding-right: 50px; 6570 padding-right: 50px;
6571 border-radius: 12px; 6571 border-radius: 12px;
6572 } 6572 }
6573 } 6573 }
6574 @media (min-width: 992px) { 6574 @media (min-width: 992px) {
6575 .cookies__body { 6575 .cookies__body {
6576 padding: 40px 60px; 6576 padding: 40px 60px;
6577 } 6577 }
6578 } 6578 }
6579 .cookies__close { 6579 .cookies__close {
6580 display: -webkit-box; 6580 display: -webkit-box;
6581 display: -ms-flexbox; 6581 display: -ms-flexbox;
6582 display: flex; 6582 display: flex;
6583 -webkit-box-pack: center; 6583 -webkit-box-pack: center;
6584 -ms-flex-pack: center; 6584 -ms-flex-pack: center;
6585 justify-content: center; 6585 justify-content: center;
6586 -webkit-box-align: center; 6586 -webkit-box-align: center;
6587 -ms-flex-align: center; 6587 -ms-flex-align: center;
6588 align-items: center; 6588 align-items: center;
6589 color: #377d87; 6589 color: #377d87;
6590 padding: 0; 6590 padding: 0;
6591 border: none; 6591 border: none;
6592 background: none; 6592 background: none;
6593 position: absolute; 6593 position: absolute;
6594 top: 15px; 6594 top: 15px;
6595 right: 15px; 6595 right: 15px;
6596 } 6596 }
6597 .cookies__close:hover { 6597 .cookies__close:hover {
6598 color: #000; 6598 color: #000;
6599 } 6599 }
6600 .cookies__close svg { 6600 .cookies__close svg {
6601 width: 16px; 6601 width: 16px;
6602 height: 16px; 6602 height: 16px;
6603 } 6603 }
6604 .cookies__text { 6604 .cookies__text {
6605 font-size: 12px; 6605 font-size: 12px;
6606 color: #377d87; 6606 color: #377d87;
6607 line-height: 1.4; 6607 line-height: 1.4;
6608 } 6608 }
6609 @media (min-width: 768px) { 6609 @media (min-width: 768px) {
6610 .cookies__text { 6610 .cookies__text {
6611 font-size: 16px; 6611 font-size: 16px;
6612 font-weight: 700; 6612 font-weight: 700;
6613 } 6613 }
6614 } 6614 }
6615 6615
6616 .fancybox-active { 6616 .fancybox-active {
6617 overflow: hidden; 6617 overflow: hidden;
6618 } 6618 }
6619 .fancybox-is-open .fancybox-bg { 6619 .fancybox-is-open .fancybox-bg {
6620 background: #080b0b; 6620 background: #080b0b;
6621 opacity: 0.6; 6621 opacity: 0.6;
6622 z-index: 9999; 6622 z-index: 9999;
6623 } 6623 }
6624 .fancybox-slide { 6624 .fancybox-slide {
6625 padding: 0; 6625 padding: 0;
6626 } 6626 }
6627 @media (min-width: 992px) { 6627 @media (min-width: 992px) {
6628 .fancybox-slide { 6628 .fancybox-slide {
6629 padding: 30px; 6629 padding: 30px;
6630 } 6630 }
6631 } 6631 }
6632 .fancybox-slide--html .fancybox-close-small { 6632 .fancybox-slide--html .fancybox-close-small {
6633 padding: 0; 6633 padding: 0;
6634 opacity: 1; 6634 opacity: 1;
6635 color: #377d87; 6635 color: #377d87;
6636 } 6636 }
6637 @media (min-width: 768px) { 6637 @media (min-width: 768px) {
6638 .fancybox-slide--html .fancybox-close-small { 6638 .fancybox-slide--html .fancybox-close-small {
6639 top: 10px; 6639 top: 10px;
6640 right: 10px; 6640 right: 10px;
6641 } 6641 }
6642 } 6642 }
6643 .fancybox-slide--html .fancybox-close-small:hover { 6643 .fancybox-slide--html .fancybox-close-small:hover {
6644 color: #000; 6644 color: #000;
6645 } 6645 }
6646 6646
6647 .modal { 6647 .modal {
6648 width: 100%; 6648 width: 100%;
6649 max-width: 820px; 6649 max-width: 820px;
6650 padding: 0; 6650 padding: 0;
6651 background: #fff; 6651 background: #fff;
6652 z-index: 99999; 6652 z-index: 99999;
6653 } 6653 }
6654 @media (min-width: 992px) { 6654 @media (min-width: 992px) {
6655 .modal { 6655 .modal {
6656 border-radius: 10px; 6656 border-radius: 10px;
6657 border: 1px solid #377d87; 6657 border: 1px solid #377d87;
6658 } 6658 }
6659 } 6659 }
6660 .modal_bg { 6660 .modal_bg {
6661 background: #fff url(../images/bg-4.svg) no-repeat calc(50% + 100px) 100%; 6661 background: #fff url(../images/bg-4.svg) no-repeat calc(50% + 100px) 100%;
6662 } 6662 }
6663 @media (min-width: 768px) { 6663 @media (min-width: 768px) {
6664 .modal_bg { 6664 .modal_bg {
6665 background-position: 100% 100%; 6665 background-position: 100% 100%;
6666 } 6666 }
6667 } 6667 }
6668 .modal__body { 6668 .modal__body {
6669 padding: 40px 15px; 6669 padding: 40px 15px;
6670 padding-bottom: 30px; 6670 padding-bottom: 30px;
6671 display: -webkit-box; 6671 display: -webkit-box;
6672 display: -ms-flexbox; 6672 display: -ms-flexbox;
6673 display: flex; 6673 display: flex;
6674 -webkit-box-orient: vertical; 6674 -webkit-box-orient: vertical;
6675 -webkit-box-direction: normal; 6675 -webkit-box-direction: normal;
6676 -ms-flex-direction: column; 6676 -ms-flex-direction: column;
6677 flex-direction: column; 6677 flex-direction: column;
6678 -webkit-box-align: center; 6678 -webkit-box-align: center;
6679 -ms-flex-align: center; 6679 -ms-flex-align: center;
6680 align-items: center; 6680 align-items: center;
6681 -webkit-box-pack: center; 6681 -webkit-box-pack: center;
6682 -ms-flex-pack: center; 6682 -ms-flex-pack: center;
6683 justify-content: center; 6683 justify-content: center;
6684 width: 100%; 6684 width: 100%;
6685 min-height: 100vh; 6685 min-height: 100vh;
6686 overflow: hidden; 6686 overflow: hidden;
6687 font-size: 12px; 6687 font-size: 12px;
6688 } 6688 }
6689 @media (min-width: 768px) { 6689 @media (min-width: 768px) {
6690 .modal__body { 6690 .modal__body {
6691 font-size: 16px; 6691 font-size: 16px;
6692 padding-left: 22px; 6692 padding-left: 22px;
6693 padding-right: 22px; 6693 padding-right: 22px;
6694 } 6694 }
6695 } 6695 }
6696 @media (min-width: 992px) { 6696 @media (min-width: 992px) {
6697 .modal__body { 6697 .modal__body {
6698 min-height: 450px; 6698 min-height: 450px;
6699 padding: 60px 80px; 6699 padding: 60px 80px;
6700 padding-bottom: 40px; 6700 padding-bottom: 40px;
6701 } 6701 }
6702 } 6702 }
6703 @media (min-width: 768px) { 6703 @media (min-width: 768px) {
6704 .modal__body .left { 6704 .modal__body .left {
6705 text-align: left; 6705 text-align: left;
6706 } 6706 }
6707 } 6707 }
6708 .modal__title { 6708 .modal__title {
6709 width: 100%; 6709 width: 100%;
6710 font-size: 22px; 6710 font-size: 22px;
6711 font-weight: 700; 6711 font-weight: 700;
6712 text-align: center; 6712 text-align: center;
6713 color: #000; 6713 color: #000;
6714 } 6714 }
6715 @media (min-width: 768px) { 6715 @media (min-width: 768px) {
6716 .modal__title { 6716 .modal__title {
6717 font-size: 32px; 6717 font-size: 32px;
6718 } 6718 }
6719 } 6719 }
6720 @media (min-width: 992px) { 6720 @media (min-width: 992px) {
6721 .modal__title { 6721 .modal__title {
6722 font-size: 44px; 6722 font-size: 44px;
6723 } 6723 }
6724 } 6724 }
6725 .modal__text { 6725 .modal__text {
6726 width: 100%; 6726 width: 100%;
6727 text-align: center; 6727 text-align: center;
6728 margin-top: 10px; 6728 margin-top: 10px;
6729 color: #000; 6729 color: #000;
6730 } 6730 }
6731 @media (min-width: 768px) { 6731 @media (min-width: 768px) {
6732 .modal__text { 6732 .modal__text {
6733 margin-top: 20px; 6733 margin-top: 20px;
6734 } 6734 }
6735 } 6735 }
6736 .modal__text span { 6736 .modal__text span {
6737 color: #9c9d9d; 6737 color: #9c9d9d;
6738 } 6738 }
6739 .modal__text a { 6739 .modal__text a {
6740 font-weight: 700; 6740 font-weight: 700;
6741 color: #377d87; 6741 color: #377d87;
6742 } 6742 }
6743 .modal__text a:hover { 6743 .modal__text a:hover {
6744 color: #000; 6744 color: #000;
6745 } 6745 }
6746 .modal__button { 6746 .modal__button {
6747 margin-top: 20px; 6747 margin-top: 20px;
6748 } 6748 }
6749 @media (min-width: 768px) { 6749 @media (min-width: 768px) {
6750 .modal__button { 6750 .modal__button {
6751 min-width: 200px; 6751 min-width: 200px;
6752 margin-top: 30px; 6752 margin-top: 30px;
6753 } 6753 }
6754 } 6754 }
6755 .modal__buttons { 6755 .modal__buttons {
6756 display: grid; 6756 display: grid;
6757 grid-template-columns: repeat(2, 1fr); 6757 grid-template-columns: repeat(2, 1fr);
6758 gap: 20px; 6758 gap: 20px;
6759 margin-top: 20px; 6759 margin-top: 20px;
6760 } 6760 }
6761 @media (min-width: 768px) { 6761 @media (min-width: 768px) {
6762 .modal__buttons { 6762 .modal__buttons {
6763 gap: 30px; 6763 gap: 30px;
6764 margin-top: 30px; 6764 margin-top: 30px;
6765 } 6765 }
6766 } 6766 }
6767 .modal__form { 6767 .modal__form {
6768 width: 100%; 6768 width: 100%;
6769 display: -webkit-box; 6769 display: -webkit-box;
6770 display: -ms-flexbox; 6770 display: -ms-flexbox;
6771 display: flex; 6771 display: flex;
6772 -webkit-box-orient: vertical; 6772 -webkit-box-orient: vertical;
6773 -webkit-box-direction: normal; 6773 -webkit-box-direction: normal;
6774 -ms-flex-direction: column; 6774 -ms-flex-direction: column;
6775 flex-direction: column; 6775 flex-direction: column;
6776 gap: 16px; 6776 gap: 16px;
6777 margin-top: 10px; 6777 margin-top: 10px;
6778 } 6778 }
6779 @media (min-width: 768px) { 6779 @media (min-width: 768px) {
6780 .modal__form { 6780 .modal__form {
6781 margin-top: 20px; 6781 margin-top: 20px;
6782 } 6782 }
6783 } 6783 }
6784 .modal__form-item { 6784 .modal__form-item {
6785 display: -webkit-box; 6785 display: -webkit-box;
6786 display: -ms-flexbox; 6786 display: -ms-flexbox;
6787 display: flex; 6787 display: flex;
6788 -webkit-box-orient: vertical; 6788 -webkit-box-orient: vertical;
6789 -webkit-box-direction: normal; 6789 -webkit-box-direction: normal;
6790 -ms-flex-direction: column; 6790 -ms-flex-direction: column;
6791 flex-direction: column; 6791 flex-direction: column;
6792 -webkit-box-align: center; 6792 -webkit-box-align: center;
6793 -ms-flex-align: center; 6793 -ms-flex-align: center;
6794 align-items: center; 6794 align-items: center;
6795 gap: 4px; 6795 gap: 4px;
6796 } 6796 }
6797 .modal__form-item > .input { 6797 .modal__form-item > .input {
6798 width: 100%; 6798 width: 100%;
6799 } 6799 }
6800 .modal__form-item > .textarea { 6800 .modal__form-item > .textarea {
6801 width: 100%; 6801 width: 100%;
6802 height: 175px; 6802 height: 175px;
6803 } 6803 }
6804 @media (min-width: 768px) { 6804 @media (min-width: 768px) {
6805 .modal__form-item > .textarea { 6805 .modal__form-item > .textarea {
6806 height: 195px; 6806 height: 195px;
6807 } 6807 }
6808 } 6808 }
6809 .modal__form-item > .file { 6809 .modal__form-item > .file {
6810 width: 100%; 6810 width: 100%;
6811 } 6811 }
6812 .modal__form-item > .button { 6812 .modal__form-item > .button {
6813 min-width: 120px; 6813 min-width: 120px;
6814 } 6814 }
6815 .modal__form-item > label { 6815 .modal__form-item > label {
6816 width: 100%; 6816 width: 100%;
6817 display: none; 6817 display: none;
6818 color: #eb5757; 6818 color: #eb5757;
6819 padding: 0 10px; 6819 padding: 0 10px;
6820 font-size: 12px; 6820 font-size: 12px;
6821 } 6821 }
6822 @media (min-width: 768px) { 6822 @media (min-width: 768px) {
6823 .modal__form-item > label { 6823 .modal__form-item > label {
6824 padding: 0 20px; 6824 padding: 0 20px;
6825 font-size: 16px; 6825 font-size: 16px;
6826 } 6826 }
6827 } 6827 }
6828 .modal__sign { 6828 .modal__sign {
6829 display: -webkit-box; 6829 display: -webkit-box;
6830 display: -ms-flexbox; 6830 display: -ms-flexbox;
6831 display: flex; 6831 display: flex;
6832 -webkit-box-orient: vertical; 6832 -webkit-box-orient: vertical;
6833 -webkit-box-direction: normal; 6833 -webkit-box-direction: normal;
6834 -ms-flex-direction: column; 6834 -ms-flex-direction: column;
6835 flex-direction: column; 6835 flex-direction: column;
6836 gap: 20px; 6836 gap: 20px;
6837 margin-top: 10px; 6837 margin-top: 10px;
6838 margin-bottom: 20px; 6838 margin-bottom: 20px;
6839 width: 100%; 6839 width: 100%;
6840 } 6840 }
6841 @media (min-width: 768px) { 6841 @media (min-width: 768px) {
6842 .modal__sign { 6842 .modal__sign {
6843 margin-top: 20px; 6843 margin-top: 20px;
6844 margin-bottom: 40px; 6844 margin-bottom: 40px;
6845 } 6845 }
6846 } 6846 }
6847 .modal__sign-item { 6847 .modal__sign-item {
6848 display: -webkit-box; 6848 display: -webkit-box;
6849 display: -ms-flexbox; 6849 display: -ms-flexbox;
6850 display: flex; 6850 display: flex;
6851 -webkit-box-orient: vertical; 6851 -webkit-box-orient: vertical;
6852 -webkit-box-direction: normal; 6852 -webkit-box-direction: normal;
6853 -ms-flex-direction: column; 6853 -ms-flex-direction: column;
6854 flex-direction: column; 6854 flex-direction: column;
6855 -webkit-box-align: center; 6855 -webkit-box-align: center;
6856 -ms-flex-align: center; 6856 -ms-flex-align: center;
6857 align-items: center; 6857 align-items: center;
6858 position: relative; 6858 position: relative;
6859 } 6859 }
6860 .modal__sign-item > .input { 6860 .modal__sign-item > .input {
6861 width: 100%; 6861 width: 100%;
6862 padding-right: 36px; 6862 padding-right: 36px;
6863 position: relative; 6863 position: relative;
6864 z-index: 1; 6864 z-index: 1;
6865 } 6865 }
6866 @media (min-width: 768px) { 6866 @media (min-width: 768px) {
6867 .modal__sign-item > .input { 6867 .modal__sign-item > .input {
6868 height: 52px; 6868 height: 52px;
6869 padding-right: 60px; 6869 padding-right: 60px;
6870 } 6870 }
6871 } 6871 }
6872 .modal__sign-item > .textarea { 6872 .modal__sign-item > .textarea {
6873 width: 100%; 6873 width: 100%;
6874 } 6874 }
6875 .modal__sign-bottom { 6875 .modal__sign-bottom {
6876 display: -webkit-box; 6876 display: -webkit-box;
6877 display: -ms-flexbox; 6877 display: -ms-flexbox;
6878 display: flex; 6878 display: flex;
6879 -webkit-box-pack: justify; 6879 -webkit-box-pack: justify;
6880 -ms-flex-pack: justify; 6880 -ms-flex-pack: justify;
6881 justify-content: space-between; 6881 justify-content: space-between;
6882 -webkit-box-align: center; 6882 -webkit-box-align: center;
6883 -ms-flex-align: center; 6883 -ms-flex-align: center;
6884 align-items: center; 6884 align-items: center;
6885 width: 100%; 6885 width: 100%;
6886 } 6886 }
6887 .modal__sign-bottom-link { 6887 .modal__sign-bottom-link {
6888 font-weight: 700; 6888 font-weight: 700;
6889 color: #377d87; 6889 color: #377d87;
6890 } 6890 }
6891 .modal__tabs { 6891 .modal__tabs {
6892 width: 100%; 6892 width: 100%;
6893 display: grid; 6893 display: grid;
6894 grid-template-columns: repeat(2, 1fr); 6894 grid-template-columns: repeat(2, 1fr);
6895 gap: 16px; 6895 gap: 16px;
6896 margin-top: 10px; 6896 margin-top: 10px;
6897 } 6897 }
6898 @media (min-width: 768px) { 6898 @media (min-width: 768px) {
6899 .modal__tabs { 6899 .modal__tabs {
6900 gap: 24px; 6900 gap: 24px;
6901 margin-top: 20px; 6901 margin-top: 20px;
6902 } 6902 }
6903 } 6903 }
6904 .modal__tabs-item.active { 6904 .modal__tabs-item.active {
6905 background: #377d87; 6905 background: #377d87;
6906 color: #fff; 6906 color: #fff;
6907 } 6907 }
6908 .modal__reg { 6908 .modal__reg {
6909 display: none; 6909 display: none;
6910 -webkit-box-orient: vertical; 6910 -webkit-box-orient: vertical;
6911 -webkit-box-direction: normal; 6911 -webkit-box-direction: normal;
6912 -ms-flex-direction: column; 6912 -ms-flex-direction: column;
6913 flex-direction: column; 6913 flex-direction: column;
6914 -webkit-box-align: center; 6914 -webkit-box-align: center;
6915 -ms-flex-align: center; 6915 -ms-flex-align: center;
6916 align-items: center; 6916 align-items: center;
6917 gap: 10px; 6917 gap: 10px;
6918 width: 100%; 6918 width: 100%;
6919 margin-top: 10px; 6919 margin-top: 10px;
6920 margin-bottom: 20px; 6920 margin-bottom: 20px;
6921 } 6921 }
6922 @media (min-width: 768px) { 6922 @media (min-width: 768px) {
6923 .modal__reg { 6923 .modal__reg {
6924 margin-top: 20px; 6924 margin-top: 20px;
6925 margin-bottom: 30px; 6925 margin-bottom: 30px;
6926 gap: 20px; 6926 gap: 20px;
6927 } 6927 }
6928 } 6928 }
6929 .modal__reg.showed { 6929 .modal__reg.showed {
6930 display: -webkit-box; 6930 display: -webkit-box;
6931 display: -ms-flexbox; 6931 display: -ms-flexbox;
6932 display: flex; 6932 display: flex;
6933 } 6933 }
6934 .modal__reg-item { 6934 .modal__reg-item {
6935 width: 100%; 6935 width: 100%;
6936 display: -webkit-box; 6936 display: -webkit-box;
6937 display: -ms-flexbox; 6937 display: -ms-flexbox;
6938 display: flex; 6938 display: flex;
6939 -webkit-box-orient: vertical; 6939 -webkit-box-orient: vertical;
6940 -webkit-box-direction: normal; 6940 -webkit-box-direction: normal;
6941 -ms-flex-direction: column; 6941 -ms-flex-direction: column;
6942 flex-direction: column; 6942 flex-direction: column;
6943 } 6943 }
6944 .modal__reg-item > .captcha { 6944 .modal__reg-item > .captcha {
6945 width: 100%; 6945 width: 100%;
6946 max-width: 300px; 6946 max-width: 300px;
6947 } 6947 }
6948 6948
6949 .messages { 6949 .messages {
6950 display: -webkit-box; 6950 display: -webkit-box;
6951 display: -ms-flexbox; 6951 display: -ms-flexbox;
6952 display: flex; 6952 display: flex;
6953 -webkit-box-orient: vertical; 6953 -webkit-box-orient: vertical;
6954 -webkit-box-direction: reverse; 6954 -webkit-box-direction: reverse;
6955 -ms-flex-direction: column-reverse; 6955 -ms-flex-direction: column-reverse;
6956 flex-direction: column-reverse; 6956 flex-direction: column-reverse;
6957 -webkit-box-align: center; 6957 -webkit-box-align: center;
6958 -ms-flex-align: center; 6958 -ms-flex-align: center;
6959 align-items: center; 6959 align-items: center;
6960 gap: 20px; 6960 gap: 20px;
6961 } 6961 }
6962 .messages__body { 6962 .messages__body {
6963 width: 100%; 6963 width: 100%;
6964 max-height: 800px; 6964 max-height: 800px;
6965 overflow: auto; 6965 overflow: auto;
6966 padding: 5px; 6966 padding: 5px;
6967 } 6967 }
6968 .messages__item { 6968 .messages__item {
6969 -webkit-box-align: center; 6969 -webkit-box-align: center;
6970 -ms-flex-align: center; 6970 -ms-flex-align: center;
6971 align-items: center; 6971 align-items: center;
6972 border-radius: 8px; 6972 border-radius: 8px;
6973 border: 1px solid #e7e7e7; 6973 border: 1px solid #e7e7e7;
6974 background: linear-gradient(95deg, #f2f5fc 59.82%, #ebf2fc 99.99%); 6974 background: linear-gradient(95deg, #f2f5fc 59.82%, #ebf2fc 99.99%);
6975 padding: 0px; 6975 padding: 0px;
6976 font-size: 12px; 6976 font-size: 12px;
6977 display: flex; 6977 display: flex;
6978 justify-content: space-between; 6978 justify-content: space-between;
6979 margin-bottom: 20px; 6979 margin-bottom: 20px;
6980 } 6980 }
6981 @media (min-width: 768px) { 6981 @media (min-width: 768px) {
6982 .messages__item { 6982 .messages__item {
6983 font-size: 18px; 6983 font-size: 18px;
6984 } 6984 }
6985 } 6985 }
6986 .messages__item-info { 6986 .messages__item-info {
6987 display: -webkit-box; 6987 display: -webkit-box;
6988 display: -ms-flexbox; 6988 display: -ms-flexbox;
6989 display: flex; 6989 display: flex;
6990 -webkit-box-align: center; 6990 -webkit-box-align: center;
6991 -ms-flex-align: center; 6991 -ms-flex-align: center;
6992 align-items: center; 6992 align-items: center;
6993 width: calc(100% - 90px); 6993 width: calc(100% - 90px);
6994 padding: 20px; 6994 padding: 20px;
6995 } 6995 }
6996 @media (min-width: 768px) { 6996 @media (min-width: 768px) {
6997 .messages__item-info { 6997 .messages__item-info {
6998 width: calc(100% - 150px); 6998 width: calc(100% - 150px);
6999 } 6999 }
7000 } 7000 }
7001 .messages__item-photo { 7001 .messages__item-photo {
7002 position: relative; 7002 position: relative;
7003 aspect-ratio: 1/1; 7003 aspect-ratio: 1/1;
7004 overflow: hidden; 7004 overflow: hidden;
7005 background: #9c9d9d; 7005 background: #9c9d9d;
7006 color: #fff; 7006 color: #fff;
7007 width: 36px; 7007 width: 36px;
7008 border-radius: 6px; 7008 border-radius: 6px;
7009 display: -webkit-box; 7009 display: -webkit-box;
7010 display: -ms-flexbox; 7010 display: -ms-flexbox;
7011 display: flex; 7011 display: flex;
7012 -webkit-box-pack: center; 7012 -webkit-box-pack: center;
7013 -ms-flex-pack: center; 7013 -ms-flex-pack: center;
7014 justify-content: center; 7014 justify-content: center;
7015 -webkit-box-align: center; 7015 -webkit-box-align: center;
7016 -ms-flex-align: center; 7016 -ms-flex-align: center;
7017 align-items: center; 7017 align-items: center;
7018 } 7018 }
7019 @media (min-width: 768px) { 7019 @media (min-width: 768px) {
7020 .messages__item-photo { 7020 .messages__item-photo {
7021 width: 52px; 7021 width: 52px;
7022 } 7022 }
7023 } 7023 }
7024 .messages__item-photo svg { 7024 .messages__item-photo svg {
7025 width: 50%; 7025 width: 50%;
7026 position: relative; 7026 position: relative;
7027 z-index: 1; 7027 z-index: 1;
7028 } 7028 }
7029 .messages__item-photo img { 7029 .messages__item-photo img {
7030 position: absolute; 7030 position: absolute;
7031 z-index: 2; 7031 z-index: 2;
7032 top: 0; 7032 top: 0;
7033 left: 0; 7033 left: 0;
7034 width: 100%; 7034 width: 100%;
7035 height: 100%; 7035 height: 100%;
7036 -o-object-fit: cover; 7036 -o-object-fit: cover;
7037 object-fit: cover; 7037 object-fit: cover;
7038 } 7038 }
7039 .messages__item-text { 7039 .messages__item-text {
7040 width: calc(100% - 36px); 7040 width: calc(100% - 36px);
7041 padding-left: 6px; 7041 padding-left: 6px;
7042 color: #000; 7042 color: #000;
7043 display: -webkit-box; 7043 display: -webkit-box;
7044 display: -ms-flexbox; 7044 display: -ms-flexbox;
7045 display: flex; 7045 display: flex;
7046 -webkit-box-orient: vertical; 7046 -webkit-box-orient: vertical;
7047 -webkit-box-direction: normal; 7047 -webkit-box-direction: normal;
7048 -ms-flex-direction: column; 7048 -ms-flex-direction: column;
7049 flex-direction: column; 7049 flex-direction: column;
7050 gap: 4px; 7050 gap: 4px;
7051 } 7051 }
7052 @media (min-width: 768px) { 7052 @media (min-width: 768px) {
7053 .messages__item-text { 7053 .messages__item-text {
7054 padding-left: 20px; 7054 padding-left: 20px;
7055 width: calc(100% - 52px); 7055 width: calc(100% - 52px);
7056 gap: 8px; 7056 gap: 8px;
7057 } 7057 }
7058 } 7058 }
7059 .messages__item-text span { 7059 .messages__item-text span {
7060 color: #000; 7060 color: #000;
7061 } 7061 }
7062 .messages__item-actions{ 7062 .messages__item-actions{
7063 padding: 20px; 7063 padding: 20px;
7064 } 7064 }
7065 .messages__item-buttons{ 7065 .messages__item-buttons{
7066 float: right; 7066 float: right;
7067 display: flex; 7067 display: flex;
7068 align-items: center; 7068 align-items: center;
7069 } 7069 }
7070 .messages__item-buttons button{ 7070 .messages__item-buttons button{
7071 padding: 0; 7071 padding: 0;
7072 background: unset; 7072 background: unset;
7073 border: unset; 7073 border: unset;
7074 } 7074 }
7075 .messages__item-buttons button svg{ 7075 .messages__item-buttons button svg{
7076 width: 25px; 7076 width: 25px;
7077 height: 25px; 7077 height: 25px;
7078 color: gray; 7078 color: gray;
7079 } 7079 }
7080 .messages__item-buttons button svg path{ 7080 .messages__item-buttons button svg path{
7081 stroke: gray; 7081 stroke: gray;
7082 } 7082 }
7083 .messages__item-buttons button:hover svg{ 7083 .messages__item-buttons button:hover svg{
7084 color: black; 7084 color: black;
7085 } 7085 }
7086 .messages__item-buttons button:hover svg path{ 7086 .messages__item-buttons button:hover svg path{
7087 stroke: black; 7087 stroke: black;
7088 } 7088 }
7089 .messages__item-buttons button.pin-on:hover svg#pin_off path{ 7089 .messages__item-buttons button.pin-on:hover svg#pin_off path{
7090 fill: black; 7090 fill: black;
7091 } 7091 }
7092 .messages__item-buttons button.pin-on svg{ 7092 .messages__item-buttons button.pin-on svg{
7093 fill: gray; 7093 fill: gray;
7094 } 7094 }
7095 .messages__item-date { 7095 .messages__item-date {
7096 color: #00000070; 7096 color: #00000070;
7097 width: 90px; 7097 width: 90px;
7098 text-align: right; 7098 text-align: right;
7099 font-size: 14px; 7099 font-size: 14px;
7100 margin-bottom: 8px; 7100 margin-bottom: 8px;
7101 } 7101 }
7102 7102
7103 .messages.active .messages__item { 7103 .messages.active .messages__item {
7104 display: -webkit-box; 7104 display: -webkit-box;
7105 display: -ms-flexbox; 7105 display: -ms-flexbox;
7106 display: flex; 7106 display: flex;
7107 } 7107 }
7108 7108
7109 .responses { 7109 .responses {
7110 display: -webkit-box; 7110 display: -webkit-box;
7111 display: -ms-flexbox; 7111 display: -ms-flexbox;
7112 display: flex; 7112 display: flex;
7113 -webkit-box-orient: vertical; 7113 -webkit-box-orient: vertical;
7114 -webkit-box-direction: reverse; 7114 -webkit-box-direction: reverse;
7115 -ms-flex-direction: column-reverse; 7115 -ms-flex-direction: column-reverse;
7116 flex-direction: column-reverse; 7116 flex-direction: column-reverse;
7117 -webkit-box-align: center; 7117 -webkit-box-align: center;
7118 -ms-flex-align: center; 7118 -ms-flex-align: center;
7119 align-items: center; 7119 align-items: center;
7120 gap: 20px; 7120 gap: 20px;
7121 } 7121 }
7122 .responses__body { 7122 .responses__body {
7123 width: 100%; 7123 width: 100%;
7124 display: -webkit-box; 7124 display: -webkit-box;
7125 display: -ms-flexbox; 7125 display: -ms-flexbox;
7126 display: flex; 7126 display: flex;
7127 -webkit-box-orient: vertical; 7127 -webkit-box-orient: vertical;
7128 -webkit-box-direction: normal; 7128 -webkit-box-direction: normal;
7129 -ms-flex-direction: column; 7129 -ms-flex-direction: column;
7130 flex-direction: column; 7130 flex-direction: column;
7131 gap: 20px; 7131 gap: 20px;
7132 } 7132 }
7133 .responses__item { 7133 .responses__item {
7134 display: none; 7134 display: none;
7135 -webkit-box-orient: vertical; 7135 -webkit-box-orient: vertical;
7136 -webkit-box-direction: normal; 7136 -webkit-box-direction: normal;
7137 -ms-flex-direction: column; 7137 -ms-flex-direction: column;
7138 flex-direction: column; 7138 flex-direction: column;
7139 gap: 20px; 7139 gap: 20px;
7140 border-radius: 8px; 7140 border-radius: 8px;
7141 border: 1px solid #e7e7e7; 7141 border: 1px solid #e7e7e7;
7142 background: linear-gradient(95deg, #f2f5fc 59.82%, #ebf2fc 99.99%); 7142 background: linear-gradient(95deg, #f2f5fc 59.82%, #ebf2fc 99.99%);
7143 padding: 20px 10px; 7143 padding: 20px 10px;
7144 font-size: 12px; 7144 font-size: 12px;
7145 position: relative; 7145 position: relative;
7146 } 7146 }
7147 @media (min-width: 768px) { 7147 @media (min-width: 768px) {
7148 .responses__item { 7148 .responses__item {
7149 padding: 20px; 7149 padding: 20px;
7150 font-size: 16px; 7150 font-size: 16px;
7151 } 7151 }
7152 } 7152 }
7153 .responses__item:nth-of-type(1), .responses__item:nth-of-type(2), .responses__item:nth-of-type(3), .responses__item:nth-of-type(4), .responses__item:nth-of-type(5), .responses__item:nth-of-type(6) { 7153 .responses__item:nth-of-type(1), .responses__item:nth-of-type(2), .responses__item:nth-of-type(3), .responses__item:nth-of-type(4), .responses__item:nth-of-type(5), .responses__item:nth-of-type(6) {
7154 display: -webkit-box; 7154 display: -webkit-box;
7155 display: -ms-flexbox; 7155 display: -ms-flexbox;
7156 display: flex; 7156 display: flex;
7157 } 7157 }
7158 .responses__item-date { 7158 .responses__item-date {
7159 color: #000; 7159 color: #000;
7160 } 7160 }
7161 @media (min-width: 992px) { 7161 @media (min-width: 992px) {
7162 .responses__item-date { 7162 .responses__item-date {
7163 position: absolute; 7163 position: absolute;
7164 top: 20px; 7164 top: 20px;
7165 right: 20px; 7165 right: 20px;
7166 } 7166 }
7167 } 7167 }
7168 .responses__item-wrapper { 7168 .responses__item-wrapper {
7169 display: -webkit-box; 7169 display: -webkit-box;
7170 display: -ms-flexbox; 7170 display: -ms-flexbox;
7171 display: flex; 7171 display: flex;
7172 -webkit-box-orient: vertical; 7172 -webkit-box-orient: vertical;
7173 -webkit-box-direction: normal; 7173 -webkit-box-direction: normal;
7174 -ms-flex-direction: column; 7174 -ms-flex-direction: column;
7175 flex-direction: column; 7175 flex-direction: column;
7176 gap: 20px; 7176 gap: 20px;
7177 } 7177 }
7178 .responses__item-inner { 7178 .responses__item-inner {
7179 display: -webkit-box; 7179 display: -webkit-box;
7180 display: -ms-flexbox; 7180 display: -ms-flexbox;
7181 display: flex; 7181 display: flex;
7182 -webkit-box-orient: vertical; 7182 -webkit-box-orient: vertical;
7183 -webkit-box-direction: normal; 7183 -webkit-box-direction: normal;
7184 -ms-flex-direction: column; 7184 -ms-flex-direction: column;
7185 flex-direction: column; 7185 flex-direction: column;
7186 gap: 10px; 7186 gap: 10px;
7187 } 7187 }
7188 @media (min-width: 768px) { 7188 @media (min-width: 768px) {
7189 .responses__item-inner { 7189 .responses__item-inner {
7190 gap: 20px; 7190 gap: 20px;
7191 } 7191 }
7192 } 7192 }
7193 @media (min-width: 1280px) { 7193 @media (min-width: 1280px) {
7194 .responses__item-inner { 7194 .responses__item-inner {
7195 width: calc(100% - 150px); 7195 width: calc(100% - 150px);
7196 } 7196 }
7197 } 7197 }
7198 .responses__item-row { 7198 .responses__item-row {
7199 display: grid; 7199 display: grid;
7200 grid-template-columns: 1fr 1fr; 7200 grid-template-columns: 1fr 1fr;
7201 gap: 20px; 7201 gap: 20px;
7202 color: #000; 7202 color: #000;
7203 text-align: right; 7203 text-align: right;
7204 } 7204 }
7205 @media (min-width: 992px) { 7205 @media (min-width: 992px) {
7206 .responses__item-row { 7206 .responses__item-row {
7207 display: -webkit-box; 7207 display: -webkit-box;
7208 display: -ms-flexbox; 7208 display: -ms-flexbox;
7209 display: flex; 7209 display: flex;
7210 -webkit-box-orient: vertical; 7210 -webkit-box-orient: vertical;
7211 -webkit-box-direction: normal; 7211 -webkit-box-direction: normal;
7212 -ms-flex-direction: column; 7212 -ms-flex-direction: column;
7213 flex-direction: column; 7213 flex-direction: column;
7214 gap: 6px; 7214 gap: 6px;
7215 text-align: left; 7215 text-align: left;
7216 } 7216 }
7217 } 7217 }
7218 .responses__item-row span { 7218 .responses__item-row span {
7219 color: #000; 7219 color: #000;
7220 text-align: left; 7220 text-align: left;
7221 } 7221 }
7222 .responses__item-buttons { 7222 .responses__item-buttons {
7223 display: -webkit-box; 7223 display: -webkit-box;
7224 display: -ms-flexbox; 7224 display: -ms-flexbox;
7225 display: flex; 7225 display: flex;
7226 -webkit-box-orient: vertical; 7226 -webkit-box-orient: vertical;
7227 -webkit-box-direction: normal; 7227 -webkit-box-direction: normal;
7228 -ms-flex-direction: column; 7228 -ms-flex-direction: column;
7229 flex-direction: column; 7229 flex-direction: column;
7230 gap: 10px; 7230 gap: 10px;
7231 } 7231 }
7232 @media (min-width: 768px) { 7232 @media (min-width: 768px) {
7233 .responses__item-buttons { 7233 .responses__item-buttons {
7234 display: grid; 7234 display: grid;
7235 grid-template-columns: 1fr 1fr; 7235 grid-template-columns: 1fr 1fr;
7236 } 7236 }
7237 } 7237 }
7238 @media (min-width: 1280px) { 7238 @media (min-width: 1280px) {
7239 .responses__item-buttons { 7239 .responses__item-buttons {
7240 grid-template-columns: 1fr 1fr 1fr 1fr; 7240 grid-template-columns: 1fr 1fr 1fr 1fr;
7241 } 7241 }
7242 } 7242 }
7243 .responses__item-buttons .button.active { 7243 .responses__item-buttons .button.active {
7244 background: #377d87; 7244 background: #377d87;
7245 color: #fff; 7245 color: #fff;
7246 } 7246 }
7247 .responses.active .responses__item { 7247 .responses.active .responses__item {
7248 display: -webkit-box; 7248 display: -webkit-box;
7249 display: -ms-flexbox; 7249 display: -ms-flexbox;
7250 display: flex; 7250 display: flex;
7251 } 7251 }
7252 7252
7253 .chatbox { 7253 .chatbox {
7254 display: -webkit-box; 7254 display: -webkit-box;
7255 display: -ms-flexbox; 7255 display: -ms-flexbox;
7256 display: flex; 7256 display: flex;
7257 -webkit-box-orient: vertical; 7257 -webkit-box-orient: vertical;
7258 -webkit-box-direction: normal; 7258 -webkit-box-direction: normal;
7259 -ms-flex-direction: column; 7259 -ms-flex-direction: column;
7260 flex-direction: column; 7260 flex-direction: column;
7261 gap: 20px; 7261 gap: 20px;
7262 } 7262 }
7263 @media (min-width: 768px) { 7263 @media (min-width: 768px) {
7264 .chatbox { 7264 .chatbox {
7265 gap: 30px; 7265 gap: 30px;
7266 } 7266 }
7267 } 7267 }
7268 @media (min-width: 1280px) { 7268 @media (min-width: 1280px) {
7269 .chatbox { 7269 .chatbox {
7270 gap: 40px; 7270 gap: 40px;
7271 } 7271 }
7272 } 7272 }
7273 .chatbox__toper { 7273 .chatbox__toper {
7274 display: -webkit-box; 7274 display: -webkit-box;
7275 display: -ms-flexbox; 7275 display: -ms-flexbox;
7276 display: flex; 7276 display: flex;
7277 -webkit-box-orient: vertical; 7277 -webkit-box-orient: vertical;
7278 -webkit-box-direction: normal; 7278 -webkit-box-direction: normal;
7279 -ms-flex-direction: column; 7279 -ms-flex-direction: column;
7280 flex-direction: column; 7280 flex-direction: column;
7281 gap: 10px; 7281 gap: 10px;
7282 background: linear-gradient(95deg, #f2f5fc 59.82%, #ebf2fc 99.99%); 7282 background: linear-gradient(95deg, #f2f5fc 59.82%, #ebf2fc 99.99%);
7283 border: 1px solid #e7e7e7; 7283 border: 1px solid #e7e7e7;
7284 border-radius: 8px; 7284 border-radius: 8px;
7285 padding: 10px; 7285 padding: 10px;
7286 } 7286 }
7287 @media (min-width: 768px) { 7287 @media (min-width: 768px) {
7288 .chatbox__toper { 7288 .chatbox__toper {
7289 -webkit-box-orient: horizontal; 7289 -webkit-box-orient: horizontal;
7290 -webkit-box-direction: normal; 7290 -webkit-box-direction: normal;
7291 -ms-flex-direction: row; 7291 -ms-flex-direction: row;
7292 flex-direction: row; 7292 flex-direction: row;
7293 -webkit-box-align: center; 7293 -webkit-box-align: center;
7294 -ms-flex-align: center; 7294 -ms-flex-align: center;
7295 align-items: center; 7295 align-items: center;
7296 -webkit-box-pack: justify; 7296 -webkit-box-pack: justify;
7297 -ms-flex-pack: justify; 7297 -ms-flex-pack: justify;
7298 justify-content: space-between; 7298 justify-content: space-between;
7299 } 7299 }
7300 } 7300 }
7301 .chatbox__toper-info { 7301 .chatbox__toper-info {
7302 font-size: 12px; 7302 font-size: 12px;
7303 } 7303 }
7304 @media (min-width: 768px) { 7304 @media (min-width: 768px) {
7305 .chatbox__toper-info { 7305 .chatbox__toper-info {
7306 font-size: 16px; 7306 font-size: 16px;
7307 width: calc(100% - 230px); 7307 width: calc(100% - 230px);
7308 } 7308 }
7309 } 7309 }
7310 @media (min-width: 768px) { 7310 @media (min-width: 768px) {
7311 .chatbox__toper-button { 7311 .chatbox__toper-button {
7312 width: 210px; 7312 width: 210px;
7313 padding: 0; 7313 padding: 0;
7314 } 7314 }
7315 } 7315 }
7316 .chatbox__list { 7316 .chatbox__list {
7317 display: -webkit-box; 7317 display: -webkit-box;
7318 display: -ms-flexbox; 7318 display: -ms-flexbox;
7319 display: flex; 7319 display: flex;
7320 -webkit-box-orient: vertical; 7320 -webkit-box-orient: vertical;
7321 -webkit-box-direction: normal; 7321 -webkit-box-direction: normal;
7322 -ms-flex-direction: column; 7322 -ms-flex-direction: column;
7323 flex-direction: column; 7323 flex-direction: column;
7324 gap: 10px; 7324 gap: 10px;
7325 max-height: 400px; 7325 max-height: 400px;
7326 overflow: auto; 7326 overflow: auto;
7327 } 7327 }
7328 @media (min-width: 768px) { 7328 @media (min-width: 768px) {
7329 .chatbox__list { 7329 .chatbox__list {
7330 gap: 20px; 7330 gap: 20px;
7331 } 7331 }
7332 } 7332 }
7333 @media (min-width: 1280px) { 7333 @media (min-width: 1280px) {
7334 .chatbox__list { 7334 .chatbox__list {
7335 gap: 40px; 7335 gap: 40px;
7336 } 7336 }
7337 } 7337 }
7338 .chatbox__item { 7338 .chatbox__item {
7339 display: -webkit-box; 7339 display: -webkit-box;
7340 display: -ms-flexbox; 7340 display: -ms-flexbox;
7341 display: flex; 7341 display: flex;
7342 -webkit-box-align: start; 7342 -webkit-box-align: start;
7343 -ms-flex-align: start; 7343 -ms-flex-align: start;
7344 align-items: flex-start; 7344 align-items: flex-start;
7345 -webkit-box-pack: justify; 7345 -webkit-box-pack: justify;
7346 -ms-flex-pack: justify; 7346 -ms-flex-pack: justify;
7347 justify-content: space-between; 7347 justify-content: space-between;
7348 -ms-flex-wrap: wrap; 7348 -ms-flex-wrap: wrap;
7349 flex-wrap: wrap; 7349 flex-wrap: wrap;
7350 color: #000; 7350 color: #000;
7351 font-size: 12px; 7351 font-size: 12px;
7352 } 7352 }
7353 @media (min-width: 768px) { 7353 @media (min-width: 768px) {
7354 .chatbox__item { 7354 .chatbox__item {
7355 font-size: 16px; 7355 font-size: 16px;
7356 } 7356 }
7357 } 7357 }
7358 .chatbox__item_reverse { 7358 .chatbox__item_reverse {
7359 -webkit-box-orient: horizontal; 7359 -webkit-box-orient: horizontal;
7360 -webkit-box-direction: reverse; 7360 -webkit-box-direction: reverse;
7361 -ms-flex-direction: row-reverse; 7361 -ms-flex-direction: row-reverse;
7362 flex-direction: row-reverse; 7362 flex-direction: row-reverse;
7363 } 7363 }
7364 .chatbox__item-photo { 7364 .chatbox__item-photo {
7365 position: relative; 7365 position: relative;
7366 aspect-ratio: 1/1; 7366 aspect-ratio: 1/1;
7367 overflow: hidden; 7367 overflow: hidden;
7368 background: #9c9d9d; 7368 background: #9c9d9d;
7369 color: #fff; 7369 color: #fff;
7370 width: 44px; 7370 width: 44px;
7371 border-radius: 6px; 7371 border-radius: 6px;
7372 display: -webkit-box; 7372 display: -webkit-box;
7373 display: -ms-flexbox; 7373 display: -ms-flexbox;
7374 display: flex; 7374 display: flex;
7375 -webkit-box-pack: center; 7375 -webkit-box-pack: center;
7376 -ms-flex-pack: center; 7376 -ms-flex-pack: center;
7377 justify-content: center; 7377 justify-content: center;
7378 -webkit-box-align: center; 7378 -webkit-box-align: center;
7379 -ms-flex-align: center; 7379 -ms-flex-align: center;
7380 align-items: center; 7380 align-items: center;
7381 } 7381 }
7382 .chatbox__item-photo svg { 7382 .chatbox__item-photo svg {
7383 width: 50%; 7383 width: 50%;
7384 position: relative; 7384 position: relative;
7385 z-index: 1; 7385 z-index: 1;
7386 } 7386 }
7387 .chatbox__item-photo img { 7387 .chatbox__item-photo img {
7388 position: absolute; 7388 position: absolute;
7389 z-index: 2; 7389 z-index: 2;
7390 top: 0; 7390 top: 0;
7391 left: 0; 7391 left: 0;
7392 width: 100%; 7392 width: 100%;
7393 height: 100%; 7393 height: 100%;
7394 -o-object-fit: cover; 7394 -o-object-fit: cover;
7395 object-fit: cover; 7395 object-fit: cover;
7396 } 7396 }
7397 .chatbox__item-body { 7397 .chatbox__item-body {
7398 width: calc(100% - 54px); 7398 width: calc(100% - 54px);
7399 display: -webkit-box; 7399 display: -webkit-box;
7400 display: -ms-flexbox; 7400 display: -ms-flexbox;
7401 display: flex; 7401 display: flex;
7402 -webkit-box-orient: vertical; 7402 -webkit-box-orient: vertical;
7403 -webkit-box-direction: normal; 7403 -webkit-box-direction: normal;
7404 -ms-flex-direction: column; 7404 -ms-flex-direction: column;
7405 flex-direction: column; 7405 flex-direction: column;
7406 -webkit-box-align: start; 7406 -webkit-box-align: start;
7407 -ms-flex-align: start; 7407 -ms-flex-align: start;
7408 align-items: flex-start; 7408 align-items: flex-start;
7409 } 7409 }
7410 @media (min-width: 768px) { 7410 @media (min-width: 768px) {
7411 .chatbox__item-body { 7411 .chatbox__item-body {
7412 width: calc(100% - 60px); 7412 width: calc(100% - 60px);
7413 } 7413 }
7414 } 7414 }
7415 .chatbox__item_reverse .chatbox__item-body { 7415 .chatbox__item_reverse .chatbox__item-body {
7416 -webkit-box-align: end; 7416 -webkit-box-align: end;
7417 -ms-flex-align: end; 7417 -ms-flex-align: end;
7418 align-items: flex-end; 7418 align-items: flex-end;
7419 } 7419 }
7420 .chatbox__item-text { 7420 .chatbox__item-text {
7421 border-radius: 8px; 7421 border-radius: 8px;
7422 background: #fff; 7422 background: #fff;
7423 -webkit-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2); 7423 -webkit-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2);
7424 box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2); 7424 box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2);
7425 padding: 10px; 7425 padding: 10px;
7426 line-height: 1.6; 7426 line-height: 1.6;
7427 } 7427 }
7428 .chatbox__item-body-file-name-wrap{ 7428 .chatbox__item-body-file-name-wrap{
7429 display: flex; 7429 display: flex;
7430 align-items: center; 7430 align-items: center;
7431 } 7431 }
7432 .chatbox__item-body-file-name-wrap svg{ 7432 .chatbox__item-body-file-name-wrap svg{
7433 height: 20px; 7433 height: 20px;
7434 width: 20px; 7434 width: 20px;
7435 } 7435 }
7436 .chatbox__item-body-file-name-wrap a{ 7436 .chatbox__item-body-file-name-wrap a{
7437 margin-left: 20px; 7437 margin-left: 20px;
7438 border-radius: 8px; 7438 border-radius: 8px;
7439 padding: 2px 8px; 7439 padding: 2px 8px;
7440 -webkit-box-shadow: inset 0px 0px 14px -7px rgba(66, 68, 90, 1); 7440 -webkit-box-shadow: inset 0px 0px 14px -7px rgba(66, 68, 90, 1);
7441 -moz-box-shadow: inset 0px 0px 14px -7px rgba(66, 68, 90, 1); 7441 -moz-box-shadow: inset 0px 0px 14px -7px rgba(66, 68, 90, 1);
7442 box-shadow: inset 0px 0px 14px -7px rgba(66, 68, 90, 1); 7442 box-shadow: inset 0px 0px 14px -7px rgba(66, 68, 90, 1);
7443 } 7443 }
7444 .chatbox__item_reverse .chatbox__item-body-file-name-wrap a{ 7444 .chatbox__item_reverse .chatbox__item-body-file-name-wrap a{
7445 margin-left: 0px; 7445 margin-left: 0px;
7446 margin-right: 20px; 7446 margin-right: 20px;
7447 } 7447 }
7448 .chatbox__item-body-file-name-wrap a:hover{ 7448 .chatbox__item-body-file-name-wrap a:hover{
7449 box-shadow: 0px 0px 5px 1px rgb(139 136 136); 7449 box-shadow: 0px 0px 5px 1px rgb(139 136 136);
7450 } 7450 }
7451 .chatbox__item-text .admin-chat-answer{ 7451 .chatbox__item-text .admin-chat-answer{
7452 padding: 2px 5px; 7452 padding: 2px 5px;
7453 height: auto; 7453 height: auto;
7454 float: right; 7454 float: right;
7455 margin-left: 10px; 7455 margin-left: 10px;
7456 } 7456 }
7457 .chatbox__item-text .reply-message{ 7457 .chatbox__item-text .reply-message{
7458 border-left: 1px grey solid; 7458 border-left: 1px grey solid;
7459 padding-left: 11px; 7459 padding-left: 11px;
7460 font-size: 12px; 7460 font-size: 12px;
7461 font-style: italic; 7461 font-style: italic;
7462 margin-top: 10px; 7462 margin-top: 10px;
7463 } 7463 }
7464 .chatbox__item-time { 7464 .chatbox__item-time {
7465 width: 100%; 7465 width: 100%;
7466 padding-left: 54px; 7466 padding-left: 54px;
7467 margin-top: 10px; 7467 margin-top: 10px;
7468 color: #9c9d9d; 7468 color: #9c9d9d;
7469 } 7469 }
7470 .chatbox__item_reverse .chatbox__item-time { 7470 .chatbox__item_reverse .chatbox__item-time {
7471 text-align: right; 7471 text-align: right;
7472 } 7472 }
7473 .chatbox__bottom { 7473 .chatbox__bottom {
7474 background: #377d87; 7474 background: #377d87;
7475 padding: 10px; 7475 padding: 10px;
7476 border-radius: 8px; 7476 border-radius: 8px;
7477 display: -webkit-box; 7477 display: -webkit-box;
7478 display: -ms-flexbox; 7478 display: -ms-flexbox;
7479 display: flex; 7479 display: flex;
7480 -webkit-box-align: center; 7480 -webkit-box-align: center;
7481 -ms-flex-align: center; 7481 -ms-flex-align: center;
7482 align-items: center; 7482 align-items: center;
7483 -webkit-box-pack: justify; 7483 -webkit-box-pack: justify;
7484 -ms-flex-pack: justify; 7484 -ms-flex-pack: justify;
7485 justify-content: space-between; 7485 justify-content: space-between;
7486 } 7486 }
7487 @media (min-width: 768px) { 7487 @media (min-width: 768px) {
7488 .chatbox__bottom { 7488 .chatbox__bottom {
7489 padding: 16px 20px; 7489 padding: 16px 20px;
7490 } 7490 }
7491 } 7491 }
7492 .chatbox__bottom-file { 7492 .chatbox__bottom-file {
7493 width: 20px; 7493 width: 20px;
7494 aspect-ratio: 1/1; 7494 aspect-ratio: 1/1;
7495 display: -webkit-box; 7495 display: -webkit-box;
7496 display: -ms-flexbox; 7496 display: -ms-flexbox;
7497 display: flex; 7497 display: flex;
7498 -webkit-box-pack: center; 7498 -webkit-box-pack: center;
7499 -ms-flex-pack: center; 7499 -ms-flex-pack: center;
7500 justify-content: center; 7500 justify-content: center;
7501 -webkit-box-align: center; 7501 -webkit-box-align: center;
7502 -ms-flex-align: center; 7502 -ms-flex-align: center;
7503 align-items: center; 7503 align-items: center;
7504 background: #fff; 7504 background: #fff;
7505 color: #4d88d9; 7505 color: #4d88d9;
7506 border-radius: 8px; 7506 border-radius: 8px;
7507 } 7507 }
7508 @media (min-width: 768px) { 7508 @media (min-width: 768px) {
7509 .chatbox__bottom-file { 7509 .chatbox__bottom-file {
7510 width: 48px; 7510 width: 48px;
7511 } 7511 }
7512 } 7512 }
7513 .chatbox__bottom-file:hover { 7513 .chatbox__bottom-file:hover {
7514 color: #377d87; 7514 color: #377d87;
7515 } 7515 }
7516 .chatbox__bottom-file input { 7516 .chatbox__bottom-file input {
7517 display: none; 7517 display: none;
7518 } 7518 }
7519 .chatbox__bottom-file svg { 7519 .chatbox__bottom-file svg {
7520 width: 50%; 7520 width: 50%;
7521 aspect-ratio: 1/1; 7521 aspect-ratio: 1/1;
7522 stroke-width: 1.5px; 7522 stroke-width: 1.5px;
7523 } 7523 }
7524 .chatbox__bottom-text { 7524 .chatbox__bottom-text {
7525 width: calc(100% - 60px); 7525 width: calc(100% - 60px);
7526 height: 20px; 7526 height: 20px;
7527 border-color: #fff; 7527 border-color: #fff;
7528 } 7528 }
7529 @media (min-width: 768px) { 7529 @media (min-width: 768px) {
7530 .chatbox__bottom-text { 7530 .chatbox__bottom-text {
7531 width: calc(100% - 128px); 7531 width: calc(100% - 128px);
7532 height: 48px; 7532 height: 48px;
7533 } 7533 }
7534 } 7534 }
7535 .chatbox__bottom-text:focus { 7535 .chatbox__bottom-text:focus {
7536 border-color: #fff; 7536 border-color: #fff;
7537 } 7537 }
7538 .chatbox__bottom-send { 7538 .chatbox__bottom-send {
7539 width: 20px; 7539 width: 20px;
7540 aspect-ratio: 1/1; 7540 aspect-ratio: 1/1;
7541 display: -webkit-box; 7541 display: -webkit-box;
7542 display: -ms-flexbox; 7542 display: -ms-flexbox;
7543 display: flex; 7543 display: flex;
7544 -webkit-box-pack: center; 7544 -webkit-box-pack: center;
7545 -ms-flex-pack: center; 7545 -ms-flex-pack: center;
7546 justify-content: center; 7546 justify-content: center;
7547 -webkit-box-align: center; 7547 -webkit-box-align: center;
7548 -ms-flex-align: center; 7548 -ms-flex-align: center;
7549 align-items: center; 7549 align-items: center;
7550 padding: 0; 7550 padding: 0;
7551 background: #fff; 7551 background: #fff;
7552 border: none; 7552 border: none;
7553 color: #4d88d9; 7553 color: #4d88d9;
7554 border-radius: 999px; 7554 border-radius: 999px;
7555 } 7555 }
7556 @media (min-width: 768px) { 7556 @media (min-width: 768px) {
7557 .chatbox__bottom-send { 7557 .chatbox__bottom-send {
7558 width: 48px; 7558 width: 48px;
7559 } 7559 }
7560 } 7560 }
7561 .chatbox__bottom-send:hover { 7561 .chatbox__bottom-send:hover {
7562 color: #377d87; 7562 color: #377d87;
7563 } 7563 }
7564 .chatbox__bottom-send svg { 7564 .chatbox__bottom-send svg {
7565 width: 50%; 7565 width: 50%;
7566 aspect-ratio: 1/1; 7566 aspect-ratio: 1/1;
7567 position: relative; 7567 position: relative;
7568 left: 1px; 7568 left: 1px;
7569 } 7569 }
7570 @media (min-width: 768px) { 7570 @media (min-width: 768px) {
7571 .chatbox__bottom-send svg { 7571 .chatbox__bottom-send svg {
7572 width: 40%; 7572 width: 40%;
7573 left: 2px; 7573 left: 2px;
7574 } 7574 }
7575 } 7575 }
7576 7576
7577 .cvs { 7577 .cvs {
7578 display: -webkit-box; 7578 display: -webkit-box;
7579 display: -ms-flexbox; 7579 display: -ms-flexbox;
7580 display: flex; 7580 display: flex;
7581 -webkit-box-orient: vertical; 7581 -webkit-box-orient: vertical;
7582 -webkit-box-direction: reverse; 7582 -webkit-box-direction: reverse;
7583 -ms-flex-direction: column-reverse; 7583 -ms-flex-direction: column-reverse;
7584 flex-direction: column-reverse; 7584 flex-direction: column-reverse;
7585 -webkit-box-align: center; 7585 -webkit-box-align: center;
7586 -ms-flex-align: center; 7586 -ms-flex-align: center;
7587 align-items: center; 7587 align-items: center;
7588 gap: 20px; 7588 gap: 20px;
7589 } 7589 }
7590 .cvs__body { 7590 .cvs__body {
7591 display: -webkit-box; 7591 display: -webkit-box;
7592 display: -ms-flexbox; 7592 display: -ms-flexbox;
7593 display: flex; 7593 display: flex;
7594 -webkit-box-orient: vertical; 7594 -webkit-box-orient: vertical;
7595 -webkit-box-direction: normal; 7595 -webkit-box-direction: normal;
7596 -ms-flex-direction: column; 7596 -ms-flex-direction: column;
7597 flex-direction: column; 7597 flex-direction: column;
7598 gap: 20px; 7598 gap: 20px;
7599 width: 100%; 7599 width: 100%;
7600 } 7600 }
7601 @media (min-width: 768px) { 7601 @media (min-width: 768px) {
7602 .cvs__body { 7602 .cvs__body {
7603 gap: 30px; 7603 gap: 30px;
7604 } 7604 }
7605 } 7605 }
7606 .cvs__item { 7606 .cvs__item {
7607 display: none; 7607 display: none;
7608 -webkit-box-orient: vertical; 7608 -webkit-box-orient: vertical;
7609 -webkit-box-direction: normal; 7609 -webkit-box-direction: normal;
7610 -ms-flex-direction: column; 7610 -ms-flex-direction: column;
7611 flex-direction: column; 7611 flex-direction: column;
7612 gap: 10px; 7612 gap: 10px;
7613 border-radius: 8px; 7613 border-radius: 8px;
7614 border: 1px solid #e7e7e7; 7614 border: 1px solid #e7e7e7;
7615 background: linear-gradient(95deg, #f2f5fc 59.82%, #ebf2fc 99.99%); 7615 background: linear-gradient(95deg, #f2f5fc 59.82%, #ebf2fc 99.99%);
7616 padding: 10px; 7616 padding: 10px;
7617 font-size: 12px; 7617 font-size: 12px;
7618 position: relative; 7618 position: relative;
7619 } 7619 }
7620 @media (min-width: 768px) { 7620 @media (min-width: 768px) {
7621 .cvs__item { 7621 .cvs__item {
7622 gap: 0; 7622 gap: 0;
7623 padding: 20px; 7623 padding: 20px;
7624 font-size: 16px; 7624 font-size: 16px;
7625 -webkit-box-orient: horizontal; 7625 -webkit-box-orient: horizontal;
7626 -webkit-box-direction: normal; 7626 -webkit-box-direction: normal;
7627 -ms-flex-direction: row; 7627 -ms-flex-direction: row;
7628 flex-direction: row; 7628 flex-direction: row;
7629 -webkit-box-align: start; 7629 -webkit-box-align: start;
7630 -ms-flex-align: start; 7630 -ms-flex-align: start;
7631 align-items: flex-start; 7631 align-items: flex-start;
7632 -ms-flex-wrap: wrap; 7632 -ms-flex-wrap: wrap;
7633 flex-wrap: wrap; 7633 flex-wrap: wrap;
7634 } 7634 }
7635 } 7635 }
7636 .cvs__item:nth-of-type(1), .cvs__item:nth-of-type(2), .cvs__item:nth-of-type(3), .cvs__item:nth-of-type(4), .cvs__item:nth-of-type(5), .cvs__item:nth-of-type(6) { 7636 .cvs__item:nth-of-type(1), .cvs__item:nth-of-type(2), .cvs__item:nth-of-type(3), .cvs__item:nth-of-type(4), .cvs__item:nth-of-type(5), .cvs__item:nth-of-type(6) {
7637 display: -webkit-box; 7637 display: -webkit-box;
7638 display: -ms-flexbox; 7638 display: -ms-flexbox;
7639 display: flex; 7639 display: flex;
7640 } 7640 }
7641 .cvs__item-like { 7641 .cvs__item-like {
7642 width: unset; 7642 width: unset;
7643 padding: 5px 10px; 7643 padding: 5px 10px;
7644 margin-right: 10px; 7644 margin-right: 10px;
7645 } 7645 }
7646 .cvs__item .cvs__item-buttons .chat{ 7646 .cvs__item .cvs__item-buttons .chat{
7647 width: unset; 7647 width: unset;
7648 padding: 5px 10px; 7648 padding: 5px 10px;
7649 margin-right: 10px; 7649 margin-right: 10px;
7650 } 7650 }
7651 .cvs__item-like.active{ 7651 .cvs__item-like.active{
7652 background: #ffffff; 7652 background: #ffffff;
7653 color: #eb5757; 7653 color: #eb5757;
7654 } 7654 }
7655 .cvs__item-like .in-favorites{ 7655 .cvs__item-like .in-favorites{
7656 display: none; 7656 display: none;
7657 } 7657 }
7658 .cvs__item-like.active .in-favorites{ 7658 .cvs__item-like.active .in-favorites{
7659 display: block; 7659 display: block;
7660 color: #eb5757; 7660 color: #eb5757;
7661 } 7661 }
7662 .cvs__item-like.active .to-favorites{ 7662 .cvs__item-like.active .to-favorites{
7663 display: none; 7663 display: none;
7664 } 7664 }
7665 .cvs__item .cvs__item-header{ 7665 .cvs__item .cvs__item-header{
7666 display: flex; 7666 display: flex;
7667 width: 100%; 7667 width: 100%;
7668 justify-content: space-between; 7668 justify-content: space-between;
7669 } 7669 }
7670 .cvs__item-photo { 7670 .cvs__item-photo {
7671 position: relative; 7671 position: relative;
7672 aspect-ratio: 1/1; 7672 aspect-ratio: 1/1;
7673 overflow: hidden; 7673 overflow: hidden;
7674 background: #9c9d9d; 7674 background: #9c9d9d;
7675 color: #fff; 7675 color: #fff;
7676 width: 36px; 7676 width: 36px;
7677 border-radius: 6px; 7677 border-radius: 6px;
7678 display: -webkit-box; 7678 display: -webkit-box;
7679 display: -ms-flexbox; 7679 display: -ms-flexbox;
7680 display: flex; 7680 display: flex;
7681 -webkit-box-pack: center; 7681 -webkit-box-pack: center;
7682 -ms-flex-pack: center; 7682 -ms-flex-pack: center;
7683 justify-content: center; 7683 justify-content: center;
7684 -webkit-box-align: center; 7684 -webkit-box-align: center;
7685 -ms-flex-align: center; 7685 -ms-flex-align: center;
7686 align-items: center; 7686 align-items: center;
7687 } 7687 }
7688 @media (min-width: 768px) { 7688 @media (min-width: 768px) {
7689 .cvs__item-photo { 7689 .cvs__item-photo {
7690 width: 68px; 7690 width: 68px;
7691 } 7691 }
7692 } 7692 }
7693 .cvs__item-photo svg { 7693 .cvs__item-photo svg {
7694 width: 50%; 7694 width: 50%;
7695 position: relative; 7695 position: relative;
7696 z-index: 1; 7696 z-index: 1;
7697 } 7697 }
7698 .cvs__item-photo img { 7698 .cvs__item-photo img {
7699 position: absolute; 7699 position: absolute;
7700 z-index: 2; 7700 z-index: 2;
7701 top: 0; 7701 top: 0;
7702 left: 0; 7702 left: 0;
7703 width: 100%; 7703 width: 100%;
7704 height: 100%; 7704 height: 100%;
7705 -o-object-fit: cover; 7705 -o-object-fit: cover;
7706 object-fit: cover; 7706 object-fit: cover;
7707 } 7707 }
7708 .cvs__item-text { 7708 .cvs__item-text {
7709 display: -webkit-box; 7709 display: -webkit-box;
7710 display: -ms-flexbox; 7710 display: -ms-flexbox;
7711 display: flex; 7711 display: flex;
7712 -webkit-box-orient: vertical; 7712 -webkit-box-orient: vertical;
7713 -webkit-box-direction: normal; 7713 -webkit-box-direction: normal;
7714 -ms-flex-direction: column; 7714 -ms-flex-direction: column;
7715 flex-direction: column; 7715 flex-direction: column;
7716 gap: 10px; 7716 gap: 10px;
7717 width: 100%; 7717 width: 100%;
7718 margin-top: 30px; 7718 margin-top: 30px;
7719 } 7719 }
7720 .cvs__item .cvs__item-buttons{ 7720 .cvs__item .cvs__item-buttons{
7721 display: flex; 7721 display: flex;
7722 align-items: start; 7722 align-items: start;
7723 } 7723 }
7724 .cvs.active .cvs__item { 7724 .cvs.active .cvs__item {
7725 display: -webkit-box; 7725 display: -webkit-box;
7726 display: -ms-flexbox; 7726 display: -ms-flexbox;
7727 display: flex; 7727 display: flex;
7728 } 7728 }
7729 .cvs__item-text .cvs__item-text-row{ 7729 .cvs__item-text .cvs__item-text-row{
7730 display: flex; 7730 display: flex;
7731 justify-content: space-between; 7731 justify-content: space-between;
7732 width: 100%; 7732 width: 100%;
7733 } 7733 }
7734 .cvs__item-text .cvs__item-text-row > div{ 7734 .cvs__item-text .cvs__item-text-row > div{
7735 width: 50%; 7735 width: 50%;
7736 } 7736 }
7737 .cvs__item-text .cvs__item-text-row b{ 7737 .cvs__item-text .cvs__item-text-row b{
7738 color: #377d87; 7738 color: #377d87;
7739 font-size: 18px; 7739 font-size: 18px;
7740 } 7740 }
7741 .cvs__item-text .cvs__item-text-status { 7741 .cvs__item-text .cvs__item-text-status {
7742 width: fit-content; 7742 width: fit-content;
7743 background-color: #e6e6e6; 7743 background-color: #e6e6e6;
7744 font-weight: bold; 7744 font-weight: bold;
7745 padding: 5px 10px; 7745 padding: 5px 10px;
7746 border-radius: 8px; 7746 border-radius: 8px;
7747 margin-right: 30px; 7747 margin-right: 30px;
7748 } 7748 }
7749 .cvs__item-text .cvs__item-text-status.looking-for-job { 7749 .cvs__item-text .cvs__item-text-status.looking-for-job {
7750 background-color: #eb5757; 7750 background-color: #eb5757;
7751 color: #fff; 7751 color: #fff;
7752 } 7752 }
7753 .cvs__item-text .cvs__item-text-updated-at{ 7753 .cvs__item-text .cvs__item-text-updated-at{
7754 padding: 5px 10px; 7754 padding: 5px 10px;
7755 border-radius: 8px; 7755 border-radius: 8px;
7756 border: 1px #e6e6e6 solid; 7756 border: 1px #e6e6e6 solid;
7757 } 7757 }
7758 .worker-status { 7758 .worker-status {
7759 flex-direction: column; 7759 flex-direction: column;
7760 row-gap: 6px; 7760 row-gap: 6px;
7761 } 7761 }
7762 7762
7763 .worker-status .cvs__item-text-updated-at { 7763 .worker-status .cvs__item-text-updated-at {
7764 width: fit-content; 7764 width: fit-content;
7765 } 7765 }
7766 @media (min-width: 768px) { 7766 @media (min-width: 768px) {
7767 .worker-status { 7767 .worker-status {
7768 flex-direction: row; 7768 flex-direction: row;
7769 } 7769 }
7770 7770
7771 .worker-status .cvs__item-text-updated-at { 7771 .worker-status .cvs__item-text-updated-at {
7772 width: auto; 7772 width: auto;
7773 } 7773 }
7774 } 7774 }
7775 .faqs { 7775 .faqs {
7776 display: -webkit-box; 7776 display: -webkit-box;
7777 display: -ms-flexbox; 7777 display: -ms-flexbox;
7778 display: flex; 7778 display: flex;
7779 -webkit-box-orient: vertical; 7779 -webkit-box-orient: vertical;
7780 -webkit-box-direction: reverse; 7780 -webkit-box-direction: reverse;
7781 -ms-flex-direction: column-reverse; 7781 -ms-flex-direction: column-reverse;
7782 flex-direction: column-reverse; 7782 flex-direction: column-reverse;
7783 -webkit-box-align: center; 7783 -webkit-box-align: center;
7784 -ms-flex-align: center; 7784 -ms-flex-align: center;
7785 align-items: center; 7785 align-items: center;
7786 gap: 20px; 7786 gap: 20px;
7787 } 7787 }
7788 .faqs__body { 7788 .faqs__body {
7789 display: -webkit-box; 7789 display: -webkit-box;
7790 display: -ms-flexbox; 7790 display: -ms-flexbox;
7791 display: flex; 7791 display: flex;
7792 -webkit-box-orient: vertical; 7792 -webkit-box-orient: vertical;
7793 -webkit-box-direction: normal; 7793 -webkit-box-direction: normal;
7794 -ms-flex-direction: column; 7794 -ms-flex-direction: column;
7795 flex-direction: column; 7795 flex-direction: column;
7796 gap: 20px; 7796 gap: 20px;
7797 width: 100%; 7797 width: 100%;
7798 } 7798 }
7799 .faqs__item { 7799 .faqs__item {
7800 display: none; 7800 display: none;
7801 -webkit-box-orient: vertical; 7801 -webkit-box-orient: vertical;
7802 -webkit-box-direction: normal; 7802 -webkit-box-direction: normal;
7803 -ms-flex-direction: column; 7803 -ms-flex-direction: column;
7804 flex-direction: column; 7804 flex-direction: column;
7805 border-radius: 8px; 7805 border-radius: 8px;
7806 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2); 7806 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
7807 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2); 7807 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
7808 background: #fff; 7808 background: #fff;
7809 padding: 10px; 7809 padding: 10px;
7810 font-size: 12px; 7810 font-size: 12px;
7811 } 7811 }
7812 @media (min-width: 768px) { 7812 @media (min-width: 768px) {
7813 .faqs__item { 7813 .faqs__item {
7814 padding: 20px; 7814 padding: 20px;
7815 font-size: 16px; 7815 font-size: 16px;
7816 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2); 7816 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
7817 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2); 7817 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
7818 } 7818 }
7819 } 7819 }
7820 .faqs__item:nth-of-type(1), .faqs__item:nth-of-type(2), .faqs__item:nth-of-type(3), .faqs__item:nth-of-type(4), .faqs__item:nth-of-type(5), .faqs__item:nth-of-type(6) { 7820 .faqs__item:nth-of-type(1), .faqs__item:nth-of-type(2), .faqs__item:nth-of-type(3), .faqs__item:nth-of-type(4), .faqs__item:nth-of-type(5), .faqs__item:nth-of-type(6) {
7821 display: -webkit-box; 7821 display: -webkit-box;
7822 display: -ms-flexbox; 7822 display: -ms-flexbox;
7823 display: flex; 7823 display: flex;
7824 } 7824 }
7825 .faqs__item-button { 7825 .faqs__item-button {
7826 background: none; 7826 background: none;
7827 padding: 0; 7827 padding: 0;
7828 border: none; 7828 border: none;
7829 display: -webkit-box; 7829 display: -webkit-box;
7830 display: -ms-flexbox; 7830 display: -ms-flexbox;
7831 display: flex; 7831 display: flex;
7832 -webkit-box-align: center; 7832 -webkit-box-align: center;
7833 -ms-flex-align: center; 7833 -ms-flex-align: center;
7834 align-items: center; 7834 align-items: center;
7835 color: #000; 7835 color: #000;
7836 text-align: left; 7836 text-align: left;
7837 font-size: 14px; 7837 font-size: 14px;
7838 font-weight: 700; 7838 font-weight: 700;
7839 } 7839 }
7840 @media (min-width: 768px) { 7840 @media (min-width: 768px) {
7841 .faqs__item-button { 7841 .faqs__item-button {
7842 font-size: 20px; 7842 font-size: 20px;
7843 } 7843 }
7844 } 7844 }
7845 .faqs__item-button span { 7845 .faqs__item-button span {
7846 width: calc(100% - 16px); 7846 width: calc(100% - 16px);
7847 padding-right: 16px; 7847 padding-right: 16px;
7848 } 7848 }
7849 .faqs__item-button i { 7849 .faqs__item-button i {
7850 display: -webkit-box; 7850 display: -webkit-box;
7851 display: -ms-flexbox; 7851 display: -ms-flexbox;
7852 display: flex; 7852 display: flex;
7853 -webkit-box-pack: center; 7853 -webkit-box-pack: center;
7854 -ms-flex-pack: center; 7854 -ms-flex-pack: center;
7855 justify-content: center; 7855 justify-content: center;
7856 -webkit-box-align: center; 7856 -webkit-box-align: center;
7857 -ms-flex-align: center; 7857 -ms-flex-align: center;
7858 align-items: center; 7858 align-items: center;
7859 width: 16px; 7859 width: 16px;
7860 aspect-ratio: 1/1; 7860 aspect-ratio: 1/1;
7861 color: #377d87; 7861 color: #377d87;
7862 -webkit-transition: 0.3s; 7862 -webkit-transition: 0.3s;
7863 transition: 0.3s; 7863 transition: 0.3s;
7864 } 7864 }
7865 .faqs__item-button i svg { 7865 .faqs__item-button i svg {
7866 width: 16px; 7866 width: 16px;
7867 aspect-ratio: 1/1; 7867 aspect-ratio: 1/1;
7868 -webkit-transform: rotate(90deg); 7868 -webkit-transform: rotate(90deg);
7869 -ms-transform: rotate(90deg); 7869 -ms-transform: rotate(90deg);
7870 transform: rotate(90deg); 7870 transform: rotate(90deg);
7871 } 7871 }
7872 .faqs__item-button.active i { 7872 .faqs__item-button.active i {
7873 -webkit-transform: rotate(180deg); 7873 -webkit-transform: rotate(180deg);
7874 -ms-transform: rotate(180deg); 7874 -ms-transform: rotate(180deg);
7875 transform: rotate(180deg); 7875 transform: rotate(180deg);
7876 } 7876 }
7877 .faqs__item-body { 7877 .faqs__item-body {
7878 display: -webkit-box; 7878 display: -webkit-box;
7879 display: -ms-flexbox; 7879 display: -ms-flexbox;
7880 display: flex; 7880 display: flex;
7881 -webkit-box-orient: vertical; 7881 -webkit-box-orient: vertical;
7882 -webkit-box-direction: normal; 7882 -webkit-box-direction: normal;
7883 -ms-flex-direction: column; 7883 -ms-flex-direction: column;
7884 flex-direction: column; 7884 flex-direction: column;
7885 gap: 10px; 7885 gap: 10px;
7886 opacity: 0; 7886 opacity: 0;
7887 height: 0; 7887 height: 0;
7888 overflow: hidden; 7888 overflow: hidden;
7889 font-size: 12px; 7889 font-size: 12px;
7890 line-height: 1.4; 7890 line-height: 1.4;
7891 } 7891 }
7892 @media (min-width: 768px) { 7892 @media (min-width: 768px) {
7893 .faqs__item-body { 7893 .faqs__item-body {
7894 font-size: 16px; 7894 font-size: 16px;
7895 gap: 20px; 7895 gap: 20px;
7896 } 7896 }
7897 } 7897 }
7898 .faqs__item-body p { 7898 .faqs__item-body p {
7899 margin: 0; 7899 margin: 0;
7900 } 7900 }
7901 .faqs__item-body a { 7901 .faqs__item-body a {
7902 color: #0f74a8; 7902 color: #0f74a8;
7903 } 7903 }
7904 .active + .faqs__item-body { 7904 .active + .faqs__item-body {
7905 opacity: 1; 7905 opacity: 1;
7906 height: auto; 7906 height: auto;
7907 -webkit-transition: 0.3s; 7907 -webkit-transition: 0.3s;
7908 transition: 0.3s; 7908 transition: 0.3s;
7909 padding-top: 10px; 7909 padding-top: 10px;
7910 } 7910 }
7911 @media (min-width: 768px) { 7911 @media (min-width: 768px) {
7912 .active + .faqs__item-body { 7912 .active + .faqs__item-body {
7913 padding-top: 20px; 7913 padding-top: 20px;
7914 } 7914 }
7915 } 7915 }
7916 .faqs.active .faqs__item { 7916 .faqs.active .faqs__item {
7917 display: -webkit-box; 7917 display: -webkit-box;
7918 display: -ms-flexbox; 7918 display: -ms-flexbox;
7919 display: flex; 7919 display: flex;
7920 } 7920 }
7921 7921
7922 .cabinet { 7922 .cabinet {
7923 padding: 20px 0; 7923 padding: 20px 0;
7924 padding-bottom: 40px; 7924 padding-bottom: 40px;
7925 background: linear-gradient(95deg, #f2f5fc 59.82%, #ebf2fc 99.99%); 7925 background: linear-gradient(95deg, #f2f5fc 59.82%, #ebf2fc 99.99%);
7926 } 7926 }
7927 @media (min-width: 992px) { 7927 @media (min-width: 992px) {
7928 .cabinet { 7928 .cabinet {
7929 padding: 30px 0; 7929 padding: 30px 0;
7930 padding-bottom: 60px; 7930 padding-bottom: 60px;
7931 } 7931 }
7932 } 7932 }
7933 .cabinet__breadcrumbs { 7933 .cabinet__breadcrumbs {
7934 margin-bottom: 50px; 7934 margin-bottom: 50px;
7935 } 7935 }
7936 .cabinet__wrapper { 7936 .cabinet__wrapper {
7937 display: -webkit-box; 7937 display: -webkit-box;
7938 display: -ms-flexbox; 7938 display: -ms-flexbox;
7939 display: flex; 7939 display: flex;
7940 -webkit-box-orient: vertical; 7940 -webkit-box-orient: vertical;
7941 -webkit-box-direction: normal; 7941 -webkit-box-direction: normal;
7942 -ms-flex-direction: column; 7942 -ms-flex-direction: column;
7943 flex-direction: column; 7943 flex-direction: column;
7944 } 7944 }
7945 @media (min-width: 992px) { 7945 @media (min-width: 992px) {
7946 .cabinet__wrapper { 7946 .cabinet__wrapper {
7947 -webkit-box-orient: horizontal; 7947 -webkit-box-orient: horizontal;
7948 -webkit-box-direction: normal; 7948 -webkit-box-direction: normal;
7949 -ms-flex-direction: row; 7949 -ms-flex-direction: row;
7950 flex-direction: row; 7950 flex-direction: row;
7951 -webkit-box-align: start; 7951 -webkit-box-align: start;
7952 -ms-flex-align: start; 7952 -ms-flex-align: start;
7953 align-items: flex-start; 7953 align-items: flex-start;
7954 -webkit-box-pack: justify; 7954 -webkit-box-pack: justify;
7955 -ms-flex-pack: justify; 7955 -ms-flex-pack: justify;
7956 justify-content: space-between; 7956 justify-content: space-between;
7957 } 7957 }
7958 } 7958 }
7959 .cabinet__side { 7959 .cabinet__side {
7960 border-radius: 8px; 7960 border-radius: 8px;
7961 background: #fff; 7961 background: #fff;
7962 padding: 20px 10px; 7962 padding: 20px 10px;
7963 display: -webkit-box; 7963 display: -webkit-box;
7964 display: -ms-flexbox; 7964 display: -ms-flexbox;
7965 display: flex; 7965 display: flex;
7966 -webkit-box-orient: vertical; 7966 -webkit-box-orient: vertical;
7967 -webkit-box-direction: normal; 7967 -webkit-box-direction: normal;
7968 -ms-flex-direction: column; 7968 -ms-flex-direction: column;
7969 flex-direction: column; 7969 flex-direction: column;
7970 gap: 30px; 7970 gap: 30px;
7971 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2); 7971 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
7972 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2); 7972 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
7973 } 7973 }
7974 @media (min-width: 768px) { 7974 @media (min-width: 768px) {
7975 .cabinet__side { 7975 .cabinet__side {
7976 padding: 30px 20px; 7976 padding: 30px 20px;
7977 margin-bottom: 50px; 7977 margin-bottom: 50px;
7978 } 7978 }
7979 } 7979 }
7980 @media (min-width: 992px) { 7980 @media (min-width: 992px) {
7981 .cabinet__side { 7981 .cabinet__side {
7982 width: 340px; 7982 width: 340px;
7983 margin: 0; 7983 margin: 0;
7984 position: sticky; 7984 position: sticky;
7985 top: 6px; 7985 top: 6px;
7986 } 7986 }
7987 } 7987 }
7988 @media (min-width: 1280px) { 7988 @media (min-width: 1280px) {
7989 .cabinet__side { 7989 .cabinet__side {
7990 width: 400px; 7990 width: 400px;
7991 } 7991 }
7992 } 7992 }
7993 .cabinet__side-item { 7993 .cabinet__side-item {
7994 display: -webkit-box; 7994 display: -webkit-box;
7995 display: -ms-flexbox; 7995 display: -ms-flexbox;
7996 display: flex; 7996 display: flex;
7997 -webkit-box-orient: vertical; 7997 -webkit-box-orient: vertical;
7998 -webkit-box-direction: normal; 7998 -webkit-box-direction: normal;
7999 -ms-flex-direction: column; 7999 -ms-flex-direction: column;
8000 flex-direction: column; 8000 flex-direction: column;
8001 gap: 20px; 8001 gap: 20px;
8002 } 8002 }
8003 .cabinet__side-toper { 8003 .cabinet__side-toper {
8004 display: -webkit-box; 8004 display: -webkit-box;
8005 display: -ms-flexbox; 8005 display: -ms-flexbox;
8006 display: flex; 8006 display: flex;
8007 -webkit-box-align: center; 8007 -webkit-box-align: center;
8008 -ms-flex-align: center; 8008 -ms-flex-align: center;
8009 align-items: center; 8009 align-items: center;
8010 } 8010 }
8011 .cabinet__side-toper-pic { 8011 .cabinet__side-toper-pic {
8012 width: 70px; 8012 width: 70px;
8013 aspect-ratio: 1/1; 8013 aspect-ratio: 1/1;
8014 overflow: hidden; 8014 overflow: hidden;
8015 border-radius: 8px; 8015 border-radius: 8px;
8016 color: #fff; 8016 color: #fff;
8017 background: #9c9d9d; 8017 background: #9c9d9d;
8018 display: -webkit-box; 8018 display: -webkit-box;
8019 display: -ms-flexbox; 8019 display: -ms-flexbox;
8020 display: flex; 8020 display: flex;
8021 -webkit-box-align: center; 8021 -webkit-box-align: center;
8022 -ms-flex-align: center; 8022 -ms-flex-align: center;
8023 align-items: center; 8023 align-items: center;
8024 -webkit-box-pack: center; 8024 -webkit-box-pack: center;
8025 -ms-flex-pack: center; 8025 -ms-flex-pack: center;
8026 justify-content: center; 8026 justify-content: center;
8027 position: relative; 8027 position: relative;
8028 } 8028 }
8029 .cabinet__side-toper-pic img { 8029 .cabinet__side-toper-pic img {
8030 width: 100%; 8030 width: 100%;
8031 height: 100%; 8031 height: 100%;
8032 -o-object-fit: cover; 8032 -o-object-fit: cover;
8033 object-fit: cover; 8033 object-fit: cover;
8034 position: absolute; 8034 position: absolute;
8035 z-index: 2; 8035 z-index: 2;
8036 top: 0; 8036 top: 0;
8037 left: 0; 8037 left: 0;
8038 aspect-ratio: 1/1; 8038 aspect-ratio: 1/1;
8039 -o-object-fit: contain; 8039 -o-object-fit: contain;
8040 object-fit: contain; 8040 object-fit: contain;
8041 } 8041 }
8042 .cabinet__side-toper-pic svg { 8042 .cabinet__side-toper-pic svg {
8043 width: 50%; 8043 width: 50%;
8044 aspect-ratio: 1/1; 8044 aspect-ratio: 1/1;
8045 } 8045 }
8046 .cabinet__side-toper b { 8046 .cabinet__side-toper b {
8047 width: calc(100% - 70px); 8047 width: calc(100% - 70px);
8048 font-size: 14px; 8048 font-size: 14px;
8049 font-weight: 700; 8049 font-weight: 700;
8050 padding-left: 16px; 8050 padding-left: 16px;
8051 } 8051 }
8052 @media (min-width: 768px) { 8052 @media (min-width: 768px) {
8053 .cabinet__side-toper b { 8053 .cabinet__side-toper b {
8054 font-size: 20px; 8054 font-size: 20px;
8055 } 8055 }
8056 } 8056 }
8057 .cabinet__menu { 8057 .cabinet__menu {
8058 display: -webkit-box; 8058 display: -webkit-box;
8059 display: -ms-flexbox; 8059 display: -ms-flexbox;
8060 display: flex; 8060 display: flex;
8061 -webkit-box-orient: vertical; 8061 -webkit-box-orient: vertical;
8062 -webkit-box-direction: normal; 8062 -webkit-box-direction: normal;
8063 -ms-flex-direction: column; 8063 -ms-flex-direction: column;
8064 flex-direction: column; 8064 flex-direction: column;
8065 } 8065 }
8066 .cabinet__menu-toper { 8066 .cabinet__menu-toper {
8067 display: -webkit-box; 8067 display: -webkit-box;
8068 display: -ms-flexbox; 8068 display: -ms-flexbox;
8069 display: flex; 8069 display: flex;
8070 -webkit-box-align: center; 8070 -webkit-box-align: center;
8071 -ms-flex-align: center; 8071 -ms-flex-align: center;
8072 align-items: center; 8072 align-items: center;
8073 -webkit-box-pack: justify; 8073 -webkit-box-pack: justify;
8074 -ms-flex-pack: justify; 8074 -ms-flex-pack: justify;
8075 justify-content: space-between; 8075 justify-content: space-between;
8076 padding: 0 16px; 8076 padding: 0 16px;
8077 padding-right: 12px; 8077 padding-right: 12px;
8078 border: none; 8078 border: none;
8079 border-radius: 8px; 8079 border-radius: 8px;
8080 background: #377d87; 8080 background: #377d87;
8081 color: #fff; 8081 color: #fff;
8082 } 8082 }
8083 @media (min-width: 768px) { 8083 @media (min-width: 768px) {
8084 .cabinet__menu-toper { 8084 .cabinet__menu-toper {
8085 padding: 0 20px; 8085 padding: 0 20px;
8086 } 8086 }
8087 } 8087 }
8088 @media (min-width: 992px) { 8088 @media (min-width: 992px) {
8089 .cabinet__menu-toper { 8089 .cabinet__menu-toper {
8090 display: none; 8090 display: none;
8091 } 8091 }
8092 } 8092 }
8093 .cabinet__menu-toper-text { 8093 .cabinet__menu-toper-text {
8094 width: calc(100% - 16px); 8094 width: calc(100% - 16px);
8095 display: -webkit-box; 8095 display: -webkit-box;
8096 display: -ms-flexbox; 8096 display: -ms-flexbox;
8097 display: flex; 8097 display: flex;
8098 -webkit-box-align: center; 8098 -webkit-box-align: center;
8099 -ms-flex-align: center; 8099 -ms-flex-align: center;
8100 align-items: center; 8100 align-items: center;
8101 } 8101 }
8102 @media (min-width: 768px) { 8102 @media (min-width: 768px) {
8103 .cabinet__menu-toper-text { 8103 .cabinet__menu-toper-text {
8104 width: calc(100% - 20px); 8104 width: calc(100% - 20px);
8105 } 8105 }
8106 } 8106 }
8107 .cabinet__menu-toper-text i { 8107 .cabinet__menu-toper-text i {
8108 width: 16px; 8108 width: 16px;
8109 height: 16px; 8109 height: 16px;
8110 display: -webkit-box; 8110 display: -webkit-box;
8111 display: -ms-flexbox; 8111 display: -ms-flexbox;
8112 display: flex; 8112 display: flex;
8113 -webkit-box-align: center; 8113 -webkit-box-align: center;
8114 -ms-flex-align: center; 8114 -ms-flex-align: center;
8115 align-items: center; 8115 align-items: center;
8116 -webkit-box-pack: center; 8116 -webkit-box-pack: center;
8117 -ms-flex-pack: center; 8117 -ms-flex-pack: center;
8118 justify-content: center; 8118 justify-content: center;
8119 } 8119 }
8120 @media (min-width: 768px) { 8120 @media (min-width: 768px) {
8121 .cabinet__menu-toper-text i { 8121 .cabinet__menu-toper-text i {
8122 width: 22px; 8122 width: 22px;
8123 height: 22px; 8123 height: 22px;
8124 } 8124 }
8125 } 8125 }
8126 .cabinet__menu-toper-text svg { 8126 .cabinet__menu-toper-text svg {
8127 width: 16px; 8127 width: 16px;
8128 height: 16px; 8128 height: 16px;
8129 } 8129 }
8130 @media (min-width: 768px) { 8130 @media (min-width: 768px) {
8131 .cabinet__menu-toper-text svg { 8131 .cabinet__menu-toper-text svg {
8132 width: 22px; 8132 width: 22px;
8133 height: 22px; 8133 height: 22px;
8134 } 8134 }
8135 } 8135 }
8136 .cabinet__menu-toper-text span { 8136 .cabinet__menu-toper-text span {
8137 display: -webkit-box; 8137 display: -webkit-box;
8138 display: -ms-flexbox; 8138 display: -ms-flexbox;
8139 display: flex; 8139 display: flex;
8140 -webkit-box-align: center; 8140 -webkit-box-align: center;
8141 -ms-flex-align: center; 8141 -ms-flex-align: center;
8142 align-items: center; 8142 align-items: center;
8143 padding: 0 10px; 8143 padding: 0 10px;
8144 min-height: 30px; 8144 min-height: 30px;
8145 font-size: 12px; 8145 font-size: 12px;
8146 width: calc(100% - 16px); 8146 width: calc(100% - 16px);
8147 } 8147 }
8148 @media (min-width: 768px) { 8148 @media (min-width: 768px) {
8149 .cabinet__menu-toper-text span { 8149 .cabinet__menu-toper-text span {
8150 width: calc(100% - 22px); 8150 width: calc(100% - 22px);
8151 font-size: 20px; 8151 font-size: 20px;
8152 min-height: 52px; 8152 min-height: 52px;
8153 padding: 0 16px; 8153 padding: 0 16px;
8154 } 8154 }
8155 } 8155 }
8156 .cabinet__menu-toper-arrow { 8156 .cabinet__menu-toper-arrow {
8157 width: 16px; 8157 width: 16px;
8158 height: 16px; 8158 height: 16px;
8159 display: -webkit-box; 8159 display: -webkit-box;
8160 display: -ms-flexbox; 8160 display: -ms-flexbox;
8161 display: flex; 8161 display: flex;
8162 -webkit-box-pack: center; 8162 -webkit-box-pack: center;
8163 -ms-flex-pack: center; 8163 -ms-flex-pack: center;
8164 justify-content: center; 8164 justify-content: center;
8165 -webkit-box-align: center; 8165 -webkit-box-align: center;
8166 -ms-flex-align: center; 8166 -ms-flex-align: center;
8167 align-items: center; 8167 align-items: center;
8168 -webkit-transition: 0.3s; 8168 -webkit-transition: 0.3s;
8169 transition: 0.3s; 8169 transition: 0.3s;
8170 } 8170 }
8171 @media (min-width: 768px) { 8171 @media (min-width: 768px) {
8172 .cabinet__menu-toper-arrow { 8172 .cabinet__menu-toper-arrow {
8173 width: 20px; 8173 width: 20px;
8174 height: 20px; 8174 height: 20px;
8175 } 8175 }
8176 } 8176 }
8177 .cabinet__menu-toper-arrow svg { 8177 .cabinet__menu-toper-arrow svg {
8178 width: 12px; 8178 width: 12px;
8179 height: 12px; 8179 height: 12px;
8180 -webkit-transform: rotate(90deg); 8180 -webkit-transform: rotate(90deg);
8181 -ms-transform: rotate(90deg); 8181 -ms-transform: rotate(90deg);
8182 transform: rotate(90deg); 8182 transform: rotate(90deg);
8183 } 8183 }
8184 @media (min-width: 768px) { 8184 @media (min-width: 768px) {
8185 .cabinet__menu-toper-arrow svg { 8185 .cabinet__menu-toper-arrow svg {
8186 width: 20px; 8186 width: 20px;
8187 height: 20px; 8187 height: 20px;
8188 } 8188 }
8189 } 8189 }
8190 .cabinet__menu-toper.active .cabinet__menu-toper-arrow { 8190 .cabinet__menu-toper.active .cabinet__menu-toper-arrow {
8191 -webkit-transform: rotate(180deg); 8191 -webkit-transform: rotate(180deg);
8192 -ms-transform: rotate(180deg); 8192 -ms-transform: rotate(180deg);
8193 transform: rotate(180deg); 8193 transform: rotate(180deg);
8194 } 8194 }
8195 .cabinet__menu-body { 8195 .cabinet__menu-body {
8196 opacity: 0; 8196 opacity: 0;
8197 height: 0; 8197 height: 0;
8198 overflow: hidden; 8198 overflow: hidden;
8199 display: -webkit-box; 8199 display: -webkit-box;
8200 display: -ms-flexbox; 8200 display: -ms-flexbox;
8201 display: flex; 8201 display: flex;
8202 -webkit-box-orient: vertical; 8202 -webkit-box-orient: vertical;
8203 -webkit-box-direction: normal; 8203 -webkit-box-direction: normal;
8204 -ms-flex-direction: column; 8204 -ms-flex-direction: column;
8205 flex-direction: column; 8205 flex-direction: column;
8206 } 8206 }
8207 @media (min-width: 992px) { 8207 @media (min-width: 992px) {
8208 .cabinet__menu-body { 8208 .cabinet__menu-body {
8209 opacity: 1; 8209 opacity: 1;
8210 height: auto; 8210 height: auto;
8211 } 8211 }
8212 } 8212 }
8213 .active + .cabinet__menu-body { 8213 .active + .cabinet__menu-body {
8214 opacity: 1; 8214 opacity: 1;
8215 height: auto; 8215 height: auto;
8216 -webkit-transition: 0.3s; 8216 -webkit-transition: 0.3s;
8217 transition: 0.3s; 8217 transition: 0.3s;
8218 } 8218 }
8219 .cabinet__menu-items { 8219 .cabinet__menu-items {
8220 display: -webkit-box; 8220 display: -webkit-box;
8221 display: -ms-flexbox; 8221 display: -ms-flexbox;
8222 display: flex; 8222 display: flex;
8223 -webkit-box-orient: vertical; 8223 -webkit-box-orient: vertical;
8224 -webkit-box-direction: normal; 8224 -webkit-box-direction: normal;
8225 -ms-flex-direction: column; 8225 -ms-flex-direction: column;
8226 flex-direction: column; 8226 flex-direction: column;
8227 } 8227 }
8228 .cabinet__menu-item { 8228 .cabinet__menu-item {
8229 padding: 8px 16px; 8229 padding: 8px 16px;
8230 border-radius: 8px; 8230 border-radius: 8px;
8231 display: -webkit-box; 8231 display: -webkit-box;
8232 display: -ms-flexbox; 8232 display: -ms-flexbox;
8233 display: flex; 8233 display: flex;
8234 -webkit-box-align: center; 8234 -webkit-box-align: center;
8235 -ms-flex-align: center; 8235 -ms-flex-align: center;
8236 align-items: center; 8236 align-items: center;
8237 } 8237 }
8238 @media (min-width: 768px) { 8238 @media (min-width: 768px) {
8239 .cabinet__menu-item { 8239 .cabinet__menu-item {
8240 padding: 14px 20px; 8240 padding: 14px 20px;
8241 } 8241 }
8242 } 8242 }
8243 .cabinet__menu-item:hover { 8243 .cabinet__menu-item:hover {
8244 color: #377d87; 8244 color: #377d87;
8245 } 8245 }
8246 @media (min-width: 992px) { 8246 @media (min-width: 992px) {
8247 .cabinet__menu-item.active { 8247 .cabinet__menu-item.active {
8248 background: #377d87; 8248 background: #377d87;
8249 color: #fff; 8249 color: #fff;
8250 } 8250 }
8251 } 8251 }
8252 @media (min-width: 992px) { 8252 @media (min-width: 992px) {
8253 .cabinet__menu-item.active svg { 8253 .cabinet__menu-item.active svg {
8254 color: #fff; 8254 color: #fff;
8255 } 8255 }
8256 } 8256 }
8257 @media (min-width: 992px) { 8257 @media (min-width: 992px) {
8258 .cabinet__menu-item.active.red { 8258 .cabinet__menu-item.active.red {
8259 background: #eb5757; 8259 background: #eb5757;
8260 } 8260 }
8261 } 8261 }
8262 .cabinet__menu-item i { 8262 .cabinet__menu-item i {
8263 width: 16px; 8263 width: 16px;
8264 height: 16px; 8264 height: 16px;
8265 color: #377d87; 8265 color: #377d87;
8266 } 8266 }
8267 @media (min-width: 768px) { 8267 @media (min-width: 768px) {
8268 .cabinet__menu-item i { 8268 .cabinet__menu-item i {
8269 width: 22px; 8269 width: 22px;
8270 height: 22px; 8270 height: 22px;
8271 } 8271 }
8272 } 8272 }
8273 .cabinet__menu-item svg { 8273 .cabinet__menu-item svg {
8274 width: 16px; 8274 width: 16px;
8275 height: 16px; 8275 height: 16px;
8276 } 8276 }
8277 @media (min-width: 768px) { 8277 @media (min-width: 768px) {
8278 .cabinet__menu-item svg { 8278 .cabinet__menu-item svg {
8279 width: 22px; 8279 width: 22px;
8280 height: 22px; 8280 height: 22px;
8281 } 8281 }
8282 } 8282 }
8283 .cabinet__menu-item span { 8283 .cabinet__menu-item span {
8284 width: calc(100% - 16px); 8284 width: calc(100% - 16px);
8285 font-size: 12px; 8285 font-size: 12px;
8286 padding-left: 10px; 8286 padding-left: 10px;
8287 } 8287 }
8288 @media (min-width: 768px) { 8288 @media (min-width: 768px) {
8289 .cabinet__menu-item span { 8289 .cabinet__menu-item span {
8290 font-size: 20px; 8290 font-size: 20px;
8291 width: calc(100% - 22px); 8291 width: calc(100% - 22px);
8292 padding-left: 16px; 8292 padding-left: 16px;
8293 } 8293 }
8294 } 8294 }
8295 .cabinet__menu-bottom { 8295 .cabinet__menu-bottom {
8296 display: -webkit-box; 8296 display: -webkit-box;
8297 display: -ms-flexbox; 8297 display: -ms-flexbox;
8298 display: flex; 8298 display: flex;
8299 -webkit-box-orient: vertical; 8299 -webkit-box-orient: vertical;
8300 -webkit-box-direction: normal; 8300 -webkit-box-direction: normal;
8301 -ms-flex-direction: column; 8301 -ms-flex-direction: column;
8302 flex-direction: column; 8302 flex-direction: column;
8303 gap: 10px; 8303 gap: 10px;
8304 margin-top: 10px; 8304 margin-top: 10px;
8305 } 8305 }
8306 @media (min-width: 768px) { 8306 @media (min-width: 768px) {
8307 .cabinet__menu-bottom { 8307 .cabinet__menu-bottom {
8308 gap: 20px; 8308 gap: 20px;
8309 margin-top: 20px; 8309 margin-top: 20px;
8310 } 8310 }
8311 } 8311 }
8312 .cabinet__menu-copy { 8312 .cabinet__menu-copy {
8313 color: #9c9d9d; 8313 color: #9c9d9d;
8314 text-align: center; 8314 text-align: center;
8315 font-size: 12px; 8315 font-size: 12px;
8316 } 8316 }
8317 @media (min-width: 768px) { 8317 @media (min-width: 768px) {
8318 .cabinet__menu-copy { 8318 .cabinet__menu-copy {
8319 font-size: 16px; 8319 font-size: 16px;
8320 } 8320 }
8321 } 8321 }
8322 .cabinet__body { 8322 .cabinet__body {
8323 margin: 0 -10px; 8323 margin: 0 -10px;
8324 margin-top: 50px; 8324 margin-top: 50px;
8325 background: #fff; 8325 background: #fff;
8326 padding: 20px 10px; 8326 padding: 20px 10px;
8327 display: -webkit-box; 8327 display: -webkit-box;
8328 display: -ms-flexbox; 8328 display: -ms-flexbox;
8329 display: flex; 8329 display: flex;
8330 -webkit-box-orient: vertical; 8330 -webkit-box-orient: vertical;
8331 -webkit-box-direction: normal; 8331 -webkit-box-direction: normal;
8332 -ms-flex-direction: column; 8332 -ms-flex-direction: column;
8333 flex-direction: column; 8333 flex-direction: column;
8334 gap: 30px; 8334 gap: 30px;
8335 color: #000; 8335 color: #000;
8336 } 8336 }
8337 @media (min-width: 768px) { 8337 @media (min-width: 768px) {
8338 .cabinet__body { 8338 .cabinet__body {
8339 padding: 30px 20px; 8339 padding: 30px 20px;
8340 margin: 0; 8340 margin: 0;
8341 border-radius: 8px; 8341 border-radius: 8px;
8342 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2); 8342 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
8343 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2); 8343 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
8344 } 8344 }
8345 } 8345 }
8346 @media (min-width: 992px) { 8346 @media (min-width: 992px) {
8347 .cabinet__body { 8347 .cabinet__body {
8348 width: calc(100% - 360px); 8348 width: calc(100% - 360px);
8349 } 8349 }
8350 } 8350 }
8351 @media (min-width: 1280px) { 8351 @media (min-width: 1280px) {
8352 .cabinet__body { 8352 .cabinet__body {
8353 width: calc(100% - 420px); 8353 width: calc(100% - 420px);
8354 } 8354 }
8355 } 8355 }
8356 .cabinet__body-item { 8356 .cabinet__body-item {
8357 display: -webkit-box; 8357 display: -webkit-box;
8358 display: -ms-flexbox; 8358 display: -ms-flexbox;
8359 display: flex; 8359 display: flex;
8360 -webkit-box-orient: vertical; 8360 -webkit-box-orient: vertical;
8361 -webkit-box-direction: normal; 8361 -webkit-box-direction: normal;
8362 -ms-flex-direction: column; 8362 -ms-flex-direction: column;
8363 flex-direction: column; 8363 flex-direction: column;
8364 gap: 20px; 8364 gap: 20px;
8365 } 8365 }
8366 .cabinet__title { 8366 .cabinet__title {
8367 font-size: 24px; 8367 font-size: 24px;
8368 /*color: #6b6c6d;*/ 8368 /*color: #6b6c6d;*/
8369 color: #000000 8369 color: #000000
8370 } 8370 }
8371 @media (min-width: 768px) { 8371 @media (min-width: 768px) {
8372 .cabinet__title { 8372 .cabinet__title {
8373 font-size: 32px; 8373 font-size: 32px;
8374 } 8374 }
8375 } 8375 }
8376 @media (min-width: 992px) { 8376 @media (min-width: 992px) {
8377 .cabinet__title { 8377 .cabinet__title {
8378 font-size: 40px; 8378 font-size: 40px;
8379 } 8379 }
8380 } 8380 }
8381 @media (min-width: 1280px) { 8381 @media (min-width: 1280px) {
8382 .cabinet__title { 8382 .cabinet__title {
8383 font-size: 48px; 8383 font-size: 48px;
8384 } 8384 }
8385 } 8385 }
8386 .cabinet__subtitle { 8386 .cabinet__subtitle {
8387 font-size: 22px; 8387 font-size: 22px;
8388 margin: 0; 8388 margin: 0;
8389 font-weight: 700; 8389 font-weight: 700;
8390 color: #000; 8390 color: #000;
8391 } 8391 }
8392 @media (min-width: 768px) { 8392 @media (min-width: 768px) {
8393 .cabinet__subtitle { 8393 .cabinet__subtitle {
8394 font-size: 24px; 8394 font-size: 24px;
8395 } 8395 }
8396 } 8396 }
8397 .cabinet__h4 { 8397 .cabinet__h4 {
8398 font-size: 20px; 8398 font-size: 20px;
8399 margin: 0; 8399 margin: 0;
8400 font-weight: 700; 8400 font-weight: 700;
8401 color: #000; 8401 color: #000;
8402 } 8402 }
8403 @media (min-width: 768px) { 8403 @media (min-width: 768px) {
8404 .cabinet__h4 { 8404 .cabinet__h4 {
8405 font-size: 22px; 8405 font-size: 22px;
8406 } 8406 }
8407 } 8407 }
8408 .cabinet__text { 8408 .cabinet__text {
8409 margin: 0; 8409 margin: 0;
8410 font-size: 14px; 8410 font-size: 14px;
8411 } 8411 }
8412 @media (min-width: 768px) { 8412 @media (min-width: 768px) {
8413 .cabinet__text { 8413 .cabinet__text {
8414 font-size: 16px; 8414 font-size: 16px;
8415 } 8415 }
8416 } 8416 }
8417 .cabinet__text b { 8417 .cabinet__text b {
8418 color: #000; 8418 color: #000;
8419 font-size: 18px; 8419 font-size: 18px;
8420 } 8420 }
8421 @media (min-width: 768px) { 8421 @media (min-width: 768px) {
8422 .cabinet__text b { 8422 .cabinet__text b {
8423 font-size: 24px; 8423 font-size: 24px;
8424 } 8424 }
8425 } 8425 }
8426 .cabinet__descr { 8426 .cabinet__descr {
8427 display: -webkit-box; 8427 display: -webkit-box;
8428 display: -ms-flexbox; 8428 display: -ms-flexbox;
8429 display: flex; 8429 display: flex;
8430 -webkit-box-orient: vertical; 8430 -webkit-box-orient: vertical;
8431 -webkit-box-direction: normal; 8431 -webkit-box-direction: normal;
8432 -ms-flex-direction: column; 8432 -ms-flex-direction: column;
8433 flex-direction: column; 8433 flex-direction: column;
8434 gap: 6px; 8434 gap: 6px;
8435 } 8435 }
8436 @media (min-width: 768px) { 8436 @media (min-width: 768px) {
8437 .cabinet__descr { 8437 .cabinet__descr {
8438 gap: 12px; 8438 gap: 12px;
8439 } 8439 }
8440 } 8440 }
8441 .cabinet__avatar { 8441 .cabinet__avatar {
8442 display: -webkit-box; 8442 display: -webkit-box;
8443 display: -ms-flexbox; 8443 display: -ms-flexbox;
8444 display: flex; 8444 display: flex;
8445 -webkit-box-align: start; 8445 -webkit-box-align: start;
8446 -ms-flex-align: start; 8446 -ms-flex-align: start;
8447 align-items: flex-start; 8447 align-items: flex-start;
8448 } 8448 }
8449 @media (min-width: 768px) { 8449 @media (min-width: 768px) {
8450 .cabinet__avatar { 8450 .cabinet__avatar {
8451 -webkit-box-align: center; 8451 -webkit-box-align: center;
8452 -ms-flex-align: center; 8452 -ms-flex-align: center;
8453 align-items: center; 8453 align-items: center;
8454 } 8454 }
8455 } 8455 }
8456 .cabinet__avatar-pic { 8456 .cabinet__avatar-pic {
8457 width: 100px; 8457 width: 100px;
8458 aspect-ratio: 1/1; 8458 aspect-ratio: 1/1;
8459 position: relative; 8459 position: relative;
8460 display: -webkit-box; 8460 display: -webkit-box;
8461 display: -ms-flexbox; 8461 display: -ms-flexbox;
8462 display: flex; 8462 display: flex;
8463 -webkit-box-pack: center; 8463 -webkit-box-pack: center;
8464 -ms-flex-pack: center; 8464 -ms-flex-pack: center;
8465 justify-content: center; 8465 justify-content: center;
8466 -webkit-box-align: center; 8466 -webkit-box-align: center;
8467 -ms-flex-align: center; 8467 -ms-flex-align: center;
8468 align-items: center; 8468 align-items: center;
8469 overflow: hidden; 8469 overflow: hidden;
8470 border-radius: 8px; 8470 border-radius: 8px;
8471 color: #fff; 8471 color: #fff;
8472 background: #9c9d9d; 8472 background: #9c9d9d;
8473 } 8473 }
8474 .cabinet__avatar-pic svg { 8474 .cabinet__avatar-pic svg {
8475 width: 50%; 8475 width: 50%;
8476 aspect-ratio: 1/1; 8476 aspect-ratio: 1/1;
8477 z-index: 1; 8477 z-index: 1;
8478 position: relative; 8478 position: relative;
8479 } 8479 }
8480 .cabinet__avatar-pic img{ 8480 .cabinet__avatar-pic img{
8481 max-width: 100%; 8481 max-width: 100%;
8482 max-height: 100%; 8482 max-height: 100%;
8483 } 8483 }
8484 .cabinet__avatar-form { 8484 .cabinet__avatar-form {
8485 width: calc(100% - 100px); 8485 width: calc(100% - 100px);
8486 padding-left: 15px; 8486 padding-left: 15px;
8487 display: -webkit-box; 8487 display: -webkit-box;
8488 display: -ms-flexbox; 8488 display: -ms-flexbox;
8489 display: flex; 8489 display: flex;
8490 -webkit-box-orient: vertical; 8490 -webkit-box-orient: vertical;
8491 -webkit-box-direction: normal; 8491 -webkit-box-direction: normal;
8492 -ms-flex-direction: column; 8492 -ms-flex-direction: column;
8493 flex-direction: column; 8493 flex-direction: column;
8494 gap: 6px; 8494 gap: 6px;
8495 } 8495 }
8496 .candidate-top-wrapper{ 8496 .candidate-top-wrapper{
8497 display: flex; 8497 display: flex;
8498 } 8498 }
8499 .candidate-top-wrapper .candidate-thumbnail{ 8499 .candidate-top-wrapper .candidate-thumbnail{
8500 width: 100px; 8500 width: 100px;
8501 height: 100px; 8501 height: 100px;
8502 min-width: 100px; 8502 min-width: 100px;
8503 border-radius: 8px; 8503 border-radius: 8px;
8504 overflow: hidden; 8504 overflow: hidden;
8505 } 8505 }
8506 .candidate-top-wrapper .candidate-thumbnail img{ 8506 .candidate-top-wrapper .candidate-thumbnail img{
8507 max-height: 100%; 8507 max-height: 100%;
8508 max-width: 100%; 8508 max-width: 100%;
8509 } 8509 }
8510 .candidate-top-wrapper .candidate-information{ 8510 .candidate-top-wrapper .candidate-information{
8511 padding-left: 20px; 8511 padding-left: 20px;
8512 font-size: 21px; 8512 font-size: 21px;
8513 display: flex; 8513 display: flex;
8514 align-items: center; 8514 align-items: center;
8515 } 8515 }
8516 .candidate-top-wrapper .candidate-information .candidate-title{ 8516 .candidate-top-wrapper .candidate-information .candidate-title{
8517 font-size: inherit; 8517 font-size: inherit;
8518 } 8518 }
8519 .content-single-candidate .education-detail-description{ 8519 .content-single-candidate .education-detail-description{
8520 margin-bottom: 50px; 8520 margin-bottom: 50px;
8521 text-align: justify; 8521 text-align: justify;
8522 } 8522 }
8523 .content-single-candidate .education-detail-description h3.title{ 8523 .content-single-candidate .education-detail-description h3.title{
8524 font-size: 18px; 8524 font-size: 18px;
8525 margin: 0 0 20px; 8525 margin: 0 0 20px;
8526 } 8526 }
8527 .content-single-candidate .education-detail-description .inner{ 8527 .content-single-candidate .education-detail-description .inner{
8528 font-size: 16px; 8528 font-size: 16px;
8529 font-weight: 300; 8529 font-weight: 300;
8530 line-height: 22px; 8530 line-height: 22px;
8531 color: #77838F; 8531 color: #77838F;
8532 } 8532 }
8533 .education-detail-programs h3.title{ 8533 .education-detail-programs h3.title{
8534 font-size: 18px; 8534 font-size: 18px;
8535 margin: 0 0 20px; 8535 margin: 0 0 20px;
8536 } 8536 }
8537 .education-detail-programs .accordion{ 8537 .education-detail-programs .accordion{
8538 margin: 1rem 0; 8538 margin: 1rem 0;
8539 padding: 0; 8539 padding: 0;
8540 list-style: none; 8540 list-style: none;
8541 border-top: 1px solid #ECEDF2; 8541 border-top: 1px solid #ECEDF2;
8542 } 8542 }
8543 .education-detail-programs .accordion.sub{ 8543 .education-detail-programs .accordion.sub{
8544 padding-left: 20px; 8544 padding-left: 20px;
8545 display: none; 8545 display: none;
8546 } 8546 }
8547 .education-detail-programs .accordion-item { 8547 .education-detail-programs .accordion-item {
8548 border-bottom: 1px solid #ECEDF2; 8548 border-bottom: 1px solid #ECEDF2;
8549 } 8549 }
8550 .education-detail-programs .accordion-thumb { 8550 .education-detail-programs .accordion-thumb {
8551 margin: 0; 8551 margin: 0;
8552 padding: 25px 0; 8552 padding: 25px 0;
8553 cursor: pointer; 8553 cursor: pointer;
8554 font-weight: normal; 8554 font-weight: normal;
8555 color: #0E5C69; 8555 color: #0E5C69;
8556 font-size: 16px; 8556 font-size: 16px;
8557 text-transform: uppercase; 8557 text-transform: uppercase;
8558 } 8558 }
8559 .education-detail-programs .accordion-thumb::after { 8559 .education-detail-programs .accordion-thumb::after {
8560 content: ""; 8560 content: "";
8561 display: block; 8561 display: block;
8562 float: right; 8562 float: right;
8563 position: relative; 8563 position: relative;
8564 top: 6px; 8564 top: 6px;
8565 height: 7px; 8565 height: 7px;
8566 width: 7px; 8566 width: 7px;
8567 margin-right: 1rem; 8567 margin-right: 1rem;
8568 margin-left: 0.5rem; 8568 margin-left: 0.5rem;
8569 border-right: 1px solid; 8569 border-right: 1px solid;
8570 border-bottom: 1px solid; 8570 border-bottom: 1px solid;
8571 border-color: #828A96; 8571 border-color: #828A96;
8572 transform: rotate(-45deg); 8572 transform: rotate(-45deg);
8573 transition: transform 0.2s ease-out; 8573 transition: transform 0.2s ease-out;
8574 } 8574 }
8575 .education-detail-programs .accordion-item .accordion-thumb.ui-state-active::after { 8575 .education-detail-programs .accordion-item .accordion-thumb.ui-state-active::after {
8576 transform: rotate(45deg); 8576 transform: rotate(45deg);
8577 } 8577 }
8578 .accordion-sub .accordion-panel{ 8578 .accordion-sub .accordion-panel{
8579 display: none; 8579 display: none;
8580 } 8580 }
8581 .accordion > .accordion-item > .accordion-panel{ 8581 .accordion > .accordion-item > .accordion-panel{
8582 opacity: 1; 8582 opacity: 1;
8583 } 8583 }
8584 .accordion-sub li{ 8584 .accordion-sub li{
8585 list-style-type: none; 8585 list-style-type: none;
8586 } 8586 }
8587 .accordion-sub .accordion-item .accordion-panel{ 8587 .accordion-sub .accordion-item .accordion-panel{
8588 white-space: pre-wrap; 8588 white-space: pre-wrap;
8589 white-space: -moz-pre-wrap; 8589 white-space: -moz-pre-wrap;
8590 white-space: -o-pre-wrap; 8590 white-space: -o-pre-wrap;
8591 } 8591 }
8592 .accordion-sub li:last-child { 8592 .accordion-sub li:last-child {
8593 border-bottom: unset; 8593 border-bottom: unset;
8594 } 8594 }
8595 .education-detail-contacts{ 8595 .education-detail-contacts{
8596 margin-top: 50px; 8596 margin-top: 50px;
8597 } 8597 }
8598 .education-detail-contacts h3.title{ 8598 .education-detail-contacts h3.title{
8599 font-size: 18px; 8599 font-size: 18px;
8600 margin: 0 0 20px; 8600 margin: 0 0 20px;
8601 } 8601 }
8602 .education-detail-contacts .inner > div{ 8602 .education-detail-contacts .inner > div{
8603 display: flex; 8603 display: flex;
8604 align-items: center; 8604 align-items: center;
8605 margin-bottom: 20px; 8605 margin-bottom: 20px;
8606 } 8606 }
8607 .education-detail-contacts .inner > div .icon{ 8607 .education-detail-contacts .inner > div .icon{
8608 margin-right: 20px; 8608 margin-right: 20px;
8609 } 8609 }
8610 @media (min-width: 768px) { 8610 @media (min-width: 768px) {
8611 .cabinet__avatar-form { 8611 .cabinet__avatar-form {
8612 -webkit-box-align: start; 8612 -webkit-box-align: start;
8613 -ms-flex-align: start; 8613 -ms-flex-align: start;
8614 align-items: flex-start; 8614 align-items: flex-start;
8615 padding-left: 30px; 8615 padding-left: 30px;
8616 gap: 12px; 8616 gap: 12px;
8617 } 8617 }
8618 } 8618 }
8619 @media (min-width: 768px) { 8619 @media (min-width: 768px) {
8620 .cabinet__avatar-form .file { 8620 .cabinet__avatar-form .file {
8621 min-width: 215px; 8621 min-width: 215px;
8622 } 8622 }
8623 } 8623 }
8624 .cabinet__inputs { 8624 .cabinet__inputs {
8625 display: -webkit-box; 8625 display: -webkit-box;
8626 display: -ms-flexbox; 8626 display: -ms-flexbox;
8627 display: flex; 8627 display: flex;
8628 -webkit-box-orient: vertical; 8628 -webkit-box-orient: vertical;
8629 -webkit-box-direction: normal; 8629 -webkit-box-direction: normal;
8630 -ms-flex-direction: column; 8630 -ms-flex-direction: column;
8631 flex-direction: column; 8631 flex-direction: column;
8632 gap: 20px; 8632 gap: 20px;
8633 } 8633 }
8634 .cabinet__inputs .cabinet__inputs_to_columns_wrap{ 8634 .cabinet__inputs .cabinet__inputs_to_columns_wrap{
8635 display: flex; 8635 display: flex;
8636 } 8636 }
8637 .cabinet__inputs_to_columns_wrap .cabinet__inputs_to_column{ 8637 .cabinet__inputs_to_columns_wrap .cabinet__inputs_to_column{
8638 width: 50%; 8638 width: 50%;
8639 padding-right: 20px; 8639 padding-right: 20px;
8640 } 8640 }
8641 .cabinet__inputs_to_columns_wrap .cabinet__inputs-item{ 8641 .cabinet__inputs_to_columns_wrap .cabinet__inputs-item{
8642 margin-bottom: 20px; 8642 margin-bottom: 20px;
8643 width: 100%; 8643 width: 100%;
8644 } 8644 }
8645 @media (min-width: 1280px) { 8645 @media (min-width: 1280px) {
8646 .cabinet__inputs { 8646 .cabinet__inputs {
8647 -webkit-box-orient: horizontal; 8647 -webkit-box-orient: horizontal;
8648 -webkit-box-direction: normal; 8648 -webkit-box-direction: normal;
8649 -ms-flex-direction: row; 8649 -ms-flex-direction: row;
8650 flex-direction: row; 8650 flex-direction: row;
8651 -webkit-box-align: end; 8651 -webkit-box-align: end;
8652 -ms-flex-align: end; 8652 -ms-flex-align: end;
8653 align-items: end; 8653 align-items: end;
8654 -webkit-box-pack: justify; 8654 -webkit-box-pack: justify;
8655 -ms-flex-pack: justify; 8655 -ms-flex-pack: justify;
8656 justify-content: space-between; 8656 justify-content: space-between;
8657 -ms-flex-wrap: wrap; 8657 -ms-flex-wrap: wrap;
8658 flex-wrap: wrap; 8658 flex-wrap: wrap;
8659 } 8659 }
8660 } 8660 }
8661 @media (min-width: 1280px) { 8661 @media (min-width: 1280px) {
8662 .cabinet__inputs-item { 8662 .cabinet__inputs-item {
8663 width: calc(50% - 10px); 8663 width: calc(50% - 10px);
8664 } 8664 }
8665 } 8665 }
8666 @media (min-width: 1280px) { 8666 @media (min-width: 1280px) {
8667 .cabinet__inputs-item_fullwidth { 8667 .cabinet__inputs-item_fullwidth {
8668 width: 100%; 8668 width: 100%;
8669 } 8669 }
8670 } 8670 }
8671 @media (min-width: 1280px) { 8671 @media (min-width: 1280px) {
8672 .cabinet__inputs-item_min { 8672 .cabinet__inputs-item_min {
8673 width: calc(15% - 10px); 8673 width: calc(15% - 10px);
8674 } 8674 }
8675 } 8675 }
8676 @media (min-width: 1280px) { 8676 @media (min-width: 1280px) {
8677 .cabinet__inputs-item_max { 8677 .cabinet__inputs-item_max {
8678 width: calc(85% - 10px); 8678 width: calc(85% - 10px);
8679 } 8679 }
8680 } 8680 }
8681 @media (min-width: 768px) { 8681 @media (min-width: 768px) {
8682 .cabinet__inputs-item .button { 8682 .cabinet__inputs-item .button {
8683 width: 100%; 8683 width: 100%;
8684 max-width: 215px; 8684 max-width: 215px;
8685 padding: 0; 8685 padding: 0;
8686 } 8686 }
8687 } 8687 }
8688 @media (max-width: 768px) { 8688 @media (max-width: 768px) {
8689 .cabinet__inputs .cabinet__inputs_to_columns_wrap{ 8689 .cabinet__inputs .cabinet__inputs_to_columns_wrap{
8690 display: block; 8690 display: block;
8691 } 8691 }
8692 .cabinet__inputs_to_columns_wrap .cabinet__inputs_to_column{ 8692 .cabinet__inputs_to_columns_wrap .cabinet__inputs_to_column{
8693 width: 100%; 8693 width: 100%;
8694 } 8694 }
8695 } 8695 }
8696 .cabinet__inputs-item.column-count-3{ 8696 .cabinet__inputs-item.column-count-3{
8697 width: calc(32% - 10px); 8697 width: calc(32% - 10px);
8698 } 8698 }
8699 .cabinet__inputs-item-full-row { 8699 .cabinet__inputs-item-full-row {
8700 width: 100%; 8700 width: 100%;
8701 } 8701 }
8702 .cabinet__inputs-item .buttons { 8702 .cabinet__inputs-item .buttons {
8703 display: grid; 8703 display: grid;
8704 grid-template-columns: 1fr 1fr; 8704 grid-template-columns: 1fr 1fr;
8705 gap: 10px; 8705 gap: 10px;
8706 } 8706 }
8707 .cabinet__inputs-item .form-group__label{ 8707 .cabinet__inputs-item .form-group__label{
8708 font-weight: bold; 8708 font-weight: bold;
8709 } 8709 }
8710 @media (min-width: 768px) { 8710 @media (min-width: 768px) {
8711 .cabinet__inputs-item .buttons { 8711 .cabinet__inputs-item .buttons {
8712 gap: 20px; 8712 gap: 20px;
8713 max-width: 470px; 8713 max-width: 470px;
8714 } 8714 }
8715 } 8715 }
8716 @media (min-width: 992px) { 8716 @media (min-width: 992px) {
8717 .cabinet__inputs-item .buttons { 8717 .cabinet__inputs-item .buttons {
8718 max-width: none; 8718 max-width: none;
8719 } 8719 }
8720 } 8720 }
8721 @media (min-width: 1280px) { 8721 @media (min-width: 1280px) {
8722 .cabinet__inputs-item .buttons { 8722 .cabinet__inputs-item .buttons {
8723 max-width: 470px; 8723 max-width: 470px;
8724 } 8724 }
8725 } 8725 }
8726 .cabinet__inputs-item .buttons .button { 8726 .cabinet__inputs-item .buttons .button {
8727 max-width: none; 8727 max-width: none;
8728 } 8728 }
8729 .cabinet__inputs-item p { 8729 .cabinet__inputs-item p {
8730 margin: 0; 8730 margin: 0;
8731 font-size: 14px; 8731 font-size: 14px;
8732 line-height: 20px; 8732 line-height: 20px;
8733 } 8733 }
8734 @media (min-width: 768px) { 8734 @media (min-width: 768px) {
8735 .cabinet__inputs-item p { 8735 .cabinet__inputs-item p {
8736 font-size: 16px; 8736 font-size: 16px;
8737 line-height: 22px; 8737 line-height: 22px;
8738 } 8738 }
8739 } 8739 }
8740 .cabinet__inputs-item p.mod { 8740 .cabinet__inputs-item p.mod {
8741 margin-top: 12px; 8741 margin-top: 12px;
8742 } 8742 }
8743 .cabinet__inputs-item p.mod span { 8743 .cabinet__inputs-item p.mod span {
8744 color: #377d87; 8744 color: #377d87;
8745 line-height: 20px; 8745 line-height: 20px;
8746 font-weight: 700; 8746 font-weight: 700;
8747 padding: 4px 12px; 8747 padding: 4px 12px;
8748 border-radius: 4px; 8748 border-radius: 4px;
8749 background-color: #E6EFF0; 8749 background-color: #E6EFF0;
8750 } 8750 }
8751 .cabinet__inputs-item p.hidden { 8751 .cabinet__inputs-item p.hidden {
8752 display: none; 8752 display: none;
8753 } 8753 }
8754 .cabinet__inputs > .button { 8754 .cabinet__inputs > .button {
8755 padding: 0; 8755 padding: 0;
8756 width: 100%; 8756 width: 100%;
8757 max-width: 140px; 8757 max-width: 140px;
8758 } 8758 }
8759 @media (min-width: 768px) { 8759 @media (min-width: 768px) {
8760 .cabinet__inputs > .button { 8760 .cabinet__inputs > .button {
8761 max-width: 190px; 8761 max-width: 190px;
8762 } 8762 }
8763 } 8763 }
8764 .cabinet__add { 8764 .cabinet__add {
8765 display: -webkit-box; 8765 display: -webkit-box;
8766 display: -ms-flexbox; 8766 display: -ms-flexbox;
8767 display: flex; 8767 display: flex;
8768 -webkit-box-orient: vertical; 8768 -webkit-box-orient: vertical;
8769 -webkit-box-direction: normal; 8769 -webkit-box-direction: normal;
8770 -ms-flex-direction: column; 8770 -ms-flex-direction: column;
8771 flex-direction: column; 8771 flex-direction: column;
8772 gap: 10px; 8772 gap: 10px;
8773 } 8773 }
8774 @media (min-width: 768px) { 8774 @media (min-width: 768px) {
8775 .cabinet__add { 8775 .cabinet__add {
8776 gap: 0; 8776 gap: 0;
8777 -webkit-box-orient: horizontal; 8777 -webkit-box-orient: horizontal;
8778 -webkit-box-direction: normal; 8778 -webkit-box-direction: normal;
8779 -ms-flex-direction: row; 8779 -ms-flex-direction: row;
8780 flex-direction: row; 8780 flex-direction: row;
8781 -webkit-box-align: end; 8781 -webkit-box-align: end;
8782 -ms-flex-align: end; 8782 -ms-flex-align: end;
8783 align-items: flex-end; 8783 align-items: flex-end;
8784 } 8784 }
8785 } 8785 }
8786 .cabinet__add-pic { 8786 .cabinet__add-pic {
8787 border-radius: 4px; 8787 border-radius: 4px;
8788 position: relative; 8788 position: relative;
8789 overflow: hidden; 8789 overflow: hidden;
8790 background: #9c9d9d; 8790 background: #9c9d9d;
8791 color: #fff; 8791 color: #fff;
8792 width: 100px; 8792 width: 100px;
8793 aspect-ratio: 1/1; 8793 aspect-ratio: 1/1;
8794 -webkit-transition: 0.3s; 8794 -webkit-transition: 0.3s;
8795 transition: 0.3s; 8795 transition: 0.3s;
8796 } 8796 }
8797 @media (min-width: 768px) { 8797 @media (min-width: 768px) {
8798 .cabinet__add-pic { 8798 .cabinet__add-pic {
8799 width: 220px; 8799 width: 220px;
8800 border-radius: 8px; 8800 border-radius: 8px;
8801 } 8801 }
8802 } 8802 }
8803 .cabinet__add-pic:hover { 8803 .cabinet__add-pic:hover {
8804 background: #000; 8804 background: #000;
8805 } 8805 }
8806 .cabinet__add-pic input { 8806 .cabinet__add-pic input {
8807 display: none; 8807 display: none;
8808 } 8808 }
8809 .cabinet__add-pic > svg { 8809 .cabinet__add-pic > svg {
8810 width: 20px; 8810 width: 20px;
8811 position: absolute; 8811 position: absolute;
8812 top: 50%; 8812 top: 50%;
8813 left: 50%; 8813 left: 50%;
8814 -webkit-transform: translate(-50%, -50%); 8814 -webkit-transform: translate(-50%, -50%);
8815 -ms-transform: translate(-50%, -50%); 8815 -ms-transform: translate(-50%, -50%);
8816 transform: translate(-50%, -50%); 8816 transform: translate(-50%, -50%);
8817 z-index: 1; 8817 z-index: 1;
8818 } 8818 }
8819 @media (min-width: 768px) { 8819 @media (min-width: 768px) {
8820 .cabinet__add-pic > svg { 8820 .cabinet__add-pic > svg {
8821 width: 50px; 8821 width: 50px;
8822 } 8822 }
8823 } 8823 }
8824 .cabinet__add-pic span { 8824 .cabinet__add-pic span {
8825 display: -webkit-box; 8825 display: -webkit-box;
8826 display: -ms-flexbox; 8826 display: -ms-flexbox;
8827 display: flex; 8827 display: flex;
8828 -webkit-box-align: center; 8828 -webkit-box-align: center;
8829 -ms-flex-align: center; 8829 -ms-flex-align: center;
8830 align-items: center; 8830 align-items: center;
8831 -webkit-box-pack: center; 8831 -webkit-box-pack: center;
8832 -ms-flex-pack: center; 8832 -ms-flex-pack: center;
8833 justify-content: center; 8833 justify-content: center;
8834 width: 100%; 8834 width: 100%;
8835 gap: 4px; 8835 gap: 4px;
8836 font-weight: 700; 8836 font-weight: 700;
8837 font-size: 8px; 8837 font-size: 8px;
8838 line-height: 1; 8838 line-height: 1;
8839 position: absolute; 8839 position: absolute;
8840 top: 50%; 8840 top: 50%;
8841 left: 50%; 8841 left: 50%;
8842 -webkit-transform: translate(-50%, -50%); 8842 -webkit-transform: translate(-50%, -50%);
8843 -ms-transform: translate(-50%, -50%); 8843 -ms-transform: translate(-50%, -50%);
8844 transform: translate(-50%, -50%); 8844 transform: translate(-50%, -50%);
8845 margin-top: 25px; 8845 margin-top: 25px;
8846 } 8846 }
8847 @media (min-width: 768px) { 8847 @media (min-width: 768px) {
8848 .cabinet__add-pic span { 8848 .cabinet__add-pic span {
8849 font-size: 16px; 8849 font-size: 16px;
8850 margin-top: 60px; 8850 margin-top: 60px;
8851 } 8851 }
8852 } 8852 }
8853 .cabinet__add-pic span svg { 8853 .cabinet__add-pic span svg {
8854 width: 7px; 8854 width: 7px;
8855 aspect-ratio: 1/1; 8855 aspect-ratio: 1/1;
8856 } 8856 }
8857 @media (min-width: 768px) { 8857 @media (min-width: 768px) {
8858 .cabinet__add-pic span svg { 8858 .cabinet__add-pic span svg {
8859 width: 16px; 8859 width: 16px;
8860 } 8860 }
8861 } 8861 }
8862 .cabinet__add-body { 8862 .cabinet__add-body {
8863 display: -webkit-box; 8863 display: -webkit-box;
8864 display: -ms-flexbox; 8864 display: -ms-flexbox;
8865 display: flex; 8865 display: flex;
8866 -webkit-box-orient: vertical; 8866 -webkit-box-orient: vertical;
8867 -webkit-box-direction: normal; 8867 -webkit-box-direction: normal;
8868 -ms-flex-direction: column; 8868 -ms-flex-direction: column;
8869 flex-direction: column; 8869 flex-direction: column;
8870 gap: 10px; 8870 gap: 10px;
8871 } 8871 }
8872 @media (min-width: 768px) { 8872 @media (min-width: 768px) {
8873 .cabinet__add-body { 8873 .cabinet__add-body {
8874 gap: 20px; 8874 gap: 20px;
8875 width: calc(100% - 220px); 8875 width: calc(100% - 220px);
8876 padding-left: 20px; 8876 padding-left: 20px;
8877 } 8877 }
8878 } 8878 }
8879 @media (min-width: 768px) { 8879 @media (min-width: 768px) {
8880 .cabinet__add-body .button { 8880 .cabinet__add-body .button {
8881 width: 215px; 8881 width: 215px;
8882 padding: 0; 8882 padding: 0;
8883 } 8883 }
8884 } 8884 }
8885 .cabinet__fleet { 8885 .cabinet__fleet {
8886 display: -webkit-box; 8886 display: -webkit-box;
8887 display: -ms-flexbox; 8887 display: -ms-flexbox;
8888 display: flex; 8888 display: flex;
8889 -webkit-box-orient: vertical; 8889 -webkit-box-orient: vertical;
8890 -webkit-box-direction: normal; 8890 -webkit-box-direction: normal;
8891 -ms-flex-direction: column; 8891 -ms-flex-direction: column;
8892 flex-direction: column; 8892 flex-direction: column;
8893 gap: 20px; 8893 gap: 20px;
8894 } 8894 }
8895 @media (min-width: 768px) { 8895 @media (min-width: 768px) {
8896 .cabinet__fleet { 8896 .cabinet__fleet {
8897 display: grid; 8897 display: grid;
8898 grid-template-columns: repeat(2, 1fr); 8898 grid-template-columns: repeat(2, 1fr);
8899 } 8899 }
8900 } 8900 }
8901 @media (min-width: 1280px) { 8901 @media (min-width: 1280px) {
8902 .cabinet__fleet { 8902 .cabinet__fleet {
8903 grid-template-columns: repeat(3, 1fr); 8903 grid-template-columns: repeat(3, 1fr);
8904 } 8904 }
8905 } 8905 }
8906 @media (min-width: 768px) { 8906 @media (min-width: 768px) {
8907 .cabinet__submit { 8907 .cabinet__submit {
8908 width: 215px; 8908 width: 215px;
8909 padding: 0; 8909 padding: 0;
8910 margin: 0 auto; 8910 margin: 0 auto;
8911 } 8911 }
8912 } 8912 }
8913 .cabinet__filters { 8913 .cabinet__filters {
8914 display: -webkit-box; 8914 display: -webkit-box;
8915 display: -ms-flexbox; 8915 display: -ms-flexbox;
8916 display: flex; 8916 display: flex;
8917 -webkit-box-orient: vertical; 8917 -webkit-box-orient: vertical;
8918 -webkit-box-direction: normal; 8918 -webkit-box-direction: normal;
8919 -ms-flex-direction: column; 8919 -ms-flex-direction: column;
8920 flex-direction: column; 8920 flex-direction: column;
8921 gap: 10px; 8921 gap: 10px;
8922 } 8922 }
8923 .cabinet__export-wrap{ 8923 .cabinet__export-wrap{
8924 padding: 10px; 8924 padding: 10px;
8925 border: 1px #cecece solid; 8925 border: 1px #cecece solid;
8926 border-radius: 8px; 8926 border-radius: 8px;
8927 width: 100%; 8927 width: 100%;
8928 } 8928 }
8929 .cabinet__export-button-wrap{ 8929 .cabinet__export-button-wrap{
8930 max-width: 200px; 8930 max-width: 200px;
8931 margin-bottom: 10px; 8931 margin-bottom: 10px;
8932 } 8932 }
8933 .cabinet__export-options-wrap{ 8933 .cabinet__export-options-wrap{
8934 display: flex; 8934 display: flex;
8935 flex-wrap: wrap; 8935 flex-wrap: wrap;
8936 justify-content: start; 8936 justify-content: start;
8937 gap: 10px; 8937 gap: 10px;
8938 } 8938 }
8939 @media (min-width: 768px) { 8939 @media (min-width: 768px) {
8940 .cabinet__export-options-wrap { 8940 .cabinet__export-options-wrap {
8941 flex-wrap: nowrap; 8941 flex-wrap: nowrap;
8942 justify-content: space-between; 8942 justify-content: space-between;
8943 gap: 20px; 8943 gap: 20px;
8944 } 8944 }
8945 } 8945 }
8946 8946
8947 .job-title-list-wrap{ 8947 .job-title-list-wrap{
8948 margin-top: 5px; 8948 margin-top: 5px;
8949 } 8949 }
8950 .cabinet__export-error{ 8950 .cabinet__export-error{
8951 color: red; 8951 color: red;
8952 } 8952 }
8953 .flot-image-wrap img{ 8953 .flot-image-wrap img{
8954 max-width: 100%; 8954 max-width: 100%;
8955 max-height: 100%; 8955 max-height: 100%;
8956 flex: 0 0 auto; 8956 flex: 0 0 auto;
8957 } 8957 }
8958 .flot-image-wrap{ 8958 .flot-image-wrap{
8959 width: 220px; 8959 width: 220px;
8960 height: 220px; 8960 height: 220px;
8961 display: flex; 8961 display: flex;
8962 justify-content: center; 8962 justify-content: center;
8963 align-items: center; 8963 align-items: center;
8964 } 8964 }
8965 @media (min-width: 768px) { 8965 @media (min-width: 768px) {
8966 .cabinet__filters { 8966 .cabinet__filters {
8967 gap: 20px; 8967 gap: 20px;
8968 } 8968 }
8969 } 8969 }
8970 @media (min-width: 1280px) { 8970 @media (min-width: 1280px) {
8971 .cabinet__filters { 8971 .cabinet__filters {
8972 -webkit-box-orient: horizontal; 8972 -webkit-box-orient: horizontal;
8973 -webkit-box-direction: normal; 8973 -webkit-box-direction: normal;
8974 -ms-flex-direction: row; 8974 -ms-flex-direction: row;
8975 flex-direction: row; 8975 flex-direction: row;
8976 -webkit-box-align: start; 8976 -webkit-box-align: start;
8977 -ms-flex-align: start; 8977 -ms-flex-align: start;
8978 align-items: flex-start; 8978 align-items: flex-start;
8979 -webkit-box-pack: justify; 8979 -webkit-box-pack: justify;
8980 -ms-flex-pack: justify; 8980 -ms-flex-pack: justify;
8981 justify-content: space-between; 8981 justify-content: space-between;
8982 } 8982 }
8983 } 8983 }
8984 .cabinet__filters-item { 8984 .cabinet__filters-item {
8985 display: -webkit-box; 8985 display: -webkit-box;
8986 display: -ms-flexbox; 8986 display: -ms-flexbox;
8987 display: flex; 8987 display: flex;
8988 -webkit-box-orient: vertical; 8988 -webkit-box-orient: vertical;
8989 -webkit-box-direction: normal; 8989 -webkit-box-direction: normal;
8990 -ms-flex-direction: column; 8990 -ms-flex-direction: column;
8991 flex-direction: column; 8991 flex-direction: column;
8992 -webkit-box-align: start; 8992 -webkit-box-align: start;
8993 -ms-flex-align: start; 8993 -ms-flex-align: start;
8994 align-items: flex-start; 8994 align-items: flex-start;
8995 gap: 10px; 8995 gap: 10px;
8996 } 8996 }
8997 @media (min-width: 768px) { 8997 @media (min-width: 768px) {
8998 .cabinet__filters-item { 8998 .cabinet__filters-item {
8999 gap: 20px; 8999 gap: 20px;
9000 } 9000 }
9001 } 9001 }
9002 @media (min-width: 1280px) { 9002 @media (min-width: 1280px) {
9003 .cabinet__filters-item { 9003 .cabinet__filters-item {
9004 width: calc(50% - 10px); 9004 width: calc(50% - 10px);
9005 max-width: 410px; 9005 max-width: 410px;
9006 } 9006 }
9007 } 9007 }
9008 .cabinet__filters-item .button, 9008 .cabinet__filters-item .button,
9009 .cabinet__filters-item .select { 9009 .cabinet__filters-item .select {
9010 width: 100%; 9010 width: 100%;
9011 } 9011 }
9012 @media (min-width: 1280px) { 9012 @media (min-width: 1280px) {
9013 .cabinet__filters-item .button, 9013 .cabinet__filters-item .button,
9014 .cabinet__filters-item .select { 9014 .cabinet__filters-item .select {
9015 width: auto; 9015 width: auto;
9016 } 9016 }
9017 } 9017 }
9018 .cabinet__filters-item + .cabinet__filters-item { 9018 .cabinet__filters-item + .cabinet__filters-item {
9019 -webkit-box-align: end; 9019 -webkit-box-align: end;
9020 -ms-flex-align: end; 9020 -ms-flex-align: end;
9021 align-items: flex-end; 9021 align-items: flex-end;
9022 } 9022 }
9023 @media (min-width: 1280px) { 9023 @media (min-width: 1280px) {
9024 .cabinet__filters-item + .cabinet__filters-item { 9024 .cabinet__filters-item + .cabinet__filters-item {
9025 max-width: 280px; 9025 max-width: 280px;
9026 } 9026 }
9027 } 9027 }
9028 .cabinet__filters .search input { 9028 .cabinet__filters .search input {
9029 padding-right: 135px; 9029 padding-right: 135px;
9030 } 9030 }
9031 .cabinet__filters .search button { 9031 .cabinet__filters .search button {
9032 width: 115px; 9032 width: 115px;
9033 } 9033 }
9034 .cabinet__filters-buttons { 9034 .cabinet__filters-buttons {
9035 display: grid; 9035 display: grid;
9036 grid-template-columns: 1fr 1fr; 9036 grid-template-columns: 1fr 1fr;
9037 gap: 10px; 9037 gap: 10px;
9038 width: 100%; 9038 width: 100%;
9039 } 9039 }
9040 @media (min-width: 768px) { 9040 @media (min-width: 768px) {
9041 .cabinet__filters-buttons { 9041 .cabinet__filters-buttons {
9042 gap: 20px; 9042 gap: 20px;
9043 } 9043 }
9044 } 9044 }
9045 .cabinet__filters-buttons .button { 9045 .cabinet__filters-buttons .button {
9046 padding: 0; 9046 padding: 0;
9047 gap: 5px; 9047 gap: 5px;
9048 } 9048 }
9049 .cabinet__filters-buttons .button.active { 9049 .cabinet__filters-buttons .button.active {
9050 background: #377d87; 9050 background: #377d87;
9051 color: #fff; 9051 color: #fff;
9052 } 9052 }
9053 .cabinet__filters-buttons .button.active:before { 9053 .cabinet__filters-buttons .button.active:before {
9054 content: ""; 9054 content: "";
9055 width: 6px; 9055 width: 6px;
9056 height: 6px; 9056 height: 6px;
9057 background: #fff; 9057 background: #fff;
9058 border-radius: 999px; 9058 border-radius: 999px;
9059 } 9059 }
9060 .cabinet__table-header { 9060 .cabinet__table-header {
9061 display: -webkit-box; 9061 display: -webkit-box;
9062 display: -ms-flexbox; 9062 display: -ms-flexbox;
9063 display: flex; 9063 display: flex;
9064 -webkit-box-pack: justify; 9064 -webkit-box-pack: justify;
9065 -ms-flex-pack: justify; 9065 -ms-flex-pack: justify;
9066 justify-content: space-between; 9066 justify-content: space-between;
9067 -webkit-box-align: center; 9067 -webkit-box-align: center;
9068 -ms-flex-align: center; 9068 -ms-flex-align: center;
9069 align-items: center; 9069 align-items: center;
9070 font-weight: 700; 9070 font-weight: 700;
9071 margin-bottom: -10px; 9071 margin-bottom: -10px;
9072 } 9072 }
9073 .cabinet__table-header div { 9073 .cabinet__table-header div {
9074 font-size: 18px; 9074 font-size: 18px;
9075 } 9075 }
9076 @media (min-width: 768px) { 9076 @media (min-width: 768px) {
9077 .cabinet__table-header div { 9077 .cabinet__table-header div {
9078 font-size: 24px; 9078 font-size: 24px;
9079 } 9079 }
9080 } 9080 }
9081 .cabinet__table-header span { 9081 .cabinet__table-header span {
9082 color: #000; 9082 color: #000;
9083 font-size: 14px; 9083 font-size: 14px;
9084 } 9084 }
9085 @media (min-width: 768px) { 9085 @media (min-width: 768px) {
9086 .cabinet__table-header span { 9086 .cabinet__table-header span {
9087 font-size: 18px; 9087 font-size: 18px;
9088 } 9088 }
9089 } 9089 }
9090 .cabinet__table-header span b { 9090 .cabinet__table-header span b {
9091 color: #377d87; 9091 color: #377d87;
9092 } 9092 }
9093 .cabinet__tabs { 9093 .cabinet__tabs {
9094 display: grid; 9094 display: grid;
9095 grid-template-columns: 1fr 1fr; 9095 grid-template-columns: 1fr 1fr;
9096 gap: 20px; 9096 gap: 20px;
9097 } 9097 }
9098 @media (min-width: 768px) { 9098 @media (min-width: 768px) {
9099 .cabinet__tabs { 9099 .cabinet__tabs {
9100 max-width: 420px; 9100 max-width: 420px;
9101 } 9101 }
9102 } 9102 }
9103 .cabinet__tabs .button.active { 9103 .cabinet__tabs .button.active {
9104 background: #377d87; 9104 background: #377d87;
9105 color: #fff; 9105 color: #fff;
9106 } 9106 }
9107 .cabinet__bodies { 9107 .cabinet__bodies {
9108 display: none; 9108 display: none;
9109 } 9109 }
9110 .cabinet__bodies.showed { 9110 .cabinet__bodies.showed {
9111 display: block; 9111 display: block;
9112 } 9112 }
9113 .cabinet__nots { 9113 .cabinet__nots {
9114 display: -webkit-box; 9114 display: -webkit-box;
9115 display: -ms-flexbox; 9115 display: -ms-flexbox;
9116 display: flex; 9116 display: flex;
9117 -webkit-box-orient: vertical; 9117 -webkit-box-orient: vertical;
9118 -webkit-box-direction: normal; 9118 -webkit-box-direction: normal;
9119 -ms-flex-direction: column; 9119 -ms-flex-direction: column;
9120 flex-direction: column; 9120 flex-direction: column;
9121 -webkit-box-align: start; 9121 -webkit-box-align: start;
9122 -ms-flex-align: start; 9122 -ms-flex-align: start;
9123 align-items: flex-start; 9123 align-items: flex-start;
9124 gap: 10px; 9124 gap: 10px;
9125 } 9125 }
9126 @media (min-width: 768px) { 9126 @media (min-width: 768px) {
9127 .cabinet__nots { 9127 .cabinet__nots {
9128 gap: 20px; 9128 gap: 20px;
9129 } 9129 }
9130 } 9130 }
9131 .cabinet__nots .input { 9131 .cabinet__nots .input {
9132 width: 100%; 9132 width: 100%;
9133 } 9133 }
9134 .cabinet__anketa { 9134 .cabinet__anketa {
9135 display: -webkit-box; 9135 display: -webkit-box;
9136 display: -ms-flexbox; 9136 display: -ms-flexbox;
9137 display: flex; 9137 display: flex;
9138 -webkit-box-orient: vertical; 9138 -webkit-box-orient: vertical;
9139 -webkit-box-direction: normal; 9139 -webkit-box-direction: normal;
9140 -ms-flex-direction: column; 9140 -ms-flex-direction: column;
9141 flex-direction: column; 9141 flex-direction: column;
9142 -webkit-box-pack: justify; 9142 -webkit-box-pack: justify;
9143 -ms-flex-pack: justify; 9143 -ms-flex-pack: justify;
9144 justify-content: space-between; 9144 justify-content: space-between;
9145 gap: 10px; 9145 gap: 10px;
9146 } 9146 }
9147 @media (min-width: 768px) { 9147 @media (min-width: 768px) {
9148 .cabinet__anketa { 9148 .cabinet__anketa {
9149 -webkit-box-orient: horizontal; 9149 -webkit-box-orient: horizontal;
9150 -webkit-box-direction: normal; 9150 -webkit-box-direction: normal;
9151 -ms-flex-direction: row; 9151 -ms-flex-direction: row;
9152 flex-direction: row; 9152 flex-direction: row;
9153 -webkit-box-align: center; 9153 -webkit-box-align: center;
9154 -ms-flex-align: center; 9154 -ms-flex-align: center;
9155 align-items: center; 9155 align-items: center;
9156 } 9156 }
9157 } 9157 }
9158 @media (min-width: 992px) { 9158 @media (min-width: 992px) {
9159 .cabinet__anketa { 9159 .cabinet__anketa {
9160 -webkit-box-orient: vertical; 9160 -webkit-box-orient: vertical;
9161 -webkit-box-direction: normal; 9161 -webkit-box-direction: normal;
9162 -ms-flex-direction: column; 9162 -ms-flex-direction: column;
9163 flex-direction: column; 9163 flex-direction: column;
9164 -webkit-box-align: stretch; 9164 -webkit-box-align: stretch;
9165 -ms-flex-align: stretch; 9165 -ms-flex-align: stretch;
9166 align-items: stretch; 9166 align-items: stretch;
9167 } 9167 }
9168 } 9168 }
9169 @media (min-width: 1280px) { 9169 @media (min-width: 1280px) {
9170 .cabinet__anketa { 9170 .cabinet__anketa {
9171 -webkit-box-orient: horizontal; 9171 -webkit-box-orient: horizontal;
9172 -webkit-box-direction: normal; 9172 -webkit-box-direction: normal;
9173 -ms-flex-direction: row; 9173 -ms-flex-direction: row;
9174 flex-direction: row; 9174 flex-direction: row;
9175 -webkit-box-align: center; 9175 -webkit-box-align: center;
9176 -ms-flex-align: center; 9176 -ms-flex-align: center;
9177 align-items: center; 9177 align-items: center;
9178 -webkit-box-pack: justify; 9178 -webkit-box-pack: justify;
9179 -ms-flex-pack: justify; 9179 -ms-flex-pack: justify;
9180 justify-content: space-between; 9180 justify-content: space-between;
9181 } 9181 }
9182 } 9182 }
9183 .cabinet__anketa-buttons { 9183 .cabinet__anketa-buttons {
9184 display: -webkit-box; 9184 display: -webkit-box;
9185 display: -ms-flexbox; 9185 display: -ms-flexbox;
9186 display: flex; 9186 display: flex;
9187 -webkit-box-orient: vertical; 9187 -webkit-box-orient: vertical;
9188 -webkit-box-direction: normal; 9188 -webkit-box-direction: normal;
9189 -ms-flex-direction: column; 9189 -ms-flex-direction: column;
9190 flex-direction: column; 9190 flex-direction: column;
9191 gap: 10px; 9191 gap: 10px;
9192 } 9192 }
9193 @media (min-width: 768px) { 9193 @media (min-width: 768px) {
9194 .cabinet__anketa-buttons { 9194 .cabinet__anketa-buttons {
9195 display: grid; 9195 display: grid;
9196 grid-template-columns: 1fr 1fr; 9196 grid-template-columns: 1fr 1fr;
9197 gap: 20px; 9197 gap: 20px;
9198 } 9198 }
9199 } 9199 }
9200 .cabinet__stats { 9200 .cabinet__stats {
9201 display: -webkit-box; 9201 display: -webkit-box;
9202 display: -ms-flexbox; 9202 display: -ms-flexbox;
9203 display: flex; 9203 display: flex;
9204 -webkit-box-orient: vertical; 9204 -webkit-box-orient: vertical;
9205 -webkit-box-direction: normal; 9205 -webkit-box-direction: normal;
9206 -ms-flex-direction: column; 9206 -ms-flex-direction: column;
9207 flex-direction: column; 9207 flex-direction: column;
9208 gap: 6px; 9208 gap: 6px;
9209 } 9209 }
9210 @media (min-width: 768px) { 9210 @media (min-width: 768px) {
9211 .cabinet__stats { 9211 .cabinet__stats {
9212 gap: 12px; 9212 gap: 12px;
9213 } 9213 }
9214 } 9214 }
9215 .cabinet__stats-title { 9215 .cabinet__stats-title {
9216 font-size: 14px; 9216 font-size: 14px;
9217 font-weight: 700; 9217 font-weight: 700;
9218 color: #000; 9218 color: #000;
9219 } 9219 }
9220 @media (min-width: 768px) { 9220 @media (min-width: 768px) {
9221 .cabinet__stats-title { 9221 .cabinet__stats-title {
9222 font-size: 24px; 9222 font-size: 24px;
9223 } 9223 }
9224 } 9224 }
9225 .cabinet__stats-body { 9225 .cabinet__stats-body {
9226 background: linear-gradient(95deg, #f2f5fc 59.82%, #ebf2fc 99.99%); 9226 background: linear-gradient(95deg, #f2f5fc 59.82%, #ebf2fc 99.99%);
9227 border-radius: 8px; 9227 border-radius: 8px;
9228 padding: 10px; 9228 padding: 10px;
9229 display: grid; 9229 display: grid;
9230 grid-template-columns: 1fr 1fr; 9230 grid-template-columns: 1fr 1fr;
9231 gap: 20px; 9231 gap: 20px;
9232 margin-bottom: 10px; 9232 margin-bottom: 10px;
9233 } 9233 }
9234 @media (min-width: 768px) { 9234 @media (min-width: 768px) {
9235 .cabinet__stats-body { 9235 .cabinet__stats-body {
9236 padding: 10px 20px; 9236 padding: 10px 20px;
9237 } 9237 }
9238 } 9238 }
9239 .cabinet__stats-item { 9239 .cabinet__stats-item {
9240 font-size: 12px; 9240 font-size: 12px;
9241 display: -webkit-box; 9241 display: -webkit-box;
9242 display: -ms-flexbox; 9242 display: -ms-flexbox;
9243 display: flex; 9243 display: flex;
9244 -webkit-box-align: center; 9244 -webkit-box-align: center;
9245 -ms-flex-align: center; 9245 -ms-flex-align: center;
9246 align-items: center; 9246 align-items: center;
9247 line-height: 1; 9247 line-height: 1;
9248 gap: 6px; 9248 gap: 6px;
9249 } 9249 }
9250 @media (min-width: 768px) { 9250 @media (min-width: 768px) {
9251 .cabinet__stats-item { 9251 .cabinet__stats-item {
9252 font-size: 20px; 9252 font-size: 20px;
9253 gap: 10px; 9253 gap: 10px;
9254 } 9254 }
9255 } 9255 }
9256 .cabinet__stats-item svg { 9256 .cabinet__stats-item svg {
9257 width: 20px; 9257 width: 20px;
9258 aspect-ratio: 1/1; 9258 aspect-ratio: 1/1;
9259 color: #377d87; 9259 color: #377d87;
9260 } 9260 }
9261 @media (min-width: 768px) { 9261 @media (min-width: 768px) {
9262 .cabinet__stats-item svg { 9262 .cabinet__stats-item svg {
9263 width: 40px; 9263 width: 40px;
9264 margin-right: 10px; 9264 margin-right: 10px;
9265 } 9265 }
9266 } 9266 }
9267 .cabinet__stats-item span { 9267 .cabinet__stats-item span {
9268 font-weight: 700; 9268 font-weight: 700;
9269 color: #000; 9269 color: #000;
9270 } 9270 }
9271 .cabinet__stats-item b { 9271 .cabinet__stats-item b {
9272 color: #377d87; 9272 color: #377d87;
9273 font-size: 14px; 9273 font-size: 14px;
9274 } 9274 }
9275 @media (min-width: 768px) { 9275 @media (min-width: 768px) {
9276 .cabinet__stats-item b { 9276 .cabinet__stats-item b {
9277 font-size: 24px; 9277 font-size: 24px;
9278 } 9278 }
9279 } 9279 }
9280 .cabinet__stats-subtitle { 9280 .cabinet__stats-subtitle {
9281 font-size: 14px; 9281 font-size: 14px;
9282 font-weight: 700; 9282 font-weight: 700;
9283 color: #377d87; 9283 color: #377d87;
9284 } 9284 }
9285 @media (min-width: 768px) { 9285 @media (min-width: 768px) {
9286 .cabinet__stats-subtitle { 9286 .cabinet__stats-subtitle {
9287 font-size: 18px; 9287 font-size: 18px;
9288 } 9288 }
9289 } 9289 }
9290 .cabinet__stats-line { 9290 .cabinet__stats-line {
9291 width: 100%; 9291 width: 100%;
9292 position: relative; 9292 position: relative;
9293 overflow: hidden; 9293 overflow: hidden;
9294 height: 8px; 9294 height: 8px;
9295 border-radius: 999px; 9295 border-radius: 999px;
9296 background: #cecece; 9296 background: #cecece;
9297 } 9297 }
9298 .cabinet__stats-line span { 9298 .cabinet__stats-line span {
9299 position: absolute; 9299 position: absolute;
9300 top: 0; 9300 top: 0;
9301 left: 0; 9301 left: 0;
9302 width: 100%; 9302 width: 100%;
9303 height: 100%; 9303 height: 100%;
9304 background: #377d87; 9304 background: #377d87;
9305 border-radius: 999px; 9305 border-radius: 999px;
9306 } 9306 }
9307 .cabinet__stats-bottom { 9307 .cabinet__stats-bottom {
9308 color: #000; 9308 color: #000;
9309 font-size: 12px; 9309 font-size: 12px;
9310 } 9310 }
9311 @media (min-width: 768px) { 9311 @media (min-width: 768px) {
9312 .cabinet__stats-bottom { 9312 .cabinet__stats-bottom {
9313 font-size: 16px; 9313 font-size: 16px;
9314 } 9314 }
9315 } 9315 }
9316 .cabinet__works { 9316 .cabinet__works {
9317 display: -webkit-box; 9317 display: -webkit-box;
9318 display: -ms-flexbox; 9318 display: -ms-flexbox;
9319 display: flex; 9319 display: flex;
9320 -webkit-box-orient: vertical; 9320 -webkit-box-orient: vertical;
9321 -webkit-box-direction: normal; 9321 -webkit-box-direction: normal;
9322 -ms-flex-direction: column; 9322 -ms-flex-direction: column;
9323 flex-direction: column; 9323 flex-direction: column;
9324 gap: 20px; 9324 gap: 20px;
9325 } 9325 }
9326 @media (min-width: 768px) { 9326 @media (min-width: 768px) {
9327 .cabinet__works { 9327 .cabinet__works {
9328 gap: 30px; 9328 gap: 30px;
9329 } 9329 }
9330 } 9330 }
9331 .cabinet__works-item { 9331 .cabinet__works-item {
9332 -webkit-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2); 9332 -webkit-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2);
9333 box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2); 9333 box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2);
9334 padding: 10px; 9334 padding: 10px;
9335 border-radius: 4px; 9335 border-radius: 4px;
9336 } 9336 }
9337 @media (min-width: 768px) { 9337 @media (min-width: 768px) {
9338 .cabinet__works-item { 9338 .cabinet__works-item {
9339 padding: 20px; 9339 padding: 20px;
9340 border-radius: 8px; 9340 border-radius: 8px;
9341 } 9341 }
9342 } 9342 }
9343 .cabinet__works-spoiler { 9343 .cabinet__works-spoiler {
9344 display: -webkit-box; 9344 display: -webkit-box;
9345 display: -ms-flexbox; 9345 display: -ms-flexbox;
9346 display: flex; 9346 display: flex;
9347 -webkit-box-align: center; 9347 -webkit-box-align: center;
9348 -ms-flex-align: center; 9348 -ms-flex-align: center;
9349 align-items: center; 9349 align-items: center;
9350 -webkit-box-pack: justify; 9350 -webkit-box-pack: justify;
9351 -ms-flex-pack: justify; 9351 -ms-flex-pack: justify;
9352 justify-content: space-between; 9352 justify-content: space-between;
9353 } 9353 }
9354 .cabinet__works-spoiler-left { 9354 .cabinet__works-spoiler-left {
9355 display: -webkit-box; 9355 display: -webkit-box;
9356 display: -ms-flexbox; 9356 display: -ms-flexbox;
9357 display: flex; 9357 display: flex;
9358 -webkit-box-align: center; 9358 -webkit-box-align: center;
9359 -ms-flex-align: center; 9359 -ms-flex-align: center;
9360 align-items: center; 9360 align-items: center;
9361 width: calc(100% - 22px); 9361 width: calc(100% - 22px);
9362 } 9362 }
9363 .cabinet__works-spoiler-right { 9363 .cabinet__works-spoiler-right {
9364 width: 22px; 9364 width: 22px;
9365 height: 22px; 9365 height: 22px;
9366 display: -webkit-box; 9366 display: -webkit-box;
9367 display: -ms-flexbox; 9367 display: -ms-flexbox;
9368 display: flex; 9368 display: flex;
9369 -webkit-box-align: center; 9369 -webkit-box-align: center;
9370 -ms-flex-align: center; 9370 -ms-flex-align: center;
9371 align-items: center; 9371 align-items: center;
9372 -webkit-box-pack: center; 9372 -webkit-box-pack: center;
9373 -ms-flex-pack: center; 9373 -ms-flex-pack: center;
9374 justify-content: center; 9374 justify-content: center;
9375 color: #377d87; 9375 color: #377d87;
9376 padding: 0; 9376 padding: 0;
9377 background: none; 9377 background: none;
9378 border: none; 9378 border: none;
9379 } 9379 }
9380 .cabinet__works-spoiler-right svg { 9380 .cabinet__works-spoiler-right svg {
9381 width: 60%; 9381 width: 60%;
9382 aspect-ratio: 1/1; 9382 aspect-ratio: 1/1;
9383 -webkit-transform: rotate(90deg); 9383 -webkit-transform: rotate(90deg);
9384 -ms-transform: rotate(90deg); 9384 -ms-transform: rotate(90deg);
9385 transform: rotate(90deg); 9385 transform: rotate(90deg);
9386 -webkit-transition: 0.3s; 9386 -webkit-transition: 0.3s;
9387 transition: 0.3s; 9387 transition: 0.3s;
9388 } 9388 }
9389 .cabinet__works-spoiler.active .cabinet__works-spoiler-right svg { 9389 .cabinet__works-spoiler.active .cabinet__works-spoiler-right svg {
9390 -webkit-transform: rotate(-90deg); 9390 -webkit-transform: rotate(-90deg);
9391 -ms-transform: rotate(-90deg); 9391 -ms-transform: rotate(-90deg);
9392 transform: rotate(-90deg); 9392 transform: rotate(-90deg);
9393 } 9393 }
9394 .cabinet__works-spoiler-buttons { 9394 .cabinet__works-spoiler-buttons {
9395 display: -webkit-box; 9395 display: -webkit-box;
9396 display: -ms-flexbox; 9396 display: -ms-flexbox;
9397 display: flex; 9397 display: flex;
9398 -webkit-box-align: center; 9398 -webkit-box-align: center;
9399 -ms-flex-align: center; 9399 -ms-flex-align: center;
9400 align-items: center; 9400 align-items: center;
9401 -webkit-box-pack: justify; 9401 -webkit-box-pack: justify;
9402 -ms-flex-pack: justify; 9402 -ms-flex-pack: justify;
9403 justify-content: space-between; 9403 justify-content: space-between;
9404 width: 60px; 9404 width: 60px;
9405 } 9405 }
9406 @media (min-width: 768px) { 9406 @media (min-width: 768px) {
9407 .cabinet__works-spoiler-buttons { 9407 .cabinet__works-spoiler-buttons {
9408 width: 74px; 9408 width: 74px;
9409 } 9409 }
9410 } 9410 }
9411 .cabinet__works-spoiler-buttons .button { 9411 .cabinet__works-spoiler-buttons .button {
9412 width: 22px; 9412 width: 22px;
9413 height: 22px; 9413 height: 22px;
9414 padding: 0; 9414 padding: 0;
9415 } 9415 }
9416 @media (min-width: 768px) { 9416 @media (min-width: 768px) {
9417 .cabinet__works-spoiler-buttons .button { 9417 .cabinet__works-spoiler-buttons .button {
9418 width: 30px; 9418 width: 30px;
9419 height: 30px; 9419 height: 30px;
9420 } 9420 }
9421 } 9421 }
9422 .cabinet__works-spoiler-text { 9422 .cabinet__works-spoiler-text {
9423 width: calc(100% - 60px); 9423 width: calc(100% - 60px);
9424 padding-left: 20px; 9424 padding-left: 20px;
9425 font-size: 17px; 9425 font-size: 17px;
9426 font-weight: 700; 9426 font-weight: 700;
9427 color: #000; 9427 color: #000;
9428 } 9428 }
9429 @media (min-width: 768px) { 9429 @media (min-width: 768px) {
9430 .cabinet__works-spoiler-text { 9430 .cabinet__works-spoiler-text {
9431 width: calc(100% - 74px); 9431 width: calc(100% - 74px);
9432 font-size: 20px; 9432 font-size: 20px;
9433 } 9433 }
9434 } 9434 }
9435 .cabinet__works-body { 9435 .cabinet__works-body {
9436 opacity: 1; 9436 opacity: 1;
9437 height: auto; 9437 height: auto;
9438 overflow: visible; 9438 overflow: visible;
9439 transition: opacity 0.3s, height 0.3s; 9439 transition: opacity 0.3s, height 0.3s;
9440 } 9440 }
9441 .active + .cabinet__works-body { 9441 .active + .cabinet__works-body {
9442 -webkit-transition: 0.3s; 9442 -webkit-transition: 0.3s;
9443 transition: 0.3s; 9443 transition: 0.3s;
9444 opacity: 1; 9444 opacity: 1;
9445 height: auto; 9445 height: auto;
9446 padding-top: 20px; 9446 padding-top: 20px;
9447 } 9447 }
9448 .cabinet__works-add { 9448 .cabinet__works-add {
9449 padding: 0; 9449 padding: 0;
9450 width: 100%; 9450 width: 100%;
9451 max-width: 160px; 9451 max-width: 160px;
9452 } 9452 }
9453 @media (min-width: 768px) { 9453 @media (min-width: 768px) {
9454 .cabinet__works-add { 9454 .cabinet__works-add {
9455 max-width: 220px; 9455 max-width: 220px;
9456 } 9456 }
9457 } 9457 }
9458 .cabinet__buttons { 9458 .cabinet__buttons {
9459 display: -webkit-box; 9459 display: -webkit-box;
9460 display: -ms-flexbox; 9460 display: -ms-flexbox;
9461 display: flex; 9461 display: flex;
9462 -webkit-box-orient: vertical; 9462 -webkit-box-orient: vertical;
9463 -webkit-box-direction: normal; 9463 -webkit-box-direction: normal;
9464 -ms-flex-direction: column; 9464 -ms-flex-direction: column;
9465 flex-direction: column; 9465 flex-direction: column;
9466 -webkit-box-align: center; 9466 -webkit-box-align: center;
9467 -ms-flex-align: center; 9467 -ms-flex-align: center;
9468 align-items: center; 9468 align-items: center;
9469 gap: 10px; 9469 gap: 10px;
9470 } 9470 }
9471 @media (min-width: 768px) { 9471 @media (min-width: 768px) {
9472 .cabinet__buttons { 9472 .cabinet__buttons {
9473 display: grid; 9473 display: grid;
9474 grid-template-columns: 1fr 1fr; 9474 grid-template-columns: 1fr 1fr;
9475 gap: 20px; 9475 gap: 20px;
9476 } 9476 }
9477 } 9477 }
9478 .cabinet__buttons .button, 9478 .cabinet__buttons .button,
9479 .cabinet__buttons .file { 9479 .cabinet__buttons .file {
9480 padding: 0; 9480 padding: 0;
9481 width: 100%; 9481 width: 100%;
9482 max-width: 140px; 9482 max-width: 140px;
9483 } 9483 }
9484 @media (min-width: 768px) { 9484 @media (min-width: 768px) {
9485 .cabinet__buttons .button, 9485 .cabinet__buttons .button,
9486 .cabinet__buttons .file { 9486 .cabinet__buttons .file {
9487 max-width: none; 9487 max-width: none;
9488 } 9488 }
9489 } 9489 }
9490 @media (min-width: 768px) { 9490 @media (min-width: 768px) {
9491 .cabinet__buttons { 9491 .cabinet__buttons {
9492 gap: 20px; 9492 gap: 20px;
9493 } 9493 }
9494 } 9494 }
9495 @media (min-width: 1280px) { 9495 @media (min-width: 1280px) {
9496 .cabinet__buttons { 9496 .cabinet__buttons {
9497 max-width: 400px; 9497 max-width: 400px;
9498 } 9498 }
9499 } 9499 }
9500 .cabinet__buttons_flex{ 9500 .cabinet__buttons_flex{
9501 display: flex; 9501 display: flex;
9502 } 9502 }
9503 .cabinet__buttons_flex > *{ 9503 .cabinet__buttons_flex > *{
9504 margin-right: 10px; 9504 margin-right: 10px;
9505 } 9505 }
9506 .cabinet__vacs { 9506 .cabinet__vacs {
9507 display: -webkit-box; 9507 display: -webkit-box;
9508 display: -ms-flexbox; 9508 display: -ms-flexbox;
9509 display: flex; 9509 display: flex;
9510 -webkit-box-orient: vertical; 9510 -webkit-box-orient: vertical;
9511 -webkit-box-direction: reverse; 9511 -webkit-box-direction: reverse;
9512 -ms-flex-direction: column-reverse; 9512 -ms-flex-direction: column-reverse;
9513 flex-direction: column-reverse; 9513 flex-direction: column-reverse;
9514 -webkit-box-align: center; 9514 -webkit-box-align: center;
9515 -ms-flex-align: center; 9515 -ms-flex-align: center;
9516 align-items: center; 9516 align-items: center;
9517 gap: 20px; 9517 gap: 20px;
9518 } 9518 }
9519 .cabinet__vacs-body { 9519 .cabinet__vacs-body {
9520 display: -webkit-box; 9520 display: -webkit-box;
9521 display: -ms-flexbox; 9521 display: -ms-flexbox;
9522 display: flex; 9522 display: flex;
9523 -webkit-box-orient: vertical; 9523 -webkit-box-orient: vertical;
9524 -webkit-box-direction: normal; 9524 -webkit-box-direction: normal;
9525 -ms-flex-direction: column; 9525 -ms-flex-direction: column;
9526 flex-direction: column; 9526 flex-direction: column;
9527 gap: 20px; 9527 gap: 20px;
9528 width: 100%; 9528 width: 100%;
9529 } 9529 }
9530 @media (min-width: 768px) { 9530 @media (min-width: 768px) {
9531 .cabinet__vacs-body { 9531 .cabinet__vacs-body {
9532 gap: 30px; 9532 gap: 30px;
9533 } 9533 }
9534 } 9534 }
9535 .cabinet__vacs-item { 9535 .cabinet__vacs-item {
9536 display: none; 9536 display: none;
9537 background: #fff; 9537 background: #fff;
9538 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2); 9538 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
9539 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2); 9539 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
9540 } 9540 }
9541 .cabinet__vacs-item:nth-of-type(1), .cabinet__vacs-item:nth-of-type(2) { 9541 .cabinet__vacs-item:nth-of-type(1), .cabinet__vacs-item:nth-of-type(2) {
9542 display: -webkit-box; 9542 display: -webkit-box;
9543 display: -ms-flexbox; 9543 display: -ms-flexbox;
9544 display: flex; 9544 display: flex;
9545 } 9545 }
9546 .cabinet__vacs.active .cabinet__vacs-item { 9546 .cabinet__vacs.active .cabinet__vacs-item {
9547 display: -webkit-box; 9547 display: -webkit-box;
9548 display: -ms-flexbox; 9548 display: -ms-flexbox;
9549 display: flex; 9549 display: flex;
9550 } 9550 }
9551 .main__employer-page-two-item-text-body img { 9551 .main__employer-page-two-item-text-body img {
9552 display: inline !important; 9552 display: inline !important;
9553 border: none !important; 9553 border: none !important;
9554 box-shadow: none !important; 9554 box-shadow: none !important;
9555 height: 1em !important; 9555 height: 1em !important;
9556 width: 1em !important; 9556 width: 1em !important;
9557 margin: 0 0.07em !important; 9557 margin: 0 0.07em !important;
9558 vertical-align: -0.1em !important; 9558 vertical-align: -0.1em !important;
9559 background: none !important; 9559 background: none !important;
9560 padding: 0 !important; 9560 padding: 0 !important;
9561 } 9561 }
9562 .main__employer-page-two-item-text-body p{ 9562 .main__employer-page-two-item-text-body p{
9563 margin: 0 0 20px; 9563 margin: 0 0 20px;
9564 } 9564 }
9565 .main__employer-page-two-item-text-body.vacancy-info p{
9566 margin: 0 0 10px;
9567 }
9565 #sertificate .one-sertificate{ 9568 #sertificate .one-sertificate{
9566 display: flex; 9569 display: flex;
9567 justify-content: space-between; 9570 justify-content: space-between;
9568 margin-bottom: 15px; 9571 margin-bottom: 15px;
9569 border-bottom: 1px #ccc solid; 9572 border-bottom: 1px #ccc solid;
9570 padding-bottom: 15px; 9573 padding-bottom: 15px;
9571 } 9574 }
9572 #sertificate .one-sertificate .sertificate-field{ 9575 #sertificate .one-sertificate .sertificate-field{
9573 display: block; 9576 display: block;
9574 } 9577 }
9575 #sertificate .one-sertificate .sertificate-field.sertificate-name{ 9578 #sertificate .one-sertificate .sertificate-field.sertificate-name{
9576 width: 50%; 9579 width: 50%;
9577 max-width: 50%; 9580 max-width: 50%;
9578 } 9581 }
9579 #sertificate .one-sertificate .sertificate-field.sertificate-buttons{ 9582 #sertificate .one-sertificate .sertificate-field.sertificate-buttons{
9580 display: flex; 9583 display: flex;
9581 justify-content: space-between; 9584 justify-content: space-between;
9582 } 9585 }
9583 #sertificate .one-sertificate .sertificate-field.sertificate-buttons a{ 9586 #sertificate .one-sertificate .sertificate-field.sertificate-buttons a{
9584 width: 30px; 9587 width: 30px;
9585 height: 30px; 9588 height: 30px;
9586 padding: 5px; 9589 padding: 5px;
9587 } 9590 }
9588 #prev_worker .cabinet__inputs-item-buttons a{ 9591 #prev_worker .cabinet__inputs-item-buttons a{
9589 width: 30px; 9592 width: 30px;
9590 height: 30px; 9593 height: 30px;
9591 padding: 5px; 9594 padding: 5px;
9592 } 9595 }
9593 #prev_worker .cabinet__inputs-item-buttons{ 9596 #prev_worker .cabinet__inputs-item-buttons{
9594 width: 100px; 9597 width: 100px;
9595 } 9598 }
9596 #prev_worker .cabinet__inputs{ 9599 #prev_worker .cabinet__inputs{
9597 -webkit-box-align: start; 9600 -webkit-box-align: start;
9598 -ms-flex-align: start; 9601 -ms-flex-align: start;
9599 align-items: start; 9602 align-items: start;
9600 } 9603 }
9601 #prev_worker .cabinet__inputs-item-buttons flex{ 9604 #prev_worker .cabinet__inputs-item-buttons flex{
9602 justify-content: end; 9605 justify-content: end;
9603 } 9606 }
9604 #prev_worker .cabinet__body-item{ 9607 #prev_worker .cabinet__body-item{
9605 border-bottom: 1px #cccccc solid; 9608 border-bottom: 1px #cccccc solid;
9606 padding-bottom: 25px; 9609 padding-bottom: 25px;
9607 } 9610 }
9608 @media (max-width: 1280px) { 9611 @media (max-width: 1280px) {
9609 #prev_worker .cabinet__inputs-item-buttons{ 9612 #prev_worker .cabinet__inputs-item-buttons{
9610 position: absolute; 9613 position: absolute;
9611 right: 0; 9614 right: 0;
9612 } 9615 }
9613 } 9616 }
9614 body .cke_notifications_area{ 9617 body .cke_notifications_area{
9615 opacity: 0; 9618 opacity: 0;
9616 display: none !important; 9619 display: none !important;
9617 } 9620 }
9618 .unread-messages-count{ 9621 .unread-messages-count{
9619 background-color: #377d87; 9622 background-color: #377d87;
9620 color: #fff; 9623 color: #fff;
9621 padding: 5px 10px; 9624 padding: 5px 10px;
9622 border-radius: 45px; 9625 border-radius: 45px;
9623 } 9626 }
9624 9627
9625 .flot-one-ship .flot-label{ 9628 .flot-one-ship .flot-label{
9626 font-weight: bold; 9629 font-weight: bold;
9627 display: flex; 9630 display: flex;
9628 } 9631 }
9629 .flot-one-ship .flot-label .flot-label-name{ 9632 .flot-one-ship .flot-label .flot-label-name{
9630 color: #377d87; 9633 color: #377d87;
9631 min-width: 120px; 9634 min-width: 120px;
9632 } 9635 }
9633 .picker { 9636 .picker {
9634 display: none; 9637 display: none;
9635 -webkit-box-pack: center; 9638 -webkit-box-pack: center;
9636 -ms-flex-pack: center; 9639 -ms-flex-pack: center;
9637 justify-content: center; 9640 justify-content: center;
9638 -webkit-box-align: center; 9641 -webkit-box-align: center;
9639 -ms-flex-align: center; 9642 -ms-flex-align: center;
9640 align-items: center; 9643 align-items: center;
9641 } 9644 }
9642 .picker-dialog { 9645 .picker-dialog {
9643 position: relative !important; 9646 position: relative !important;
9644 max-width: 820px; 9647 max-width: 820px;
9645 border: none; 9648 border: none;
9646 background: #fff; 9649 background: #fff;
9647 border-radius: 10px; 9650 border-radius: 10px;
9648 padding: 20px 10px; 9651 padding: 20px 10px;
9649 } 9652 }
9650 @media (min-width: 768px) { 9653 @media (min-width: 768px) {
9651 .picker-dialog { 9654 .picker-dialog {
9652 padding: 80px; 9655 padding: 80px;
9653 } 9656 }
9654 } 9657 }
9655 .picker-close { 9658 .picker-close {
9656 font-size: 3rem; 9659 font-size: 3rem;
9657 } 9660 }
9658 .picker-close:hover { 9661 .picker-close:hover {
9659 color: #377d87; 9662 color: #377d87;
9660 } 9663 }
9661 .picker-header { 9664 .picker-header {
9662 padding: 0; 9665 padding: 0;
9663 position: static; 9666 position: static;
9664 border: none; 9667 border: none;
9665 margin-bottom: 10px; 9668 margin-bottom: 10px;
9666 } 9669 }
9667 @media (min-width: 768px) { 9670 @media (min-width: 768px) {
9668 .picker-header { 9671 .picker-header {
9669 margin-bottom: 20px; 9672 margin-bottom: 20px;
9670 } 9673 }
9671 } 9674 }
9672 .picker-title { 9675 .picker-title {
9673 color: #696b6b; 9676 color: #696b6b;
9674 font-weight: 700; 9677 font-weight: 700;
9675 font-size: 22px; 9678 font-size: 22px;
9676 line-height: 1.2; 9679 line-height: 1.2;
9677 text-align: center; 9680 text-align: center;
9678 } 9681 }
9679 @media (min-width: 768px) { 9682 @media (min-width: 768px) {
9680 .picker-title { 9683 .picker-title {
9681 text-align: left; 9684 text-align: left;
9682 font-size: 34px; 9685 font-size: 34px;
9683 } 9686 }
9684 } 9687 }
9685 @media (min-width: 992px) { 9688 @media (min-width: 992px) {
9686 .picker-title { 9689 .picker-title {
9687 font-size: 44px; 9690 font-size: 44px;
9688 } 9691 }
9689 } 9692 }
9690 .picker-list { 9693 .picker-list {
9691 padding: 0 20px; 9694 padding: 0 20px;
9692 } 9695 }
9693 @media (min-width: 768px) { 9696 @media (min-width: 768px) {
9694 .picker-list { 9697 .picker-list {
9695 padding: 0 60px; 9698 padding: 0 60px;
9696 } 9699 }
9697 } 9700 }
9698 @media (min-width: 992px) { 9701 @media (min-width: 992px) {
9699 .picker-list { 9702 .picker-list {
9700 padding: 0 90px; 9703 padding: 0 90px;
9701 } 9704 }
9702 } 9705 }
9703 .picker-item { 9706 .picker-item {
9704 display: -webkit-box; 9707 display: -webkit-box;
9705 display: -ms-flexbox; 9708 display: -ms-flexbox;
9706 display: flex; 9709 display: flex;
9707 -webkit-box-pack: center; 9710 -webkit-box-pack: center;
9708 -ms-flex-pack: center; 9711 -ms-flex-pack: center;
9709 justify-content: center; 9712 justify-content: center;
9710 -webkit-box-align: center; 9713 -webkit-box-align: center;
9711 -ms-flex-align: center; 9714 -ms-flex-align: center;
9712 align-items: center; 9715 align-items: center;
9713 line-height: 1; 9716 line-height: 1;
9714 font-size: 28px; 9717 font-size: 28px;
9715 line-height: 40px; 9718 line-height: 40px;
9716 color: #699da5; 9719 color: #699da5;
9717 font-weight: 700; 9720 font-weight: 700;
9718 } 9721 }
9719 @media (min-width: 992px) { 9722 @media (min-width: 992px) {
9720 .picker-item { 9723 .picker-item {
9721 font-size: 36px; 9724 font-size: 36px;
9722 } 9725 }
9723 } 9726 }
9724 .picker-cell__header { 9727 .picker-cell__header {
9725 color: #377d87; 9728 color: #377d87;
9726 } 9729 }
9727 .picker-cell__control:before { 9730 .picker-cell__control:before {
9728 border-color: #377d87; 9731 border-color: #377d87;
9729 } 9732 }
9730 .picker-picked { 9733 .picker-picked {
9731 background: #fff; 9734 background: #fff;
9732 border-radius: 8px; 9735 border-radius: 8px;
9733 color: #377d87; 9736 color: #377d87;
9734 } 9737 }
9735 .picker-footer { 9738 .picker-footer {
9736 display: -webkit-box !important; 9739 display: -webkit-box !important;
9737 display: -ms-flexbox !important; 9740 display: -ms-flexbox !important;
9738 display: flex !important; 9741 display: flex !important;
9739 -webkit-box-orient: horizontal; 9742 -webkit-box-orient: horizontal;
9740 -webkit-box-direction: reverse; 9743 -webkit-box-direction: reverse;
9741 -ms-flex-direction: row-reverse; 9744 -ms-flex-direction: row-reverse;
9742 flex-direction: row-reverse; 9745 flex-direction: row-reverse;
9743 -webkit-box-align: center; 9746 -webkit-box-align: center;
9744 -ms-flex-align: center; 9747 -ms-flex-align: center;
9745 align-items: center; 9748 align-items: center;
9746 gap: 12px; 9749 gap: 12px;
9747 margin-top: 20px; 9750 margin-top: 20px;
9748 border: none; 9751 border: none;
9749 } 9752 }
9750 .picker-footer button { 9753 .picker-footer button {
9751 display: -webkit-box; 9754 display: -webkit-box;
9752 display: -ms-flexbox; 9755 display: -ms-flexbox;
9753 display: flex; 9756 display: flex;
9754 -webkit-box-pack: center; 9757 -webkit-box-pack: center;
9755 -ms-flex-pack: center; 9758 -ms-flex-pack: center;
9756 justify-content: center; 9759 justify-content: center;
9757 -webkit-box-align: center; 9760 -webkit-box-align: center;
9758 -ms-flex-align: center; 9761 -ms-flex-align: center;
9759 align-items: center; 9762 align-items: center;
9760 color: #fff; 9763 color: #fff;
9761 background: #377d87; 9764 background: #377d87;
9762 height: 30px; 9765 height: 30px;
9763 border-radius: 8px; 9766 border-radius: 8px;
9764 padding: 0 12px; 9767 padding: 0 12px;
9765 border: 1px solid #377d87; 9768 border: 1px solid #377d87;
9766 font-weight: 700; 9769 font-weight: 700;
9767 font-size: 12px; 9770 font-size: 12px;
9768 text-align: center; 9771 text-align: center;
9769 line-height: 1; 9772 line-height: 1;
9770 gap: 6px; 9773 gap: 6px;
9771 -webkit-transition: 0.3s; 9774 -webkit-transition: 0.3s;
9772 transition: 0.3s; 9775 transition: 0.3s;
9773 cursor: pointer; 9776 cursor: pointer;
9774 } 9777 }
9775 @media (min-width: 768px) { 9778 @media (min-width: 768px) {
9776 .picker-footer button { 9779 .picker-footer button {
9777 padding: 0 24px; 9780 padding: 0 24px;
9778 font-size: 16px; 9781 font-size: 16px;
9779 height: 44px; 9782 height: 44px;
9780 gap: 12px; 9783 gap: 12px;
9781 } 9784 }
9782 } 9785 }
9783 @media (min-width: 992px) { 9786 @media (min-width: 992px) {
9784 .picker-footer button { 9787 .picker-footer button {
9785 padding: 0 36px; 9788 padding: 0 36px;
9786 } 9789 }
9787 } 9790 }
9788 .picker-footer button:hover { 9791 .picker-footer button:hover {
9789 background: transparent; 9792 background: transparent;
9790 color: #377d87; 9793 color: #377d87;
9791 } 9794 }
9792 .picker-footer .picker-cancel { 9795 .picker-footer .picker-cancel {
9793 background: transparent; 9796 background: transparent;
9794 color: #377d87; 9797 color: #377d87;
9795 } 9798 }
9796 .picker-footer .picker-cancel:hover { 9799 .picker-footer .picker-cancel:hover {
9797 background: #377d87; 9800 background: #377d87;
9798 color: #fff; 9801 color: #fff;
9799 } 9802 }
9800 .picker .picker-body { 9803 .picker .picker-body {
9801 background: #e9f1fb; 9804 background: #e9f1fb;
9802 border-radius: 8px; 9805 border-radius: 8px;
9803 } 9806 }
9804 .picker .picker-cell__body:before { 9807 .picker .picker-cell__body:before {
9805 background: -webkit-gradient(linear, left bottom, left top, from(hsla(0, 0%, 100%, 0)), to(#e9f1fb)); 9808 background: -webkit-gradient(linear, left bottom, left top, from(hsla(0, 0%, 100%, 0)), to(#e9f1fb));
9806 background: linear-gradient(0deg, hsla(0, 0%, 100%, 0), #e9f1fb); 9809 background: linear-gradient(0deg, hsla(0, 0%, 100%, 0), #e9f1fb);
9807 } 9810 }
9808 .picker .picker-cell__body:after { 9811 .picker .picker-cell__body:after {
9809 background: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 100%, 0)), to(#e9f1fb)); 9812 background: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 100%, 0)), to(#e9f1fb));
9810 background: linear-gradient(180deg, hsla(0, 0%, 100%, 0), #e9f1fb); 9813 background: linear-gradient(180deg, hsla(0, 0%, 100%, 0), #e9f1fb);
9811 } 9814 }
9812 9815
9813 .picker-open { 9816 .picker-open {
9814 display: -webkit-box; 9817 display: -webkit-box;
9815 display: -ms-flexbox; 9818 display: -ms-flexbox;
9816 display: flex; 9819 display: flex;
9817 } 9820 }
9818 9821
9819 nav .drop-down { 9822 nav .drop-down {
9820 list-style: none; 9823 list-style: none;
9821 overflow: hidden; /* When ul height is reduced, ensure overflowing li are not shown */ 9824 overflow: hidden; /* When ul height is reduced, ensure overflowing li are not shown */
9822 height: 200px; /* 172px = (38 (li) + 5 (li border)) * 4 (number of li) */ 9825 height: 200px; /* 172px = (38 (li) + 5 (li border)) * 4 (number of li) */
9823 margin: 0 auto; 9826 margin: 0 auto;
9824 padding: 0; 9827 padding: 0;
9825 -webkit-transition: height 0.3s ease; 9828 -webkit-transition: height 0.3s ease;
9826 transition: height 0.3s ease; 9829 transition: height 0.3s ease;
9827 } 9830 }
9828 9831
9829 nav .drop-down.closed { 9832 nav .drop-down.closed {
9830 /* When toggled via jQuery this class will reduce the height of the ul which inconjuction 9833 /* When toggled via jQuery this class will reduce the height of the ul which inconjuction
9831 with overflow: hidden set on the ul will hide all list items apart from the first */ 9834 with overflow: hidden set on the ul will hide all list items apart from the first */
9832 /* current li height 38px + 5px border */ 9835 /* current li height 38px + 5px border */
9833 height: 35px; 9836 height: 35px;
9834 } 9837 }
9835 9838
9836 .select2-selection__choice[title*="Все должности"] .select2-selection__choice__remove { 9839 .select2-selection__choice[title*="Все должности"] .select2-selection__choice__remove {
9837 display: none !important; 9840 display: none !important;
9838 } 9841 }
9839 9842
9840 .cabinet__inputs-item:has(.input-picker:disabled) { 9843 .cabinet__inputs-item:has(.input-picker:disabled) {
9841 display: none; 9844 display: none;
9842 } 9845 }
9843 9846
9844 .select select {display: none;} 9847 .select select {display: none;}
9845 9848
9846 .d-none { 9849 .d-none {
9847 display: none; 9850 display: none;
9848 } 9851 }
9849 9852
resources/views/admin/employer/edit.blade.php
1 @extends('layout.admin', ['title' => 'Админка - Редактирование работодателя']) 1 @extends('layout.admin', ['title' => 'Админка - Редактирование работодателя'])
2 2
3 @section('content') 3 @section('content')
4 <h4 class="mb-4 text-lg font-semibold text-gray-600 dark:text-gray-300"> 4 <h4 class="mb-4 text-lg font-semibold text-gray-600 dark:text-gray-300">
5 Работодатель-пользователь: "{{$employer->users->name_man}} ({{$employer->user_id}})" 5 Работодатель-пользователь: "{{$employer->users->name_man}} ({{$employer->user_id}})"
6 </h4> 6 </h4>
7 <form method="POST" action="" enctype="multipart/form-data"> 7 <form method="POST" action="" enctype="multipart/form-data">
8 <div class="px-4 py-3 mb-8 bg-white rounded-lg shadow-md dark:bg-gray-800"> 8 <div class="px-4 py-3 mb-8 bg-white rounded-lg shadow-md dark:bg-gray-800">
9 @csrf 9 @csrf
10 <div class="tabs"> 10 <div class="tabs">
11 <input type="radio" name="tab-btn" id="tab-btn-1" value="" checked> 11 <input type="radio" name="tab-btn" id="tab-btn-1" value="" checked>
12 <label for="tab-btn-1">Персональная информация</label> 12 <label for="tab-btn-1">Персональная информация</label>
13 <input type="radio" name="tab-btn" id="tab-btn-2" value=""> 13 <input type="radio" name="tab-btn" id="tab-btn-2" value="">
14 <label for="tab-btn-2">Настройки</label> 14 <label for="tab-btn-2">Настройки</label>
15 <input type="radio" name="tab-btn" id="tab-btn-3" value=""> 15 <input type="radio" name="tab-btn" id="tab-btn-3" value="">
16 <label for="tab-btn-3">Флот</label> 16 <label for="tab-btn-3">Флот</label>
17 <div id="content-1"> 17 <div id="content-1">
18 18
19 <label class="block text-sm"> 19 <label class="block text-sm">
20 <span class="text-gray-700 dark:text-gray-400">Имя компании</span> 20 <span class="text-gray-700 dark:text-gray-400">Имя компании</span>
21 <input name="name" id="name" 21 <input name="name" id="name"
22 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input" 22 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input"
23 placeholder="Имя компании" value="{{ old('name') ?? $employer->name_company ?? '' }}" 23 placeholder="Имя компании" value="{{ old('name') ?? $employer->name_company ?? '' }}"
24 /> 24 />
25 @error('name') 25 @error('name')
26 <span class="text-xs text-red-600 dark:text-red-400"> 26 <span class="text-xs text-red-600 dark:text-red-400">
27 {{ $message }} 27 {{ $message }}
28 </span> 28 </span>
29 @enderror 29 @enderror
30 </label><br> 30 </label><br>
31 31
32 <label class="block text-sm"> 32 <label class="block text-sm">
33 <span class="text-gray-700 dark:text-gray-400">Email(Login)</span> 33 <span class="text-gray-700 dark:text-gray-400">Email(Login)</span>
34 <input name="user_email" id="email" readonly 34 <input name="user_email" id="email" readonly
35 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input" 35 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input"
36 placeholder="Почта(Логин)" value="{{ $employer->users->email }}" 36 placeholder="Почта(Логин)" value="{{ $employer->users->email }}"
37 /> 37 />
38 </label><br> 38 </label><br>
39 39
40 <label class="block text-sm"> 40 <label class="block text-sm">
41 <span class="text-gray-700 dark:text-gray-400">Email</span> 41 <span class="text-gray-700 dark:text-gray-400">Email</span>
42 <input name="email" id="email" 42 <input name="email" id="email"
43 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input" 43 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input"
44 placeholder="Почта" value="{{ old('email') ?? $employer->email ?? '' }}" 44 placeholder="Почта" value="{{ old('email') ?? $employer->email ?? '' }}"
45 /> 45 />
46 @error('email') 46 @error('email')
47 <span class="text-xs text-red-600 dark:text-red-400"> 47 <span class="text-xs text-red-600 dark:text-red-400">
48 {{ $message }} 48 {{ $message }}
49 </span> 49 </span>
50 @enderror 50 @enderror
51 </label><br> 51 </label><br>
52 <label class="block text-sm"> 52 <label class="block text-sm">
53 <span class="text-gray-700 dark:text-gray-400">Email (alt)</span> 53 <span class="text-gray-700 dark:text-gray-400">Email (alt)</span>
54 <input name="email_2" id="email_2" 54 <input name="email_2" id="email_2"
55 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input" 55 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input"
56 placeholder="Почта" value="{{ old('email_2') ?? $employer->email_2 ?? '' }}" 56 placeholder="Почта" value="{{ old('email_2') ?? $employer->email_2 ?? '' }}"
57 /> 57 />
58 @error('email_2') 58 @error('email_2')
59 <span class="text-xs text-red-600 dark:text-red-400"> 59 <span class="text-xs text-red-600 dark:text-red-400">
60 {{ $message }} 60 {{ $message }}
61 </span> 61 </span>
62 @enderror 62 @enderror
63 </label><br> 63 </label><br>
64 64
65 <label class="block text-sm"> 65 <label class="block text-sm">
66 <span class="text-gray-700 dark:text-gray-400">Телефон</span> 66 <span class="text-gray-700 dark:text-gray-400">Телефон</span>
67 <input name="telephone" id="telephone" 67 <input name="telephone" id="telephone"
68 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input" 68 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input"
69 placeholder="Телефон" value="{{ old('telephone') ?? $employer->telephone ?? '' }}" 69 placeholder="Телефон" value="{{ old('telephone') ?? $employer->telephone ?? '' }}"
70 /> 70 />
71 @error('telephon') 71 @error('telephon')
72 <span class="text-xs text-red-600 dark:text-red-400"> 72 <span class="text-xs text-red-600 dark:text-red-400">
73 {{ $message }} 73 {{ $message }}
74 </span> 74 </span>
75 @enderror 75 @enderror
76 </label><br> 76 </label><br>
77 <label class="block text-sm"> 77 <label class="block text-sm">
78 <span class="text-gray-700 dark:text-gray-400">Телефон (alt)</span> 78 <span class="text-gray-700 dark:text-gray-400">Телефон (alt)</span>
79 <input name="telephone_2" id="telephone_2" 79 <input name="telephone_2" id="telephone_2"
80 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input" 80 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input"
81 placeholder="Телефон" value="{{ old('telephone_2') ?? $employer->telephone_2 ?? '' }}" 81 placeholder="Телефон" value="{{ old('telephone_2') ?? $employer->telephone_2 ?? '' }}"
82 /> 82 />
83 @error('telephone_2') 83 @error('telephone_2')
84 <span class="text-xs text-red-600 dark:text-red-400"> 84 <span class="text-xs text-red-600 dark:text-red-400">
85 {{ $message }} 85 {{ $message }}
86 </span> 86 </span>
87 @enderror 87 @enderror
88 </label><br> 88 </label><br>
89 89
90 <label class="block text-sm"> 90 <label class="block text-sm">
91 <span class="text-gray-700 dark:text-gray-400">Адрес</span> 91 <span class="text-gray-700 dark:text-gray-400">Адрес</span>
92 <input name="address" id="address" 92 <input name="address" id="address"
93 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input" 93 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input"
94 placeholder="Адрес" value="{{ old('address') ?? $employer->address ?? '' }}" 94 placeholder="Адрес" value="{{ old('address') ?? $employer->address ?? '' }}"
95 /> 95 />
96 @error('address') 96 @error('address')
97 <span class="text-xs text-red-600 dark:text-red-400"> 97 <span class="text-xs text-red-600 dark:text-red-400">
98 {{ $message }} 98 {{ $message }}
99 </span> 99 </span>
100 @enderror 100 @enderror
101 </label><br> 101 </label><br>
102 102
103 <label class="block text-sm"> 103 <label class="block text-sm">
104 <span class="text-gray-700 dark:text-gray-400">Сайт</span> 104 <span class="text-gray-700 dark:text-gray-400">Сайт</span>
105 <input name="site" id="site" 105 <input name="site" id="site"
106 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input" 106 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input"
107 placeholder="Сайт" value="{{ old('site') ?? $employer->site ?? '' }}" 107 placeholder="Сайт" value="{{ old('site') ?? $employer->site ?? '' }}"
108 /> 108 />
109 @error('site') 109 @error('site')
110 <span class="text-xs text-red-600 dark:text-red-400"> 110 <span class="text-xs text-red-600 dark:text-red-400">
111 {{ $message }} 111 {{ $message }}
112 </span> 112 </span>
113 @enderror 113 @enderror
114 </label><br> 114 </label><br>
115 115
116 <label class="block text-sm"> 116 <label class="block text-sm">
117 <span class="text-gray-700 dark:text-gray-400">Лого</span> 117 <span class="text-gray-700 dark:text-gray-400">Лого</span>
118 118
119 <input name="logo" id="logo" type="file" 119 <input name="logo" id="logo" type="file"
120 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input" 120 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input"
121 placeholder="Лого" value="" 121 placeholder="Лого" value=""
122 /> 122 />
123 @isset($employer->logo) 123 @isset($employer->logo)
124 <img src="<?=asset(Storage::url($employer->logo))?>" width="150"/> 124 <img src="<?=asset(Storage::url($employer->logo))?>" width="150"/>
125 @endisset 125 @endisset
126 @error('logo') 126 @error('logo')
127 <span class="text-xs text-red-600 dark:text-red-400"> 127 <span class="text-xs text-red-600 dark:text-red-400">
128 {{ $message }} 128 {{ $message }}
129 </span> 129 </span>
130 @enderror 130 @enderror
131 </label><br> 131 </label><br>
132 132
133 <label class="block mt-4 text-sm"> 133 <label class="block mt-4 text-sm">
134 <span class="text-gray-700 dark:text-gray-400">Описание</span> 134 <span class="text-gray-700 dark:text-gray-400">Описание</span>
135 <textarea name="text" id="text" 135 <textarea name="text" id="text"
136 class="block w-full mt-1 text-sm dark:text-gray-300 dark:border-gray-600 dark:bg-gray-700 form-textarea focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray" 136 class="block w-full mt-1 text-sm dark:text-gray-300 dark:border-gray-600 dark:bg-gray-700 form-textarea focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray"
137 rows="3" 137 rows="3"
138 placeholder="Описание компании" 138 placeholder="Описание компании"
139 >{{ old('text') ?? $employer->text ?? '' }}</textarea> 139 >{{ old('text') ?? $employer->text ?? '' }}</textarea>
140 </label> 140 </label>
141 141
142 <hr> 142 <hr>
143 143
144 <label class="block mt-4 text-sm"> 144 <label class="block mt-4 text-sm">
145 <span class="text-gray-700 dark:text-gray-400">Категории</span> 145 <span class="text-gray-700 dark:text-gray-400">Категории</span>
146 146
147 <select name="category" id="category" class="form-control"> 147 <select name="category" id="category" class="form-control">
148 @foreach($select_category as $cat) 148 @foreach($select_category as $cat)
149 <option value="{{ $cat->name }}" 149 <option value="{{ $cat->name }}"
150 @isset($employer) 150 @isset($employer)
151 @if($cat->name == $employer->category) 151 @if($cat->name == $employer->category)
152 selected 152 selected
153 @endif 153 @endif
154 @endisset 154 @endisset
155 >{{ $cat->name }}</option> 155 >{{ $cat->name }}</option>
156 @endforeach 156 @endforeach
157 </select> 157 </select>
158 158
159 @error('category') 159 @error('category')
160 <div class="alert alert-danger">{{ $message }}</div> 160 <div class="alert alert-danger">{{ $message }}</div>
161 @enderror 161 @enderror
162 </label> 162 </label>
163 163
164 <label class="block mt-4 text-sm"> 164 <label class="block mt-4 text-sm">
165 <span class="text-gray-700 dark:text-gray-400">Комментарий админа</span> 165 <span class="text-gray-700 dark:text-gray-400">Комментарий админа</span>
166 <textarea name="comment_admin" id="comment_admin" 166 <textarea name="comment_admin" id="comment_admin"
167 class="block w-full mt-1 text-sm dark:text-gray-300 dark:border-gray-600 dark:bg-gray-700 form-textarea focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray" 167 class="block w-full mt-1 text-sm dark:text-gray-300 dark:border-gray-600 dark:bg-gray-700 form-textarea focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray"
168 rows="3" 168 rows="3"
169 placeholder="Комментарий админа" 169 placeholder="Комментарий админа"
170 >{{ old('comment_admin') ?? $employer->comment_admin ?? '' }}</textarea> 170 >{{ old('comment_admin') ?? $employer->comment_admin ?? '' }}</textarea>
171 </label> 171 </label>
172 172
173 </div> 173 </div>
174 <div id="content-2"> 174 <div id="content-2">
175 <h4 class="mb-4 text-lg font-semibold text-gray-600 dark:text-gray-300"> 175 <h4 class="mb-4 text-lg font-semibold text-gray-600 dark:text-gray-300">
176 Права работодателя: 176 Права работодателя:
177 </h4><br> 177 </h4><br>
178 178
179 <label class="block text-sm flex"> 179 <label class="block text-sm flex">
180 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Просмотр базы резюме </p> 180 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Просмотр базы резюме </p>
181 <input type="hidden" name="is_lookin" value="0" /> 181 <input type="hidden" name="is_lookin" value="0" />
182 <input name="is_lookin" id="is_lookin" <?php if ($employer->users->is_lookin) echo "checked";?> 182 <input name="is_lookin" id="is_lookin" <?php if ($employer->users->is_lookin) echo "checked";?>
183 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray " 183 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray "
184 placeholder="" type="checkbox" value="1" 184 placeholder="" type="checkbox" value="1"
185 /> 185 />
186 </label><br> 186 </label><br>
187 187
188 <label class="block text-sm flex"> 188 <label class="block text-sm flex">
189 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Просмотр базы данных</p> 189 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Просмотр базы данных</p>
190 <input type="hidden" name="show_database" value="0" /> 190 <input type="hidden" name="show_database" value="0" />
191 <input name="show_database" id="show_database" <?php if ($employer->users->show_database) echo "checked";?> 191 <input name="show_database" id="show_database" <?php if ($employer->users->show_database) echo "checked";?>
192 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray " 192 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray "
193 placeholder="" type="checkbox" value="1" 193 placeholder="" type="checkbox" value="1"
194 /> 194 />
195 </label><br> 195 </label><br>
196 196
197 <label class="block text-sm flex"> 197 <label class="block text-sm flex">
198 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Автоподнятие вакансий</p> 198 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Автоподнятие вакансий</p>
199 <input type="hidden" name="can_autolift" value="0" /> 199 <input type="hidden" name="can_autolift" value="0" />
200 <input name="can_autolift" id="can_autolift" <?php if ($employer->users->can_autolift) echo "checked";?> 200 <input name="can_autolift" id="can_autolift" <?php if ($employer->users->can_autolift) echo "checked";?>
201 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray " 201 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray "
202 placeholder="" type="checkbox" value="1" 202 placeholder="" type="checkbox" value="1"
203 /> 203 />
204 </label><br> 204 </label><br>
205 205
206 <label class="block text-sm flex"> 206 <label class="block text-sm flex">
207 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Отправка сообщений</p> 207 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Отправка сообщений</p>
208 <input type="hidden" name="is_message" value="0" /> 208 <input type="hidden" name="is_message" value="0" />
209 <input name="is_message" id="is_message" <?php if ($employer->users->is_message) echo "checked";?> 209 <input name="is_message" id="is_message" <?php if ($employer->users->is_message) echo "checked";?>
210 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray " 210 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray "
211 placeholder="" type="checkbox" value="1" 211 placeholder="" type="checkbox" value="1"
212 /> 212 />
213 </label><br> 213 </label><br>
214 214
215 <label class="block text-sm flex"> 215 <label class="block text-sm flex">
216 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Публикация вакансий</p> 216 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Публикация вакансий</p>
217 <input type="hidden" name="is_public" value="0" /> 217 <input type="hidden" name="is_public" value="0" />
218 <input name="is_public" id="is_public" <?php if ($employer->users->is_public) echo "checked";?> 218 <input name="is_public" id="is_public" <?php if ($employer->users->is_public) echo "checked";?>
219 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray " 219 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray "
220 placeholder="" type="checkbox" value="1" 220 placeholder="" type="checkbox" value="1"
221 /> 221 />
222 </label><br> 222 </label><br>
223 223
224 <label class="block text-sm flex"> 224 <label class="block text-sm flex">
225 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Публикация вакансий</p>
226 <input type="hidden" name="is_public" value="0" />
227 <input name="is_public" id="is_public" <?php if ($employer->users->is_public) echo "checked";?>
228 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray "
229 placeholder="" type="checkbox" value="1"
230 />
231
232 </label><br>
233
234 <label class="block text-sm flex">
235 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Работодатель скрыт </p> 225 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Работодатель скрыт </p>
236 <input type="hidden" name="status_hidden" value="0" /> 226 <input type="hidden" name="status_hidden" value="0" />
237 <input name="status_hidden" <?php if ($employer->status_hidden) echo "checked";?> 227 <input name="status_hidden" <?php if ($employer->status_hidden) echo "checked";?>
238 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray " 228 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray "
239 placeholder="" type="checkbox" value="1" 229 placeholder="" type="checkbox" value="1"
240 /> 230 />
241 </label><br> 231 </label><br>
242 232
243 <label class="block text-sm flex"> 233 <label class="block text-sm flex">
244 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Компания подтверждена </p> 234 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Компания подтверждена </p>
245 <input type="hidden" name="oficial_status" value="0" /> 235 <input type="hidden" name="oficial_status" value="0" />
246 <input name="oficial_status" <?php if ($employer->oficial_status) echo "checked";?> 236 <input name="oficial_status" <?php if ($employer->oficial_status) echo "checked";?>
247 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray " 237 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray "
248 placeholder="" type="checkbox" value="1" 238 placeholder="" type="checkbox" value="1"
249 /> 239 />
250 </label><br> 240 </label><br>
251 241
252 <label class="block text-sm flex"> 242 <label class="block text-sm flex">
253 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Разрешение публикации в соц.сетях </p> 243 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Разрешение публикации в соц.сетях </p>
254 <input type="hidden" name="social_is" value="0" /> 244 <input type="hidden" name="social_is" value="0" />
255 <input name="social_is" <?php if ($employer->social_is) echo "checked";?> 245 <input name="social_is" <?php if ($employer->social_is) echo "checked";?>
256 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray " 246 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray "
257 placeholder="" type="checkbox" value="1" 247 placeholder="" type="checkbox" value="1"
258 /> 248 />
259 </label><br> 249 </label><br>
260 250
261 <label class="block text-sm flex"> 251 <label class="block text-sm flex">
262 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Рассылка </p> 252 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Рассылка </p>
263 <input type="hidden" name="sending_is" value="0" /> 253 <input type="hidden" name="sending_is" value="0" />
264 <input name="sending_is" <?php if ($employer->sending_is) echo "checked";?> 254 <input name="sending_is" <?php if ($employer->sending_is) echo "checked";?>
265 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray " 255 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray "
266 placeholder="" type="checkbox" value="1" 256 placeholder="" type="checkbox" value="1"
267 /> 257 />
268 </label><br> 258 </label><br>
269 259
270 </div> 260 </div>
271 261
272 <div id="content-3"> 262 <div id="content-3">
273 <label class="block text-sm"> 263 <label class="block text-sm">
274 <span class="text-gray-700 dark:text-gray-400">Флоты</span> 264 <span class="text-gray-700 dark:text-gray-400">Флоты</span>
275 <a href="{{ route('admin.flot_add', ['employer' => $employer->id]) }}" 265 <a href="{{ route('admin.flot_add', ['employer' => $employer->id]) }}"
276 class="px-3 py-1 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-md active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple" 266 class="px-3 py-1 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-md active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple"
277 style="display: -webkit-inline-box; height: 30px!important;" 267 style="display: -webkit-inline-box; height: 30px!important;"
278 >Новый корабль</a> 268 >Новый корабль</a>
279 @if ($flots->count()) 269 @if ($flots->count())
280 <table class="w-full whitespace-no-wrap"> 270 <table class="w-full whitespace-no-wrap">
281 <thead> 271 <thead>
282 <tr class="text-xs font-semibold tracking-wide text-left text-gray-500 uppercase border-b dark:border-gray-700 bg-gray-50 dark:text-gray-400 dark:bg-gray-800"> 272 <tr class="text-xs font-semibold tracking-wide text-left text-gray-500 uppercase border-b dark:border-gray-700 bg-gray-50 dark:text-gray-400 dark:bg-gray-800">
283 <th class="px-4 py-3">ID</th> 273 <th class="px-4 py-3">ID</th>
284 <th class="px-4 py-3">Название</th> 274 <th class="px-4 py-3">Название</th>
285 <th class="px-4 py-3">Картинка</th> 275 <th class="px-4 py-3">Картинка</th>
286 <th class="px-4 py-3">Дата регист.</th> 276 <th class="px-4 py-3">Дата регист.</th>
287 <th class="px-4 py-3">Редакт.</th> 277 <th class="px-4 py-3">Редакт.</th>
288 </tr> 278 </tr>
289 </thead> 279 </thead>
290 <tbody class="bg-white divide-y dark:divide-gray-700 dark:bg-gray-800"> 280 <tbody class="bg-white divide-y dark:divide-gray-700 dark:bg-gray-800">
291 @foreach($flots as $flot) 281 @foreach($flots as $flot)
292 <tr class="text-gray-700 dark:text-gray-400"> 282 <tr class="text-gray-700 dark:text-gray-400">
293 <td class="px-4 py-3 text-xs"> 283 <td class="px-4 py-3 text-xs">
294 {{ $flot->id }} 284 {{ $flot->id }}
295 </td> 285 </td>
296 <td class="px-4 py-3 text-xs"> 286 <td class="px-4 py-3 text-xs">
297 {{ $flot->name }} 287 {{ $flot->name }}
298 </td> 288 </td>
299 <td class="px-4 py-3 text-xs"> 289 <td class="px-4 py-3 text-xs">
300 @if (isset($flot->image)) 290 @if (isset($flot->image))
301 <div class="flex items-center text-sm"> 291 <div class="flex items-center text-sm">
302 <div class="relative hidden w-8 h-8 mr-3 rounded-full md:block"> 292 <div class="relative hidden w-8 h-8 mr-3 rounded-full md:block">
303 <img 293 <img
304 class="object-cover w-full h-full rounded-full" 294 class="object-cover w-full h-full rounded-full"
305 src="{{ asset(Storage::url($flot->image)) }}" 295 src="{{ asset(Storage::url($flot->image)) }}"
306 alt="{{ $flot->name }}" 296 alt="{{ $flot->name }}"
307 loading="lazy" 297 loading="lazy"
308 /> 298 />
309 <div 299 <div
310 class="absolute inset-0 rounded-full shadow-inner" 300 class="absolute inset-0 rounded-full shadow-inner"
311 aria-hidden="true" 301 aria-hidden="true"
312 ></div> 302 ></div>
313 </div> 303 </div>
314 </div> 304 </div>
315 @else 305 @else
316 - 306 -
317 @endif 307 @endif
318 </td> 308 </td>
319 <td class="px-4 py-3 text-xs"> 309 <td class="px-4 py-3 text-xs">
320 {{ $flot->created_at }} 310 {{ $flot->created_at }}
321 </td> 311 </td>
322 <td class="px-4 py-3 text-xs"> 312 <td class="px-4 py-3 text-xs">
323 <div class="flex items-center text-sm"> 313 <div class="flex items-center text-sm">
324 <div> 314 <div>
325 <a href="{{ route('admin.flot', ['flot' => $flot->id, 'employer' => $flot->employer_id]) }}" class="text-xs text-gray-600 dark:text-gray-400"> 315 <a href="{{ route('admin.flot', ['flot' => $flot->id, 'employer' => $flot->employer_id]) }}" class="text-xs text-gray-600 dark:text-gray-400">
326 Редактировать 316 Редактировать
327 </a> | 317 </a> |
328 <a href="{{ route('admin.flot_delete', ['flot' => $flot->id, 'employer_id' => $flot->employer_id]) }}" class="text-xs text-gray-600 dark:text-gray-400"> 318 <a href="{{ route('admin.flot_delete', ['flot' => $flot->id, 'employer_id' => $flot->employer_id]) }}" class="text-xs text-gray-600 dark:text-gray-400">
329 Удалить 319 Удалить
330 </a> 320 </a>
331 </div> 321 </div>
332 </div> 322 </div>
333 </td> 323 </td>
334 </tr> 324 </tr>
335 @endforeach 325 @endforeach
336 </tbody> 326 </tbody>
337 </table> 327 </table>
338 @else 328 @else
339 <h2>Нет данных</h2> 329 <h2>Нет данных</h2>
340 @endif 330 @endif
341 </label> 331 </label>
342 </div> 332 </div>
343 </div> 333 </div>
344 <br> 334 <br>
345 <div class="flex flex-col flex-wrap mb-4 space-y-4 md:flex-row md:items-end md:space-x-4"> 335 <div class="flex flex-col flex-wrap mb-4 space-y-4 md:flex-row md:items-end md:space-x-4">
346 <div> 336 <div>
347 <button type="submit" class="px-3 py-1 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-md active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple"> 337 <button type="submit" class="px-3 py-1 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-md active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple">
348 Сохранить 338 Сохранить
349 </button> 339 </button>
350 <a href="{{ route('admin.employers') }}" 340 <a href="{{ route('admin.employers') }}"
351 class="px-3 py-1 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-md active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple" 341 class="px-3 py-1 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-md active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple"
352 style="display: -webkit-inline-box; height: 30px!important;" 342 style="display: -webkit-inline-box; height: 30px!important;"
353 >Назад</a> 343 >Назад</a>
354 344
355 </div> 345 </div>
356 </div> 346 </div>
357 </div> 347 </div>
358 </form> 348 </form>
359 @endsection 349 @endsection
360 350
resources/views/vacance-item.blade.php
1 @php 1 @php
2 use App\Classes\StatusUser; 2 use App\Classes\StatusUser;
3 @endphp 3 @endphp
4 4
5 @extends('layout.frontend', ['title' => $title]) 5 @extends('layout.frontend', ['title' => $title])
6 6
7 @section('scripts') 7 @section('scripts')
8 @include('js.favorite-vacancy-45') 8 @include('js.favorite-vacancy-45')
9 @include('js.vacancy-response') 9 @include('js.vacancy-response')
10 @endsection 10 @endsection
11 11
12 @section('content') 12 @section('content')
13 <main class="main"> 13 <main class="main">
14 <div class="container"> 14 <div class="container">
15 <ul class="breadcrumbs main__breadcrumbs"> 15 <ul class="breadcrumbs main__breadcrumbs">
16 <li><a href="{{ route('index') }}">Главная</a></li> 16 <li><a href="{{ route('index') }}">Главная</a></li>
17 <li><a href="{{ route('vacancies') }}">Вакансии</a></li> 17 <li><a href="{{ route('vacancies') }}">Вакансии</a></li>
18 <li><b>{{ $title }}</b></li> 18 <li><b>{{ $title }}</b></li>
19 </ul> 19 </ul>
20 <div class="main__employer-page"> 20 <div class="main__employer-page">
21 21
22 @if (isset($Query[0]->employer)) 22 @if (isset($Query[0]->employer))
23 <h2 class="main__employer-page-title">О компании</h2> 23 <h2 class="main__employer-page-title">О компании</h2>
24 <div class="main__employer-page-two-item-toper"> 24 <div class="main__employer-page-two-item-toper">
25 @if (!empty($Query[0]->employer->logo)) 25 @if (!empty($Query[0]->employer->logo))
26 <img src="{{ asset(Storage::url($Query[0]->employer->logo)) }}" alt="{{ $Query[0]->employer->name }}"> 26 <img src="{{ asset(Storage::url($Query[0]->employer->logo)) }}" alt="{{ $Query[0]->employer->name }}">
27 @else 27 @else
28 <img src="{{ asset('images/default_ship.jpg') }}" alt="{{ $Query[0]->employer->name }}"> 28 <img src="{{ asset('images/default_ship.jpg') }}" alt="{{ $Query[0]->employer->name }}">
29 @endif 29 @endif
30 <span>{{ $Query[0]->employer->name_company }}</span> 30 <span>{{ $Query[0]->employer->name_company }}</span>
31 </div> 31 </div>
32 32
33 <div class="main__employer-page-info"> 33 <div class="main__employer-page-info">
34 <div class="main__employer-page-item"> 34 <div class="main__employer-page-item">
35 <b> Адрес компании</b> 35 <b> Адрес компании</b>
36 <span> 36 <span>
37 {{ $Query[0]->employer->address }} 37 {{ $Query[0]->employer->address }}
38 </span> 38 </span>
39 </div> 39 </div>
40 <div class="main__employer-page-item"> 40 <div class="main__employer-page-item">
41 <b>Сайт</b> 41 <b>Сайт</b>
42 <span> 42 <span>
43 {{ $Query[0]->employer->site }} 43 {{ $Query[0]->employer->site }}
44 </span> 44 </span>
45 </div> 45 </div>
46 <div class="main__employer-page-item"> 46 <div class="main__employer-page-item">
47 <b>Почта</b> 47 <b>Почта</b>
48 <span> 48 <span>
49 {{ $Query[0]->employer->email }} 49 {{ $Query[0]->employer->email }}
50 </span> 50 </span>
51 </div> 51 </div>
52 <div class="main__employer-page-item"> 52 <div class="main__employer-page-item">
53 <b>Телефон</b> 53 <b>Телефон</b>
54 <span> 54 <span>
55 {{ $Query[0]->employer->telephone }} 55 {{ $Query[0]->employer->telephone }}
56 </span> 56 </span>
57 </div> 57 </div>
58 </div> 58 </div>
59 @else 59 @else
60 <div class="main__employer-page-info"> 60 <div class="main__employer-page-info">
61 <div class="main__employer-page-item"> 61 <div class="main__employer-page-item">
62 <b>Ничего не найдено</b> 62 <b>Ничего не найдено</b>
63 <span> 63 <span>
64 Нет данных о компании 64 Нет данных о компании
65 </span> 65 </span>
66 </div> 66 </div>
67 </div> 67 </div>
68 @endif 68 @endif
69 <h2 class="main__employer-page-title">{{ $Query[0]->name }}</h2> 69 <h2 class="main__employer-page-title">{{ $Query[0]->name }}</h2>
70 <h3 class="main__employer-page-title_">Описание вакансии</h3> 70 <h3 class="main__employer-page-title_">Описание вакансии</h3>
71 </div> 71 </div>
72 72
73 @foreach ($Query as $Q) 73 @foreach ($Query as $Q)
74 <div class="main__vacancies-item-page main__employer-page-two-item"> 74 <div class="main__vacancies-item-page main__employer-page-two-item">
75 <div class="main__employer-page-two-item-text"> 75 <div class="main__employer-page-two-item-text">
76 <div class="main__employer-page-two-item-text-name">Мы предлагаем:</div> 76 <div class="main__employer-page-two-item-text-name">Мы предлагаем:</div>
77 <div class="main__employer-page-two-item-text-body"> 77 <div class="main__employer-page-two-item-text-body vacancy-info">
78 {!! $Q->text !!} 78 {!! $Q->text !!}
79 </div> 79 </div>
80 </div> 80 </div>
81 <div class="main__employer-page-two-item-tags"> 81 <div class="main__employer-page-two-item-tags">
82 @if (!empty($Q->jobs_code[0]->position_ship)) 82 @if (!empty($Q->jobs_code[0]->position_ship))
83 <span class="main__employer-page-two-item-tag">#{{ $Q->jobs_code[0]->position_ship }}</span> 83 <span class="main__employer-page-two-item-tag">#{{ $Q->jobs_code[0]->position_ship }}</span>
84 @else 84 @else
85 @if (isset($Q->jobs)) 85 @if (isset($Q->jobs))
86 @foreach ($Q->jobs as $key => $j) 86 @foreach ($Q->jobs as $key => $j)
87 <span class="main__employer-page-two-item-tag">#{{ $j->name }}</span> 87 <span class="main__employer-page-two-item-tag">#{{ $j->name }}</span>
88 @endforeach 88 @endforeach
89 @endif 89 @endif
90 @endif 90 @endif
91 </div> 91 </div>
92 <br> 92 <br>
93 <div class="main__employer-page-two-item-buttons"> 93 <div class="main__employer-page-two-item-buttons">
94 @guest 94 @guest
95 <button type="button" 95 <button type="button"
96 data-fancybox 96 data-fancybox
97 data-src="#question" 97 data-src="#question"
98 data-options='{"touch":false,"autoFocus":false}' 98 data-options='{"touch":false,"autoFocus":false}'
99 class="button main__employer-page-two-item-button"> 99 class="button main__employer-page-two-item-button">
100 Откликнуться 100 Откликнуться
101 </button> 101 </button>
102 @else 102 @else
103 @if (App\Classes\StatusUser::Status() == 1) 103 @if (App\Classes\StatusUser::Status() == 1)
104 <?php 104 <?php
105 if (\App\Classes\Tools::getWorkerProfilePercent(Auth()->user()->workers[0]) >= 50) { 105 if (\App\Classes\Tools::getWorkerProfilePercent(Auth()->user()->workers[0]) >= 50) {
106 $buttonId = 'ask_comment'; 106 $buttonId = 'ask_comment';
107 } else { 107 } else {
108 $buttonId = 'ask_percent'; 108 $buttonId = 'ask_percent';
109 } 109 }
110 ?> 110 ?>
111 <button type="button" 111 <button type="button"
112 data-fancybox 112 data-fancybox
113 data-src="#{{$buttonId}}" 113 data-src="#{{$buttonId}}"
114 data-vacancy="{{ $Q->id }}" 114 data-vacancy="{{ $Q->id }}"
115 data-uid="{{ $uid }}" 115 data-uid="{{ $uid }}"
116 data-tuid="{{ $Q->employer->user_id }}" 116 data-tuid="{{ $Q->employer->user_id }}"
117 data-options='{"touch":false,"autoFocus":false}' 117 data-options='{"touch":false,"autoFocus":false}'
118 class="button main__employer-page-two-item-button {{ $buttonId }}"> 118 class="button main__employer-page-two-item-button {{ $buttonId }}">
119 Откликнуться 119 Откликнуться
120 </button> 120 </button>
121 <div class="main__employer-page-two-item-bottom"> 121 <div class="main__employer-page-two-item-bottom">
122 <div class="main__employer-page-two-item-bottom-date">{{ date('d.m.Y', strtotime($Q->updated_at)) }}</div> 122 <div class="main__employer-page-two-item-bottom-date">{{ date('d.m.Y', strtotime($Q->updated_at)) }}</div>
123 <button type="button" id="like{{ $Q->id }}" data-val="{{ $Q->id }}" class="like main__employer-page-two-item-bottom-like js_vac_favorite js-toggle {{ \App\Classes\LikesClass::get_status_vacancy($Q) }}"> 123 <button type="button" id="like{{ $Q->id }}" data-val="{{ $Q->id }}" class="like main__employer-page-two-item-bottom-like js_vac_favorite js-toggle {{ \App\Classes\LikesClass::get_status_vacancy($Q) }}">
124 <svg> 124 <svg>
125 <use xlink:href="{{ asset('images/sprite.svg#heart') }}"></use> 125 <use xlink:href="{{ asset('images/sprite.svg#heart') }}"></use>
126 </svg> 126 </svg>
127 </button> 127 </button>
128 </div> 128 </div>
129 @endif 129 @endif
130 @endguest 130 @endguest
131 </div> 131 </div>
132 132
133 </div> 133 </div>
134 @endforeach 134 @endforeach
135 135
136 <a href="{{ redirect()->back()->getTargetUrl() }}" class="back"> 136 <a href="{{ redirect()->back()->getTargetUrl() }}" class="back">
137 <svg> 137 <svg>
138 <use xlink:href="{{ asset('images/sprite.svg#back') }}"></use> 138 <use xlink:href="{{ asset('images/sprite.svg#back') }}"></use>
139 </svg> 139 </svg>
140 <span>Вернуться к списку вакансий</span> 140 <span>Вернуться к списку вакансий</span>
141 </a> 141 </a>
142 </div> 142 </div>
143 </main> 143 </main>
144 </div> 144 </div>
145 @endsection 145 @endsection
146 146