Commit 3201c677 authored by Simonas's avatar Simonas

Forms update

parent 5ac7e927
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -41,9 +41,9 @@ class Biuro_Contacts_Public {
private $version;
const FIELDS = [
'employees' => ['name', 'phone', 'email', 'agree'],
'employers' => ['name', 'phone', 'email', 'agree'],
'position' => ['name', 'phone', 'email', 'agree', 'city', 'city_id', 'message', 'confirm', 'job_id', 'cv'],
'employees' => ['name', 'phone', 'email'],
'employers' => ['name', 'phone', 'email'],
'position' => ['name', 'phone', 'email', 'city', 'city_id', 'message', 'confirm', 'job_id', 'cv'],
];
const DB_NAMES = [
......@@ -154,7 +154,7 @@ class Biuro_Contacts_Public {
public static function validate( $str, $key, $value, $post ) {
$empty = ['status' => '', 'message' => ''];
$success = ['status' => 'success', 'message' => ''];
$required = ['status' => 'error', 'message' => 'This field is required'];
$required = ['status' => 'error', 'message' => 'This field is required']; // __('This field is required', 'biuro-contacts');
switch($key) {
case 'name':
......@@ -165,7 +165,7 @@ class Biuro_Contacts_Public {
if (!$value && !is_email($post['email'])):
return [
'status' => 'error',
'message' => 'Phone or email field is required'
'message' => 'Phone or email field is required' // __('Phone or email field is required', 'biuro-contacts');
];
endif;
......@@ -176,7 +176,7 @@ class Biuro_Contacts_Public {
if ( strlen($value) < 7 || !preg_match('/^[\d|\s|\+\-]+$/', $value) ):
return [
'status' => 'error',
'message' => 'Incorrect phone number'
'message' => 'Incorrect phone number' // __('Incorrect phone number', 'biuro-contacts');
];
endif;
......@@ -186,14 +186,14 @@ class Biuro_Contacts_Public {
if (!$post['phone'] && !$value):
return [
'status' => 'error',
'message' => 'Email or phone field is required'
'message' => 'Email or phone field is required' // __('Email or phone field is required', 'biuro-contacts');
];
endif;
if (!$post['phone'] && !is_email($value)):
return [
'status' => 'error',
'message' => 'Email format is incorrect'
'message' => 'Email format is incorrect' // __('Email format is incorrect', 'biuro-contacts');
];
else:
......@@ -208,7 +208,7 @@ class Biuro_Contacts_Public {
if ($value != "1"):
return [
'status' => 'error',
'message' => 'You have to agree with conditions'
'message' => 'You have to agree with conditions' // __('You have to agree with conditions', 'biuro-contacts');
];
endif;
......@@ -354,23 +354,22 @@ class Biuro_Contacts_Public {
'updated' => current_time('Y-m-d H:i:s')
];
add_filter( 'upload_dir', array( $this, 'change_upload_dir' ) );
add_filter( 'sanitize_file_name', array( $this, 'change_upload_filename' ), 10 );
$allowed_file_types = array('application/pdf', 'application/doc', 'application/docx', 'application/rtf', 'application/txt', 'application/odf', 'application/msword', 'image/jpg', 'image/jpeg', 'image/png');
// Check file types
foreach( $_FILES as $file ) {
// Get the type of the uploaded file. This is returned as "type/extension"
$arr_file_type = wp_check_filetype( basename( $file['name'] ) );
$uploaded_file_type = $arr_file_type['type'];
if( $file['name'] && !in_array( $uploaded_file_type, $allowed_file_types ) ) {
# upload file
if($_FILES && $_FILES['cv'] && $_FILES['cv']['error'] == 0):
$arr_file_type = wp_check_filetype( basename( $_FILES['cv']['name'] ) );
if (!in_array( $arr_file_type['type'], $allowed_file_types ) ) {
$_SESSION['position--cv-status'] = 'error';
$_SESSION['position--cv-message'] = 'Incorrect file'; // __('Incorrect file', 'biuro-contacts');
wp_redirect( $referer );
exit;
}
}
add_filter( 'upload_dir', array( $this, 'change_upload_dir' ) );
add_filter( 'sanitize_file_name', array( $this, 'change_upload_filename' ), 10 );
# upload file
if($_FILES) {
# gali nusirody: 'mimes' => array('csv' => 'text/csv')
$movefile = wp_handle_upload($_FILES['cv'], [
'test_form' => false,
......@@ -380,9 +379,13 @@ class Biuro_Contacts_Public {
if ( $movefile && ! isset( $movefile['error'] ) ) {
$data['cv'] = static::getValue('cv', $movefile['url']);
} else {
$_SESSION['employee_file_error'] = $movefile['error'];
$_SESSION['position--cv-status'] = 'error';
$_SESSION['position--cv-message'] = $movefile['error'];
wp_redirect( $referer );
exit;
}
}
endif;
remove_filter( 'sanitize_file_name', array( $this, 'change_upload_filename' ), 10 );
remove_filter( 'upload_dir', array( $this, 'change_upload_dir' ) );
......@@ -394,7 +397,8 @@ class Biuro_Contacts_Public {
$_SESSION['employees--s'] = 2;
endif;
$hash = ($_SESSION['employees--name-status'] != 'error' && $_SESSION['employees--phone-status'] != 'error' && $_SESSION['employees--agree-status'] == 'error') ? '#agree' : '#action';
// $hash = ($_SESSION['employees--name-status'] != 'error' && $_SESSION['employees--phone-status'] != 'error' && $_SESSION['employees--agree-status'] == 'error') ? '#agree' : '#action';
$hash = '#action';
if ($_POST['s'] == "1"):
wp_redirect( $referer . $hash );
......@@ -516,7 +520,8 @@ class Biuro_Contacts_Public {
endif;
$hash = ($_SESSION['employers--name-status'] != 'error' && $_SESSION['employers--phone-status'] != 'error' && $_SESSION['employers--agree-status'] == 'error') ? '#agree' : '#action';
// $hash = ($_SESSION['employers--name-status'] != 'error' && $_SESSION['employers--phone-status'] != 'error' && $_SESSION['employers--agree-status'] == 'error') ? '#agree' : '#action';
$hash = '#action';
if ($_POST['s'] == "1"):
wp_redirect( $referer . $hash );
......@@ -699,7 +704,8 @@ class Biuro_Contacts_Public {
$_SESSION['position--step'] = 2;
$_SESSION['position--s'] = 1;
$hash = '#agree';
// $hash = '#agree';
$hash = '#action';
elseif ($_POST['s'] == "2"):
......@@ -731,29 +737,27 @@ class Biuro_Contacts_Public {
$_SESSION[$str . '--' . $key . '-message'] = $validation['message'];
}
$hash = ($_SESSION['position--name-status'] != 'error' && $_SESSION['position--phone-status'] != 'error' && $_SESSION['position--agree-status'] == 'error') ? '#agree' : '#action';
// $hash = ($_SESSION['position--name-status'] != 'error' && $_SESSION['position--phone-status'] != 'error' && $_SESSION['position--agree-status'] == 'error') ? '#agree' : '#action';
$hash = '#action';
if ($canSubmit):
unset($_SESSION['position--step']);
add_filter( 'upload_dir', array( $this, 'change_upload_dir' ) );
add_filter( 'sanitize_file_name', array( $this, 'change_upload_filename' ), 10 );
$allowed_file_types = array('application/pdf', 'application/doc', 'application/docx', 'application/rtf', 'application/txt', 'application/odf', 'application/msword', 'image/jpg', 'image/jpeg', 'image/png');
// Check file types
foreach( $_FILES as $file ) {
// Get the type of the uploaded file. This is returned as "type/extension"
$arr_file_type = wp_check_filetype( basename( $file['name'] ) );
$uploaded_file_type = $arr_file_type['type'];
if( $file['name'] && !in_array( $uploaded_file_type, $allowed_file_types ) ) {
# upload file
if($_FILES && $_FILES['cv'] && $_FILES['cv']['error'] == 0):
$arr_file_type = wp_check_filetype( basename( $_FILES['cv']['name'] ) );
if (!in_array( $arr_file_type['type'], $allowed_file_types ) ) {
$_SESSION['position--cv-status'] = 'error';
$_SESSION['position--cv-message'] = 'Incorrect file'; // __('Incorrect file', 'biuro-contacts');
wp_redirect( $referer );
exit;
}
}
add_filter( 'upload_dir', array( $this, 'change_upload_dir' ) );
add_filter( 'sanitize_file_name', array( $this, 'change_upload_filename' ), 10 );
# upload file
if($_FILES) {
# gali nusirody: 'mimes' => array('csv' => 'text/csv')
$movefile = wp_handle_upload($_FILES['cv'], [
'test_form' => false,
......@@ -763,19 +767,24 @@ class Biuro_Contacts_Public {
if ( $movefile && ! isset( $movefile['error'] ) ) {
$data['cv'] = static::getValue('cv', $movefile['url']);
} else {
$_SESSION['position--cv-error'] = $movefile['error'];
//po klaidos setinimo reikia redirecto?
$_SESSION['position--cv-status'] = 'error';
$_SESSION['position--cv-message'] = $movefile['error'];
wp_redirect( $referer );
exit;
}
}
endif;
remove_filter( 'sanitize_file_name', array( $this, 'change_upload_filename' ), 10 );
remove_filter( 'upload_dir', array( $this, 'change_upload_dir' ) );
unset($_SESSION['position--step']);
$data['referer'] = ($_SESSION['referer'] !== null) ? $_SESSION['referer'] : null;
$insert_id = static::insert_row_to_db($data, array( '%s', '%s', '%s', '%s', '%s', '%s', '%d', '%s', '%d', '%d', '%s', '%s' ));
$_SESSION['employee--id'] = $insert_id;
$_SESSION['employees--id'] = $insert_id;
$_SESSION['position--s'] = 2;
$hash = '';
......
......@@ -32,10 +32,11 @@ if ( ! defined( 'WPINC' ) ) die;
$emailValue = $_SESSION['employees--email-value'];
$emailStatus = $_SESSION['employees--email-status'];
$emailMessage = __($_SESSION['employees--email-message'], 'biuro-contacts');
/*
$agreeValue = $_SESSION['employees--agree-value'];
$agreeStatus = $_SESSION['employees--agree-status'];
$agreeMessage = __($_SESSION['employees--agree-message'], 'biuro-contacts');
*/
?>
<div class="c-form--row">
<label class="c-form--label" for="form-name"><?php _e('Name, surname', 'biuro-contacts'); ?></label>
......@@ -91,6 +92,8 @@ if ( ! defined( 'WPINC' ) ) die;
</div>
</div><!-- .c-form--row -->
<?php
/*
<div class="c-form--row">
<div class="c-form--checkbox-wrap">
<input id="form-agree" type="checkbox" class="c-form--checkbox <?php if ($agreeStatus) { echo "c-form--checkbox--$agreeStatus"; } ?>" name="agree" value="1" <?php if ($agreeValue): ?> checked="checked"<?php endif; ?> <?php if ($nameStatus != 'error' && $phoneStatus != 'error' && $agreeStatus == 'error'): ?> autofocus="autofocus" <?php endif; ?> >
......@@ -102,3 +105,12 @@ if ( ! defined( 'WPINC' ) ) die;
</div>
<?php endif; ?>
</div><!-- .c-form--row -->
*/
?>
<div class="c-form--row">
<div class="c-form--label-infobox">
<?php _e('We process your personal data to offer you jobs. More information at <a href="https://biuro.eu/privacy-en.html" target="_blank" rel="noopener">Personal Data Protection Policy.</a>', 'biuro-contacts'); ?>
<input type="hidden" name="agree" value="1">
</div>
</div><!-- .c-form--row -->
......@@ -21,8 +21,23 @@ if ( ! defined( 'WPINC' ) ) die;
?>
<div class="c-form--row">
<label class="c-form--label" for="form-city"><?php _e('City', 'biuro-contacts'); ?></label>
<div class="c-form--input-wrap">
<input type="text" class="c-form--input" id="form-city" name="city" value="" autofocus="autofocus">
<div class="c-form--input-wrap c-form--autocomplete">
<datalist id="form-cities">
<?php
$cities = get_terms( array(
'taxonomy' => 'city',
'hide_empty' => false,
) );
foreach ( $cities as $city ):
?>
<option value="<?php echo preg_replace('/\D/', '', $city->slug); ?>"><?php echo $city->name; ?></option>
<?php
endforeach;
?>
</datalist>
<input list="form-cities" type="text" class="c-form--input" id="form-city" name="city" value="">
<input type="hidden" id="form-city-id" name="city_id" value="">
</div>
</div><!-- .c-form--row -->
......
......@@ -81,6 +81,8 @@ if ( ! defined( 'WPINC' ) ) die;
</div>
</div><!-- .c-form--row -->
<?php
/*
<div class="c-form--row">
<div class="c-form--checkbox-wrap">
<input id="form-agree" type="checkbox" class="c-form--checkbox <?php if ($agreeStatus) { echo "c-form--checkbox--$agreeStatus"; } ?>" name="agree" value="1" <?php if ($agreeValue): ?> checked="checked"<?php endif; ?> <?php if ($nameStatus != 'error' && $phoneStatus != 'error' && $agreeStatus == 'error'): ?> autofocus="autofocus" <?php endif; ?> >
......@@ -92,3 +94,12 @@ if ( ! defined( 'WPINC' ) ) die;
</div>
<?php endif; ?>
</div><!-- .c-form--row -->
*/
?>
<div class="c-form--row">
<div class="c-form--label-infobox">
<?php _e('We process your personal data for service cooperation. More information at <a href="https://biuro.eu/privacy-en.html" target="_blank" rel="noopener">Personal Data Protection Policy.</a>', 'biuro-contacts'); ?>
<input type="hidden" name="agree" value="1">
</div>
</div><!-- .c-form--row -->
......@@ -35,10 +35,15 @@ if ( ! defined( 'WPINC' ) ) die;
$emailStatus = $_SESSION['position--email-status'];
$emailMessage = __($_SESSION['position--email-message'], 'biuro-contacts');
$cvValue = $_SESSION['position--cv-value'];
$cvStatus = $_SESSION['position--cv-status'];
$cvMessage = __($_SESSION['position--cv-message'], 'biuro-contacts');
/*
$agreeValue = $_SESSION['position--agree-value'];
$agreeStatus = $_SESSION['position--agree-status'];
$agreeMessage = __($_SESSION['position--agree-message'], 'biuro-contacts');
*/
$cvValue = $_SESSION['position--cv-value'];
$cityValue = $_SESSION['position--city-value'];
$cityIDValue = $_SESSION['position--city_id-value'];
......@@ -51,8 +56,8 @@ if ( ! defined( 'WPINC' ) ) die;
$nameValue = $employeeData['name'];
$phoneValue = $employeeData['phone'];
$emailValue = $employeeData['email'];
$city = $employeeData['city'];
# city reiks uzdet turbut?
$cityValue = $employeeData['city'];
$cityIDValue = $employeeData['city_id'];
}
?>
......@@ -96,11 +101,31 @@ if ( ! defined( 'WPINC' ) ) die;
<div class="c-form--row">
<label class="c-form--label" for="form-city"><?php _e('City', 'biuro-contacts'); ?></label>
<div class="c-form--input-wrap">
<input type="text" class="c-form--input" id="form-city" name="city" value="<?php echo $cityValue; ?>">
<div class="c-form--input-wrap c-form--autocomplete">
<datalist id="form-cities">
<?php
$cities = get_terms( array(
'taxonomy' => 'city',
'hide_empty' => false,
) );
foreach ( $cities as $city ):
?>
<option value="<?php echo preg_replace('/\D/', '', $city->slug); ?>"><?php echo $city->name; ?></option>
<?php
endforeach;
?>
</datalist>
<input list="form-cities" type="text" class="c-form--input" id="form-city" name="city" value="<?php echo $cityValue; ?>">
<input type="hidden" id="form-city-id" name="city_id" value="<?php echo $cityIDValue; ?>">
</div>
</div><!-- .c-form--row -->
<div class="c-form--row">
</div><!-- .c-form--row -->
<div id="agree"></div>
<div class="c-form--row">
......@@ -115,8 +140,15 @@ if ( ! defined( 'WPINC' ) ) die;
<div class="c-form--input-wrap">
<input type="file" class="c-form--input" id="form-cv" name="cv" value="" accept="application/pdf, application/doc, application/docx, application/rtf, application/txt, application/odf, application/msword, image/jpg, image/jpeg, image/png">
</div>
<?php if ($cvMessage): ?>
<div class="c-form--validation c-form--validation-<?php echo $cvStatus; ?>">
<?php echo $cvMessage; ?>
</div>
<?php endif; ?>
</div><!-- .c-form--row -->
<?php
/*
<div class="c-form--row">
<div class="c-form--checkbox-wrap">
<input id="form-agree" type="checkbox" class="c-form--checkbox <?php if ($agreeStatus) { echo "c-form--checkbox--$agreeStatus"; } ?>" name="agree" value="1" <?php if ($agreeValue): ?> checked="checked"<?php endif; ?> <?php if ($nameStatus != 'error' && $phoneStatus != 'error' && $agreeStatus == 'error'): ?> autofocus="autofocus" <?php endif; ?> >
......@@ -128,6 +160,15 @@ if ( ! defined( 'WPINC' ) ) die;
</div>
<?php endif; ?>
</div><!-- .c-form--row -->
*/
?>
<div class="c-form--row">
<div class="c-form--label-infobox">
<?php _e('We process your personal data to offer you jobs. More information at <a href="https://biuro.eu/privacy-en.html" target="_blank" rel="noopener">Personal Data Protection Policy.</a>', 'biuro-contacts'); ?>
<input type="hidden" name="agree" value="1">
</div>
</div><!-- .c-form--row -->
<div class="c-form--row">
<div class="c-form--submit-wrap">
......
......@@ -14,7 +14,7 @@
}
.awesomplete {
display: inline-block;
/*display: inline-block;*/
position: relative;
}
......
......@@ -54,6 +54,7 @@
&:after { content: ''; position: absolute; top: -2px; left: -28px; width: 20px; height: 20px; border-radius: 3px; color: var(--color--green); font-size: 22px; cursor: pointer; }
}
.c-form--label-infobox { color: #868F98; font-size: 12px; line-height: 17px; }
/* critical:end */
......@@ -89,3 +90,8 @@
.c-form--validation-success { color: #17DAB9; border-color: #17DAB9; margin-bottom: 10px; }
/*.c-form--validation-warning { color: orange; margin-bottom: 10px; }*/
.c-form--autocomplete {
ul { overflow-x: hidden; max-height: 250px; overflow-y: auto; border: 1px solid #d4d4d4; border-radius: 0 0 3px 3px; }
li { padding: 5px 10px; cursor: pointer; }
}
:root{--color--gray:#7e8683;--color--gray-darker:#2a3644;--color--green:#1fb299;--color--green-darker:#149a83;--color--green-dark:#006957;--color--blue-dark:#1d2a3a;--color--gray-light:#f8f8f8;--typo--font-family:-apple-system,BlinkMacSystemFont,"Segoe UI Light","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;--typo--font-size:1.5rem;--typo--weight-regular:400;--typo--weight-bold:700;--typo--line-height:1.2;--typo--font-face:"Roboto",sans-serif;--layout-width:1210px;--layout-width--small:870px;--layout-width--large:1150px}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}html{box-sizing:border-box}*,:after,:before{box-sizing:inherit}a{color:inherit}body{font-size:14px;line-height:19px;color:#2a3644;color:var(--color--gray-darker);font-family:Roboto,sans-serif;font-family:var(--typo--font-face);background:#f8f8f8;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;min-height:100vh;padding-top:70px}h1{font-size:22px;line-height:29px;margin:0 0 22px}h1,h2{color:#2a3644;font-weight:500}h2{font-size:19px;line-height:25px;margin:0 0 19px}h3{color:#2a3644;font-weight:500;font-size:16px;line-height:20px;margin:0 0 16px}html{min-height:100%;font-size:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0)}.l-body--langing{padding-top:0!important}.l-body--langing .u-fill--logo{fill:#fff!important}.l-inner{max-width:1210px;max-width:var(--layout-width);margin-right:auto;margin-left:auto;padding-right:20px;padding-left:20px}.c-jobs--inner,.c-services,.c-trust--inner,.c-values--inner,.l-inner-small{max-width:870px;max-width:var(--layout-width--small);margin-right:auto;margin-left:auto;padding-right:20px;padding-left:20px}.l-inner--header{display:-webkit-flex;display:flex;-webkit-flex-direction:row;flex-direction:row;-webkit-align-items:center;align-items:center}.l-header{background:#fff;position:fixed}.l-header,.l-header--langing{height:70px;top:0;left:0;width:100%;z-index:300}.l-header--langing{position:absolute}.l-content{max-width:1150px;max-width:var(--layout-width--large);padding-right:20px;padding-left:20px;margin:0 auto}.l-content--position{position:relative;padding:10px 10px 0}.l-content--position:before{content:"";position:absolute;top:0;left:0;height:244px;width:100%;background:linear-gradient(358.45deg,#3c7e9e,#1fb299)}.l-content--position-inner{position:relative;max-width:970px;margin:0 auto;border-radius:3px;background-color:#fff;box-shadow:0 1px 31px -23px #6a7481}.l-content--position-inner .l-main{padding:20px}.l-content--heading{display:block;padding-top:20px;padding-bottom:15px}.l-content--heading h1{margin:0;padding:0;color:#2a3644;font-size:25px;font-weight:500;line-height:29px}.l-content--main{width:100%;-webkit-flex:1 1 auto;flex:1 1 auto;max-width:1070px;padding:35px 20px 90px;margin:0 auto}.l-content--main h1{color:#2a3644;font-weight:500;font-size:22px;line-height:29px}.l-content--main h2{color:#2a3644;font-weight:500;font-size:19px;line-height:25px}.l-content--main h3{color:#2a3644;font-weight:500;font-size:16px;line-height:20px}.l-content--divisions,.l-content--regions{width:100%;max-width:1040px;padding-right:20px;padding-left:20px;margin:0 auto 40px}.l-aside--position{background-color:#f6f9ff}.l-aside--divisions,.l-aside--regions{z-index:50}.l-aside--close{position:fixed;top:0;right:265px;padding:14px 17px;cursor:pointer}.l-main{-webkit-flex:1 1 100%;flex:1 1 100%}.l-main--content{background-color:#fff;padding:30px 20px}.l-main--content img{max-width:100%;height:auto}.l-main--divisions,.l-main--regions{-webkit-flex:1 1 600px;flex:1 1 600px}.l-footer{background:#1d2a3a;background:var(--color--blue-dark);color:#fff;padding-top:20px}.l-map{height:330px;margin-bottom:35px}.l-nav--close{top:10px;right:10px;padding:20px}.l-nav--close,.l-nav--open{position:absolute;cursor:pointer}.l-nav--open{top:0;right:0;padding:24px 20px}.l-section{padding:20px 0}.l-section--search-page{background-color:#111d1e}.l-section--vdb{background-color:#086335}.l-section--front-page{margin-bottom:2px}.l-section--front-page .l-section--inner,.l-section--sales-page .l-section--inner{max-width:870px;padding-right:20px;padding-left:20px}.l-section--inner{width:100%;max-width:1030px;margin:0 auto}.l-section--landing-1{display:-webkit-flex;display:flex;-webkit-align-items:flex-end;align-items:flex-end;padding:0!important;background-color:#515e70;height:240px}.o-btn{display:inline-block;border:0;padding:12px 24px 11px;cursor:pointer;border-radius:3px;font-weight:500;text-decoration:none;font-family:inherit}.o-nav{margin:0;padding:0;list-style:none}.c-btn--header{font-size:14px;font-weight:500}.c-btn--main{color:#fff;background:#1fb299;background:var(--color--green)}.c-btn--main:hover{background:#149a83;background:var(--color--green-darker)}.c-btn--vdb{color:#fff;background:#ff7046}.c-btn--vdb:hover{background:#ff501d}.c-btn--alt{padding:10px 15px;background:#e8f0ff;color:#004ed4}.c-btn--alt:after{float:right;margin:6px 0 0 35px;content:"";width:7px;height:7px;border:1px solid #004ed4;border-width:2px 2px 0 0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.c-btn--alt:hover{background-color:#dde6f5}.c-btn--fill{width:100%}.c-btn--search{min-width:180px;border-radius:0 3px 3px 0;text-align:center}.c-btn--search-small{margin:9px;min-width:133px;text-align:center}.c-btn--slim{color:#14a28a;background:none;font-weight:500;text-align:center;border:2px solid #1fb299;border-radius:3px}.c-btn--slim:hover{border-color:#149a83;border-color:var(--color--green-darker);background-color:#149a83;background-color:var(--color--green-darker);color:#fff}.c-btn--filter{color:#2a3644;font-size:15px;line-height:26px;text-align:center;background:#fff;border-radius:3px;padding:6px 15px 6px 12px}.c-cookies-warning{display:none}.c-contact{padding:20px 0}.c-contact--inner{max-width:1000px;padding:0 10px;margin:0 auto}.c-contact--content{color:#2a3644;font-weight:500;line-height:29px;padding:15px 0 20px 15px}.c-contact--content h3{margin:0 0 15px;font-size:25px;color:#2a3644;font-weight:500}.c-contact--content p{margin:0 0 20px}.c-contact--content img{max-width:100%;height:auto}.c-contact--form{max-width:420px}.c-contact-landing-1{padding:10px 0}.c-contact-landing-1--inner{max-width:1000px;padding:0 10px;margin:0 auto}.c-contact-landing-1--content{color:#2a3644;font-weight:500;line-height:29px;padding:15px 0 20px 15px}.c-contact-landing-1--content img{max-width:100%;height:auto}.c-contact-landing-1--img{margin-top:40px}.c-contact-landing-1--form{max-width:420px}.c-divisions{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}.c-division{-webkit-flex:0 0 auto;flex:0 0 auto;height:30px;margin:0 10px 10px 0;padding:0 20px;background-color:#e8f0ff;line-height:30px;white-space:nowrap}.c-feedbacks{padding:30px 0;background:linear-gradient(134.06deg,#fff,#cbe2ec)}.c-feedbacks--inner{position:relative;overflow:hidden;width:340px;height:250px;margin:0 auto;max-width:100%}.c-feedbacks--heading{color:#2a3644;margin:0 0 20px;padding:0 30px;font-size:18px;line-height:26px;font-weight:500;text-align:center}.c-feedbacks--section{padding-top:40px}.c-feedbacks--section-inner{position:relative;height:110px;width:320px;margin:0 5px;padding:60px 0 0;border-radius:23px;background-color:#fff}.c-footer-section:first-child{-webkit-flex:5 0 15%;flex:5 0 15%}.c-footer-section:nth-child(4){-webkit-flex:1 0 15%;flex:1 0 15%}.c-footer-separator{margin-bottom:25px;border-color:#fff;border-width:2px 0 0;opacity:.29}.c-form{position:relative}.c-form--action{position:absolute;top:-88px;left:-9999px;width:1px}.c-form--action-position{top:-58px}.c-form--employees,.c-form--employers{box-shadow:0 1px 31px -23px #6a7481}.c-form--employees,.c-form--employers,.c-form--position{padding:28px 20px 20px;border-radius:3px;background-color:#fff}.c-form--row{position:relative;margin-bottom:20px}.c-form--label{display:block;color:#2a3644;font-size:15px;line-height:18px;margin-bottom:4px;font-weight:500}.c-form--input{width:100%;padding:10px;background:none;border:1px solid #d4d4d4;border-radius:3px;font-size:15px;font-family:inherit}.c-form--input:focus{border-color:#d4d4d4!important}.c-form--textarea{width:100%;padding:10px;background:none;border:1px solid #d4d4d4;border-radius:3px;font-size:15px;font-family:inherit}.c-form--textarea:focus{border-color:#d4d4d4!important}.c-form--submit-wrap{padding:10px 0}.c-form--checkbox-wrap{display:-webkit-flex;display:flex;position:relative}.c-form--checkbox{position:absolute;top:0;left:0;visibility:hidden}.c-form--checkbox:checked+label:before{border-color:#d4d4d4}.c-form--checkbox:checked+label:after{content:"✔"}.c-form--label-checkbox{position:relative;margin:0 0 0 31px;color:#868f98;font-size:12px;line-height:17px}.c-form--label-checkbox:before{content:"";position:absolute;top:0;left:-31px;height:18px;width:18px;border:1px solid #d4d4d4;border-radius:3px;cursor:pointer}.c-form--label-checkbox:after{content:"";position:absolute;top:-2px;left:-28px;width:20px;height:20px;border-radius:3px;color:#1fb299;color:var(--color--green);font-size:22px;cursor:pointer}.c-heading{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-justify-content:center;justify-content:center}.c-heading h1{margin:0 0 18px;padding:0;color:#2a3644;font-size:21px;font-weight:500;line-height:32px}.c-heading--landing-1 h1{max-width:230px;color:#fff;font-size:21px;line-height:32px;padding:0 20px}.c-ico--search{margin:0 3px -3px 0}.c-ico--location{left:18px}.c-ico--area,.c-ico--location{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);margin-top:-1px}.c-ico--area{left:14px}.c-ico--phone{float:left;margin:3px 10px 0 1px}.c-ico--email{float:left;margin:6px 10px 0 0}.c-ico--address{float:left;margin:3px 12px 0 3px}.c-ico--filter{float:left;margin:3px 15px 0 3px}.c-ico--time{float:left;margin:2px 20px 0 0}.c-ico--offer{float:left;margin:1px 23px 0 0}.c-ico--easy{float:left;margin:0 21px 0 0}.c-job--title{margin:0 0 15px;padding:0;color:#2a3644;font-weight:500;font-size:22px;line-height:29px}.c-job--content{line-height:25px;color:#2a3644}.c-job--content h3{color:#069980;font-size:19px;font-weight:700;margin:0 0 3px;padding:0}.c-job--content h3:nth-child(n+1){margin-top:30px}.c-job--content ul{margin:0;padding:0;list-style:none}.c-job--content li:before{content:"";display:inline-block;width:14px;height:8px;margin:0 5px 1px 0;background:url(/wp-content/themes/biuro/i/ico--job-arrow.svg)}.c-job--action{padding:30px 0}.c-job-contacts ul{margin:0;padding:0;list-style:none}.c-job-contacts li{line-height:28px}.c-job-contacts a{overflow:hidden;text-decoration:none}.c-job-contacts a:hover{text-decoration:underline}.c-jobs--table{margin:0 0 20px}.c-jobs--headline{margin:0 0 25px;padding:20px 20px 0}.c-jobs--col{background:#fff;vertical-align:middle;color:#868c93;padding:10px 15px}.c-jobs--anchor{display:block;padding:4px 0;color:#004ed4;font-weight:500;line-height:18px;text-decoration:none}.c-jobs--more{margin-bottom:50px}.c-jobs-section{margin:0 20px 20px 0;padding:28px 28px 23px}.c-jobs-section--heading{margin:0 0 15px}.c-jobs-section--list{margin:0;padding:0;list-style:none}.c-logo{width:81px;margin-right:89px;padding:11px 0;text-decoration:none}.c-logo,.c-logo--svg{display:block}.c-modal{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(42,54,68,.86);z-index:8000}.c-modal--inner{position:absolute;top:50%;left:50%;max-width:94%;width:606px;height:314px;padding:56px 20px 20px;background-color:#fff;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);text-align:center}.c-modal--inner svg{display:block;margin:0 auto 23px}.c-modal--inner p{margin-bottom:20px}.c-modal--inner .c-btn--main{min-width:208px}.c-nav--main{display:-webkit-flex;display:flex;font-size:14px}.c-nav--sub{display:none}.c-nav--main-item{position:relative;z-index:500}.c-nav--main-anchor{display:block;padding:5px 0 4px;font-weight:500;color:#fff;text-decoration:none}.c-nav--lang-wrap{width:74px;height:32px}.c-nav--lang-item{padding:6px 0}.c-nav--lang-item:nth-child(n+2){display:none}.c-phone{white-space:nowrap;padding:12px 0 10px;text-decoration:none;color:inherit;font-weight:500;font-size:14px}.c-phone svg{float:left;margin:-6px 5px 0 0}.c-search{display:-webkit-flex;display:flex;background-color:#fff;border-radius:3px}.c-search--col{position:relative;-webkit-flex:1 1 auto;flex:1 1 auto;background-color:#fff}.c-search--col .awesomplete{position:absolute;top:0;right:0;left:0;height:100%;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column}.c-search--col ul{top:57px;padding-top:10px;overflow-x:hidden;max-height:350px;overflow-y:auto}.c-search--col li{padding:10px 15px;margin-bottom:10px;cursor:pointer}.c-search--col li:hover{color:#000}.c-search--col-location{border-radius:3px 3px 0 0}.c-search--input{border:0;padding:0 10px 0 44px;margin:0;height:60px;line-height:60px;background:none}.c-search--input:focus{outline:none}.c-search--filters{padding:10px;text-align:right}.l-section--front-page .c-search{box-shadow:6px 10px 48px 0 #d4dbe4}.c-search--reset{display:none}.c-sections{max-width:1000px;margin-right:auto;margin-left:auto;-webkit-align-items:center;align-items:center;padding:20px}.c-sections--item{position:relative;height:211px;margin-bottom:30px}.c-services{padding:20px}.c-services--item{position:relative;height:245px}.c-services--toggle{display:none}.c-share{margin-bottom:30px}.c-share--heading{margin:0;padding:20px 0 10px;font-weight:500;text-align:center}.c-share--option,.c-share--options{display:-webkit-flex;display:flex;-webkit-justify-content:center;justify-content:center}.c-share--option{height:36px;-webkit-flex:0 0 50px;flex:0 0 50px;border-radius:3px;margin:0 3px;text-decoration:none;-webkit-align-items:center;align-items:center}.c-share--option-facebook{background-color:#4367b0}.c-share--option-facebook:hover{background-color:#2f4f90}.c-share--option-messenger{background-color:#1983fa}.c-share--option-messenger:hover{background-color:#1b6fcc}.c-share--option-email{background-color:#2a3644}.c-share--option-email:hover{background-color:#000}.c-share--option-copy{background-color:#858585}.c-share--option-copy:hover{background-color:#5c5c5c}.c-share--option-phone{background-color:#25d366}.c-share--option-phone:hover{background-color:#1baf52}.c-trust{background:linear-gradient(134.06deg,#70b7d5,#7bcbcf)}.c-trust--inner{-webkit-align-items:center;align-items:center;padding-top:25px;padding-bottom:45px}.c-trust--heading{-webkit-flex:1 1 auto;flex:1 1 auto;margin:0 0 35px;color:#fff}.c-trust--logos{-webkit-flex:10 1 auto;flex:10 1 auto;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-justify-content:space-between;justify-content:space-between;-webkit-align-items:center;align-items:center}.c-values--inner{padding-top:20px;padding-bottom:20px}.c-values--section{max-width:250px}.c-values--heading{min-height:34px;font-size:35px;line-height:41px}.c-vdb--top{min-height:68px;background:#02bf5f;padding:14px 0}.c-vdb--top-inner{max-width:1050px;margin:0 auto;padding:0 10px;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center}.c-vdb--top-img{-webkit-flex:0 0 39px;flex:0 0 39px;margin-right:38px}.c-vdb--top-content{-webkit-flex:1 1 auto;flex:1 1 auto;color:#fff;margin:0;padding:0 10px 0 0;font-size:18px;line-height:25px}.c-vdb--section{margin:0 20px 20px 0;padding:28px 28px 23px;border-radius:3px;background-color:#fff}.c-vdb--section-bottom{max-width:360px;margin:0 auto 20px;border:20px solid #f8f8f8}.c-vdb--section-img{display:block;margin:0 auto 15px}.c-vdb--section-heading{font-size:21px;font-weight:500;line-height:27px}.c-vdb--section-content{line-height:23px}.c-vdb--bottom{min-height:68px;background:#4b5561 url(/wp-content/themes/biuro/i/vdb/bottom.png) no-repeat 50% 50%;background-size:cover;padding:46px 0}.c-vdb--bottom-inner{max-width:1050px;margin:0 auto;padding:0 10px;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center}.c-vdb--bottom-heading{margin:0 38px 0 0;padding:0;color:#fff;font-size:36px;line-height:42px;font-weight:500}.c-vdb--bottom-content{color:#fff;margin:0;padding:0;line-height:23px}.u-fill--inherit{fill:currentColor}.u-fill--logo{fill:#149a83}.u-hidden{display:none}.visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}@media (min-width:60em){body{padding-top:117px;font-size:1.5rem;font-size:var(--typo--font-size);line-height:1.2;line-height:var(--typo--line-height)}h1{font-size:25px;line-height:38px;margin:0 0 25px}h2{font-size:21px;margin:0 0 21px}h2,h3{line-height:30px}h3{font-size:18px;margin:0 0 18px}.l-header{margin-bottom:47px}.l-header:before{content:"";position:absolute;top:100%;left:0;width:100%;height:47px;background:#1d2a3a;background:var(--color--blue-dark)}.l-content{display:-webkit-flex;display:flex}.l-content--position{padding:40px 20px}.l-content--position-inner{display:-webkit-flex;display:flex;margin:0 auto 140px}.l-content--position-inner .l-main{padding:70px 55px 40px 57px}.l-content--heading{padding-left:320px;padding-top:40px;padding-bottom:25px}.l-content--main h1{font-size:25px;line-height:38px}.l-content--main h2{font-size:21px;line-height:30px}.l-content--main h3{font-size:18px;line-height:30px}.l-content--divisions,.l-content--regions{display:-webkit-flex;display:flex;margin:0 auto 200px}.l-aside{-webkit-flex:0 0 280px;flex:0 0 280px}.l-aside--position{-webkit-flex:0 0 400px;flex:0 0 400px;padding:70px 40px}.l-aside--divisions,.l-aside--regions{-webkit-flex:0 0 385px;flex:0 0 385px;margin:-315px 0 0 55px}.l-aside--close{display:none}.l-main--content{padding:40px 50px}.l-footer{padding-top:70px}.l-nav--wrap{-webkit-flex:1 1 100%;flex:1 1 100%;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center}.l-nav{-webkit-flex:1 1 auto;flex:1 1 auto}.l-nav--close,.l-nav--open{display:none}.l-section{padding:30px 0}.l-section--front-page{height:380px;margin-bottom:92px}.l-section--sales-page{height:380px}.l-section--landing-1{height:348px}.c-btn--header{margin-right:28px}.c-contact{padding:50px 0}.c-contact--inner{display:-webkit-flex;display:flex;-webkit-justify-content:space-between;justify-content:space-between}.c-contact--content{max-width:500px;padding:75px 0 0 90px}.c-contact--content,.c-contact--form{-webkit-flex:1 1 40%;flex:1 1 40%}.c-contact-landing-1{padding:30px 0 40px}.c-contact-landing-1--inner{display:-webkit-flex;display:flex;-webkit-justify-content:space-between;justify-content:space-between}.c-contact-landing-1--content{-webkit-flex:1 1 40%;flex:1 1 40%;max-width:500px;padding:0 0 0 90px}.c-contact-landing-1--form{-webkit-flex:1 1 40%;flex:1 1 40%;margin-top:-200px}.c-feedbacks{padding:50px 0 70px}.c-feedbacks--inner{width:640px;height:300px}.c-feedbacks--heading{font-size:25px;line-height:29px;margin:0 0 40px}.c-feedbacks--section-inner{height:140px;width:574px;margin:0 33px}.c-footer-sections{display:-webkit-flex;display:flex}.c-footer-section{-webkit-flex:10 0 15%;flex:10 0 15%}.c-form--action{top:-128px}.c-form--employees,.c-form--employers{padding:38px 35px 20px}.c-form--position{margin:-40px -15px 0;box-shadow:0 1px 31px -23px #6a7481}.c-heading h1{font-size:34px;font-weight:700;line-height:51px}.c-heading--front-page,.c-heading--sales-page{height:320px}.c-heading--landing-1 h1{max-width:500px;font-size:31px;line-height:45px}.c-heading--landing-1{padding-left:110px}.c-job--title{font-size:30px;line-height:39px;margin:0 0 40px}.c-jobs--col{border-bottom:1px solid #f8f8f8;border-bottom:1px solid var(--color--gray-light)}.c-jobs--more{margin-bottom:70px}.c-nav--main-item{height:70px;margin-right:26px;padding:23px 0 0}.c-nav--main-anchor{color:#1d2a3a;color:var(--color--blue-dark)}.c-nav--lang-wrap{position:relative;width:70px}.c-phone{margin-right:35px}.c-search{height:60px}.c-search--col-location{border-right:1px solid rgba(178,182,187,.46);border-radius:3px 0 0 3px}.c-search--filters{display:none}.l-section--front-page .c-search{height:70px}.l-section--front-page .c-search--input{height:70px;line-height:70px}.c-sections{padding:50px 20px 135px}.c-sections--inner{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-justify-content:space-between;justify-content:space-between}.c-sections--item{-webkit-flex:0 0 300px;flex:0 0 300px}.c-services{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-align-items:center;align-items:center;padding-top:64px;padding-bottom:64px;-webkit-justify-content:space-between;justify-content:space-between}.c-services--item{-webkit-flex:0 0 253px;flex:0 0 253px}.c-trust--inner{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;padding-top:64px;padding-bottom:64px}.c-trust--heading{margin:0}.c-trust--logos{-webkit-justify-content:space-around;justify-content:space-around}.c-values--inner{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-justify-content:space-between;justify-content:space-between;padding-top:60px;padding-bottom:40px}.c-values--section{-webkit-flex:0 0 40%;flex:0 0 40%;max-width:280px}.c-values--heading{min-height:66px;font-size:45px;line-height:53px}.c-vdb--section-bottom{display:none}}@media (max-width:59.999em){.l-inner--header{-webkit-align-items:flex-start;align-items:flex-start}.l-content--position{background:#f6f9ff;-webkit-flex:1 1 auto;flex:1 1 auto}.l-content--position+.l-footer{display:none}.l-content--main{padding:10px}.l-aside--divisions,.l-aside--regions{max-width:440px;margin:0 auto}.l-aside--search{display:none;position:fixed;top:0;right:0;width:310px;padding-left:40px;height:100%;overflow:auto;z-index:20}.l-aside--search:before{content:"";position:fixed;top:0;width:270px;right:0;bottom:0;background:#fff}.l-nav--wrap{display:none;position:fixed;top:0;left:0;width:100%;height:100%;overflow-y:auto;opacity:.97;background-color:#1d2a3a;z-index:500;border:1px solid #000;overflow:hidden;text-align:center;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center}.l-nav{width:100%}.l-section--front-page{height:179px;margin-bottom:185px}.c-btn--search{-webkit-flex:0 0 60px;flex:0 0 60px;border-radius:0 0 3px 3px}.c-contact,.c-contact-landing-1{max-width:440px;margin:0 auto}.c-divisions{margin-bottom:20px}.c-heading h1{margin:0 0 36px}.c-heading p{display:none}.c-heading--front-page h1{max-width:117px}.c-heading--landing-1{max-width:440px;margin:0 auto}.c-job--content{font-size:15px}.c-job--content h3{font-size:17px}.c-job--action{display:none}.c-job-contacts{padding-bottom:40px;margin:0 10px}.c-job-contacts li{padding:7px 0}.c-jobs--headline{text-align:center}.c-jobs--col{float:left}.c-jobs--col-position{width:100%}.c-jobs--col-city,.c-jobs--col-valid{width:50%}.c-nav--main{margin:115px 0 180px;padding:0 20px;width:100%;-webkit-justify-content:space-between;justify-content:space-between}.c-nav--main-item:first-child{text-align:left}.c-nav--main-item:first-child .c-nav--sub{left:0;right:auto}.c-nav--main-item{position:relative;-webkit-flex:0 0 auto;flex:0 0 auto;text-align:right}.c-nav--lang-wrap{position:absolute;top:20px;left:20px}.c-phone{color:#fff;margin:0 0 30px}.c-search{-webkit-flex-direction:column;flex-direction:column;margin:0 20px}.l-section--search-page{padding:10px 0}.l-section--search-page .c-search{-webkit-flex-direction:row;flex-direction:row;margin:0 10px;border-radius:3px}.l-section--search-page .c-search--col-location{display:none}.l-section--search-page .c-search--col-keyword{-webkit-flex:1 1 auto;flex:1 1 auto;border-radius:3px 0 0 3px}.l-section--search-page .c-search--btn-text{display:none}.l-section--search-page .c-btn--search-small{min-width:35px;margin:5px;padding:9px 7px 8px 8px}.l-section--search-page .c-search--input{height:45px;padding:0 0 0 15px}.l-section--search-page .c-search--col ul{top:45px}.l-section--search-page .c-ico--area{display:none}.c-search--col{-webkit-flex:0 0 60px;flex:0 0 60px}.c-search--col-keyword,.c-search--col-location{border-bottom:1px solid rgba(178,182,187,.46)}.l-section--front-page .c-search,.l-section--front-page .c-search--input{margin:0}.c-search--reset{position:relative;display:block;padding-top:20px;text-align:center}.c-sections--item{max-width:380px;margin:0 auto 30px}.c-services--item{max-width:380px;margin:0 auto 20px}.c-trust--heading{text-align:center;font-size:18px}.c-values--inner{max-width:400px}.c-vdb--top-img{margin-right:18px}.c-vdb--top-content{font-size:16px;line-height:19px}.c-vdb--section-aside{display:none}.c-vdb--bottom-heading{margin:0 18px 0 0}}
\ No newline at end of file
:root{--color--gray:#7e8683;--color--gray-darker:#2a3644;--color--green:#1fb299;--color--green-darker:#149a83;--color--green-dark:#006957;--color--blue-dark:#1d2a3a;--color--gray-light:#f8f8f8;--typo--font-family:-apple-system,BlinkMacSystemFont,"Segoe UI Light","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;--typo--font-size:1.5rem;--typo--weight-regular:400;--typo--weight-bold:700;--typo--line-height:1.2;--typo--font-face:"Roboto",sans-serif;--layout-width:1210px;--layout-width--small:870px;--layout-width--large:1150px}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}html{box-sizing:border-box}*,:after,:before{box-sizing:inherit}a{color:inherit}body{font-size:14px;line-height:19px;color:#2a3644;color:var(--color--gray-darker);font-family:Roboto,sans-serif;font-family:var(--typo--font-face);background:#f8f8f8;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;min-height:100vh;padding-top:70px}h1{font-size:22px;line-height:29px;margin:0 0 22px}h1,h2{color:#2a3644;font-weight:500}h2{font-size:19px;line-height:25px;margin:0 0 19px}h3{color:#2a3644;font-weight:500;font-size:16px;line-height:20px;margin:0 0 16px}html{min-height:100%;font-size:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0)}.l-body--langing{padding-top:0!important}.l-body--langing .u-fill--logo{fill:#fff!important}.l-inner{max-width:1210px;max-width:var(--layout-width);margin-right:auto;margin-left:auto;padding-right:20px;padding-left:20px}.c-jobs--inner,.c-services,.c-trust--inner,.c-values--inner,.l-inner-small{max-width:870px;max-width:var(--layout-width--small);margin-right:auto;margin-left:auto;padding-right:20px;padding-left:20px}.l-inner--header{display:-webkit-flex;display:flex;-webkit-flex-direction:row;flex-direction:row;-webkit-align-items:center;align-items:center}.l-header{background:#fff;position:fixed}.l-header,.l-header--langing{height:70px;top:0;left:0;width:100%;z-index:300}.l-header--langing{position:absolute}.l-content{max-width:1150px;max-width:var(--layout-width--large);padding-right:20px;padding-left:20px;margin:0 auto}.l-content--position{position:relative;padding:10px 10px 0}.l-content--position:before{content:"";position:absolute;top:0;left:0;height:244px;width:100%;background:linear-gradient(358.45deg,#3c7e9e,#1fb299)}.l-content--position-inner{position:relative;max-width:970px;margin:0 auto;border-radius:3px;background-color:#fff;box-shadow:0 1px 31px -23px #6a7481}.l-content--position-inner .l-main{padding:20px}.l-content--heading{display:block;padding-top:20px;padding-bottom:15px}.l-content--heading h1{margin:0;padding:0;color:#2a3644;font-size:25px;font-weight:500;line-height:29px}.l-content--main{width:100%;-webkit-flex:1 1 auto;flex:1 1 auto;max-width:1070px;padding:35px 20px 90px;margin:0 auto}.l-content--main h1{color:#2a3644;font-weight:500;font-size:22px;line-height:29px}.l-content--main h2{color:#2a3644;font-weight:500;font-size:19px;line-height:25px}.l-content--main h3{color:#2a3644;font-weight:500;font-size:16px;line-height:20px}.l-content--divisions,.l-content--regions{width:100%;max-width:1040px;padding-right:20px;padding-left:20px;margin:0 auto 40px}.l-aside--position{background-color:#f6f9ff}.l-aside--divisions,.l-aside--regions{z-index:50}.l-aside--close{position:fixed;top:0;right:265px;padding:14px 17px;cursor:pointer}.l-main{-webkit-flex:1 1 100%;flex:1 1 100%}.l-main--content{background-color:#fff;padding:30px 20px}.l-main--content img{max-width:100%;height:auto}.l-main--divisions,.l-main--regions{-webkit-flex:1 1 600px;flex:1 1 600px}.l-footer{background:#1d2a3a;background:var(--color--blue-dark);color:#fff;padding-top:20px}.l-map{height:330px;margin-bottom:35px}.l-nav--close{top:10px;right:10px;padding:20px}.l-nav--close,.l-nav--open{position:absolute;cursor:pointer}.l-nav--open{top:0;right:0;padding:24px 20px}.l-section{padding:20px 0}.l-section--search-page{background-color:#111d1e}.l-section--vdb{background-color:#086335}.l-section--front-page{margin-bottom:2px}.l-section--front-page .l-section--inner,.l-section--sales-page .l-section--inner{max-width:870px;padding-right:20px;padding-left:20px}.l-section--inner{width:100%;max-width:1030px;margin:0 auto}.l-section--landing-1{display:-webkit-flex;display:flex;-webkit-align-items:flex-end;align-items:flex-end;padding:0!important;background-color:#515e70;height:240px}.o-btn{display:inline-block;border:0;padding:12px 24px 11px;cursor:pointer;border-radius:3px;font-weight:500;text-decoration:none;font-family:inherit}.o-nav{margin:0;padding:0;list-style:none}.c-btn--header{font-size:14px;font-weight:500}.c-btn--main{color:#fff;background:#1fb299;background:var(--color--green)}.c-btn--main:hover{background:#149a83;background:var(--color--green-darker)}.c-btn--vdb{color:#fff;background:#ff7046}.c-btn--vdb:hover{background:#ff501d}.c-btn--alt{padding:10px 15px;background:#e8f0ff;color:#004ed4}.c-btn--alt:after{float:right;margin:6px 0 0 35px;content:"";width:7px;height:7px;border:1px solid #004ed4;border-width:2px 2px 0 0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.c-btn--alt:hover{background-color:#dde6f5}.c-btn--fill{width:100%}.c-btn--search{min-width:180px;border-radius:0 3px 3px 0;text-align:center}.c-btn--search-small{margin:9px;min-width:133px;text-align:center}.c-btn--slim{color:#14a28a;background:none;font-weight:500;text-align:center;border:2px solid #1fb299;border-radius:3px}.c-btn--slim:hover{border-color:#149a83;border-color:var(--color--green-darker);background-color:#149a83;background-color:var(--color--green-darker);color:#fff}.c-btn--filter{color:#2a3644;font-size:15px;line-height:26px;text-align:center;background:#fff;border-radius:3px;padding:6px 15px 6px 12px}.c-cookies-warning{display:none}.c-contact{padding:20px 0}.c-contact--inner{max-width:1000px;padding:0 10px;margin:0 auto}.c-contact--content{color:#2a3644;font-weight:500;line-height:29px;padding:15px 0 20px 15px}.c-contact--content h3{margin:0 0 15px;font-size:25px;color:#2a3644;font-weight:500}.c-contact--content p{margin:0 0 20px}.c-contact--content img{max-width:100%;height:auto}.c-contact--form{max-width:420px}.c-contact-landing-1{padding:10px 0}.c-contact-landing-1--inner{max-width:1000px;padding:0 10px;margin:0 auto}.c-contact-landing-1--content{color:#2a3644;font-weight:500;line-height:29px;padding:15px 0 20px 15px}.c-contact-landing-1--content img{max-width:100%;height:auto}.c-contact-landing-1--img{margin-top:40px}.c-contact-landing-1--form{max-width:420px}.c-divisions{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}.c-division{-webkit-flex:0 0 auto;flex:0 0 auto;height:30px;margin:0 10px 10px 0;padding:0 20px;background-color:#e8f0ff;line-height:30px;white-space:nowrap}.c-feedbacks{padding:30px 0;background:linear-gradient(134.06deg,#fff,#cbe2ec)}.c-feedbacks--inner{position:relative;overflow:hidden;width:340px;height:250px;margin:0 auto;max-width:100%}.c-feedbacks--heading{color:#2a3644;margin:0 0 20px;padding:0 30px;font-size:18px;line-height:26px;font-weight:500;text-align:center}.c-feedbacks--section{padding-top:40px}.c-feedbacks--section-inner{position:relative;height:110px;width:320px;margin:0 5px;padding:60px 0 0;border-radius:23px;background-color:#fff}.c-footer-section:first-child{-webkit-flex:5 0 15%;flex:5 0 15%}.c-footer-section:nth-child(4){-webkit-flex:1 0 15%;flex:1 0 15%}.c-footer-separator{margin-bottom:25px;border-color:#fff;border-width:2px 0 0;opacity:.29}.c-form{position:relative}.c-form--action{position:absolute;top:-88px;left:-9999px;width:1px}.c-form--action-position{top:-58px}.c-form--employees,.c-form--employers{box-shadow:0 1px 31px -23px #6a7481}.c-form--employees,.c-form--employers,.c-form--position{padding:28px 20px 20px;border-radius:3px;background-color:#fff}.c-form--row{position:relative;margin-bottom:20px}.c-form--label{display:block;color:#2a3644;font-size:15px;line-height:18px;margin-bottom:4px;font-weight:500}.c-form--input{width:100%;padding:10px;background:none;border:1px solid #d4d4d4;border-radius:3px;font-size:15px;font-family:inherit}.c-form--input:focus{border-color:#d4d4d4!important}.c-form--textarea{width:100%;padding:10px;background:none;border:1px solid #d4d4d4;border-radius:3px;font-size:15px;font-family:inherit}.c-form--textarea:focus{border-color:#d4d4d4!important}.c-form--submit-wrap{padding:10px 0}.c-form--checkbox-wrap{display:-webkit-flex;display:flex;position:relative}.c-form--checkbox{position:absolute;top:0;left:0;visibility:hidden}.c-form--checkbox:checked+label:before{border-color:#d4d4d4}.c-form--checkbox:checked+label:after{content:"✔"}.c-form--label-checkbox{position:relative;margin:0 0 0 31px;color:#868f98;font-size:12px;line-height:17px}.c-form--label-checkbox:before{content:"";position:absolute;top:0;left:-31px;height:18px;width:18px;border:1px solid #d4d4d4;border-radius:3px;cursor:pointer}.c-form--label-checkbox:after{content:"";position:absolute;top:-2px;left:-28px;width:20px;height:20px;border-radius:3px;color:#1fb299;color:var(--color--green);font-size:22px;cursor:pointer}.c-form--label-infobox{color:#868f98;font-size:12px;line-height:17px}.c-heading{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-justify-content:center;justify-content:center}.c-heading h1{margin:0 0 18px;padding:0;color:#2a3644;font-size:21px;font-weight:500;line-height:32px}.c-heading--landing-1 h1{max-width:230px;color:#fff;font-size:21px;line-height:32px;padding:0 20px}.c-ico--search{margin:0 3px -3px 0}.c-ico--location{left:18px}.c-ico--area,.c-ico--location{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);margin-top:-1px}.c-ico--area{left:14px}.c-ico--phone{float:left;margin:3px 10px 0 1px}.c-ico--email{float:left;margin:6px 10px 0 0}.c-ico--address{float:left;margin:3px 12px 0 3px}.c-ico--filter{float:left;margin:3px 15px 0 3px}.c-ico--time{float:left;margin:2px 20px 0 0}.c-ico--offer{float:left;margin:1px 23px 0 0}.c-ico--easy{float:left;margin:0 21px 0 0}.c-job--title{margin:0 0 15px;padding:0;color:#2a3644;font-weight:500;font-size:22px;line-height:29px}.c-job--content{line-height:25px;color:#2a3644}.c-job--content h3{color:#069980;font-size:19px;font-weight:700;margin:0 0 3px;padding:0}.c-job--content h3:nth-child(n+1){margin-top:30px}.c-job--content ul{margin:0;padding:0;list-style:none}.c-job--content li:before{content:"";display:inline-block;width:14px;height:8px;margin:0 5px 1px 0;background:url(/wp-content/themes/biuro/i/ico--job-arrow.svg)}.c-job--action{padding:30px 0}.c-job-contacts ul{margin:0;padding:0;list-style:none}.c-job-contacts li{line-height:28px}.c-job-contacts a{overflow:hidden;text-decoration:none}.c-job-contacts a:hover{text-decoration:underline}.c-jobs--table{margin:0 0 20px}.c-jobs--headline{margin:0 0 25px;padding:20px 20px 0}.c-jobs--col{background:#fff;vertical-align:middle;color:#868c93;padding:10px 15px}.c-jobs--anchor{display:block;padding:4px 0;color:#004ed4;font-weight:500;line-height:18px;text-decoration:none}.c-jobs--more{margin-bottom:50px}.c-jobs-section{margin:0 20px 20px 0;padding:28px 28px 23px}.c-jobs-section--heading{margin:0 0 15px}.c-jobs-section--list{margin:0;padding:0;list-style:none}.c-logo{width:81px;margin-right:89px;padding:11px 0;text-decoration:none}.c-logo,.c-logo--svg{display:block}.c-modal{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(42,54,68,.86);z-index:8000}.c-modal--inner{position:absolute;top:50%;left:50%;max-width:94%;width:606px;height:314px;padding:56px 20px 20px;background-color:#fff;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);text-align:center}.c-modal--inner svg{display:block;margin:0 auto 23px}.c-modal--inner p{margin-bottom:20px}.c-modal--inner .c-btn--main{min-width:208px}.c-nav--main{display:-webkit-flex;display:flex;font-size:14px}.c-nav--sub{display:none}.c-nav--main-item{position:relative;z-index:500}.c-nav--main-anchor{display:block;padding:5px 0 4px;font-weight:500;color:#fff;text-decoration:none}.c-nav--lang-wrap{width:74px;height:32px}.c-nav--lang-item{padding:6px 0}.c-nav--lang-item:nth-child(n+2){display:none}.c-phone{white-space:nowrap;padding:12px 0 10px;text-decoration:none;color:inherit;font-weight:500;font-size:14px}.c-phone svg{float:left;margin:-6px 5px 0 0}.c-search{display:-webkit-flex;display:flex;background-color:#fff;border-radius:3px}.c-search--col{position:relative;-webkit-flex:1 1 auto;flex:1 1 auto;background-color:#fff}.c-search--col .awesomplete{position:absolute;top:0;right:0;left:0;height:100%;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column}.c-search--col ul{top:57px;padding-top:10px;overflow-x:hidden;max-height:350px;overflow-y:auto}.c-search--col li{padding:10px 15px;margin-bottom:10px;cursor:pointer}.c-search--col li:hover{color:#000}.c-search--col-location{border-radius:3px 3px 0 0}.c-search--input{border:0;padding:0 10px 0 44px;margin:0;height:60px;line-height:60px;background:none}.c-search--input:focus{outline:none}.c-search--filters{padding:10px;text-align:right}.l-section--front-page .c-search{box-shadow:6px 10px 48px 0 #d4dbe4}.c-search--reset{display:none}.c-sections{max-width:1000px;margin-right:auto;margin-left:auto;-webkit-align-items:center;align-items:center;padding:20px}.c-sections--item{position:relative;height:211px;margin-bottom:30px}.c-services{padding:20px}.c-services--item{position:relative;height:245px}.c-services--toggle{display:none}.c-share{margin-bottom:30px}.c-share--heading{margin:0;padding:20px 0 10px;font-weight:500;text-align:center}.c-share--option,.c-share--options{display:-webkit-flex;display:flex;-webkit-justify-content:center;justify-content:center}.c-share--option{height:36px;-webkit-flex:0 0 50px;flex:0 0 50px;border-radius:3px;margin:0 3px;text-decoration:none;-webkit-align-items:center;align-items:center}.c-share--option-facebook{background-color:#4367b0}.c-share--option-facebook:hover{background-color:#2f4f90}.c-share--option-messenger{background-color:#1983fa}.c-share--option-messenger:hover{background-color:#1b6fcc}.c-share--option-email{background-color:#2a3644}.c-share--option-email:hover{background-color:#000}.c-share--option-copy{background-color:#858585}.c-share--option-copy:hover{background-color:#5c5c5c}.c-share--option-phone{background-color:#25d366}.c-share--option-phone:hover{background-color:#1baf52}.c-trust{background:linear-gradient(134.06deg,#70b7d5,#7bcbcf)}.c-trust--inner{-webkit-align-items:center;align-items:center;padding-top:25px;padding-bottom:45px}.c-trust--heading{-webkit-flex:1 1 auto;flex:1 1 auto;margin:0 0 35px;color:#fff}.c-trust--logos{-webkit-flex:10 1 auto;flex:10 1 auto;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-justify-content:space-between;justify-content:space-between;-webkit-align-items:center;align-items:center}.c-values--inner{padding-top:20px;padding-bottom:20px}.c-values--section{max-width:250px}.c-values--heading{min-height:34px;font-size:35px;line-height:41px}.c-vdb--top{min-height:68px;background:#02bf5f;padding:14px 0}.c-vdb--top-inner{max-width:1050px;margin:0 auto;padding:0 10px;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center}.c-vdb--top-img{-webkit-flex:0 0 39px;flex:0 0 39px;margin-right:38px}.c-vdb--top-content{-webkit-flex:1 1 auto;flex:1 1 auto;color:#fff;margin:0;padding:0 10px 0 0;font-size:18px;line-height:25px}.c-vdb--section{margin:0 20px 20px 0;padding:28px 28px 23px;border-radius:3px;background-color:#fff}.c-vdb--section-bottom{max-width:360px;margin:0 auto 20px;border:20px solid #f8f8f8}.c-vdb--section-img{display:block;margin:0 auto 15px}.c-vdb--section-heading{font-size:21px;font-weight:500;line-height:27px}.c-vdb--section-content{line-height:23px}.c-vdb--bottom{min-height:68px;background:#4b5561 url(/wp-content/themes/biuro/i/vdb/bottom.png) no-repeat 50% 50%;background-size:cover;padding:46px 0}.c-vdb--bottom-inner{max-width:1050px;margin:0 auto;padding:0 10px;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center}.c-vdb--bottom-heading{margin:0 38px 0 0;padding:0;color:#fff;font-size:36px;line-height:42px;font-weight:500}.c-vdb--bottom-content{color:#fff;margin:0;padding:0;line-height:23px}.u-fill--inherit{fill:currentColor}.u-fill--logo{fill:#149a83}.u-hidden{display:none}.visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}@media (min-width:60em){body{padding-top:117px;font-size:1.5rem;font-size:var(--typo--font-size);line-height:1.2;line-height:var(--typo--line-height)}h1{font-size:25px;line-height:38px;margin:0 0 25px}h2{font-size:21px;margin:0 0 21px}h2,h3{line-height:30px}h3{font-size:18px;margin:0 0 18px}.l-header{margin-bottom:47px}.l-header:before{content:"";position:absolute;top:100%;left:0;width:100%;height:47px;background:#1d2a3a;background:var(--color--blue-dark)}.l-content{display:-webkit-flex;display:flex}.l-content--position{padding:40px 20px}.l-content--position-inner{display:-webkit-flex;display:flex;margin:0 auto 140px}.l-content--position-inner .l-main{padding:70px 55px 40px 57px}.l-content--heading{padding-left:320px;padding-top:40px;padding-bottom:25px}.l-content--main h1{font-size:25px;line-height:38px}.l-content--main h2{font-size:21px;line-height:30px}.l-content--main h3{font-size:18px;line-height:30px}.l-content--divisions,.l-content--regions{display:-webkit-flex;display:flex;margin:0 auto 200px}.l-aside{-webkit-flex:0 0 280px;flex:0 0 280px}.l-aside--position{-webkit-flex:0 0 400px;flex:0 0 400px;padding:70px 40px}.l-aside--divisions,.l-aside--regions{-webkit-flex:0 0 385px;flex:0 0 385px;margin:-315px 0 0 55px}.l-aside--close{display:none}.l-main--content{padding:40px 50px}.l-footer{padding-top:70px}.l-nav--wrap{-webkit-flex:1 1 100%;flex:1 1 100%;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center}.l-nav{-webkit-flex:1 1 auto;flex:1 1 auto}.l-nav--close,.l-nav--open{display:none}.l-section{padding:30px 0}.l-section--front-page{height:380px;margin-bottom:92px}.l-section--sales-page{height:380px}.l-section--landing-1{height:348px}.c-btn--header{margin-right:28px}.c-contact{padding:50px 0}.c-contact--inner{display:-webkit-flex;display:flex;-webkit-justify-content:space-between;justify-content:space-between}.c-contact--content{max-width:500px;padding:75px 0 0 90px}.c-contact--content,.c-contact--form{-webkit-flex:1 1 40%;flex:1 1 40%}.c-contact-landing-1{padding:30px 0 40px}.c-contact-landing-1--inner{display:-webkit-flex;display:flex;-webkit-justify-content:space-between;justify-content:space-between}.c-contact-landing-1--content{-webkit-flex:1 1 40%;flex:1 1 40%;max-width:500px;padding:0 0 0 90px}.c-contact-landing-1--form{-webkit-flex:1 1 40%;flex:1 1 40%;margin-top:-200px}.c-feedbacks{padding:50px 0 70px}.c-feedbacks--inner{width:640px;height:300px}.c-feedbacks--heading{font-size:25px;line-height:29px;margin:0 0 40px}.c-feedbacks--section-inner{height:140px;width:574px;margin:0 33px}.c-footer-sections{display:-webkit-flex;display:flex}.c-footer-section{-webkit-flex:10 0 15%;flex:10 0 15%}.c-form--action{top:-128px}.c-form--employees,.c-form--employers{padding:38px 35px 20px}.c-form--position{margin:-40px -15px 0;box-shadow:0 1px 31px -23px #6a7481}.c-heading h1{font-size:34px;font-weight:700;line-height:51px}.c-heading--front-page,.c-heading--sales-page{height:320px}.c-heading--landing-1 h1{max-width:500px;font-size:31px;line-height:45px}.c-heading--landing-1{padding-left:110px}.c-job--title{font-size:30px;line-height:39px;margin:0 0 40px}.c-jobs--col{border-bottom:1px solid #f8f8f8;border-bottom:1px solid var(--color--gray-light)}.c-jobs--more{margin-bottom:70px}.c-nav--main-item{height:70px;margin-right:26px;padding:23px 0 0}.c-nav--main-anchor{color:#1d2a3a;color:var(--color--blue-dark)}.c-nav--lang-wrap{position:relative;width:70px}.c-phone{margin-right:35px}.c-search{height:60px}.c-search--col-location{border-right:1px solid rgba(178,182,187,.46);border-radius:3px 0 0 3px}.c-search--filters{display:none}.l-section--front-page .c-search{height:70px}.l-section--front-page .c-search--input{height:70px;line-height:70px}.c-sections{padding:50px 20px 135px}.c-sections--inner{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-justify-content:space-between;justify-content:space-between}.c-sections--item{-webkit-flex:0 0 300px;flex:0 0 300px}.c-services{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-align-items:center;align-items:center;padding-top:64px;padding-bottom:64px;-webkit-justify-content:space-between;justify-content:space-between}.c-services--item{-webkit-flex:0 0 253px;flex:0 0 253px}.c-trust--inner{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;padding-top:64px;padding-bottom:64px}.c-trust--heading{margin:0}.c-trust--logos{-webkit-justify-content:space-around;justify-content:space-around}.c-values--inner{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-justify-content:space-between;justify-content:space-between;padding-top:60px;padding-bottom:40px}.c-values--section{-webkit-flex:0 0 40%;flex:0 0 40%;max-width:280px}.c-values--heading{min-height:66px;font-size:45px;line-height:53px}.c-vdb--section-bottom{display:none}}@media (max-width:59.999em){.l-inner--header{-webkit-align-items:flex-start;align-items:flex-start}.l-content--position{background:#f6f9ff;-webkit-flex:1 1 auto;flex:1 1 auto}.l-content--position+.l-footer{display:none}.l-content--main{padding:10px}.l-aside--divisions,.l-aside--regions{max-width:440px;margin:0 auto}.l-aside--search{display:none;position:fixed;top:0;right:0;width:310px;padding-left:40px;height:100%;overflow:auto;z-index:20}.l-aside--search:before{content:"";position:fixed;top:0;width:270px;right:0;bottom:0;background:#fff}.l-nav--wrap{display:none;position:fixed;top:0;left:0;width:100%;height:100%;overflow-y:auto;opacity:.97;background-color:#1d2a3a;z-index:500;border:1px solid #000;overflow:hidden;text-align:center;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center}.l-nav{width:100%}.l-section--front-page{height:179px;margin-bottom:185px}.c-btn--search{-webkit-flex:0 0 60px;flex:0 0 60px;border-radius:0 0 3px 3px}.c-contact,.c-contact-landing-1{max-width:440px;margin:0 auto}.c-divisions{margin-bottom:20px}.c-heading h1{margin:0 0 36px}.c-heading p{display:none}.c-heading--front-page h1{max-width:117px}.c-heading--landing-1{max-width:440px;margin:0 auto}.c-job--content{font-size:15px}.c-job--content h3{font-size:17px}.c-job--action{display:none}.c-job-contacts{padding-bottom:40px;margin:0 10px}.c-job-contacts li{padding:7px 0}.c-jobs--headline{text-align:center}.c-jobs--col{float:left}.c-jobs--col-position{width:100%}.c-jobs--col-city,.c-jobs--col-valid{width:50%}.c-nav--main{margin:115px 0 180px;padding:0 20px;width:100%;-webkit-justify-content:space-between;justify-content:space-between}.c-nav--main-item:first-child{text-align:left}.c-nav--main-item:first-child .c-nav--sub{left:0;right:auto}.c-nav--main-item{position:relative;-webkit-flex:0 0 auto;flex:0 0 auto;text-align:right}.c-nav--lang-wrap{position:absolute;top:20px;left:20px}.c-phone{color:#fff;margin:0 0 30px}.c-search{-webkit-flex-direction:column;flex-direction:column;margin:0 20px}.l-section--search-page{padding:10px 0}.l-section--search-page .c-search{-webkit-flex-direction:row;flex-direction:row;margin:0 10px;border-radius:3px}.l-section--search-page .c-search--col-location{display:none}.l-section--search-page .c-search--col-keyword{-webkit-flex:1 1 auto;flex:1 1 auto;border-radius:3px 0 0 3px}.l-section--search-page .c-search--btn-text{display:none}.l-section--search-page .c-btn--search-small{min-width:35px;margin:5px;padding:9px 7px 8px 8px}.l-section--search-page .c-search--input{height:45px;padding:0 0 0 15px}.l-section--search-page .c-search--col ul{top:45px}.l-section--search-page .c-ico--area{display:none}.c-search--col{-webkit-flex:0 0 60px;flex:0 0 60px}.c-search--col-keyword,.c-search--col-location{border-bottom:1px solid rgba(178,182,187,.46)}.l-section--front-page .c-search,.l-section--front-page .c-search--input{margin:0}.c-search--reset{position:relative;display:block;padding-top:20px;text-align:center}.c-sections--item{max-width:380px;margin:0 auto 30px}.c-services--item{max-width:380px;margin:0 auto 20px}.c-trust--heading{text-align:center;font-size:18px}.c-values--inner{max-width:400px}.c-vdb--top-img{margin-right:18px}.c-vdb--top-content{font-size:16px;line-height:19px}.c-vdb--section-aside{display:none}.c-vdb--bottom-heading{margin:0 18px 0 0}}
\ No newline at end of file
@font-face{font-family:Roboto;font-style:normal;font-weight:300;font-display:swap;src:local("Roboto Light"),local("Roboto-Light"),url(/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-300.woff2) format("woff2"),url(/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-300.woff) format("woff")}@font-face{font-family:Roboto;font-style:normal;font-weight:400;font-display:swap;src:local("Roboto"),local("Roboto-Regular"),url(/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-regular.woff2) format("woff2"),url(/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-regular.woff) format("woff")}@font-face{font-family:Roboto;font-style:normal;font-weight:500;font-display:swap;src:local("Roboto Medium"),local("Roboto-Medium"),url(/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-500.woff2) format("woff2"),url(/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-500.woff) format("woff")}@font-face{font-family:Roboto;font-style:normal;font-weight:700;font-display:swap;src:local("Roboto Bold"),local("Roboto-Bold"),url(/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-700.woff2) format("woff2"),url(/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-700.woff) format("woff")}
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}a:hover{text-decoration:none}figure{margin:0}img{max-width:100%}p{margin:0 0 1.6rem}b,strong{font-weight:700;font-weight:var(--typo--weight-bold)}table{border-collapse:collapse;border-spacing:0}.customize-support .l-header{top:32px}.l-section{background-repeat:no-repeat;background-position:50% 50%;background-size:cover}.l-section--search-page{background-image:url(/wp-content/themes/biuro/i/search-page.png)}@supports (background-image:-webkit-image-set(url(/wp-content/themes/biuro/i/search-page.webp) 1x)){.l-section--search-page{background-image:url(/wp-content/themes/biuro/i/search-page.webp)}}.l-section--vdb{background-image:url(/wp-content/themes/biuro/i/vdb/section.png)}@supports (background-image:-webkit-image-set(url(/wp-content/themes/biuro/i/vdb/section.webp) 1x)){.l-section--vdb{background-image:url(/wp-content/themes/biuro/i/vdb/section.webp)}}.l-section--front-page{background-image:url(/wp-content/themes/biuro/i/front-page.png);background-size:200%}@supports (background-image:-webkit-image-set(url(/wp-content/themes/biuro/i/front-page.webp) 1x)){.l-section--front-page{background-image:url(/wp-content/themes/biuro/i/front-page.webp)}}.l-section--sales-page{background-image:url(/wp-content/themes/biuro/i/sales-page.png)}@supports (background-image:-webkit-image-set(url(/wp-content/themes/biuro/i/sales-page.webp) 1x)){.l-section--sales-page{background-image:url(/wp-content/themes/biuro/i/sales-page.webp)}}.l-section--landing-1{background-image:url(/wp-content/themes/biuro/i/sections/landing-1.jpg);background-position:0 50%}@supports (background-image:-webkit-image-set(url(/wp-content/themes/biuro/i/sections/landing-1.webp) 1x)){.l-section--landing-1{background-image:url(/wp-content/themes/biuro/i/sections/landing-1.webp)}}.swiper-container{margin:0 auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-no-flexbox .swiper-slide{float:left}.swiper-container-vertical>.swiper-wrapper{-webkit-flex-direction:column;flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:-webkit-flex;display:flex;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{-webkit-transform:translateZ(0);transform:translateZ(0)}.swiper-container-multirow>.swiper-wrapper{-webkit-flex-wrap:wrap;flex-wrap:wrap}.swiper-container-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-slide{-webkit-flex-shrink:0;flex-shrink:0;width:100%;height:100%;position:relative;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{-webkit-align-items:flex-start;align-items:flex-start;transition-property:height,-webkit-transform;transition-property:transform,height;transition-property:transform,height,-webkit-transform}.swiper-container-3d{-webkit-perspective:1200px;perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:linear-gradient(270deg,rgba(0,0,0,.5),transparent)}.swiper-container-3d .swiper-slide-shadow-right{background-image:linear-gradient(90deg,rgba(0,0,0,.5),transparent)}.swiper-container-3d .swiper-slide-shadow-top{background-image:linear-gradient(0deg,rgba(0,0,0,.5),transparent)}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(180deg,rgba(0,0,0,.5),transparent)}.swiper-container-wp8-horizontal,.swiper-container-wp8-horizontal>.swiper-wrapper{touch-action:pan-y}.swiper-container-wp8-vertical,.swiper-container-wp8-vertical>.swiper-wrapper{touch-action:pan-x}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:27px;height:44px;margin-top:-22px;z-index:10;cursor:pointer;background-size:27px 44px;background-position:50%;background-repeat:no-repeat}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23007aff'/%3E%3C/svg%3E");left:10px;right:auto}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23007aff'/%3E%3C/svg%3E");right:10px;left:auto}.swiper-button-prev.swiper-button-white,.swiper-container-rtl .swiper-button-next.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23fff'/%3E%3C/svg%3E")}.swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23fff'/%3E%3C/svg%3E")}.swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z'/%3E%3C/svg%3E")}.swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z'/%3E%3C/svg%3E")}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:opacity .3s;-webkit-transform:translateZ(0);transform:translateZ(0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transform:scale(.33);transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{-webkit-transform:scale(1);transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{-webkit-transform:scale(.66);transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{-webkit-transform:scale(.33);transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{-webkit-transform:scale(.66);transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{-webkit-transform:scale(.33);transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:100%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:#007aff}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:top .2s,-webkit-transform .2s;transition:transform .2s,top .2s;transition:transform .2s,top .2s,-webkit-transform .2s}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:left .2s,-webkit-transform .2s;transition:transform .2s,left .2s;transition:transform .2s,left .2s,-webkit-transform .2s}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:right .2s,-webkit-transform .2s;transition:transform .2s,right .2s;transition:transform .2s,right .2s,-webkit-transform .2s}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:#007aff;position:absolute;left:0;top:0;width:100%;height:100%;-webkit-transform:scale(0);transform:scale(0);-webkit-transform-origin:left top;transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{-webkit-transform-origin:right top;transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-white .swiper-pagination-bullet-active{background:#fff}.swiper-pagination-progressbar.swiper-pagination-white{background:hsla(0,0%,100%,.25)}.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill{background:#fff}.swiper-pagination-black .swiper-pagination-bullet-active{background:#000}.swiper-pagination-progressbar.swiper-pagination-black{background:rgba(0,0,0,.25)}.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill{background:#000}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:-webkit-flex;display:flex;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;-webkit-transform-origin:50%;transform-origin:50%;-webkit-animation:swiper-preloader-spin 1s steps(12) infinite;animation:swiper-preloader-spin 1s steps(12) infinite}.swiper-lazy-preloader:after{display:block;content:"";width:100%;height:100%;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%236c6c6c' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E");background-position:50%;background-size:100%;background-repeat:no-repeat}.swiper-lazy-preloader-white:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%23fff' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E")}@-webkit-keyframes swiper-preloader-spin{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes swiper-preloader-spin{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-container-fade.swiper-container-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;-webkit-transform-origin:0 0;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{-webkit-transform-origin:100% 0;transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0;width:100%;height:100%;background:#000;opacity:.6;-webkit-filter:blur(50px);filter:blur(50px);z-index:0}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-coverflow .swiper-wrapper{-ms-perspective:1200px}.c-404{text-align:center;padding:200px 0}.c-404--heading{height:128px;margin:0;padding:0;color:#069980;font-size:109px;font-weight:500;line-height:128px}.c-404--message{margin-bottom:40px}.awesomplete [hidden]{display:none}.awesomplete .visually-hidden{position:absolute;clip:rect(0,0,0,0)}.awesomplete{display:inline-block;position:relative}.awesomplete>input{display:block}.awesomplete>ul{position:absolute;left:0;z-index:1;min-width:100%;box-sizing:border-box;list-style:none;padding:0;margin:0;background:#fff}.awesomplete>ul:empty{display:none}.c-breadcrumbs{padding-top:1em}.c-cookies-warning{position:fixed;left:0;right:0;bottom:0;padding:15px 0 10px;background:#f6f6f6;overflow:hidden;z-index:100;font-size:14px;line-height:15px}.c-cookies-warning .bu-action{margin-top:10px}.c-cookies-warning .bu-action--alt{float:right}.c-cookies-warning--actions{margin:0;padding:5px 0 0;display:-webkit-flex;display:flex;-webkit-justify-content:space-between;justify-content:space-between}.c-cookies-warning--actions .c-btn--main,.c-cookies-warning--actions .c-btn--slim{padding:7px 12px 6px;font-weight:400}.c-cookies-warning--actions .c-btn--slim{border-width:1px}.c-copyright{line-height:15px;padding-bottom:60px}.c-copyright,.c-data-controller{text-align:center;font-size:13px}.c-data-controller{margin-bottom:20px;padding:10px 0;font-weight:300;line-height:19px}.c-data-controller p{margin:0 0 10px}.c-division{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;border-radius:3px;color:#004ed4;font-weight:500}.c-division:hover{background-color:#dde6f5}.c-feedbacks--img{position:absolute;top:-32px;left:50%;margin-left:-42px}.c-feedbacks--feedback{margin:0 auto 10px;max-width:260px;height:58px;color:#2a3644;font-family:Georgia;font-size:14px;line-height:26px;text-align:center;overflow:hidden}.c-feedbacks--name{color:#919191;font-family:Georgia;font-size:13px;line-height:15px;text-align:center;padding:0 10px}.swiper-container-horizontal>.swiper-pagination-bullets{bottom:0}.swiper-pagination-bullet{width:9px;height:9px;background:#d8d8d8;opacity:1}.swiper-pagination-bullet-active{background:#717171}.c-footer-section{line-height:36px;margin:0 0 18px}.c-footer-section h4{margin:0;padding:0}.c-footer-section--heading{margin:0;font-weight:500}.c-form--checkbox--error+label:before{border-color:#eb4646}.c-form--validation{background-color:#fff;margin-top:5px;padding:10px 15px;border:1px solid;font-size:13px;line-height:20px}.c-form--input-wrap--error .c-form--input,.c-form--input-wrap--error .c-form--textarea{border-color:#eb4646}.c-form--input-wrap--success .c-form--input,.c-form--input-wrap--success .c-form--textarea{border-color:#17dab9}.c-form--validation-error{color:#eb4646;border-color:#eb4646;margin-bottom:10px}.c-form--validation-success{color:#17dab9;border-color:#17dab9;margin-bottom:10px}.c-jobs--headline{min-height:29px;margin:0 0 25px;padding:20px 20px 0;color:#2a3644;font-size:25px;font-weight:500;line-height:29px}.c-jobs--table{width:100%;margin:0 0 20px}.c-jobs--table tr:hover td{background:#f8fbff}.c-jobs--col-city{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.c-jobs--col-valid{color:#19c5a7;white-space:nowrap;padding-right:15px;padding-left:5px;width:100px}.c-jobs--anchor{display:block;padding:4px 0;color:#004ed4;font-weight:500;line-height:18px;text-decoration:none}.c-jobs--anchor:hover{text-decoration:underline}.c-jobs--anchor:visited{color:#551b89}.pods-pagination-paginate{display:-webkit-flex;display:flex;margin-bottom:90px}.page-numbers{width:46px;height:46px;background:#fff;margin-right:1px;text-decoration:none;text-align:center;line-height:46px;color:#1fb299;font-size:16px}.page-numbers:hover{background:#149a83;background:var(--color--green-darker);color:#fff}.page-numbers:hover:after{border-color:#fff}.page-numbers.current{background:#1fb299;color:#fff}.next:after{display:inline-block;margin:0 0 2px -6px;content:"";width:8px;height:8px;border:1px solid #1fb299;border-width:1px 1px 0 0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.prev:after{display:inline-block;margin:0 -6px 2px 0;content:"";width:8px;height:8px;border:1px solid #1fb299;border-width:1px 1px 0 0;-webkit-transform:rotate(-135deg);transform:rotate(-135deg)}.c-jobs-section{border-radius:3px;background-color:#fff}.c-jobs-section--heading{padding:0;color:#2a3644;font-size:18px;font-weight:500;line-height:21px}.c-jobs-section--content{overflow:hidden}.c-jobs-section--is-closed .c-jobs-section--content{max-height:100px}.c-jobs-section--item-active .c-jobs-section--anchor{color:#1fb299}.c-jobs-section--anchor{display:block;color:#939393;font-size:14px;text-decoration:none;padding:7px 0;line-height:19px}.c-jobs-section--anchor:hover{text-decoration:underline}.c-jobs-section--expand{display:block;color:#004ed4;font-size:14px;font-weight:500;margin-top:10px;padding:5px 0;text-decoration:none}.c-nav--main-anchor{display:block;padding:5px 0 4px;text-transform:uppercase;border-bottom:2px solid transparent;font-weight:700;letter-spacing:1px;opacity:.6}.c-nav--main-anchor:hover{opacity:1}.c-nav--sub{position:absolute}.c-nav--sub-anchor{display:block;padding:16px 0 17px;color:#fff;text-transform:uppercase;white-space:nowrap;text-decoration:none;font-weight:700;letter-spacing:1.08px;line-height:1}.c-nav--sub-anchor:hover{color:#1fb299;color:var(--color--green)}.c-nav--footer{font-weight:300}.c-nav--footer a{text-decoration:none}.c-nav--footer a:hover{text-decoration:underline}.c-nav--lang--is-open .c-nav--lang-item:nth-child(n+2){display:block}.c-nav--lang{position:absolute;top:0;left:0;width:100%;border-radius:3px;z-index:20;font-weight:500}.c-nav--lang-anchor{padding-left:34px;text-decoration:none;display:block;color:#fff;font-size:14px;line-height:24px;background-repeat:no-repeat;background-position:6px 0;background-size:20px 20px;font-weight:400}.c-nav--lang-anchor:hover{text-decoration:underline}.c-nav--lang-anchor svg{float:right;margin:9px 6px 0 0}.c-nav--lang-anchor--active:hover{text-decoration:none;cursor:pointer}.c-nav--lang-anchor-lt{background-image:url(/wp-content/themes/biuro/i/lang/lt.png)}.c-nav--lang-anchor-en{background-image:url(/wp-content/themes/biuro/i/lang/en.png)}.c-nav--lang-anchor-de{background-image:url(/wp-content/themes/biuro/i/lang/de.png)}.c-nav--lang-anchor-ru{background-image:url(/wp-content/themes/biuro/i/lang/ru.png)}.c-nav--lang-anchor-lv{background-image:url(/wp-content/themes/biuro/i/lang/lv.png)}.c-nav--lang-anchor-et{background-image:url(/wp-content/themes/biuro/i/lang/et.png)}.c-sections--heading{color:#2a3644;margin:0 0 40px;padding:0;font-size:25px;font-weight:500;line-height:29px;text-align:center}.c-sections--item-inner{top:0;height:211px;padding:27px 21px;border-radius:3px;box-shadow:2px 2px 31px 0 hsla(0,0%,93.3%,.5);overflow:hidden}.c-sections--item-inner,.c-sections--toggle{position:absolute;left:0;width:100%;background:#fff}.c-sections--toggle{bottom:0;padding:15px 0;text-align:center;border-radius:0 0 3px 3px;z-index:60;box-shadow:0 -37px 24px 0 hsla(0,0%,100%,.78);cursor:pointer}.c-sections--toggle-up{display:none}.c-sections--header{height:56px;margin-bottom:20px;overflow:hidden;color:#004ed4;font-size:15px;font-weight:700;line-height:56px}.c-sections--ico{float:left;margin-right:20px;height:56px;width:56px;background-color:#e8f0ff;border-radius:50%}.c-sections--content{color:#868c93;font-size:12px;line-height:20px}.c-sections--content ul{margin:30px 0 0;padding:0;list-style:none}.c-sections--is-open{height:451px;z-index:80}.c-sections--is-open .c-sections--toggle{box-shadow:none}.c-sections--is-open .c-sections--toggle-down{display:none}.c-sections--is-open .c-sections--toggle-up{display:inline}.c-services--item-inner{position:absolute;top:0;left:0;width:100%;height:245px;border-radius:3px;background-color:#fff;box-shadow:2px 2px 31px 0 hsla(0,0%,93.3%,.5)}.c-services--toggle{display:block;position:absolute;left:0;width:100%;bottom:0;padding:10px 0;text-align:center;cursor:pointer}.c-services--toggle-up{display:none}.c-services--is-open{height:341px;z-index:200}.c-services--is-open .c-services--toggle-down{display:none}.c-services--is-open .c-services--toggle-up{display:inline}.c-services--is-open .c-services--content{display:block}.c-services--ico{height:56px;width:56px;background-color:#e1fffa;border-radius:50%;margin:34px auto 22px}.c-services--heading{min-height:44px;padding:0 20px;color:#1fb299;font-size:15px;font-weight:700;line-height:18px;text-align:center}.c-services--sub-heading{min-height:27px;margin:0;padding:0 10px;color:#2a3644;font-size:14px;font-weight:700;line-height:25px;text-align:center}.c-services--content{display:none}.c-services--content ul{position:absolute;margin:0;padding:0 0 40px;list-style:none;width:100%;border-radius:3px;background-color:#fff}.c-services--content li{color:#6c7683;font-size:14px;font-weight:500;line-height:25px;text-align:center}.c-social{margin-bottom:40px;text-align:center}.c-social--anchor{text-decoration:none;margin:0 5px;padding:0 10px}.c-values{background:linear-gradient(138.69deg,#4eacd9,#2fb8a1);color:#fff}.c-values--heading{display:inline-block;min-width:139px;margin:0 0 18px;padding:0 10px 0 0;border-bottom:4px solid #fff;font-weight:700;color:#f8f8f8}.c-values--content{display:block;min-height:67px;margin:0 0 20px;padding:0;font-size:15px;line-height:26px;font-weight:500}.t-reason{padding:0;border:0}.t-reason td{display:block;vertical-align:top}.t-reason .t-reason-col-2 h2{padding:25px 0 13px}.t-reason h2{text-align:center}.t-reason ul{padding:0}.t-contacts{width:100%;height:auto!important}.t-contacts td{vertical-align:top;display:block;width:100%}.t-contacts p{text-align:left}.is-nav--main-item-active{position:relative}.is-nav--main-item-active .c-nav--sub{display:block}.is-nav--main-anchor-active{opacity:1}.is-nav--sub-anchor-active{color:#19c5a7}.u-align--center{text-align:center}input::-webkit-calendar-picker-indicator{display:none}.tmp-contacts img{display:none}.tmp-contacts ul{padding-left:5px}.c-logos{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-justify-content:space-between;justify-content:space-between}.c-logos div{-webkit-flex:0 0 21%;flex:0 0 21%;border:1px solid grey;padding:1em;margin-bottom:1em;text-align:center}.biuro-ti-img{display:none}.t-membership{width:100%;border:0;text-align:left}.t-membership td{text-align:justify;vertical-align:middle}.t-membership .t-membership-row-4 td{border-bottom:none}@media (min-width:80em){[href^=tel]{pointer-events:none;text-decoration:none;color:inherit}}@media (min-width:48em){.l-section--front-page{background-size:150%}}@media (min-width:60em){.l-section--front-page{background-size:cover}.c-data-controller{margin-bottom:35px;padding:15px 0 10px;line-height:1.1}.c-feedbacks--feedback{margin:0 auto 17px;height:79px;font-size:21px;line-height:40px;max-width:400px}.c-feedbacks--name{font-size:15px;line-height:17px}.c-footer-sections{-webkit-flex-wrap:wrap;flex-wrap:wrap}.c-footer-section{line-height:25px;margin:0 0 30px}.c-form--validation{position:absolute;top:50%;right:100%;min-width:200px;margin-top:11px;-webkit-transform:translate(-30px,-50%);transform:translate(-30px,-50%)}.c-jobs--col-position{padding-right:5px}.c-jobs--col-city{max-width:140px;padding-right:5px;padding-left:5px}.c-jobs--anchor{padding:10px 0}.c-nav--sub{top:100%}.c-nav--sub-item{margin-right:46px}.c-nav--lang{background:#fff}.c-nav--lang-anchor{color:#2a3644;font-weight:500}.c-services--heading{min-height:44px}.c-share{margin-bottom:90px}.c-values--content{min-height:80px;line-height:30px}.t-reason td{display:table-cell;width:50%}.t-reason .t-reason-col-1{padding-right:20px;border-right:1px solid #dfdfdf}.t-reason .t-reason-col-2{padding-left:20px}.t-reason .t-reason-col-2 h2{padding:12px 0 25px}.is-nav--main-item-active .c-nav--sub{display:-webkit-flex;display:flex}.is-nav--main-anchor-active{border-bottom-color:#1d2a3a;border-bottom-color:var(--color--blue-dark)}}@media (max-width:59.999em){.c-footer-sections{text-align:center;font-size:13px}.c-jobs--headline{min-height:26px;font-size:18px;font-weight:500;line-height:26px;text-align:center}.c-jobs--col-city,.c-jobs--col-valid{border-bottom:1px solid #f8f8f8;border-bottom:1px solid var(--color--gray-light);font-size:13px;padding-top:0}.c-jobs--col-valid{width:50%;text-align:right}.c-jobs--anchor{font-size:16px;line-height:23px}.c-jobs-section{border-radius:0;margin:0;padding-bottom:0;position:relative}.c-nav--sub{right:0;left:auto;top:150%}.c-nav--lang--is-open{background-color:#1d2a3a;opacity:.97;z-index:800;box-shadow:0 0 20px 60px #1d2a3a}.c-trust--img-svyturys{width:76px;height:23px}.c-trust--img-dpd{width:53px;height:23px}.c-trust--img-pergale{width:72px;height:16px}.c-trust--img-maxima{width:74px;height:17px}.c-trust--img-pasts{width:85px;height:20px}.c-trust--img-dhl{width:91px;height:13px}.c-trust--img-staburadze{width:90px;height:27px}.c-trust--img-cido{width:51px;height:33px}.c-trust--img-itella{width:60px;height:38px}.c-trust--img-saku{width:56px;height:41px}.c-trust--img-leibur{width:50px;height:42px}.c-trust--img-maxima-ee{width:86px;height:18px}.is-nav--main-anchor-active{border-bottom-color:#fff}.is-nav--open .l-nav--wrap{display:-webkit-flex;display:flex}.is-aside--open{overflow:hidden}.is-aside--open .l-aside--search{display:block}.is-aside--open .l-header{z-index:-1}.is-aside--open:after{content:"";position:fixed;opacity:.97;background-color:#2a3644;top:0;left:0;width:100%;height:100%}.is-aside--open .c-jobs-section--content{max-height:2000em}.is-aside--open .c-jobs-section--expand{display:none}.c-fixed-footer{position:fixed;left:0;bottom:0;width:100%;background:hsla(0,0%,100%,.85);padding:20px 20px 0;box-shadow:0 -1px 1px 0 rgba(0,0,0,.45)}}@media (min-width:93.75em){.c-form--validation{left:100%;right:auto;-webkit-transform:translate(30px,-50%);transform:translate(30px,-50%)}}@media (max-width:767px){.t-membership tr{display:block}.t-membership td{display:block;float:left;width:100%}.t-membership .t-membership-col-2{border-bottom:1px solid #dfdfdf;padding:0 0 20px}}@media (min-width:768px){.t-membership-col-1{width:150px;padding-right:20px}}@media (min-width:980px){.t-membership-col-1{width:250px;padding-right:0}}
\ No newline at end of file
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}a:hover{text-decoration:none}figure{margin:0}img{max-width:100%}p{margin:0 0 1.6rem}b,strong{font-weight:700;font-weight:var(--typo--weight-bold)}table{border-collapse:collapse;border-spacing:0}.customize-support .l-header{top:32px}.l-section{background-repeat:no-repeat;background-position:50% 50%;background-size:cover}.l-section--search-page{background-image:url(/wp-content/themes/biuro/i/search-page.png)}@supports (background-image:-webkit-image-set(url(/wp-content/themes/biuro/i/search-page.webp) 1x)){.l-section--search-page{background-image:url(/wp-content/themes/biuro/i/search-page.webp)}}.l-section--vdb{background-image:url(/wp-content/themes/biuro/i/vdb/section.png)}@supports (background-image:-webkit-image-set(url(/wp-content/themes/biuro/i/vdb/section.webp) 1x)){.l-section--vdb{background-image:url(/wp-content/themes/biuro/i/vdb/section.webp)}}.l-section--front-page{background-image:url(/wp-content/themes/biuro/i/front-page.png);background-size:200%}@supports (background-image:-webkit-image-set(url(/wp-content/themes/biuro/i/front-page.webp) 1x)){.l-section--front-page{background-image:url(/wp-content/themes/biuro/i/front-page.webp)}}.l-section--sales-page{background-image:url(/wp-content/themes/biuro/i/sales-page.png)}@supports (background-image:-webkit-image-set(url(/wp-content/themes/biuro/i/sales-page.webp) 1x)){.l-section--sales-page{background-image:url(/wp-content/themes/biuro/i/sales-page.webp)}}.l-section--landing-1{background-image:url(/wp-content/themes/biuro/i/sections/landing-1.jpg);background-position:0 50%}@supports (background-image:-webkit-image-set(url(/wp-content/themes/biuro/i/sections/landing-1.webp) 1x)){.l-section--landing-1{background-image:url(/wp-content/themes/biuro/i/sections/landing-1.webp)}}.swiper-container{margin:0 auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-no-flexbox .swiper-slide{float:left}.swiper-container-vertical>.swiper-wrapper{-webkit-flex-direction:column;flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:-webkit-flex;display:flex;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{-webkit-transform:translateZ(0);transform:translateZ(0)}.swiper-container-multirow>.swiper-wrapper{-webkit-flex-wrap:wrap;flex-wrap:wrap}.swiper-container-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-slide{-webkit-flex-shrink:0;flex-shrink:0;width:100%;height:100%;position:relative;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{-webkit-align-items:flex-start;align-items:flex-start;transition-property:height,-webkit-transform;transition-property:transform,height;transition-property:transform,height,-webkit-transform}.swiper-container-3d{-webkit-perspective:1200px;perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:linear-gradient(270deg,rgba(0,0,0,.5),transparent)}.swiper-container-3d .swiper-slide-shadow-right{background-image:linear-gradient(90deg,rgba(0,0,0,.5),transparent)}.swiper-container-3d .swiper-slide-shadow-top{background-image:linear-gradient(0deg,rgba(0,0,0,.5),transparent)}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(180deg,rgba(0,0,0,.5),transparent)}.swiper-container-wp8-horizontal,.swiper-container-wp8-horizontal>.swiper-wrapper{touch-action:pan-y}.swiper-container-wp8-vertical,.swiper-container-wp8-vertical>.swiper-wrapper{touch-action:pan-x}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:27px;height:44px;margin-top:-22px;z-index:10;cursor:pointer;background-size:27px 44px;background-position:50%;background-repeat:no-repeat}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23007aff'/%3E%3C/svg%3E");left:10px;right:auto}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23007aff'/%3E%3C/svg%3E");right:10px;left:auto}.swiper-button-prev.swiper-button-white,.swiper-container-rtl .swiper-button-next.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23fff'/%3E%3C/svg%3E")}.swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23fff'/%3E%3C/svg%3E")}.swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z'/%3E%3C/svg%3E")}.swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z'/%3E%3C/svg%3E")}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:opacity .3s;-webkit-transform:translateZ(0);transform:translateZ(0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transform:scale(.33);transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{-webkit-transform:scale(1);transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{-webkit-transform:scale(.66);transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{-webkit-transform:scale(.33);transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{-webkit-transform:scale(.66);transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{-webkit-transform:scale(.33);transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:100%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:#007aff}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:top .2s,-webkit-transform .2s;transition:transform .2s,top .2s;transition:transform .2s,top .2s,-webkit-transform .2s}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:left .2s,-webkit-transform .2s;transition:transform .2s,left .2s;transition:transform .2s,left .2s,-webkit-transform .2s}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:right .2s,-webkit-transform .2s;transition:transform .2s,right .2s;transition:transform .2s,right .2s,-webkit-transform .2s}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:#007aff;position:absolute;left:0;top:0;width:100%;height:100%;-webkit-transform:scale(0);transform:scale(0);-webkit-transform-origin:left top;transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{-webkit-transform-origin:right top;transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-white .swiper-pagination-bullet-active{background:#fff}.swiper-pagination-progressbar.swiper-pagination-white{background:hsla(0,0%,100%,.25)}.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill{background:#fff}.swiper-pagination-black .swiper-pagination-bullet-active{background:#000}.swiper-pagination-progressbar.swiper-pagination-black{background:rgba(0,0,0,.25)}.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill{background:#000}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:-webkit-flex;display:flex;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;-webkit-transform-origin:50%;transform-origin:50%;-webkit-animation:swiper-preloader-spin 1s steps(12) infinite;animation:swiper-preloader-spin 1s steps(12) infinite}.swiper-lazy-preloader:after{display:block;content:"";width:100%;height:100%;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%236c6c6c' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E");background-position:50%;background-size:100%;background-repeat:no-repeat}.swiper-lazy-preloader-white:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%23fff' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E")}@-webkit-keyframes swiper-preloader-spin{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes swiper-preloader-spin{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-container-fade.swiper-container-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;-webkit-transform-origin:0 0;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{-webkit-transform-origin:100% 0;transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0;width:100%;height:100%;background:#000;opacity:.6;-webkit-filter:blur(50px);filter:blur(50px);z-index:0}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-coverflow .swiper-wrapper{-ms-perspective:1200px}.c-404{text-align:center;padding:200px 0}.c-404--heading{height:128px;margin:0;padding:0;color:#069980;font-size:109px;font-weight:500;line-height:128px}.c-404--message{margin-bottom:40px}.awesomplete [hidden]{display:none}.awesomplete .visually-hidden{position:absolute;clip:rect(0,0,0,0)}.awesomplete{position:relative}.awesomplete>input{display:block}.awesomplete>ul{position:absolute;left:0;z-index:1;min-width:100%;box-sizing:border-box;list-style:none;padding:0;margin:0;background:#fff}.awesomplete>ul:empty{display:none}.c-breadcrumbs{padding-top:1em}.c-cookies-warning{position:fixed;left:0;right:0;bottom:0;padding:15px 0 10px;background:#f6f6f6;overflow:hidden;z-index:100;font-size:14px;line-height:15px}.c-cookies-warning .bu-action{margin-top:10px}.c-cookies-warning .bu-action--alt{float:right}.c-cookies-warning--actions{margin:0;padding:5px 0 0;display:-webkit-flex;display:flex;-webkit-justify-content:space-between;justify-content:space-between}.c-cookies-warning--actions .c-btn--main,.c-cookies-warning--actions .c-btn--slim{padding:7px 12px 6px;font-weight:400}.c-cookies-warning--actions .c-btn--slim{border-width:1px}.c-copyright{line-height:15px;padding-bottom:60px}.c-copyright,.c-data-controller{text-align:center;font-size:13px}.c-data-controller{margin-bottom:20px;padding:10px 0;font-weight:300;line-height:19px}.c-data-controller p{margin:0 0 10px}.c-division{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;border-radius:3px;color:#004ed4;font-weight:500}.c-division:hover{background-color:#dde6f5}.c-feedbacks--img{position:absolute;top:-32px;left:50%;margin-left:-42px}.c-feedbacks--feedback{margin:0 auto 10px;max-width:260px;height:58px;color:#2a3644;font-family:Georgia;font-size:14px;line-height:26px;text-align:center;overflow:hidden}.c-feedbacks--name{color:#919191;font-family:Georgia;font-size:13px;line-height:15px;text-align:center;padding:0 10px}.swiper-container-horizontal>.swiper-pagination-bullets{bottom:0}.swiper-pagination-bullet{width:9px;height:9px;background:#d8d8d8;opacity:1}.swiper-pagination-bullet-active{background:#717171}.c-footer-section{line-height:36px;margin:0 0 18px}.c-footer-section h4{margin:0;padding:0}.c-footer-section--heading{margin:0;font-weight:500}.c-form--checkbox--error+label:before{border-color:#eb4646}.c-form--validation{background-color:#fff;margin-top:5px;padding:10px 15px;border:1px solid;font-size:13px;line-height:20px}.c-form--input-wrap--error .c-form--input,.c-form--input-wrap--error .c-form--textarea{border-color:#eb4646}.c-form--input-wrap--success .c-form--input,.c-form--input-wrap--success .c-form--textarea{border-color:#17dab9}.c-form--validation-error{color:#eb4646;border-color:#eb4646;margin-bottom:10px}.c-form--validation-success{color:#17dab9;border-color:#17dab9;margin-bottom:10px}.c-form--autocomplete ul{overflow-x:hidden;max-height:250px;overflow-y:auto;border:1px solid #d4d4d4;border-radius:0 0 3px 3px}.c-form--autocomplete li{padding:5px 10px;cursor:pointer}.c-jobs--headline{min-height:29px;margin:0 0 25px;padding:20px 20px 0;color:#2a3644;font-size:25px;font-weight:500;line-height:29px}.c-jobs--table{width:100%;margin:0 0 20px}.c-jobs--table tr:hover td{background:#f8fbff}.c-jobs--col-city{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.c-jobs--col-valid{color:#19c5a7;white-space:nowrap;padding-right:15px;padding-left:5px;width:100px}.c-jobs--anchor{display:block;padding:4px 0;color:#004ed4;font-weight:500;line-height:18px;text-decoration:none}.c-jobs--anchor:hover{text-decoration:underline}.c-jobs--anchor:visited{color:#551b89}.pods-pagination-paginate{display:-webkit-flex;display:flex;margin-bottom:90px}.page-numbers{width:46px;height:46px;background:#fff;margin-right:1px;text-decoration:none;text-align:center;line-height:46px;color:#1fb299;font-size:16px}.page-numbers:hover{background:#149a83;background:var(--color--green-darker);color:#fff}.page-numbers:hover:after{border-color:#fff}.page-numbers.current{background:#1fb299;color:#fff}.next:after{display:inline-block;margin:0 0 2px -6px;content:"";width:8px;height:8px;border:1px solid #1fb299;border-width:1px 1px 0 0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.prev:after{display:inline-block;margin:0 -6px 2px 0;content:"";width:8px;height:8px;border:1px solid #1fb299;border-width:1px 1px 0 0;-webkit-transform:rotate(-135deg);transform:rotate(-135deg)}.c-jobs-section{border-radius:3px;background-color:#fff}.c-jobs-section--heading{padding:0;color:#2a3644;font-size:18px;font-weight:500;line-height:21px}.c-jobs-section--content{overflow:hidden}.c-jobs-section--is-closed .c-jobs-section--content{max-height:100px}.c-jobs-section--item-active .c-jobs-section--anchor{color:#1fb299}.c-jobs-section--anchor{display:block;color:#939393;font-size:14px;text-decoration:none;padding:7px 0;line-height:19px}.c-jobs-section--anchor:hover{text-decoration:underline}.c-jobs-section--expand{display:block;color:#004ed4;font-size:14px;font-weight:500;margin-top:10px;padding:5px 0;text-decoration:none}.c-nav--main-anchor{display:block;padding:5px 0 4px;text-transform:uppercase;border-bottom:2px solid transparent;font-weight:700;letter-spacing:1px;opacity:.6}.c-nav--main-anchor:hover{opacity:1}.c-nav--sub{position:absolute}.c-nav--sub-anchor{display:block;padding:16px 0 17px;color:#fff;text-transform:uppercase;white-space:nowrap;text-decoration:none;font-weight:700;letter-spacing:1.08px;line-height:1}.c-nav--sub-anchor:hover{color:#1fb299;color:var(--color--green)}.c-nav--footer{font-weight:300}.c-nav--footer a{text-decoration:none}.c-nav--footer a:hover{text-decoration:underline}.c-nav--lang--is-open .c-nav--lang-item:nth-child(n+2){display:block}.c-nav--lang{position:absolute;top:0;left:0;width:100%;border-radius:3px;z-index:20;font-weight:500}.c-nav--lang-anchor{padding-left:34px;text-decoration:none;display:block;color:#fff;font-size:14px;line-height:24px;background-repeat:no-repeat;background-position:6px 0;background-size:20px 20px;font-weight:400}.c-nav--lang-anchor:hover{text-decoration:underline}.c-nav--lang-anchor svg{float:right;margin:9px 6px 0 0}.c-nav--lang-anchor--active:hover{text-decoration:none;cursor:pointer}.c-nav--lang-anchor-lt{background-image:url(/wp-content/themes/biuro/i/lang/lt.png)}.c-nav--lang-anchor-en{background-image:url(/wp-content/themes/biuro/i/lang/en.png)}.c-nav--lang-anchor-de{background-image:url(/wp-content/themes/biuro/i/lang/de.png)}.c-nav--lang-anchor-ru{background-image:url(/wp-content/themes/biuro/i/lang/ru.png)}.c-nav--lang-anchor-lv{background-image:url(/wp-content/themes/biuro/i/lang/lv.png)}.c-nav--lang-anchor-et{background-image:url(/wp-content/themes/biuro/i/lang/et.png)}.c-sections--heading{color:#2a3644;margin:0 0 40px;padding:0;font-size:25px;font-weight:500;line-height:29px;text-align:center}.c-sections--item-inner{top:0;height:211px;padding:27px 21px;border-radius:3px;box-shadow:2px 2px 31px 0 hsla(0,0%,93.3%,.5);overflow:hidden}.c-sections--item-inner,.c-sections--toggle{position:absolute;left:0;width:100%;background:#fff}.c-sections--toggle{bottom:0;padding:15px 0;text-align:center;border-radius:0 0 3px 3px;z-index:60;box-shadow:0 -37px 24px 0 hsla(0,0%,100%,.78);cursor:pointer}.c-sections--toggle-up{display:none}.c-sections--header{height:56px;margin-bottom:20px;overflow:hidden;color:#004ed4;font-size:15px;font-weight:700;line-height:56px}.c-sections--ico{float:left;margin-right:20px;height:56px;width:56px;background-color:#e8f0ff;border-radius:50%}.c-sections--content{color:#868c93;font-size:12px;line-height:20px}.c-sections--content ul{margin:30px 0 0;padding:0;list-style:none}.c-sections--is-open{height:451px;z-index:80}.c-sections--is-open .c-sections--toggle{box-shadow:none}.c-sections--is-open .c-sections--toggle-down{display:none}.c-sections--is-open .c-sections--toggle-up{display:inline}.c-services--item-inner{position:absolute;top:0;left:0;width:100%;height:245px;border-radius:3px;background-color:#fff;box-shadow:2px 2px 31px 0 hsla(0,0%,93.3%,.5)}.c-services--toggle{display:block;position:absolute;left:0;width:100%;bottom:0;padding:10px 0;text-align:center;cursor:pointer}.c-services--toggle-up{display:none}.c-services--is-open{height:341px;z-index:200}.c-services--is-open .c-services--toggle-down{display:none}.c-services--is-open .c-services--toggle-up{display:inline}.c-services--is-open .c-services--content{display:block}.c-services--ico{height:56px;width:56px;background-color:#e1fffa;border-radius:50%;margin:34px auto 22px}.c-services--heading{min-height:44px;padding:0 20px;color:#1fb299;font-size:15px;font-weight:700;line-height:18px;text-align:center}.c-services--sub-heading{min-height:27px;margin:0;padding:0 10px;color:#2a3644;font-size:14px;font-weight:700;line-height:25px;text-align:center}.c-services--content{display:none}.c-services--content ul{position:absolute;margin:0;padding:0 0 40px;list-style:none;width:100%;border-radius:3px;background-color:#fff}.c-services--content li{color:#6c7683;font-size:14px;font-weight:500;line-height:25px;text-align:center}.c-social{margin-bottom:40px;text-align:center}.c-social--anchor{text-decoration:none;margin:0 5px;padding:0 10px}.c-values{background:linear-gradient(138.69deg,#4eacd9,#2fb8a1);color:#fff}.c-values--heading{display:inline-block;min-width:139px;margin:0 0 18px;padding:0 10px 0 0;border-bottom:4px solid #fff;font-weight:700;color:#f8f8f8}.c-values--content{display:block;min-height:67px;margin:0 0 20px;padding:0;font-size:15px;line-height:26px;font-weight:500}.t-reason{padding:0;border:0}.t-reason td{display:block;vertical-align:top}.t-reason .t-reason-col-2 h2{padding:25px 0 13px}.t-reason h2{text-align:center}.t-reason ul{padding:0}.t-contacts{width:100%;height:auto!important}.t-contacts td{vertical-align:top;display:block;width:100%}.t-contacts p{text-align:left}.is-nav--main-item-active{position:relative}.is-nav--main-item-active .c-nav--sub{display:block}.is-nav--main-anchor-active{opacity:1}.is-nav--sub-anchor-active{color:#19c5a7}.u-align--center{text-align:center}input::-webkit-calendar-picker-indicator{display:none}.tmp-contacts img{display:none}.tmp-contacts ul{padding-left:5px}.c-logos{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-justify-content:space-between;justify-content:space-between}.c-logos div{-webkit-flex:0 0 21%;flex:0 0 21%;border:1px solid grey;padding:1em;margin-bottom:1em;text-align:center}.biuro-ti-img{display:none}.t-membership{width:100%;border:0;text-align:left}.t-membership td{text-align:justify;vertical-align:middle}.t-membership .t-membership-row-4 td{border-bottom:none}@media (min-width:80em){[href^=tel]{pointer-events:none;text-decoration:none;color:inherit}}@media (min-width:48em){.l-section--front-page{background-size:150%}}@media (min-width:60em){.l-section--front-page{background-size:cover}.c-data-controller{margin-bottom:35px;padding:15px 0 10px;line-height:1.1}.c-feedbacks--feedback{margin:0 auto 17px;height:79px;font-size:21px;line-height:40px;max-width:400px}.c-feedbacks--name{font-size:15px;line-height:17px}.c-footer-sections{-webkit-flex-wrap:wrap;flex-wrap:wrap}.c-footer-section{line-height:25px;margin:0 0 30px}.c-form--validation{position:absolute;top:50%;right:100%;min-width:200px;margin-top:11px;-webkit-transform:translate(-30px,-50%);transform:translate(-30px,-50%)}.c-jobs--col-position{padding-right:5px}.c-jobs--col-city{max-width:140px;padding-right:5px;padding-left:5px}.c-jobs--anchor{padding:10px 0}.c-nav--sub{top:100%}.c-nav--sub-item{margin-right:46px}.c-nav--lang{background:#fff}.c-nav--lang-anchor{color:#2a3644;font-weight:500}.c-services--heading{min-height:44px}.c-share{margin-bottom:90px}.c-values--content{min-height:80px;line-height:30px}.t-reason td{display:table-cell;width:50%}.t-reason .t-reason-col-1{padding-right:20px;border-right:1px solid #dfdfdf}.t-reason .t-reason-col-2{padding-left:20px}.t-reason .t-reason-col-2 h2{padding:12px 0 25px}.is-nav--main-item-active .c-nav--sub{display:-webkit-flex;display:flex}.is-nav--main-anchor-active{border-bottom-color:#1d2a3a;border-bottom-color:var(--color--blue-dark)}}@media (max-width:59.999em){.c-footer-sections{text-align:center;font-size:13px}.c-jobs--headline{min-height:26px;font-size:18px;font-weight:500;line-height:26px;text-align:center}.c-jobs--col-city,.c-jobs--col-valid{border-bottom:1px solid #f8f8f8;border-bottom:1px solid var(--color--gray-light);font-size:13px;padding-top:0}.c-jobs--col-valid{width:50%;text-align:right}.c-jobs--anchor{font-size:16px;line-height:23px}.c-jobs-section{border-radius:0;margin:0;padding-bottom:0;position:relative}.c-nav--sub{right:0;left:auto;top:150%}.c-nav--lang--is-open{background-color:#1d2a3a;opacity:.97;z-index:800;box-shadow:0 0 20px 60px #1d2a3a}.c-trust--img-svyturys{width:76px;height:23px}.c-trust--img-dpd{width:53px;height:23px}.c-trust--img-pergale{width:72px;height:16px}.c-trust--img-maxima{width:74px;height:17px}.c-trust--img-pasts{width:85px;height:20px}.c-trust--img-dhl{width:91px;height:13px}.c-trust--img-staburadze{width:90px;height:27px}.c-trust--img-cido{width:51px;height:33px}.c-trust--img-itella{width:60px;height:38px}.c-trust--img-saku{width:56px;height:41px}.c-trust--img-leibur{width:50px;height:42px}.c-trust--img-maxima-ee{width:86px;height:18px}.is-nav--main-anchor-active{border-bottom-color:#fff}.is-nav--open .l-nav--wrap{display:-webkit-flex;display:flex}.is-aside--open{overflow:hidden}.is-aside--open .l-aside--search{display:block}.is-aside--open .l-header{z-index:-1}.is-aside--open:after{content:"";position:fixed;opacity:.97;background-color:#2a3644;top:0;left:0;width:100%;height:100%}.is-aside--open .c-jobs-section--content{max-height:2000em}.is-aside--open .c-jobs-section--expand{display:none}.c-fixed-footer{position:fixed;left:0;bottom:0;width:100%;background:hsla(0,0%,100%,.85);padding:20px 20px 0;box-shadow:0 -1px 1px 0 rgba(0,0,0,.45)}}@media (min-width:93.75em){.c-form--validation{left:100%;right:auto;-webkit-transform:translate(30px,-50%);transform:translate(30px,-50%)}}@media (max-width:767px){.t-membership tr{display:block}.t-membership td{display:block;float:left;width:100%}.t-membership .t-membership-col-2{border-bottom:1px solid #dfdfdf;padding:0 0 20px}}@media (min-width:768px){.t-membership-col-1{width:150px;padding-right:20px}}@media (min-width:980px){.t-membership-col-1{width:250px;padding-right:0}}
\ No newline at end of file
......@@ -91,7 +91,7 @@
<?php
endif;
?>
<script src="/wp-content/themes/biuro/js/main-68f7bbda.min.js" async></script>
<script src="/wp-content/themes/biuro/js/main-f697313b.min.js" async></script>
<?php
// global $time_start;
......
......@@ -889,3 +889,25 @@ function getDivisions($ID) {
return $wpdb->get_results($sql, ARRAY_A);
}
function getCities() {
global $wpdb;
$langs = pll_the_languages(array('raw'=>1));
$langID = $langs[pll_current_language('slug')]['id'];
$prefix = $wpdb->prefix;
$cities = get_terms( array(
'taxonomy' => 'city',
'hide_empty' => false,
) );
delog($wpdb->last_query);
delog('$terms');
debug($terms);
return [];
}
......@@ -31,15 +31,15 @@
<link rel="preload" as="font" type="font/woff2" href="/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-500.woff2" crossorigin="anonymous" >
<link rel="preload" as="font" type="font/woff2" href="/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-regular.woff2" crossorigin="anonymous" >
<style><?php include 'css/core-bfe6eeea3f.min.css'; ?></style>
<style><?php include 'css/core-b4dd038b5e.min.css'; ?></style>
<link rel="preload" as="font" type="font/woff2" href="/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-300.woff2" crossorigin="anonymous" >
<link rel="preload" as="font" type="font/woff2" href="/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-700.woff2" crossorigin="anonymous" >
<link rel="preload" href="/wp-content/themes/biuro/css/main-39ee6ce3d1.min.css" as="style" onload="this.rel='stylesheet'">
<link rel="preload" href="/wp-content/themes/biuro/css/main-5e3bf9f768.min.css" as="style" onload="this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="/wp-content/themes/biuro/css/main-39ee6ce3d1.min.css">
<link rel="stylesheet" href="/wp-content/themes/biuro/css/main-5e3bf9f768.min.css">
</noscript>
<?php wp_head(); ?>
......
......@@ -31,15 +31,15 @@
<link rel="preload" as="font" type="font/woff2" href="/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-500.woff2" crossorigin="anonymous" >
<link rel="preload" as="font" type="font/woff2" href="/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-regular.woff2" crossorigin="anonymous" >
<style><?php include 'css/core-bfe6eeea3f.min.css'; ?></style>
<style><?php include 'css/core-b4dd038b5e.min.css'; ?></style>
<link rel="preload" as="font" type="font/woff2" href="/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-300.woff2" crossorigin="anonymous" >
<link rel="preload" as="font" type="font/woff2" href="/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-700.woff2" crossorigin="anonymous" >
<link rel="preload" href="/wp-content/themes/biuro/css/main-39ee6ce3d1.min.css" as="style" onload="this.rel='stylesheet'">
<link rel="preload" href="/wp-content/themes/biuro/css/main-5e3bf9f768.min.css" as="style" onload="this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="/wp-content/themes/biuro/css/main-39ee6ce3d1.min.css">
<link rel="stylesheet" href="/wp-content/themes/biuro/css/main-5e3bf9f768.min.css">
</noscript>
<?php wp_head(); ?>
......
(window.webpackJsonp=window.webpackJsonp||[]).push([[0],[,,function(t,e,i){"use strict";i.r(e);var n=i(4);const s=document.getElementById("search-city");if(s){const t=new n.a(s,{minChars:0,maxItems:1e3,sort:!1});s.addEventListener("focus",()=>{t.evaluate()})}const r=document.getElementById("search-query");if(r){const t=new n.a(r,{minChars:0,maxItems:1e3,sort:!1});r.addEventListener("focus",()=>{t.evaluate()})}const o=document.getElementById("search");o&&o.addEventListener("submit",t=>{s.value||r.value||(s.focus(),t.preventDefault())},!1)},,function(t,e,i){"use strict";(function(t){e.a=function(){var e=function(t,i){var n=this;e.count=(e.count||0)+1,this.count=e.count,this.isOpened=!1,this.input=s(t),this.input.setAttribute("autocomplete","off"),this.input.setAttribute("aria-expanded","false"),this.input.setAttribute("aria-owns","awesomplete_list_"+this.count),this.input.setAttribute("role","combobox"),this.options=i=i||{},function(t,e,i){for(var n in e){var s=e[n],r=t.input.getAttribute("data-"+n.toLowerCase());"number"==typeof s?t[n]=parseInt(r):!1===s?t[n]=null!==r:s instanceof Function?t[n]=null:t[n]=r,t[n]||0===t[n]||(t[n]=n in i?i[n]:s)}}(this,{minChars:2,maxItems:10,autoFirst:!1,data:e.DATA,filter:e.FILTER_CONTAINS,sort:!1!==i.sort&&e.SORT_BYLENGTH,container:e.CONTAINER,item:e.ITEM,replace:e.REPLACE,tabSelect:!1},i),this.index=-1,this.container=this.container(t),this.ul=s.create("ul",{hidden:"hidden",role:"listbox",id:"awesomplete_list_"+this.count,inside:this.container}),this.status=s.create("span",{className:"visually-hidden",role:"status","aria-live":"assertive","aria-atomic":!0,inside:this.container,textContent:0!=this.minChars?"Type "+this.minChars+" or more characters for results.":"Begin typing for results."}),this._events={input:{input:this.evaluate.bind(this),blur:this.close.bind(this,{reason:"blur"}),keydown:function(t){var e=t.keyCode;n.opened&&(13===e&&n.selected?(t.preventDefault(),n.select()):9===e&&n.selected&&n.tabSelect?n.select():27===e?n.close({reason:"esc"}):38!==e&&40!==e||(t.preventDefault(),n[38===e?"previous":"next"]()))}},form:{submit:this.close.bind(this,{reason:"submit"})},ul:{mousedown:function(t){t.preventDefault()},click:function(t){var e=t.target;if(e!==this){for(;e&&!/li/i.test(e.nodeName);)e=e.parentNode;e&&0===t.button&&(t.preventDefault(),n.select(e,t.target))}}}},s.bind(this.input,this._events.input),s.bind(this.input.form,this._events.form),s.bind(this.ul,this._events.ul),this.input.hasAttribute("list")?(this.list="#"+this.input.getAttribute("list"),this.input.removeAttribute("list")):this.list=this.input.getAttribute("data-list")||i.list||[],e.all.push(this)};function i(t){var e=Array.isArray(t)?{label:t[0],value:t[1]}:"object"==typeof t&&"label"in t&&"value"in t?t:{label:t,value:t};this.label=e.label||e.value,this.value=e.value}e.prototype={set list(t){if(Array.isArray(t))this._list=t;else if("string"==typeof t&&t.indexOf(",")>-1)this._list=t.split(/\s*,\s*/);else if((t=s(t))&&t.children){var e=[];n.apply(t.children).forEach(function(t){if(!t.disabled){var i=t.textContent.trim(),n=t.value||i,s=t.label||i;""!==n&&e.push({label:s,value:n})}}),this._list=e}document.activeElement===this.input&&this.evaluate()},get selected(){return this.index>-1},get opened(){return this.isOpened},close:function(t){this.opened&&(this.input.setAttribute("aria-expanded","false"),this.ul.setAttribute("hidden",""),this.isOpened=!1,this.index=-1,this.status.setAttribute("hidden",""),s.fire(this.input,"awesomplete-close",t||{}))},open:function(){this.input.setAttribute("aria-expanded","true"),this.ul.removeAttribute("hidden"),this.isOpened=!0,this.status.removeAttribute("hidden"),this.autoFirst&&-1===this.index&&this.goto(0),s.fire(this.input,"awesomplete-open")},destroy:function(){if(s.unbind(this.input,this._events.input),s.unbind(this.input.form,this._events.form),!this.options.container){var t=this.container.parentNode;t.insertBefore(this.input,this.container),t.removeChild(this.container)}this.input.removeAttribute("autocomplete"),this.input.removeAttribute("aria-autocomplete");var i=e.all.indexOf(this);-1!==i&&e.all.splice(i,1)},next:function(){var t=this.ul.children.length;this.goto(this.index<t-1?this.index+1:t?0:-1)},previous:function(){var t=this.ul.children.length,e=this.index-1;this.goto(this.selected&&-1!==e?e:t-1)},goto:function(t){var e=this.ul.children;this.selected&&e[this.index].setAttribute("aria-selected","false"),this.index=t,t>-1&&e.length>0&&(e[t].setAttribute("aria-selected","true"),this.status.textContent=e[t].textContent+", list item "+(t+1)+" of "+e.length,this.input.setAttribute("aria-activedescendant",this.ul.id+"_item_"+this.index),this.ul.scrollTop=e[t].offsetTop-this.ul.clientHeight+e[t].clientHeight,s.fire(this.input,"awesomplete-highlight",{text:this.suggestions[this.index]}))},select:function(t,e){if(t?this.index=s.siblingIndex(t):t=this.ul.children[this.index],t){var i=this.suggestions[this.index];s.fire(this.input,"awesomplete-select",{text:i,origin:e||t})&&(this.replace(i),this.close({reason:"select"}),s.fire(this.input,"awesomplete-selectcomplete",{text:i}))}},evaluate:function(){var t=this,e=this.input.value;e.length>=this.minChars&&this._list&&this._list.length>0?(this.index=-1,this.ul.innerHTML="",this.suggestions=this._list.map(function(n){return new i(t.data(n,e))}).filter(function(i){return t.filter(i,e)}),!1!==this.sort&&(this.suggestions=this.suggestions.sort(this.sort)),this.suggestions=this.suggestions.slice(0,this.maxItems),this.suggestions.forEach(function(i,n){t.ul.appendChild(t.item(i,e,n))}),0===this.ul.children.length?(this.status.textContent="No results found",this.close({reason:"nomatches"})):(this.open(),this.status.textContent=this.ul.children.length+" results found")):(this.close({reason:"nomatches"}),this.status.textContent="No results found")}},e.all=[],e.FILTER_CONTAINS=function(t,e){return RegExp(s.regExpEscape(e.trim()),"i").test(t)},e.FILTER_STARTSWITH=function(t,e){return RegExp("^"+s.regExpEscape(e.trim()),"i").test(t)},e.SORT_BYLENGTH=function(t,e){return t.length!==e.length?t.length-e.length:t<e?-1:1},e.CONTAINER=function(t){return s.create("div",{className:"awesomplete",around:t})},e.ITEM=function(t,e,i){var n=""===e.trim()?t:t.replace(RegExp(s.regExpEscape(e.trim()),"gi"),"<mark>$&</mark>");return s.create("li",{innerHTML:n,role:"option","aria-selected":"false",id:"awesomplete_list_"+this.count+"_item_"+i})},e.REPLACE=function(t){this.input.value=t.value},e.DATA=function(t){return t},Object.defineProperty(i.prototype=Object.create(String.prototype),"length",{get:function(){return this.label.length}}),i.prototype.toString=i.prototype.valueOf=function(){return""+this.label};var n=Array.prototype.slice;function s(t,e){return"string"==typeof t?(e||document).querySelector(t):t||null}function r(t,e){return n.call((e||document).querySelectorAll(t))}function o(){r("input.awesomplete").forEach(function(t){new e(t)})}return s.create=function(t,e){var i=document.createElement(t);for(var n in e){var r=e[n];if("inside"===n)s(r).appendChild(i);else if("around"===n){var o=s(r);o.parentNode.insertBefore(i,o),i.appendChild(o),null!=o.getAttribute("autofocus")&&o.focus()}else n in i?i[n]=r:i.setAttribute(n,r)}return i},s.bind=function(t,e){if(t)for(var i in e){var n=e[i];i.split(/\s+/).forEach(function(e){t.addEventListener(e,n)})}},s.unbind=function(t,e){if(t)for(var i in e){var n=e[i];i.split(/\s+/).forEach(function(e){t.removeEventListener(e,n)})}},s.fire=function(t,e,i){var n=document.createEvent("HTMLEvents");for(var s in n.initEvent(e,!0,!0),i)n[s]=i[s];return t.dispatchEvent(n)},s.regExpEscape=function(t){return t.replace(/[-\\^$*+?.()|[\]{}]/g,"\\$&")},s.siblingIndex=function(t){for(var e=0;t=t.previousElementSibling;e++);return e},"undefined"!=typeof self&&(self.Awesomplete=e),"undefined"!=typeof Document&&("loading"!==document.readyState?o():document.addEventListener("DOMContentLoaded",o)),e.$=s,e.$$=r,t.exports&&(t.exports=e),e}()}).call(this,i(5)(t))},function(t,e){t.exports=function(t){if(!t.webpackPolyfill){var e=Object.create(t);e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),Object.defineProperty(e,"exports",{enumerable:!0}),e.webpackPolyfill=1}return e}}]]);
\ No newline at end of file
(window.webpackJsonp=window.webpackJsonp||[]).push([[0],[,,function(t,e,i){"use strict";i.r(e);var n=i(4);const s=document.getElementById("search-city");if(s){const t=new n.a(s,{minChars:0,maxItems:1e3,sort:!1});s.addEventListener("focus",()=>{t.evaluate()})}const r=document.getElementById("search-query");if(r){const t=new n.a(r,{minChars:0,maxItems:1e3,sort:!1});r.addEventListener("focus",()=>{t.evaluate()})}const o=document.getElementById("form-city"),u=document.getElementById("form-city-id");if(o){const t=new n.a(o,{minChars:0,maxItems:1e3,sort:!1,replace:function(t){this.input.value=t.label,u&&(u.value=t.value)}});o.addEventListener("focus",()=>{t.evaluate()})}},,function(t,e,i){"use strict";(function(t){e.a=function(){var e=function(t,i){var n=this;e.count=(e.count||0)+1,this.count=e.count,this.isOpened=!1,this.input=s(t),this.input.setAttribute("autocomplete","off"),this.input.setAttribute("aria-expanded","false"),this.input.setAttribute("aria-owns","awesomplete_list_"+this.count),this.input.setAttribute("role","combobox"),this.options=i=i||{},function(t,e,i){for(var n in e){var s=e[n],r=t.input.getAttribute("data-"+n.toLowerCase());"number"==typeof s?t[n]=parseInt(r):!1===s?t[n]=null!==r:s instanceof Function?t[n]=null:t[n]=r,t[n]||0===t[n]||(t[n]=n in i?i[n]:s)}}(this,{minChars:2,maxItems:10,autoFirst:!1,data:e.DATA,filter:e.FILTER_CONTAINS,sort:!1!==i.sort&&e.SORT_BYLENGTH,container:e.CONTAINER,item:e.ITEM,replace:e.REPLACE,tabSelect:!1},i),this.index=-1,this.container=this.container(t),this.ul=s.create("ul",{hidden:"hidden",role:"listbox",id:"awesomplete_list_"+this.count,inside:this.container}),this.status=s.create("span",{className:"visually-hidden",role:"status","aria-live":"assertive","aria-atomic":!0,inside:this.container,textContent:0!=this.minChars?"Type "+this.minChars+" or more characters for results.":"Begin typing for results."}),this._events={input:{input:this.evaluate.bind(this),blur:this.close.bind(this,{reason:"blur"}),keydown:function(t){var e=t.keyCode;n.opened&&(13===e&&n.selected?(t.preventDefault(),n.select()):9===e&&n.selected&&n.tabSelect?n.select():27===e?n.close({reason:"esc"}):38!==e&&40!==e||(t.preventDefault(),n[38===e?"previous":"next"]()))}},form:{submit:this.close.bind(this,{reason:"submit"})},ul:{mousedown:function(t){t.preventDefault()},click:function(t){var e=t.target;if(e!==this){for(;e&&!/li/i.test(e.nodeName);)e=e.parentNode;e&&0===t.button&&(t.preventDefault(),n.select(e,t.target))}}}},s.bind(this.input,this._events.input),s.bind(this.input.form,this._events.form),s.bind(this.ul,this._events.ul),this.input.hasAttribute("list")?(this.list="#"+this.input.getAttribute("list"),this.input.removeAttribute("list")):this.list=this.input.getAttribute("data-list")||i.list||[],e.all.push(this)};function i(t){var e=Array.isArray(t)?{label:t[0],value:t[1]}:"object"==typeof t&&"label"in t&&"value"in t?t:{label:t,value:t};this.label=e.label||e.value,this.value=e.value}e.prototype={set list(t){if(Array.isArray(t))this._list=t;else if("string"==typeof t&&t.indexOf(",")>-1)this._list=t.split(/\s*,\s*/);else if((t=s(t))&&t.children){var e=[];n.apply(t.children).forEach(function(t){if(!t.disabled){var i=t.textContent.trim(),n=t.value||i,s=t.label||i;""!==n&&e.push({label:s,value:n})}}),this._list=e}document.activeElement===this.input&&this.evaluate()},get selected(){return this.index>-1},get opened(){return this.isOpened},close:function(t){this.opened&&(this.input.setAttribute("aria-expanded","false"),this.ul.setAttribute("hidden",""),this.isOpened=!1,this.index=-1,this.status.setAttribute("hidden",""),s.fire(this.input,"awesomplete-close",t||{}))},open:function(){this.input.setAttribute("aria-expanded","true"),this.ul.removeAttribute("hidden"),this.isOpened=!0,this.status.removeAttribute("hidden"),this.autoFirst&&-1===this.index&&this.goto(0),s.fire(this.input,"awesomplete-open")},destroy:function(){if(s.unbind(this.input,this._events.input),s.unbind(this.input.form,this._events.form),!this.options.container){var t=this.container.parentNode;t.insertBefore(this.input,this.container),t.removeChild(this.container)}this.input.removeAttribute("autocomplete"),this.input.removeAttribute("aria-autocomplete");var i=e.all.indexOf(this);-1!==i&&e.all.splice(i,1)},next:function(){var t=this.ul.children.length;this.goto(this.index<t-1?this.index+1:t?0:-1)},previous:function(){var t=this.ul.children.length,e=this.index-1;this.goto(this.selected&&-1!==e?e:t-1)},goto:function(t){var e=this.ul.children;this.selected&&e[this.index].setAttribute("aria-selected","false"),this.index=t,t>-1&&e.length>0&&(e[t].setAttribute("aria-selected","true"),this.status.textContent=e[t].textContent+", list item "+(t+1)+" of "+e.length,this.input.setAttribute("aria-activedescendant",this.ul.id+"_item_"+this.index),this.ul.scrollTop=e[t].offsetTop-this.ul.clientHeight+e[t].clientHeight,s.fire(this.input,"awesomplete-highlight",{text:this.suggestions[this.index]}))},select:function(t,e){if(t?this.index=s.siblingIndex(t):t=this.ul.children[this.index],t){var i=this.suggestions[this.index];s.fire(this.input,"awesomplete-select",{text:i,origin:e||t})&&(this.replace(i),this.close({reason:"select"}),s.fire(this.input,"awesomplete-selectcomplete",{text:i}))}},evaluate:function(){var t=this,e=this.input.value;e.length>=this.minChars&&this._list&&this._list.length>0?(this.index=-1,this.ul.innerHTML="",this.suggestions=this._list.map(function(n){return new i(t.data(n,e))}).filter(function(i){return t.filter(i,e)}),!1!==this.sort&&(this.suggestions=this.suggestions.sort(this.sort)),this.suggestions=this.suggestions.slice(0,this.maxItems),this.suggestions.forEach(function(i,n){t.ul.appendChild(t.item(i,e,n))}),0===this.ul.children.length?(this.status.textContent="No results found",this.close({reason:"nomatches"})):(this.open(),this.status.textContent=this.ul.children.length+" results found")):(this.close({reason:"nomatches"}),this.status.textContent="No results found")}},e.all=[],e.FILTER_CONTAINS=function(t,e){return RegExp(s.regExpEscape(e.trim()),"i").test(t)},e.FILTER_STARTSWITH=function(t,e){return RegExp("^"+s.regExpEscape(e.trim()),"i").test(t)},e.SORT_BYLENGTH=function(t,e){return t.length!==e.length?t.length-e.length:t<e?-1:1},e.CONTAINER=function(t){return s.create("div",{className:"awesomplete",around:t})},e.ITEM=function(t,e,i){var n=""===e.trim()?t:t.replace(RegExp(s.regExpEscape(e.trim()),"gi"),"<mark>$&</mark>");return s.create("li",{innerHTML:n,role:"option","aria-selected":"false",id:"awesomplete_list_"+this.count+"_item_"+i})},e.REPLACE=function(t){this.input.value=t.value},e.DATA=function(t){return t},Object.defineProperty(i.prototype=Object.create(String.prototype),"length",{get:function(){return this.label.length}}),i.prototype.toString=i.prototype.valueOf=function(){return""+this.label};var n=Array.prototype.slice;function s(t,e){return"string"==typeof t?(e||document).querySelector(t):t||null}function r(t,e){return n.call((e||document).querySelectorAll(t))}function o(){r("input.awesomplete").forEach(function(t){new e(t)})}return s.create=function(t,e){var i=document.createElement(t);for(var n in e){var r=e[n];if("inside"===n)s(r).appendChild(i);else if("around"===n){var o=s(r);o.parentNode.insertBefore(i,o),i.appendChild(o),null!=o.getAttribute("autofocus")&&o.focus()}else n in i?i[n]=r:i.setAttribute(n,r)}return i},s.bind=function(t,e){if(t)for(var i in e){var n=e[i];i.split(/\s+/).forEach(function(e){t.addEventListener(e,n)})}},s.unbind=function(t,e){if(t)for(var i in e){var n=e[i];i.split(/\s+/).forEach(function(e){t.removeEventListener(e,n)})}},s.fire=function(t,e,i){var n=document.createEvent("HTMLEvents");for(var s in n.initEvent(e,!0,!0),i)n[s]=i[s];return t.dispatchEvent(n)},s.regExpEscape=function(t){return t.replace(/[-\\^$*+?.()|[\]{}]/g,"\\$&")},s.siblingIndex=function(t){for(var e=0;t=t.previousElementSibling;e++);return e},"undefined"!=typeof self&&(self.Awesomplete=e),"undefined"!=typeof Document&&("loading"!==document.readyState?o():document.addEventListener("DOMContentLoaded",o)),e.$=s,e.$$=r,t.exports&&(t.exports=e),e}()}).call(this,i(5)(t))},function(t,e){t.exports=function(t){if(!t.webpackPolyfill){var e=Object.create(t);e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),Object.defineProperty(e,"exports",{enumerable:!0}),e.webpackPolyfill=1}return e}}]]);
\ No newline at end of file
......@@ -28,13 +28,25 @@ if (query) {
});
}
const search = document.getElementById('search');
const node = document.getElementById('form-city');
const cityID = document.getElementById('form-city-id');
if (search) {
search.addEventListener('submit', (e) => {
if (!city.value && !query.value) {
city.focus();
e.preventDefault();
if (node) {
const nodeBox = new Awesomplete(node, {
minChars: 0,
maxItems: 1000,
sort: false,
replace: function (suggestion) {
this.input.value = suggestion.label;
if (cityID) {
cityID.value = suggestion.value;
}
}
}, false);
});
node.addEventListener('focus', () => {
nodeBox.evaluate();
});
}
!function(e){function o(o){for(var t,c,r=o[0],i=o[1],s=0,l=[];s<r.length;s++)c=r[s],n[c]&&l.push(n[c][0]),n[c]=0;for(t in i)Object.prototype.hasOwnProperty.call(i,t)&&(e[t]=i[t]);for(a&&a(o);l.length;)l.shift()()}var t={},n={2:0};function c(o){if(t[o])return t[o].exports;var n=t[o]={i:o,l:!1,exports:{}};return e[o].call(n.exports,n,n.exports,c),n.l=!0,n.exports}c.e=function(e){var o=[],t=n[e];if(0!==t)if(t)o.push(t[2]);else{var r=new Promise(function(o,c){t=n[e]=[o,c]});o.push(t[2]=r);var i,s=document.createElement("script");s.charset="utf-8",s.timeout=120,c.nc&&s.setAttribute("nonce",c.nc),s.src=function(e){return c.p+"wp-content/themes/biuro/js/components/"+({0:"autocomplete",1:"feedbacks"}[e]||e)+"-68f7bbda.min.js"}(e);var a=new Error;i=function(o){s.onerror=s.onload=null,clearTimeout(l);var t=n[e];if(0!==t){if(t){var c=o&&("load"===o.type?"missing":o.type),r=o&&o.target&&o.target.src;a.message="Loading chunk "+e+" failed.\n("+c+": "+r+")",a.name="ChunkLoadError",a.type=c,a.request=r,t[1](a)}n[e]=void 0}};var l=setTimeout(function(){i({type:"timeout",target:s})},12e4);s.onerror=s.onload=i,document.head.appendChild(s)}return Promise.all(o)},c.m=e,c.c=t,c.d=function(e,o,t){c.o(e,o)||Object.defineProperty(e,o,{enumerable:!0,get:t})},c.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},c.t=function(e,o){if(1&o&&(e=c(e)),8&o)return e;if(4&o&&"object"==typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(c.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&o&&"string"!=typeof e)for(var n in e)c.d(t,n,function(o){return e[o]}.bind(null,n));return t},c.n=function(e){var o=e&&e.__esModule?function(){return e.default}:function(){return e};return c.d(o,"a",o),o},c.o=function(e,o){return Object.prototype.hasOwnProperty.call(e,o)},c.p="/",c.oe=function(e){throw console.error(e),e};var r=window.webpackJsonp=window.webpackJsonp||[],i=r.push.bind(r);r.push=o,r=r.slice();for(var s=0;s<r.length;s++)o(r[s]);var a=i;c(c.s=0)}([function(e,o,t){e.exports=t(1)},function(e,o,t){(e=>{const o=document.getElementById("cookie-warning"),t=document.getElementById("cookie-agree"),n=document.getElementById("cookie-close"),c=!!r()&&localStorage.getItem("biuro-agree");function r(){try{return localStorage.setItem("a","a"),localStorage.removeItem("a"),!0}catch(e){return!1}}o&&t&&n&&!c&&(o.style.display="block",t.addEventListener("click",()=>{r()&&localStorage.setItem("biuro-agree","true"),o.style.display="none"}),n.addEventListener("click",()=>{o.style.display="none"}))})(window),(e=>{const o=document.getElementById("js-map--divisions");o&&fetch("/wp-json/api/v1/divisions?langID="+o.dataset.id).then(e=>e.json()).then(e=>{!function e(o,t){if(!window.google)return void setTimeout(()=>{e(o,t)},250);const c=new window.google.maps.Map(o,{mapTypeIds:[window.google.maps.MapTypeId.ROADMAP,window.google.maps.MapTypeId.HYBRID,"biuro"]});c.mapTypes.set("biuro",new window.google.maps.StyledMapType(n,{name:"Biuro"}));c.setMapTypeId("biuro");window.google.maps.event.addListenerOnce(c,"bounds_changed",function(){this.getZoom()>15&&this.setZoom(14)});let i=[];Object.keys(t).forEach(e=>{const o=t[e];"city"===e.substr(0,4)&&(i=i.concat(o))});document.querySelectorAll(".js-division").forEach(e=>{e.addEventListener("click",()=>{const o=e&&e.dataset.id?e.dataset.id:"";t[o]?r(c,t[o].filter(e=>e.lat&&e.lng),!0):r(c,i.filter(e=>e.lat&&e.lng))})});r(c,i.filter(e=>e.lat&&e.lng))}(o,e)})})(window),(e=>{const o=document.querySelector(".c-nav--lang");o&&o.addEventListener("click",e=>{e.currentTarget.classList.toggle("c-nav--lang--is-open")})})(window),(e=>{const o=document.getElementById("js-map--regions");o&&function e(o){if(!window.google)return void setTimeout(()=>{e(o)},250);const t=new window.google.maps.Map(o,{mapTypeIds:[window.google.maps.MapTypeId.ROADMAP,window.google.maps.MapTypeId.HYBRID,"biuro"]});t.mapTypes.set("biuro",new window.google.maps.StyledMapType(n,{name:"Biuro"}));t.setMapTypeId("biuro");window.google.maps.event.addListenerOnce(t,"bounds_changed",function(){this.getZoom()>15&&this.setZoom(14)});r(t,[{title:"Vilnius",lat:54.687157,lng:25.279652},{title:"Rīga",lat:56.946285,lng:24.105078},{title:"Tallinn",lat:59.436962,lng:24.753574}])}(o)})(window),window,document.querySelectorAll(".js-toggle--nav").forEach(e=>{e.addEventListener("click",e=>{e.preventDefault(),document.body.classList.toggle("is-nav--open")})}),document.querySelectorAll(".js-toggle--aside").forEach(e=>{e.addEventListener("click",e=>{e.preventDefault(),document.body.classList.toggle("is-aside--open")})});const n=[{featureType:"all",elementType:"all",stylers:[{saturation:-92},{lightness:-8},{hue:"#0000ff"}]},{featureType:"water",elementType:"all",stylers:[{saturation:-95},{lightness:-25},{hue:"#0000ff"}]}];var c;function r(e,o,t){for(var n=new window.google.maps.LatLngBounds,r=0;r<o.length;r++){const s=o[r],a=new window.google.maps.LatLng(s.lat,s.lng);var i=new window.google.maps.Marker({position:a,map:e,icon:"/wp-content/themes/biuro/i/ico--map-pin.svg",title:s.title||""});c&&c.close(),n.extend(a),s.content&&(i.content=s.content,window.google.maps.event.addListener(i,"click",function(){(c=new window.google.maps.InfoWindow({content:this.content})).open(e,this)})),t&&(window.innerWidth<960&&window.scrollTo(0,0),new google.maps.event.trigger(i,"click"))}e.fitBounds(n)}document.querySelectorAll(".js-toggle--services").forEach(e=>{e.addEventListener("click",()=>{e.parentNode.classList.toggle("c-services--is-open")})}),document.querySelectorAll(".js-toggle--sections").forEach(e=>{e.addEventListener("click",()=>{const o=e.parentNode;o.classList.contains("c-sections--is-open")?o.classList.toggle("c-sections--is-open"):(document.querySelectorAll(".c-sections--is-open").forEach(e=>{e.classList.remove("c-sections--is-open")}),o.classList.toggle("c-sections--is-open"))})}),document.querySelectorAll(".js-expand-jobs-section").forEach(e=>{e.addEventListener("click",o=>{o.preventDefault(),e.parentNode.classList.remove("c-jobs-section--is-closed"),e.remove()})});const i=()=>{const e=document.querySelector('[name="s"][value="1"]');if(e)return void e.click();const o=document.querySelector('[name="name"]');o&&o.focus()};function s(e){navigator.clipboard?navigator.clipboard.writeText(e).then(function(){},function(e){console.error("Async: Could not copy text: ",e)}):function(e){var o=document.createElement("textarea");o.value=e,document.body.appendChild(o),o.focus(),o.select();try{var t=document.execCommand("copy")?"successful":"unsuccessful";console.log("Fallback: Copying text command was "+t)}catch(e){console.error("Fallback: Oops, unable to copy",e)}document.body.removeChild(o)}(e)}document.querySelector(".js-inititate-position-form")&&document.querySelector(".js-inititate-position-form").addEventListener("click",i),document.querySelector(".js-focus-form")&&document.querySelector(".js-focus-form").addEventListener("click",()=>{const e=document.querySelector(".c-form input:first-of-type");e&&e.focus()}),document.querySelector(".js-modal--close")&&document.querySelector(".js-modal--close").addEventListener("click",()=>{const e=document.querySelector(".c-modal");e&&e.remove();const o=document.querySelector(".c-form [autofocus]");o&&o.focus()}),document.querySelector(".js-copy-to-clipboard")&&document.querySelector(".js-copy-to-clipboard").addEventListener("click",e=>{e.preventDefault(),s(window.location)}),(e=>{const o=document.querySelector(".c-form [autofocus]");if(o&&o.focus(),location.hash){const e=document.querySelector(".c-form--input-wrap--error input")||document.querySelector(".c-form--checkbox--error");if(e)return void e.focus();const o=document.querySelector('.c-form [name="name"]');o&&o.focus()}})(window),window,document.querySelectorAll(".gtm-share-click").forEach(e=>{e.addEventListener("click",o=>{window.dataLayer=window.dataLayer||[],window.dataLayer.push({event:"shareClick",shareLabel:e.dataset.label||""})})}),async function(){await t.e(0).then(t.bind(null,2))}(),async function(){await t.e(1).then(t.bind(null,3))}()}]);
\ No newline at end of file
!function(e){function t(t){for(var o,c,r=t[0],i=t[1],s=0,l=[];s<r.length;s++)c=r[s],n[c]&&l.push(n[c][0]),n[c]=0;for(o in i)Object.prototype.hasOwnProperty.call(i,o)&&(e[o]=i[o]);for(a&&a(t);l.length;)l.shift()()}var o={},n={2:0};function c(t){if(o[t])return o[t].exports;var n=o[t]={i:t,l:!1,exports:{}};return e[t].call(n.exports,n,n.exports,c),n.l=!0,n.exports}c.e=function(e){var t=[],o=n[e];if(0!==o)if(o)t.push(o[2]);else{var r=new Promise(function(t,c){o=n[e]=[t,c]});t.push(o[2]=r);var i,s=document.createElement("script");s.charset="utf-8",s.timeout=120,c.nc&&s.setAttribute("nonce",c.nc),s.src=function(e){return c.p+"wp-content/themes/biuro/js/components/"+({0:"autocomplete",1:"feedbacks"}[e]||e)+"-f697313b.min.js"}(e);var a=new Error;i=function(t){s.onerror=s.onload=null,clearTimeout(l);var o=n[e];if(0!==o){if(o){var c=t&&("load"===t.type?"missing":t.type),r=t&&t.target&&t.target.src;a.message="Loading chunk "+e+" failed.\n("+c+": "+r+")",a.name="ChunkLoadError",a.type=c,a.request=r,o[1](a)}n[e]=void 0}};var l=setTimeout(function(){i({type:"timeout",target:s})},12e4);s.onerror=s.onload=i,document.head.appendChild(s)}return Promise.all(t)},c.m=e,c.c=o,c.d=function(e,t,o){c.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},c.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},c.t=function(e,t){if(1&t&&(e=c(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(c.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)c.d(o,n,function(t){return e[t]}.bind(null,n));return o},c.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return c.d(t,"a",t),t},c.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},c.p="/",c.oe=function(e){throw console.error(e),e};var r=window.webpackJsonp=window.webpackJsonp||[],i=r.push.bind(r);r.push=t,r=r.slice();for(var s=0;s<r.length;s++)t(r[s]);var a=i;c(c.s=0)}([function(e,t,o){e.exports=o(1)},function(e,t,o){(e=>{const t=document.getElementById("cookie-warning"),o=document.getElementById("cookie-agree"),n=document.getElementById("cookie-close"),c=!!r()&&localStorage.getItem("biuro-agree");function r(){try{return localStorage.setItem("a","a"),localStorage.removeItem("a"),!0}catch(e){return!1}}t&&o&&n&&!c&&(t.style.display="block",o.addEventListener("click",()=>{r()&&localStorage.setItem("biuro-agree","true"),t.style.display="none"}),n.addEventListener("click",()=>{t.style.display="none"}))})(window),(e=>{const t=document.getElementById("js-map--divisions");t&&fetch("/wp-json/api/v1/divisions?langID="+t.dataset.id).then(e=>e.json()).then(e=>{!function e(t,o){if(!window.google)return void setTimeout(()=>{e(t,o)},250);const c=new window.google.maps.Map(t,{mapTypeIds:[window.google.maps.MapTypeId.ROADMAP,window.google.maps.MapTypeId.HYBRID,"biuro"]});c.mapTypes.set("biuro",new window.google.maps.StyledMapType(n,{name:"Biuro"}));c.setMapTypeId("biuro");window.google.maps.event.addListenerOnce(c,"bounds_changed",function(){this.getZoom()>15&&this.setZoom(14)});let i=[];Object.keys(o).forEach(e=>{const t=o[e];"city"===e.substr(0,4)&&(i=i.concat(t))});document.querySelectorAll(".js-division").forEach(e=>{e.addEventListener("click",()=>{const t=e&&e.dataset.id?e.dataset.id:"";o[t]?r(c,o[t].filter(e=>e.lat&&e.lng),!0):r(c,i.filter(e=>e.lat&&e.lng))})});r(c,i.filter(e=>e.lat&&e.lng))}(t,e)})})(window),(e=>{const t=document.querySelector(".c-nav--lang");t&&t.addEventListener("click",e=>{e.currentTarget.classList.toggle("c-nav--lang--is-open")})})(window),(e=>{const t=document.getElementById("js-map--regions");t&&function e(t){if(!window.google)return void setTimeout(()=>{e(t)},250);const o=new window.google.maps.Map(t,{mapTypeIds:[window.google.maps.MapTypeId.ROADMAP,window.google.maps.MapTypeId.HYBRID,"biuro"]});o.mapTypes.set("biuro",new window.google.maps.StyledMapType(n,{name:"Biuro"}));o.setMapTypeId("biuro");window.google.maps.event.addListenerOnce(o,"bounds_changed",function(){this.getZoom()>15&&this.setZoom(14)});r(o,[{title:"Vilnius",lat:54.687157,lng:25.279652},{title:"Rīga",lat:56.946285,lng:24.105078},{title:"Tallinn",lat:59.436962,lng:24.753574}])}(t)})(window),window,document.querySelectorAll(".js-toggle--nav").forEach(e=>{e.addEventListener("click",e=>{e.preventDefault(),document.body.classList.toggle("is-nav--open")})}),document.querySelectorAll(".js-toggle--aside").forEach(e=>{e.addEventListener("click",e=>{e.preventDefault(),document.body.classList.toggle("is-aside--open")})});const n=[{featureType:"all",elementType:"all",stylers:[{saturation:-92},{lightness:-8},{hue:"#0000ff"}]},{featureType:"water",elementType:"all",stylers:[{saturation:-95},{lightness:-25},{hue:"#0000ff"}]}];var c;function r(e,t,o){for(var n=new window.google.maps.LatLngBounds,r=0;r<t.length;r++){const s=t[r],a=new window.google.maps.LatLng(s.lat,s.lng);var i=new window.google.maps.Marker({position:a,map:e,icon:"/wp-content/themes/biuro/i/ico--map-pin.svg",title:s.title||""});c&&c.close(),n.extend(a),s.content&&(i.content=s.content,window.google.maps.event.addListener(i,"click",function(){(c=new window.google.maps.InfoWindow({content:this.content})).open(e,this)})),o&&(window.innerWidth<960&&window.scrollTo(0,0),new google.maps.event.trigger(i,"click"))}e.fitBounds(n)}document.querySelectorAll(".js-toggle--services").forEach(e=>{e.addEventListener("click",()=>{e.parentNode.classList.toggle("c-services--is-open")})}),document.querySelectorAll(".js-toggle--sections").forEach(e=>{e.addEventListener("click",()=>{const t=e.parentNode;t.classList.contains("c-sections--is-open")?t.classList.toggle("c-sections--is-open"):(document.querySelectorAll(".c-sections--is-open").forEach(e=>{e.classList.remove("c-sections--is-open")}),t.classList.toggle("c-sections--is-open"))})}),document.querySelectorAll(".js-expand-jobs-section").forEach(e=>{e.addEventListener("click",t=>{t.preventDefault(),e.parentNode.classList.remove("c-jobs-section--is-closed"),e.remove()})});const i=()=>{const e=document.querySelector('[name="s"][value="1"]');if(e)return void e.click();const t=document.querySelector('[name="name"]');t&&t.focus()};function s(e){navigator.clipboard?navigator.clipboard.writeText(e).then(function(){},function(e){console.error("Async: Could not copy text: ",e)}):function(e){var t=document.createElement("textarea");t.value=e,document.body.appendChild(t),t.focus(),t.select();try{var o=document.execCommand("copy")?"successful":"unsuccessful";console.log("Fallback: Copying text command was "+o)}catch(e){console.error("Fallback: Oops, unable to copy",e)}document.body.removeChild(t)}(e)}document.querySelector(".js-inititate-position-form")&&document.querySelector(".js-inititate-position-form").addEventListener("click",i),document.querySelector(".js-focus-form")&&document.querySelector(".js-focus-form").addEventListener("click",()=>{const e=document.querySelector(".c-form input:first-of-type");e&&e.focus()}),document.querySelector(".js-modal--close")&&document.querySelector(".js-modal--close").addEventListener("click",()=>{const e=document.querySelector(".c-modal");e&&e.remove();const t=document.querySelector(".c-form [autofocus]");t&&t.focus()}),document.querySelector(".js-copy-to-clipboard")&&document.querySelector(".js-copy-to-clipboard").addEventListener("click",e=>{e.preventDefault(),s(window.location)}),(e=>{const t=document.querySelector(".c-form [autofocus]");if(t&&t.focus(),location.hash){const e=document.querySelector(".c-form--input-wrap--error input")||document.querySelector(".c-form--checkbox--error");if(e)return void e.focus();const t=document.querySelector('.c-form [name="name"]');t&&t.focus()}})(window),window,document.querySelectorAll(".gtm-share-click").forEach(e=>{e.addEventListener("click",t=>{window.dataLayer=window.dataLayer||[],window.dataLayer.push({event:"shareClick",shareLabel:e.dataset.label||""})})});const a=document.getElementById("search");a&&a.addEventListener("submit",e=>{city.value||query.value||(city.focus(),e.preventDefault())},!1),(document.getElementById("search-city")||document.getElementById("search-query")||document.getElementById("form-city"))&&async function(){await o.e(0).then(o.bind(null,2))}(),document.querySelectorAll(".c-feedbacks--inner").length&&async function(){await o.e(1).then(o.bind(null,3))}()}]);
\ No newline at end of file
......@@ -453,13 +453,31 @@ if (document.querySelector('.js-copy-to-clipboard')) {
});
})(window);
const search = document.getElementById('search');
if (search) {
search.addEventListener('submit', (e) => {
if (!city.value && !query.value) {
city.focus();
e.preventDefault();
}
}, false);
}
async function autocomplete() {
await import(/* webpackChunkName: "autocomplete" */ './components/autocomplete');
};
autocomplete();
if (document.getElementById('search-city') || document.getElementById('search-query') || document.getElementById('form-city')) {
autocomplete();
}
async function feedbacks() {
await import(/* webpackChunkName: "feedbacks" */ './components/feedbacks');
};
feedbacks();
if (document.querySelectorAll('.c-feedbacks--inner').length) {
feedbacks();
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment